GNU Linux-libre 4.4.285-gnu1
[releases.git] / net / netfilter / xt_recent.c
1 /*
2  * Copyright (c) 2006 Patrick McHardy <kaber@trash.net>
3  * Copyright © CC Computer Consultants GmbH, 2007 - 2008
4  *
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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16 #include <linux/init.h>
17 #include <linux/ip.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>
35
36 #include <linux/netfilter/x_tables.h>
37 #include <linux/netfilter/xt_recent.h>
38
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");
45
46 static unsigned int ip_list_tot __read_mostly = 100;
47 static unsigned int ip_list_hash_size __read_mostly;
48 static unsigned int ip_list_perms __read_mostly = 0644;
49 static unsigned int ip_list_uid __read_mostly;
50 static unsigned int ip_list_gid __read_mostly;
51 module_param(ip_list_tot, uint, 0400);
52 module_param(ip_list_hash_size, uint, 0400);
53 module_param(ip_list_perms, uint, 0400);
54 module_param(ip_list_uid, uint, S_IRUGO | S_IWUSR);
55 module_param(ip_list_gid, uint, S_IRUGO | S_IWUSR);
56 MODULE_PARM_DESC(ip_list_tot, "number of IPs to remember per list");
57 MODULE_PARM_DESC(ip_list_hash_size, "size of hash table used to look up IPs");
58 MODULE_PARM_DESC(ip_list_perms, "permissions on /proc/net/xt_recent/* files");
59 MODULE_PARM_DESC(ip_list_uid, "default owner of /proc/net/xt_recent/* files");
60 MODULE_PARM_DESC(ip_list_gid, "default owning group of /proc/net/xt_recent/* files");
61
62 /* retained for backwards compatibility */
63 static unsigned int ip_pkt_list_tot __read_mostly;
64 module_param(ip_pkt_list_tot, uint, 0400);
65 MODULE_PARM_DESC(ip_pkt_list_tot, "number of packets per IP address to remember (max. 255)");
66
67 #define XT_RECENT_MAX_NSTAMPS   256
68
69 struct recent_entry {
70         struct list_head        list;
71         struct list_head        lru_list;
72         union nf_inet_addr      addr;
73         u_int16_t               family;
74         u_int8_t                ttl;
75         u_int8_t                index;
76         u_int16_t               nstamps;
77         unsigned long           stamps[0];
78 };
79
80 struct recent_table {
81         struct list_head        list;
82         char                    name[XT_RECENT_NAME_LEN];
83         union nf_inet_addr      mask;
84         unsigned int            refcnt;
85         unsigned int            entries;
86         u8                      nstamps_max_mask;
87         struct list_head        lru_list;
88         struct list_head        iphash[0];
89 };
90
91 struct recent_net {
92         struct list_head        tables;
93 #ifdef CONFIG_PROC_FS
94         struct proc_dir_entry   *xt_recent;
95 #endif
96 };
97
98 static int recent_net_id __read_mostly;
99
100 static inline struct recent_net *recent_pernet(struct net *net)
101 {
102         return net_generic(net, recent_net_id);
103 }
104
105 static DEFINE_SPINLOCK(recent_lock);
106 static DEFINE_MUTEX(recent_mutex);
107
108 #ifdef CONFIG_PROC_FS
109 static const struct file_operations recent_old_fops, recent_mt_fops;
110 #endif
111
112 static u_int32_t hash_rnd __read_mostly;
113 static bool hash_rnd_inited __read_mostly;
114
115 static inline unsigned int recent_entry_hash4(const union nf_inet_addr *addr)
116 {
117         return jhash_1word((__force u32)addr->ip, hash_rnd) &
118                (ip_list_hash_size - 1);
119 }
120
121 static inline unsigned int recent_entry_hash6(const union nf_inet_addr *addr)
122 {
123         return jhash2((u32 *)addr->ip6, ARRAY_SIZE(addr->ip6), hash_rnd) &
124                (ip_list_hash_size - 1);
125 }
126
127 static struct recent_entry *
128 recent_entry_lookup(const struct recent_table *table,
129                     const union nf_inet_addr *addrp, u_int16_t family,
130                     u_int8_t ttl)
131 {
132         struct recent_entry *e;
133         unsigned int h;
134
135         if (family == NFPROTO_IPV4)
136                 h = recent_entry_hash4(addrp);
137         else
138                 h = recent_entry_hash6(addrp);
139
140         list_for_each_entry(e, &table->iphash[h], list)
141                 if (e->family == family &&
142                     memcmp(&e->addr, addrp, sizeof(e->addr)) == 0 &&
143                     (ttl == e->ttl || ttl == 0 || e->ttl == 0))
144                         return e;
145         return NULL;
146 }
147
148 static void recent_entry_remove(struct recent_table *t, struct recent_entry *e)
149 {
150         list_del(&e->list);
151         list_del(&e->lru_list);
152         kfree(e);
153         t->entries--;
154 }
155
156 /*
157  * Drop entries with timestamps older then 'time'.
158  */
159 static void recent_entry_reap(struct recent_table *t, unsigned long time,
160                               struct recent_entry *working, bool update)
161 {
162         struct recent_entry *e;
163
164         /*
165          * The head of the LRU list is always the oldest entry.
166          */
167         e = list_entry(t->lru_list.next, struct recent_entry, lru_list);
168
169         /*
170          * Do not reap the entry which are going to be updated.
171          */
172         if (e == working && update)
173                 return;
174
175         /*
176          * The last time stamp is the most recent.
177          */
178         if (time_after(time, e->stamps[e->index-1]))
179                 recent_entry_remove(t, e);
180 }
181
182 static struct recent_entry *
183 recent_entry_init(struct recent_table *t, const union nf_inet_addr *addr,
184                   u_int16_t family, u_int8_t ttl)
185 {
186         struct recent_entry *e;
187         unsigned int nstamps_max = t->nstamps_max_mask;
188
189         if (t->entries >= ip_list_tot) {
190                 e = list_entry(t->lru_list.next, struct recent_entry, lru_list);
191                 recent_entry_remove(t, e);
192         }
193
194         nstamps_max += 1;
195         e = kmalloc(sizeof(*e) + sizeof(e->stamps[0]) * nstamps_max,
196                     GFP_ATOMIC);
197         if (e == NULL)
198                 return NULL;
199         memcpy(&e->addr, addr, sizeof(e->addr));
200         e->ttl       = ttl;
201         e->stamps[0] = jiffies;
202         e->nstamps   = 1;
203         e->index     = 1;
204         e->family    = family;
205         if (family == NFPROTO_IPV4)
206                 list_add_tail(&e->list, &t->iphash[recent_entry_hash4(addr)]);
207         else
208                 list_add_tail(&e->list, &t->iphash[recent_entry_hash6(addr)]);
209         list_add_tail(&e->lru_list, &t->lru_list);
210         t->entries++;
211         return e;
212 }
213
214 static void recent_entry_update(struct recent_table *t, struct recent_entry *e)
215 {
216         e->index &= t->nstamps_max_mask;
217         e->stamps[e->index++] = jiffies;
218         if (e->index > e->nstamps)
219                 e->nstamps = e->index;
220         list_move_tail(&e->lru_list, &t->lru_list);
221 }
222
223 static struct recent_table *recent_table_lookup(struct recent_net *recent_net,
224                                                 const char *name)
225 {
226         struct recent_table *t;
227
228         list_for_each_entry(t, &recent_net->tables, list)
229                 if (!strcmp(t->name, name))
230                         return t;
231         return NULL;
232 }
233
234 static void recent_table_flush(struct recent_table *t)
235 {
236         struct recent_entry *e, *next;
237         unsigned int i;
238
239         for (i = 0; i < ip_list_hash_size; i++)
240                 list_for_each_entry_safe(e, next, &t->iphash[i], list)
241                         recent_entry_remove(t, e);
242 }
243
244 static bool
245 recent_mt(const struct sk_buff *skb, struct xt_action_param *par)
246 {
247         struct net *net = par->net;
248         struct recent_net *recent_net = recent_pernet(net);
249         const struct xt_recent_mtinfo_v1 *info = par->matchinfo;
250         struct recent_table *t;
251         struct recent_entry *e;
252         union nf_inet_addr addr = {}, addr_mask;
253         u_int8_t ttl;
254         bool ret = info->invert;
255
256         if (par->family == NFPROTO_IPV4) {
257                 const struct iphdr *iph = ip_hdr(skb);
258
259                 if (info->side == XT_RECENT_DEST)
260                         addr.ip = iph->daddr;
261                 else
262                         addr.ip = iph->saddr;
263
264                 ttl = iph->ttl;
265         } else {
266                 const struct ipv6hdr *iph = ipv6_hdr(skb);
267
268                 if (info->side == XT_RECENT_DEST)
269                         memcpy(&addr.in6, &iph->daddr, sizeof(addr.in6));
270                 else
271                         memcpy(&addr.in6, &iph->saddr, sizeof(addr.in6));
272
273                 ttl = iph->hop_limit;
274         }
275
276         /* use TTL as seen before forwarding */
277         if (par->out != NULL && skb->sk == NULL)
278                 ttl++;
279
280         spin_lock_bh(&recent_lock);
281         t = recent_table_lookup(recent_net, info->name);
282
283         nf_inet_addr_mask(&addr, &addr_mask, &t->mask);
284
285         e = recent_entry_lookup(t, &addr_mask, par->family,
286                                 (info->check_set & XT_RECENT_TTL) ? ttl : 0);
287         if (e == NULL) {
288                 if (!(info->check_set & XT_RECENT_SET))
289                         goto out;
290                 e = recent_entry_init(t, &addr_mask, par->family, ttl);
291                 if (e == NULL)
292                         par->hotdrop = true;
293                 ret = !ret;
294                 goto out;
295         }
296
297         if (info->check_set & XT_RECENT_SET)
298                 ret = !ret;
299         else if (info->check_set & XT_RECENT_REMOVE) {
300                 recent_entry_remove(t, e);
301                 ret = !ret;
302         } else if (info->check_set & (XT_RECENT_CHECK | XT_RECENT_UPDATE)) {
303                 unsigned long time = jiffies - info->seconds * HZ;
304                 unsigned int i, hits = 0;
305
306                 for (i = 0; i < e->nstamps; i++) {
307                         if (info->seconds && time_after(time, e->stamps[i]))
308                                 continue;
309                         if (!info->hit_count || ++hits >= info->hit_count) {
310                                 ret = !ret;
311                                 break;
312                         }
313                 }
314
315                 /* info->seconds must be non-zero */
316                 if (info->check_set & XT_RECENT_REAP)
317                         recent_entry_reap(t, time, e,
318                                 info->check_set & XT_RECENT_UPDATE && ret);
319         }
320
321         if (info->check_set & XT_RECENT_SET ||
322             (info->check_set & XT_RECENT_UPDATE && ret)) {
323                 recent_entry_update(t, e);
324                 e->ttl = ttl;
325         }
326 out:
327         spin_unlock_bh(&recent_lock);
328         return ret;
329 }
330
331 static void recent_table_free(void *addr)
332 {
333         kvfree(addr);
334 }
335
336 static int recent_mt_check(const struct xt_mtchk_param *par,
337                            const struct xt_recent_mtinfo_v1 *info)
338 {
339         struct recent_net *recent_net = recent_pernet(par->net);
340         struct recent_table *t;
341 #ifdef CONFIG_PROC_FS
342         struct proc_dir_entry *pde;
343         kuid_t uid;
344         kgid_t gid;
345 #endif
346         unsigned int nstamp_mask;
347         unsigned int i;
348         int ret = -EINVAL;
349         size_t sz;
350
351         if (unlikely(!hash_rnd_inited)) {
352                 get_random_bytes(&hash_rnd, sizeof(hash_rnd));
353                 hash_rnd_inited = true;
354         }
355         if (info->check_set & ~XT_RECENT_VALID_FLAGS) {
356                 pr_info("Unsupported user space flags (%08x)\n",
357                         info->check_set);
358                 return -EINVAL;
359         }
360         if (hweight8(info->check_set &
361                      (XT_RECENT_SET | XT_RECENT_REMOVE |
362                       XT_RECENT_CHECK | XT_RECENT_UPDATE)) != 1)
363                 return -EINVAL;
364         if ((info->check_set & (XT_RECENT_SET | XT_RECENT_REMOVE)) &&
365             (info->seconds || info->hit_count ||
366             (info->check_set & XT_RECENT_MODIFIERS)))
367                 return -EINVAL;
368         if ((info->check_set & XT_RECENT_REAP) && !info->seconds)
369                 return -EINVAL;
370         if (info->hit_count >= XT_RECENT_MAX_NSTAMPS) {
371                 pr_info("hitcount (%u) is larger than allowed maximum (%u)\n",
372                         info->hit_count, XT_RECENT_MAX_NSTAMPS - 1);
373                 return -EINVAL;
374         }
375         ret = xt_check_proc_name(info->name, sizeof(info->name));
376         if (ret)
377                 return ret;
378
379         if (ip_pkt_list_tot && info->hit_count < ip_pkt_list_tot)
380                 nstamp_mask = roundup_pow_of_two(ip_pkt_list_tot) - 1;
381         else if (info->hit_count)
382                 nstamp_mask = roundup_pow_of_two(info->hit_count) - 1;
383         else
384                 nstamp_mask = 32 - 1;
385
386         mutex_lock(&recent_mutex);
387         t = recent_table_lookup(recent_net, info->name);
388         if (t != NULL) {
389                 if (nstamp_mask > t->nstamps_max_mask) {
390                         spin_lock_bh(&recent_lock);
391                         recent_table_flush(t);
392                         t->nstamps_max_mask = nstamp_mask;
393                         spin_unlock_bh(&recent_lock);
394                 }
395
396                 t->refcnt++;
397                 ret = 0;
398                 goto out;
399         }
400
401         sz = sizeof(*t) + sizeof(t->iphash[0]) * ip_list_hash_size;
402         if (sz <= PAGE_SIZE)
403                 t = kzalloc(sz, GFP_KERNEL);
404         else
405                 t = vzalloc(sz);
406         if (t == NULL) {
407                 ret = -ENOMEM;
408                 goto out;
409         }
410         t->refcnt = 1;
411         t->nstamps_max_mask = nstamp_mask;
412
413         memcpy(&t->mask, &info->mask, sizeof(t->mask));
414         strcpy(t->name, info->name);
415         INIT_LIST_HEAD(&t->lru_list);
416         for (i = 0; i < ip_list_hash_size; i++)
417                 INIT_LIST_HEAD(&t->iphash[i]);
418 #ifdef CONFIG_PROC_FS
419         uid = make_kuid(&init_user_ns, ip_list_uid);
420         gid = make_kgid(&init_user_ns, ip_list_gid);
421         if (!uid_valid(uid) || !gid_valid(gid)) {
422                 recent_table_free(t);
423                 ret = -EINVAL;
424                 goto out;
425         }
426         pde = proc_create_data(t->name, ip_list_perms, recent_net->xt_recent,
427                   &recent_mt_fops, t);
428         if (pde == NULL) {
429                 recent_table_free(t);
430                 ret = -ENOMEM;
431                 goto out;
432         }
433         proc_set_user(pde, uid, gid);
434 #endif
435         spin_lock_bh(&recent_lock);
436         list_add_tail(&t->list, &recent_net->tables);
437         spin_unlock_bh(&recent_lock);
438         ret = 0;
439 out:
440         mutex_unlock(&recent_mutex);
441         return ret;
442 }
443
444 static int recent_mt_check_v0(const struct xt_mtchk_param *par)
445 {
446         const struct xt_recent_mtinfo_v0 *info_v0 = par->matchinfo;
447         struct xt_recent_mtinfo_v1 info_v1;
448
449         /* Copy revision 0 structure to revision 1 */
450         memcpy(&info_v1, info_v0, sizeof(struct xt_recent_mtinfo));
451         /* Set default mask to ensure backward compatible behaviour */
452         memset(info_v1.mask.all, 0xFF, sizeof(info_v1.mask.all));
453
454         return recent_mt_check(par, &info_v1);
455 }
456
457 static int recent_mt_check_v1(const struct xt_mtchk_param *par)
458 {
459         return recent_mt_check(par, par->matchinfo);
460 }
461
462 static void recent_mt_destroy(const struct xt_mtdtor_param *par)
463 {
464         struct recent_net *recent_net = recent_pernet(par->net);
465         const struct xt_recent_mtinfo_v1 *info = par->matchinfo;
466         struct recent_table *t;
467
468         mutex_lock(&recent_mutex);
469         t = recent_table_lookup(recent_net, info->name);
470         if (--t->refcnt == 0) {
471                 spin_lock_bh(&recent_lock);
472                 list_del(&t->list);
473                 spin_unlock_bh(&recent_lock);
474 #ifdef CONFIG_PROC_FS
475                 if (recent_net->xt_recent != NULL)
476                         remove_proc_entry(t->name, recent_net->xt_recent);
477 #endif
478                 recent_table_flush(t);
479                 recent_table_free(t);
480         }
481         mutex_unlock(&recent_mutex);
482 }
483
484 #ifdef CONFIG_PROC_FS
485 struct recent_iter_state {
486         const struct recent_table *table;
487         unsigned int            bucket;
488 };
489
490 static void *recent_seq_start(struct seq_file *seq, loff_t *pos)
491         __acquires(recent_lock)
492 {
493         struct recent_iter_state *st = seq->private;
494         const struct recent_table *t = st->table;
495         struct recent_entry *e;
496         loff_t p = *pos;
497
498         spin_lock_bh(&recent_lock);
499
500         for (st->bucket = 0; st->bucket < ip_list_hash_size; st->bucket++)
501                 list_for_each_entry(e, &t->iphash[st->bucket], list)
502                         if (p-- == 0)
503                                 return e;
504         return NULL;
505 }
506
507 static void *recent_seq_next(struct seq_file *seq, void *v, loff_t *pos)
508 {
509         struct recent_iter_state *st = seq->private;
510         const struct recent_table *t = st->table;
511         const struct recent_entry *e = v;
512         const struct list_head *head = e->list.next;
513
514         while (head == &t->iphash[st->bucket]) {
515                 if (++st->bucket >= ip_list_hash_size)
516                         return NULL;
517                 head = t->iphash[st->bucket].next;
518         }
519         (*pos)++;
520         return list_entry(head, struct recent_entry, list);
521 }
522
523 static void recent_seq_stop(struct seq_file *s, void *v)
524         __releases(recent_lock)
525 {
526         spin_unlock_bh(&recent_lock);
527 }
528
529 static int recent_seq_show(struct seq_file *seq, void *v)
530 {
531         const struct recent_entry *e = v;
532         struct recent_iter_state *st = seq->private;
533         const struct recent_table *t = st->table;
534         unsigned int i;
535
536         i = (e->index - 1) & t->nstamps_max_mask;
537
538         if (e->family == NFPROTO_IPV4)
539                 seq_printf(seq, "src=%pI4 ttl: %u last_seen: %lu oldest_pkt: %u",
540                            &e->addr.ip, e->ttl, e->stamps[i], e->index);
541         else
542                 seq_printf(seq, "src=%pI6 ttl: %u last_seen: %lu oldest_pkt: %u",
543                            &e->addr.in6, e->ttl, e->stamps[i], e->index);
544         for (i = 0; i < e->nstamps; i++)
545                 seq_printf(seq, "%s %lu", i ? "," : "", e->stamps[i]);
546         seq_printf(seq, "\n");
547         return 0;
548 }
549
550 static const struct seq_operations recent_seq_ops = {
551         .start          = recent_seq_start,
552         .next           = recent_seq_next,
553         .stop           = recent_seq_stop,
554         .show           = recent_seq_show,
555 };
556
557 static int recent_seq_open(struct inode *inode, struct file *file)
558 {
559         struct recent_iter_state *st;
560
561         st = __seq_open_private(file, &recent_seq_ops, sizeof(*st));
562         if (st == NULL)
563                 return -ENOMEM;
564
565         st->table    = PDE_DATA(inode);
566         return 0;
567 }
568
569 static ssize_t
570 recent_mt_proc_write(struct file *file, const char __user *input,
571                      size_t size, loff_t *loff)
572 {
573         struct recent_table *t = PDE_DATA(file_inode(file));
574         struct recent_entry *e;
575         char buf[sizeof("+b335:1d35:1e55:dead:c0de:1715:5afe:c0de")];
576         const char *c = buf;
577         union nf_inet_addr addr = {};
578         u_int16_t family;
579         bool add, succ;
580
581         if (size == 0)
582                 return 0;
583         if (size > sizeof(buf))
584                 size = sizeof(buf);
585         if (copy_from_user(buf, input, size) != 0)
586                 return -EFAULT;
587
588         /* Strict protocol! */
589         if (*loff != 0)
590                 return -ESPIPE;
591         switch (*c) {
592         case '/': /* flush table */
593                 spin_lock_bh(&recent_lock);
594                 recent_table_flush(t);
595                 spin_unlock_bh(&recent_lock);
596                 return size;
597         case '-': /* remove address */
598                 add = false;
599                 break;
600         case '+': /* add address */
601                 add = true;
602                 break;
603         default:
604                 pr_info("Need \"+ip\", \"-ip\" or \"/\"\n");
605                 return -EINVAL;
606         }
607
608         ++c;
609         --size;
610         if (strnchr(c, size, ':') != NULL) {
611                 family = NFPROTO_IPV6;
612                 succ   = in6_pton(c, size, (void *)&addr, '\n', NULL);
613         } else {
614                 family = NFPROTO_IPV4;
615                 succ   = in4_pton(c, size, (void *)&addr, '\n', NULL);
616         }
617
618         if (!succ) {
619                 pr_info("illegal address written to procfs\n");
620                 return -EINVAL;
621         }
622
623         spin_lock_bh(&recent_lock);
624         e = recent_entry_lookup(t, &addr, family, 0);
625         if (e == NULL) {
626                 if (add)
627                         recent_entry_init(t, &addr, family, 0);
628         } else {
629                 if (add)
630                         recent_entry_update(t, e);
631                 else
632                         recent_entry_remove(t, e);
633         }
634         spin_unlock_bh(&recent_lock);
635         /* Note we removed one above */
636         *loff += size + 1;
637         return size + 1;
638 }
639
640 static const struct file_operations recent_mt_fops = {
641         .open    = recent_seq_open,
642         .read    = seq_read,
643         .write   = recent_mt_proc_write,
644         .release = seq_release_private,
645         .owner   = THIS_MODULE,
646         .llseek = seq_lseek,
647 };
648
649 static int __net_init recent_proc_net_init(struct net *net)
650 {
651         struct recent_net *recent_net = recent_pernet(net);
652
653         recent_net->xt_recent = proc_mkdir("xt_recent", net->proc_net);
654         if (!recent_net->xt_recent)
655                 return -ENOMEM;
656         return 0;
657 }
658
659 static void __net_exit recent_proc_net_exit(struct net *net)
660 {
661         struct recent_net *recent_net = recent_pernet(net);
662         struct recent_table *t;
663
664         /* recent_net_exit() is called before recent_mt_destroy(). Make sure
665          * that the parent xt_recent proc entry is is empty before trying to
666          * remove it.
667          */
668         spin_lock_bh(&recent_lock);
669         list_for_each_entry(t, &recent_net->tables, list)
670                 remove_proc_entry(t->name, recent_net->xt_recent);
671
672         recent_net->xt_recent = NULL;
673         spin_unlock_bh(&recent_lock);
674
675         remove_proc_entry("xt_recent", net->proc_net);
676 }
677 #else
678 static inline int recent_proc_net_init(struct net *net)
679 {
680         return 0;
681 }
682
683 static inline void recent_proc_net_exit(struct net *net)
684 {
685 }
686 #endif /* CONFIG_PROC_FS */
687
688 static int __net_init recent_net_init(struct net *net)
689 {
690         struct recent_net *recent_net = recent_pernet(net);
691
692         INIT_LIST_HEAD(&recent_net->tables);
693         return recent_proc_net_init(net);
694 }
695
696 static void __net_exit recent_net_exit(struct net *net)
697 {
698         recent_proc_net_exit(net);
699 }
700
701 static struct pernet_operations recent_net_ops = {
702         .init   = recent_net_init,
703         .exit   = recent_net_exit,
704         .id     = &recent_net_id,
705         .size   = sizeof(struct recent_net),
706 };
707
708 static struct xt_match recent_mt_reg[] __read_mostly = {
709         {
710                 .name       = "recent",
711                 .revision   = 0,
712                 .family     = NFPROTO_IPV4,
713                 .match      = recent_mt,
714                 .matchsize  = sizeof(struct xt_recent_mtinfo),
715                 .checkentry = recent_mt_check_v0,
716                 .destroy    = recent_mt_destroy,
717                 .me         = THIS_MODULE,
718         },
719         {
720                 .name       = "recent",
721                 .revision   = 0,
722                 .family     = NFPROTO_IPV6,
723                 .match      = recent_mt,
724                 .matchsize  = sizeof(struct xt_recent_mtinfo),
725                 .checkentry = recent_mt_check_v0,
726                 .destroy    = recent_mt_destroy,
727                 .me         = THIS_MODULE,
728         },
729         {
730                 .name       = "recent",
731                 .revision   = 1,
732                 .family     = NFPROTO_IPV4,
733                 .match      = recent_mt,
734                 .matchsize  = sizeof(struct xt_recent_mtinfo_v1),
735                 .checkentry = recent_mt_check_v1,
736                 .destroy    = recent_mt_destroy,
737                 .me         = THIS_MODULE,
738         },
739         {
740                 .name       = "recent",
741                 .revision   = 1,
742                 .family     = NFPROTO_IPV6,
743                 .match      = recent_mt,
744                 .matchsize  = sizeof(struct xt_recent_mtinfo_v1),
745                 .checkentry = recent_mt_check_v1,
746                 .destroy    = recent_mt_destroy,
747                 .me         = THIS_MODULE,
748         }
749 };
750
751 static int __init recent_mt_init(void)
752 {
753         int err;
754
755         BUILD_BUG_ON_NOT_POWER_OF_2(XT_RECENT_MAX_NSTAMPS);
756
757         if (!ip_list_tot || ip_pkt_list_tot >= XT_RECENT_MAX_NSTAMPS)
758                 return -EINVAL;
759         ip_list_hash_size = 1 << fls(ip_list_tot);
760
761         err = register_pernet_subsys(&recent_net_ops);
762         if (err)
763                 return err;
764         err = xt_register_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
765         if (err)
766                 unregister_pernet_subsys(&recent_net_ops);
767         return err;
768 }
769
770 static void __exit recent_mt_exit(void)
771 {
772         xt_unregister_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
773         unregister_pernet_subsys(&recent_net_ops);
774 }
775
776 module_init(recent_mt_init);
777 module_exit(recent_mt_exit);