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