blob: d725a27743a169fc80cc00f38dd2278696be3365 [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 Dobriyan7d07d562010-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 Dobriyan7d07d562010-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 Dobriyan7d07d562010-01-18 08:31:00 +010095#endif
96};
97
Florian Westphalabc86d02014-11-24 14:06:22 +010098static int recent_net_id __read_mostly;
99
Alexey Dobriyan7d07d562010-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;
113static bool hash_rnd_inited __read_mostly;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700114
Jan Engelhardt294188a2010-01-04 16:28:38 +0100115static inline unsigned int recent_entry_hash4(const union nf_inet_addr *addr)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700116{
Jan Engelhardt079aa882008-10-08 11:35:00 +0200117 return jhash_1word((__force u32)addr->ip, hash_rnd) &
118 (ip_list_hash_size - 1);
119}
120
Jan Engelhardt294188a2010-01-04 16:28:38 +0100121static inline unsigned int recent_entry_hash6(const union nf_inet_addr *addr)
Jan Engelhardt079aa882008-10-08 11:35:00 +0200122{
Jan Engelhardt079aa882008-10-08 11:35:00 +0200123 return jhash2((u32 *)addr->ip6, ARRAY_SIZE(addr->ip6), hash_rnd) &
124 (ip_list_hash_size - 1);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700125}
126
127static struct recent_entry *
Jan Engelhardt079aa882008-10-08 11:35:00 +0200128recent_entry_lookup(const struct recent_table *table,
129 const union nf_inet_addr *addrp, u_int16_t family,
130 u_int8_t ttl)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700131{
132 struct recent_entry *e;
133 unsigned int h;
134
Jan Engelhardtee999d82008-10-08 11:35:01 +0200135 if (family == NFPROTO_IPV4)
Jan Engelhardt079aa882008-10-08 11:35:00 +0200136 h = recent_entry_hash4(addrp);
137 else
138 h = recent_entry_hash6(addrp);
139
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700140 list_for_each_entry(e, &table->iphash[h], list)
Jan Engelhardt079aa882008-10-08 11:35:00 +0200141 if (e->family == family &&
142 memcmp(&e->addr, addrp, sizeof(e->addr)) == 0 &&
143 (ttl == e->ttl || ttl == 0 || e->ttl == 0))
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700144 return e;
145 return NULL;
146}
147
148static 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
Tim Gardner0079c5a2010-03-16 19:53:13 +0100156/*
157 * Drop entries with timestamps older then 'time'.
158 */
159static void recent_entry_reap(struct recent_table *t, unsigned long time)
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 * The last time stamp is the most recent.
170 */
171 if (time_after(time, e->stamps[e->index-1]))
172 recent_entry_remove(t, e);
173}
174
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700175static struct recent_entry *
Jan Engelhardt079aa882008-10-08 11:35:00 +0200176recent_entry_init(struct recent_table *t, const union nf_inet_addr *addr,
177 u_int16_t family, u_int8_t ttl)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700178{
179 struct recent_entry *e;
Florian Westphalabc86d02014-11-24 14:06:22 +0100180 unsigned int nstamps_max = t->nstamps_max_mask;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700181
182 if (t->entries >= ip_list_tot) {
183 e = list_entry(t->lru_list.next, struct recent_entry, lru_list);
184 recent_entry_remove(t, e);
185 }
Florian Westphalabc86d02014-11-24 14:06:22 +0100186
187 nstamps_max += 1;
188 e = kmalloc(sizeof(*e) + sizeof(e->stamps[0]) * nstamps_max,
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700189 GFP_ATOMIC);
190 if (e == NULL)
191 return NULL;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200192 memcpy(&e->addr, addr, sizeof(e->addr));
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700193 e->ttl = ttl;
194 e->stamps[0] = jiffies;
195 e->nstamps = 1;
196 e->index = 1;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200197 e->family = family;
Jan Engelhardtee999d82008-10-08 11:35:01 +0200198 if (family == NFPROTO_IPV4)
Jan Engelhardt079aa882008-10-08 11:35:00 +0200199 list_add_tail(&e->list, &t->iphash[recent_entry_hash4(addr)]);
200 else
201 list_add_tail(&e->list, &t->iphash[recent_entry_hash6(addr)]);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700202 list_add_tail(&e->lru_list, &t->lru_list);
203 t->entries++;
204 return e;
205}
206
207static void recent_entry_update(struct recent_table *t, struct recent_entry *e)
208{
Florian Westphalabc86d02014-11-24 14:06:22 +0100209 e->index &= t->nstamps_max_mask;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700210 e->stamps[e->index++] = jiffies;
211 if (e->index > e->nstamps)
212 e->nstamps = e->index;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700213 list_move_tail(&e->lru_list, &t->lru_list);
214}
215
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100216static struct recent_table *recent_table_lookup(struct recent_net *recent_net,
217 const char *name)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700218{
219 struct recent_table *t;
220
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100221 list_for_each_entry(t, &recent_net->tables, list)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700222 if (!strcmp(t->name, name))
223 return t;
224 return NULL;
225}
226
227static void recent_table_flush(struct recent_table *t)
228{
229 struct recent_entry *e, *next;
230 unsigned int i;
231
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700232 for (i = 0; i < ip_list_hash_size; i++)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700233 list_for_each_entry_safe(e, next, &t->iphash[i], list)
234 recent_entry_remove(t, e);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700235}
236
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700237static bool
Jan Engelhardt62fc8052009-07-07 20:42:08 +0200238recent_mt(const struct sk_buff *skb, struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
Eric W. Biederman686c9b52015-09-18 14:32:59 -0500240 struct net *net = par->net;
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100241 struct recent_net *recent_net = recent_pernet(net);
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300242 const struct xt_recent_mtinfo_v1 *info = par->matchinfo;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700243 struct recent_table *t;
244 struct recent_entry *e;
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300245 union nf_inet_addr addr = {}, addr_mask;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700246 u_int8_t ttl;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700247 bool ret = info->invert;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Jan Engelhardtaa5fa312010-03-18 00:44:52 +0100249 if (par->family == NFPROTO_IPV4) {
Jan Engelhardt079aa882008-10-08 11:35:00 +0200250 const struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Jan Engelhardt079aa882008-10-08 11:35:00 +0200252 if (info->side == XT_RECENT_DEST)
253 addr.ip = iph->daddr;
254 else
255 addr.ip = iph->saddr;
256
257 ttl = iph->ttl;
258 } else {
259 const struct ipv6hdr *iph = ipv6_hdr(skb);
260
261 if (info->side == XT_RECENT_DEST)
262 memcpy(&addr.in6, &iph->daddr, sizeof(addr.in6));
263 else
264 memcpy(&addr.in6, &iph->saddr, sizeof(addr.in6));
265
266 ttl = iph->hop_limit;
267 }
268
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700269 /* use TTL as seen before forwarding */
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200270 if (par->out != NULL && skb->sk == NULL)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700271 ttl++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 spin_lock_bh(&recent_lock);
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100274 t = recent_table_lookup(recent_net, info->name);
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300275
276 nf_inet_addr_mask(&addr, &addr_mask, &t->mask);
277
278 e = recent_entry_lookup(t, &addr_mask, par->family,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200279 (info->check_set & XT_RECENT_TTL) ? ttl : 0);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700280 if (e == NULL) {
Jan Engelhardte948b202008-10-08 11:35:00 +0200281 if (!(info->check_set & XT_RECENT_SET))
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700282 goto out;
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300283 e = recent_entry_init(t, &addr_mask, par->family, ttl);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700284 if (e == NULL)
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200285 par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700286 ret = !ret;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700287 goto out;
288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Jan Engelhardte948b202008-10-08 11:35:00 +0200290 if (info->check_set & XT_RECENT_SET)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700291 ret = !ret;
Jan Engelhardte948b202008-10-08 11:35:00 +0200292 else if (info->check_set & XT_RECENT_REMOVE) {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700293 recent_entry_remove(t, e);
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700294 ret = !ret;
Jan Engelhardte948b202008-10-08 11:35:00 +0200295 } else if (info->check_set & (XT_RECENT_CHECK | XT_RECENT_UPDATE)) {
Patrick McHardy855304a2008-01-31 04:09:46 -0800296 unsigned long time = jiffies - info->seconds * HZ;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700297 unsigned int i, hits = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700299 for (i = 0; i < e->nstamps; i++) {
Patrick McHardy855304a2008-01-31 04:09:46 -0800300 if (info->seconds && time_after(time, e->stamps[i]))
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700301 continue;
Patrick McHardyef169152010-03-22 18:25:20 +0100302 if (!info->hit_count || ++hits >= info->hit_count) {
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700303 ret = !ret;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700304 break;
305 }
306 }
Tim Gardner0079c5a2010-03-16 19:53:13 +0100307
308 /* info->seconds must be non-zero */
309 if (info->check_set & XT_RECENT_REAP)
310 recent_entry_reap(t, time);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700311 }
312
Jan Engelhardte948b202008-10-08 11:35:00 +0200313 if (info->check_set & XT_RECENT_SET ||
314 (info->check_set & XT_RECENT_UPDATE && ret)) {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700315 recent_entry_update(t, e);
316 e->ttl = ttl;
317 }
318out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 spin_unlock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700320 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
Eric Dumazet2727de72013-01-03 22:18:39 +0000323static void recent_table_free(void *addr)
324{
WANG Cong4cb28972014-06-02 15:55:22 -0700325 kvfree(addr);
Eric Dumazet2727de72013-01-03 22:18:39 +0000326}
327
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300328static int recent_mt_check(const struct xt_mtchk_param *par,
329 const struct xt_recent_mtinfo_v1 *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100331 struct recent_net *recent_net = recent_pernet(par->net);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700332 struct recent_table *t;
Alexey Dobriyanb0ceb562008-11-20 09:57:01 +0100333#ifdef CONFIG_PROC_FS
334 struct proc_dir_entry *pde;
Eric W. Biedermanda742802012-05-25 16:26:52 -0600335 kuid_t uid;
336 kgid_t gid;
Alexey Dobriyanb0ceb562008-11-20 09:57:01 +0100337#endif
Florian Westphalabc86d02014-11-24 14:06:22 +0100338 unsigned int nstamp_mask;
Eric Dumazet95c96172012-04-15 05:58:06 +0000339 unsigned int i;
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100340 int ret = -EINVAL;
Eric Dumazet2727de72013-01-03 22:18:39 +0000341 size_t sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Jan Engelhardt294188a2010-01-04 16:28:38 +0100343 if (unlikely(!hash_rnd_inited)) {
344 get_random_bytes(&hash_rnd, sizeof(hash_rnd));
345 hash_rnd_inited = true;
346 }
Tim Gardner606a9a02010-03-17 16:18:56 +0100347 if (info->check_set & ~XT_RECENT_VALID_FLAGS) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100348 pr_info("Unsupported user space flags (%08x)\n",
349 info->check_set);
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100350 return -EINVAL;
Tim Gardner606a9a02010-03-17 16:18:56 +0100351 }
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700352 if (hweight8(info->check_set &
Jan Engelhardte948b202008-10-08 11:35:00 +0200353 (XT_RECENT_SET | XT_RECENT_REMOVE |
354 XT_RECENT_CHECK | XT_RECENT_UPDATE)) != 1)
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100355 return -EINVAL;
Jan Engelhardte948b202008-10-08 11:35:00 +0200356 if ((info->check_set & (XT_RECENT_SET | XT_RECENT_REMOVE)) &&
Tim Gardner0079c5a2010-03-16 19:53:13 +0100357 (info->seconds || info->hit_count ||
358 (info->check_set & XT_RECENT_MODIFIERS)))
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100359 return -EINVAL;
Tim Gardner0079c5a2010-03-16 19:53:13 +0100360 if ((info->check_set & XT_RECENT_REAP) && !info->seconds)
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100361 return -EINVAL;
Florian Westphalabc86d02014-11-24 14:06:22 +0100362 if (info->hit_count >= XT_RECENT_MAX_NSTAMPS) {
363 pr_info("hitcount (%u) is larger than allowed maximum (%u)\n",
364 info->hit_count, XT_RECENT_MAX_NSTAMPS - 1);
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100365 return -EINVAL;
Jan Engelhardt98e6d2d2010-02-15 16:31:35 +0100366 }
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700367 if (info->name[0] == '\0' ||
Jan Engelhardte948b202008-10-08 11:35:00 +0200368 strnlen(info->name, XT_RECENT_NAME_LEN) == XT_RECENT_NAME_LEN)
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100369 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Florian Westphalabc86d02014-11-24 14:06:22 +0100371 if (ip_pkt_list_tot && info->hit_count < ip_pkt_list_tot)
372 nstamp_mask = roundup_pow_of_two(ip_pkt_list_tot) - 1;
373 else if (info->hit_count)
374 nstamp_mask = roundup_pow_of_two(info->hit_count) - 1;
375 else
376 nstamp_mask = 32 - 1;
377
Patrick McHardya0e889b2006-06-09 12:17:41 -0700378 mutex_lock(&recent_mutex);
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100379 t = recent_table_lookup(recent_net, info->name);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700380 if (t != NULL) {
Florian Westphalcef9ed82015-02-13 12:47:50 +0100381 if (nstamp_mask > t->nstamps_max_mask) {
382 spin_lock_bh(&recent_lock);
383 recent_table_flush(t);
384 t->nstamps_max_mask = nstamp_mask;
385 spin_unlock_bh(&recent_lock);
Florian Westphalabc86d02014-11-24 14:06:22 +0100386 }
387
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700388 t->refcnt++;
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100389 ret = 0;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700390 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 }
392
Eric Dumazet2727de72013-01-03 22:18:39 +0000393 sz = sizeof(*t) + sizeof(t->iphash[0]) * ip_list_hash_size;
394 if (sz <= PAGE_SIZE)
395 t = kzalloc(sz, GFP_KERNEL);
396 else
397 t = vzalloc(sz);
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100398 if (t == NULL) {
399 ret = -ENOMEM;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700400 goto out;
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100401 }
Patrick McHardy2b2283d2006-06-09 12:18:17 -0700402 t->refcnt = 1;
Florian Westphalabc86d02014-11-24 14:06:22 +0100403 t->nstamps_max_mask = nstamp_mask;
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300404
405 memcpy(&t->mask, &info->mask, sizeof(t->mask));
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700406 strcpy(t->name, info->name);
407 INIT_LIST_HEAD(&t->lru_list);
408 for (i = 0; i < ip_list_hash_size; i++)
409 INIT_LIST_HEAD(&t->iphash[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410#ifdef CONFIG_PROC_FS
Eric W. Biedermanda742802012-05-25 16:26:52 -0600411 uid = make_kuid(&init_user_ns, ip_list_uid);
412 gid = make_kgid(&init_user_ns, ip_list_gid);
413 if (!uid_valid(uid) || !gid_valid(gid)) {
Eric Dumazet2727de72013-01-03 22:18:39 +0000414 recent_table_free(t);
Eric W. Biedermanda742802012-05-25 16:26:52 -0600415 ret = -EINVAL;
416 goto out;
417 }
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100418 pde = proc_create_data(t->name, ip_list_perms, recent_net->xt_recent,
Alexey Dobriyanb09eec12008-10-20 03:33:49 -0700419 &recent_mt_fops, t);
Alexey Dobriyanb0ceb562008-11-20 09:57:01 +0100420 if (pde == NULL) {
Eric Dumazet2727de72013-01-03 22:18:39 +0000421 recent_table_free(t);
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100422 ret = -ENOMEM;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700423 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 }
David Howells271a15e2013-04-12 00:38:51 +0100425 proc_set_user(pde, uid, gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426#endif
Patrick McHardya0e889b2006-06-09 12:17:41 -0700427 spin_lock_bh(&recent_lock);
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100428 list_add_tail(&t->list, &recent_net->tables);
Patrick McHardya0e889b2006-06-09 12:17:41 -0700429 spin_unlock_bh(&recent_lock);
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100430 ret = 0;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700431out:
Patrick McHardya0e889b2006-06-09 12:17:41 -0700432 mutex_unlock(&recent_mutex);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700433 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
435
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300436static int recent_mt_check_v0(const struct xt_mtchk_param *par)
437{
438 const struct xt_recent_mtinfo_v0 *info_v0 = par->matchinfo;
439 struct xt_recent_mtinfo_v1 info_v1;
440
441 /* Copy revision 0 structure to revision 1 */
442 memcpy(&info_v1, info_v0, sizeof(struct xt_recent_mtinfo));
443 /* Set default mask to ensure backward compatible behaviour */
444 memset(info_v1.mask.all, 0xFF, sizeof(info_v1.mask.all));
445
446 return recent_mt_check(par, &info_v1);
447}
448
449static int recent_mt_check_v1(const struct xt_mtchk_param *par)
450{
451 return recent_mt_check(par, par->matchinfo);
452}
453
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200454static void recent_mt_destroy(const struct xt_mtdtor_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100456 struct recent_net *recent_net = recent_pernet(par->net);
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300457 const struct xt_recent_mtinfo_v1 *info = par->matchinfo;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700458 struct recent_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Patrick McHardya0e889b2006-06-09 12:17:41 -0700460 mutex_lock(&recent_mutex);
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100461 t = recent_table_lookup(recent_net, info->name);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700462 if (--t->refcnt == 0) {
Patrick McHardya0e889b2006-06-09 12:17:41 -0700463 spin_lock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700464 list_del(&t->list);
Patrick McHardya0e889b2006-06-09 12:17:41 -0700465 spin_unlock_bh(&recent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466#ifdef CONFIG_PROC_FS
Vitaly E. Lavrov665e2052012-12-24 13:55:20 +0100467 if (recent_net->xt_recent != NULL)
468 remove_proc_entry(t->name, recent_net->xt_recent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469#endif
Pavel Emelyanova8ddc912008-07-31 00:38:31 -0700470 recent_table_flush(t);
Eric Dumazet2727de72013-01-03 22:18:39 +0000471 recent_table_free(t);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700472 }
Patrick McHardya0e889b2006-06-09 12:17:41 -0700473 mutex_unlock(&recent_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474}
475
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700476#ifdef CONFIG_PROC_FS
477struct recent_iter_state {
Jan Engelhardt079aa882008-10-08 11:35:00 +0200478 const struct recent_table *table;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700479 unsigned int bucket;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480};
481
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700482static void *recent_seq_start(struct seq_file *seq, loff_t *pos)
Patrick McHardy855304a2008-01-31 04:09:46 -0800483 __acquires(recent_lock)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700484{
485 struct recent_iter_state *st = seq->private;
Jan Engelhardta47362a2007-07-07 22:16:55 -0700486 const struct recent_table *t = st->table;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700487 struct recent_entry *e;
488 loff_t p = *pos;
489
490 spin_lock_bh(&recent_lock);
491
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700492 for (st->bucket = 0; st->bucket < ip_list_hash_size; st->bucket++)
493 list_for_each_entry(e, &t->iphash[st->bucket], list)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700494 if (p-- == 0)
495 return e;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700496 return NULL;
497}
498
499static void *recent_seq_next(struct seq_file *seq, void *v, loff_t *pos)
500{
501 struct recent_iter_state *st = seq->private;
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200502 const struct recent_table *t = st->table;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200503 const struct recent_entry *e = v;
504 const struct list_head *head = e->list.next;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700505
506 while (head == &t->iphash[st->bucket]) {
507 if (++st->bucket >= ip_list_hash_size)
508 return NULL;
509 head = t->iphash[st->bucket].next;
510 }
511 (*pos)++;
512 return list_entry(head, struct recent_entry, list);
513}
514
515static void recent_seq_stop(struct seq_file *s, void *v)
Patrick McHardy855304a2008-01-31 04:09:46 -0800516 __releases(recent_lock)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700517{
518 spin_unlock_bh(&recent_lock);
519}
520
521static int recent_seq_show(struct seq_file *seq, void *v)
522{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200523 const struct recent_entry *e = v;
Florian Westphalabc86d02014-11-24 14:06:22 +0100524 struct recent_iter_state *st = seq->private;
525 const struct recent_table *t = st->table;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700526 unsigned int i;
527
Florian Westphalabc86d02014-11-24 14:06:22 +0100528 i = (e->index - 1) & t->nstamps_max_mask;
529
Jan Engelhardtee999d82008-10-08 11:35:01 +0200530 if (e->family == NFPROTO_IPV4)
Harvey Harrison14d5e832008-10-31 00:54:29 -0700531 seq_printf(seq, "src=%pI4 ttl: %u last_seen: %lu oldest_pkt: %u",
532 &e->addr.ip, e->ttl, e->stamps[i], e->index);
Jan Engelhardt079aa882008-10-08 11:35:00 +0200533 else
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700534 seq_printf(seq, "src=%pI6 ttl: %u last_seen: %lu oldest_pkt: %u",
Harvey Harrison38ff4fa2008-10-28 16:08:13 -0700535 &e->addr.in6, e->ttl, e->stamps[i], e->index);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700536 for (i = 0; i < e->nstamps; i++)
537 seq_printf(seq, "%s %lu", i ? "," : "", e->stamps[i]);
538 seq_printf(seq, "\n");
539 return 0;
540}
541
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700542static const struct seq_operations recent_seq_ops = {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700543 .start = recent_seq_start,
544 .next = recent_seq_next,
545 .stop = recent_seq_stop,
546 .show = recent_seq_show,
547};
548
549static int recent_seq_open(struct inode *inode, struct file *file)
550{
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700551 struct recent_iter_state *st;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700552
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700553 st = __seq_open_private(file, &recent_seq_ops, sizeof(*st));
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700554 if (st == NULL)
555 return -ENOMEM;
Jesper Juhl3af8e312007-08-07 18:10:54 -0700556
Al Virod9dda782013-03-31 18:16:14 -0400557 st->table = PDE_DATA(inode);
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700558 return 0;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700559}
560
Jan Engelhardt079aa882008-10-08 11:35:00 +0200561static ssize_t
562recent_mt_proc_write(struct file *file, const char __user *input,
563 size_t size, loff_t *loff)
564{
Al Virod9dda782013-03-31 18:16:14 -0400565 struct recent_table *t = PDE_DATA(file_inode(file));
Jan Engelhardt079aa882008-10-08 11:35:00 +0200566 struct recent_entry *e;
567 char buf[sizeof("+b335:1d35:1e55:dead:c0de:1715:5afe:c0de")];
568 const char *c = buf;
Josef Drexler325fb5b2009-02-24 14:53:12 +0100569 union nf_inet_addr addr = {};
Jan Engelhardt079aa882008-10-08 11:35:00 +0200570 u_int16_t family;
571 bool add, succ;
572
573 if (size == 0)
574 return 0;
575 if (size > sizeof(buf))
576 size = sizeof(buf);
577 if (copy_from_user(buf, input, size) != 0)
578 return -EFAULT;
579
580 /* Strict protocol! */
581 if (*loff != 0)
582 return -ESPIPE;
583 switch (*c) {
584 case '/': /* flush table */
585 spin_lock_bh(&recent_lock);
586 recent_table_flush(t);
587 spin_unlock_bh(&recent_lock);
588 return size;
589 case '-': /* remove address */
590 add = false;
591 break;
592 case '+': /* add address */
593 add = true;
594 break;
595 default:
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100596 pr_info("Need \"+ip\", \"-ip\" or \"/\"\n");
Jan Engelhardt079aa882008-10-08 11:35:00 +0200597 return -EINVAL;
598 }
599
600 ++c;
601 --size;
602 if (strnchr(c, size, ':') != NULL) {
Jan Engelhardtee999d82008-10-08 11:35:01 +0200603 family = NFPROTO_IPV6;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200604 succ = in6_pton(c, size, (void *)&addr, '\n', NULL);
605 } else {
Jan Engelhardtee999d82008-10-08 11:35:01 +0200606 family = NFPROTO_IPV4;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200607 succ = in4_pton(c, size, (void *)&addr, '\n', NULL);
608 }
609
610 if (!succ) {
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100611 pr_info("illegal address written to procfs\n");
Jan Engelhardt079aa882008-10-08 11:35:00 +0200612 return -EINVAL;
613 }
614
615 spin_lock_bh(&recent_lock);
616 e = recent_entry_lookup(t, &addr, family, 0);
617 if (e == NULL) {
618 if (add)
619 recent_entry_init(t, &addr, family, 0);
620 } else {
621 if (add)
622 recent_entry_update(t, e);
623 else
624 recent_entry_remove(t, e);
625 }
626 spin_unlock_bh(&recent_lock);
627 /* Note we removed one above */
628 *loff += size + 1;
629 return size + 1;
630}
631
632static const struct file_operations recent_mt_fops = {
633 .open = recent_seq_open,
634 .read = seq_read,
635 .write = recent_mt_proc_write,
636 .release = seq_release_private,
637 .owner = THIS_MODULE,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200638 .llseek = seq_lseek,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200639};
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100640
641static int __net_init recent_proc_net_init(struct net *net)
642{
643 struct recent_net *recent_net = recent_pernet(net);
644
645 recent_net->xt_recent = proc_mkdir("xt_recent", net->proc_net);
646 if (!recent_net->xt_recent)
647 return -ENOMEM;
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100648 return 0;
649}
650
651static void __net_exit recent_proc_net_exit(struct net *net)
652{
Vitaly E. Lavrov665e2052012-12-24 13:55:20 +0100653 struct recent_net *recent_net = recent_pernet(net);
654 struct recent_table *t;
655
656 /* recent_net_exit() is called before recent_mt_destroy(). Make sure
657 * that the parent xt_recent proc entry is is empty before trying to
658 * remove it.
659 */
660 spin_lock_bh(&recent_lock);
661 list_for_each_entry(t, &recent_net->tables, list)
662 remove_proc_entry(t->name, recent_net->xt_recent);
663
664 recent_net->xt_recent = NULL;
665 spin_unlock_bh(&recent_lock);
666
Gao fengece31ff2013-02-18 01:34:56 +0000667 remove_proc_entry("xt_recent", net->proc_net);
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100668}
669#else
670static inline int recent_proc_net_init(struct net *net)
671{
672 return 0;
673}
674
675static inline void recent_proc_net_exit(struct net *net)
676{
677}
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700678#endif /* CONFIG_PROC_FS */
679
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100680static int __net_init recent_net_init(struct net *net)
681{
682 struct recent_net *recent_net = recent_pernet(net);
683
684 INIT_LIST_HEAD(&recent_net->tables);
685 return recent_proc_net_init(net);
686}
687
688static void __net_exit recent_net_exit(struct net *net)
689{
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100690 recent_proc_net_exit(net);
691}
692
693static struct pernet_operations recent_net_ops = {
694 .init = recent_net_init,
695 .exit = recent_net_exit,
696 .id = &recent_net_id,
697 .size = sizeof(struct recent_net),
698};
699
Jan Engelhardt079aa882008-10-08 11:35:00 +0200700static struct xt_match recent_mt_reg[] __read_mostly = {
701 {
702 .name = "recent",
703 .revision = 0,
Jan Engelhardtee999d82008-10-08 11:35:01 +0200704 .family = NFPROTO_IPV4,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200705 .match = recent_mt,
706 .matchsize = sizeof(struct xt_recent_mtinfo),
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300707 .checkentry = recent_mt_check_v0,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200708 .destroy = recent_mt_destroy,
709 .me = THIS_MODULE,
710 },
711 {
712 .name = "recent",
713 .revision = 0,
Jan Engelhardtee999d82008-10-08 11:35:01 +0200714 .family = NFPROTO_IPV6,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200715 .match = recent_mt,
716 .matchsize = sizeof(struct xt_recent_mtinfo),
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300717 .checkentry = recent_mt_check_v0,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200718 .destroy = recent_mt_destroy,
719 .me = THIS_MODULE,
720 },
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300721 {
722 .name = "recent",
723 .revision = 1,
724 .family = NFPROTO_IPV4,
725 .match = recent_mt,
726 .matchsize = sizeof(struct xt_recent_mtinfo_v1),
727 .checkentry = recent_mt_check_v1,
728 .destroy = recent_mt_destroy,
729 .me = THIS_MODULE,
730 },
731 {
732 .name = "recent",
733 .revision = 1,
734 .family = NFPROTO_IPV6,
735 .match = recent_mt,
736 .matchsize = sizeof(struct xt_recent_mtinfo_v1),
737 .checkentry = recent_mt_check_v1,
738 .destroy = recent_mt_destroy,
739 .me = THIS_MODULE,
740 }
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700741};
742
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800743static int __init recent_mt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744{
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700745 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Florian Westphalabc86d02014-11-24 14:06:22 +0100747 BUILD_BUG_ON_NOT_POWER_OF_2(XT_RECENT_MAX_NSTAMPS);
748
749 if (!ip_list_tot || ip_pkt_list_tot >= XT_RECENT_MAX_NSTAMPS)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700750 return -EINVAL;
751 ip_list_hash_size = 1 << fls(ip_list_tot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100753 err = register_pernet_subsys(&recent_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if (err)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700755 return err;
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100756 err = xt_register_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
757 if (err)
758 unregister_pernet_subsys(&recent_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return err;
760}
761
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800762static void __exit recent_mt_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Jan Engelhardt079aa882008-10-08 11:35:00 +0200764 xt_unregister_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100765 unregister_pernet_subsys(&recent_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800768module_init(recent_mt_init);
769module_exit(recent_mt_exit);