blob: 4a916e2624d3de06a8760dc3b34f049885ee6c38 [file] [log] [blame]
Patrick McHardy404bdbf2006-05-29 18:21:34 -07001/*
2 * Copyright (c) 2006 Patrick McHardy <kaber@trash.net>
Jan Engelhardt079aa882008-10-08 11:35:00 +02003 * Copyright © CC Computer Consultants GmbH, 2007 - 2008
Patrick McHardy404bdbf2006-05-29 18:21:34 -07004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 * This is a replacement of the old ipt_recent module, which carried the
10 * following copyright notice:
11 *
12 * Author: Stephen Frost <sfrost@snowman.net>
13 * Copyright 2002-2003, Stephen Frost, 2.5.x port by laforge@netfilter.org
14 */
15#include <linux/init.h>
Jan Engelhardt6709dbb2007-02-07 15:11:19 -080016#include <linux/ip.h>
Jan Engelhardt079aa882008-10-08 11:35:00 +020017#include <linux/ipv6.h>
18#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/moduleparam.h>
Patrick McHardy404bdbf2006-05-29 18:21:34 -070020#include <linux/proc_fs.h>
21#include <linux/seq_file.h>
22#include <linux/string.h>
23#include <linux/ctype.h>
24#include <linux/list.h>
25#include <linux/random.h>
26#include <linux/jhash.h>
27#include <linux/bitops.h>
28#include <linux/skbuff.h>
29#include <linux/inet.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020030#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Jan Engelhardt6709dbb2007-02-07 15:11:19 -080032#include <linux/netfilter/x_tables.h>
Jan Engelhardte948b202008-10-08 11:35:00 +020033#include <linux/netfilter/xt_recent.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Patrick McHardy404bdbf2006-05-29 18:21:34 -070035MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
Jan Engelhardt079aa882008-10-08 11:35:00 +020036MODULE_AUTHOR("Jan Engelhardt <jengelh@computergmbh.de>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080037MODULE_DESCRIPTION("Xtables: \"recently-seen\" host matching for IPv4");
Patrick McHardy404bdbf2006-05-29 18:21:34 -070038MODULE_LICENSE("GPL");
Jan Engelhardte948b202008-10-08 11:35:00 +020039MODULE_ALIAS("ipt_recent");
Jan Engelhardt079aa882008-10-08 11:35:00 +020040MODULE_ALIAS("ip6t_recent");
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Patrick McHardye7be6992006-01-05 12:19:46 -080042static unsigned int ip_list_tot = 100;
43static unsigned int ip_pkt_list_tot = 20;
44static unsigned int ip_list_hash_size = 0;
45static unsigned int ip_list_perms = 0644;
Daniel De Graafb93ff782006-08-22 00:30:55 -070046static unsigned int ip_list_uid = 0;
47static unsigned int ip_list_gid = 0;
Patrick McHardye7be6992006-01-05 12:19:46 -080048module_param(ip_list_tot, uint, 0400);
49module_param(ip_pkt_list_tot, uint, 0400);
50module_param(ip_list_hash_size, uint, 0400);
51module_param(ip_list_perms, uint, 0400);
Daniel De Graafb93ff782006-08-22 00:30:55 -070052module_param(ip_list_uid, uint, 0400);
53module_param(ip_list_gid, uint, 0400);
Patrick McHardy404bdbf2006-05-29 18:21:34 -070054MODULE_PARM_DESC(ip_list_tot, "number of IPs to remember per list");
55MODULE_PARM_DESC(ip_pkt_list_tot, "number of packets per IP to remember (max. 255)");
56MODULE_PARM_DESC(ip_list_hash_size, "size of hash table used to look up IPs");
Jan Engelhardt079aa882008-10-08 11:35:00 +020057MODULE_PARM_DESC(ip_list_perms, "permissions on /proc/net/xt_recent/* files");
58MODULE_PARM_DESC(ip_list_uid,"owner of /proc/net/xt_recent/* files");
59MODULE_PARM_DESC(ip_list_gid,"owning group of /proc/net/xt_recent/* files");
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Patrick McHardy404bdbf2006-05-29 18:21:34 -070061struct recent_entry {
62 struct list_head list;
63 struct list_head lru_list;
Jan Engelhardt079aa882008-10-08 11:35:00 +020064 union nf_inet_addr addr;
65 u_int16_t family;
Patrick McHardy404bdbf2006-05-29 18:21:34 -070066 u_int8_t ttl;
67 u_int8_t index;
68 u_int16_t nstamps;
69 unsigned long stamps[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -070070};
71
Patrick McHardy404bdbf2006-05-29 18:21:34 -070072struct recent_table {
73 struct list_head list;
Jan Engelhardte948b202008-10-08 11:35:00 +020074 char name[XT_RECENT_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#ifdef CONFIG_PROC_FS
Jan Engelhardt079aa882008-10-08 11:35:00 +020076 struct proc_dir_entry *proc_old, *proc;
Patrick McHardy404bdbf2006-05-29 18:21:34 -070077#endif
78 unsigned int refcnt;
79 unsigned int entries;
80 struct list_head lru_list;
81 struct list_head iphash[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -070082};
83
Patrick McHardy404bdbf2006-05-29 18:21:34 -070084static LIST_HEAD(tables);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085static DEFINE_SPINLOCK(recent_lock);
Patrick McHardya0e889b2006-06-09 12:17:41 -070086static DEFINE_MUTEX(recent_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88#ifdef CONFIG_PROC_FS
Jan Engelhardt079aa882008-10-08 11:35:00 +020089#ifdef CONFIG_NETFILTER_XT_MATCH_RECENT_PROC_COMPAT
90static struct proc_dir_entry *proc_old_dir;
91#endif
92static struct proc_dir_entry *recent_proc_dir;
93static const struct file_operations recent_old_fops, recent_mt_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#endif
95
Patrick McHardy404bdbf2006-05-29 18:21:34 -070096static u_int32_t hash_rnd;
Jan Engelhardt079aa882008-10-08 11:35:00 +020097static bool hash_rnd_initted;
Patrick McHardy404bdbf2006-05-29 18:21:34 -070098
Jan Engelhardt079aa882008-10-08 11:35:00 +020099static unsigned int recent_entry_hash4(const union nf_inet_addr *addr)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700100{
101 if (!hash_rnd_initted) {
Jan Engelhardt079aa882008-10-08 11:35:00 +0200102 get_random_bytes(&hash_rnd, sizeof(hash_rnd));
103 hash_rnd_initted = true;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700104 }
Jan Engelhardt079aa882008-10-08 11:35:00 +0200105 return jhash_1word((__force u32)addr->ip, hash_rnd) &
106 (ip_list_hash_size - 1);
107}
108
109static unsigned int recent_entry_hash6(const union nf_inet_addr *addr)
110{
111 if (!hash_rnd_initted) {
112 get_random_bytes(&hash_rnd, sizeof(hash_rnd));
113 hash_rnd_initted = true;
114 }
115 return jhash2((u32 *)addr->ip6, ARRAY_SIZE(addr->ip6), hash_rnd) &
116 (ip_list_hash_size - 1);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700117}
118
119static struct recent_entry *
Jan Engelhardt079aa882008-10-08 11:35:00 +0200120recent_entry_lookup(const struct recent_table *table,
121 const union nf_inet_addr *addrp, u_int16_t family,
122 u_int8_t ttl)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700123{
124 struct recent_entry *e;
125 unsigned int h;
126
Jan Engelhardtee999d82008-10-08 11:35:01 +0200127 if (family == NFPROTO_IPV4)
Jan Engelhardt079aa882008-10-08 11:35:00 +0200128 h = recent_entry_hash4(addrp);
129 else
130 h = recent_entry_hash6(addrp);
131
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700132 list_for_each_entry(e, &table->iphash[h], list)
Jan Engelhardt079aa882008-10-08 11:35:00 +0200133 if (e->family == family &&
134 memcmp(&e->addr, addrp, sizeof(e->addr)) == 0 &&
135 (ttl == e->ttl || ttl == 0 || e->ttl == 0))
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700136 return e;
137 return NULL;
138}
139
140static void recent_entry_remove(struct recent_table *t, struct recent_entry *e)
141{
142 list_del(&e->list);
143 list_del(&e->lru_list);
144 kfree(e);
145 t->entries--;
146}
147
148static struct recent_entry *
Jan Engelhardt079aa882008-10-08 11:35:00 +0200149recent_entry_init(struct recent_table *t, const union nf_inet_addr *addr,
150 u_int16_t family, u_int8_t ttl)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700151{
152 struct recent_entry *e;
153
154 if (t->entries >= ip_list_tot) {
155 e = list_entry(t->lru_list.next, struct recent_entry, lru_list);
156 recent_entry_remove(t, e);
157 }
158 e = kmalloc(sizeof(*e) + sizeof(e->stamps[0]) * ip_pkt_list_tot,
159 GFP_ATOMIC);
160 if (e == NULL)
161 return NULL;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200162 memcpy(&e->addr, addr, sizeof(e->addr));
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700163 e->ttl = ttl;
164 e->stamps[0] = jiffies;
165 e->nstamps = 1;
166 e->index = 1;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200167 e->family = family;
Jan Engelhardtee999d82008-10-08 11:35:01 +0200168 if (family == NFPROTO_IPV4)
Jan Engelhardt079aa882008-10-08 11:35:00 +0200169 list_add_tail(&e->list, &t->iphash[recent_entry_hash4(addr)]);
170 else
171 list_add_tail(&e->list, &t->iphash[recent_entry_hash6(addr)]);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700172 list_add_tail(&e->lru_list, &t->lru_list);
173 t->entries++;
174 return e;
175}
176
177static void recent_entry_update(struct recent_table *t, struct recent_entry *e)
178{
179 e->stamps[e->index++] = jiffies;
180 if (e->index > e->nstamps)
181 e->nstamps = e->index;
182 e->index %= ip_pkt_list_tot;
183 list_move_tail(&e->lru_list, &t->lru_list);
184}
185
186static struct recent_table *recent_table_lookup(const char *name)
187{
188 struct recent_table *t;
189
190 list_for_each_entry(t, &tables, list)
191 if (!strcmp(t->name, name))
192 return t;
193 return NULL;
194}
195
196static void recent_table_flush(struct recent_table *t)
197{
198 struct recent_entry *e, *next;
199 unsigned int i;
200
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700201 for (i = 0; i < ip_list_hash_size; i++)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700202 list_for_each_entry_safe(e, next, &t->iphash[i], list)
203 recent_entry_remove(t, e);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700204}
205
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700206static bool
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800207recent_mt(const struct sk_buff *skb, const struct net_device *in,
208 const struct net_device *out, const struct xt_match *match,
209 const void *matchinfo, int offset, unsigned int protoff,
210 bool *hotdrop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Jan Engelhardte948b202008-10-08 11:35:00 +0200212 const struct xt_recent_mtinfo *info = matchinfo;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700213 struct recent_table *t;
214 struct recent_entry *e;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200215 union nf_inet_addr addr = {};
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700216 u_int8_t ttl;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700217 bool ret = info->invert;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Jan Engelhardtee999d82008-10-08 11:35:01 +0200219 if (match->family == NFPROTO_IPV4) {
Jan Engelhardt079aa882008-10-08 11:35:00 +0200220 const struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Jan Engelhardt079aa882008-10-08 11:35:00 +0200222 if (info->side == XT_RECENT_DEST)
223 addr.ip = iph->daddr;
224 else
225 addr.ip = iph->saddr;
226
227 ttl = iph->ttl;
228 } else {
229 const struct ipv6hdr *iph = ipv6_hdr(skb);
230
231 if (info->side == XT_RECENT_DEST)
232 memcpy(&addr.in6, &iph->daddr, sizeof(addr.in6));
233 else
234 memcpy(&addr.in6, &iph->saddr, sizeof(addr.in6));
235
236 ttl = iph->hop_limit;
237 }
238
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700239 /* use TTL as seen before forwarding */
240 if (out && !skb->sk)
241 ttl++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 spin_lock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700244 t = recent_table_lookup(info->name);
Jan Engelhardt079aa882008-10-08 11:35:00 +0200245 e = recent_entry_lookup(t, &addr, match->family,
246 (info->check_set & XT_RECENT_TTL) ? ttl : 0);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700247 if (e == NULL) {
Jan Engelhardte948b202008-10-08 11:35:00 +0200248 if (!(info->check_set & XT_RECENT_SET))
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700249 goto out;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200250 e = recent_entry_init(t, &addr, match->family, ttl);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700251 if (e == NULL)
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700252 *hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700253 ret = !ret;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700254 goto out;
255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Jan Engelhardte948b202008-10-08 11:35:00 +0200257 if (info->check_set & XT_RECENT_SET)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700258 ret = !ret;
Jan Engelhardte948b202008-10-08 11:35:00 +0200259 else if (info->check_set & XT_RECENT_REMOVE) {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700260 recent_entry_remove(t, e);
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700261 ret = !ret;
Jan Engelhardte948b202008-10-08 11:35:00 +0200262 } else if (info->check_set & (XT_RECENT_CHECK | XT_RECENT_UPDATE)) {
Patrick McHardy855304a2008-01-31 04:09:46 -0800263 unsigned long time = jiffies - info->seconds * HZ;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700264 unsigned int i, hits = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700266 for (i = 0; i < e->nstamps; i++) {
Patrick McHardy855304a2008-01-31 04:09:46 -0800267 if (info->seconds && time_after(time, e->stamps[i]))
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700268 continue;
269 if (++hits >= info->hit_count) {
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700270 ret = !ret;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700271 break;
272 }
273 }
274 }
275
Jan Engelhardte948b202008-10-08 11:35:00 +0200276 if (info->check_set & XT_RECENT_SET ||
277 (info->check_set & XT_RECENT_UPDATE && ret)) {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700278 recent_entry_update(t, e);
279 e->ttl = ttl;
280 }
281out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 spin_unlock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700283 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700286static bool
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800287recent_mt_check(const char *tablename, const void *ip,
288 const struct xt_match *match, void *matchinfo,
289 unsigned int hook_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Jan Engelhardte948b202008-10-08 11:35:00 +0200291 const struct xt_recent_mtinfo *info = matchinfo;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700292 struct recent_table *t;
293 unsigned i;
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700294 bool ret = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700296 if (hweight8(info->check_set &
Jan Engelhardte948b202008-10-08 11:35:00 +0200297 (XT_RECENT_SET | XT_RECENT_REMOVE |
298 XT_RECENT_CHECK | XT_RECENT_UPDATE)) != 1)
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700299 return false;
Jan Engelhardte948b202008-10-08 11:35:00 +0200300 if ((info->check_set & (XT_RECENT_SET | XT_RECENT_REMOVE)) &&
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700301 (info->seconds || info->hit_count))
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700302 return false;
Daniel Hokka Zakrissond0ebf132008-03-20 15:07:10 -0700303 if (info->hit_count > ip_pkt_list_tot)
304 return false;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700305 if (info->name[0] == '\0' ||
Jan Engelhardte948b202008-10-08 11:35:00 +0200306 strnlen(info->name, XT_RECENT_NAME_LEN) == XT_RECENT_NAME_LEN)
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700307 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Patrick McHardya0e889b2006-06-09 12:17:41 -0700309 mutex_lock(&recent_mutex);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700310 t = recent_table_lookup(info->name);
311 if (t != NULL) {
312 t->refcnt++;
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700313 ret = true;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700314 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 }
316
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700317 t = kzalloc(sizeof(*t) + sizeof(t->iphash[0]) * ip_list_hash_size,
Patrick McHardya0e889b2006-06-09 12:17:41 -0700318 GFP_KERNEL);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700319 if (t == NULL)
320 goto out;
Patrick McHardy2b2283d2006-06-09 12:18:17 -0700321 t->refcnt = 1;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700322 strcpy(t->name, info->name);
323 INIT_LIST_HEAD(&t->lru_list);
324 for (i = 0; i < ip_list_hash_size; i++)
325 INIT_LIST_HEAD(&t->iphash[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326#ifdef CONFIG_PROC_FS
Jan Engelhardt079aa882008-10-08 11:35:00 +0200327 t->proc = proc_create(t->name, ip_list_perms, recent_proc_dir,
328 &recent_mt_fops);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700329 if (t->proc == NULL) {
330 kfree(t);
331 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
Jan Engelhardt079aa882008-10-08 11:35:00 +0200333#ifdef CONFIG_NETFILTER_XT_MATCH_RECENT_PROC_COMPAT
334 t->proc_old = proc_create(t->name, ip_list_perms, proc_old_dir,
335 &recent_old_fops);
336 if (t->proc_old == NULL) {
337 remove_proc_entry(t->name, proc_old_dir);
338 kfree(t);
339 goto out;
340 }
341 t->proc_old->uid = ip_list_uid;
342 t->proc_old->gid = ip_list_gid;
343 t->proc_old->data = t;
344#endif
Daniel De Graafb93ff782006-08-22 00:30:55 -0700345 t->proc->uid = ip_list_uid;
346 t->proc->gid = ip_list_gid;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700347 t->proc->data = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348#endif
Patrick McHardya0e889b2006-06-09 12:17:41 -0700349 spin_lock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700350 list_add_tail(&t->list, &tables);
Patrick McHardya0e889b2006-06-09 12:17:41 -0700351 spin_unlock_bh(&recent_lock);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700352 ret = true;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700353out:
Patrick McHardya0e889b2006-06-09 12:17:41 -0700354 mutex_unlock(&recent_mutex);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700355 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
357
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800358static void recent_mt_destroy(const struct xt_match *match, void *matchinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
Jan Engelhardte948b202008-10-08 11:35:00 +0200360 const struct xt_recent_mtinfo *info = matchinfo;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700361 struct recent_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Patrick McHardya0e889b2006-06-09 12:17:41 -0700363 mutex_lock(&recent_mutex);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700364 t = recent_table_lookup(info->name);
365 if (--t->refcnt == 0) {
Patrick McHardya0e889b2006-06-09 12:17:41 -0700366 spin_lock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700367 list_del(&t->list);
Patrick McHardya0e889b2006-06-09 12:17:41 -0700368 spin_unlock_bh(&recent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369#ifdef CONFIG_PROC_FS
Jan Engelhardt079aa882008-10-08 11:35:00 +0200370#ifdef CONFIG_NETFILTER_XT_MATCH_RECENT_PROC_COMPAT
371 remove_proc_entry(t->name, proc_old_dir);
372#endif
373 remove_proc_entry(t->name, recent_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374#endif
Pavel Emelyanova8ddc912008-07-31 00:38:31 -0700375 recent_table_flush(t);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700376 kfree(t);
377 }
Patrick McHardya0e889b2006-06-09 12:17:41 -0700378 mutex_unlock(&recent_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700381#ifdef CONFIG_PROC_FS
382struct recent_iter_state {
Jan Engelhardt079aa882008-10-08 11:35:00 +0200383 const struct recent_table *table;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700384 unsigned int bucket;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385};
386
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700387static void *recent_seq_start(struct seq_file *seq, loff_t *pos)
Patrick McHardy855304a2008-01-31 04:09:46 -0800388 __acquires(recent_lock)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700389{
390 struct recent_iter_state *st = seq->private;
Jan Engelhardta47362a2007-07-07 22:16:55 -0700391 const struct recent_table *t = st->table;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700392 struct recent_entry *e;
393 loff_t p = *pos;
394
395 spin_lock_bh(&recent_lock);
396
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700397 for (st->bucket = 0; st->bucket < ip_list_hash_size; st->bucket++)
398 list_for_each_entry(e, &t->iphash[st->bucket], list)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700399 if (p-- == 0)
400 return e;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700401 return NULL;
402}
403
404static void *recent_seq_next(struct seq_file *seq, void *v, loff_t *pos)
405{
406 struct recent_iter_state *st = seq->private;
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200407 const struct recent_table *t = st->table;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200408 const struct recent_entry *e = v;
409 const struct list_head *head = e->list.next;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700410
411 while (head == &t->iphash[st->bucket]) {
412 if (++st->bucket >= ip_list_hash_size)
413 return NULL;
414 head = t->iphash[st->bucket].next;
415 }
416 (*pos)++;
417 return list_entry(head, struct recent_entry, list);
418}
419
420static void recent_seq_stop(struct seq_file *s, void *v)
Patrick McHardy855304a2008-01-31 04:09:46 -0800421 __releases(recent_lock)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700422{
423 spin_unlock_bh(&recent_lock);
424}
425
426static int recent_seq_show(struct seq_file *seq, void *v)
427{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200428 const struct recent_entry *e = v;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700429 unsigned int i;
430
431 i = (e->index - 1) % ip_pkt_list_tot;
Jan Engelhardtee999d82008-10-08 11:35:01 +0200432 if (e->family == NFPROTO_IPV4)
Jan Engelhardt079aa882008-10-08 11:35:00 +0200433 seq_printf(seq, "src=" NIPQUAD_FMT " ttl: %u last_seen: %lu "
434 "oldest_pkt: %u", NIPQUAD(e->addr.ip), e->ttl,
435 e->stamps[i], e->index);
436 else
437 seq_printf(seq, "src=" NIP6_FMT " ttl: %u last_seen: %lu "
438 "oldest_pkt: %u", NIP6(e->addr.in6), e->ttl,
439 e->stamps[i], e->index);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700440 for (i = 0; i < e->nstamps; i++)
441 seq_printf(seq, "%s %lu", i ? "," : "", e->stamps[i]);
442 seq_printf(seq, "\n");
443 return 0;
444}
445
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700446static const struct seq_operations recent_seq_ops = {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700447 .start = recent_seq_start,
448 .next = recent_seq_next,
449 .stop = recent_seq_stop,
450 .show = recent_seq_show,
451};
452
453static int recent_seq_open(struct inode *inode, struct file *file)
454{
455 struct proc_dir_entry *pde = PDE(inode);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700456 struct recent_iter_state *st;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700457
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700458 st = __seq_open_private(file, &recent_seq_ops, sizeof(*st));
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700459 if (st == NULL)
460 return -ENOMEM;
Jesper Juhl3af8e312007-08-07 18:10:54 -0700461
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700462 st->table = pde->data;
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700463 return 0;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700464}
465
Jan Engelhardt079aa882008-10-08 11:35:00 +0200466#ifdef CONFIG_NETFILTER_XT_MATCH_RECENT_PROC_COMPAT
467static int recent_old_seq_open(struct inode *inode, struct file *filp)
468{
469 static bool warned_of_old;
470
471 if (unlikely(!warned_of_old)) {
472 printk(KERN_INFO KBUILD_MODNAME ": Use of /proc/net/ipt_recent"
473 " is deprecated; use /proc/net/xt_recent.\n");
474 warned_of_old = true;
475 }
476 return recent_seq_open(inode, filp);
477}
478
479static ssize_t recent_old_proc_write(struct file *file,
480 const char __user *input,
481 size_t size, loff_t *loff)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700482{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200483 const struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700484 struct recent_table *t = pde->data;
485 struct recent_entry *e;
486 char buf[sizeof("+255.255.255.255")], *c = buf;
Al Viro6a19d612006-09-28 14:22:24 -0700487 __be32 addr;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700488 int add;
489
490 if (size > sizeof(buf))
491 size = sizeof(buf);
492 if (copy_from_user(buf, input, size))
493 return -EFAULT;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200494
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700495 while (isspace(*c))
496 c++;
497
498 if (size - (c - buf) < 5)
499 return c - buf;
500 if (!strncmp(c, "clear", 5)) {
501 c += 5;
502 spin_lock_bh(&recent_lock);
503 recent_table_flush(t);
504 spin_unlock_bh(&recent_lock);
505 return c - buf;
506 }
507
508 switch (*c) {
509 case '-':
510 add = 0;
511 c++;
512 break;
513 case '+':
514 c++;
515 default:
516 add = 1;
517 break;
518 }
519 addr = in_aton(c);
520
521 spin_lock_bh(&recent_lock);
Jan Engelhardtee999d82008-10-08 11:35:01 +0200522 e = recent_entry_lookup(t, (const void *)&addr, NFPROTO_IPV4, 0);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700523 if (e == NULL) {
524 if (add)
Jan Engelhardtee999d82008-10-08 11:35:01 +0200525 recent_entry_init(t, (const void *)&addr,
526 NFPROTO_IPV4, 0);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700527 } else {
528 if (add)
529 recent_entry_update(t, e);
530 else
531 recent_entry_remove(t, e);
532 }
533 spin_unlock_bh(&recent_lock);
534 return size;
535}
536
Jan Engelhardt079aa882008-10-08 11:35:00 +0200537static const struct file_operations recent_old_fops = {
538 .open = recent_old_seq_open,
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700539 .read = seq_read,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200540 .write = recent_old_proc_write,
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700541 .release = seq_release_private,
542 .owner = THIS_MODULE,
543};
Jan Engelhardt079aa882008-10-08 11:35:00 +0200544#endif
545
546static ssize_t
547recent_mt_proc_write(struct file *file, const char __user *input,
548 size_t size, loff_t *loff)
549{
550 const struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
551 struct recent_table *t = pde->data;
552 struct recent_entry *e;
553 char buf[sizeof("+b335:1d35:1e55:dead:c0de:1715:5afe:c0de")];
554 const char *c = buf;
555 union nf_inet_addr addr;
556 u_int16_t family;
557 bool add, succ;
558
559 if (size == 0)
560 return 0;
561 if (size > sizeof(buf))
562 size = sizeof(buf);
563 if (copy_from_user(buf, input, size) != 0)
564 return -EFAULT;
565
566 /* Strict protocol! */
567 if (*loff != 0)
568 return -ESPIPE;
569 switch (*c) {
570 case '/': /* flush table */
571 spin_lock_bh(&recent_lock);
572 recent_table_flush(t);
573 spin_unlock_bh(&recent_lock);
574 return size;
575 case '-': /* remove address */
576 add = false;
577 break;
578 case '+': /* add address */
579 add = true;
580 break;
581 default:
582 printk(KERN_INFO KBUILD_MODNAME ": Need +ip, -ip or /\n");
583 return -EINVAL;
584 }
585
586 ++c;
587 --size;
588 if (strnchr(c, size, ':') != NULL) {
Jan Engelhardtee999d82008-10-08 11:35:01 +0200589 family = NFPROTO_IPV6;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200590 succ = in6_pton(c, size, (void *)&addr, '\n', NULL);
591 } else {
Jan Engelhardtee999d82008-10-08 11:35:01 +0200592 family = NFPROTO_IPV4;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200593 succ = in4_pton(c, size, (void *)&addr, '\n', NULL);
594 }
595
596 if (!succ) {
597 printk(KERN_INFO KBUILD_MODNAME ": illegal address written "
598 "to procfs\n");
599 return -EINVAL;
600 }
601
602 spin_lock_bh(&recent_lock);
603 e = recent_entry_lookup(t, &addr, family, 0);
604 if (e == NULL) {
605 if (add)
606 recent_entry_init(t, &addr, family, 0);
607 } else {
608 if (add)
609 recent_entry_update(t, e);
610 else
611 recent_entry_remove(t, e);
612 }
613 spin_unlock_bh(&recent_lock);
614 /* Note we removed one above */
615 *loff += size + 1;
616 return size + 1;
617}
618
619static const struct file_operations recent_mt_fops = {
620 .open = recent_seq_open,
621 .read = seq_read,
622 .write = recent_mt_proc_write,
623 .release = seq_release_private,
624 .owner = THIS_MODULE,
625};
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700626#endif /* CONFIG_PROC_FS */
627
Jan Engelhardt079aa882008-10-08 11:35:00 +0200628static struct xt_match recent_mt_reg[] __read_mostly = {
629 {
630 .name = "recent",
631 .revision = 0,
Jan Engelhardtee999d82008-10-08 11:35:01 +0200632 .family = NFPROTO_IPV4,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200633 .match = recent_mt,
634 .matchsize = sizeof(struct xt_recent_mtinfo),
635 .checkentry = recent_mt_check,
636 .destroy = recent_mt_destroy,
637 .me = THIS_MODULE,
638 },
639 {
640 .name = "recent",
641 .revision = 0,
Jan Engelhardtee999d82008-10-08 11:35:01 +0200642 .family = NFPROTO_IPV6,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200643 .match = recent_mt,
644 .matchsize = sizeof(struct xt_recent_mtinfo),
645 .checkentry = recent_mt_check,
646 .destroy = recent_mt_destroy,
647 .me = THIS_MODULE,
648 },
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700649};
650
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800651static int __init recent_mt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700653 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700655 if (!ip_list_tot || !ip_pkt_list_tot || ip_pkt_list_tot > 255)
656 return -EINVAL;
657 ip_list_hash_size = 1 << fls(ip_list_tot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Jan Engelhardt079aa882008-10-08 11:35:00 +0200659 err = xt_register_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700660#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 if (err)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700662 return err;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200663 recent_proc_dir = proc_mkdir("xt_recent", init_net.proc_net);
664 if (recent_proc_dir == NULL) {
665 xt_unregister_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700666 err = -ENOMEM;
667 }
Jan Engelhardt079aa882008-10-08 11:35:00 +0200668#ifdef CONFIG_NETFILTER_XT_MATCH_RECENT_PROC_COMPAT
669 if (err < 0)
670 return err;
671 proc_old_dir = proc_mkdir("ipt_recent", init_net.proc_net);
672 if (proc_old_dir == NULL) {
673 remove_proc_entry("xt_recent", init_net.proc_net);
674 xt_unregister_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
675 err = -ENOMEM;
676 }
677#endif
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700678#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 return err;
680}
681
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800682static void __exit recent_mt_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700684 BUG_ON(!list_empty(&tables));
Jan Engelhardt079aa882008-10-08 11:35:00 +0200685 xt_unregister_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700686#ifdef CONFIG_PROC_FS
Jan Engelhardt079aa882008-10-08 11:35:00 +0200687#ifdef CONFIG_NETFILTER_XT_MATCH_RECENT_PROC_COMPAT
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200688 remove_proc_entry("ipt_recent", init_net.proc_net);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700689#endif
Jan Engelhardt079aa882008-10-08 11:35:00 +0200690 remove_proc_entry("xt_recent", init_net.proc_net);
691#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800694module_init(recent_mt_init);
695module_exit(recent_mt_exit);