blob: 3218043156591f874e59deff90f8b5fa7a027d8c [file] [log] [blame]
Patrick McHardy404bdbf2006-05-29 18:21:34 -07001/*
2 * Copyright (c) 2006 Patrick McHardy <kaber@trash.net>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * This is a replacement of the old ipt_recent module, which carried the
9 * following copyright notice:
10 *
11 * Author: Stephen Frost <sfrost@snowman.net>
12 * Copyright 2002-2003, Stephen Frost, 2.5.x port by laforge@netfilter.org
13 */
14#include <linux/init.h>
Jan Engelhardt6709dbb2007-02-07 15:11:19 -080015#include <linux/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/moduleparam.h>
Patrick McHardy404bdbf2006-05-29 18:21:34 -070017#include <linux/proc_fs.h>
18#include <linux/seq_file.h>
19#include <linux/string.h>
20#include <linux/ctype.h>
21#include <linux/list.h>
22#include <linux/random.h>
23#include <linux/jhash.h>
24#include <linux/bitops.h>
25#include <linux/skbuff.h>
26#include <linux/inet.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Jan Engelhardt6709dbb2007-02-07 15:11:19 -080028#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/netfilter_ipv4/ipt_recent.h>
30
Patrick McHardy404bdbf2006-05-29 18:21:34 -070031MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
32MODULE_DESCRIPTION("IP tables recently seen matching module");
33MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Patrick McHardye7be6992006-01-05 12:19:46 -080035static unsigned int ip_list_tot = 100;
36static unsigned int ip_pkt_list_tot = 20;
37static unsigned int ip_list_hash_size = 0;
38static unsigned int ip_list_perms = 0644;
Daniel De Graafb93ff782006-08-22 00:30:55 -070039static unsigned int ip_list_uid = 0;
40static unsigned int ip_list_gid = 0;
Patrick McHardye7be6992006-01-05 12:19:46 -080041module_param(ip_list_tot, uint, 0400);
42module_param(ip_pkt_list_tot, uint, 0400);
43module_param(ip_list_hash_size, uint, 0400);
44module_param(ip_list_perms, uint, 0400);
Daniel De Graafb93ff782006-08-22 00:30:55 -070045module_param(ip_list_uid, uint, 0400);
46module_param(ip_list_gid, uint, 0400);
Patrick McHardy404bdbf2006-05-29 18:21:34 -070047MODULE_PARM_DESC(ip_list_tot, "number of IPs to remember per list");
48MODULE_PARM_DESC(ip_pkt_list_tot, "number of packets per IP to remember (max. 255)");
49MODULE_PARM_DESC(ip_list_hash_size, "size of hash table used to look up IPs");
50MODULE_PARM_DESC(ip_list_perms, "permissions on /proc/net/ipt_recent/* files");
Daniel De Graafb93ff782006-08-22 00:30:55 -070051MODULE_PARM_DESC(ip_list_uid,"owner of /proc/net/ipt_recent/* files");
52MODULE_PARM_DESC(ip_list_gid,"owning group of /proc/net/ipt_recent/* files");
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Patrick McHardy404bdbf2006-05-29 18:21:34 -070054struct recent_entry {
55 struct list_head list;
56 struct list_head lru_list;
Al Viro6a19d612006-09-28 14:22:24 -070057 __be32 addr;
Patrick McHardy404bdbf2006-05-29 18:21:34 -070058 u_int8_t ttl;
59 u_int8_t index;
60 u_int16_t nstamps;
61 unsigned long stamps[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -070062};
63
Patrick McHardy404bdbf2006-05-29 18:21:34 -070064struct recent_table {
65 struct list_head list;
66 char name[IPT_RECENT_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#ifdef CONFIG_PROC_FS
Patrick McHardy404bdbf2006-05-29 18:21:34 -070068 struct proc_dir_entry *proc;
69#endif
70 unsigned int refcnt;
71 unsigned int entries;
72 struct list_head lru_list;
73 struct list_head iphash[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -070074};
75
Patrick McHardy404bdbf2006-05-29 18:21:34 -070076static LIST_HEAD(tables);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077static DEFINE_SPINLOCK(recent_lock);
Patrick McHardya0e889b2006-06-09 12:17:41 -070078static DEFINE_MUTEX(recent_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80#ifdef CONFIG_PROC_FS
Patrick McHardy404bdbf2006-05-29 18:21:34 -070081static struct proc_dir_entry *proc_dir;
Arjan van de Ven9a321442007-02-12 00:55:35 -080082static const struct file_operations recent_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#endif
84
Patrick McHardy404bdbf2006-05-29 18:21:34 -070085static u_int32_t hash_rnd;
86static int hash_rnd_initted;
87
Al Viro6a19d612006-09-28 14:22:24 -070088static unsigned int recent_entry_hash(__be32 addr)
Patrick McHardy404bdbf2006-05-29 18:21:34 -070089{
90 if (!hash_rnd_initted) {
91 get_random_bytes(&hash_rnd, 4);
92 hash_rnd_initted = 1;
93 }
Al Viro6a19d612006-09-28 14:22:24 -070094 return jhash_1word((__force u32)addr, hash_rnd) & (ip_list_hash_size - 1);
Patrick McHardy404bdbf2006-05-29 18:21:34 -070095}
96
97static struct recent_entry *
Al Viro6a19d612006-09-28 14:22:24 -070098recent_entry_lookup(const struct recent_table *table, __be32 addr, u_int8_t ttl)
Patrick McHardy404bdbf2006-05-29 18:21:34 -070099{
100 struct recent_entry *e;
101 unsigned int h;
102
103 h = recent_entry_hash(addr);
104 list_for_each_entry(e, &table->iphash[h], list)
105 if (e->addr == addr && (ttl == e->ttl || !ttl || !e->ttl))
106 return e;
107 return NULL;
108}
109
110static void recent_entry_remove(struct recent_table *t, struct recent_entry *e)
111{
112 list_del(&e->list);
113 list_del(&e->lru_list);
114 kfree(e);
115 t->entries--;
116}
117
118static struct recent_entry *
Al Viro6a19d612006-09-28 14:22:24 -0700119recent_entry_init(struct recent_table *t, __be32 addr, u_int8_t ttl)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700120{
121 struct recent_entry *e;
122
123 if (t->entries >= ip_list_tot) {
124 e = list_entry(t->lru_list.next, struct recent_entry, lru_list);
125 recent_entry_remove(t, e);
126 }
127 e = kmalloc(sizeof(*e) + sizeof(e->stamps[0]) * ip_pkt_list_tot,
128 GFP_ATOMIC);
129 if (e == NULL)
130 return NULL;
131 e->addr = addr;
132 e->ttl = ttl;
133 e->stamps[0] = jiffies;
134 e->nstamps = 1;
135 e->index = 1;
136 list_add_tail(&e->list, &t->iphash[recent_entry_hash(addr)]);
137 list_add_tail(&e->lru_list, &t->lru_list);
138 t->entries++;
139 return e;
140}
141
142static void recent_entry_update(struct recent_table *t, struct recent_entry *e)
143{
144 e->stamps[e->index++] = jiffies;
145 if (e->index > e->nstamps)
146 e->nstamps = e->index;
147 e->index %= ip_pkt_list_tot;
148 list_move_tail(&e->lru_list, &t->lru_list);
149}
150
151static struct recent_table *recent_table_lookup(const char *name)
152{
153 struct recent_table *t;
154
155 list_for_each_entry(t, &tables, list)
156 if (!strcmp(t->name, name))
157 return t;
158 return NULL;
159}
160
161static void recent_table_flush(struct recent_table *t)
162{
163 struct recent_entry *e, *next;
164 unsigned int i;
165
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700166 for (i = 0; i < ip_list_hash_size; i++)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700167 list_for_each_entry_safe(e, next, &t->iphash[i], list)
168 recent_entry_remove(t, e);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700169}
170
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700171static bool
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700172ipt_recent_match(const struct sk_buff *skb,
173 const struct net_device *in, const struct net_device *out,
174 const struct xt_match *match, const void *matchinfo,
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700175 int offset, unsigned int protoff, bool *hotdrop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 const struct ipt_recent_info *info = matchinfo;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700178 struct recent_table *t;
179 struct recent_entry *e;
Al Viro6a19d612006-09-28 14:22:24 -0700180 __be32 addr;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700181 u_int8_t ttl;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700182 bool ret = info->invert;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700184 if (info->side == IPT_RECENT_DEST)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700185 addr = ip_hdr(skb)->daddr;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700186 else
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700187 addr = ip_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700189 ttl = ip_hdr(skb)->ttl;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700190 /* use TTL as seen before forwarding */
191 if (out && !skb->sk)
192 ttl++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 spin_lock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700195 t = recent_table_lookup(info->name);
196 e = recent_entry_lookup(t, addr,
197 info->check_set & IPT_RECENT_TTL ? ttl : 0);
198 if (e == NULL) {
199 if (!(info->check_set & IPT_RECENT_SET))
200 goto out;
201 e = recent_entry_init(t, addr, ttl);
202 if (e == NULL)
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700203 *hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700204 ret = !ret;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700205 goto out;
206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700208 if (info->check_set & IPT_RECENT_SET)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700209 ret = !ret;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700210 else if (info->check_set & IPT_RECENT_REMOVE) {
211 recent_entry_remove(t, e);
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700212 ret = !ret;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700213 } else if (info->check_set & (IPT_RECENT_CHECK | IPT_RECENT_UPDATE)) {
214 unsigned long t = jiffies - info->seconds * HZ;
215 unsigned int i, hits = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700217 for (i = 0; i < e->nstamps; i++) {
218 if (info->seconds && time_after(t, e->stamps[i]))
219 continue;
220 if (++hits >= info->hit_count) {
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700221 ret = !ret;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700222 break;
223 }
224 }
225 }
226
227 if (info->check_set & IPT_RECENT_SET ||
228 (info->check_set & IPT_RECENT_UPDATE && ret)) {
229 recent_entry_update(t, e);
230 e->ttl = ttl;
231 }
232out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 spin_unlock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700234 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700237static bool
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700238ipt_recent_checkentry(const char *tablename, const void *ip,
239 const struct xt_match *match, void *matchinfo,
Patrick McHardyefa74162006-08-22 00:36:37 -0700240 unsigned int hook_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 const struct ipt_recent_info *info = matchinfo;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700243 struct recent_table *t;
244 unsigned i;
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700245 bool ret = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700247 if (hweight8(info->check_set &
248 (IPT_RECENT_SET | IPT_RECENT_REMOVE |
249 IPT_RECENT_CHECK | IPT_RECENT_UPDATE)) != 1)
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700250 return false;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700251 if ((info->check_set & (IPT_RECENT_SET | IPT_RECENT_REMOVE)) &&
252 (info->seconds || info->hit_count))
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700253 return false;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700254 if (info->name[0] == '\0' ||
255 strnlen(info->name, IPT_RECENT_NAME_LEN) == IPT_RECENT_NAME_LEN)
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700256 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Patrick McHardya0e889b2006-06-09 12:17:41 -0700258 mutex_lock(&recent_mutex);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700259 t = recent_table_lookup(info->name);
260 if (t != NULL) {
261 t->refcnt++;
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700262 ret = true;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700263 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
265
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700266 t = kzalloc(sizeof(*t) + sizeof(t->iphash[0]) * ip_list_hash_size,
Patrick McHardya0e889b2006-06-09 12:17:41 -0700267 GFP_KERNEL);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700268 if (t == NULL)
269 goto out;
Patrick McHardy2b2283d2006-06-09 12:18:17 -0700270 t->refcnt = 1;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700271 strcpy(t->name, info->name);
272 INIT_LIST_HEAD(&t->lru_list);
273 for (i = 0; i < ip_list_hash_size; i++)
274 INIT_LIST_HEAD(&t->iphash[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275#ifdef CONFIG_PROC_FS
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700276 t->proc = create_proc_entry(t->name, ip_list_perms, proc_dir);
277 if (t->proc == NULL) {
278 kfree(t);
279 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700281 t->proc->proc_fops = &recent_fops;
Daniel De Graafb93ff782006-08-22 00:30:55 -0700282 t->proc->uid = ip_list_uid;
283 t->proc->gid = ip_list_gid;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700284 t->proc->data = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285#endif
Patrick McHardya0e889b2006-06-09 12:17:41 -0700286 spin_lock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700287 list_add_tail(&t->list, &tables);
Patrick McHardya0e889b2006-06-09 12:17:41 -0700288 spin_unlock_bh(&recent_lock);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700289 ret = true;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700290out:
Patrick McHardya0e889b2006-06-09 12:17:41 -0700291 mutex_unlock(&recent_mutex);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700292 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295static void
Patrick McHardyefa74162006-08-22 00:36:37 -0700296ipt_recent_destroy(const struct xt_match *match, void *matchinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
298 const struct ipt_recent_info *info = matchinfo;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700299 struct recent_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Patrick McHardya0e889b2006-06-09 12:17:41 -0700301 mutex_lock(&recent_mutex);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700302 t = recent_table_lookup(info->name);
303 if (--t->refcnt == 0) {
Patrick McHardya0e889b2006-06-09 12:17:41 -0700304 spin_lock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700305 list_del(&t->list);
Patrick McHardya0e889b2006-06-09 12:17:41 -0700306 spin_unlock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700307 recent_table_flush(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308#ifdef CONFIG_PROC_FS
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700309 remove_proc_entry(t->name, proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310#endif
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700311 kfree(t);
312 }
Patrick McHardya0e889b2006-06-09 12:17:41 -0700313 mutex_unlock(&recent_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700316#ifdef CONFIG_PROC_FS
317struct recent_iter_state {
318 struct recent_table *table;
319 unsigned int bucket;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320};
321
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700322static void *recent_seq_start(struct seq_file *seq, loff_t *pos)
323{
324 struct recent_iter_state *st = seq->private;
Jan Engelhardta47362a2007-07-07 22:16:55 -0700325 const struct recent_table *t = st->table;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700326 struct recent_entry *e;
327 loff_t p = *pos;
328
329 spin_lock_bh(&recent_lock);
330
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700331 for (st->bucket = 0; st->bucket < ip_list_hash_size; st->bucket++)
332 list_for_each_entry(e, &t->iphash[st->bucket], list)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700333 if (p-- == 0)
334 return e;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700335 return NULL;
336}
337
338static void *recent_seq_next(struct seq_file *seq, void *v, loff_t *pos)
339{
340 struct recent_iter_state *st = seq->private;
341 struct recent_table *t = st->table;
342 struct recent_entry *e = v;
343 struct list_head *head = e->list.next;
344
345 while (head == &t->iphash[st->bucket]) {
346 if (++st->bucket >= ip_list_hash_size)
347 return NULL;
348 head = t->iphash[st->bucket].next;
349 }
350 (*pos)++;
351 return list_entry(head, struct recent_entry, list);
352}
353
354static void recent_seq_stop(struct seq_file *s, void *v)
355{
356 spin_unlock_bh(&recent_lock);
357}
358
359static int recent_seq_show(struct seq_file *seq, void *v)
360{
361 struct recent_entry *e = v;
362 unsigned int i;
363
364 i = (e->index - 1) % ip_pkt_list_tot;
365 seq_printf(seq, "src=%u.%u.%u.%u ttl: %u last_seen: %lu oldest_pkt: %u",
366 NIPQUAD(e->addr), e->ttl, e->stamps[i], e->index);
367 for (i = 0; i < e->nstamps; i++)
368 seq_printf(seq, "%s %lu", i ? "," : "", e->stamps[i]);
369 seq_printf(seq, "\n");
370 return 0;
371}
372
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700373static const struct seq_operations recent_seq_ops = {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700374 .start = recent_seq_start,
375 .next = recent_seq_next,
376 .stop = recent_seq_stop,
377 .show = recent_seq_show,
378};
379
380static int recent_seq_open(struct inode *inode, struct file *file)
381{
382 struct proc_dir_entry *pde = PDE(inode);
383 struct seq_file *seq;
384 struct recent_iter_state *st;
385 int ret;
386
387 st = kzalloc(sizeof(*st), GFP_KERNEL);
388 if (st == NULL)
389 return -ENOMEM;
390 ret = seq_open(file, &recent_seq_ops);
391 if (ret)
392 kfree(st);
393 st->table = pde->data;
394 seq = file->private_data;
395 seq->private = st;
396 return ret;
397}
398
399static ssize_t recent_proc_write(struct file *file, const char __user *input,
400 size_t size, loff_t *loff)
401{
Josef Sipek6df81ab2006-12-08 02:37:24 -0800402 struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700403 struct recent_table *t = pde->data;
404 struct recent_entry *e;
405 char buf[sizeof("+255.255.255.255")], *c = buf;
Al Viro6a19d612006-09-28 14:22:24 -0700406 __be32 addr;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700407 int add;
408
409 if (size > sizeof(buf))
410 size = sizeof(buf);
411 if (copy_from_user(buf, input, size))
412 return -EFAULT;
413 while (isspace(*c))
414 c++;
415
416 if (size - (c - buf) < 5)
417 return c - buf;
418 if (!strncmp(c, "clear", 5)) {
419 c += 5;
420 spin_lock_bh(&recent_lock);
421 recent_table_flush(t);
422 spin_unlock_bh(&recent_lock);
423 return c - buf;
424 }
425
426 switch (*c) {
427 case '-':
428 add = 0;
429 c++;
430 break;
431 case '+':
432 c++;
433 default:
434 add = 1;
435 break;
436 }
437 addr = in_aton(c);
438
439 spin_lock_bh(&recent_lock);
440 e = recent_entry_lookup(t, addr, 0);
441 if (e == NULL) {
442 if (add)
443 recent_entry_init(t, addr, 0);
444 } else {
445 if (add)
446 recent_entry_update(t, e);
447 else
448 recent_entry_remove(t, e);
449 }
450 spin_unlock_bh(&recent_lock);
451 return size;
452}
453
Arjan van de Ven9a321442007-02-12 00:55:35 -0800454static const struct file_operations recent_fops = {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700455 .open = recent_seq_open,
456 .read = seq_read,
457 .write = recent_proc_write,
458 .release = seq_release_private,
459 .owner = THIS_MODULE,
460};
461#endif /* CONFIG_PROC_FS */
462
Patrick McHardy9f15c532007-07-07 22:22:02 -0700463static struct xt_match recent_match __read_mostly = {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700464 .name = "recent",
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800465 .family = AF_INET,
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700466 .match = ipt_recent_match,
467 .matchsize = sizeof(struct ipt_recent_info),
468 .checkentry = ipt_recent_checkentry,
469 .destroy = ipt_recent_destroy,
470 .me = THIS_MODULE,
471};
472
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800473static int __init ipt_recent_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700475 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700477 if (!ip_list_tot || !ip_pkt_list_tot || ip_pkt_list_tot > 255)
478 return -EINVAL;
479 ip_list_hash_size = 1 << fls(ip_list_tot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800481 err = xt_register_match(&recent_match);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700482#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 if (err)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700484 return err;
485 proc_dir = proc_mkdir("ipt_recent", proc_net);
486 if (proc_dir == NULL) {
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800487 xt_unregister_match(&recent_match);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700488 err = -ENOMEM;
489 }
490#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 return err;
492}
493
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700494static void __exit ipt_recent_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700496 BUG_ON(!list_empty(&tables));
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800497 xt_unregister_match(&recent_match);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700498#ifdef CONFIG_PROC_FS
499 remove_proc_entry("ipt_recent", proc_net);
500#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
502
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800503module_init(ipt_recent_init);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700504module_exit(ipt_recent_exit);