blob: 1278f0aa7434f8d0dc4d9fc900a3faed90fb412c [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 */
15#include <linux/init.h>
Jan Engelhardt6709dbb2007-02-07 15:11:19 -080016#include <linux/ip.h>
Jan Engelhardt079aa882008-10-08 11:35:00 +020017#include <linux/ipv6.h>
18#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/moduleparam.h>
Patrick McHardy404bdbf2006-05-29 18:21:34 -070020#include <linux/proc_fs.h>
21#include <linux/seq_file.h>
22#include <linux/string.h>
23#include <linux/ctype.h>
24#include <linux/list.h>
25#include <linux/random.h>
26#include <linux/jhash.h>
27#include <linux/bitops.h>
28#include <linux/skbuff.h>
29#include <linux/inet.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020030#include <net/net_namespace.h>
Alexey Dobriyan7d07d562010-01-18 08:31:00 +010031#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Jan Engelhardt6709dbb2007-02-07 15:11:19 -080033#include <linux/netfilter/x_tables.h>
Jan Engelhardte948b202008-10-08 11:35:00 +020034#include <linux/netfilter/xt_recent.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Patrick McHardy404bdbf2006-05-29 18:21:34 -070036MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
Jan Engelhardt079aa882008-10-08 11:35:00 +020037MODULE_AUTHOR("Jan Engelhardt <jengelh@computergmbh.de>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080038MODULE_DESCRIPTION("Xtables: \"recently-seen\" host matching for IPv4");
Patrick McHardy404bdbf2006-05-29 18:21:34 -070039MODULE_LICENSE("GPL");
Jan Engelhardte948b202008-10-08 11:35:00 +020040MODULE_ALIAS("ipt_recent");
Jan Engelhardt079aa882008-10-08 11:35:00 +020041MODULE_ALIAS("ip6t_recent");
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Patrick McHardye7be6992006-01-05 12:19:46 -080043static unsigned int ip_list_tot = 100;
44static unsigned int ip_pkt_list_tot = 20;
45static unsigned int ip_list_hash_size = 0;
46static unsigned int ip_list_perms = 0644;
Daniel De Graafb93ff782006-08-22 00:30:55 -070047static unsigned int ip_list_uid = 0;
48static unsigned int ip_list_gid = 0;
Patrick McHardye7be6992006-01-05 12:19:46 -080049module_param(ip_list_tot, uint, 0400);
50module_param(ip_pkt_list_tot, uint, 0400);
51module_param(ip_list_hash_size, uint, 0400);
52module_param(ip_list_perms, uint, 0400);
Daniel De Graafb93ff782006-08-22 00:30:55 -070053module_param(ip_list_uid, uint, 0400);
54module_param(ip_list_gid, uint, 0400);
Patrick McHardy404bdbf2006-05-29 18:21:34 -070055MODULE_PARM_DESC(ip_list_tot, "number of IPs to remember per list");
Jan Engelhardt98e6d2d2010-02-15 16:31:35 +010056MODULE_PARM_DESC(ip_pkt_list_tot, "number of packets per IP address to remember (max. 255)");
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");
59MODULE_PARM_DESC(ip_list_uid,"owner of /proc/net/xt_recent/* files");
60MODULE_PARM_DESC(ip_list_gid,"owning group of /proc/net/xt_recent/* files");
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Patrick McHardy404bdbf2006-05-29 18:21:34 -070062struct recent_entry {
63 struct list_head list;
64 struct list_head lru_list;
Jan Engelhardt079aa882008-10-08 11:35:00 +020065 union nf_inet_addr addr;
66 u_int16_t family;
Patrick McHardy404bdbf2006-05-29 18:21:34 -070067 u_int8_t ttl;
68 u_int8_t index;
69 u_int16_t nstamps;
70 unsigned long stamps[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -070071};
72
Patrick McHardy404bdbf2006-05-29 18:21:34 -070073struct recent_table {
74 struct list_head list;
Jan Engelhardte948b202008-10-08 11:35:00 +020075 char name[XT_RECENT_NAME_LEN];
Patrick McHardy404bdbf2006-05-29 18:21:34 -070076 unsigned int refcnt;
77 unsigned int entries;
78 struct list_head lru_list;
79 struct list_head iphash[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -070080};
81
Alexey Dobriyan7d07d562010-01-18 08:31:00 +010082struct recent_net {
83 struct list_head tables;
84#ifdef CONFIG_PROC_FS
85 struct proc_dir_entry *xt_recent;
86#ifdef CONFIG_NETFILTER_XT_MATCH_RECENT_PROC_COMPAT
87 struct proc_dir_entry *ipt_recent;
88#endif
89#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
149static struct recent_entry *
Jan Engelhardt079aa882008-10-08 11:35:00 +0200150recent_entry_init(struct recent_table *t, const union nf_inet_addr *addr,
151 u_int16_t family, u_int8_t ttl)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700152{
153 struct recent_entry *e;
154
155 if (t->entries >= ip_list_tot) {
156 e = list_entry(t->lru_list.next, struct recent_entry, lru_list);
157 recent_entry_remove(t, e);
158 }
159 e = kmalloc(sizeof(*e) + sizeof(e->stamps[0]) * ip_pkt_list_tot,
160 GFP_ATOMIC);
161 if (e == NULL)
162 return NULL;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200163 memcpy(&e->addr, addr, sizeof(e->addr));
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700164 e->ttl = ttl;
165 e->stamps[0] = jiffies;
166 e->nstamps = 1;
167 e->index = 1;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200168 e->family = family;
Jan Engelhardtee999d82008-10-08 11:35:01 +0200169 if (family == NFPROTO_IPV4)
Jan Engelhardt079aa882008-10-08 11:35:00 +0200170 list_add_tail(&e->list, &t->iphash[recent_entry_hash4(addr)]);
171 else
172 list_add_tail(&e->list, &t->iphash[recent_entry_hash6(addr)]);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700173 list_add_tail(&e->lru_list, &t->lru_list);
174 t->entries++;
175 return e;
176}
177
178static void recent_entry_update(struct recent_table *t, struct recent_entry *e)
179{
Tim Gardner2c085222010-02-23 14:55:21 +0100180 e->index %= ip_pkt_list_tot;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700181 e->stamps[e->index++] = jiffies;
182 if (e->index > e->nstamps)
183 e->nstamps = e->index;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700184 list_move_tail(&e->lru_list, &t->lru_list);
185}
186
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100187static struct recent_table *recent_table_lookup(struct recent_net *recent_net,
188 const char *name)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700189{
190 struct recent_table *t;
191
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100192 list_for_each_entry(t, &recent_net->tables, list)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700193 if (!strcmp(t->name, name))
194 return t;
195 return NULL;
196}
197
198static void recent_table_flush(struct recent_table *t)
199{
200 struct recent_entry *e, *next;
201 unsigned int i;
202
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700203 for (i = 0; i < ip_list_hash_size; i++)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700204 list_for_each_entry_safe(e, next, &t->iphash[i], list)
205 recent_entry_remove(t, e);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700206}
207
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700208static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200209recent_mt(const struct sk_buff *skb, const struct xt_match_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100211 struct net *net = dev_net(par->in ? par->in : par->out);
212 struct recent_net *recent_net = recent_pernet(net);
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200213 const struct xt_recent_mtinfo *info = par->matchinfo;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700214 struct recent_table *t;
215 struct recent_entry *e;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200216 union nf_inet_addr addr = {};
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700217 u_int8_t ttl;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700218 bool ret = info->invert;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200220 if (par->match->family == NFPROTO_IPV4) {
Jan Engelhardt079aa882008-10-08 11:35:00 +0200221 const struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Jan Engelhardt079aa882008-10-08 11:35:00 +0200223 if (info->side == XT_RECENT_DEST)
224 addr.ip = iph->daddr;
225 else
226 addr.ip = iph->saddr;
227
228 ttl = iph->ttl;
229 } else {
230 const struct ipv6hdr *iph = ipv6_hdr(skb);
231
232 if (info->side == XT_RECENT_DEST)
233 memcpy(&addr.in6, &iph->daddr, sizeof(addr.in6));
234 else
235 memcpy(&addr.in6, &iph->saddr, sizeof(addr.in6));
236
237 ttl = iph->hop_limit;
238 }
239
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700240 /* use TTL as seen before forwarding */
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200241 if (par->out != NULL && skb->sk == NULL)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700242 ttl++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 spin_lock_bh(&recent_lock);
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100245 t = recent_table_lookup(recent_net, info->name);
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200246 e = recent_entry_lookup(t, &addr, par->match->family,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200247 (info->check_set & XT_RECENT_TTL) ? ttl : 0);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700248 if (e == NULL) {
Jan Engelhardte948b202008-10-08 11:35:00 +0200249 if (!(info->check_set & XT_RECENT_SET))
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700250 goto out;
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200251 e = recent_entry_init(t, &addr, par->match->family, ttl);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700252 if (e == NULL)
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200253 *par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700254 ret = !ret;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700255 goto out;
256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Jan Engelhardte948b202008-10-08 11:35:00 +0200258 if (info->check_set & XT_RECENT_SET)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700259 ret = !ret;
Jan Engelhardte948b202008-10-08 11:35:00 +0200260 else if (info->check_set & XT_RECENT_REMOVE) {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700261 recent_entry_remove(t, e);
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700262 ret = !ret;
Jan Engelhardte948b202008-10-08 11:35:00 +0200263 } else if (info->check_set & (XT_RECENT_CHECK | XT_RECENT_UPDATE)) {
Patrick McHardy855304a2008-01-31 04:09:46 -0800264 unsigned long time = jiffies - info->seconds * HZ;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700265 unsigned int i, hits = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700267 for (i = 0; i < e->nstamps; i++) {
Patrick McHardy855304a2008-01-31 04:09:46 -0800268 if (info->seconds && time_after(time, e->stamps[i]))
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700269 continue;
270 if (++hits >= info->hit_count) {
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700271 ret = !ret;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700272 break;
273 }
274 }
275 }
276
Jan Engelhardte948b202008-10-08 11:35:00 +0200277 if (info->check_set & XT_RECENT_SET ||
278 (info->check_set & XT_RECENT_UPDATE && ret)) {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700279 recent_entry_update(t, e);
280 e->ttl = ttl;
281 }
282out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 spin_unlock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700284 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200287static bool recent_mt_check(const struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100289 struct recent_net *recent_net = recent_pernet(par->net);
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200290 const struct xt_recent_mtinfo *info = par->matchinfo;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700291 struct recent_table *t;
Alexey Dobriyanb0ceb562008-11-20 09:57:01 +0100292#ifdef CONFIG_PROC_FS
293 struct proc_dir_entry *pde;
294#endif
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700295 unsigned i;
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700296 bool ret = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Jan Engelhardt294188a2010-01-04 16:28:38 +0100298 if (unlikely(!hash_rnd_inited)) {
299 get_random_bytes(&hash_rnd, sizeof(hash_rnd));
300 hash_rnd_inited = true;
301 }
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700302 if (hweight8(info->check_set &
Jan Engelhardte948b202008-10-08 11:35:00 +0200303 (XT_RECENT_SET | XT_RECENT_REMOVE |
304 XT_RECENT_CHECK | XT_RECENT_UPDATE)) != 1)
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700305 return false;
Jan Engelhardte948b202008-10-08 11:35:00 +0200306 if ((info->check_set & (XT_RECENT_SET | XT_RECENT_REMOVE)) &&
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700307 (info->seconds || info->hit_count))
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700308 return false;
Jan Engelhardt98e6d2d2010-02-15 16:31:35 +0100309 if (info->hit_count > ip_pkt_list_tot) {
310 pr_info(KBUILD_MODNAME ": hitcount (%u) is larger than "
311 "packets to be remembered (%u)\n",
312 info->hit_count, ip_pkt_list_tot);
Daniel Hokka Zakrissond0ebf132008-03-20 15:07:10 -0700313 return false;
Jan Engelhardt98e6d2d2010-02-15 16:31:35 +0100314 }
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700315 if (info->name[0] == '\0' ||
Jan Engelhardte948b202008-10-08 11:35:00 +0200316 strnlen(info->name, XT_RECENT_NAME_LEN) == XT_RECENT_NAME_LEN)
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700317 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Patrick McHardya0e889b2006-06-09 12:17:41 -0700319 mutex_lock(&recent_mutex);
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100320 t = recent_table_lookup(recent_net, info->name);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700321 if (t != NULL) {
322 t->refcnt++;
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700323 ret = true;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700324 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 }
326
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700327 t = kzalloc(sizeof(*t) + sizeof(t->iphash[0]) * ip_list_hash_size,
Patrick McHardya0e889b2006-06-09 12:17:41 -0700328 GFP_KERNEL);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700329 if (t == NULL)
330 goto out;
Patrick McHardy2b2283d2006-06-09 12:18:17 -0700331 t->refcnt = 1;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700332 strcpy(t->name, info->name);
333 INIT_LIST_HEAD(&t->lru_list);
334 for (i = 0; i < ip_list_hash_size; i++)
335 INIT_LIST_HEAD(&t->iphash[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336#ifdef CONFIG_PROC_FS
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100337 pde = proc_create_data(t->name, ip_list_perms, recent_net->xt_recent,
Alexey Dobriyanb09eec12008-10-20 03:33:49 -0700338 &recent_mt_fops, t);
Alexey Dobriyanb0ceb562008-11-20 09:57:01 +0100339 if (pde == NULL) {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700340 kfree(t);
341 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
Alexey Dobriyanb0ceb562008-11-20 09:57:01 +0100343 pde->uid = ip_list_uid;
344 pde->gid = ip_list_gid;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200345#ifdef CONFIG_NETFILTER_XT_MATCH_RECENT_PROC_COMPAT
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100346 pde = proc_create_data(t->name, ip_list_perms, recent_net->ipt_recent,
Alexey Dobriyanb09eec12008-10-20 03:33:49 -0700347 &recent_old_fops, t);
Alexey Dobriyanb0ceb562008-11-20 09:57:01 +0100348 if (pde == NULL) {
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100349 remove_proc_entry(t->name, recent_net->xt_recent);
Jan Engelhardt079aa882008-10-08 11:35:00 +0200350 kfree(t);
351 goto out;
352 }
Alexey Dobriyanb0ceb562008-11-20 09:57:01 +0100353 pde->uid = ip_list_uid;
354 pde->gid = ip_list_gid;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200355#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356#endif
Patrick McHardya0e889b2006-06-09 12:17:41 -0700357 spin_lock_bh(&recent_lock);
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100358 list_add_tail(&t->list, &recent_net->tables);
Patrick McHardya0e889b2006-06-09 12:17:41 -0700359 spin_unlock_bh(&recent_lock);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700360 ret = true;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700361out:
Patrick McHardya0e889b2006-06-09 12:17:41 -0700362 mutex_unlock(&recent_mutex);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700363 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364}
365
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200366static void recent_mt_destroy(const struct xt_mtdtor_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100368 struct recent_net *recent_net = recent_pernet(par->net);
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200369 const struct xt_recent_mtinfo *info = par->matchinfo;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700370 struct recent_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Patrick McHardya0e889b2006-06-09 12:17:41 -0700372 mutex_lock(&recent_mutex);
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100373 t = recent_table_lookup(recent_net, info->name);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700374 if (--t->refcnt == 0) {
Patrick McHardya0e889b2006-06-09 12:17:41 -0700375 spin_lock_bh(&recent_lock);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700376 list_del(&t->list);
Patrick McHardya0e889b2006-06-09 12:17:41 -0700377 spin_unlock_bh(&recent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378#ifdef CONFIG_PROC_FS
Jan Engelhardt079aa882008-10-08 11:35:00 +0200379#ifdef CONFIG_NETFILTER_XT_MATCH_RECENT_PROC_COMPAT
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100380 remove_proc_entry(t->name, recent_net->ipt_recent);
Jan Engelhardt079aa882008-10-08 11:35:00 +0200381#endif
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100382 remove_proc_entry(t->name, recent_net->xt_recent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383#endif
Pavel Emelyanova8ddc912008-07-31 00:38:31 -0700384 recent_table_flush(t);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700385 kfree(t);
386 }
Patrick McHardya0e889b2006-06-09 12:17:41 -0700387 mutex_unlock(&recent_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700390#ifdef CONFIG_PROC_FS
391struct recent_iter_state {
Jan Engelhardt079aa882008-10-08 11:35:00 +0200392 const struct recent_table *table;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700393 unsigned int bucket;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394};
395
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700396static void *recent_seq_start(struct seq_file *seq, loff_t *pos)
Patrick McHardy855304a2008-01-31 04:09:46 -0800397 __acquires(recent_lock)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700398{
399 struct recent_iter_state *st = seq->private;
Jan Engelhardta47362a2007-07-07 22:16:55 -0700400 const struct recent_table *t = st->table;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700401 struct recent_entry *e;
402 loff_t p = *pos;
403
404 spin_lock_bh(&recent_lock);
405
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700406 for (st->bucket = 0; st->bucket < ip_list_hash_size; st->bucket++)
407 list_for_each_entry(e, &t->iphash[st->bucket], list)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700408 if (p-- == 0)
409 return e;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700410 return NULL;
411}
412
413static void *recent_seq_next(struct seq_file *seq, void *v, loff_t *pos)
414{
415 struct recent_iter_state *st = seq->private;
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200416 const struct recent_table *t = st->table;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200417 const struct recent_entry *e = v;
418 const struct list_head *head = e->list.next;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700419
420 while (head == &t->iphash[st->bucket]) {
421 if (++st->bucket >= ip_list_hash_size)
422 return NULL;
423 head = t->iphash[st->bucket].next;
424 }
425 (*pos)++;
426 return list_entry(head, struct recent_entry, list);
427}
428
429static void recent_seq_stop(struct seq_file *s, void *v)
Patrick McHardy855304a2008-01-31 04:09:46 -0800430 __releases(recent_lock)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700431{
432 spin_unlock_bh(&recent_lock);
433}
434
435static int recent_seq_show(struct seq_file *seq, void *v)
436{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200437 const struct recent_entry *e = v;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700438 unsigned int i;
439
440 i = (e->index - 1) % ip_pkt_list_tot;
Jan Engelhardtee999d82008-10-08 11:35:01 +0200441 if (e->family == NFPROTO_IPV4)
Harvey Harrison14d5e832008-10-31 00:54:29 -0700442 seq_printf(seq, "src=%pI4 ttl: %u last_seen: %lu oldest_pkt: %u",
443 &e->addr.ip, e->ttl, e->stamps[i], e->index);
Jan Engelhardt079aa882008-10-08 11:35:00 +0200444 else
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700445 seq_printf(seq, "src=%pI6 ttl: %u last_seen: %lu oldest_pkt: %u",
Harvey Harrison38ff4fa2008-10-28 16:08:13 -0700446 &e->addr.in6, e->ttl, e->stamps[i], e->index);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700447 for (i = 0; i < e->nstamps; i++)
448 seq_printf(seq, "%s %lu", i ? "," : "", e->stamps[i]);
449 seq_printf(seq, "\n");
450 return 0;
451}
452
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700453static const struct seq_operations recent_seq_ops = {
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700454 .start = recent_seq_start,
455 .next = recent_seq_next,
456 .stop = recent_seq_stop,
457 .show = recent_seq_show,
458};
459
460static int recent_seq_open(struct inode *inode, struct file *file)
461{
462 struct proc_dir_entry *pde = PDE(inode);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700463 struct recent_iter_state *st;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700464
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700465 st = __seq_open_private(file, &recent_seq_ops, sizeof(*st));
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700466 if (st == NULL)
467 return -ENOMEM;
Jesper Juhl3af8e312007-08-07 18:10:54 -0700468
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700469 st->table = pde->data;
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700470 return 0;
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700471}
472
Jan Engelhardt079aa882008-10-08 11:35:00 +0200473#ifdef CONFIG_NETFILTER_XT_MATCH_RECENT_PROC_COMPAT
474static int recent_old_seq_open(struct inode *inode, struct file *filp)
475{
476 static bool warned_of_old;
477
478 if (unlikely(!warned_of_old)) {
479 printk(KERN_INFO KBUILD_MODNAME ": Use of /proc/net/ipt_recent"
480 " is deprecated; use /proc/net/xt_recent.\n");
481 warned_of_old = true;
482 }
483 return recent_seq_open(inode, filp);
484}
485
486static ssize_t recent_old_proc_write(struct file *file,
487 const char __user *input,
488 size_t size, loff_t *loff)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700489{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200490 const struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700491 struct recent_table *t = pde->data;
492 struct recent_entry *e;
493 char buf[sizeof("+255.255.255.255")], *c = buf;
Jan Engelhardt37e55cf2009-04-24 17:05:21 +0200494 union nf_inet_addr addr = {};
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700495 int add;
496
497 if (size > sizeof(buf))
498 size = sizeof(buf);
499 if (copy_from_user(buf, input, size))
500 return -EFAULT;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200501
André Goddard Rosae7d28602009-12-14 18:01:06 -0800502 c = skip_spaces(c);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700503
504 if (size - (c - buf) < 5)
505 return c - buf;
506 if (!strncmp(c, "clear", 5)) {
507 c += 5;
508 spin_lock_bh(&recent_lock);
509 recent_table_flush(t);
510 spin_unlock_bh(&recent_lock);
511 return c - buf;
512 }
513
514 switch (*c) {
515 case '-':
516 add = 0;
517 c++;
518 break;
519 case '+':
520 c++;
521 default:
522 add = 1;
523 break;
524 }
Jan Engelhardt37e55cf2009-04-24 17:05:21 +0200525 addr.ip = in_aton(c);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700526
527 spin_lock_bh(&recent_lock);
Jan Engelhardt37e55cf2009-04-24 17:05:21 +0200528 e = recent_entry_lookup(t, &addr, NFPROTO_IPV4, 0);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700529 if (e == NULL) {
530 if (add)
Jan Engelhardt37e55cf2009-04-24 17:05:21 +0200531 recent_entry_init(t, &addr, NFPROTO_IPV4, 0);
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700532 } else {
533 if (add)
534 recent_entry_update(t, e);
535 else
536 recent_entry_remove(t, e);
537 }
538 spin_unlock_bh(&recent_lock);
539 return size;
540}
541
Jan Engelhardt079aa882008-10-08 11:35:00 +0200542static const struct file_operations recent_old_fops = {
543 .open = recent_old_seq_open,
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700544 .read = seq_read,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200545 .write = recent_old_proc_write,
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700546 .release = seq_release_private,
547 .owner = THIS_MODULE,
548};
Jan Engelhardt079aa882008-10-08 11:35:00 +0200549#endif
550
551static ssize_t
552recent_mt_proc_write(struct file *file, const char __user *input,
553 size_t size, loff_t *loff)
554{
555 const struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
556 struct recent_table *t = pde->data;
557 struct recent_entry *e;
558 char buf[sizeof("+b335:1d35:1e55:dead:c0de:1715:5afe:c0de")];
559 const char *c = buf;
Josef Drexler325fb5b2009-02-24 14:53:12 +0100560 union nf_inet_addr addr = {};
Jan Engelhardt079aa882008-10-08 11:35:00 +0200561 u_int16_t family;
562 bool add, succ;
563
564 if (size == 0)
565 return 0;
566 if (size > sizeof(buf))
567 size = sizeof(buf);
568 if (copy_from_user(buf, input, size) != 0)
569 return -EFAULT;
570
571 /* Strict protocol! */
572 if (*loff != 0)
573 return -ESPIPE;
574 switch (*c) {
575 case '/': /* flush table */
576 spin_lock_bh(&recent_lock);
577 recent_table_flush(t);
578 spin_unlock_bh(&recent_lock);
579 return size;
580 case '-': /* remove address */
581 add = false;
582 break;
583 case '+': /* add address */
584 add = true;
585 break;
586 default:
587 printk(KERN_INFO KBUILD_MODNAME ": Need +ip, -ip or /\n");
588 return -EINVAL;
589 }
590
591 ++c;
592 --size;
593 if (strnchr(c, size, ':') != NULL) {
Jan Engelhardtee999d82008-10-08 11:35:01 +0200594 family = NFPROTO_IPV6;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200595 succ = in6_pton(c, size, (void *)&addr, '\n', NULL);
596 } else {
Jan Engelhardtee999d82008-10-08 11:35:01 +0200597 family = NFPROTO_IPV4;
Jan Engelhardt079aa882008-10-08 11:35:00 +0200598 succ = in4_pton(c, size, (void *)&addr, '\n', NULL);
599 }
600
601 if (!succ) {
602 printk(KERN_INFO KBUILD_MODNAME ": illegal address written "
603 "to procfs\n");
604 return -EINVAL;
605 }
606
607 spin_lock_bh(&recent_lock);
608 e = recent_entry_lookup(t, &addr, family, 0);
609 if (e == NULL) {
610 if (add)
611 recent_entry_init(t, &addr, family, 0);
612 } else {
613 if (add)
614 recent_entry_update(t, e);
615 else
616 recent_entry_remove(t, e);
617 }
618 spin_unlock_bh(&recent_lock);
619 /* Note we removed one above */
620 *loff += size + 1;
621 return size + 1;
622}
623
624static const struct file_operations recent_mt_fops = {
625 .open = recent_seq_open,
626 .read = seq_read,
627 .write = recent_mt_proc_write,
628 .release = seq_release_private,
629 .owner = THIS_MODULE,
630};
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100631
632static int __net_init recent_proc_net_init(struct net *net)
633{
634 struct recent_net *recent_net = recent_pernet(net);
635
636 recent_net->xt_recent = proc_mkdir("xt_recent", net->proc_net);
637 if (!recent_net->xt_recent)
638 return -ENOMEM;
639#ifdef CONFIG_NETFILTER_XT_MATCH_RECENT_PROC_COMPAT
640 recent_net->ipt_recent = proc_mkdir("ipt_recent", net->proc_net);
641 if (!recent_net->ipt_recent) {
642 proc_net_remove(net, "xt_recent");
643 return -ENOMEM;
644 }
645#endif
646 return 0;
647}
648
649static void __net_exit recent_proc_net_exit(struct net *net)
650{
651#ifdef CONFIG_NETFILTER_XT_MATCH_RECENT_PROC_COMPAT
652 proc_net_remove(net, "ipt_recent");
653#endif
654 proc_net_remove(net, "xt_recent");
655}
656#else
657static inline int recent_proc_net_init(struct net *net)
658{
659 return 0;
660}
661
662static inline void recent_proc_net_exit(struct net *net)
663{
664}
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700665#endif /* CONFIG_PROC_FS */
666
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100667static int __net_init recent_net_init(struct net *net)
668{
669 struct recent_net *recent_net = recent_pernet(net);
670
671 INIT_LIST_HEAD(&recent_net->tables);
672 return recent_proc_net_init(net);
673}
674
675static void __net_exit recent_net_exit(struct net *net)
676{
677 struct recent_net *recent_net = recent_pernet(net);
678
679 BUG_ON(!list_empty(&recent_net->tables));
680 recent_proc_net_exit(net);
681}
682
683static struct pernet_operations recent_net_ops = {
684 .init = recent_net_init,
685 .exit = recent_net_exit,
686 .id = &recent_net_id,
687 .size = sizeof(struct recent_net),
688};
689
Jan Engelhardt079aa882008-10-08 11:35:00 +0200690static struct xt_match recent_mt_reg[] __read_mostly = {
691 {
692 .name = "recent",
693 .revision = 0,
Jan Engelhardtee999d82008-10-08 11:35:01 +0200694 .family = NFPROTO_IPV4,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200695 .match = recent_mt,
696 .matchsize = sizeof(struct xt_recent_mtinfo),
697 .checkentry = recent_mt_check,
698 .destroy = recent_mt_destroy,
699 .me = THIS_MODULE,
700 },
701 {
702 .name = "recent",
703 .revision = 0,
Jan Engelhardtee999d82008-10-08 11:35:01 +0200704 .family = NFPROTO_IPV6,
Jan Engelhardt079aa882008-10-08 11:35:00 +0200705 .match = recent_mt,
706 .matchsize = sizeof(struct xt_recent_mtinfo),
707 .checkentry = recent_mt_check,
708 .destroy = recent_mt_destroy,
709 .me = THIS_MODULE,
710 },
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700711};
712
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800713static int __init recent_mt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700715 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700717 if (!ip_list_tot || !ip_pkt_list_tot || ip_pkt_list_tot > 255)
718 return -EINVAL;
719 ip_list_hash_size = 1 << fls(ip_list_tot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100721 err = register_pernet_subsys(&recent_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 if (err)
Patrick McHardy404bdbf2006-05-29 18:21:34 -0700723 return err;
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100724 err = xt_register_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
725 if (err)
726 unregister_pernet_subsys(&recent_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 return err;
728}
729
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800730static void __exit recent_mt_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
Jan Engelhardt079aa882008-10-08 11:35:00 +0200732 xt_unregister_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
Alexey Dobriyan7d07d562010-01-18 08:31:00 +0100733 unregister_pernet_subsys(&recent_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734}
735
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800736module_init(recent_mt_init);
737module_exit(recent_mt_exit);