blob: 8e8f0425a8ede2b22c02763d4b5282b4bdcf6b40 [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>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020027#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Jan Engelhardt6709dbb2007-02-07 15:11:19 -080029#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/netfilter_ipv4/ipt_recent.h>
31
Patrick McHardy404bdbf2006-05-29 18:21:34 -070032MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080033MODULE_DESCRIPTION("Xtables: \"recently-seen\" host matching for IPv4");
Patrick McHardy404bdbf2006-05-29 18:21:34 -070034MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Patrick McHardye7be6992006-01-05 12:19:46 -080036static unsigned int ip_list_tot = 100;
37static unsigned int ip_pkt_list_tot = 20;
38static unsigned int ip_list_hash_size = 0;
39static unsigned int ip_list_perms = 0644;
Daniel De Graafb93ff782006-08-22 00:30:55 -070040static unsigned int ip_list_uid = 0;
41static unsigned int ip_list_gid = 0;
Patrick McHardye7be6992006-01-05 12:19:46 -080042module_param(ip_list_tot, uint, 0400);
43module_param(ip_pkt_list_tot, uint, 0400);
44module_param(ip_list_hash_size, uint, 0400);
45module_param(ip_list_perms, uint, 0400);
Daniel De Graafb93ff782006-08-22 00:30:55 -070046module_param(ip_list_uid, uint, 0400);
47module_param(ip_list_gid, uint, 0400);
Patrick McHardy404bdbf2006-05-29 18:21:34 -070048MODULE_PARM_DESC(ip_list_tot, "number of IPs to remember per list");
49MODULE_PARM_DESC(ip_pkt_list_tot, "number of packets per IP to remember (max. 255)");
50MODULE_PARM_DESC(ip_list_hash_size, "size of hash table used to look up IPs");
51MODULE_PARM_DESC(ip_list_perms, "permissions on /proc/net/ipt_recent/* files");
Daniel De Graafb93ff782006-08-22 00:30:55 -070052MODULE_PARM_DESC(ip_list_uid,"owner of /proc/net/ipt_recent/* files");
53MODULE_PARM_DESC(ip_list_gid,"owning group of /proc/net/ipt_recent/* files");
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Patrick McHardy404bdbf2006-05-29 18:21:34 -070055struct recent_entry {
56 struct list_head list;
57 struct list_head lru_list;
Al Viro6a19d612006-09-28 14:22:24 -070058 __be32 addr;
Patrick McHardy404bdbf2006-05-29 18:21:34 -070059 u_int8_t ttl;
60 u_int8_t index;
61 u_int16_t nstamps;
62 unsigned long stamps[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -070063};
64
Patrick McHardy404bdbf2006-05-29 18:21:34 -070065struct recent_table {
66 struct list_head list;
67 char name[IPT_RECENT_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#ifdef CONFIG_PROC_FS
Patrick McHardy404bdbf2006-05-29 18:21:34 -070069 struct proc_dir_entry *proc;
70#endif
71 unsigned int refcnt;
72 unsigned int entries;
73 struct list_head lru_list;
74 struct list_head iphash[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -070075};
76
Patrick McHardy404bdbf2006-05-29 18:21:34 -070077static LIST_HEAD(tables);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078static DEFINE_SPINLOCK(recent_lock);
Patrick McHardya0e889b2006-06-09 12:17:41 -070079static DEFINE_MUTEX(recent_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81#ifdef CONFIG_PROC_FS
Patrick McHardy404bdbf2006-05-29 18:21:34 -070082static struct proc_dir_entry *proc_dir;
Arjan van de Ven9a321442007-02-12 00:55:35 -080083static const struct file_operations recent_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#endif
85
Patrick McHardy404bdbf2006-05-29 18:21:34 -070086static u_int32_t hash_rnd;
87static int hash_rnd_initted;
88
Al Viro6a19d612006-09-28 14:22:24 -070089static unsigned int recent_entry_hash(__be32 addr)
Patrick McHardy404bdbf2006-05-29 18:21:34 -070090{
91 if (!hash_rnd_initted) {
92 get_random_bytes(&hash_rnd, 4);
93 hash_rnd_initted = 1;
94 }
Al Viro6a19d612006-09-28 14:22:24 -070095 return jhash_1word((__force u32)addr, hash_rnd) & (ip_list_hash_size - 1);
Patrick McHardy404bdbf2006-05-29 18:21:34 -070096}
97
98static struct recent_entry *
Al Viro6a19d612006-09-28 14:22:24 -070099recent_entry_lookup(const struct recent_table *table, __be32 addr, u_int8_t ttl)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700100{
101 struct recent_entry *e;
102 unsigned int h;
103
104 h = recent_entry_hash(addr);
105 list_for_each_entry(e, &table->iphash[h], list)
106 if (e->addr == addr && (ttl == e->ttl || !ttl || !e->ttl))
107 return e;
108 return NULL;
109}
110
111static void recent_entry_remove(struct recent_table *t, struct recent_entry *e)
112{
113 list_del(&e->list);
114 list_del(&e->lru_list);
115 kfree(e);
116 t->entries--;
117}
118
119static struct recent_entry *
Al Viro6a19d612006-09-28 14:22:24 -0700120recent_entry_init(struct recent_table *t, __be32 addr, u_int8_t ttl)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700121{
122 struct recent_entry *e;
123
124 if (t->entries >= ip_list_tot) {
125 e = list_entry(t->lru_list.next, struct recent_entry, lru_list);
126 recent_entry_remove(t, e);
127 }
128 e = kmalloc(sizeof(*e) + sizeof(e->stamps[0]) * ip_pkt_list_tot,
129 GFP_ATOMIC);
130 if (e == NULL)
131 return NULL;
132 e->addr = addr;
133 e->ttl = ttl;
134 e->stamps[0] = jiffies;
135 e->nstamps = 1;
136 e->index = 1;
137 list_add_tail(&e->list, &t->iphash[recent_entry_hash(addr)]);
138 list_add_tail(&e->lru_list, &t->lru_list);
139 t->entries++;
140 return e;
141}
142
143static void recent_entry_update(struct recent_table *t, struct recent_entry *e)
144{
145 e->stamps[e->index++] = jiffies;
146 if (e->index > e->nstamps)
147 e->nstamps = e->index;
148 e->index %= ip_pkt_list_tot;
149 list_move_tail(&e->lru_list, &t->lru_list);
150}
151
152static struct recent_table *recent_table_lookup(const char *name)
153{
154 struct recent_table *t;
155
156 list_for_each_entry(t, &tables, list)
157 if (!strcmp(t->name, name))
158 return t;
159 return NULL;
160}
161
162static void recent_table_flush(struct recent_table *t)
163{
164 struct recent_entry *e, *next;
165 unsigned int i;
166
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700167 for (i = 0; i < ip_list_hash_size; i++)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700168 list_for_each_entry_safe(e, next, &t->iphash[i], list)
169 recent_entry_remove(t, e);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700170}
171
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700172static bool
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800173recent_mt(const struct sk_buff *skb, const struct net_device *in,
174 const struct net_device *out, const struct xt_match *match,
175 const void *matchinfo, int offset, unsigned int protoff,
176 bool *hotdrop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 const struct ipt_recent_info *info = matchinfo;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700179 struct recent_table *t;
180 struct recent_entry *e;
Al Viro6a19d612006-09-28 14:22:24 -0700181 __be32 addr;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700182 u_int8_t ttl;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700183 bool ret = info->invert;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700185 if (info->side == IPT_RECENT_DEST)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700186 addr = ip_hdr(skb)->daddr;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700187 else
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700188 addr = ip_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700190 ttl = ip_hdr(skb)->ttl;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700191 /* use TTL as seen before forwarding */
192 if (out && !skb->sk)
193 ttl++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 spin_lock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700196 t = recent_table_lookup(info->name);
197 e = recent_entry_lookup(t, addr,
198 info->check_set & IPT_RECENT_TTL ? ttl : 0);
199 if (e == NULL) {
200 if (!(info->check_set & IPT_RECENT_SET))
201 goto out;
202 e = recent_entry_init(t, addr, ttl);
203 if (e == NULL)
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700204 *hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700205 ret = !ret;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700206 goto out;
207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700209 if (info->check_set & IPT_RECENT_SET)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700210 ret = !ret;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700211 else if (info->check_set & IPT_RECENT_REMOVE) {
212 recent_entry_remove(t, e);
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700213 ret = !ret;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700214 } else if (info->check_set & (IPT_RECENT_CHECK | IPT_RECENT_UPDATE)) {
Patrick McHardy855304a2008-01-31 04:09:46 -0800215 unsigned long time = jiffies - info->seconds * HZ;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700216 unsigned int i, hits = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700218 for (i = 0; i < e->nstamps; i++) {
Patrick McHardy855304a2008-01-31 04:09:46 -0800219 if (info->seconds && time_after(time, e->stamps[i]))
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700220 continue;
221 if (++hits >= info->hit_count) {
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700222 ret = !ret;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700223 break;
224 }
225 }
226 }
227
228 if (info->check_set & IPT_RECENT_SET ||
229 (info->check_set & IPT_RECENT_UPDATE && ret)) {
230 recent_entry_update(t, e);
231 e->ttl = ttl;
232 }
233out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 spin_unlock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700235 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700238static bool
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800239recent_mt_check(const char *tablename, const void *ip,
240 const struct xt_match *match, void *matchinfo,
241 unsigned int hook_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 const struct ipt_recent_info *info = matchinfo;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700244 struct recent_table *t;
245 unsigned i;
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700246 bool ret = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700248 if (hweight8(info->check_set &
249 (IPT_RECENT_SET | IPT_RECENT_REMOVE |
250 IPT_RECENT_CHECK | IPT_RECENT_UPDATE)) != 1)
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700251 return false;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700252 if ((info->check_set & (IPT_RECENT_SET | IPT_RECENT_REMOVE)) &&
253 (info->seconds || info->hit_count))
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700254 return false;
Daniel Hokka Zakrissond0ebf132008-03-20 15:07:10 -0700255 if (info->hit_count > ip_pkt_list_tot)
256 return false;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700257 if (info->name[0] == '\0' ||
258 strnlen(info->name, IPT_RECENT_NAME_LEN) == IPT_RECENT_NAME_LEN)
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700259 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Patrick McHardya0e889b2006-06-09 12:17:41 -0700261 mutex_lock(&recent_mutex);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700262 t = recent_table_lookup(info->name);
263 if (t != NULL) {
264 t->refcnt++;
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700265 ret = true;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700266 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 }
268
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700269 t = kzalloc(sizeof(*t) + sizeof(t->iphash[0]) * ip_list_hash_size,
Patrick McHardya0e889b2006-06-09 12:17:41 -0700270 GFP_KERNEL);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700271 if (t == NULL)
272 goto out;
Patrick McHardy2b2283d2006-06-09 12:18:17 -0700273 t->refcnt = 1;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700274 strcpy(t->name, info->name);
275 INIT_LIST_HEAD(&t->lru_list);
276 for (i = 0; i < ip_list_hash_size; i++)
277 INIT_LIST_HEAD(&t->iphash[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278#ifdef CONFIG_PROC_FS
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700279 t->proc = create_proc_entry(t->name, ip_list_perms, proc_dir);
280 if (t->proc == NULL) {
281 kfree(t);
282 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700284 t->proc->proc_fops = &recent_fops;
Daniel De Graafb93ff782006-08-22 00:30:55 -0700285 t->proc->uid = ip_list_uid;
286 t->proc->gid = ip_list_gid;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700287 t->proc->data = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288#endif
Patrick McHardya0e889b2006-06-09 12:17:41 -0700289 spin_lock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700290 list_add_tail(&t->list, &tables);
Patrick McHardya0e889b2006-06-09 12:17:41 -0700291 spin_unlock_bh(&recent_lock);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700292 ret = true;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700293out:
Patrick McHardya0e889b2006-06-09 12:17:41 -0700294 mutex_unlock(&recent_mutex);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700295 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800298static void recent_mt_destroy(const struct xt_match *match, void *matchinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
300 const struct ipt_recent_info *info = matchinfo;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700301 struct recent_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Patrick McHardya0e889b2006-06-09 12:17:41 -0700303 mutex_lock(&recent_mutex);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700304 t = recent_table_lookup(info->name);
305 if (--t->refcnt == 0) {
Patrick McHardya0e889b2006-06-09 12:17:41 -0700306 spin_lock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700307 list_del(&t->list);
Patrick McHardya0e889b2006-06-09 12:17:41 -0700308 spin_unlock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700309 recent_table_flush(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310#ifdef CONFIG_PROC_FS
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700311 remove_proc_entry(t->name, proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312#endif
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700313 kfree(t);
314 }
Patrick McHardya0e889b2006-06-09 12:17:41 -0700315 mutex_unlock(&recent_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700318#ifdef CONFIG_PROC_FS
319struct recent_iter_state {
320 struct recent_table *table;
321 unsigned int bucket;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322};
323
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700324static void *recent_seq_start(struct seq_file *seq, loff_t *pos)
Patrick McHardy855304a2008-01-31 04:09:46 -0800325 __acquires(recent_lock)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700326{
327 struct recent_iter_state *st = seq->private;
Jan Engelhardta47362a2007-07-07 22:16:55 -0700328 const struct recent_table *t = st->table;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700329 struct recent_entry *e;
330 loff_t p = *pos;
331
332 spin_lock_bh(&recent_lock);
333
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700334 for (st->bucket = 0; st->bucket < ip_list_hash_size; st->bucket++)
335 list_for_each_entry(e, &t->iphash[st->bucket], list)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700336 if (p-- == 0)
337 return e;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700338 return NULL;
339}
340
341static void *recent_seq_next(struct seq_file *seq, void *v, loff_t *pos)
342{
343 struct recent_iter_state *st = seq->private;
344 struct recent_table *t = st->table;
345 struct recent_entry *e = v;
346 struct list_head *head = e->list.next;
347
348 while (head == &t->iphash[st->bucket]) {
349 if (++st->bucket >= ip_list_hash_size)
350 return NULL;
351 head = t->iphash[st->bucket].next;
352 }
353 (*pos)++;
354 return list_entry(head, struct recent_entry, list);
355}
356
357static void recent_seq_stop(struct seq_file *s, void *v)
Patrick McHardy855304a2008-01-31 04:09:46 -0800358 __releases(recent_lock)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700359{
360 spin_unlock_bh(&recent_lock);
361}
362
363static int recent_seq_show(struct seq_file *seq, void *v)
364{
365 struct recent_entry *e = v;
366 unsigned int i;
367
368 i = (e->index - 1) % ip_pkt_list_tot;
369 seq_printf(seq, "src=%u.%u.%u.%u ttl: %u last_seen: %lu oldest_pkt: %u",
370 NIPQUAD(e->addr), e->ttl, e->stamps[i], e->index);
371 for (i = 0; i < e->nstamps; i++)
372 seq_printf(seq, "%s %lu", i ? "," : "", e->stamps[i]);
373 seq_printf(seq, "\n");
374 return 0;
375}
376
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700377static const struct seq_operations recent_seq_ops = {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700378 .start = recent_seq_start,
379 .next = recent_seq_next,
380 .stop = recent_seq_stop,
381 .show = recent_seq_show,
382};
383
384static int recent_seq_open(struct inode *inode, struct file *file)
385{
386 struct proc_dir_entry *pde = PDE(inode);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700387 struct recent_iter_state *st;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700388
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700389 st = __seq_open_private(file, &recent_seq_ops, sizeof(*st));
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700390 if (st == NULL)
391 return -ENOMEM;
Jesper Juhl3af8e312007-08-07 18:10:54 -0700392
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700393 st->table = pde->data;
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700394 return 0;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700395}
396
397static ssize_t recent_proc_write(struct file *file, const char __user *input,
398 size_t size, loff_t *loff)
399{
Josef Sipek6df81ab2006-12-08 02:37:24 -0800400 struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700401 struct recent_table *t = pde->data;
402 struct recent_entry *e;
403 char buf[sizeof("+255.255.255.255")], *c = buf;
Al Viro6a19d612006-09-28 14:22:24 -0700404 __be32 addr;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700405 int add;
406
407 if (size > sizeof(buf))
408 size = sizeof(buf);
409 if (copy_from_user(buf, input, size))
410 return -EFAULT;
411 while (isspace(*c))
412 c++;
413
414 if (size - (c - buf) < 5)
415 return c - buf;
416 if (!strncmp(c, "clear", 5)) {
417 c += 5;
418 spin_lock_bh(&recent_lock);
419 recent_table_flush(t);
420 spin_unlock_bh(&recent_lock);
421 return c - buf;
422 }
423
424 switch (*c) {
425 case '-':
426 add = 0;
427 c++;
428 break;
429 case '+':
430 c++;
431 default:
432 add = 1;
433 break;
434 }
435 addr = in_aton(c);
436
437 spin_lock_bh(&recent_lock);
438 e = recent_entry_lookup(t, addr, 0);
439 if (e == NULL) {
440 if (add)
441 recent_entry_init(t, addr, 0);
442 } else {
443 if (add)
444 recent_entry_update(t, e);
445 else
446 recent_entry_remove(t, e);
447 }
448 spin_unlock_bh(&recent_lock);
449 return size;
450}
451
Arjan van de Ven9a321442007-02-12 00:55:35 -0800452static const struct file_operations recent_fops = {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700453 .open = recent_seq_open,
454 .read = seq_read,
455 .write = recent_proc_write,
456 .release = seq_release_private,
457 .owner = THIS_MODULE,
458};
459#endif /* CONFIG_PROC_FS */
460
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800461static struct xt_match recent_mt_reg __read_mostly = {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700462 .name = "recent",
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800463 .family = AF_INET,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800464 .match = recent_mt,
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700465 .matchsize = sizeof(struct ipt_recent_info),
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800466 .checkentry = recent_mt_check,
467 .destroy = recent_mt_destroy,
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700468 .me = THIS_MODULE,
469};
470
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800471static int __init recent_mt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700473 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700475 if (!ip_list_tot || !ip_pkt_list_tot || ip_pkt_list_tot > 255)
476 return -EINVAL;
477 ip_list_hash_size = 1 << fls(ip_list_tot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800479 err = xt_register_match(&recent_mt_reg);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700480#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 if (err)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700482 return err;
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200483 proc_dir = proc_mkdir("ipt_recent", init_net.proc_net);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700484 if (proc_dir == NULL) {
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800485 xt_unregister_match(&recent_mt_reg);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700486 err = -ENOMEM;
487 }
488#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 return err;
490}
491
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800492static void __exit recent_mt_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700494 BUG_ON(!list_empty(&tables));
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800495 xt_unregister_match(&recent_mt_reg);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700496#ifdef CONFIG_PROC_FS
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200497 remove_proc_entry("ipt_recent", init_net.proc_net);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700498#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499}
500
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800501module_init(recent_mt_init);
502module_exit(recent_mt_exit);