blob: 79d7ad621a80fad3c3dc4d74df9c78c264472b18 [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;
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 Dobriyan7d07d562010-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 Dobriyan7d07d562010-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{
Eric W. Biederman686c9b52015-09-18 14:32:59 -0500239 struct net *net = par->net;
Alexey Dobriyan7d07d562010-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
Jan Engelhardtaa5fa312010-03-18 00:44:52 +0100248 if (par->family == 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 */
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200269 if (par->out != 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 Dobriyan7d07d562010-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
277 e = recent_entry_lookup(t, &addr_mask, par->family,
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;
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300282 e = recent_entry_init(t, &addr_mask, par->family, 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 Dobriyan7d07d562010-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 }
Florian Westphalc6ab7c62018-03-10 01:15:45 +0100364 ret = xt_check_proc_name(info->name, sizeof(info->name));
365 if (ret)
366 return ret;
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 Dobriyan7d07d562010-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;
391 if (sz <= PAGE_SIZE)
392 t = kzalloc(sz, GFP_KERNEL);
393 else
394 t = vzalloc(sz);
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100395 if (t == NULL) {
396 ret = -ENOMEM;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700397 goto out;
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100398 }
Patrick McHardy2b2283d2006-06-09 12:18:17 -0700399 t->refcnt = 1;
Florian Westphalabc86d02014-11-24 14:06:22 +0100400 t->nstamps_max_mask = nstamp_mask;
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300401
402 memcpy(&t->mask, &info->mask, sizeof(t->mask));
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700403 strcpy(t->name, info->name);
404 INIT_LIST_HEAD(&t->lru_list);
405 for (i = 0; i < ip_list_hash_size; i++)
406 INIT_LIST_HEAD(&t->iphash[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407#ifdef CONFIG_PROC_FS
Eric W. Biedermanda742802012-05-25 16:26:52 -0600408 uid = make_kuid(&init_user_ns, ip_list_uid);
409 gid = make_kgid(&init_user_ns, ip_list_gid);
410 if (!uid_valid(uid) || !gid_valid(gid)) {
Eric Dumazet2727de72013-01-03 22:18:39 +0000411 recent_table_free(t);
Eric W. Biedermanda742802012-05-25 16:26:52 -0600412 ret = -EINVAL;
413 goto out;
414 }
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100415 pde = proc_create_data(t->name, ip_list_perms, recent_net->xt_recent,
Alexey Dobriyanb09eec12008-10-20 03:33:49 -0700416 &recent_mt_fops, t);
Alexey Dobriyanb0ceb562008-11-20 09:57:01 +0100417 if (pde == NULL) {
Eric Dumazet2727de72013-01-03 22:18:39 +0000418 recent_table_free(t);
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100419 ret = -ENOMEM;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700420 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 }
David Howells271a15e2013-04-12 00:38:51 +0100422 proc_set_user(pde, uid, gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423#endif
Patrick McHardya0e889b2006-06-09 12:17:41 -0700424 spin_lock_bh(&recent_lock);
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100425 list_add_tail(&t->list, &recent_net->tables);
Patrick McHardya0e889b2006-06-09 12:17:41 -0700426 spin_unlock_bh(&recent_lock);
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100427 ret = 0;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700428out:
Patrick McHardya0e889b2006-06-09 12:17:41 -0700429 mutex_unlock(&recent_mutex);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700430 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300433static int recent_mt_check_v0(const struct xt_mtchk_param *par)
434{
435 const struct xt_recent_mtinfo_v0 *info_v0 = par->matchinfo;
436 struct xt_recent_mtinfo_v1 info_v1;
437
438 /* Copy revision 0 structure to revision 1 */
439 memcpy(&info_v1, info_v0, sizeof(struct xt_recent_mtinfo));
440 /* Set default mask to ensure backward compatible behaviour */
441 memset(info_v1.mask.all, 0xFF, sizeof(info_v1.mask.all));
442
443 return recent_mt_check(par, &info_v1);
444}
445
446static int recent_mt_check_v1(const struct xt_mtchk_param *par)
447{
448 return recent_mt_check(par, par->matchinfo);
449}
450
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200451static void recent_mt_destroy(const struct xt_mtdtor_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100453 struct recent_net *recent_net = recent_pernet(par->net);
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300454 const struct xt_recent_mtinfo_v1 *info = par->matchinfo;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700455 struct recent_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Patrick McHardya0e889b2006-06-09 12:17:41 -0700457 mutex_lock(&recent_mutex);
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100458 t = recent_table_lookup(recent_net, info->name);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700459 if (--t->refcnt == 0) {
Patrick McHardya0e889b2006-06-09 12:17:41 -0700460 spin_lock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700461 list_del(&t->list);
Patrick McHardya0e889b2006-06-09 12:17:41 -0700462 spin_unlock_bh(&recent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463#ifdef CONFIG_PROC_FS
Vitaly E. Lavrov665e2052012-12-24 13:55:20 +0100464 if (recent_net->xt_recent != NULL)
465 remove_proc_entry(t->name, recent_net->xt_recent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466#endif
Pavel Emelyanova8ddc912008-07-31 00:38:31 -0700467 recent_table_flush(t);
Eric Dumazet2727de72013-01-03 22:18:39 +0000468 recent_table_free(t);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700469 }
Patrick McHardya0e889b2006-06-09 12:17:41 -0700470 mutex_unlock(&recent_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700473#ifdef CONFIG_PROC_FS
474struct recent_iter_state {
Jan Engelhardt079aa882008-10-08 11:35:00 +0200475 const struct recent_table *table;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700476 unsigned int bucket;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477};
478
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700479static void *recent_seq_start(struct seq_file *seq, loff_t *pos)
Patrick McHardy855304a2008-01-31 04:09:46 -0800480 __acquires(recent_lock)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700481{
482 struct recent_iter_state *st = seq->private;
Jan Engelhardta47362a2007-07-07 22:16:55 -0700483 const struct recent_table *t = st->table;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700484 struct recent_entry *e;
485 loff_t p = *pos;
486
487 spin_lock_bh(&recent_lock);
488
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700489 for (st->bucket = 0; st->bucket < ip_list_hash_size; st->bucket++)
490 list_for_each_entry(e, &t->iphash[st->bucket], list)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700491 if (p-- == 0)
492 return e;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700493 return NULL;
494}
495
496static void *recent_seq_next(struct seq_file *seq, void *v, loff_t *pos)
497{
498 struct recent_iter_state *st = seq->private;
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200499 const struct recent_table *t = st->table;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200500 const struct recent_entry *e = v;
501 const struct list_head *head = e->list.next;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700502
503 while (head == &t->iphash[st->bucket]) {
504 if (++st->bucket >= ip_list_hash_size)
505 return NULL;
506 head = t->iphash[st->bucket].next;
507 }
508 (*pos)++;
509 return list_entry(head, struct recent_entry, list);
510}
511
512static void recent_seq_stop(struct seq_file *s, void *v)
Patrick McHardy855304a2008-01-31 04:09:46 -0800513 __releases(recent_lock)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700514{
515 spin_unlock_bh(&recent_lock);
516}
517
518static int recent_seq_show(struct seq_file *seq, void *v)
519{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200520 const struct recent_entry *e = v;
Florian Westphalabc86d02014-11-24 14:06:22 +0100521 struct recent_iter_state *st = seq->private;
522 const struct recent_table *t = st->table;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700523 unsigned int i;
524
Florian Westphalabc86d02014-11-24 14:06:22 +0100525 i = (e->index - 1) & t->nstamps_max_mask;
526
Jan Engelhardtee999d82008-10-08 11:35:01 +0200527 if (e->family == NFPROTO_IPV4)
Harvey Harrison14d5e832008-10-31 00:54:29 -0700528 seq_printf(seq, "src=%pI4 ttl: %u last_seen: %lu oldest_pkt: %u",
529 &e->addr.ip, e->ttl, e->stamps[i], e->index);
Jan Engelhardt079aa882008-10-08 11:35:00 +0200530 else
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700531 seq_printf(seq, "src=%pI6 ttl: %u last_seen: %lu oldest_pkt: %u",
Harvey Harrison38ff4fa2008-10-28 16:08:13 -0700532 &e->addr.in6, e->ttl, e->stamps[i], e->index);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700533 for (i = 0; i < e->nstamps; i++)
534 seq_printf(seq, "%s %lu", i ? "," : "", e->stamps[i]);
535 seq_printf(seq, "\n");
536 return 0;
537}
538
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700539static const struct seq_operations recent_seq_ops = {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700540 .start = recent_seq_start,
541 .next = recent_seq_next,
542 .stop = recent_seq_stop,
543 .show = recent_seq_show,
544};
545
546static int recent_seq_open(struct inode *inode, struct file *file)
547{
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700548 struct recent_iter_state *st;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700549
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700550 st = __seq_open_private(file, &recent_seq_ops, sizeof(*st));
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700551 if (st == NULL)
552 return -ENOMEM;
Jesper Juhl3af8e312007-08-07 18:10:54 -0700553
Al Virod9dda782013-03-31 18:16:14 -0400554 st->table = PDE_DATA(inode);
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700555 return 0;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700556}
557
Jan Engelhardt079aa882008-10-08 11:35:00 +0200558static ssize_t
559recent_mt_proc_write(struct file *file, const char __user *input,
560 size_t size, loff_t *loff)
561{
Al Virod9dda782013-03-31 18:16:14 -0400562 struct recent_table *t = PDE_DATA(file_inode(file));
Jan Engelhardt079aa882008-10-08 11:35:00 +0200563 struct recent_entry *e;
564 char buf[sizeof("+b335:1d35:1e55:dead:c0de:1715:5afe:c0de")];
565 const char *c = buf;
Josef Drexler325fb5b2009-02-24 14:53:12 +0100566 union nf_inet_addr addr = {};
Jan Engelhardt079aa882008-10-08 11:35:00 +0200567 u_int16_t family;
568 bool add, succ;
569
570 if (size == 0)
571 return 0;
572 if (size > sizeof(buf))
573 size = sizeof(buf);
574 if (copy_from_user(buf, input, size) != 0)
575 return -EFAULT;
576
577 /* Strict protocol! */
578 if (*loff != 0)
579 return -ESPIPE;
580 switch (*c) {
581 case '/': /* flush table */
582 spin_lock_bh(&recent_lock);
583 recent_table_flush(t);
584 spin_unlock_bh(&recent_lock);
585 return size;
586 case '-': /* remove address */
587 add = false;
588 break;
589 case '+': /* add address */
590 add = true;
591 break;
592 default:
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100593 pr_info("Need \"+ip\", \"-ip\" or \"/\"\n");
Jan Engelhardt079aa882008-10-08 11:35:00 +0200594 return -EINVAL;
595 }
596
597 ++c;
598 --size;
599 if (strnchr(c, size, ':') != NULL) {
Jan Engelhardtee999d82008-10-08 11:35:01 +0200600 family = NFPROTO_IPV6;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200601 succ = in6_pton(c, size, (void *)&addr, '\n', NULL);
602 } else {
Jan Engelhardtee999d82008-10-08 11:35:01 +0200603 family = NFPROTO_IPV4;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200604 succ = in4_pton(c, size, (void *)&addr, '\n', NULL);
605 }
606
607 if (!succ) {
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100608 pr_info("illegal address written to procfs\n");
Jan Engelhardt079aa882008-10-08 11:35:00 +0200609 return -EINVAL;
610 }
611
612 spin_lock_bh(&recent_lock);
613 e = recent_entry_lookup(t, &addr, family, 0);
614 if (e == NULL) {
615 if (add)
616 recent_entry_init(t, &addr, family, 0);
617 } else {
618 if (add)
619 recent_entry_update(t, e);
620 else
621 recent_entry_remove(t, e);
622 }
623 spin_unlock_bh(&recent_lock);
624 /* Note we removed one above */
625 *loff += size + 1;
626 return size + 1;
627}
628
629static const struct file_operations recent_mt_fops = {
630 .open = recent_seq_open,
631 .read = seq_read,
632 .write = recent_mt_proc_write,
633 .release = seq_release_private,
634 .owner = THIS_MODULE,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200635 .llseek = seq_lseek,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200636};
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100637
638static int __net_init recent_proc_net_init(struct net *net)
639{
640 struct recent_net *recent_net = recent_pernet(net);
641
642 recent_net->xt_recent = proc_mkdir("xt_recent", net->proc_net);
643 if (!recent_net->xt_recent)
644 return -ENOMEM;
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100645 return 0;
646}
647
648static void __net_exit recent_proc_net_exit(struct net *net)
649{
Vitaly E. Lavrov665e2052012-12-24 13:55:20 +0100650 struct recent_net *recent_net = recent_pernet(net);
651 struct recent_table *t;
652
653 /* recent_net_exit() is called before recent_mt_destroy(). Make sure
654 * that the parent xt_recent proc entry is is empty before trying to
655 * remove it.
656 */
657 spin_lock_bh(&recent_lock);
658 list_for_each_entry(t, &recent_net->tables, list)
659 remove_proc_entry(t->name, recent_net->xt_recent);
660
661 recent_net->xt_recent = NULL;
662 spin_unlock_bh(&recent_lock);
663
Gao fengece31ff2013-02-18 01:34:56 +0000664 remove_proc_entry("xt_recent", net->proc_net);
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100665}
666#else
667static inline int recent_proc_net_init(struct net *net)
668{
669 return 0;
670}
671
672static inline void recent_proc_net_exit(struct net *net)
673{
674}
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700675#endif /* CONFIG_PROC_FS */
676
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100677static int __net_init recent_net_init(struct net *net)
678{
679 struct recent_net *recent_net = recent_pernet(net);
680
681 INIT_LIST_HEAD(&recent_net->tables);
682 return recent_proc_net_init(net);
683}
684
685static void __net_exit recent_net_exit(struct net *net)
686{
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100687 recent_proc_net_exit(net);
688}
689
690static struct pernet_operations recent_net_ops = {
691 .init = recent_net_init,
692 .exit = recent_net_exit,
693 .id = &recent_net_id,
694 .size = sizeof(struct recent_net),
695};
696
Jan Engelhardt079aa882008-10-08 11:35:00 +0200697static struct xt_match recent_mt_reg[] __read_mostly = {
698 {
699 .name = "recent",
700 .revision = 0,
Jan Engelhardtee999d82008-10-08 11:35:01 +0200701 .family = NFPROTO_IPV4,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200702 .match = recent_mt,
703 .matchsize = sizeof(struct xt_recent_mtinfo),
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300704 .checkentry = recent_mt_check_v0,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200705 .destroy = recent_mt_destroy,
706 .me = THIS_MODULE,
707 },
708 {
709 .name = "recent",
710 .revision = 0,
Jan Engelhardtee999d82008-10-08 11:35:01 +0200711 .family = NFPROTO_IPV6,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200712 .match = recent_mt,
713 .matchsize = sizeof(struct xt_recent_mtinfo),
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300714 .checkentry = recent_mt_check_v0,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200715 .destroy = recent_mt_destroy,
716 .me = THIS_MODULE,
717 },
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300718 {
719 .name = "recent",
720 .revision = 1,
721 .family = NFPROTO_IPV4,
722 .match = recent_mt,
723 .matchsize = sizeof(struct xt_recent_mtinfo_v1),
724 .checkentry = recent_mt_check_v1,
725 .destroy = recent_mt_destroy,
726 .me = THIS_MODULE,
727 },
728 {
729 .name = "recent",
730 .revision = 1,
731 .family = NFPROTO_IPV6,
732 .match = recent_mt,
733 .matchsize = sizeof(struct xt_recent_mtinfo_v1),
734 .checkentry = recent_mt_check_v1,
735 .destroy = recent_mt_destroy,
736 .me = THIS_MODULE,
737 }
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700738};
739
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800740static int __init recent_mt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700742 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Florian Westphalabc86d02014-11-24 14:06:22 +0100744 BUILD_BUG_ON_NOT_POWER_OF_2(XT_RECENT_MAX_NSTAMPS);
745
746 if (!ip_list_tot || ip_pkt_list_tot >= XT_RECENT_MAX_NSTAMPS)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700747 return -EINVAL;
748 ip_list_hash_size = 1 << fls(ip_list_tot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100750 err = register_pernet_subsys(&recent_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if (err)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700752 return err;
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100753 err = xt_register_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
754 if (err)
755 unregister_pernet_subsys(&recent_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return err;
757}
758
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800759static void __exit recent_mt_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760{
Jan Engelhardt079aa882008-10-08 11:35:00 +0200761 xt_unregister_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100762 unregister_pernet_subsys(&recent_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800765module_init(recent_mt_init);
766module_exit(recent_mt_exit);