blob: 3f6c4fa78bdb717c067b57b53a0900529dcc4000 [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 */
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +010015#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Patrick McHardy404bdbf2006-05-29 18:21:34 -070016#include <linux/init.h>
Jan Engelhardt6709dbb2007-02-07 15:11:19 -080017#include <linux/ip.h>
Jan Engelhardt079aa882008-10-08 11:35:00 +020018#include <linux/ipv6.h>
19#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/moduleparam.h>
Patrick McHardy404bdbf2006-05-29 18:21:34 -070021#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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Eric Dumazet2727de72013-01-03 22:18:39 +000032#include <linux/vmalloc.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020033#include <net/net_namespace.h>
Alexey Dobriyan7d07d5632010-01-18 08:31:00 +010034#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Jan Engelhardt6709dbb2007-02-07 15:11:19 -080036#include <linux/netfilter/x_tables.h>
Jan Engelhardte948b202008-10-08 11:35:00 +020037#include <linux/netfilter/xt_recent.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Patrick McHardy404bdbf2006-05-29 18:21:34 -070039MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
Jan Engelhardt408ffaa2010-02-28 23:19:52 +010040MODULE_AUTHOR("Jan Engelhardt <jengelh@medozas.de>");
Jan Engelhardt06bf5142010-02-28 23:22:35 +010041MODULE_DESCRIPTION("Xtables: \"recently-seen\" host matching");
Patrick McHardy404bdbf2006-05-29 18:21:34 -070042MODULE_LICENSE("GPL");
Jan Engelhardte948b202008-10-08 11:35:00 +020043MODULE_ALIAS("ipt_recent");
Jan Engelhardt079aa882008-10-08 11:35:00 +020044MODULE_ALIAS("ip6t_recent");
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Florian Westphalabc86d02014-11-24 14:06:22 +010046static unsigned int ip_list_tot __read_mostly = 100;
47static unsigned int ip_list_hash_size __read_mostly;
48static unsigned int ip_list_perms __read_mostly = 0644;
49static unsigned int ip_list_uid __read_mostly;
50static unsigned int ip_list_gid __read_mostly;
Patrick McHardye7be6992006-01-05 12:19:46 -080051module_param(ip_list_tot, uint, 0400);
Patrick McHardye7be6992006-01-05 12:19:46 -080052module_param(ip_list_hash_size, uint, 0400);
53module_param(ip_list_perms, uint, 0400);
Jan Engelhardt5dc7a6d2010-03-19 21:29:08 +010054module_param(ip_list_uid, uint, S_IRUGO | S_IWUSR);
55module_param(ip_list_gid, uint, S_IRUGO | S_IWUSR);
Patrick McHardy404bdbf2006-05-29 18:21:34 -070056MODULE_PARM_DESC(ip_list_tot, "number of IPs to remember per list");
Patrick McHardy404bdbf2006-05-29 18:21:34 -070057MODULE_PARM_DESC(ip_list_hash_size, "size of hash table used to look up IPs");
Jan Engelhardt079aa882008-10-08 11:35:00 +020058MODULE_PARM_DESC(ip_list_perms, "permissions on /proc/net/xt_recent/* files");
Jan Engelhardt5dc7a6d2010-03-19 21:29:08 +010059MODULE_PARM_DESC(ip_list_uid, "default owner of /proc/net/xt_recent/* files");
60MODULE_PARM_DESC(ip_list_gid, "default owning group of /proc/net/xt_recent/* files");
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Florian Westphalabc86d02014-11-24 14:06:22 +010062/* retained for backwards compatibility */
63static unsigned int ip_pkt_list_tot __read_mostly;
64module_param(ip_pkt_list_tot, uint, 0400);
65MODULE_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
Patrick McHardy404bdbf2006-05-29 18:21:34 -070069struct recent_entry {
70 struct list_head list;
71 struct list_head lru_list;
Jan Engelhardt079aa882008-10-08 11:35:00 +020072 union nf_inet_addr addr;
73 u_int16_t family;
Patrick McHardy404bdbf2006-05-29 18:21:34 -070074 u_int8_t ttl;
75 u_int8_t index;
76 u_int16_t nstamps;
77 unsigned long stamps[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -070078};
79
Patrick McHardy404bdbf2006-05-29 18:21:34 -070080struct recent_table {
81 struct list_head list;
Jan Engelhardte948b202008-10-08 11:35:00 +020082 char name[XT_RECENT_NAME_LEN];
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +030083 union nf_inet_addr mask;
Patrick McHardy404bdbf2006-05-29 18:21:34 -070084 unsigned int refcnt;
85 unsigned int entries;
Florian Westphalabc86d02014-11-24 14:06:22 +010086 u8 nstamps_max_mask;
Patrick McHardy404bdbf2006-05-29 18:21:34 -070087 struct list_head lru_list;
88 struct list_head iphash[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -070089};
90
Alexey Dobriyan7d07d5632010-01-18 08:31:00 +010091struct recent_net {
92 struct list_head tables;
93#ifdef CONFIG_PROC_FS
94 struct proc_dir_entry *xt_recent;
Alexey Dobriyan7d07d5632010-01-18 08:31:00 +010095#endif
96};
97
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030098static unsigned int recent_net_id __read_mostly;
Florian Westphalabc86d02014-11-24 14:06:22 +010099
Alexey Dobriyan7d07d5632010-01-18 08:31:00 +0100100static inline struct recent_net *recent_pernet(struct net *net)
101{
102 return net_generic(net, recent_net_id);
103}
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105static DEFINE_SPINLOCK(recent_lock);
Patrick McHardya0e889b2006-06-09 12:17:41 -0700106static DEFINE_MUTEX(recent_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108#ifdef CONFIG_PROC_FS
Jan Engelhardt079aa882008-10-08 11:35:00 +0200109static const struct file_operations recent_old_fops, recent_mt_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#endif
111
Jan Engelhardt294188a2010-01-04 16:28:38 +0100112static u_int32_t hash_rnd __read_mostly;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700113
Jan Engelhardt294188a2010-01-04 16:28:38 +0100114static inline unsigned int recent_entry_hash4(const union nf_inet_addr *addr)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700115{
Jan Engelhardt079aa882008-10-08 11:35:00 +0200116 return jhash_1word((__force u32)addr->ip, hash_rnd) &
117 (ip_list_hash_size - 1);
118}
119
Jan Engelhardt294188a2010-01-04 16:28:38 +0100120static inline unsigned int recent_entry_hash6(const union nf_inet_addr *addr)
Jan Engelhardt079aa882008-10-08 11:35:00 +0200121{
Jan Engelhardt079aa882008-10-08 11:35:00 +0200122 return jhash2((u32 *)addr->ip6, ARRAY_SIZE(addr->ip6), hash_rnd) &
123 (ip_list_hash_size - 1);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700124}
125
126static struct recent_entry *
Jan Engelhardt079aa882008-10-08 11:35:00 +0200127recent_entry_lookup(const struct recent_table *table,
128 const union nf_inet_addr *addrp, u_int16_t family,
129 u_int8_t ttl)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700130{
131 struct recent_entry *e;
132 unsigned int h;
133
Jan Engelhardtee999d82008-10-08 11:35:01 +0200134 if (family == NFPROTO_IPV4)
Jan Engelhardt079aa882008-10-08 11:35:00 +0200135 h = recent_entry_hash4(addrp);
136 else
137 h = recent_entry_hash6(addrp);
138
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700139 list_for_each_entry(e, &table->iphash[h], list)
Jan Engelhardt079aa882008-10-08 11:35:00 +0200140 if (e->family == family &&
141 memcmp(&e->addr, addrp, sizeof(e->addr)) == 0 &&
142 (ttl == e->ttl || ttl == 0 || e->ttl == 0))
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700143 return e;
144 return NULL;
145}
146
147static 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
Tim Gardner0079c5a2010-03-16 19:53:13 +0100155/*
156 * Drop entries with timestamps older then 'time'.
157 */
158static void recent_entry_reap(struct recent_table *t, unsigned long time)
159{
160 struct recent_entry *e;
161
162 /*
163 * The head of the LRU list is always the oldest entry.
164 */
165 e = list_entry(t->lru_list.next, struct recent_entry, lru_list);
166
167 /*
168 * The last time stamp is the most recent.
169 */
170 if (time_after(time, e->stamps[e->index-1]))
171 recent_entry_remove(t, e);
172}
173
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700174static struct recent_entry *
Jan Engelhardt079aa882008-10-08 11:35:00 +0200175recent_entry_init(struct recent_table *t, const union nf_inet_addr *addr,
176 u_int16_t family, u_int8_t ttl)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700177{
178 struct recent_entry *e;
Florian Westphalabc86d02014-11-24 14:06:22 +0100179 unsigned int nstamps_max = t->nstamps_max_mask;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700180
181 if (t->entries >= ip_list_tot) {
182 e = list_entry(t->lru_list.next, struct recent_entry, lru_list);
183 recent_entry_remove(t, e);
184 }
Florian Westphalabc86d02014-11-24 14:06:22 +0100185
186 nstamps_max += 1;
187 e = kmalloc(sizeof(*e) + sizeof(e->stamps[0]) * nstamps_max,
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700188 GFP_ATOMIC);
189 if (e == NULL)
190 return NULL;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200191 memcpy(&e->addr, addr, sizeof(e->addr));
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700192 e->ttl = ttl;
193 e->stamps[0] = jiffies;
194 e->nstamps = 1;
195 e->index = 1;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200196 e->family = family;
Jan Engelhardtee999d82008-10-08 11:35:01 +0200197 if (family == NFPROTO_IPV4)
Jan Engelhardt079aa882008-10-08 11:35:00 +0200198 list_add_tail(&e->list, &t->iphash[recent_entry_hash4(addr)]);
199 else
200 list_add_tail(&e->list, &t->iphash[recent_entry_hash6(addr)]);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700201 list_add_tail(&e->lru_list, &t->lru_list);
202 t->entries++;
203 return e;
204}
205
206static void recent_entry_update(struct recent_table *t, struct recent_entry *e)
207{
Florian Westphalabc86d02014-11-24 14:06:22 +0100208 e->index &= t->nstamps_max_mask;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700209 e->stamps[e->index++] = jiffies;
210 if (e->index > e->nstamps)
211 e->nstamps = e->index;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700212 list_move_tail(&e->lru_list, &t->lru_list);
213}
214
Alexey Dobriyan7d07d5632010-01-18 08:31:00 +0100215static struct recent_table *recent_table_lookup(struct recent_net *recent_net,
216 const char *name)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700217{
218 struct recent_table *t;
219
Alexey Dobriyan7d07d5632010-01-18 08:31:00 +0100220 list_for_each_entry(t, &recent_net->tables, list)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700221 if (!strcmp(t->name, name))
222 return t;
223 return NULL;
224}
225
226static void recent_table_flush(struct recent_table *t)
227{
228 struct recent_entry *e, *next;
229 unsigned int i;
230
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700231 for (i = 0; i < ip_list_hash_size; i++)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700232 list_for_each_entry_safe(e, next, &t->iphash[i], list)
233 recent_entry_remove(t, e);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700234}
235
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700236static bool
Jan Engelhardt62fc8052009-07-07 20:42:08 +0200237recent_mt(const struct sk_buff *skb, struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
Pablo Neira Ayuso613dbd92016-11-03 10:56:21 +0100239 struct net *net = xt_net(par);
Alexey Dobriyan7d07d5632010-01-18 08:31:00 +0100240 struct recent_net *recent_net = recent_pernet(net);
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300241 const struct xt_recent_mtinfo_v1 *info = par->matchinfo;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700242 struct recent_table *t;
243 struct recent_entry *e;
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300244 union nf_inet_addr addr = {}, addr_mask;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700245 u_int8_t ttl;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700246 bool ret = info->invert;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Pablo Neira Ayuso613dbd92016-11-03 10:56:21 +0100248 if (xt_family(par) == NFPROTO_IPV4) {
Jan Engelhardt079aa882008-10-08 11:35:00 +0200249 const struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Jan Engelhardt079aa882008-10-08 11:35:00 +0200251 if (info->side == XT_RECENT_DEST)
252 addr.ip = iph->daddr;
253 else
254 addr.ip = iph->saddr;
255
256 ttl = iph->ttl;
257 } else {
258 const struct ipv6hdr *iph = ipv6_hdr(skb);
259
260 if (info->side == XT_RECENT_DEST)
261 memcpy(&addr.in6, &iph->daddr, sizeof(addr.in6));
262 else
263 memcpy(&addr.in6, &iph->saddr, sizeof(addr.in6));
264
265 ttl = iph->hop_limit;
266 }
267
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700268 /* use TTL as seen before forwarding */
Pablo Neira Ayuso613dbd92016-11-03 10:56:21 +0100269 if (xt_out(par) != NULL && skb->sk == NULL)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700270 ttl++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 spin_lock_bh(&recent_lock);
Alexey Dobriyan7d07d5632010-01-18 08:31:00 +0100273 t = recent_table_lookup(recent_net, info->name);
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300274
275 nf_inet_addr_mask(&addr, &addr_mask, &t->mask);
276
Pablo Neira Ayuso613dbd92016-11-03 10:56:21 +0100277 e = recent_entry_lookup(t, &addr_mask, xt_family(par),
Jan Engelhardt079aa882008-10-08 11:35:00 +0200278 (info->check_set & XT_RECENT_TTL) ? ttl : 0);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700279 if (e == NULL) {
Jan Engelhardte948b202008-10-08 11:35:00 +0200280 if (!(info->check_set & XT_RECENT_SET))
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700281 goto out;
Pablo Neira Ayuso613dbd92016-11-03 10:56:21 +0100282 e = recent_entry_init(t, &addr_mask, xt_family(par), ttl);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700283 if (e == NULL)
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200284 par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700285 ret = !ret;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700286 goto out;
287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Jan Engelhardte948b202008-10-08 11:35:00 +0200289 if (info->check_set & XT_RECENT_SET)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700290 ret = !ret;
Jan Engelhardte948b202008-10-08 11:35:00 +0200291 else if (info->check_set & XT_RECENT_REMOVE) {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700292 recent_entry_remove(t, e);
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700293 ret = !ret;
Jan Engelhardte948b202008-10-08 11:35:00 +0200294 } else if (info->check_set & (XT_RECENT_CHECK | XT_RECENT_UPDATE)) {
Patrick McHardy855304a2008-01-31 04:09:46 -0800295 unsigned long time = jiffies - info->seconds * HZ;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700296 unsigned int i, hits = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700298 for (i = 0; i < e->nstamps; i++) {
Patrick McHardy855304a2008-01-31 04:09:46 -0800299 if (info->seconds && time_after(time, e->stamps[i]))
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700300 continue;
Patrick McHardyef169152010-03-22 18:25:20 +0100301 if (!info->hit_count || ++hits >= info->hit_count) {
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700302 ret = !ret;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700303 break;
304 }
305 }
Tim Gardner0079c5a2010-03-16 19:53:13 +0100306
307 /* info->seconds must be non-zero */
308 if (info->check_set & XT_RECENT_REAP)
309 recent_entry_reap(t, time);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700310 }
311
Jan Engelhardte948b202008-10-08 11:35:00 +0200312 if (info->check_set & XT_RECENT_SET ||
313 (info->check_set & XT_RECENT_UPDATE && ret)) {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700314 recent_entry_update(t, e);
315 e->ttl = ttl;
316 }
317out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 spin_unlock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700319 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
Eric Dumazet2727de72013-01-03 22:18:39 +0000322static void recent_table_free(void *addr)
323{
WANG Cong4cb28972014-06-02 15:55:22 -0700324 kvfree(addr);
Eric Dumazet2727de72013-01-03 22:18:39 +0000325}
326
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300327static int recent_mt_check(const struct xt_mtchk_param *par,
328 const struct xt_recent_mtinfo_v1 *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
Alexey Dobriyan7d07d5632010-01-18 08:31:00 +0100330 struct recent_net *recent_net = recent_pernet(par->net);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700331 struct recent_table *t;
Alexey Dobriyanb0ceb562008-11-20 09:57:01 +0100332#ifdef CONFIG_PROC_FS
333 struct proc_dir_entry *pde;
Eric W. Biedermanda742802012-05-25 16:26:52 -0600334 kuid_t uid;
335 kgid_t gid;
Alexey Dobriyanb0ceb562008-11-20 09:57:01 +0100336#endif
Florian Westphalabc86d02014-11-24 14:06:22 +0100337 unsigned int nstamp_mask;
Eric Dumazet95c96172012-04-15 05:58:06 +0000338 unsigned int i;
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100339 int ret = -EINVAL;
Eric Dumazet2727de72013-01-03 22:18:39 +0000340 size_t sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Gao Feng7bdc6622016-09-18 10:52:25 +0800342 net_get_random_once(&hash_rnd, sizeof(hash_rnd));
343
Tim Gardner606a9a02010-03-17 16:18:56 +0100344 if (info->check_set & ~XT_RECENT_VALID_FLAGS) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100345 pr_info("Unsupported user space flags (%08x)\n",
346 info->check_set);
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100347 return -EINVAL;
Tim Gardner606a9a02010-03-17 16:18:56 +0100348 }
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700349 if (hweight8(info->check_set &
Jan Engelhardte948b202008-10-08 11:35:00 +0200350 (XT_RECENT_SET | XT_RECENT_REMOVE |
351 XT_RECENT_CHECK | XT_RECENT_UPDATE)) != 1)
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100352 return -EINVAL;
Jan Engelhardte948b202008-10-08 11:35:00 +0200353 if ((info->check_set & (XT_RECENT_SET | XT_RECENT_REMOVE)) &&
Tim Gardner0079c5a2010-03-16 19:53:13 +0100354 (info->seconds || info->hit_count ||
355 (info->check_set & XT_RECENT_MODIFIERS)))
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100356 return -EINVAL;
Tim Gardner0079c5a2010-03-16 19:53:13 +0100357 if ((info->check_set & XT_RECENT_REAP) && !info->seconds)
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100358 return -EINVAL;
Florian Westphalabc86d02014-11-24 14:06:22 +0100359 if (info->hit_count >= XT_RECENT_MAX_NSTAMPS) {
360 pr_info("hitcount (%u) is larger than allowed maximum (%u)\n",
361 info->hit_count, XT_RECENT_MAX_NSTAMPS - 1);
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100362 return -EINVAL;
Jan Engelhardt98e6d2d2010-02-15 16:31:35 +0100363 }
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700364 if (info->name[0] == '\0' ||
Jan Engelhardte948b202008-10-08 11:35:00 +0200365 strnlen(info->name, XT_RECENT_NAME_LEN) == XT_RECENT_NAME_LEN)
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100366 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Florian Westphalabc86d02014-11-24 14:06:22 +0100368 if (ip_pkt_list_tot && info->hit_count < ip_pkt_list_tot)
369 nstamp_mask = roundup_pow_of_two(ip_pkt_list_tot) - 1;
370 else if (info->hit_count)
371 nstamp_mask = roundup_pow_of_two(info->hit_count) - 1;
372 else
373 nstamp_mask = 32 - 1;
374
Patrick McHardya0e889b2006-06-09 12:17:41 -0700375 mutex_lock(&recent_mutex);
Alexey Dobriyan7d07d5632010-01-18 08:31:00 +0100376 t = recent_table_lookup(recent_net, info->name);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700377 if (t != NULL) {
Florian Westphalcef9ed82015-02-13 12:47:50 +0100378 if (nstamp_mask > t->nstamps_max_mask) {
379 spin_lock_bh(&recent_lock);
380 recent_table_flush(t);
381 t->nstamps_max_mask = nstamp_mask;
382 spin_unlock_bh(&recent_lock);
Florian Westphalabc86d02014-11-24 14:06:22 +0100383 }
384
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700385 t->refcnt++;
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100386 ret = 0;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700387 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
389
Eric Dumazet2727de72013-01-03 22:18:39 +0000390 sz = sizeof(*t) + sizeof(t->iphash[0]) * ip_list_hash_size;
Michal Hocko752ade62017-05-08 15:57:27 -0700391 t = kvzalloc(sz, GFP_KERNEL);
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100392 if (t == NULL) {
393 ret = -ENOMEM;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700394 goto out;
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100395 }
Patrick McHardy2b2283d2006-06-09 12:18:17 -0700396 t->refcnt = 1;
Florian Westphalabc86d02014-11-24 14:06:22 +0100397 t->nstamps_max_mask = nstamp_mask;
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300398
399 memcpy(&t->mask, &info->mask, sizeof(t->mask));
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700400 strcpy(t->name, info->name);
401 INIT_LIST_HEAD(&t->lru_list);
402 for (i = 0; i < ip_list_hash_size; i++)
403 INIT_LIST_HEAD(&t->iphash[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404#ifdef CONFIG_PROC_FS
Eric W. Biedermanda742802012-05-25 16:26:52 -0600405 uid = make_kuid(&init_user_ns, ip_list_uid);
406 gid = make_kgid(&init_user_ns, ip_list_gid);
407 if (!uid_valid(uid) || !gid_valid(gid)) {
Eric Dumazet2727de72013-01-03 22:18:39 +0000408 recent_table_free(t);
Eric W. Biedermanda742802012-05-25 16:26:52 -0600409 ret = -EINVAL;
410 goto out;
411 }
Alexey Dobriyan7d07d5632010-01-18 08:31:00 +0100412 pde = proc_create_data(t->name, ip_list_perms, recent_net->xt_recent,
Alexey Dobriyanb09eec12008-10-20 03:33:49 -0700413 &recent_mt_fops, t);
Alexey Dobriyanb0ceb562008-11-20 09:57:01 +0100414 if (pde == NULL) {
Eric Dumazet2727de72013-01-03 22:18:39 +0000415 recent_table_free(t);
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100416 ret = -ENOMEM;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700417 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 }
David Howells271a15e2013-04-12 00:38:51 +0100419 proc_set_user(pde, uid, gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420#endif
Patrick McHardya0e889b2006-06-09 12:17:41 -0700421 spin_lock_bh(&recent_lock);
Alexey Dobriyan7d07d5632010-01-18 08:31:00 +0100422 list_add_tail(&t->list, &recent_net->tables);
Patrick McHardya0e889b2006-06-09 12:17:41 -0700423 spin_unlock_bh(&recent_lock);
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100424 ret = 0;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700425out:
Patrick McHardya0e889b2006-06-09 12:17:41 -0700426 mutex_unlock(&recent_mutex);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700427 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428}
429
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300430static int recent_mt_check_v0(const struct xt_mtchk_param *par)
431{
432 const struct xt_recent_mtinfo_v0 *info_v0 = par->matchinfo;
433 struct xt_recent_mtinfo_v1 info_v1;
434
435 /* Copy revision 0 structure to revision 1 */
436 memcpy(&info_v1, info_v0, sizeof(struct xt_recent_mtinfo));
437 /* Set default mask to ensure backward compatible behaviour */
438 memset(info_v1.mask.all, 0xFF, sizeof(info_v1.mask.all));
439
440 return recent_mt_check(par, &info_v1);
441}
442
443static int recent_mt_check_v1(const struct xt_mtchk_param *par)
444{
445 return recent_mt_check(par, par->matchinfo);
446}
447
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200448static void recent_mt_destroy(const struct xt_mtdtor_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
Alexey Dobriyan7d07d5632010-01-18 08:31:00 +0100450 struct recent_net *recent_net = recent_pernet(par->net);
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300451 const struct xt_recent_mtinfo_v1 *info = par->matchinfo;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700452 struct recent_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Patrick McHardya0e889b2006-06-09 12:17:41 -0700454 mutex_lock(&recent_mutex);
Alexey Dobriyan7d07d5632010-01-18 08:31:00 +0100455 t = recent_table_lookup(recent_net, info->name);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700456 if (--t->refcnt == 0) {
Patrick McHardya0e889b2006-06-09 12:17:41 -0700457 spin_lock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700458 list_del(&t->list);
Patrick McHardya0e889b2006-06-09 12:17:41 -0700459 spin_unlock_bh(&recent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460#ifdef CONFIG_PROC_FS
Vitaly E. Lavrov665e2052012-12-24 13:55:20 +0100461 if (recent_net->xt_recent != NULL)
462 remove_proc_entry(t->name, recent_net->xt_recent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463#endif
Pavel Emelyanova8ddc912008-07-31 00:38:31 -0700464 recent_table_flush(t);
Eric Dumazet2727de72013-01-03 22:18:39 +0000465 recent_table_free(t);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700466 }
Patrick McHardya0e889b2006-06-09 12:17:41 -0700467 mutex_unlock(&recent_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468}
469
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700470#ifdef CONFIG_PROC_FS
471struct recent_iter_state {
Jan Engelhardt079aa882008-10-08 11:35:00 +0200472 const struct recent_table *table;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700473 unsigned int bucket;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474};
475
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700476static void *recent_seq_start(struct seq_file *seq, loff_t *pos)
Patrick McHardy855304a2008-01-31 04:09:46 -0800477 __acquires(recent_lock)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700478{
479 struct recent_iter_state *st = seq->private;
Jan Engelhardta47362a2007-07-07 22:16:55 -0700480 const struct recent_table *t = st->table;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700481 struct recent_entry *e;
482 loff_t p = *pos;
483
484 spin_lock_bh(&recent_lock);
485
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700486 for (st->bucket = 0; st->bucket < ip_list_hash_size; st->bucket++)
487 list_for_each_entry(e, &t->iphash[st->bucket], list)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700488 if (p-- == 0)
489 return e;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700490 return NULL;
491}
492
493static void *recent_seq_next(struct seq_file *seq, void *v, loff_t *pos)
494{
495 struct recent_iter_state *st = seq->private;
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200496 const struct recent_table *t = st->table;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200497 const struct recent_entry *e = v;
498 const struct list_head *head = e->list.next;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700499
500 while (head == &t->iphash[st->bucket]) {
501 if (++st->bucket >= ip_list_hash_size)
502 return NULL;
503 head = t->iphash[st->bucket].next;
504 }
505 (*pos)++;
506 return list_entry(head, struct recent_entry, list);
507}
508
509static void recent_seq_stop(struct seq_file *s, void *v)
Patrick McHardy855304a2008-01-31 04:09:46 -0800510 __releases(recent_lock)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700511{
512 spin_unlock_bh(&recent_lock);
513}
514
515static int recent_seq_show(struct seq_file *seq, void *v)
516{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200517 const struct recent_entry *e = v;
Florian Westphalabc86d02014-11-24 14:06:22 +0100518 struct recent_iter_state *st = seq->private;
519 const struct recent_table *t = st->table;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700520 unsigned int i;
521
Florian Westphalabc86d02014-11-24 14:06:22 +0100522 i = (e->index - 1) & t->nstamps_max_mask;
523
Jan Engelhardtee999d82008-10-08 11:35:01 +0200524 if (e->family == NFPROTO_IPV4)
Harvey Harrison14d5e832008-10-31 00:54:29 -0700525 seq_printf(seq, "src=%pI4 ttl: %u last_seen: %lu oldest_pkt: %u",
526 &e->addr.ip, e->ttl, e->stamps[i], e->index);
Jan Engelhardt079aa882008-10-08 11:35:00 +0200527 else
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700528 seq_printf(seq, "src=%pI6 ttl: %u last_seen: %lu oldest_pkt: %u",
Harvey Harrison38ff4fa2008-10-28 16:08:13 -0700529 &e->addr.in6, e->ttl, e->stamps[i], e->index);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700530 for (i = 0; i < e->nstamps; i++)
531 seq_printf(seq, "%s %lu", i ? "," : "", e->stamps[i]);
simran singhalcdec2682017-03-29 03:25:17 +0530532 seq_putc(seq, '\n');
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700533 return 0;
534}
535
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700536static const struct seq_operations recent_seq_ops = {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700537 .start = recent_seq_start,
538 .next = recent_seq_next,
539 .stop = recent_seq_stop,
540 .show = recent_seq_show,
541};
542
543static int recent_seq_open(struct inode *inode, struct file *file)
544{
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700545 struct recent_iter_state *st;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700546
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700547 st = __seq_open_private(file, &recent_seq_ops, sizeof(*st));
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700548 if (st == NULL)
549 return -ENOMEM;
Jesper Juhl3af8e312007-08-07 18:10:54 -0700550
Al Virod9dda782013-03-31 18:16:14 -0400551 st->table = PDE_DATA(inode);
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700552 return 0;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700553}
554
Jan Engelhardt079aa882008-10-08 11:35:00 +0200555static ssize_t
556recent_mt_proc_write(struct file *file, const char __user *input,
557 size_t size, loff_t *loff)
558{
Al Virod9dda782013-03-31 18:16:14 -0400559 struct recent_table *t = PDE_DATA(file_inode(file));
Jan Engelhardt079aa882008-10-08 11:35:00 +0200560 struct recent_entry *e;
561 char buf[sizeof("+b335:1d35:1e55:dead:c0de:1715:5afe:c0de")];
562 const char *c = buf;
Josef Drexler325fb5b2009-02-24 14:53:12 +0100563 union nf_inet_addr addr = {};
Jan Engelhardt079aa882008-10-08 11:35:00 +0200564 u_int16_t family;
565 bool add, succ;
566
567 if (size == 0)
568 return 0;
569 if (size > sizeof(buf))
570 size = sizeof(buf);
571 if (copy_from_user(buf, input, size) != 0)
572 return -EFAULT;
573
574 /* Strict protocol! */
575 if (*loff != 0)
576 return -ESPIPE;
577 switch (*c) {
578 case '/': /* flush table */
579 spin_lock_bh(&recent_lock);
580 recent_table_flush(t);
581 spin_unlock_bh(&recent_lock);
582 return size;
583 case '-': /* remove address */
584 add = false;
585 break;
586 case '+': /* add address */
587 add = true;
588 break;
589 default:
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100590 pr_info("Need \"+ip\", \"-ip\" or \"/\"\n");
Jan Engelhardt079aa882008-10-08 11:35:00 +0200591 return -EINVAL;
592 }
593
594 ++c;
595 --size;
596 if (strnchr(c, size, ':') != NULL) {
Jan Engelhardtee999d82008-10-08 11:35:01 +0200597 family = NFPROTO_IPV6;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200598 succ = in6_pton(c, size, (void *)&addr, '\n', NULL);
599 } else {
Jan Engelhardtee999d82008-10-08 11:35:01 +0200600 family = NFPROTO_IPV4;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200601 succ = in4_pton(c, size, (void *)&addr, '\n', NULL);
602 }
603
604 if (!succ) {
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100605 pr_info("illegal address written to procfs\n");
Jan Engelhardt079aa882008-10-08 11:35:00 +0200606 return -EINVAL;
607 }
608
609 spin_lock_bh(&recent_lock);
610 e = recent_entry_lookup(t, &addr, family, 0);
611 if (e == NULL) {
612 if (add)
613 recent_entry_init(t, &addr, family, 0);
614 } else {
615 if (add)
616 recent_entry_update(t, e);
617 else
618 recent_entry_remove(t, e);
619 }
620 spin_unlock_bh(&recent_lock);
621 /* Note we removed one above */
622 *loff += size + 1;
623 return size + 1;
624}
625
626static const struct file_operations recent_mt_fops = {
627 .open = recent_seq_open,
628 .read = seq_read,
629 .write = recent_mt_proc_write,
630 .release = seq_release_private,
631 .owner = THIS_MODULE,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200632 .llseek = seq_lseek,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200633};
Alexey Dobriyan7d07d5632010-01-18 08:31:00 +0100634
635static int __net_init recent_proc_net_init(struct net *net)
636{
637 struct recent_net *recent_net = recent_pernet(net);
638
639 recent_net->xt_recent = proc_mkdir("xt_recent", net->proc_net);
640 if (!recent_net->xt_recent)
641 return -ENOMEM;
Alexey Dobriyan7d07d5632010-01-18 08:31:00 +0100642 return 0;
643}
644
645static void __net_exit recent_proc_net_exit(struct net *net)
646{
Vitaly E. Lavrov665e2052012-12-24 13:55:20 +0100647 struct recent_net *recent_net = recent_pernet(net);
648 struct recent_table *t;
649
650 /* recent_net_exit() is called before recent_mt_destroy(). Make sure
651 * that the parent xt_recent proc entry is is empty before trying to
652 * remove it.
653 */
654 spin_lock_bh(&recent_lock);
655 list_for_each_entry(t, &recent_net->tables, list)
656 remove_proc_entry(t->name, recent_net->xt_recent);
657
658 recent_net->xt_recent = NULL;
659 spin_unlock_bh(&recent_lock);
660
Gao fengece31ff2013-02-18 01:34:56 +0000661 remove_proc_entry("xt_recent", net->proc_net);
Alexey Dobriyan7d07d5632010-01-18 08:31:00 +0100662}
663#else
664static inline int recent_proc_net_init(struct net *net)
665{
666 return 0;
667}
668
669static inline void recent_proc_net_exit(struct net *net)
670{
671}
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700672#endif /* CONFIG_PROC_FS */
673
Alexey Dobriyan7d07d5632010-01-18 08:31:00 +0100674static int __net_init recent_net_init(struct net *net)
675{
676 struct recent_net *recent_net = recent_pernet(net);
677
678 INIT_LIST_HEAD(&recent_net->tables);
679 return recent_proc_net_init(net);
680}
681
682static void __net_exit recent_net_exit(struct net *net)
683{
Alexey Dobriyan7d07d5632010-01-18 08:31:00 +0100684 recent_proc_net_exit(net);
685}
686
687static struct pernet_operations recent_net_ops = {
688 .init = recent_net_init,
689 .exit = recent_net_exit,
690 .id = &recent_net_id,
691 .size = sizeof(struct recent_net),
692};
693
Jan Engelhardt079aa882008-10-08 11:35:00 +0200694static struct xt_match recent_mt_reg[] __read_mostly = {
695 {
696 .name = "recent",
697 .revision = 0,
Jan Engelhardtee999d82008-10-08 11:35:01 +0200698 .family = NFPROTO_IPV4,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200699 .match = recent_mt,
700 .matchsize = sizeof(struct xt_recent_mtinfo),
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300701 .checkentry = recent_mt_check_v0,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200702 .destroy = recent_mt_destroy,
703 .me = THIS_MODULE,
704 },
705 {
706 .name = "recent",
707 .revision = 0,
Jan Engelhardtee999d82008-10-08 11:35:01 +0200708 .family = NFPROTO_IPV6,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200709 .match = recent_mt,
710 .matchsize = sizeof(struct xt_recent_mtinfo),
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300711 .checkentry = recent_mt_check_v0,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200712 .destroy = recent_mt_destroy,
713 .me = THIS_MODULE,
714 },
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300715 {
716 .name = "recent",
717 .revision = 1,
718 .family = NFPROTO_IPV4,
719 .match = recent_mt,
720 .matchsize = sizeof(struct xt_recent_mtinfo_v1),
721 .checkentry = recent_mt_check_v1,
722 .destroy = recent_mt_destroy,
723 .me = THIS_MODULE,
724 },
725 {
726 .name = "recent",
727 .revision = 1,
728 .family = NFPROTO_IPV6,
729 .match = recent_mt,
730 .matchsize = sizeof(struct xt_recent_mtinfo_v1),
731 .checkentry = recent_mt_check_v1,
732 .destroy = recent_mt_destroy,
733 .me = THIS_MODULE,
734 }
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700735};
736
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800737static int __init recent_mt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700739 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Florian Westphalabc86d02014-11-24 14:06:22 +0100741 BUILD_BUG_ON_NOT_POWER_OF_2(XT_RECENT_MAX_NSTAMPS);
742
743 if (!ip_list_tot || ip_pkt_list_tot >= XT_RECENT_MAX_NSTAMPS)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700744 return -EINVAL;
745 ip_list_hash_size = 1 << fls(ip_list_tot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Alexey Dobriyan7d07d5632010-01-18 08:31:00 +0100747 err = register_pernet_subsys(&recent_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 if (err)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700749 return err;
Alexey Dobriyan7d07d5632010-01-18 08:31:00 +0100750 err = xt_register_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
751 if (err)
752 unregister_pernet_subsys(&recent_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 return err;
754}
755
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800756static void __exit recent_mt_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
Jan Engelhardt079aa882008-10-08 11:35:00 +0200758 xt_unregister_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
Alexey Dobriyan7d07d5632010-01-18 08:31:00 +0100759 unregister_pernet_subsys(&recent_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
761
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800762module_init(recent_mt_init);
763module_exit(recent_mt_exit);