blob: 51b0d15d07ff0b13baf600cd36e58b2a93d4f5bf [file] [log] [blame]
Stephen Frost93c7e5a2001-11-08 22:35:03 +00001/* Shared library add-on to iptables to add recent matching support. */
2#include <stdio.h>
3#include <netdb.h>
4#include <string.h>
5#include <stdlib.h>
6#include <getopt.h>
7
8#include <iptables.h>
9#include <linux/netfilter_ipv4/ipt_recent.h>
10
Stephen Frost27e1fa82003-04-14 13:33:15 +000011/* Need these in order to not fail when compiling against an older kernel. */
Harald Welte122e7c02003-03-30 20:26:42 +000012#ifndef RECENT_NAME
13#define RECENT_NAME "ipt_recent"
14#endif /* RECENT_NAME */
Stephen Frost27e1fa82003-04-14 13:33:15 +000015
Harald Welte122e7c02003-03-30 20:26:42 +000016#ifndef RECENT_VER
17#define RECENT_VER "unknown"
18#endif /* RECENT_VER */
Stephen Frost27e1fa82003-04-14 13:33:15 +000019
Harald Welte122e7c02003-03-30 20:26:42 +000020#ifndef IPT_RECENT_NAME_LEN
Stephen Frost27e1fa82003-04-14 13:33:15 +000021#define IPT_RECENT_NAME_LEN 200
Harald Welte122e7c02003-03-30 20:26:42 +000022#endif /* IPT_RECENT_NAME_LEN */
23
Stephen Frost27e1fa82003-04-14 13:33:15 +000024/* Options for this module */
Jan Engelhardt59d16402007-10-04 16:28:39 +000025static const struct option recent_opts[] = {
Patrick McHardy500f4832007-09-08 15:59:04 +000026 { .name = "set", .has_arg = 0, .val = 201 },
27 { .name = "rcheck", .has_arg = 0, .val = 202 },
28 { .name = "update", .has_arg = 0, .val = 203 },
29 { .name = "seconds", .has_arg = 1, .val = 204 },
30 { .name = "hitcount", .has_arg = 1, .val = 205 },
31 { .name = "remove", .has_arg = 0, .val = 206 },
32 { .name = "rttl", .has_arg = 0, .val = 207 },
33 { .name = "name", .has_arg = 1, .val = 208 },
34 { .name = "rsource", .has_arg = 0, .val = 209 },
35 { .name = "rdest", .has_arg = 0, .val = 210 },
Max Kellermann9ee386a2008-01-29 13:48:05 +000036 { .name = NULL }
Stephen Frost27e1fa82003-04-14 13:33:15 +000037};
38
Stephen Frost93c7e5a2001-11-08 22:35:03 +000039/* Function which prints out usage message. */
Jan Engelhardt59d16402007-10-04 16:28:39 +000040static void recent_help(void)
Stephen Frost93c7e5a2001-11-08 22:35:03 +000041{
42 printf(
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +020043"recent match options:\n"
Stephen Frost93c7e5a2001-11-08 22:35:03 +000044"[!] --set Add source address to list, always matches.\n"
45"[!] --rcheck Match if source address in list.\n"
46"[!] --update Match if source address in list, also update last-seen time.\n"
47"[!] --remove Match if source address in list, also removes that address from list.\n"
48" --seconds seconds For check and update commands above.\n"
49" Specifies that the match will only occur if source address last seen within\n"
50" the last 'seconds' seconds.\n"
51" --hitcount hits For check and update commands above.\n"
52" Specifies that the match will only occur if source address seen hits times.\n"
Fabrice MARIEae31bb62002-06-14 07:38:16 +000053" May be used in conjunction with the seconds option.\n"
Stephen Frost4fce44c2002-02-04 11:58:22 +000054" --rttl For check and update commands above.\n"
55" Specifies that the match will only occur if the source address and the TTL\n"
56" match between this packet and the one which was set.\n"
57" Useful if you have problems with people spoofing their source address in order\n"
58" to DoS you via this module.\n"
Stephen Frost7fdbc952002-06-21 17:26:33 +000059" --name name Name of the recent list to be used. DEFAULT used if none given.\n"
Stephen Frost27e1fa82003-04-14 13:33:15 +000060" --rsource Match/Save the source address of each packet in the recent list table (default).\n"
61" --rdest Match/Save the destination address of each packet in the recent list table.\n"
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +020062RECENT_NAME " " RECENT_VER ": Stephen Frost <sfrost@snowman.net>. http://snowman.net/projects/ipt_recent/\n");
Stephen Frost93c7e5a2001-11-08 22:35:03 +000063}
64
Stephen Frost93c7e5a2001-11-08 22:35:03 +000065/* Initialize the match. */
Jan Engelhardt59d16402007-10-04 16:28:39 +000066static void recent_init(struct xt_entry_match *match)
Stephen Frost93c7e5a2001-11-08 22:35:03 +000067{
Stephen Frost7fdbc952002-06-21 17:26:33 +000068 struct ipt_recent_info *info = (struct ipt_recent_info *)(match)->data;
69
Stephen Frost7fdbc952002-06-21 17:26:33 +000070
Stephen Frostd5903952003-03-03 07:24:27 +000071 strncpy(info->name,"DEFAULT",IPT_RECENT_NAME_LEN);
Karsten Desler073df8f2004-01-31 15:33:55 +000072 /* eventhough IPT_RECENT_NAME_LEN is currently defined as 200,
73 * better be safe, than sorry */
74 info->name[IPT_RECENT_NAME_LEN-1] = '\0';
Stephen Frost7fdbc952002-06-21 17:26:33 +000075 info->side = IPT_RECENT_SOURCE;
Stephen Frost93c7e5a2001-11-08 22:35:03 +000076}
77
78/* Function which parses command options; returns true if it
79 ate an option */
Jan Engelhardt59d16402007-10-04 16:28:39 +000080static int recent_parse(int c, char **argv, int invert, unsigned int *flags,
81 const void *entry, struct xt_entry_match **match)
Stephen Frost93c7e5a2001-11-08 22:35:03 +000082{
83 struct ipt_recent_info *info = (struct ipt_recent_info *)(*match)->data;
Stephen Frost93c7e5a2001-11-08 22:35:03 +000084 switch (c) {
85 case 201:
86 if (*flags) exit_error(PARAMETER_PROBLEM,
Stephen Frostd5903952003-03-03 07:24:27 +000087 "recent: only one of `--set', `--rcheck' "
Stephen Frost93c7e5a2001-11-08 22:35:03 +000088 "`--update' or `--remove' may be set");
Harald Welteb77f1da2002-03-14 11:35:58 +000089 check_inverse(optarg, &invert, &optind, 0);
Stephen Frost93c7e5a2001-11-08 22:35:03 +000090 info->check_set |= IPT_RECENT_SET;
91 if (invert) info->invert = 1;
92 *flags = 1;
93 break;
94
95 case 202:
96 if (*flags) exit_error(PARAMETER_PROBLEM,
Stephen Frostd5903952003-03-03 07:24:27 +000097 "recent: only one of `--set', `--rcheck' "
Stephen Frost93c7e5a2001-11-08 22:35:03 +000098 "`--update' or `--remove' may be set");
Harald Welteb77f1da2002-03-14 11:35:58 +000099 check_inverse(optarg, &invert, &optind, 0);
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000100 info->check_set |= IPT_RECENT_CHECK;
101 if(invert) info->invert = 1;
102 *flags = 1;
103 break;
104
105 case 203:
106 if (*flags) exit_error(PARAMETER_PROBLEM,
Stephen Frostd5903952003-03-03 07:24:27 +0000107 "recent: only one of `--set', `--rcheck' "
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000108 "`--update' or `--remove' may be set");
Harald Welteb77f1da2002-03-14 11:35:58 +0000109 check_inverse(optarg, &invert, &optind, 0);
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000110 info->check_set |= IPT_RECENT_UPDATE;
111 if (invert) info->invert = 1;
112 *flags = 1;
113 break;
114
115 case 206:
116 if (*flags) exit_error(PARAMETER_PROBLEM,
Stephen Frostd5903952003-03-03 07:24:27 +0000117 "recent: only one of `--set', `--rcheck' "
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000118 "`--update' or `--remove' may be set");
Harald Welteb77f1da2002-03-14 11:35:58 +0000119 check_inverse(optarg, &invert, &optind, 0);
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000120 info->check_set |= IPT_RECENT_REMOVE;
121 if (invert) info->invert = 1;
122 *flags = 1;
123 break;
124
125 case 204:
126 info->seconds = atoi(optarg);
127 break;
128
129 case 205:
130 info->hit_count = atoi(optarg);
131 break;
132
Stephen Frost4fce44c2002-02-04 11:58:22 +0000133 case 207:
134 info->check_set |= IPT_RECENT_TTL;
135 break;
136
137 case 208:
Stephen Frostd5903952003-03-03 07:24:27 +0000138 strncpy(info->name,optarg,IPT_RECENT_NAME_LEN);
Karsten Desler073df8f2004-01-31 15:33:55 +0000139 info->name[IPT_RECENT_NAME_LEN-1] = '\0';
Stephen Frost4fce44c2002-02-04 11:58:22 +0000140 break;
141
Stephen Frost7fdbc952002-06-21 17:26:33 +0000142 case 209:
143 info->side = IPT_RECENT_SOURCE;
144 break;
145
146 case 210:
147 info->side = IPT_RECENT_DEST;
148 break;
149
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000150 default:
151 return 0;
152 }
Stephen Frost4fce44c2002-02-04 11:58:22 +0000153
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000154 return 1;
155}
156
157/* Final check; must have specified a specific option. */
Jan Engelhardt59d16402007-10-04 16:28:39 +0000158static void recent_check(unsigned int flags)
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000159{
Stephen Frost7fdbc952002-06-21 17:26:33 +0000160
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000161 if (!flags)
162 exit_error(PARAMETER_PROBLEM,
Stephen Frostd5903952003-03-03 07:24:27 +0000163 "recent: you must specify one of `--set', `--rcheck' "
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000164 "`--update' or `--remove'");
165}
166
167/* Prints out the matchinfo. */
Jan Engelhardt59d16402007-10-04 16:28:39 +0000168static void recent_print(const void *ip, const struct xt_entry_match *match,
169 int numeric)
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000170{
171 struct ipt_recent_info *info = (struct ipt_recent_info *)match->data;
172
Sven Strickroth0c1b7762003-06-01 10:11:43 +0000173 if (info->invert)
174 fputc('!', stdout);
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000175
176 printf("recent: ");
177 if(info->check_set & IPT_RECENT_SET) printf("SET ");
178 if(info->check_set & IPT_RECENT_CHECK) printf("CHECK ");
179 if(info->check_set & IPT_RECENT_UPDATE) printf("UPDATE ");
180 if(info->check_set & IPT_RECENT_REMOVE) printf("REMOVE ");
Stephen Frost4fce44c2002-02-04 11:58:22 +0000181 if(info->seconds) printf("seconds: %d ",info->seconds);
182 if(info->hit_count) printf("hit_count: %d ",info->hit_count);
183 if(info->check_set & IPT_RECENT_TTL) printf("TTL-Match ");
Stephen Frost7fdbc952002-06-21 17:26:33 +0000184 if(info->name) printf("name: %s ",info->name);
185 if(info->side == IPT_RECENT_SOURCE) printf("side: source ");
186 if(info->side == IPT_RECENT_DEST) printf("side: dest");
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000187}
188
189/* Saves the union ipt_matchinfo in parsable form to stdout. */
Jan Engelhardt59d16402007-10-04 16:28:39 +0000190static void recent_save(const void *ip, const struct xt_entry_match *match)
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000191{
Sven Strickroth0c1b7762003-06-01 10:11:43 +0000192 struct ipt_recent_info *info = (struct ipt_recent_info *)match->data;
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000193
Sven Strickroth0c1b7762003-06-01 10:11:43 +0000194 if (info->invert)
195 printf("! ");
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000196
Stephen Frostd5903952003-03-03 07:24:27 +0000197 if(info->check_set & IPT_RECENT_SET) printf("--set ");
198 if(info->check_set & IPT_RECENT_CHECK) printf("--rcheck ");
199 if(info->check_set & IPT_RECENT_UPDATE) printf("--update ");
200 if(info->check_set & IPT_RECENT_REMOVE) printf("--remove ");
201 if(info->seconds) printf("--seconds %d ",info->seconds);
202 if(info->hit_count) printf("--hitcount %d ",info->hit_count);
Stephen Frost27e1fa82003-04-14 13:33:15 +0000203 if(info->check_set & IPT_RECENT_TTL) printf("--rttl ");
Stephen Frostd5903952003-03-03 07:24:27 +0000204 if(info->name) printf("--name %s ",info->name);
205 if(info->side == IPT_RECENT_SOURCE) printf("--rsource ");
206 if(info->side == IPT_RECENT_DEST) printf("--rdest ");
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000207}
208
Stephen Frost27e1fa82003-04-14 13:33:15 +0000209/* Structure for iptables to use to communicate with module */
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200210static struct xtables_match recent_mt_reg = {
Stephen Frost27e1fa82003-04-14 13:33:15 +0000211 .name = "recent",
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200212 .version = XTABLES_VERSION,
213 .family = PF_INET,
214 .size = XT_ALIGN(sizeof(struct ipt_recent_info)),
215 .userspacesize = XT_ALIGN(sizeof(struct ipt_recent_info)),
Jan Engelhardt59d16402007-10-04 16:28:39 +0000216 .help = recent_help,
217 .init = recent_init,
218 .parse = recent_parse,
219 .final_check = recent_check,
220 .print = recent_print,
221 .save = recent_save,
222 .extra_opts = recent_opts,
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000223};
224
225void _init(void)
226{
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200227 xtables_register_match(&recent_mt_reg);
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000228}