blob: 4635c9b0045981d862cb3b31a34ac9ab735eb85e [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 W. Biederman457c4cb2007-09-12 12:01:34 +020032#include <net/net_namespace.h>
Alexey Dobriyan7d07d562010-01-18 08:31:00 +010033#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Jan Engelhardt6709dbb2007-02-07 15:11:19 -080035#include <linux/netfilter/x_tables.h>
Jan Engelhardte948b202008-10-08 11:35:00 +020036#include <linux/netfilter/xt_recent.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Patrick McHardy404bdbf2006-05-29 18:21:34 -070038MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
Jan Engelhardt408ffaa2010-02-28 23:19:52 +010039MODULE_AUTHOR("Jan Engelhardt <jengelh@medozas.de>");
Jan Engelhardt06bf5142010-02-28 23:22:35 +010040MODULE_DESCRIPTION("Xtables: \"recently-seen\" host matching");
Patrick McHardy404bdbf2006-05-29 18:21:34 -070041MODULE_LICENSE("GPL");
Jan Engelhardte948b202008-10-08 11:35:00 +020042MODULE_ALIAS("ipt_recent");
Jan Engelhardt079aa882008-10-08 11:35:00 +020043MODULE_ALIAS("ip6t_recent");
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Patrick McHardye7be6992006-01-05 12:19:46 -080045static unsigned int ip_list_tot = 100;
46static unsigned int ip_pkt_list_tot = 20;
47static unsigned int ip_list_hash_size = 0;
48static unsigned int ip_list_perms = 0644;
Daniel De Graafb93ff782006-08-22 00:30:55 -070049static unsigned int ip_list_uid = 0;
50static unsigned int ip_list_gid = 0;
Patrick McHardye7be6992006-01-05 12:19:46 -080051module_param(ip_list_tot, uint, 0400);
52module_param(ip_pkt_list_tot, uint, 0400);
53module_param(ip_list_hash_size, uint, 0400);
54module_param(ip_list_perms, uint, 0400);
Jan Engelhardt5dc7a6d2010-03-19 21:29:08 +010055module_param(ip_list_uid, uint, S_IRUGO | S_IWUSR);
56module_param(ip_list_gid, uint, S_IRUGO | S_IWUSR);
Patrick McHardy404bdbf2006-05-29 18:21:34 -070057MODULE_PARM_DESC(ip_list_tot, "number of IPs to remember per list");
Jan Engelhardt98e6d2d2010-02-15 16:31:35 +010058MODULE_PARM_DESC(ip_pkt_list_tot, "number of packets per IP address to remember (max. 255)");
Patrick McHardy404bdbf2006-05-29 18:21:34 -070059MODULE_PARM_DESC(ip_list_hash_size, "size of hash table used to look up IPs");
Jan Engelhardt079aa882008-10-08 11:35:00 +020060MODULE_PARM_DESC(ip_list_perms, "permissions on /proc/net/xt_recent/* files");
Jan Engelhardt5dc7a6d2010-03-19 21:29:08 +010061MODULE_PARM_DESC(ip_list_uid, "default owner of /proc/net/xt_recent/* files");
62MODULE_PARM_DESC(ip_list_gid, "default owning group of /proc/net/xt_recent/* files");
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Patrick McHardy404bdbf2006-05-29 18:21:34 -070064struct recent_entry {
65 struct list_head list;
66 struct list_head lru_list;
Jan Engelhardt079aa882008-10-08 11:35:00 +020067 union nf_inet_addr addr;
68 u_int16_t family;
Patrick McHardy404bdbf2006-05-29 18:21:34 -070069 u_int8_t ttl;
70 u_int8_t index;
71 u_int16_t nstamps;
72 unsigned long stamps[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -070073};
74
Patrick McHardy404bdbf2006-05-29 18:21:34 -070075struct recent_table {
76 struct list_head list;
Jan Engelhardte948b202008-10-08 11:35:00 +020077 char name[XT_RECENT_NAME_LEN];
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +030078 union nf_inet_addr mask;
Patrick McHardy404bdbf2006-05-29 18:21:34 -070079 unsigned int refcnt;
80 unsigned int entries;
81 struct list_head lru_list;
82 struct list_head iphash[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -070083};
84
Alexey Dobriyan7d07d562010-01-18 08:31:00 +010085struct recent_net {
86 struct list_head tables;
87#ifdef CONFIG_PROC_FS
88 struct proc_dir_entry *xt_recent;
Alexey Dobriyan7d07d562010-01-18 08:31:00 +010089#endif
90};
91
92static int recent_net_id;
93static inline struct recent_net *recent_pernet(struct net *net)
94{
95 return net_generic(net, recent_net_id);
96}
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098static DEFINE_SPINLOCK(recent_lock);
Patrick McHardya0e889b2006-06-09 12:17:41 -070099static DEFINE_MUTEX(recent_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101#ifdef CONFIG_PROC_FS
Jan Engelhardt079aa882008-10-08 11:35:00 +0200102static const struct file_operations recent_old_fops, recent_mt_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#endif
104
Jan Engelhardt294188a2010-01-04 16:28:38 +0100105static u_int32_t hash_rnd __read_mostly;
106static bool hash_rnd_inited __read_mostly;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700107
Jan Engelhardt294188a2010-01-04 16:28:38 +0100108static inline unsigned int recent_entry_hash4(const union nf_inet_addr *addr)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700109{
Jan Engelhardt079aa882008-10-08 11:35:00 +0200110 return jhash_1word((__force u32)addr->ip, hash_rnd) &
111 (ip_list_hash_size - 1);
112}
113
Jan Engelhardt294188a2010-01-04 16:28:38 +0100114static inline unsigned int recent_entry_hash6(const union nf_inet_addr *addr)
Jan Engelhardt079aa882008-10-08 11:35:00 +0200115{
Jan Engelhardt079aa882008-10-08 11:35:00 +0200116 return jhash2((u32 *)addr->ip6, ARRAY_SIZE(addr->ip6), hash_rnd) &
117 (ip_list_hash_size - 1);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700118}
119
120static struct recent_entry *
Jan Engelhardt079aa882008-10-08 11:35:00 +0200121recent_entry_lookup(const struct recent_table *table,
122 const union nf_inet_addr *addrp, u_int16_t family,
123 u_int8_t ttl)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700124{
125 struct recent_entry *e;
126 unsigned int h;
127
Jan Engelhardtee999d82008-10-08 11:35:01 +0200128 if (family == NFPROTO_IPV4)
Jan Engelhardt079aa882008-10-08 11:35:00 +0200129 h = recent_entry_hash4(addrp);
130 else
131 h = recent_entry_hash6(addrp);
132
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700133 list_for_each_entry(e, &table->iphash[h], list)
Jan Engelhardt079aa882008-10-08 11:35:00 +0200134 if (e->family == family &&
135 memcmp(&e->addr, addrp, sizeof(e->addr)) == 0 &&
136 (ttl == e->ttl || ttl == 0 || e->ttl == 0))
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700137 return e;
138 return NULL;
139}
140
141static void recent_entry_remove(struct recent_table *t, struct recent_entry *e)
142{
143 list_del(&e->list);
144 list_del(&e->lru_list);
145 kfree(e);
146 t->entries--;
147}
148
Tim Gardner0079c5a2010-03-16 19:53:13 +0100149/*
150 * Drop entries with timestamps older then 'time'.
151 */
152static void recent_entry_reap(struct recent_table *t, unsigned long time)
153{
154 struct recent_entry *e;
155
156 /*
157 * The head of the LRU list is always the oldest entry.
158 */
159 e = list_entry(t->lru_list.next, struct recent_entry, lru_list);
160
161 /*
162 * The last time stamp is the most recent.
163 */
164 if (time_after(time, e->stamps[e->index-1]))
165 recent_entry_remove(t, e);
166}
167
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700168static struct recent_entry *
Jan Engelhardt079aa882008-10-08 11:35:00 +0200169recent_entry_init(struct recent_table *t, const union nf_inet_addr *addr,
170 u_int16_t family, u_int8_t ttl)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700171{
172 struct recent_entry *e;
173
174 if (t->entries >= ip_list_tot) {
175 e = list_entry(t->lru_list.next, struct recent_entry, lru_list);
176 recent_entry_remove(t, e);
177 }
178 e = kmalloc(sizeof(*e) + sizeof(e->stamps[0]) * ip_pkt_list_tot,
179 GFP_ATOMIC);
180 if (e == NULL)
181 return NULL;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200182 memcpy(&e->addr, addr, sizeof(e->addr));
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700183 e->ttl = ttl;
184 e->stamps[0] = jiffies;
185 e->nstamps = 1;
186 e->index = 1;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200187 e->family = family;
Jan Engelhardtee999d82008-10-08 11:35:01 +0200188 if (family == NFPROTO_IPV4)
Jan Engelhardt079aa882008-10-08 11:35:00 +0200189 list_add_tail(&e->list, &t->iphash[recent_entry_hash4(addr)]);
190 else
191 list_add_tail(&e->list, &t->iphash[recent_entry_hash6(addr)]);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700192 list_add_tail(&e->lru_list, &t->lru_list);
193 t->entries++;
194 return e;
195}
196
197static void recent_entry_update(struct recent_table *t, struct recent_entry *e)
198{
Tim Gardner2c085222010-02-23 14:55:21 +0100199 e->index %= ip_pkt_list_tot;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700200 e->stamps[e->index++] = jiffies;
201 if (e->index > e->nstamps)
202 e->nstamps = e->index;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700203 list_move_tail(&e->lru_list, &t->lru_list);
204}
205
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100206static struct recent_table *recent_table_lookup(struct recent_net *recent_net,
207 const char *name)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700208{
209 struct recent_table *t;
210
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100211 list_for_each_entry(t, &recent_net->tables, list)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700212 if (!strcmp(t->name, name))
213 return t;
214 return NULL;
215}
216
217static void recent_table_flush(struct recent_table *t)
218{
219 struct recent_entry *e, *next;
220 unsigned int i;
221
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700222 for (i = 0; i < ip_list_hash_size; i++)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700223 list_for_each_entry_safe(e, next, &t->iphash[i], list)
224 recent_entry_remove(t, e);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700225}
226
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700227static bool
Jan Engelhardt62fc8052009-07-07 20:42:08 +0200228recent_mt(const struct sk_buff *skb, struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100230 struct net *net = dev_net(par->in ? par->in : par->out);
231 struct recent_net *recent_net = recent_pernet(net);
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300232 const struct xt_recent_mtinfo_v1 *info = par->matchinfo;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700233 struct recent_table *t;
234 struct recent_entry *e;
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300235 union nf_inet_addr addr = {}, addr_mask;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700236 u_int8_t ttl;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700237 bool ret = info->invert;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Jan Engelhardtaa5fa312010-03-18 00:44:52 +0100239 if (par->family == NFPROTO_IPV4) {
Jan Engelhardt079aa882008-10-08 11:35:00 +0200240 const struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Jan Engelhardt079aa882008-10-08 11:35:00 +0200242 if (info->side == XT_RECENT_DEST)
243 addr.ip = iph->daddr;
244 else
245 addr.ip = iph->saddr;
246
247 ttl = iph->ttl;
248 } else {
249 const struct ipv6hdr *iph = ipv6_hdr(skb);
250
251 if (info->side == XT_RECENT_DEST)
252 memcpy(&addr.in6, &iph->daddr, sizeof(addr.in6));
253 else
254 memcpy(&addr.in6, &iph->saddr, sizeof(addr.in6));
255
256 ttl = iph->hop_limit;
257 }
258
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700259 /* use TTL as seen before forwarding */
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200260 if (par->out != NULL && skb->sk == NULL)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700261 ttl++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 spin_lock_bh(&recent_lock);
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100264 t = recent_table_lookup(recent_net, info->name);
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300265
266 nf_inet_addr_mask(&addr, &addr_mask, &t->mask);
267
268 e = recent_entry_lookup(t, &addr_mask, par->family,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200269 (info->check_set & XT_RECENT_TTL) ? ttl : 0);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700270 if (e == NULL) {
Jan Engelhardte948b202008-10-08 11:35:00 +0200271 if (!(info->check_set & XT_RECENT_SET))
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700272 goto out;
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300273 e = recent_entry_init(t, &addr_mask, par->family, ttl);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700274 if (e == NULL)
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200275 par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700276 ret = !ret;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700277 goto out;
278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Jan Engelhardte948b202008-10-08 11:35:00 +0200280 if (info->check_set & XT_RECENT_SET)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700281 ret = !ret;
Jan Engelhardte948b202008-10-08 11:35:00 +0200282 else if (info->check_set & XT_RECENT_REMOVE) {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700283 recent_entry_remove(t, e);
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700284 ret = !ret;
Jan Engelhardte948b202008-10-08 11:35:00 +0200285 } else if (info->check_set & (XT_RECENT_CHECK | XT_RECENT_UPDATE)) {
Patrick McHardy855304a2008-01-31 04:09:46 -0800286 unsigned long time = jiffies - info->seconds * HZ;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700287 unsigned int i, hits = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700289 for (i = 0; i < e->nstamps; i++) {
Patrick McHardy855304a2008-01-31 04:09:46 -0800290 if (info->seconds && time_after(time, e->stamps[i]))
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700291 continue;
Patrick McHardyef169152010-03-22 18:25:20 +0100292 if (!info->hit_count || ++hits >= info->hit_count) {
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700293 ret = !ret;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700294 break;
295 }
296 }
Tim Gardner0079c5a2010-03-16 19:53:13 +0100297
298 /* info->seconds must be non-zero */
299 if (info->check_set & XT_RECENT_REAP)
300 recent_entry_reap(t, time);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700301 }
302
Jan Engelhardte948b202008-10-08 11:35:00 +0200303 if (info->check_set & XT_RECENT_SET ||
304 (info->check_set & XT_RECENT_UPDATE && ret)) {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700305 recent_entry_update(t, e);
306 e->ttl = ttl;
307 }
308out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 spin_unlock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700310 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300313static int recent_mt_check(const struct xt_mtchk_param *par,
314 const struct xt_recent_mtinfo_v1 *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100316 struct recent_net *recent_net = recent_pernet(par->net);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700317 struct recent_table *t;
Alexey Dobriyanb0ceb562008-11-20 09:57:01 +0100318#ifdef CONFIG_PROC_FS
319 struct proc_dir_entry *pde;
Eric W. Biedermanda742802012-05-25 16:26:52 -0600320 kuid_t uid;
321 kgid_t gid;
Alexey Dobriyanb0ceb562008-11-20 09:57:01 +0100322#endif
Eric Dumazet95c96172012-04-15 05:58:06 +0000323 unsigned int i;
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100324 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Jan Engelhardt294188a2010-01-04 16:28:38 +0100326 if (unlikely(!hash_rnd_inited)) {
327 get_random_bytes(&hash_rnd, sizeof(hash_rnd));
328 hash_rnd_inited = true;
329 }
Tim Gardner606a9a02010-03-17 16:18:56 +0100330 if (info->check_set & ~XT_RECENT_VALID_FLAGS) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100331 pr_info("Unsupported user space flags (%08x)\n",
332 info->check_set);
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100333 return -EINVAL;
Tim Gardner606a9a02010-03-17 16:18:56 +0100334 }
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700335 if (hweight8(info->check_set &
Jan Engelhardte948b202008-10-08 11:35:00 +0200336 (XT_RECENT_SET | XT_RECENT_REMOVE |
337 XT_RECENT_CHECK | XT_RECENT_UPDATE)) != 1)
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100338 return -EINVAL;
Jan Engelhardte948b202008-10-08 11:35:00 +0200339 if ((info->check_set & (XT_RECENT_SET | XT_RECENT_REMOVE)) &&
Tim Gardner0079c5a2010-03-16 19:53:13 +0100340 (info->seconds || info->hit_count ||
341 (info->check_set & XT_RECENT_MODIFIERS)))
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100342 return -EINVAL;
Tim Gardner0079c5a2010-03-16 19:53:13 +0100343 if ((info->check_set & XT_RECENT_REAP) && !info->seconds)
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100344 return -EINVAL;
Jan Engelhardt98e6d2d2010-02-15 16:31:35 +0100345 if (info->hit_count > ip_pkt_list_tot) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100346 pr_info("hitcount (%u) is larger than "
Jan Engelhardt98e6d2d2010-02-15 16:31:35 +0100347 "packets to be remembered (%u)\n",
348 info->hit_count, ip_pkt_list_tot);
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100349 return -EINVAL;
Jan Engelhardt98e6d2d2010-02-15 16:31:35 +0100350 }
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700351 if (info->name[0] == '\0' ||
Jan Engelhardte948b202008-10-08 11:35:00 +0200352 strnlen(info->name, XT_RECENT_NAME_LEN) == XT_RECENT_NAME_LEN)
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100353 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Patrick McHardya0e889b2006-06-09 12:17:41 -0700355 mutex_lock(&recent_mutex);
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100356 t = recent_table_lookup(recent_net, info->name);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700357 if (t != NULL) {
358 t->refcnt++;
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100359 ret = 0;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700360 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
362
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700363 t = kzalloc(sizeof(*t) + sizeof(t->iphash[0]) * ip_list_hash_size,
Patrick McHardya0e889b2006-06-09 12:17:41 -0700364 GFP_KERNEL);
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100365 if (t == NULL) {
366 ret = -ENOMEM;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700367 goto out;
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100368 }
Patrick McHardy2b2283d2006-06-09 12:18:17 -0700369 t->refcnt = 1;
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300370
371 memcpy(&t->mask, &info->mask, sizeof(t->mask));
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700372 strcpy(t->name, info->name);
373 INIT_LIST_HEAD(&t->lru_list);
374 for (i = 0; i < ip_list_hash_size; i++)
375 INIT_LIST_HEAD(&t->iphash[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376#ifdef CONFIG_PROC_FS
Eric W. Biedermanda742802012-05-25 16:26:52 -0600377 uid = make_kuid(&init_user_ns, ip_list_uid);
378 gid = make_kgid(&init_user_ns, ip_list_gid);
379 if (!uid_valid(uid) || !gid_valid(gid)) {
380 kfree(t);
381 ret = -EINVAL;
382 goto out;
383 }
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100384 pde = proc_create_data(t->name, ip_list_perms, recent_net->xt_recent,
Alexey Dobriyanb09eec12008-10-20 03:33:49 -0700385 &recent_mt_fops, t);
Alexey Dobriyanb0ceb562008-11-20 09:57:01 +0100386 if (pde == NULL) {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700387 kfree(t);
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100388 ret = -ENOMEM;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700389 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
Eric W. Biedermanda742802012-05-25 16:26:52 -0600391 pde->uid = uid;
392 pde->gid = gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393#endif
Patrick McHardya0e889b2006-06-09 12:17:41 -0700394 spin_lock_bh(&recent_lock);
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100395 list_add_tail(&t->list, &recent_net->tables);
Patrick McHardya0e889b2006-06-09 12:17:41 -0700396 spin_unlock_bh(&recent_lock);
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100397 ret = 0;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700398out:
Patrick McHardya0e889b2006-06-09 12:17:41 -0700399 mutex_unlock(&recent_mutex);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700400 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300403static int recent_mt_check_v0(const struct xt_mtchk_param *par)
404{
405 const struct xt_recent_mtinfo_v0 *info_v0 = par->matchinfo;
406 struct xt_recent_mtinfo_v1 info_v1;
407
408 /* Copy revision 0 structure to revision 1 */
409 memcpy(&info_v1, info_v0, sizeof(struct xt_recent_mtinfo));
410 /* Set default mask to ensure backward compatible behaviour */
411 memset(info_v1.mask.all, 0xFF, sizeof(info_v1.mask.all));
412
413 return recent_mt_check(par, &info_v1);
414}
415
416static int recent_mt_check_v1(const struct xt_mtchk_param *par)
417{
418 return recent_mt_check(par, par->matchinfo);
419}
420
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200421static void recent_mt_destroy(const struct xt_mtdtor_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100423 struct recent_net *recent_net = recent_pernet(par->net);
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300424 const struct xt_recent_mtinfo_v1 *info = par->matchinfo;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700425 struct recent_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Patrick McHardya0e889b2006-06-09 12:17:41 -0700427 mutex_lock(&recent_mutex);
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100428 t = recent_table_lookup(recent_net, info->name);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700429 if (--t->refcnt == 0) {
Patrick McHardya0e889b2006-06-09 12:17:41 -0700430 spin_lock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700431 list_del(&t->list);
Patrick McHardya0e889b2006-06-09 12:17:41 -0700432 spin_unlock_bh(&recent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433#ifdef CONFIG_PROC_FS
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100434 remove_proc_entry(t->name, recent_net->xt_recent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435#endif
Pavel Emelyanova8ddc912008-07-31 00:38:31 -0700436 recent_table_flush(t);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700437 kfree(t);
438 }
Patrick McHardya0e889b2006-06-09 12:17:41 -0700439 mutex_unlock(&recent_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700442#ifdef CONFIG_PROC_FS
443struct recent_iter_state {
Jan Engelhardt079aa882008-10-08 11:35:00 +0200444 const struct recent_table *table;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700445 unsigned int bucket;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446};
447
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700448static void *recent_seq_start(struct seq_file *seq, loff_t *pos)
Patrick McHardy855304a2008-01-31 04:09:46 -0800449 __acquires(recent_lock)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700450{
451 struct recent_iter_state *st = seq->private;
Jan Engelhardta47362a2007-07-07 22:16:55 -0700452 const struct recent_table *t = st->table;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700453 struct recent_entry *e;
454 loff_t p = *pos;
455
456 spin_lock_bh(&recent_lock);
457
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700458 for (st->bucket = 0; st->bucket < ip_list_hash_size; st->bucket++)
459 list_for_each_entry(e, &t->iphash[st->bucket], list)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700460 if (p-- == 0)
461 return e;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700462 return NULL;
463}
464
465static void *recent_seq_next(struct seq_file *seq, void *v, loff_t *pos)
466{
467 struct recent_iter_state *st = seq->private;
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200468 const struct recent_table *t = st->table;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200469 const struct recent_entry *e = v;
470 const struct list_head *head = e->list.next;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700471
472 while (head == &t->iphash[st->bucket]) {
473 if (++st->bucket >= ip_list_hash_size)
474 return NULL;
475 head = t->iphash[st->bucket].next;
476 }
477 (*pos)++;
478 return list_entry(head, struct recent_entry, list);
479}
480
481static void recent_seq_stop(struct seq_file *s, void *v)
Patrick McHardy855304a2008-01-31 04:09:46 -0800482 __releases(recent_lock)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700483{
484 spin_unlock_bh(&recent_lock);
485}
486
487static int recent_seq_show(struct seq_file *seq, void *v)
488{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200489 const struct recent_entry *e = v;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700490 unsigned int i;
491
492 i = (e->index - 1) % ip_pkt_list_tot;
Jan Engelhardtee999d82008-10-08 11:35:01 +0200493 if (e->family == NFPROTO_IPV4)
Harvey Harrison14d5e832008-10-31 00:54:29 -0700494 seq_printf(seq, "src=%pI4 ttl: %u last_seen: %lu oldest_pkt: %u",
495 &e->addr.ip, e->ttl, e->stamps[i], e->index);
Jan Engelhardt079aa882008-10-08 11:35:00 +0200496 else
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700497 seq_printf(seq, "src=%pI6 ttl: %u last_seen: %lu oldest_pkt: %u",
Harvey Harrison38ff4fa2008-10-28 16:08:13 -0700498 &e->addr.in6, e->ttl, e->stamps[i], e->index);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700499 for (i = 0; i < e->nstamps; i++)
500 seq_printf(seq, "%s %lu", i ? "," : "", e->stamps[i]);
501 seq_printf(seq, "\n");
502 return 0;
503}
504
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700505static const struct seq_operations recent_seq_ops = {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700506 .start = recent_seq_start,
507 .next = recent_seq_next,
508 .stop = recent_seq_stop,
509 .show = recent_seq_show,
510};
511
512static int recent_seq_open(struct inode *inode, struct file *file)
513{
514 struct proc_dir_entry *pde = PDE(inode);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700515 struct recent_iter_state *st;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700516
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700517 st = __seq_open_private(file, &recent_seq_ops, sizeof(*st));
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700518 if (st == NULL)
519 return -ENOMEM;
Jesper Juhl3af8e312007-08-07 18:10:54 -0700520
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700521 st->table = pde->data;
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700522 return 0;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700523}
524
Jan Engelhardt079aa882008-10-08 11:35:00 +0200525static ssize_t
526recent_mt_proc_write(struct file *file, const char __user *input,
527 size_t size, loff_t *loff)
528{
529 const struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
530 struct recent_table *t = pde->data;
531 struct recent_entry *e;
532 char buf[sizeof("+b335:1d35:1e55:dead:c0de:1715:5afe:c0de")];
533 const char *c = buf;
Josef Drexler325fb5b2009-02-24 14:53:12 +0100534 union nf_inet_addr addr = {};
Jan Engelhardt079aa882008-10-08 11:35:00 +0200535 u_int16_t family;
536 bool add, succ;
537
538 if (size == 0)
539 return 0;
540 if (size > sizeof(buf))
541 size = sizeof(buf);
542 if (copy_from_user(buf, input, size) != 0)
543 return -EFAULT;
544
545 /* Strict protocol! */
546 if (*loff != 0)
547 return -ESPIPE;
548 switch (*c) {
549 case '/': /* flush table */
550 spin_lock_bh(&recent_lock);
551 recent_table_flush(t);
552 spin_unlock_bh(&recent_lock);
553 return size;
554 case '-': /* remove address */
555 add = false;
556 break;
557 case '+': /* add address */
558 add = true;
559 break;
560 default:
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100561 pr_info("Need \"+ip\", \"-ip\" or \"/\"\n");
Jan Engelhardt079aa882008-10-08 11:35:00 +0200562 return -EINVAL;
563 }
564
565 ++c;
566 --size;
567 if (strnchr(c, size, ':') != NULL) {
Jan Engelhardtee999d82008-10-08 11:35:01 +0200568 family = NFPROTO_IPV6;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200569 succ = in6_pton(c, size, (void *)&addr, '\n', NULL);
570 } else {
Jan Engelhardtee999d82008-10-08 11:35:01 +0200571 family = NFPROTO_IPV4;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200572 succ = in4_pton(c, size, (void *)&addr, '\n', NULL);
573 }
574
575 if (!succ) {
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100576 pr_info("illegal address written to procfs\n");
Jan Engelhardt079aa882008-10-08 11:35:00 +0200577 return -EINVAL;
578 }
579
580 spin_lock_bh(&recent_lock);
581 e = recent_entry_lookup(t, &addr, family, 0);
582 if (e == NULL) {
583 if (add)
584 recent_entry_init(t, &addr, family, 0);
585 } else {
586 if (add)
587 recent_entry_update(t, e);
588 else
589 recent_entry_remove(t, e);
590 }
591 spin_unlock_bh(&recent_lock);
592 /* Note we removed one above */
593 *loff += size + 1;
594 return size + 1;
595}
596
597static const struct file_operations recent_mt_fops = {
598 .open = recent_seq_open,
599 .read = seq_read,
600 .write = recent_mt_proc_write,
601 .release = seq_release_private,
602 .owner = THIS_MODULE,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200603 .llseek = seq_lseek,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200604};
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100605
606static int __net_init recent_proc_net_init(struct net *net)
607{
608 struct recent_net *recent_net = recent_pernet(net);
609
610 recent_net->xt_recent = proc_mkdir("xt_recent", net->proc_net);
611 if (!recent_net->xt_recent)
612 return -ENOMEM;
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100613 return 0;
614}
615
616static void __net_exit recent_proc_net_exit(struct net *net)
617{
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100618 proc_net_remove(net, "xt_recent");
619}
620#else
621static inline int recent_proc_net_init(struct net *net)
622{
623 return 0;
624}
625
626static inline void recent_proc_net_exit(struct net *net)
627{
628}
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700629#endif /* CONFIG_PROC_FS */
630
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100631static int __net_init recent_net_init(struct net *net)
632{
633 struct recent_net *recent_net = recent_pernet(net);
634
635 INIT_LIST_HEAD(&recent_net->tables);
636 return recent_proc_net_init(net);
637}
638
639static void __net_exit recent_net_exit(struct net *net)
640{
641 struct recent_net *recent_net = recent_pernet(net);
642
643 BUG_ON(!list_empty(&recent_net->tables));
644 recent_proc_net_exit(net);
645}
646
647static struct pernet_operations recent_net_ops = {
648 .init = recent_net_init,
649 .exit = recent_net_exit,
650 .id = &recent_net_id,
651 .size = sizeof(struct recent_net),
652};
653
Jan Engelhardt079aa882008-10-08 11:35:00 +0200654static struct xt_match recent_mt_reg[] __read_mostly = {
655 {
656 .name = "recent",
657 .revision = 0,
Jan Engelhardtee999d82008-10-08 11:35:01 +0200658 .family = NFPROTO_IPV4,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200659 .match = recent_mt,
660 .matchsize = sizeof(struct xt_recent_mtinfo),
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300661 .checkentry = recent_mt_check_v0,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200662 .destroy = recent_mt_destroy,
663 .me = THIS_MODULE,
664 },
665 {
666 .name = "recent",
667 .revision = 0,
Jan Engelhardtee999d82008-10-08 11:35:01 +0200668 .family = NFPROTO_IPV6,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200669 .match = recent_mt,
670 .matchsize = sizeof(struct xt_recent_mtinfo),
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300671 .checkentry = recent_mt_check_v0,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200672 .destroy = recent_mt_destroy,
673 .me = THIS_MODULE,
674 },
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +0300675 {
676 .name = "recent",
677 .revision = 1,
678 .family = NFPROTO_IPV4,
679 .match = recent_mt,
680 .matchsize = sizeof(struct xt_recent_mtinfo_v1),
681 .checkentry = recent_mt_check_v1,
682 .destroy = recent_mt_destroy,
683 .me = THIS_MODULE,
684 },
685 {
686 .name = "recent",
687 .revision = 1,
688 .family = NFPROTO_IPV6,
689 .match = recent_mt,
690 .matchsize = sizeof(struct xt_recent_mtinfo_v1),
691 .checkentry = recent_mt_check_v1,
692 .destroy = recent_mt_destroy,
693 .me = THIS_MODULE,
694 }
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700695};
696
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800697static int __init recent_mt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700699 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700701 if (!ip_list_tot || !ip_pkt_list_tot || ip_pkt_list_tot > 255)
702 return -EINVAL;
703 ip_list_hash_size = 1 << fls(ip_list_tot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100705 err = register_pernet_subsys(&recent_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 if (err)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700707 return err;
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100708 err = xt_register_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
709 if (err)
710 unregister_pernet_subsys(&recent_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 return err;
712}
713
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800714static void __exit recent_mt_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
Jan Engelhardt079aa882008-10-08 11:35:00 +0200716 xt_unregister_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100717 unregister_pernet_subsys(&recent_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718}
719
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800720module_init(recent_mt_init);
721module_exit(recent_mt_exit);