blob: 0b0ed2d18e8cf5e589fd45483e887f88b8575200 [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 */
25static struct option opts[] = {
26 { .name = "set", .has_arg = 0, .flag = 0, .val = 201 },
27 { .name = "rcheck", .has_arg = 0, .flag = 0, .val = 202 },
28 { .name = "update", .has_arg = 0, .flag = 0, .val = 203 },
29 { .name = "seconds", .has_arg = 1, .flag = 0, .val = 204 },
30 { .name = "hitcount", .has_arg = 1, .flag = 0, .val = 205 },
31 { .name = "remove", .has_arg = 0, .flag = 0, .val = 206 },
32 { .name = "rttl", .has_arg = 0, .flag = 0, .val = 207 },
33 { .name = "name", .has_arg = 1, .flag = 0, .val = 208 },
34 { .name = "rsource", .has_arg = 0, .flag = 0, .val = 209 },
35 { .name = "rdest", .has_arg = 0, .flag = 0, .val = 210 },
36 { .name = 0, .has_arg = 0, .flag = 0, .val = 0 }
37};
38
Stephen Frost93c7e5a2001-11-08 22:35:03 +000039/* Function which prints out usage message. */
40static void
41help(void)
42{
43 printf(
44"recent v%s options:\n"
45"[!] --set Add source address to list, always matches.\n"
46"[!] --rcheck Match if source address in list.\n"
47"[!] --update Match if source address in list, also update last-seen time.\n"
48"[!] --remove Match if source address in list, also removes that address from list.\n"
49" --seconds seconds For check and update commands above.\n"
50" Specifies that the match will only occur if source address last seen within\n"
51" the last 'seconds' seconds.\n"
52" --hitcount hits For check and update commands above.\n"
53" Specifies that the match will only occur if source address seen hits times.\n"
Fabrice MARIEae31bb62002-06-14 07:38:16 +000054" May be used in conjunction with the seconds option.\n"
Stephen Frost4fce44c2002-02-04 11:58:22 +000055" --rttl For check and update commands above.\n"
56" Specifies that the match will only occur if the source address and the TTL\n"
57" match between this packet and the one which was set.\n"
58" Useful if you have problems with people spoofing their source address in order\n"
59" to DoS you via this module.\n"
Stephen Frost7fdbc952002-06-21 17:26:33 +000060" --name name Name of the recent list to be used. DEFAULT used if none given.\n"
Stephen Frost27e1fa82003-04-14 13:33:15 +000061" --rsource Match/Save the source address of each packet in the recent list table (default).\n"
62" --rdest Match/Save the destination address of each packet in the recent list table.\n"
Stephen Frostd5903952003-03-03 07:24:27 +000063RECENT_NAME " " RECENT_VER ": Stephen Frost <sfrost@snowman.net>. http://snowman.net/projects/ipt_recent/\n"
Stephen Frost7fdbc952002-06-21 17:26:33 +000064,
Harald Welte80fe35d2002-05-29 13:08:15 +000065IPTABLES_VERSION);
Stephen Frost93c7e5a2001-11-08 22:35:03 +000066
67}
68
Stephen Frost93c7e5a2001-11-08 22:35:03 +000069/* Initialize the match. */
70static void
Stephen Frost7fdbc952002-06-21 17:26:33 +000071init(struct ipt_entry_match *match, unsigned int *nfcache)
Stephen Frost93c7e5a2001-11-08 22:35:03 +000072{
Stephen Frost7fdbc952002-06-21 17:26:33 +000073 struct ipt_recent_info *info = (struct ipt_recent_info *)(match)->data;
74
Stephen Frost7fdbc952002-06-21 17:26:33 +000075
Stephen Frostd5903952003-03-03 07:24:27 +000076 strncpy(info->name,"DEFAULT",IPT_RECENT_NAME_LEN);
Karsten Desler073df8f2004-01-31 15:33:55 +000077 /* eventhough IPT_RECENT_NAME_LEN is currently defined as 200,
78 * better be safe, than sorry */
79 info->name[IPT_RECENT_NAME_LEN-1] = '\0';
Stephen Frost7fdbc952002-06-21 17:26:33 +000080 info->side = IPT_RECENT_SOURCE;
Stephen Frost93c7e5a2001-11-08 22:35:03 +000081}
82
83/* Function which parses command options; returns true if it
84 ate an option */
85static int
86parse(int c, char **argv, int invert, unsigned int *flags,
87 const struct ipt_entry *entry,
88 unsigned int *nfcache,
89 struct ipt_entry_match **match)
90{
91 struct ipt_recent_info *info = (struct ipt_recent_info *)(*match)->data;
Stephen Frost93c7e5a2001-11-08 22:35:03 +000092 switch (c) {
93 case 201:
94 if (*flags) exit_error(PARAMETER_PROBLEM,
Stephen Frostd5903952003-03-03 07:24:27 +000095 "recent: only one of `--set', `--rcheck' "
Stephen Frost93c7e5a2001-11-08 22:35:03 +000096 "`--update' or `--remove' may be set");
Harald Welteb77f1da2002-03-14 11:35:58 +000097 check_inverse(optarg, &invert, &optind, 0);
Stephen Frost93c7e5a2001-11-08 22:35:03 +000098 info->check_set |= IPT_RECENT_SET;
99 if (invert) info->invert = 1;
100 *flags = 1;
101 break;
102
103 case 202:
104 if (*flags) exit_error(PARAMETER_PROBLEM,
Stephen Frostd5903952003-03-03 07:24:27 +0000105 "recent: only one of `--set', `--rcheck' "
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000106 "`--update' or `--remove' may be set");
Harald Welteb77f1da2002-03-14 11:35:58 +0000107 check_inverse(optarg, &invert, &optind, 0);
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000108 info->check_set |= IPT_RECENT_CHECK;
109 if(invert) info->invert = 1;
110 *flags = 1;
111 break;
112
113 case 203:
114 if (*flags) exit_error(PARAMETER_PROBLEM,
Stephen Frostd5903952003-03-03 07:24:27 +0000115 "recent: only one of `--set', `--rcheck' "
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000116 "`--update' or `--remove' may be set");
Harald Welteb77f1da2002-03-14 11:35:58 +0000117 check_inverse(optarg, &invert, &optind, 0);
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000118 info->check_set |= IPT_RECENT_UPDATE;
119 if (invert) info->invert = 1;
120 *flags = 1;
121 break;
122
123 case 206:
124 if (*flags) exit_error(PARAMETER_PROBLEM,
Stephen Frostd5903952003-03-03 07:24:27 +0000125 "recent: only one of `--set', `--rcheck' "
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000126 "`--update' or `--remove' may be set");
Harald Welteb77f1da2002-03-14 11:35:58 +0000127 check_inverse(optarg, &invert, &optind, 0);
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000128 info->check_set |= IPT_RECENT_REMOVE;
129 if (invert) info->invert = 1;
130 *flags = 1;
131 break;
132
133 case 204:
134 info->seconds = atoi(optarg);
135 break;
136
137 case 205:
138 info->hit_count = atoi(optarg);
139 break;
140
Stephen Frost4fce44c2002-02-04 11:58:22 +0000141 case 207:
142 info->check_set |= IPT_RECENT_TTL;
143 break;
144
145 case 208:
Stephen Frostd5903952003-03-03 07:24:27 +0000146 strncpy(info->name,optarg,IPT_RECENT_NAME_LEN);
Karsten Desler073df8f2004-01-31 15:33:55 +0000147 info->name[IPT_RECENT_NAME_LEN-1] = '\0';
Stephen Frost4fce44c2002-02-04 11:58:22 +0000148 break;
149
Stephen Frost7fdbc952002-06-21 17:26:33 +0000150 case 209:
151 info->side = IPT_RECENT_SOURCE;
152 break;
153
154 case 210:
155 info->side = IPT_RECENT_DEST;
156 break;
157
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000158 default:
159 return 0;
160 }
Stephen Frost4fce44c2002-02-04 11:58:22 +0000161
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000162 return 1;
163}
164
165/* Final check; must have specified a specific option. */
166static void
167final_check(unsigned int flags)
168{
Stephen Frost7fdbc952002-06-21 17:26:33 +0000169
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000170 if (!flags)
171 exit_error(PARAMETER_PROBLEM,
Stephen Frostd5903952003-03-03 07:24:27 +0000172 "recent: you must specify one of `--set', `--rcheck' "
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000173 "`--update' or `--remove'");
174}
175
176/* Prints out the matchinfo. */
177static void
178print(const struct ipt_ip *ip,
179 const struct ipt_entry_match *match,
180 int numeric)
181{
182 struct ipt_recent_info *info = (struct ipt_recent_info *)match->data;
183
Sven Strickroth0c1b7762003-06-01 10:11:43 +0000184 if (info->invert)
185 fputc('!', stdout);
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000186
187 printf("recent: ");
188 if(info->check_set & IPT_RECENT_SET) printf("SET ");
189 if(info->check_set & IPT_RECENT_CHECK) printf("CHECK ");
190 if(info->check_set & IPT_RECENT_UPDATE) printf("UPDATE ");
191 if(info->check_set & IPT_RECENT_REMOVE) printf("REMOVE ");
Stephen Frost4fce44c2002-02-04 11:58:22 +0000192 if(info->seconds) printf("seconds: %d ",info->seconds);
193 if(info->hit_count) printf("hit_count: %d ",info->hit_count);
194 if(info->check_set & IPT_RECENT_TTL) printf("TTL-Match ");
Stephen Frost7fdbc952002-06-21 17:26:33 +0000195 if(info->name) printf("name: %s ",info->name);
196 if(info->side == IPT_RECENT_SOURCE) printf("side: source ");
197 if(info->side == IPT_RECENT_DEST) printf("side: dest");
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000198}
199
200/* Saves the union ipt_matchinfo in parsable form to stdout. */
201static void
202save(const struct ipt_ip *ip, const struct ipt_entry_match *match)
203{
Sven Strickroth0c1b7762003-06-01 10:11:43 +0000204 struct ipt_recent_info *info = (struct ipt_recent_info *)match->data;
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000205
Sven Strickroth0c1b7762003-06-01 10:11:43 +0000206 if (info->invert)
207 printf("! ");
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000208
Stephen Frostd5903952003-03-03 07:24:27 +0000209 if(info->check_set & IPT_RECENT_SET) printf("--set ");
210 if(info->check_set & IPT_RECENT_CHECK) printf("--rcheck ");
211 if(info->check_set & IPT_RECENT_UPDATE) printf("--update ");
212 if(info->check_set & IPT_RECENT_REMOVE) printf("--remove ");
213 if(info->seconds) printf("--seconds %d ",info->seconds);
214 if(info->hit_count) printf("--hitcount %d ",info->hit_count);
Stephen Frost27e1fa82003-04-14 13:33:15 +0000215 if(info->check_set & IPT_RECENT_TTL) printf("--rttl ");
Stephen Frostd5903952003-03-03 07:24:27 +0000216 if(info->name) printf("--name %s ",info->name);
217 if(info->side == IPT_RECENT_SOURCE) printf("--rsource ");
218 if(info->side == IPT_RECENT_DEST) printf("--rdest ");
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000219}
220
Stephen Frost27e1fa82003-04-14 13:33:15 +0000221/* Structure for iptables to use to communicate with module */
222static struct iptables_match recent = {
223 .next = NULL,
224 .name = "recent",
225 .version = IPTABLES_VERSION,
226 .size = IPT_ALIGN(sizeof(struct ipt_recent_info)),
227 .userspacesize = IPT_ALIGN(sizeof(struct ipt_recent_info)),
228 .help = &help,
229 .init = &init,
230 .parse = &parse,
231 .final_check = &final_check,
232 .print = &print,
233 .save = &save,
234 .extra_opts = opts
Stephen Frost93c7e5a2001-11-08 22:35:03 +0000235};
236
237void _init(void)
238{
239 register_match(&recent);
240}