2 * Copyright (c) 2006 Patrick McHardy <kaber@trash.net>
3 * Copyright © CC Computer Consultants GmbH, 2007 - 2008
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.
9 * This is a replacement of the old ipt_recent module, which carried the
10 * following copyright notice:
12 * Author: Stephen Frost <sfrost@snowman.net>
13 * Copyright 2002-2003, Stephen Frost, 2.5.x port by laforge@netfilter.org
15 #include <linux/init.h>
17 #include <linux/ipv6.h>
18 #include <linux/module.h>
19 #include <linux/moduleparam.h>
20 #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>
30 #include <net/net_namespace.h>
32 #include <linux/netfilter/x_tables.h>
33 #include <linux/netfilter/xt_recent.h>
35 MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
36 MODULE_AUTHOR("Jan Engelhardt <jengelh@computergmbh.de>");
37 MODULE_DESCRIPTION("Xtables: \"recently-seen\" host matching for IPv4");
38 MODULE_LICENSE("GPL");
39 MODULE_ALIAS("ipt_recent");
40 MODULE_ALIAS("ip6t_recent");
42 static unsigned int ip_list_tot = 100;
43 static unsigned int ip_pkt_list_tot = 20;
44 static unsigned int ip_list_hash_size = 0;
45 static unsigned int ip_list_perms = 0644;
46 static unsigned int ip_list_uid = 0;
47 static unsigned int ip_list_gid = 0;
48 module_param(ip_list_tot, uint, 0400);
49 module_param(ip_pkt_list_tot, uint, 0400);
50 module_param(ip_list_hash_size, uint, 0400);
51 module_param(ip_list_perms, uint, 0400);
52 module_param(ip_list_uid, uint, 0400);
53 module_param(ip_list_gid, uint, 0400);
54 MODULE_PARM_DESC(ip_list_tot, "number of IPs to remember per list");
55 MODULE_PARM_DESC(ip_pkt_list_tot, "number of packets per IP to remember (max. 255)");
56 MODULE_PARM_DESC(ip_list_hash_size, "size of hash table used to look up IPs");
57 MODULE_PARM_DESC(ip_list_perms, "permissions on /proc/net/xt_recent/* files");
58 MODULE_PARM_DESC(ip_list_uid,"owner of /proc/net/xt_recent/* files");
59 MODULE_PARM_DESC(ip_list_gid,"owning group of /proc/net/xt_recent/* files");
62 struct list_head list;
63 struct list_head lru_list;
64 union nf_inet_addr addr;
69 unsigned long stamps[0];
73 struct list_head list;
74 char name[XT_RECENT_NAME_LEN];
77 struct list_head lru_list;
78 struct list_head iphash[0];
81 static LIST_HEAD(tables);
82 static DEFINE_SPINLOCK(recent_lock);
83 static DEFINE_MUTEX(recent_mutex);
86 #ifdef CONFIG_NETFILTER_XT_MATCH_RECENT_PROC_COMPAT
87 static struct proc_dir_entry *proc_old_dir;
89 static struct proc_dir_entry *recent_proc_dir;
90 static const struct file_operations recent_old_fops, recent_mt_fops;
93 static u_int32_t hash_rnd;
94 static bool hash_rnd_initted;
96 static unsigned int recent_entry_hash4(const union nf_inet_addr *addr)
98 if (!hash_rnd_initted) {
99 get_random_bytes(&hash_rnd, sizeof(hash_rnd));
100 hash_rnd_initted = true;
102 return jhash_1word((__force u32)addr->ip, hash_rnd) &
103 (ip_list_hash_size - 1);
106 static unsigned int recent_entry_hash6(const union nf_inet_addr *addr)
108 if (!hash_rnd_initted) {
109 get_random_bytes(&hash_rnd, sizeof(hash_rnd));
110 hash_rnd_initted = true;
112 return jhash2((u32 *)addr->ip6, ARRAY_SIZE(addr->ip6), hash_rnd) &
113 (ip_list_hash_size - 1);
116 static struct recent_entry *
117 recent_entry_lookup(const struct recent_table *table,
118 const union nf_inet_addr *addrp, u_int16_t family,
121 struct recent_entry *e;
124 if (family == NFPROTO_IPV4)
125 h = recent_entry_hash4(addrp);
127 h = recent_entry_hash6(addrp);
129 list_for_each_entry(e, &table->iphash[h], list)
130 if (e->family == family &&
131 memcmp(&e->addr, addrp, sizeof(e->addr)) == 0 &&
132 (ttl == e->ttl || ttl == 0 || e->ttl == 0))
137 static void recent_entry_remove(struct recent_table *t, struct recent_entry *e)
140 list_del(&e->lru_list);
145 static struct recent_entry *
146 recent_entry_init(struct recent_table *t, const union nf_inet_addr *addr,
147 u_int16_t family, u_int8_t ttl)
149 struct recent_entry *e;
151 if (t->entries >= ip_list_tot) {
152 e = list_entry(t->lru_list.next, struct recent_entry, lru_list);
153 recent_entry_remove(t, e);
155 e = kmalloc(sizeof(*e) + sizeof(e->stamps[0]) * ip_pkt_list_tot,
159 memcpy(&e->addr, addr, sizeof(e->addr));
161 e->stamps[0] = jiffies;
165 if (family == NFPROTO_IPV4)
166 list_add_tail(&e->list, &t->iphash[recent_entry_hash4(addr)]);
168 list_add_tail(&e->list, &t->iphash[recent_entry_hash6(addr)]);
169 list_add_tail(&e->lru_list, &t->lru_list);
174 static void recent_entry_update(struct recent_table *t, struct recent_entry *e)
176 e->stamps[e->index++] = jiffies;
177 if (e->index > e->nstamps)
178 e->nstamps = e->index;
179 e->index %= ip_pkt_list_tot;
180 list_move_tail(&e->lru_list, &t->lru_list);
183 static struct recent_table *recent_table_lookup(const char *name)
185 struct recent_table *t;
187 list_for_each_entry(t, &tables, list)
188 if (!strcmp(t->name, name))
193 static void recent_table_flush(struct recent_table *t)
195 struct recent_entry *e, *next;
198 for (i = 0; i < ip_list_hash_size; i++)
199 list_for_each_entry_safe(e, next, &t->iphash[i], list)
200 recent_entry_remove(t, e);
204 recent_mt(const struct sk_buff *skb, const struct xt_match_param *par)
206 const struct xt_recent_mtinfo *info = par->matchinfo;
207 struct recent_table *t;
208 struct recent_entry *e;
209 union nf_inet_addr addr = {};
211 bool ret = info->invert;
213 if (par->match->family == NFPROTO_IPV4) {
214 const struct iphdr *iph = ip_hdr(skb);
216 if (info->side == XT_RECENT_DEST)
217 addr.ip = iph->daddr;
219 addr.ip = iph->saddr;
223 const struct ipv6hdr *iph = ipv6_hdr(skb);
225 if (info->side == XT_RECENT_DEST)
226 memcpy(&addr.in6, &iph->daddr, sizeof(addr.in6));
228 memcpy(&addr.in6, &iph->saddr, sizeof(addr.in6));
230 ttl = iph->hop_limit;
233 /* use TTL as seen before forwarding */
234 if (par->out != NULL && skb->sk == NULL)
237 spin_lock_bh(&recent_lock);
238 t = recent_table_lookup(info->name);
239 e = recent_entry_lookup(t, &addr, par->match->family,
240 (info->check_set & XT_RECENT_TTL) ? ttl : 0);
242 if (!(info->check_set & XT_RECENT_SET))
244 e = recent_entry_init(t, &addr, par->match->family, ttl);
246 *par->hotdrop = true;
251 if (info->check_set & XT_RECENT_SET)
253 else if (info->check_set & XT_RECENT_REMOVE) {
254 recent_entry_remove(t, e);
256 } else if (info->check_set & (XT_RECENT_CHECK | XT_RECENT_UPDATE)) {
257 unsigned long time = jiffies - info->seconds * HZ;
258 unsigned int i, hits = 0;
260 for (i = 0; i < e->nstamps; i++) {
261 if (info->seconds && time_after(time, e->stamps[i]))
263 if (++hits >= info->hit_count) {
270 if (info->check_set & XT_RECENT_SET ||
271 (info->check_set & XT_RECENT_UPDATE && ret)) {
272 recent_entry_update(t, e);
276 spin_unlock_bh(&recent_lock);
280 static bool recent_mt_check(const struct xt_mtchk_param *par)
282 const struct xt_recent_mtinfo *info = par->matchinfo;
283 struct recent_table *t;
284 #ifdef CONFIG_PROC_FS
285 struct proc_dir_entry *pde;
290 if (hweight8(info->check_set &
291 (XT_RECENT_SET | XT_RECENT_REMOVE |
292 XT_RECENT_CHECK | XT_RECENT_UPDATE)) != 1)
294 if ((info->check_set & (XT_RECENT_SET | XT_RECENT_REMOVE)) &&
295 (info->seconds || info->hit_count))
297 if (info->hit_count > ip_pkt_list_tot)
299 if (info->name[0] == '\0' ||
300 strnlen(info->name, XT_RECENT_NAME_LEN) == XT_RECENT_NAME_LEN)
303 mutex_lock(&recent_mutex);
304 t = recent_table_lookup(info->name);
311 t = kzalloc(sizeof(*t) + sizeof(t->iphash[0]) * ip_list_hash_size,
316 strcpy(t->name, info->name);
317 INIT_LIST_HEAD(&t->lru_list);
318 for (i = 0; i < ip_list_hash_size; i++)
319 INIT_LIST_HEAD(&t->iphash[i]);
320 #ifdef CONFIG_PROC_FS
321 pde = proc_create_data(t->name, ip_list_perms, recent_proc_dir,
327 pde->uid = ip_list_uid;
328 pde->gid = ip_list_gid;
329 #ifdef CONFIG_NETFILTER_XT_MATCH_RECENT_PROC_COMPAT
330 pde = proc_create_data(t->name, ip_list_perms, proc_old_dir,
331 &recent_old_fops, t);
333 remove_proc_entry(t->name, proc_old_dir);
337 pde->uid = ip_list_uid;
338 pde->gid = ip_list_gid;
341 spin_lock_bh(&recent_lock);
342 list_add_tail(&t->list, &tables);
343 spin_unlock_bh(&recent_lock);
346 mutex_unlock(&recent_mutex);
350 static void recent_mt_destroy(const struct xt_mtdtor_param *par)
352 const struct xt_recent_mtinfo *info = par->matchinfo;
353 struct recent_table *t;
355 mutex_lock(&recent_mutex);
356 t = recent_table_lookup(info->name);
357 if (--t->refcnt == 0) {
358 spin_lock_bh(&recent_lock);
360 spin_unlock_bh(&recent_lock);
361 #ifdef CONFIG_PROC_FS
362 #ifdef CONFIG_NETFILTER_XT_MATCH_RECENT_PROC_COMPAT
363 remove_proc_entry(t->name, proc_old_dir);
365 remove_proc_entry(t->name, recent_proc_dir);
367 recent_table_flush(t);
370 mutex_unlock(&recent_mutex);
373 #ifdef CONFIG_PROC_FS
374 struct recent_iter_state {
375 const struct recent_table *table;
379 static void *recent_seq_start(struct seq_file *seq, loff_t *pos)
380 __acquires(recent_lock)
382 struct recent_iter_state *st = seq->private;
383 const struct recent_table *t = st->table;
384 struct recent_entry *e;
387 spin_lock_bh(&recent_lock);
389 for (st->bucket = 0; st->bucket < ip_list_hash_size; st->bucket++)
390 list_for_each_entry(e, &t->iphash[st->bucket], list)
396 static void *recent_seq_next(struct seq_file *seq, void *v, loff_t *pos)
398 struct recent_iter_state *st = seq->private;
399 const struct recent_table *t = st->table;
400 const struct recent_entry *e = v;
401 const struct list_head *head = e->list.next;
403 while (head == &t->iphash[st->bucket]) {
404 if (++st->bucket >= ip_list_hash_size)
406 head = t->iphash[st->bucket].next;
409 return list_entry(head, struct recent_entry, list);
412 static void recent_seq_stop(struct seq_file *s, void *v)
413 __releases(recent_lock)
415 spin_unlock_bh(&recent_lock);
418 static int recent_seq_show(struct seq_file *seq, void *v)
420 const struct recent_entry *e = v;
423 i = (e->index - 1) % ip_pkt_list_tot;
424 if (e->family == NFPROTO_IPV4)
425 seq_printf(seq, "src=%pI4 ttl: %u last_seen: %lu oldest_pkt: %u",
426 &e->addr.ip, e->ttl, e->stamps[i], e->index);
428 seq_printf(seq, "src=%pI6 ttl: %u last_seen: %lu oldest_pkt: %u",
429 &e->addr.in6, e->ttl, e->stamps[i], e->index);
430 for (i = 0; i < e->nstamps; i++)
431 seq_printf(seq, "%s %lu", i ? "," : "", e->stamps[i]);
432 seq_printf(seq, "\n");
436 static const struct seq_operations recent_seq_ops = {
437 .start = recent_seq_start,
438 .next = recent_seq_next,
439 .stop = recent_seq_stop,
440 .show = recent_seq_show,
443 static int recent_seq_open(struct inode *inode, struct file *file)
445 struct proc_dir_entry *pde = PDE(inode);
446 struct recent_iter_state *st;
448 st = __seq_open_private(file, &recent_seq_ops, sizeof(*st));
452 st->table = pde->data;
456 #ifdef CONFIG_NETFILTER_XT_MATCH_RECENT_PROC_COMPAT
457 static int recent_old_seq_open(struct inode *inode, struct file *filp)
459 static bool warned_of_old;
461 if (unlikely(!warned_of_old)) {
462 printk(KERN_INFO KBUILD_MODNAME ": Use of /proc/net/ipt_recent"
463 " is deprecated; use /proc/net/xt_recent.\n");
464 warned_of_old = true;
466 return recent_seq_open(inode, filp);
469 static ssize_t recent_old_proc_write(struct file *file,
470 const char __user *input,
471 size_t size, loff_t *loff)
473 const struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
474 struct recent_table *t = pde->data;
475 struct recent_entry *e;
476 char buf[sizeof("+255.255.255.255")], *c = buf;
480 if (size > sizeof(buf))
482 if (copy_from_user(buf, input, size))
488 if (size - (c - buf) < 5)
490 if (!strncmp(c, "clear", 5)) {
492 spin_lock_bh(&recent_lock);
493 recent_table_flush(t);
494 spin_unlock_bh(&recent_lock);
511 spin_lock_bh(&recent_lock);
512 e = recent_entry_lookup(t, (const void *)&addr, NFPROTO_IPV4, 0);
515 recent_entry_init(t, (const void *)&addr,
519 recent_entry_update(t, e);
521 recent_entry_remove(t, e);
523 spin_unlock_bh(&recent_lock);
527 static const struct file_operations recent_old_fops = {
528 .open = recent_old_seq_open,
530 .write = recent_old_proc_write,
531 .release = seq_release_private,
532 .owner = THIS_MODULE,
537 recent_mt_proc_write(struct file *file, const char __user *input,
538 size_t size, loff_t *loff)
540 const struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
541 struct recent_table *t = pde->data;
542 struct recent_entry *e;
543 char buf[sizeof("+b335:1d35:1e55:dead:c0de:1715:5afe:c0de")];
545 union nf_inet_addr addr = {};
551 if (size > sizeof(buf))
553 if (copy_from_user(buf, input, size) != 0)
556 /* Strict protocol! */
560 case '/': /* flush table */
561 spin_lock_bh(&recent_lock);
562 recent_table_flush(t);
563 spin_unlock_bh(&recent_lock);
565 case '-': /* remove address */
568 case '+': /* add address */
572 printk(KERN_INFO KBUILD_MODNAME ": Need +ip, -ip or /\n");
578 if (strnchr(c, size, ':') != NULL) {
579 family = NFPROTO_IPV6;
580 succ = in6_pton(c, size, (void *)&addr, '\n', NULL);
582 family = NFPROTO_IPV4;
583 succ = in4_pton(c, size, (void *)&addr, '\n', NULL);
587 printk(KERN_INFO KBUILD_MODNAME ": illegal address written "
592 spin_lock_bh(&recent_lock);
593 e = recent_entry_lookup(t, &addr, family, 0);
596 recent_entry_init(t, &addr, family, 0);
599 recent_entry_update(t, e);
601 recent_entry_remove(t, e);
603 spin_unlock_bh(&recent_lock);
604 /* Note we removed one above */
609 static const struct file_operations recent_mt_fops = {
610 .open = recent_seq_open,
612 .write = recent_mt_proc_write,
613 .release = seq_release_private,
614 .owner = THIS_MODULE,
616 #endif /* CONFIG_PROC_FS */
618 static struct xt_match recent_mt_reg[] __read_mostly = {
622 .family = NFPROTO_IPV4,
624 .matchsize = sizeof(struct xt_recent_mtinfo),
625 .checkentry = recent_mt_check,
626 .destroy = recent_mt_destroy,
632 .family = NFPROTO_IPV6,
634 .matchsize = sizeof(struct xt_recent_mtinfo),
635 .checkentry = recent_mt_check,
636 .destroy = recent_mt_destroy,
641 static int __init recent_mt_init(void)
645 if (!ip_list_tot || !ip_pkt_list_tot || ip_pkt_list_tot > 255)
647 ip_list_hash_size = 1 << fls(ip_list_tot);
649 err = xt_register_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
650 #ifdef CONFIG_PROC_FS
653 recent_proc_dir = proc_mkdir("xt_recent", init_net.proc_net);
654 if (recent_proc_dir == NULL) {
655 xt_unregister_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
658 #ifdef CONFIG_NETFILTER_XT_MATCH_RECENT_PROC_COMPAT
661 proc_old_dir = proc_mkdir("ipt_recent", init_net.proc_net);
662 if (proc_old_dir == NULL) {
663 remove_proc_entry("xt_recent", init_net.proc_net);
664 xt_unregister_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
672 static void __exit recent_mt_exit(void)
674 BUG_ON(!list_empty(&tables));
675 xt_unregister_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
676 #ifdef CONFIG_PROC_FS
677 #ifdef CONFIG_NETFILTER_XT_MATCH_RECENT_PROC_COMPAT
678 remove_proc_entry("ipt_recent", init_net.proc_net);
680 remove_proc_entry("xt_recent", init_net.proc_net);
684 module_init(recent_mt_init);
685 module_exit(recent_mt_exit);