blob: d9cad315229d807174dd085f6ed4e7e2569bf48f [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
Patrick McHardye7be6992006-01-05 12:19:46 -080046static unsigned int ip_list_tot = 100;
47static unsigned int ip_pkt_list_tot = 20;
48static unsigned int ip_list_hash_size = 0;
49static unsigned int ip_list_perms = 0644;
Daniel De Graafb93ff782006-08-22 00:30:55 -070050static unsigned int ip_list_uid = 0;
51static unsigned int ip_list_gid = 0;
Patrick McHardye7be6992006-01-05 12:19:46 -080052module_param(ip_list_tot, uint, 0400);
53module_param(ip_pkt_list_tot, uint, 0400);
54module_param(ip_list_hash_size, uint, 0400);
55module_param(ip_list_perms, uint, 0400);
Jan Engelhardt5dc7a6d2010-03-19 21:29:08 +010056module_param(ip_list_uid, uint, S_IRUGO | S_IWUSR);
57module_param(ip_list_gid, uint, S_IRUGO | S_IWUSR);
Patrick McHardy404bdbf2006-05-29 18:21:34 -070058MODULE_PARM_DESC(ip_list_tot, "number of IPs to remember per list");
Jan Engelhardt98e6d2d2010-02-15 16:31:35 +010059MODULE_PARM_DESC(ip_pkt_list_tot, "number of packets per IP address to remember (max. 255)");
Patrick McHardy404bdbf2006-05-29 18:21:34 -070060MODULE_PARM_DESC(ip_list_hash_size, "size of hash table used to look up IPs");
Jan Engelhardt079aa882008-10-08 11:35:00 +020061MODULE_PARM_DESC(ip_list_perms, "permissions on /proc/net/xt_recent/* files");
Jan Engelhardt5dc7a6d2010-03-19 21:29:08 +010062MODULE_PARM_DESC(ip_list_uid, "default owner of /proc/net/xt_recent/* files");
63MODULE_PARM_DESC(ip_list_gid, "default owning group of /proc/net/xt_recent/* files");
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Patrick McHardy404bdbf2006-05-29 18:21:34 -070065struct recent_entry {
66 struct list_head list;
67 struct list_head lru_list;
Jan Engelhardt079aa882008-10-08 11:35:00 +020068 union nf_inet_addr addr;
69 u_int16_t family;
Patrick McHardy404bdbf2006-05-29 18:21:34 -070070 u_int8_t ttl;
71 u_int8_t index;
72 u_int16_t nstamps;
73 unsigned long stamps[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -070074};
75
Patrick McHardy404bdbf2006-05-29 18:21:34 -070076struct recent_table {
77 struct list_head list;
Jan Engelhardte948b202008-10-08 11:35:00 +020078 char name[XT_RECENT_NAME_LEN];
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +030079 union nf_inet_addr mask;
Patrick McHardy404bdbf2006-05-29 18:21:34 -070080 unsigned int refcnt;
81 unsigned int entries;
82 struct list_head lru_list;
83 struct list_head iphash[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -070084};
85
Alexey Dobriyan7d07d562010-01-18 08:31:00 +010086struct recent_net {
87 struct list_head tables;
88#ifdef CONFIG_PROC_FS
89 struct proc_dir_entry *xt_recent;
Alexey Dobriyan7d07d562010-01-18 08:31:00 +010090#endif
91};
92
93static int recent_net_id;
94static inline struct recent_net *recent_pernet(struct net *net)
95{
96 return net_generic(net, recent_net_id);
97}
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static DEFINE_SPINLOCK(recent_lock);
Patrick McHardya0e889b2006-06-09 12:17:41 -0700100static DEFINE_MUTEX(recent_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102#ifdef CONFIG_PROC_FS
Jan Engelhardt079aa882008-10-08 11:35:00 +0200103static const struct file_operations recent_old_fops, recent_mt_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#endif
105
Jan Engelhardt294188a2010-01-04 16:28:38 +0100106static u_int32_t hash_rnd __read_mostly;
107static bool hash_rnd_inited __read_mostly;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700108
Jan Engelhardt294188a2010-01-04 16:28:38 +0100109static inline unsigned int recent_entry_hash4(const union nf_inet_addr *addr)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700110{
Jan Engelhardt079aa882008-10-08 11:35:00 +0200111 return jhash_1word((__force u32)addr->ip, hash_rnd) &
112 (ip_list_hash_size - 1);
113}
114
Jan Engelhardt294188a2010-01-04 16:28:38 +0100115static inline unsigned int recent_entry_hash6(const union nf_inet_addr *addr)
Jan Engelhardt079aa882008-10-08 11:35:00 +0200116{
Jan Engelhardt079aa882008-10-08 11:35:00 +0200117 return jhash2((u32 *)addr->ip6, ARRAY_SIZE(addr->ip6), hash_rnd) &
118 (ip_list_hash_size - 1);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700119}
120
121static struct recent_entry *
Jan Engelhardt079aa882008-10-08 11:35:00 +0200122recent_entry_lookup(const struct recent_table *table,
123 const union nf_inet_addr *addrp, u_int16_t family,
124 u_int8_t ttl)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700125{
126 struct recent_entry *e;
127 unsigned int h;
128
Jan Engelhardtee999d82008-10-08 11:35:01 +0200129 if (family == NFPROTO_IPV4)
Jan Engelhardt079aa882008-10-08 11:35:00 +0200130 h = recent_entry_hash4(addrp);
131 else
132 h = recent_entry_hash6(addrp);
133
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700134 list_for_each_entry(e, &table->iphash[h], list)
Jan Engelhardt079aa882008-10-08 11:35:00 +0200135 if (e->family == family &&
136 memcmp(&e->addr, addrp, sizeof(e->addr)) == 0 &&
137 (ttl == e->ttl || ttl == 0 || e->ttl == 0))
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700138 return e;
139 return NULL;
140}
141
142static void recent_entry_remove(struct recent_table *t, struct recent_entry *e)
143{
144 list_del(&e->list);
145 list_del(&e->lru_list);
146 kfree(e);
147 t->entries--;
148}
149
Tim Gardner0079c5a2010-03-16 19:53:13 +0100150/*
151 * Drop entries with timestamps older then 'time'.
152 */
153static void recent_entry_reap(struct recent_table *t, unsigned long time)
154{
155 struct recent_entry *e;
156
157 /*
158 * The head of the LRU list is always the oldest entry.
159 */
160 e = list_entry(t->lru_list.next, struct recent_entry, lru_list);
161
162 /*
163 * The last time stamp is the most recent.
164 */
165 if (time_after(time, e->stamps[e->index-1]))
166 recent_entry_remove(t, e);
167}
168
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700169static struct recent_entry *
Jan Engelhardt079aa882008-10-08 11:35:00 +0200170recent_entry_init(struct recent_table *t, const union nf_inet_addr *addr,
171 u_int16_t family, u_int8_t ttl)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700172{
173 struct recent_entry *e;
174
175 if (t->entries >= ip_list_tot) {
176 e = list_entry(t->lru_list.next, struct recent_entry, lru_list);
177 recent_entry_remove(t, e);
178 }
179 e = kmalloc(sizeof(*e) + sizeof(e->stamps[0]) * ip_pkt_list_tot,
180 GFP_ATOMIC);
181 if (e == NULL)
182 return NULL;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200183 memcpy(&e->addr, addr, sizeof(e->addr));
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700184 e->ttl = ttl;
185 e->stamps[0] = jiffies;
186 e->nstamps = 1;
187 e->index = 1;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200188 e->family = family;
Jan Engelhardtee999d82008-10-08 11:35:01 +0200189 if (family == NFPROTO_IPV4)
Jan Engelhardt079aa882008-10-08 11:35:00 +0200190 list_add_tail(&e->list, &t->iphash[recent_entry_hash4(addr)]);
191 else
192 list_add_tail(&e->list, &t->iphash[recent_entry_hash6(addr)]);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700193 list_add_tail(&e->lru_list, &t->lru_list);
194 t->entries++;
195 return e;
196}
197
198static void recent_entry_update(struct recent_table *t, struct recent_entry *e)
199{
Tim Gardner2c085222010-02-23 14:55:21 +0100200 e->index %= ip_pkt_list_tot;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700201 e->stamps[e->index++] = jiffies;
202 if (e->index > e->nstamps)
203 e->nstamps = e->index;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700204 list_move_tail(&e->lru_list, &t->lru_list);
205}
206
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100207static struct recent_table *recent_table_lookup(struct recent_net *recent_net,
208 const char *name)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700209{
210 struct recent_table *t;
211
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100212 list_for_each_entry(t, &recent_net->tables, list)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700213 if (!strcmp(t->name, name))
214 return t;
215 return NULL;
216}
217
218static void recent_table_flush(struct recent_table *t)
219{
220 struct recent_entry *e, *next;
221 unsigned int i;
222
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700223 for (i = 0; i < ip_list_hash_size; i++)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700224 list_for_each_entry_safe(e, next, &t->iphash[i], list)
225 recent_entry_remove(t, e);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700226}
227
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700228static bool
Jan Engelhardt62fc8052009-07-07 20:42:08 +0200229recent_mt(const struct sk_buff *skb, struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100231 struct net *net = dev_net(par->in ? par->in : par->out);
232 struct recent_net *recent_net = recent_pernet(net);
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300233 const struct xt_recent_mtinfo_v1 *info = par->matchinfo;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700234 struct recent_table *t;
235 struct recent_entry *e;
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300236 union nf_inet_addr addr = {}, addr_mask;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700237 u_int8_t ttl;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700238 bool ret = info->invert;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Jan Engelhardtaa5fa312010-03-18 00:44:52 +0100240 if (par->family == NFPROTO_IPV4) {
Jan Engelhardt079aa882008-10-08 11:35:00 +0200241 const struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Jan Engelhardt079aa882008-10-08 11:35:00 +0200243 if (info->side == XT_RECENT_DEST)
244 addr.ip = iph->daddr;
245 else
246 addr.ip = iph->saddr;
247
248 ttl = iph->ttl;
249 } else {
250 const struct ipv6hdr *iph = ipv6_hdr(skb);
251
252 if (info->side == XT_RECENT_DEST)
253 memcpy(&addr.in6, &iph->daddr, sizeof(addr.in6));
254 else
255 memcpy(&addr.in6, &iph->saddr, sizeof(addr.in6));
256
257 ttl = iph->hop_limit;
258 }
259
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700260 /* use TTL as seen before forwarding */
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200261 if (par->out != NULL && skb->sk == NULL)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700262 ttl++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 spin_lock_bh(&recent_lock);
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100265 t = recent_table_lookup(recent_net, info->name);
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300266
267 nf_inet_addr_mask(&addr, &addr_mask, &t->mask);
268
269 e = recent_entry_lookup(t, &addr_mask, par->family,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200270 (info->check_set & XT_RECENT_TTL) ? ttl : 0);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700271 if (e == NULL) {
Jan Engelhardte948b202008-10-08 11:35:00 +0200272 if (!(info->check_set & XT_RECENT_SET))
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700273 goto out;
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300274 e = recent_entry_init(t, &addr_mask, par->family, ttl);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700275 if (e == NULL)
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200276 par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700277 ret = !ret;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700278 goto out;
279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Jan Engelhardte948b202008-10-08 11:35:00 +0200281 if (info->check_set & XT_RECENT_SET)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700282 ret = !ret;
Jan Engelhardte948b202008-10-08 11:35:00 +0200283 else if (info->check_set & XT_RECENT_REMOVE) {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700284 recent_entry_remove(t, e);
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700285 ret = !ret;
Jan Engelhardte948b202008-10-08 11:35:00 +0200286 } else if (info->check_set & (XT_RECENT_CHECK | XT_RECENT_UPDATE)) {
Patrick McHardy855304a2008-01-31 04:09:46 -0800287 unsigned long time = jiffies - info->seconds * HZ;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700288 unsigned int i, hits = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700290 for (i = 0; i < e->nstamps; i++) {
Patrick McHardy855304a2008-01-31 04:09:46 -0800291 if (info->seconds && time_after(time, e->stamps[i]))
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700292 continue;
Patrick McHardyef169152010-03-22 18:25:20 +0100293 if (!info->hit_count || ++hits >= info->hit_count) {
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700294 ret = !ret;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700295 break;
296 }
297 }
Tim Gardner0079c5a2010-03-16 19:53:13 +0100298
299 /* info->seconds must be non-zero */
300 if (info->check_set & XT_RECENT_REAP)
301 recent_entry_reap(t, time);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700302 }
303
Jan Engelhardte948b202008-10-08 11:35:00 +0200304 if (info->check_set & XT_RECENT_SET ||
305 (info->check_set & XT_RECENT_UPDATE && ret)) {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700306 recent_entry_update(t, e);
307 e->ttl = ttl;
308 }
309out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 spin_unlock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700311 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Eric Dumazet2727de72013-01-03 22:18:39 +0000314static void recent_table_free(void *addr)
315{
316 if (is_vmalloc_addr(addr))
317 vfree(addr);
318 else
319 kfree(addr);
320}
321
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300322static int recent_mt_check(const struct xt_mtchk_param *par,
323 const struct xt_recent_mtinfo_v1 *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100325 struct recent_net *recent_net = recent_pernet(par->net);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700326 struct recent_table *t;
Alexey Dobriyanb0ceb562008-11-20 09:57:01 +0100327#ifdef CONFIG_PROC_FS
328 struct proc_dir_entry *pde;
Eric W. Biedermanda742802012-05-25 16:26:52 -0600329 kuid_t uid;
330 kgid_t gid;
Alexey Dobriyanb0ceb562008-11-20 09:57:01 +0100331#endif
Eric Dumazet95c96172012-04-15 05:58:06 +0000332 unsigned int i;
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100333 int ret = -EINVAL;
Eric Dumazet2727de72013-01-03 22:18:39 +0000334 size_t sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Jan Engelhardt294188a2010-01-04 16:28:38 +0100336 if (unlikely(!hash_rnd_inited)) {
337 get_random_bytes(&hash_rnd, sizeof(hash_rnd));
338 hash_rnd_inited = true;
339 }
Tim Gardner606a9a02010-03-17 16:18:56 +0100340 if (info->check_set & ~XT_RECENT_VALID_FLAGS) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100341 pr_info("Unsupported user space flags (%08x)\n",
342 info->check_set);
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100343 return -EINVAL;
Tim Gardner606a9a02010-03-17 16:18:56 +0100344 }
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700345 if (hweight8(info->check_set &
Jan Engelhardte948b202008-10-08 11:35:00 +0200346 (XT_RECENT_SET | XT_RECENT_REMOVE |
347 XT_RECENT_CHECK | XT_RECENT_UPDATE)) != 1)
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100348 return -EINVAL;
Jan Engelhardte948b202008-10-08 11:35:00 +0200349 if ((info->check_set & (XT_RECENT_SET | XT_RECENT_REMOVE)) &&
Tim Gardner0079c5a2010-03-16 19:53:13 +0100350 (info->seconds || info->hit_count ||
351 (info->check_set & XT_RECENT_MODIFIERS)))
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100352 return -EINVAL;
Tim Gardner0079c5a2010-03-16 19:53:13 +0100353 if ((info->check_set & XT_RECENT_REAP) && !info->seconds)
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100354 return -EINVAL;
Jan Engelhardt98e6d2d2010-02-15 16:31:35 +0100355 if (info->hit_count > ip_pkt_list_tot) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100356 pr_info("hitcount (%u) is larger than "
Jan Engelhardt98e6d2d2010-02-15 16:31:35 +0100357 "packets to be remembered (%u)\n",
358 info->hit_count, ip_pkt_list_tot);
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100359 return -EINVAL;
Jan Engelhardt98e6d2d2010-02-15 16:31:35 +0100360 }
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700361 if (info->name[0] == '\0' ||
Jan Engelhardte948b202008-10-08 11:35:00 +0200362 strnlen(info->name, XT_RECENT_NAME_LEN) == XT_RECENT_NAME_LEN)
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100363 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Patrick McHardya0e889b2006-06-09 12:17:41 -0700365 mutex_lock(&recent_mutex);
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100366 t = recent_table_lookup(recent_net, info->name);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700367 if (t != NULL) {
368 t->refcnt++;
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100369 ret = 0;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700370 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372
Eric Dumazet2727de72013-01-03 22:18:39 +0000373 sz = sizeof(*t) + sizeof(t->iphash[0]) * ip_list_hash_size;
374 if (sz <= PAGE_SIZE)
375 t = kzalloc(sz, GFP_KERNEL);
376 else
377 t = vzalloc(sz);
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100378 if (t == NULL) {
379 ret = -ENOMEM;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700380 goto out;
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100381 }
Patrick McHardy2b2283d2006-06-09 12:18:17 -0700382 t->refcnt = 1;
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300383
384 memcpy(&t->mask, &info->mask, sizeof(t->mask));
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700385 strcpy(t->name, info->name);
386 INIT_LIST_HEAD(&t->lru_list);
387 for (i = 0; i < ip_list_hash_size; i++)
388 INIT_LIST_HEAD(&t->iphash[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389#ifdef CONFIG_PROC_FS
Eric W. Biedermanda742802012-05-25 16:26:52 -0600390 uid = make_kuid(&init_user_ns, ip_list_uid);
391 gid = make_kgid(&init_user_ns, ip_list_gid);
392 if (!uid_valid(uid) || !gid_valid(gid)) {
Eric Dumazet2727de72013-01-03 22:18:39 +0000393 recent_table_free(t);
Eric W. Biedermanda742802012-05-25 16:26:52 -0600394 ret = -EINVAL;
395 goto out;
396 }
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100397 pde = proc_create_data(t->name, ip_list_perms, recent_net->xt_recent,
Alexey Dobriyanb09eec12008-10-20 03:33:49 -0700398 &recent_mt_fops, t);
Alexey Dobriyanb0ceb562008-11-20 09:57:01 +0100399 if (pde == NULL) {
Eric Dumazet2727de72013-01-03 22:18:39 +0000400 recent_table_free(t);
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100401 ret = -ENOMEM;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700402 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
Eric W. Biedermanda742802012-05-25 16:26:52 -0600404 pde->uid = uid;
405 pde->gid = gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406#endif
Patrick McHardya0e889b2006-06-09 12:17:41 -0700407 spin_lock_bh(&recent_lock);
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100408 list_add_tail(&t->list, &recent_net->tables);
Patrick McHardya0e889b2006-06-09 12:17:41 -0700409 spin_unlock_bh(&recent_lock);
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100410 ret = 0;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700411out:
Patrick McHardya0e889b2006-06-09 12:17:41 -0700412 mutex_unlock(&recent_mutex);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700413 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300416static int recent_mt_check_v0(const struct xt_mtchk_param *par)
417{
418 const struct xt_recent_mtinfo_v0 *info_v0 = par->matchinfo;
419 struct xt_recent_mtinfo_v1 info_v1;
420
421 /* Copy revision 0 structure to revision 1 */
422 memcpy(&info_v1, info_v0, sizeof(struct xt_recent_mtinfo));
423 /* Set default mask to ensure backward compatible behaviour */
424 memset(info_v1.mask.all, 0xFF, sizeof(info_v1.mask.all));
425
426 return recent_mt_check(par, &info_v1);
427}
428
429static int recent_mt_check_v1(const struct xt_mtchk_param *par)
430{
431 return recent_mt_check(par, par->matchinfo);
432}
433
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200434static void recent_mt_destroy(const struct xt_mtdtor_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100436 struct recent_net *recent_net = recent_pernet(par->net);
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300437 const struct xt_recent_mtinfo_v1 *info = par->matchinfo;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700438 struct recent_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Patrick McHardya0e889b2006-06-09 12:17:41 -0700440 mutex_lock(&recent_mutex);
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100441 t = recent_table_lookup(recent_net, info->name);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700442 if (--t->refcnt == 0) {
Patrick McHardya0e889b2006-06-09 12:17:41 -0700443 spin_lock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700444 list_del(&t->list);
Patrick McHardya0e889b2006-06-09 12:17:41 -0700445 spin_unlock_bh(&recent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446#ifdef CONFIG_PROC_FS
Vitaly E. Lavrov665e2052012-12-24 13:55:20 +0100447 if (recent_net->xt_recent != NULL)
448 remove_proc_entry(t->name, recent_net->xt_recent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449#endif
Pavel Emelyanova8ddc912008-07-31 00:38:31 -0700450 recent_table_flush(t);
Eric Dumazet2727de72013-01-03 22:18:39 +0000451 recent_table_free(t);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700452 }
Patrick McHardya0e889b2006-06-09 12:17:41 -0700453 mutex_unlock(&recent_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}
455
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700456#ifdef CONFIG_PROC_FS
457struct recent_iter_state {
Jan Engelhardt079aa882008-10-08 11:35:00 +0200458 const struct recent_table *table;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700459 unsigned int bucket;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460};
461
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700462static void *recent_seq_start(struct seq_file *seq, loff_t *pos)
Patrick McHardy855304a2008-01-31 04:09:46 -0800463 __acquires(recent_lock)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700464{
465 struct recent_iter_state *st = seq->private;
Jan Engelhardta47362a2007-07-07 22:16:55 -0700466 const struct recent_table *t = st->table;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700467 struct recent_entry *e;
468 loff_t p = *pos;
469
470 spin_lock_bh(&recent_lock);
471
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700472 for (st->bucket = 0; st->bucket < ip_list_hash_size; st->bucket++)
473 list_for_each_entry(e, &t->iphash[st->bucket], list)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700474 if (p-- == 0)
475 return e;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700476 return NULL;
477}
478
479static void *recent_seq_next(struct seq_file *seq, void *v, loff_t *pos)
480{
481 struct recent_iter_state *st = seq->private;
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200482 const struct recent_table *t = st->table;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200483 const struct recent_entry *e = v;
484 const struct list_head *head = e->list.next;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700485
486 while (head == &t->iphash[st->bucket]) {
487 if (++st->bucket >= ip_list_hash_size)
488 return NULL;
489 head = t->iphash[st->bucket].next;
490 }
491 (*pos)++;
492 return list_entry(head, struct recent_entry, list);
493}
494
495static void recent_seq_stop(struct seq_file *s, void *v)
Patrick McHardy855304a2008-01-31 04:09:46 -0800496 __releases(recent_lock)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700497{
498 spin_unlock_bh(&recent_lock);
499}
500
501static int recent_seq_show(struct seq_file *seq, void *v)
502{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200503 const struct recent_entry *e = v;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700504 unsigned int i;
505
506 i = (e->index - 1) % ip_pkt_list_tot;
Jan Engelhardtee999d82008-10-08 11:35:01 +0200507 if (e->family == NFPROTO_IPV4)
Harvey Harrison14d5e832008-10-31 00:54:29 -0700508 seq_printf(seq, "src=%pI4 ttl: %u last_seen: %lu oldest_pkt: %u",
509 &e->addr.ip, e->ttl, e->stamps[i], e->index);
Jan Engelhardt079aa882008-10-08 11:35:00 +0200510 else
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700511 seq_printf(seq, "src=%pI6 ttl: %u last_seen: %lu oldest_pkt: %u",
Harvey Harrison38ff4fa2008-10-28 16:08:13 -0700512 &e->addr.in6, e->ttl, e->stamps[i], e->index);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700513 for (i = 0; i < e->nstamps; i++)
514 seq_printf(seq, "%s %lu", i ? "," : "", e->stamps[i]);
515 seq_printf(seq, "\n");
516 return 0;
517}
518
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700519static const struct seq_operations recent_seq_ops = {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700520 .start = recent_seq_start,
521 .next = recent_seq_next,
522 .stop = recent_seq_stop,
523 .show = recent_seq_show,
524};
525
526static int recent_seq_open(struct inode *inode, struct file *file)
527{
528 struct proc_dir_entry *pde = PDE(inode);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700529 struct recent_iter_state *st;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700530
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700531 st = __seq_open_private(file, &recent_seq_ops, sizeof(*st));
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700532 if (st == NULL)
533 return -ENOMEM;
Jesper Juhl3af8e312007-08-07 18:10:54 -0700534
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700535 st->table = pde->data;
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700536 return 0;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700537}
538
Jan Engelhardt079aa882008-10-08 11:35:00 +0200539static ssize_t
540recent_mt_proc_write(struct file *file, const char __user *input,
541 size_t size, loff_t *loff)
542{
Al Viro496ad9a2013-01-23 17:07:38 -0500543 const struct proc_dir_entry *pde = PDE(file_inode(file));
Jan Engelhardt079aa882008-10-08 11:35:00 +0200544 struct recent_table *t = pde->data;
545 struct recent_entry *e;
546 char buf[sizeof("+b335:1d35:1e55:dead:c0de:1715:5afe:c0de")];
547 const char *c = buf;
Josef Drexler325fb5b2009-02-24 14:53:12 +0100548 union nf_inet_addr addr = {};
Jan Engelhardt079aa882008-10-08 11:35:00 +0200549 u_int16_t family;
550 bool add, succ;
551
552 if (size == 0)
553 return 0;
554 if (size > sizeof(buf))
555 size = sizeof(buf);
556 if (copy_from_user(buf, input, size) != 0)
557 return -EFAULT;
558
559 /* Strict protocol! */
560 if (*loff != 0)
561 return -ESPIPE;
562 switch (*c) {
563 case '/': /* flush table */
564 spin_lock_bh(&recent_lock);
565 recent_table_flush(t);
566 spin_unlock_bh(&recent_lock);
567 return size;
568 case '-': /* remove address */
569 add = false;
570 break;
571 case '+': /* add address */
572 add = true;
573 break;
574 default:
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100575 pr_info("Need \"+ip\", \"-ip\" or \"/\"\n");
Jan Engelhardt079aa882008-10-08 11:35:00 +0200576 return -EINVAL;
577 }
578
579 ++c;
580 --size;
581 if (strnchr(c, size, ':') != NULL) {
Jan Engelhardtee999d82008-10-08 11:35:01 +0200582 family = NFPROTO_IPV6;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200583 succ = in6_pton(c, size, (void *)&addr, '\n', NULL);
584 } else {
Jan Engelhardtee999d82008-10-08 11:35:01 +0200585 family = NFPROTO_IPV4;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200586 succ = in4_pton(c, size, (void *)&addr, '\n', NULL);
587 }
588
589 if (!succ) {
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100590 pr_info("illegal address written to procfs\n");
Jan Engelhardt079aa882008-10-08 11:35:00 +0200591 return -EINVAL;
592 }
593
594 spin_lock_bh(&recent_lock);
595 e = recent_entry_lookup(t, &addr, family, 0);
596 if (e == NULL) {
597 if (add)
598 recent_entry_init(t, &addr, family, 0);
599 } else {
600 if (add)
601 recent_entry_update(t, e);
602 else
603 recent_entry_remove(t, e);
604 }
605 spin_unlock_bh(&recent_lock);
606 /* Note we removed one above */
607 *loff += size + 1;
608 return size + 1;
609}
610
611static const struct file_operations recent_mt_fops = {
612 .open = recent_seq_open,
613 .read = seq_read,
614 .write = recent_mt_proc_write,
615 .release = seq_release_private,
616 .owner = THIS_MODULE,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200617 .llseek = seq_lseek,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200618};
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100619
620static int __net_init recent_proc_net_init(struct net *net)
621{
622 struct recent_net *recent_net = recent_pernet(net);
623
624 recent_net->xt_recent = proc_mkdir("xt_recent", net->proc_net);
625 if (!recent_net->xt_recent)
626 return -ENOMEM;
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100627 return 0;
628}
629
630static void __net_exit recent_proc_net_exit(struct net *net)
631{
Vitaly E. Lavrov665e2052012-12-24 13:55:20 +0100632 struct recent_net *recent_net = recent_pernet(net);
633 struct recent_table *t;
634
635 /* recent_net_exit() is called before recent_mt_destroy(). Make sure
636 * that the parent xt_recent proc entry is is empty before trying to
637 * remove it.
638 */
639 spin_lock_bh(&recent_lock);
640 list_for_each_entry(t, &recent_net->tables, list)
641 remove_proc_entry(t->name, recent_net->xt_recent);
642
643 recent_net->xt_recent = NULL;
644 spin_unlock_bh(&recent_lock);
645
Gao fengece31ff2013-02-18 01:34:56 +0000646 remove_proc_entry("xt_recent", net->proc_net);
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100647}
648#else
649static inline int recent_proc_net_init(struct net *net)
650{
651 return 0;
652}
653
654static inline void recent_proc_net_exit(struct net *net)
655{
656}
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700657#endif /* CONFIG_PROC_FS */
658
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100659static int __net_init recent_net_init(struct net *net)
660{
661 struct recent_net *recent_net = recent_pernet(net);
662
663 INIT_LIST_HEAD(&recent_net->tables);
664 return recent_proc_net_init(net);
665}
666
667static void __net_exit recent_net_exit(struct net *net)
668{
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100669 recent_proc_net_exit(net);
670}
671
672static struct pernet_operations recent_net_ops = {
673 .init = recent_net_init,
674 .exit = recent_net_exit,
675 .id = &recent_net_id,
676 .size = sizeof(struct recent_net),
677};
678
Jan Engelhardt079aa882008-10-08 11:35:00 +0200679static struct xt_match recent_mt_reg[] __read_mostly = {
680 {
681 .name = "recent",
682 .revision = 0,
Jan Engelhardtee999d82008-10-08 11:35:01 +0200683 .family = NFPROTO_IPV4,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200684 .match = recent_mt,
685 .matchsize = sizeof(struct xt_recent_mtinfo),
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300686 .checkentry = recent_mt_check_v0,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200687 .destroy = recent_mt_destroy,
688 .me = THIS_MODULE,
689 },
690 {
691 .name = "recent",
692 .revision = 0,
Jan Engelhardtee999d82008-10-08 11:35:01 +0200693 .family = NFPROTO_IPV6,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200694 .match = recent_mt,
695 .matchsize = sizeof(struct xt_recent_mtinfo),
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300696 .checkentry = recent_mt_check_v0,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200697 .destroy = recent_mt_destroy,
698 .me = THIS_MODULE,
699 },
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300700 {
701 .name = "recent",
702 .revision = 1,
703 .family = NFPROTO_IPV4,
704 .match = recent_mt,
705 .matchsize = sizeof(struct xt_recent_mtinfo_v1),
706 .checkentry = recent_mt_check_v1,
707 .destroy = recent_mt_destroy,
708 .me = THIS_MODULE,
709 },
710 {
711 .name = "recent",
712 .revision = 1,
713 .family = NFPROTO_IPV6,
714 .match = recent_mt,
715 .matchsize = sizeof(struct xt_recent_mtinfo_v1),
716 .checkentry = recent_mt_check_v1,
717 .destroy = recent_mt_destroy,
718 .me = THIS_MODULE,
719 }
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700720};
721
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800722static int __init recent_mt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700724 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700726 if (!ip_list_tot || !ip_pkt_list_tot || ip_pkt_list_tot > 255)
727 return -EINVAL;
728 ip_list_hash_size = 1 << fls(ip_list_tot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100730 err = register_pernet_subsys(&recent_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if (err)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700732 return err;
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100733 err = xt_register_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
734 if (err)
735 unregister_pernet_subsys(&recent_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return err;
737}
738
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800739static void __exit recent_mt_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
Jan Engelhardt079aa882008-10-08 11:35:00 +0200741 xt_unregister_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100742 unregister_pernet_subsys(&recent_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800745module_init(recent_mt_init);
746module_exit(recent_mt_exit);