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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16 #include <linux/init.h>
18 #include <linux/ipv6.h>
19 #include <linux/module.h>
20 #include <linux/moduleparam.h>
21 #include <linux/proc_fs.h>
22 #include <linux/seq_file.h>
23 #include <linux/string.h>
24 #include <linux/ctype.h>
25 #include <linux/list.h>
26 #include <linux/random.h>
27 #include <linux/jhash.h>
28 #include <linux/bitops.h>
29 #include <linux/skbuff.h>
30 #include <linux/inet.h>
31 #include <linux/slab.h>
32 #include <linux/vmalloc.h>
33 #include <net/net_namespace.h>
34 #include <net/netns/generic.h>
36 #include <linux/netfilter/x_tables.h>
37 #include <linux/netfilter/xt_recent.h>
39 MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
40 MODULE_AUTHOR("Jan Engelhardt <jengelh@medozas.de>");
41 MODULE_DESCRIPTION("Xtables: \"recently-seen\" host matching");
42 MODULE_LICENSE("GPL");
43 MODULE_ALIAS("ipt_recent");
44 MODULE_ALIAS("ip6t_recent");
46 static unsigned int ip_list_tot
= 100;
47 static unsigned int ip_pkt_list_tot
= 20;
48 static unsigned int ip_list_hash_size
= 0;
49 static unsigned int ip_list_perms
= 0644;
50 static unsigned int ip_list_uid
= 0;
51 static unsigned int ip_list_gid
= 0;
52 module_param(ip_list_tot
, uint
, 0400);
53 module_param(ip_pkt_list_tot
, uint
, 0400);
54 module_param(ip_list_hash_size
, uint
, 0400);
55 module_param(ip_list_perms
, uint
, 0400);
56 module_param(ip_list_uid
, uint
, S_IRUGO
| S_IWUSR
);
57 module_param(ip_list_gid
, uint
, S_IRUGO
| S_IWUSR
);
58 MODULE_PARM_DESC(ip_list_tot
, "number of IPs to remember per list");
59 MODULE_PARM_DESC(ip_pkt_list_tot
, "number of packets per IP address to remember (max. 255)");
60 MODULE_PARM_DESC(ip_list_hash_size
, "size of hash table used to look up IPs");
61 MODULE_PARM_DESC(ip_list_perms
, "permissions on /proc/net/xt_recent/* files");
62 MODULE_PARM_DESC(ip_list_uid
, "default owner of /proc/net/xt_recent/* files");
63 MODULE_PARM_DESC(ip_list_gid
, "default owning group of /proc/net/xt_recent/* files");
66 struct list_head list
;
67 struct list_head lru_list
;
68 union nf_inet_addr addr
;
73 unsigned long stamps
[0];
77 struct list_head list
;
78 char name
[XT_RECENT_NAME_LEN
];
79 union nf_inet_addr mask
;
82 struct list_head lru_list
;
83 struct list_head iphash
[0];
87 struct list_head tables
;
89 struct proc_dir_entry
*xt_recent
;
93 static int recent_net_id
;
94 static inline struct recent_net
*recent_pernet(struct net
*net
)
96 return net_generic(net
, recent_net_id
);
99 static DEFINE_SPINLOCK(recent_lock
);
100 static DEFINE_MUTEX(recent_mutex
);
102 #ifdef CONFIG_PROC_FS
103 static const struct file_operations recent_old_fops
, recent_mt_fops
;
106 static u_int32_t hash_rnd __read_mostly
;
107 static bool hash_rnd_inited __read_mostly
;
109 static inline unsigned int recent_entry_hash4(const union nf_inet_addr
*addr
)
111 return jhash_1word((__force u32
)addr
->ip
, hash_rnd
) &
112 (ip_list_hash_size
- 1);
115 static inline unsigned int recent_entry_hash6(const union nf_inet_addr
*addr
)
117 return jhash2((u32
*)addr
->ip6
, ARRAY_SIZE(addr
->ip6
), hash_rnd
) &
118 (ip_list_hash_size
- 1);
121 static struct recent_entry
*
122 recent_entry_lookup(const struct recent_table
*table
,
123 const union nf_inet_addr
*addrp
, u_int16_t family
,
126 struct recent_entry
*e
;
129 if (family
== NFPROTO_IPV4
)
130 h
= recent_entry_hash4(addrp
);
132 h
= recent_entry_hash6(addrp
);
134 list_for_each_entry(e
, &table
->iphash
[h
], list
)
135 if (e
->family
== family
&&
136 memcmp(&e
->addr
, addrp
, sizeof(e
->addr
)) == 0 &&
137 (ttl
== e
->ttl
|| ttl
== 0 || e
->ttl
== 0))
142 static void recent_entry_remove(struct recent_table
*t
, struct recent_entry
*e
)
145 list_del(&e
->lru_list
);
151 * Drop entries with timestamps older then 'time'.
153 static void recent_entry_reap(struct recent_table
*t
, unsigned long time
)
155 struct recent_entry
*e
;
158 * The head of the LRU list is always the oldest entry.
160 e
= list_entry(t
->lru_list
.next
, struct recent_entry
, lru_list
);
163 * The last time stamp is the most recent.
165 if (time_after(time
, e
->stamps
[e
->index
-1]))
166 recent_entry_remove(t
, e
);
169 static struct recent_entry
*
170 recent_entry_init(struct recent_table
*t
, const union nf_inet_addr
*addr
,
171 u_int16_t family
, u_int8_t ttl
)
173 struct recent_entry
*e
;
175 if (t
->entries
>= ip_list_tot
) {
176 e
= list_entry(t
->lru_list
.next
, struct recent_entry
, lru_list
);
177 recent_entry_remove(t
, e
);
179 e
= kmalloc(sizeof(*e
) + sizeof(e
->stamps
[0]) * ip_pkt_list_tot
,
183 memcpy(&e
->addr
, addr
, sizeof(e
->addr
));
185 e
->stamps
[0] = jiffies
;
189 if (family
== NFPROTO_IPV4
)
190 list_add_tail(&e
->list
, &t
->iphash
[recent_entry_hash4(addr
)]);
192 list_add_tail(&e
->list
, &t
->iphash
[recent_entry_hash6(addr
)]);
193 list_add_tail(&e
->lru_list
, &t
->lru_list
);
198 static void recent_entry_update(struct recent_table
*t
, struct recent_entry
*e
)
200 e
->index
%= ip_pkt_list_tot
;
201 e
->stamps
[e
->index
++] = jiffies
;
202 if (e
->index
> e
->nstamps
)
203 e
->nstamps
= e
->index
;
204 list_move_tail(&e
->lru_list
, &t
->lru_list
);
207 static struct recent_table
*recent_table_lookup(struct recent_net
*recent_net
,
210 struct recent_table
*t
;
212 list_for_each_entry(t
, &recent_net
->tables
, list
)
213 if (!strcmp(t
->name
, name
))
218 static void recent_table_flush(struct recent_table
*t
)
220 struct recent_entry
*e
, *next
;
223 for (i
= 0; i
< ip_list_hash_size
; i
++)
224 list_for_each_entry_safe(e
, next
, &t
->iphash
[i
], list
)
225 recent_entry_remove(t
, e
);
229 recent_mt(const struct sk_buff
*skb
, struct xt_action_param
*par
)
231 struct net
*net
= dev_net(par
->in
? par
->in
: par
->out
);
232 struct recent_net
*recent_net
= recent_pernet(net
);
233 const struct xt_recent_mtinfo_v1
*info
= par
->matchinfo
;
234 struct recent_table
*t
;
235 struct recent_entry
*e
;
236 union nf_inet_addr addr
= {}, addr_mask
;
238 bool ret
= info
->invert
;
240 if (par
->family
== NFPROTO_IPV4
) {
241 const struct iphdr
*iph
= ip_hdr(skb
);
243 if (info
->side
== XT_RECENT_DEST
)
244 addr
.ip
= iph
->daddr
;
246 addr
.ip
= iph
->saddr
;
250 const struct ipv6hdr
*iph
= ipv6_hdr(skb
);
252 if (info
->side
== XT_RECENT_DEST
)
253 memcpy(&addr
.in6
, &iph
->daddr
, sizeof(addr
.in6
));
255 memcpy(&addr
.in6
, &iph
->saddr
, sizeof(addr
.in6
));
257 ttl
= iph
->hop_limit
;
260 /* use TTL as seen before forwarding */
261 if (par
->out
!= NULL
&& skb
->sk
== NULL
)
264 spin_lock_bh(&recent_lock
);
265 t
= recent_table_lookup(recent_net
, info
->name
);
267 nf_inet_addr_mask(&addr
, &addr_mask
, &t
->mask
);
269 e
= recent_entry_lookup(t
, &addr_mask
, par
->family
,
270 (info
->check_set
& XT_RECENT_TTL
) ? ttl
: 0);
272 if (!(info
->check_set
& XT_RECENT_SET
))
274 e
= recent_entry_init(t
, &addr_mask
, par
->family
, ttl
);
281 if (info
->check_set
& XT_RECENT_SET
)
283 else if (info
->check_set
& XT_RECENT_REMOVE
) {
284 recent_entry_remove(t
, e
);
286 } else if (info
->check_set
& (XT_RECENT_CHECK
| XT_RECENT_UPDATE
)) {
287 unsigned long time
= jiffies
- info
->seconds
* HZ
;
288 unsigned int i
, hits
= 0;
290 for (i
= 0; i
< e
->nstamps
; i
++) {
291 if (info
->seconds
&& time_after(time
, e
->stamps
[i
]))
293 if (!info
->hit_count
|| ++hits
>= info
->hit_count
) {
299 /* info->seconds must be non-zero */
300 if (info
->check_set
& XT_RECENT_REAP
)
301 recent_entry_reap(t
, time
);
304 if (info
->check_set
& XT_RECENT_SET
||
305 (info
->check_set
& XT_RECENT_UPDATE
&& ret
)) {
306 recent_entry_update(t
, e
);
310 spin_unlock_bh(&recent_lock
);
314 static void recent_table_free(void *addr
)
316 if (is_vmalloc_addr(addr
))
322 static int recent_mt_check(const struct xt_mtchk_param
*par
,
323 const struct xt_recent_mtinfo_v1
*info
)
325 struct recent_net
*recent_net
= recent_pernet(par
->net
);
326 struct recent_table
*t
;
327 #ifdef CONFIG_PROC_FS
328 struct proc_dir_entry
*pde
;
336 if (unlikely(!hash_rnd_inited
)) {
337 get_random_bytes(&hash_rnd
, sizeof(hash_rnd
));
338 hash_rnd_inited
= true;
340 if (info
->check_set
& ~XT_RECENT_VALID_FLAGS
) {
341 pr_info("Unsupported user space flags (%08x)\n",
345 if (hweight8(info
->check_set
&
346 (XT_RECENT_SET
| XT_RECENT_REMOVE
|
347 XT_RECENT_CHECK
| XT_RECENT_UPDATE
)) != 1)
349 if ((info
->check_set
& (XT_RECENT_SET
| XT_RECENT_REMOVE
)) &&
350 (info
->seconds
|| info
->hit_count
||
351 (info
->check_set
& XT_RECENT_MODIFIERS
)))
353 if ((info
->check_set
& XT_RECENT_REAP
) && !info
->seconds
)
355 if (info
->hit_count
> ip_pkt_list_tot
) {
356 pr_info("hitcount (%u) is larger than "
357 "packets to be remembered (%u)\n",
358 info
->hit_count
, ip_pkt_list_tot
);
361 if (info
->name
[0] == '\0' ||
362 strnlen(info
->name
, XT_RECENT_NAME_LEN
) == XT_RECENT_NAME_LEN
)
365 mutex_lock(&recent_mutex
);
366 t
= recent_table_lookup(recent_net
, info
->name
);
373 sz
= sizeof(*t
) + sizeof(t
->iphash
[0]) * ip_list_hash_size
;
375 t
= kzalloc(sz
, GFP_KERNEL
);
384 memcpy(&t
->mask
, &info
->mask
, sizeof(t
->mask
));
385 strcpy(t
->name
, info
->name
);
386 INIT_LIST_HEAD(&t
->lru_list
);
387 for (i
= 0; i
< ip_list_hash_size
; i
++)
388 INIT_LIST_HEAD(&t
->iphash
[i
]);
389 #ifdef CONFIG_PROC_FS
390 uid
= make_kuid(&init_user_ns
, ip_list_uid
);
391 gid
= make_kgid(&init_user_ns
, ip_list_gid
);
392 if (!uid_valid(uid
) || !gid_valid(gid
)) {
393 recent_table_free(t
);
397 pde
= proc_create_data(t
->name
, ip_list_perms
, recent_net
->xt_recent
,
400 recent_table_free(t
);
404 proc_set_user(pde
, uid
, gid
);
406 spin_lock_bh(&recent_lock
);
407 list_add_tail(&t
->list
, &recent_net
->tables
);
408 spin_unlock_bh(&recent_lock
);
411 mutex_unlock(&recent_mutex
);
415 static int recent_mt_check_v0(const struct xt_mtchk_param
*par
)
417 const struct xt_recent_mtinfo_v0
*info_v0
= par
->matchinfo
;
418 struct xt_recent_mtinfo_v1 info_v1
;
420 /* Copy revision 0 structure to revision 1 */
421 memcpy(&info_v1
, info_v0
, sizeof(struct xt_recent_mtinfo
));
422 /* Set default mask to ensure backward compatible behaviour */
423 memset(info_v1
.mask
.all
, 0xFF, sizeof(info_v1
.mask
.all
));
425 return recent_mt_check(par
, &info_v1
);
428 static int recent_mt_check_v1(const struct xt_mtchk_param
*par
)
430 return recent_mt_check(par
, par
->matchinfo
);
433 static void recent_mt_destroy(const struct xt_mtdtor_param
*par
)
435 struct recent_net
*recent_net
= recent_pernet(par
->net
);
436 const struct xt_recent_mtinfo_v1
*info
= par
->matchinfo
;
437 struct recent_table
*t
;
439 mutex_lock(&recent_mutex
);
440 t
= recent_table_lookup(recent_net
, info
->name
);
441 if (--t
->refcnt
== 0) {
442 spin_lock_bh(&recent_lock
);
444 spin_unlock_bh(&recent_lock
);
445 #ifdef CONFIG_PROC_FS
446 if (recent_net
->xt_recent
!= NULL
)
447 remove_proc_entry(t
->name
, recent_net
->xt_recent
);
449 recent_table_flush(t
);
450 recent_table_free(t
);
452 mutex_unlock(&recent_mutex
);
455 #ifdef CONFIG_PROC_FS
456 struct recent_iter_state
{
457 const struct recent_table
*table
;
461 static void *recent_seq_start(struct seq_file
*seq
, loff_t
*pos
)
462 __acquires(recent_lock
)
464 struct recent_iter_state
*st
= seq
->private;
465 const struct recent_table
*t
= st
->table
;
466 struct recent_entry
*e
;
469 spin_lock_bh(&recent_lock
);
471 for (st
->bucket
= 0; st
->bucket
< ip_list_hash_size
; st
->bucket
++)
472 list_for_each_entry(e
, &t
->iphash
[st
->bucket
], list
)
478 static void *recent_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
480 struct recent_iter_state
*st
= seq
->private;
481 const struct recent_table
*t
= st
->table
;
482 const struct recent_entry
*e
= v
;
483 const struct list_head
*head
= e
->list
.next
;
485 while (head
== &t
->iphash
[st
->bucket
]) {
486 if (++st
->bucket
>= ip_list_hash_size
)
488 head
= t
->iphash
[st
->bucket
].next
;
491 return list_entry(head
, struct recent_entry
, list
);
494 static void recent_seq_stop(struct seq_file
*s
, void *v
)
495 __releases(recent_lock
)
497 spin_unlock_bh(&recent_lock
);
500 static int recent_seq_show(struct seq_file
*seq
, void *v
)
502 const struct recent_entry
*e
= v
;
505 i
= (e
->index
- 1) % ip_pkt_list_tot
;
506 if (e
->family
== NFPROTO_IPV4
)
507 seq_printf(seq
, "src=%pI4 ttl: %u last_seen: %lu oldest_pkt: %u",
508 &e
->addr
.ip
, e
->ttl
, e
->stamps
[i
], e
->index
);
510 seq_printf(seq
, "src=%pI6 ttl: %u last_seen: %lu oldest_pkt: %u",
511 &e
->addr
.in6
, e
->ttl
, e
->stamps
[i
], e
->index
);
512 for (i
= 0; i
< e
->nstamps
; i
++)
513 seq_printf(seq
, "%s %lu", i
? "," : "", e
->stamps
[i
]);
514 seq_printf(seq
, "\n");
518 static const struct seq_operations recent_seq_ops
= {
519 .start
= recent_seq_start
,
520 .next
= recent_seq_next
,
521 .stop
= recent_seq_stop
,
522 .show
= recent_seq_show
,
525 static int recent_seq_open(struct inode
*inode
, struct file
*file
)
527 struct recent_iter_state
*st
;
529 st
= __seq_open_private(file
, &recent_seq_ops
, sizeof(*st
));
533 st
->table
= PDE_DATA(inode
);
538 recent_mt_proc_write(struct file
*file
, const char __user
*input
,
539 size_t size
, loff_t
*loff
)
541 struct recent_table
*t
= PDE_DATA(file_inode(file
));
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 pr_info("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 pr_info("illegal address written to procfs\n");
591 spin_lock_bh(&recent_lock
);
592 e
= recent_entry_lookup(t
, &addr
, family
, 0);
595 recent_entry_init(t
, &addr
, family
, 0);
598 recent_entry_update(t
, e
);
600 recent_entry_remove(t
, e
);
602 spin_unlock_bh(&recent_lock
);
603 /* Note we removed one above */
608 static const struct file_operations recent_mt_fops
= {
609 .open
= recent_seq_open
,
611 .write
= recent_mt_proc_write
,
612 .release
= seq_release_private
,
613 .owner
= THIS_MODULE
,
617 static int __net_init
recent_proc_net_init(struct net
*net
)
619 struct recent_net
*recent_net
= recent_pernet(net
);
621 recent_net
->xt_recent
= proc_mkdir("xt_recent", net
->proc_net
);
622 if (!recent_net
->xt_recent
)
627 static void __net_exit
recent_proc_net_exit(struct net
*net
)
629 struct recent_net
*recent_net
= recent_pernet(net
);
630 struct recent_table
*t
;
632 /* recent_net_exit() is called before recent_mt_destroy(). Make sure
633 * that the parent xt_recent proc entry is is empty before trying to
636 spin_lock_bh(&recent_lock
);
637 list_for_each_entry(t
, &recent_net
->tables
, list
)
638 remove_proc_entry(t
->name
, recent_net
->xt_recent
);
640 recent_net
->xt_recent
= NULL
;
641 spin_unlock_bh(&recent_lock
);
643 remove_proc_entry("xt_recent", net
->proc_net
);
646 static inline int recent_proc_net_init(struct net
*net
)
651 static inline void recent_proc_net_exit(struct net
*net
)
654 #endif /* CONFIG_PROC_FS */
656 static int __net_init
recent_net_init(struct net
*net
)
658 struct recent_net
*recent_net
= recent_pernet(net
);
660 INIT_LIST_HEAD(&recent_net
->tables
);
661 return recent_proc_net_init(net
);
664 static void __net_exit
recent_net_exit(struct net
*net
)
666 recent_proc_net_exit(net
);
669 static struct pernet_operations recent_net_ops
= {
670 .init
= recent_net_init
,
671 .exit
= recent_net_exit
,
672 .id
= &recent_net_id
,
673 .size
= sizeof(struct recent_net
),
676 static struct xt_match recent_mt_reg
[] __read_mostly
= {
680 .family
= NFPROTO_IPV4
,
682 .matchsize
= sizeof(struct xt_recent_mtinfo
),
683 .checkentry
= recent_mt_check_v0
,
684 .destroy
= recent_mt_destroy
,
690 .family
= NFPROTO_IPV6
,
692 .matchsize
= sizeof(struct xt_recent_mtinfo
),
693 .checkentry
= recent_mt_check_v0
,
694 .destroy
= recent_mt_destroy
,
700 .family
= NFPROTO_IPV4
,
702 .matchsize
= sizeof(struct xt_recent_mtinfo_v1
),
703 .checkentry
= recent_mt_check_v1
,
704 .destroy
= recent_mt_destroy
,
710 .family
= NFPROTO_IPV6
,
712 .matchsize
= sizeof(struct xt_recent_mtinfo_v1
),
713 .checkentry
= recent_mt_check_v1
,
714 .destroy
= recent_mt_destroy
,
719 static int __init
recent_mt_init(void)
723 if (!ip_list_tot
|| !ip_pkt_list_tot
|| ip_pkt_list_tot
> 255)
725 ip_list_hash_size
= 1 << fls(ip_list_tot
);
727 err
= register_pernet_subsys(&recent_net_ops
);
730 err
= xt_register_matches(recent_mt_reg
, ARRAY_SIZE(recent_mt_reg
));
732 unregister_pernet_subsys(&recent_net_ops
);
736 static void __exit
recent_mt_exit(void)
738 xt_unregister_matches(recent_mt_reg
, ARRAY_SIZE(recent_mt_reg
));
739 unregister_pernet_subsys(&recent_net_ops
);
742 module_init(recent_mt_init
);
743 module_exit(recent_mt_exit
);