]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/netfilter/xt_recent.c
Merge tag 'arm-soc/for-3.20/dts' of http://github.com/broadcom/stblinux into fixes
[mirror_ubuntu-artful-kernel.git] / net / netfilter / xt_recent.c
CommitLineData
404bdbfd
PM
1/*
2 * Copyright (c) 2006 Patrick McHardy <kaber@trash.net>
079aa88f 3 * Copyright © CC Computer Consultants GmbH, 2007 - 2008
404bdbfd
PM
4 *
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 */
8bee4bad 15#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
404bdbfd 16#include <linux/init.h>
6709dbbb 17#include <linux/ip.h>
079aa88f
JE
18#include <linux/ipv6.h>
19#include <linux/module.h>
404bdbfd 20#include <linux/moduleparam.h>
1da177e4 21#include <linux/proc_fs.h>
404bdbfd
PM
22#include <linux/seq_file.h>
23#include <linux/string.h>
1da177e4 24#include <linux/ctype.h>
404bdbfd
PM
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>
5a0e3ad6 31#include <linux/slab.h>
2727de76 32#include <linux/vmalloc.h>
457c4cbc 33#include <net/net_namespace.h>
7d07d563 34#include <net/netns/generic.h>
1da177e4 35
6709dbbb 36#include <linux/netfilter/x_tables.h>
e948b20a 37#include <linux/netfilter/xt_recent.h>
1da177e4 38
404bdbfd 39MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
408ffaa4 40MODULE_AUTHOR("Jan Engelhardt <jengelh@medozas.de>");
06bf514e 41MODULE_DESCRIPTION("Xtables: \"recently-seen\" host matching");
404bdbfd 42MODULE_LICENSE("GPL");
e948b20a 43MODULE_ALIAS("ipt_recent");
079aa88f 44MODULE_ALIAS("ip6t_recent");
1da177e4 45
abc86d0f
FW
46static unsigned int ip_list_tot __read_mostly = 100;
47static unsigned int ip_list_hash_size __read_mostly;
48static unsigned int ip_list_perms __read_mostly = 0644;
49static unsigned int ip_list_uid __read_mostly;
50static unsigned int ip_list_gid __read_mostly;
e7be6994 51module_param(ip_list_tot, uint, 0400);
e7be6994
PM
52module_param(ip_list_hash_size, uint, 0400);
53module_param(ip_list_perms, uint, 0400);
5dc7a6d5
JE
54module_param(ip_list_uid, uint, S_IRUGO | S_IWUSR);
55module_param(ip_list_gid, uint, S_IRUGO | S_IWUSR);
404bdbfd 56MODULE_PARM_DESC(ip_list_tot, "number of IPs to remember per list");
404bdbfd 57MODULE_PARM_DESC(ip_list_hash_size, "size of hash table used to look up IPs");
079aa88f 58MODULE_PARM_DESC(ip_list_perms, "permissions on /proc/net/xt_recent/* files");
5dc7a6d5
JE
59MODULE_PARM_DESC(ip_list_uid, "default owner of /proc/net/xt_recent/* files");
60MODULE_PARM_DESC(ip_list_gid, "default owning group of /proc/net/xt_recent/* files");
404bdbfd 61
abc86d0f
FW
62/* retained for backwards compatibility */
63static unsigned int ip_pkt_list_tot __read_mostly;
64module_param(ip_pkt_list_tot, uint, 0400);
65MODULE_PARM_DESC(ip_pkt_list_tot, "number of packets per IP address to remember (max. 255)");
66
67#define XT_RECENT_MAX_NSTAMPS 256
68
404bdbfd
PM
69struct recent_entry {
70 struct list_head list;
71 struct list_head lru_list;
079aa88f
JE
72 union nf_inet_addr addr;
73 u_int16_t family;
404bdbfd
PM
74 u_int8_t ttl;
75 u_int8_t index;
76 u_int16_t nstamps;
77 unsigned long stamps[0];
1da177e4
LT
78};
79
404bdbfd
PM
80struct recent_table {
81 struct list_head list;
e948b20a 82 char name[XT_RECENT_NAME_LEN];
efdedd54 83 union nf_inet_addr mask;
404bdbfd
PM
84 unsigned int refcnt;
85 unsigned int entries;
abc86d0f 86 u8 nstamps_max_mask;
404bdbfd
PM
87 struct list_head lru_list;
88 struct list_head iphash[0];
1da177e4
LT
89};
90
7d07d563
AD
91struct recent_net {
92 struct list_head tables;
93#ifdef CONFIG_PROC_FS
94 struct proc_dir_entry *xt_recent;
7d07d563
AD
95#endif
96};
97
abc86d0f
FW
98static int recent_net_id __read_mostly;
99
7d07d563
AD
100static inline struct recent_net *recent_pernet(struct net *net)
101{
102 return net_generic(net, recent_net_id);
103}
104
1da177e4 105static DEFINE_SPINLOCK(recent_lock);
a0e889bb 106static DEFINE_MUTEX(recent_mutex);
1da177e4
LT
107
108#ifdef CONFIG_PROC_FS
079aa88f 109static const struct file_operations recent_old_fops, recent_mt_fops;
1da177e4
LT
110#endif
111
294188ae
JE
112static u_int32_t hash_rnd __read_mostly;
113static bool hash_rnd_inited __read_mostly;
079aa88f 114
294188ae 115static inline unsigned int recent_entry_hash4(const union nf_inet_addr *addr)
079aa88f 116{
079aa88f
JE
117 return jhash_1word((__force u32)addr->ip, hash_rnd) &
118 (ip_list_hash_size - 1);
119}
1da177e4 120
294188ae 121static inline unsigned int recent_entry_hash6(const union nf_inet_addr *addr)
1da177e4 122{
079aa88f
JE
123 return jhash2((u32 *)addr->ip6, ARRAY_SIZE(addr->ip6), hash_rnd) &
124 (ip_list_hash_size - 1);
1da177e4
LT
125}
126
404bdbfd 127static struct recent_entry *
079aa88f
JE
128recent_entry_lookup(const struct recent_table *table,
129 const union nf_inet_addr *addrp, u_int16_t family,
130 u_int8_t ttl)
1da177e4 131{
404bdbfd
PM
132 struct recent_entry *e;
133 unsigned int h;
134
ee999d8b 135 if (family == NFPROTO_IPV4)
079aa88f
JE
136 h = recent_entry_hash4(addrp);
137 else
138 h = recent_entry_hash6(addrp);
139
404bdbfd 140 list_for_each_entry(e, &table->iphash[h], list)
079aa88f
JE
141 if (e->family == family &&
142 memcmp(&e->addr, addrp, sizeof(e->addr)) == 0 &&
143 (ttl == e->ttl || ttl == 0 || e->ttl == 0))
404bdbfd
PM
144 return e;
145 return NULL;
146}
1da177e4 147
404bdbfd
PM
148static void recent_entry_remove(struct recent_table *t, struct recent_entry *e)
149{
150 list_del(&e->list);
151 list_del(&e->lru_list);
152 kfree(e);
153 t->entries--;
154}
1da177e4 155
0079c5ae
TG
156/*
157 * Drop entries with timestamps older then 'time'.
158 */
159static void recent_entry_reap(struct recent_table *t, unsigned long time)
160{
161 struct recent_entry *e;
162
163 /*
164 * The head of the LRU list is always the oldest entry.
165 */
166 e = list_entry(t->lru_list.next, struct recent_entry, lru_list);
167
168 /*
169 * The last time stamp is the most recent.
170 */
171 if (time_after(time, e->stamps[e->index-1]))
172 recent_entry_remove(t, e);
173}
174
404bdbfd 175static struct recent_entry *
079aa88f
JE
176recent_entry_init(struct recent_table *t, const union nf_inet_addr *addr,
177 u_int16_t family, u_int8_t ttl)
404bdbfd
PM
178{
179 struct recent_entry *e;
abc86d0f 180 unsigned int nstamps_max = t->nstamps_max_mask;
1da177e4 181
404bdbfd
PM
182 if (t->entries >= ip_list_tot) {
183 e = list_entry(t->lru_list.next, struct recent_entry, lru_list);
184 recent_entry_remove(t, e);
1da177e4 185 }
abc86d0f
FW
186
187 nstamps_max += 1;
188 e = kmalloc(sizeof(*e) + sizeof(e->stamps[0]) * nstamps_max,
404bdbfd
PM
189 GFP_ATOMIC);
190 if (e == NULL)
191 return NULL;
079aa88f 192 memcpy(&e->addr, addr, sizeof(e->addr));
404bdbfd
PM
193 e->ttl = ttl;
194 e->stamps[0] = jiffies;
195 e->nstamps = 1;
196 e->index = 1;
079aa88f 197 e->family = family;
ee999d8b 198 if (family == NFPROTO_IPV4)
079aa88f
JE
199 list_add_tail(&e->list, &t->iphash[recent_entry_hash4(addr)]);
200 else
201 list_add_tail(&e->list, &t->iphash[recent_entry_hash6(addr)]);
404bdbfd
PM
202 list_add_tail(&e->lru_list, &t->lru_list);
203 t->entries++;
204 return e;
205}
1da177e4 206
404bdbfd
PM
207static void recent_entry_update(struct recent_table *t, struct recent_entry *e)
208{
abc86d0f 209 e->index &= t->nstamps_max_mask;
404bdbfd
PM
210 e->stamps[e->index++] = jiffies;
211 if (e->index > e->nstamps)
212 e->nstamps = e->index;
404bdbfd
PM
213 list_move_tail(&e->lru_list, &t->lru_list);
214}
1da177e4 215
7d07d563
AD
216static struct recent_table *recent_table_lookup(struct recent_net *recent_net,
217 const char *name)
404bdbfd
PM
218{
219 struct recent_table *t;
1da177e4 220
7d07d563 221 list_for_each_entry(t, &recent_net->tables, list)
404bdbfd
PM
222 if (!strcmp(t->name, name))
223 return t;
224 return NULL;
225}
1da177e4 226
404bdbfd
PM
227static void recent_table_flush(struct recent_table *t)
228{
229 struct recent_entry *e, *next;
230 unsigned int i;
1da177e4 231
7c4e36bc 232 for (i = 0; i < ip_list_hash_size; i++)
404bdbfd
PM
233 list_for_each_entry_safe(e, next, &t->iphash[i], list)
234 recent_entry_remove(t, e);
1da177e4
LT
235}
236
1d93a9cb 237static bool
62fc8051 238recent_mt(const struct sk_buff *skb, struct xt_action_param *par)
1da177e4 239{
7d07d563
AD
240 struct net *net = dev_net(par->in ? par->in : par->out);
241 struct recent_net *recent_net = recent_pernet(net);
efdedd54 242 const struct xt_recent_mtinfo_v1 *info = par->matchinfo;
404bdbfd
PM
243 struct recent_table *t;
244 struct recent_entry *e;
efdedd54 245 union nf_inet_addr addr = {}, addr_mask;
404bdbfd 246 u_int8_t ttl;
1d93a9cb 247 bool ret = info->invert;
1da177e4 248
aa5fa318 249 if (par->family == NFPROTO_IPV4) {
079aa88f
JE
250 const struct iphdr *iph = ip_hdr(skb);
251
252 if (info->side == XT_RECENT_DEST)
253 addr.ip = iph->daddr;
254 else
255 addr.ip = iph->saddr;
256
257 ttl = iph->ttl;
258 } else {
259 const struct ipv6hdr *iph = ipv6_hdr(skb);
260
261 if (info->side == XT_RECENT_DEST)
262 memcpy(&addr.in6, &iph->daddr, sizeof(addr.in6));
263 else
264 memcpy(&addr.in6, &iph->saddr, sizeof(addr.in6));
265
266 ttl = iph->hop_limit;
267 }
1da177e4 268
404bdbfd 269 /* use TTL as seen before forwarding */
f7108a20 270 if (par->out != NULL && skb->sk == NULL)
404bdbfd 271 ttl++;
1da177e4 272
1da177e4 273 spin_lock_bh(&recent_lock);
7d07d563 274 t = recent_table_lookup(recent_net, info->name);
efdedd54
DF
275
276 nf_inet_addr_mask(&addr, &addr_mask, &t->mask);
277
278 e = recent_entry_lookup(t, &addr_mask, par->family,
079aa88f 279 (info->check_set & XT_RECENT_TTL) ? ttl : 0);
404bdbfd 280 if (e == NULL) {
e948b20a 281 if (!(info->check_set & XT_RECENT_SET))
404bdbfd 282 goto out;
efdedd54 283 e = recent_entry_init(t, &addr_mask, par->family, ttl);
404bdbfd 284 if (e == NULL)
b4ba2611 285 par->hotdrop = true;
1d93a9cb 286 ret = !ret;
404bdbfd 287 goto out;
1da177e4
LT
288 }
289
e948b20a 290 if (info->check_set & XT_RECENT_SET)
1d93a9cb 291 ret = !ret;
e948b20a 292 else if (info->check_set & XT_RECENT_REMOVE) {
404bdbfd 293 recent_entry_remove(t, e);
1d93a9cb 294 ret = !ret;
e948b20a 295 } else if (info->check_set & (XT_RECENT_CHECK | XT_RECENT_UPDATE)) {
855304af 296 unsigned long time = jiffies - info->seconds * HZ;
404bdbfd
PM
297 unsigned int i, hits = 0;
298
299 for (i = 0; i < e->nstamps; i++) {
855304af 300 if (info->seconds && time_after(time, e->stamps[i]))
404bdbfd 301 continue;
ef169150 302 if (!info->hit_count || ++hits >= info->hit_count) {
1d93a9cb 303 ret = !ret;
404bdbfd 304 break;
1da177e4 305 }
1da177e4 306 }
0079c5ae
TG
307
308 /* info->seconds must be non-zero */
309 if (info->check_set & XT_RECENT_REAP)
310 recent_entry_reap(t, time);
1da177e4
LT
311 }
312
e948b20a
JE
313 if (info->check_set & XT_RECENT_SET ||
314 (info->check_set & XT_RECENT_UPDATE && ret)) {
404bdbfd
PM
315 recent_entry_update(t, e);
316 e->ttl = ttl;
317 }
318out:
319 spin_unlock_bh(&recent_lock);
320 return ret;
1da177e4
LT
321}
322
2727de76
ED
323static void recent_table_free(void *addr)
324{
4cb28970 325 kvfree(addr);
2727de76
ED
326}
327
efdedd54
DF
328static int recent_mt_check(const struct xt_mtchk_param *par,
329 const struct xt_recent_mtinfo_v1 *info)
1da177e4 330{
7d07d563 331 struct recent_net *recent_net = recent_pernet(par->net);
404bdbfd 332 struct recent_table *t;
b0ceb560
AD
333#ifdef CONFIG_PROC_FS
334 struct proc_dir_entry *pde;
da742808
EB
335 kuid_t uid;
336 kgid_t gid;
b0ceb560 337#endif
abc86d0f 338 unsigned int nstamp_mask;
95c96174 339 unsigned int i;
bd414ee6 340 int ret = -EINVAL;
2727de76 341 size_t sz;
1da177e4 342
294188ae
JE
343 if (unlikely(!hash_rnd_inited)) {
344 get_random_bytes(&hash_rnd, sizeof(hash_rnd));
345 hash_rnd_inited = true;
346 }
606a9a02 347 if (info->check_set & ~XT_RECENT_VALID_FLAGS) {
ff67e4e4
JE
348 pr_info("Unsupported user space flags (%08x)\n",
349 info->check_set);
bd414ee6 350 return -EINVAL;
606a9a02 351 }
404bdbfd 352 if (hweight8(info->check_set &
e948b20a
JE
353 (XT_RECENT_SET | XT_RECENT_REMOVE |
354 XT_RECENT_CHECK | XT_RECENT_UPDATE)) != 1)
bd414ee6 355 return -EINVAL;
e948b20a 356 if ((info->check_set & (XT_RECENT_SET | XT_RECENT_REMOVE)) &&
0079c5ae
TG
357 (info->seconds || info->hit_count ||
358 (info->check_set & XT_RECENT_MODIFIERS)))
bd414ee6 359 return -EINVAL;
0079c5ae 360 if ((info->check_set & XT_RECENT_REAP) && !info->seconds)
bd414ee6 361 return -EINVAL;
abc86d0f
FW
362 if (info->hit_count >= XT_RECENT_MAX_NSTAMPS) {
363 pr_info("hitcount (%u) is larger than allowed maximum (%u)\n",
364 info->hit_count, XT_RECENT_MAX_NSTAMPS - 1);
bd414ee6 365 return -EINVAL;
98e6d2d5 366 }
404bdbfd 367 if (info->name[0] == '\0' ||
e948b20a 368 strnlen(info->name, XT_RECENT_NAME_LEN) == XT_RECENT_NAME_LEN)
bd414ee6 369 return -EINVAL;
1da177e4 370
abc86d0f
FW
371 if (ip_pkt_list_tot && info->hit_count < ip_pkt_list_tot)
372 nstamp_mask = roundup_pow_of_two(ip_pkt_list_tot) - 1;
373 else if (info->hit_count)
374 nstamp_mask = roundup_pow_of_two(info->hit_count) - 1;
375 else
376 nstamp_mask = 32 - 1;
377
a0e889bb 378 mutex_lock(&recent_mutex);
7d07d563 379 t = recent_table_lookup(recent_net, info->name);
404bdbfd 380 if (t != NULL) {
abc86d0f
FW
381 if (info->hit_count > t->nstamps_max_mask) {
382 pr_info("hitcount (%u) is larger than packets to be remembered (%u) for table %s\n",
383 info->hit_count, t->nstamps_max_mask + 1,
384 info->name);
385 ret = -EINVAL;
386 goto out;
387 }
388
404bdbfd 389 t->refcnt++;
bd414ee6 390 ret = 0;
404bdbfd 391 goto out;
1da177e4
LT
392 }
393
2727de76
ED
394 sz = sizeof(*t) + sizeof(t->iphash[0]) * ip_list_hash_size;
395 if (sz <= PAGE_SIZE)
396 t = kzalloc(sz, GFP_KERNEL);
397 else
398 t = vzalloc(sz);
4a5a5c73
JE
399 if (t == NULL) {
400 ret = -ENOMEM;
404bdbfd 401 goto out;
4a5a5c73 402 }
2b2283d0 403 t->refcnt = 1;
abc86d0f 404 t->nstamps_max_mask = nstamp_mask;
efdedd54
DF
405
406 memcpy(&t->mask, &info->mask, sizeof(t->mask));
404bdbfd
PM
407 strcpy(t->name, info->name);
408 INIT_LIST_HEAD(&t->lru_list);
409 for (i = 0; i < ip_list_hash_size; i++)
410 INIT_LIST_HEAD(&t->iphash[i]);
411#ifdef CONFIG_PROC_FS
da742808
EB
412 uid = make_kuid(&init_user_ns, ip_list_uid);
413 gid = make_kgid(&init_user_ns, ip_list_gid);
414 if (!uid_valid(uid) || !gid_valid(gid)) {
2727de76 415 recent_table_free(t);
da742808
EB
416 ret = -EINVAL;
417 goto out;
418 }
7d07d563 419 pde = proc_create_data(t->name, ip_list_perms, recent_net->xt_recent,
b09eec16 420 &recent_mt_fops, t);
b0ceb560 421 if (pde == NULL) {
2727de76 422 recent_table_free(t);
4a5a5c73 423 ret = -ENOMEM;
404bdbfd 424 goto out;
1da177e4 425 }
271a15ea 426 proc_set_user(pde, uid, gid);
1da177e4 427#endif
a0e889bb 428 spin_lock_bh(&recent_lock);
7d07d563 429 list_add_tail(&t->list, &recent_net->tables);
a0e889bb 430 spin_unlock_bh(&recent_lock);
bd414ee6 431 ret = 0;
404bdbfd 432out:
a0e889bb 433 mutex_unlock(&recent_mutex);
404bdbfd
PM
434 return ret;
435}
1da177e4 436
efdedd54
DF
437static int recent_mt_check_v0(const struct xt_mtchk_param *par)
438{
439 const struct xt_recent_mtinfo_v0 *info_v0 = par->matchinfo;
440 struct xt_recent_mtinfo_v1 info_v1;
441
442 /* Copy revision 0 structure to revision 1 */
443 memcpy(&info_v1, info_v0, sizeof(struct xt_recent_mtinfo));
444 /* Set default mask to ensure backward compatible behaviour */
445 memset(info_v1.mask.all, 0xFF, sizeof(info_v1.mask.all));
446
447 return recent_mt_check(par, &info_v1);
448}
449
450static int recent_mt_check_v1(const struct xt_mtchk_param *par)
451{
452 return recent_mt_check(par, par->matchinfo);
453}
454
6be3d859 455static void recent_mt_destroy(const struct xt_mtdtor_param *par)
404bdbfd 456{
7d07d563 457 struct recent_net *recent_net = recent_pernet(par->net);
efdedd54 458 const struct xt_recent_mtinfo_v1 *info = par->matchinfo;
404bdbfd 459 struct recent_table *t;
1da177e4 460
a0e889bb 461 mutex_lock(&recent_mutex);
7d07d563 462 t = recent_table_lookup(recent_net, info->name);
404bdbfd 463 if (--t->refcnt == 0) {
a0e889bb 464 spin_lock_bh(&recent_lock);
404bdbfd 465 list_del(&t->list);
a0e889bb 466 spin_unlock_bh(&recent_lock);
404bdbfd 467#ifdef CONFIG_PROC_FS
665e205c
VL
468 if (recent_net->xt_recent != NULL)
469 remove_proc_entry(t->name, recent_net->xt_recent);
1da177e4 470#endif
a8ddc916 471 recent_table_flush(t);
2727de76 472 recent_table_free(t);
1da177e4 473 }
a0e889bb 474 mutex_unlock(&recent_mutex);
404bdbfd 475}
1da177e4 476
404bdbfd
PM
477#ifdef CONFIG_PROC_FS
478struct recent_iter_state {
079aa88f 479 const struct recent_table *table;
404bdbfd
PM
480 unsigned int bucket;
481};
1da177e4 482
404bdbfd 483static void *recent_seq_start(struct seq_file *seq, loff_t *pos)
855304af 484 __acquires(recent_lock)
404bdbfd
PM
485{
486 struct recent_iter_state *st = seq->private;
a47362a2 487 const struct recent_table *t = st->table;
404bdbfd
PM
488 struct recent_entry *e;
489 loff_t p = *pos;
1da177e4 490
1da177e4 491 spin_lock_bh(&recent_lock);
1da177e4 492
7c4e36bc
JE
493 for (st->bucket = 0; st->bucket < ip_list_hash_size; st->bucket++)
494 list_for_each_entry(e, &t->iphash[st->bucket], list)
404bdbfd
PM
495 if (p-- == 0)
496 return e;
404bdbfd
PM
497 return NULL;
498}
1da177e4 499
404bdbfd
PM
500static void *recent_seq_next(struct seq_file *seq, void *v, loff_t *pos)
501{
502 struct recent_iter_state *st = seq->private;
3cf93c96 503 const struct recent_table *t = st->table;
079aa88f
JE
504 const struct recent_entry *e = v;
505 const struct list_head *head = e->list.next;
404bdbfd
PM
506
507 while (head == &t->iphash[st->bucket]) {
508 if (++st->bucket >= ip_list_hash_size)
509 return NULL;
510 head = t->iphash[st->bucket].next;
511 }
512 (*pos)++;
513 return list_entry(head, struct recent_entry, list);
1da177e4
LT
514}
515
404bdbfd 516static void recent_seq_stop(struct seq_file *s, void *v)
855304af 517 __releases(recent_lock)
1da177e4 518{
404bdbfd
PM
519 spin_unlock_bh(&recent_lock);
520}
1da177e4 521
404bdbfd
PM
522static int recent_seq_show(struct seq_file *seq, void *v)
523{
3cf93c96 524 const struct recent_entry *e = v;
abc86d0f
FW
525 struct recent_iter_state *st = seq->private;
526 const struct recent_table *t = st->table;
404bdbfd
PM
527 unsigned int i;
528
abc86d0f
FW
529 i = (e->index - 1) & t->nstamps_max_mask;
530
ee999d8b 531 if (e->family == NFPROTO_IPV4)
14d5e834
HH
532 seq_printf(seq, "src=%pI4 ttl: %u last_seen: %lu oldest_pkt: %u",
533 &e->addr.ip, e->ttl, e->stamps[i], e->index);
079aa88f 534 else
5b095d98 535 seq_printf(seq, "src=%pI6 ttl: %u last_seen: %lu oldest_pkt: %u",
38ff4fa4 536 &e->addr.in6, e->ttl, e->stamps[i], e->index);
404bdbfd
PM
537 for (i = 0; i < e->nstamps; i++)
538 seq_printf(seq, "%s %lu", i ? "," : "", e->stamps[i]);
539 seq_printf(seq, "\n");
540 return 0;
541}
1da177e4 542
56b3d975 543static const struct seq_operations recent_seq_ops = {
404bdbfd
PM
544 .start = recent_seq_start,
545 .next = recent_seq_next,
546 .stop = recent_seq_stop,
547 .show = recent_seq_show,
548};
1da177e4 549
404bdbfd
PM
550static int recent_seq_open(struct inode *inode, struct file *file)
551{
404bdbfd 552 struct recent_iter_state *st;
404bdbfd 553
e2da5913 554 st = __seq_open_private(file, &recent_seq_ops, sizeof(*st));
404bdbfd
PM
555 if (st == NULL)
556 return -ENOMEM;
3af8e31c 557
d9dda78b 558 st->table = PDE_DATA(inode);
e2da5913 559 return 0;
404bdbfd 560}
1da177e4 561
079aa88f
JE
562static ssize_t
563recent_mt_proc_write(struct file *file, const char __user *input,
564 size_t size, loff_t *loff)
565{
d9dda78b 566 struct recent_table *t = PDE_DATA(file_inode(file));
079aa88f
JE
567 struct recent_entry *e;
568 char buf[sizeof("+b335:1d35:1e55:dead:c0de:1715:5afe:c0de")];
569 const char *c = buf;
325fb5b4 570 union nf_inet_addr addr = {};
079aa88f
JE
571 u_int16_t family;
572 bool add, succ;
573
574 if (size == 0)
575 return 0;
576 if (size > sizeof(buf))
577 size = sizeof(buf);
578 if (copy_from_user(buf, input, size) != 0)
579 return -EFAULT;
580
581 /* Strict protocol! */
582 if (*loff != 0)
583 return -ESPIPE;
584 switch (*c) {
585 case '/': /* flush table */
586 spin_lock_bh(&recent_lock);
587 recent_table_flush(t);
588 spin_unlock_bh(&recent_lock);
589 return size;
590 case '-': /* remove address */
591 add = false;
592 break;
593 case '+': /* add address */
594 add = true;
595 break;
596 default:
8bee4bad 597 pr_info("Need \"+ip\", \"-ip\" or \"/\"\n");
079aa88f
JE
598 return -EINVAL;
599 }
600
601 ++c;
602 --size;
603 if (strnchr(c, size, ':') != NULL) {
ee999d8b 604 family = NFPROTO_IPV6;
079aa88f
JE
605 succ = in6_pton(c, size, (void *)&addr, '\n', NULL);
606 } else {
ee999d8b 607 family = NFPROTO_IPV4;
079aa88f
JE
608 succ = in4_pton(c, size, (void *)&addr, '\n', NULL);
609 }
610
611 if (!succ) {
8bee4bad 612 pr_info("illegal address written to procfs\n");
079aa88f
JE
613 return -EINVAL;
614 }
615
616 spin_lock_bh(&recent_lock);
617 e = recent_entry_lookup(t, &addr, family, 0);
618 if (e == NULL) {
619 if (add)
620 recent_entry_init(t, &addr, family, 0);
621 } else {
622 if (add)
623 recent_entry_update(t, e);
624 else
625 recent_entry_remove(t, e);
626 }
627 spin_unlock_bh(&recent_lock);
628 /* Note we removed one above */
629 *loff += size + 1;
630 return size + 1;
631}
632
633static const struct file_operations recent_mt_fops = {
634 .open = recent_seq_open,
635 .read = seq_read,
636 .write = recent_mt_proc_write,
637 .release = seq_release_private,
638 .owner = THIS_MODULE,
6038f373 639 .llseek = seq_lseek,
079aa88f 640};
7d07d563
AD
641
642static int __net_init recent_proc_net_init(struct net *net)
643{
644 struct recent_net *recent_net = recent_pernet(net);
645
646 recent_net->xt_recent = proc_mkdir("xt_recent", net->proc_net);
647 if (!recent_net->xt_recent)
648 return -ENOMEM;
7d07d563
AD
649 return 0;
650}
651
652static void __net_exit recent_proc_net_exit(struct net *net)
653{
665e205c
VL
654 struct recent_net *recent_net = recent_pernet(net);
655 struct recent_table *t;
656
657 /* recent_net_exit() is called before recent_mt_destroy(). Make sure
658 * that the parent xt_recent proc entry is is empty before trying to
659 * remove it.
660 */
661 spin_lock_bh(&recent_lock);
662 list_for_each_entry(t, &recent_net->tables, list)
663 remove_proc_entry(t->name, recent_net->xt_recent);
664
665 recent_net->xt_recent = NULL;
666 spin_unlock_bh(&recent_lock);
667
ece31ffd 668 remove_proc_entry("xt_recent", net->proc_net);
7d07d563
AD
669}
670#else
671static inline int recent_proc_net_init(struct net *net)
672{
673 return 0;
674}
675
676static inline void recent_proc_net_exit(struct net *net)
677{
678}
1da177e4 679#endif /* CONFIG_PROC_FS */
1da177e4 680
7d07d563
AD
681static int __net_init recent_net_init(struct net *net)
682{
683 struct recent_net *recent_net = recent_pernet(net);
684
685 INIT_LIST_HEAD(&recent_net->tables);
686 return recent_proc_net_init(net);
687}
688
689static void __net_exit recent_net_exit(struct net *net)
690{
7d07d563
AD
691 recent_proc_net_exit(net);
692}
693
694static struct pernet_operations recent_net_ops = {
695 .init = recent_net_init,
696 .exit = recent_net_exit,
697 .id = &recent_net_id,
698 .size = sizeof(struct recent_net),
699};
700
079aa88f
JE
701static struct xt_match recent_mt_reg[] __read_mostly = {
702 {
703 .name = "recent",
704 .revision = 0,
ee999d8b 705 .family = NFPROTO_IPV4,
079aa88f
JE
706 .match = recent_mt,
707 .matchsize = sizeof(struct xt_recent_mtinfo),
efdedd54 708 .checkentry = recent_mt_check_v0,
079aa88f
JE
709 .destroy = recent_mt_destroy,
710 .me = THIS_MODULE,
711 },
712 {
713 .name = "recent",
714 .revision = 0,
ee999d8b 715 .family = NFPROTO_IPV6,
079aa88f
JE
716 .match = recent_mt,
717 .matchsize = sizeof(struct xt_recent_mtinfo),
efdedd54
DF
718 .checkentry = recent_mt_check_v0,
719 .destroy = recent_mt_destroy,
720 .me = THIS_MODULE,
721 },
722 {
723 .name = "recent",
724 .revision = 1,
725 .family = NFPROTO_IPV4,
726 .match = recent_mt,
727 .matchsize = sizeof(struct xt_recent_mtinfo_v1),
728 .checkentry = recent_mt_check_v1,
079aa88f
JE
729 .destroy = recent_mt_destroy,
730 .me = THIS_MODULE,
731 },
efdedd54
DF
732 {
733 .name = "recent",
734 .revision = 1,
735 .family = NFPROTO_IPV6,
736 .match = recent_mt,
737 .matchsize = sizeof(struct xt_recent_mtinfo_v1),
738 .checkentry = recent_mt_check_v1,
739 .destroy = recent_mt_destroy,
740 .me = THIS_MODULE,
741 }
1da177e4
LT
742};
743
d3c5ee6d 744static int __init recent_mt_init(void)
1da177e4 745{
404bdbfd 746 int err;
1da177e4 747
abc86d0f
FW
748 BUILD_BUG_ON_NOT_POWER_OF_2(XT_RECENT_MAX_NSTAMPS);
749
750 if (!ip_list_tot || ip_pkt_list_tot >= XT_RECENT_MAX_NSTAMPS)
404bdbfd
PM
751 return -EINVAL;
752 ip_list_hash_size = 1 << fls(ip_list_tot);
1da177e4 753
7d07d563 754 err = register_pernet_subsys(&recent_net_ops);
1da177e4 755 if (err)
404bdbfd 756 return err;
7d07d563
AD
757 err = xt_register_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
758 if (err)
759 unregister_pernet_subsys(&recent_net_ops);
1da177e4
LT
760 return err;
761}
762
d3c5ee6d 763static void __exit recent_mt_exit(void)
1da177e4 764{
079aa88f 765 xt_unregister_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg));
7d07d563 766 unregister_pernet_subsys(&recent_net_ops);
1da177e4
LT
767}
768
d3c5ee6d
JE
769module_init(recent_mt_init);
770module_exit(recent_mt_exit);