netfilter: xtables: slightly better error reporting
[deliverable/linux.git] / net / netfilter / xt_hashlimit.c
CommitLineData
09e410de
JE
1/*
2 * xt_hashlimit - Netfilter module to limit the number of packets per time
3ad2f3fb 3 * separately for each hashbucket (sourceip/sourceport/dstip/dstport)
1da177e4 4 *
09e410de
JE
5 * (C) 2003-2004 by Harald Welte <laforge@netfilter.org>
6 * Copyright © CC Computer Consultants GmbH, 2007 - 2008
1da177e4
LT
7 *
8 * Development of this code was funded by Astaro AG, http://www.astaro.com/
1da177e4 9 */
8bee4bad 10#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
1da177e4 11#include <linux/module.h>
1da177e4
LT
12#include <linux/spinlock.h>
13#include <linux/random.h>
14#include <linux/jhash.h>
15#include <linux/slab.h>
16#include <linux/vmalloc.h>
1da177e4
LT
17#include <linux/proc_fs.h>
18#include <linux/seq_file.h>
19#include <linux/list.h>
39b46fc6 20#include <linux/skbuff.h>
d7fe0f24 21#include <linux/mm.h>
39b46fc6
PM
22#include <linux/in.h>
23#include <linux/ip.h>
7b21e09d 24#if defined(CONFIG_IP6_NF_IPTABLES) || defined(CONFIG_IP6_NF_IPTABLES_MODULE)
39b46fc6 25#include <linux/ipv6.h>
193b23c5 26#include <net/ipv6.h>
7b21e09d
ED
27#endif
28
457c4cbc 29#include <net/net_namespace.h>
e89fc3f1 30#include <net/netns/generic.h>
1da177e4 31
39b46fc6 32#include <linux/netfilter/x_tables.h>
1da177e4 33#include <linux/netfilter_ipv4/ip_tables.h>
39b46fc6
PM
34#include <linux/netfilter_ipv6/ip6_tables.h>
35#include <linux/netfilter/xt_hashlimit.h>
14cc3e2b 36#include <linux/mutex.h>
1da177e4
LT
37
38MODULE_LICENSE("GPL");
39MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
408ffaa4 40MODULE_AUTHOR("Jan Engelhardt <jengelh@medozas.de>");
2ae15b64 41MODULE_DESCRIPTION("Xtables: per hash-bucket rate-limit match");
39b46fc6
PM
42MODULE_ALIAS("ipt_hashlimit");
43MODULE_ALIAS("ip6t_hashlimit");
1da177e4 44
e89fc3f1
AD
45struct hashlimit_net {
46 struct hlist_head htables;
47 struct proc_dir_entry *ipt_hashlimit;
48 struct proc_dir_entry *ip6t_hashlimit;
49};
50
51static int hashlimit_net_id;
52static inline struct hashlimit_net *hashlimit_pernet(struct net *net)
53{
54 return net_generic(net, hashlimit_net_id);
55}
56
1da177e4 57/* need to declare this at the top */
da7071d7 58static const struct file_operations dl_file_ops;
1da177e4
LT
59
60/* hash table crap */
1da177e4 61struct dsthash_dst {
39b46fc6
PM
62 union {
63 struct {
64 __be32 src;
65 __be32 dst;
66 } ip;
7b21e09d 67#if defined(CONFIG_IP6_NF_IPTABLES) || defined(CONFIG_IP6_NF_IPTABLES_MODULE)
39b46fc6
PM
68 struct {
69 __be32 src[4];
70 __be32 dst[4];
71 } ip6;
7b21e09d 72#endif
09e410de 73 };
6a19d614
AV
74 __be16 src_port;
75 __be16 dst_port;
1da177e4
LT
76};
77
78struct dsthash_ent {
79 /* static / read-only parts in the beginning */
80 struct hlist_node node;
81 struct dsthash_dst dst;
82
83 /* modified structure members in the end */
84 unsigned long expires; /* precalculated expiry time */
85 struct {
86 unsigned long prev; /* last modification */
87 u_int32_t credit;
88 u_int32_t credit_cap, cost;
89 } rateinfo;
90};
91
39b46fc6 92struct xt_hashlimit_htable {
1da177e4 93 struct hlist_node node; /* global list of all htables */
2eff25c1 94 int use;
76108cea 95 u_int8_t family;
89bc7a0f 96 bool rnd_initialized;
1da177e4 97
09e410de 98 struct hashlimit_cfg1 cfg; /* config */
1da177e4
LT
99
100 /* used internally */
101 spinlock_t lock; /* lock for list_head */
102 u_int32_t rnd; /* random seed for hash */
39b46fc6 103 unsigned int count; /* number entries in table */
1da177e4 104 struct timer_list timer; /* timer for gc */
1da177e4
LT
105
106 /* seq_file stuff */
107 struct proc_dir_entry *pde;
e89fc3f1 108 struct net *net;
1da177e4
LT
109
110 struct hlist_head hash[0]; /* hashtable itself */
111};
112
2eff25c1 113static DEFINE_MUTEX(hashlimit_mutex); /* protects htables list */
e18b890b 114static struct kmem_cache *hashlimit_cachep __read_mostly;
1da177e4 115
1d93a9cb 116static inline bool dst_cmp(const struct dsthash_ent *ent,
a47362a2 117 const struct dsthash_dst *b)
1da177e4 118{
39b46fc6 119 return !memcmp(&ent->dst, b, sizeof(ent->dst));
1da177e4
LT
120}
121
39b46fc6
PM
122static u_int32_t
123hash_dst(const struct xt_hashlimit_htable *ht, const struct dsthash_dst *dst)
1da177e4 124{
e2f82ac3
ED
125 u_int32_t hash = jhash2((const u32 *)dst,
126 sizeof(*dst)/sizeof(u32),
127 ht->rnd);
128 /*
129 * Instead of returning hash % ht->cfg.size (implying a divide)
130 * we return the high 32 bits of the (hash * ht->cfg.size) that will
131 * give results between [0 and cfg.size-1] and same hash distribution,
132 * but using a multiply, less expensive than a divide
133 */
134 return ((u64)hash * ht->cfg.size) >> 32;
1da177e4
LT
135}
136
39b46fc6 137static struct dsthash_ent *
a47362a2
JE
138dsthash_find(const struct xt_hashlimit_htable *ht,
139 const struct dsthash_dst *dst)
1da177e4
LT
140{
141 struct dsthash_ent *ent;
142 struct hlist_node *pos;
143 u_int32_t hash = hash_dst(ht, dst);
144
39b46fc6
PM
145 if (!hlist_empty(&ht->hash[hash])) {
146 hlist_for_each_entry(ent, pos, &ht->hash[hash], node)
147 if (dst_cmp(ent, dst))
1da177e4 148 return ent;
39b46fc6 149 }
1da177e4
LT
150 return NULL;
151}
152
153/* allocate dsthash_ent, initialize dst, put in htable and lock it */
154static struct dsthash_ent *
a47362a2
JE
155dsthash_alloc_init(struct xt_hashlimit_htable *ht,
156 const struct dsthash_dst *dst)
1da177e4
LT
157{
158 struct dsthash_ent *ent;
159
160 /* initialize hash with random val at the time we allocate
161 * the first hashtable entry */
bf0857ea 162 if (!ht->rnd_initialized) {
af07d241 163 get_random_bytes(&ht->rnd, sizeof(ht->rnd));
89bc7a0f 164 ht->rnd_initialized = true;
bf0857ea 165 }
1da177e4 166
39b46fc6 167 if (ht->cfg.max && ht->count >= ht->cfg.max) {
1da177e4
LT
168 /* FIXME: do something. question is what.. */
169 if (net_ratelimit())
8bee4bad 170 pr_err("max count of %u reached\n", ht->cfg.max);
1da177e4
LT
171 return NULL;
172 }
173
174 ent = kmem_cache_alloc(hashlimit_cachep, GFP_ATOMIC);
175 if (!ent) {
176 if (net_ratelimit())
8bee4bad 177 pr_err("cannot allocate dsthash_ent\n");
1da177e4
LT
178 return NULL;
179 }
39b46fc6 180 memcpy(&ent->dst, dst, sizeof(ent->dst));
1da177e4
LT
181
182 hlist_add_head(&ent->node, &ht->hash[hash_dst(ht, dst)]);
39b46fc6 183 ht->count++;
1da177e4
LT
184 return ent;
185}
186
39b46fc6
PM
187static inline void
188dsthash_free(struct xt_hashlimit_htable *ht, struct dsthash_ent *ent)
1da177e4
LT
189{
190 hlist_del(&ent->node);
191 kmem_cache_free(hashlimit_cachep, ent);
39b46fc6 192 ht->count--;
1da177e4
LT
193}
194static void htable_gc(unsigned long htlong);
195
e89fc3f1 196static int htable_create_v0(struct net *net, struct xt_hashlimit_info *minfo, u_int8_t family)
1da177e4 197{
e89fc3f1 198 struct hashlimit_net *hashlimit_net = hashlimit_pernet(net);
39b46fc6 199 struct xt_hashlimit_htable *hinfo;
1da177e4 200 unsigned int size;
39b46fc6 201 unsigned int i;
1da177e4
LT
202
203 if (minfo->cfg.size)
204 size = minfo->cfg.size;
205 else {
4481374c 206 size = ((totalram_pages << PAGE_SHIFT) / 16384) /
39b46fc6 207 sizeof(struct list_head);
4481374c 208 if (totalram_pages > (1024 * 1024 * 1024 / PAGE_SIZE))
1da177e4
LT
209 size = 8192;
210 if (size < 16)
211 size = 16;
212 }
213 /* FIXME: don't use vmalloc() here or anywhere else -HW */
39b46fc6
PM
214 hinfo = vmalloc(sizeof(struct xt_hashlimit_htable) +
215 sizeof(struct list_head) * size);
85bc3f38 216 if (!hinfo)
4a5a5c73 217 return -ENOMEM;
1da177e4
LT
218 minfo->hinfo = hinfo;
219
220 /* copy match config into hashtable config */
09e410de
JE
221 hinfo->cfg.mode = minfo->cfg.mode;
222 hinfo->cfg.avg = minfo->cfg.avg;
223 hinfo->cfg.burst = minfo->cfg.burst;
224 hinfo->cfg.max = minfo->cfg.max;
225 hinfo->cfg.gc_interval = minfo->cfg.gc_interval;
226 hinfo->cfg.expire = minfo->cfg.expire;
227
ee999d8b 228 if (family == NFPROTO_IPV4)
09e410de
JE
229 hinfo->cfg.srcmask = hinfo->cfg.dstmask = 32;
230 else
231 hinfo->cfg.srcmask = hinfo->cfg.dstmask = 128;
232
1da177e4
LT
233 hinfo->cfg.size = size;
234 if (!hinfo->cfg.max)
235 hinfo->cfg.max = 8 * hinfo->cfg.size;
236 else if (hinfo->cfg.max < hinfo->cfg.size)
237 hinfo->cfg.max = hinfo->cfg.size;
238
239 for (i = 0; i < hinfo->cfg.size; i++)
240 INIT_HLIST_HEAD(&hinfo->hash[i]);
241
2eff25c1 242 hinfo->use = 1;
39b46fc6
PM
243 hinfo->count = 0;
244 hinfo->family = family;
89bc7a0f 245 hinfo->rnd_initialized = false;
1da177e4 246 spin_lock_init(&hinfo->lock);
ee999d8b
JE
247 hinfo->pde = proc_create_data(minfo->name, 0,
248 (family == NFPROTO_IPV4) ?
e89fc3f1 249 hashlimit_net->ipt_hashlimit : hashlimit_net->ip6t_hashlimit,
ee999d8b 250 &dl_file_ops, hinfo);
1da177e4
LT
251 if (!hinfo->pde) {
252 vfree(hinfo);
4a5a5c73 253 return -ENOMEM;
1da177e4 254 }
e89fc3f1 255 hinfo->net = net;
1da177e4 256
e6f689db 257 setup_timer(&hinfo->timer, htable_gc, (unsigned long )hinfo);
1da177e4 258 hinfo->timer.expires = jiffies + msecs_to_jiffies(hinfo->cfg.gc_interval);
1da177e4
LT
259 add_timer(&hinfo->timer);
260
e89fc3f1 261 hlist_add_head(&hinfo->node, &hashlimit_net->htables);
1da177e4
LT
262
263 return 0;
264}
265
e89fc3f1
AD
266static int htable_create(struct net *net, struct xt_hashlimit_mtinfo1 *minfo,
267 u_int8_t family)
09e410de 268{
e89fc3f1 269 struct hashlimit_net *hashlimit_net = hashlimit_pernet(net);
09e410de
JE
270 struct xt_hashlimit_htable *hinfo;
271 unsigned int size;
272 unsigned int i;
273
274 if (minfo->cfg.size) {
275 size = minfo->cfg.size;
276 } else {
4481374c 277 size = (totalram_pages << PAGE_SHIFT) / 16384 /
09e410de 278 sizeof(struct list_head);
4481374c 279 if (totalram_pages > 1024 * 1024 * 1024 / PAGE_SIZE)
09e410de
JE
280 size = 8192;
281 if (size < 16)
282 size = 16;
283 }
284 /* FIXME: don't use vmalloc() here or anywhere else -HW */
285 hinfo = vmalloc(sizeof(struct xt_hashlimit_htable) +
286 sizeof(struct list_head) * size);
85bc3f38 287 if (hinfo == NULL)
4a5a5c73 288 return -ENOMEM;
09e410de
JE
289 minfo->hinfo = hinfo;
290
291 /* copy match config into hashtable config */
292 memcpy(&hinfo->cfg, &minfo->cfg, sizeof(hinfo->cfg));
293 hinfo->cfg.size = size;
294 if (hinfo->cfg.max == 0)
295 hinfo->cfg.max = 8 * hinfo->cfg.size;
296 else if (hinfo->cfg.max < hinfo->cfg.size)
297 hinfo->cfg.max = hinfo->cfg.size;
298
299 for (i = 0; i < hinfo->cfg.size; i++)
300 INIT_HLIST_HEAD(&hinfo->hash[i]);
301
2eff25c1 302 hinfo->use = 1;
09e410de
JE
303 hinfo->count = 0;
304 hinfo->family = family;
89bc7a0f 305 hinfo->rnd_initialized = false;
09e410de
JE
306 spin_lock_init(&hinfo->lock);
307
ee999d8b
JE
308 hinfo->pde = proc_create_data(minfo->name, 0,
309 (family == NFPROTO_IPV4) ?
e89fc3f1 310 hashlimit_net->ipt_hashlimit : hashlimit_net->ip6t_hashlimit,
ee999d8b 311 &dl_file_ops, hinfo);
09e410de
JE
312 if (hinfo->pde == NULL) {
313 vfree(hinfo);
4a5a5c73 314 return -ENOMEM;
09e410de 315 }
e89fc3f1 316 hinfo->net = net;
09e410de
JE
317
318 setup_timer(&hinfo->timer, htable_gc, (unsigned long)hinfo);
319 hinfo->timer.expires = jiffies + msecs_to_jiffies(hinfo->cfg.gc_interval);
320 add_timer(&hinfo->timer);
321
e89fc3f1 322 hlist_add_head(&hinfo->node, &hashlimit_net->htables);
09e410de
JE
323
324 return 0;
325}
326
a47362a2
JE
327static bool select_all(const struct xt_hashlimit_htable *ht,
328 const struct dsthash_ent *he)
1da177e4
LT
329{
330 return 1;
331}
332
a47362a2
JE
333static bool select_gc(const struct xt_hashlimit_htable *ht,
334 const struct dsthash_ent *he)
1da177e4 335{
cbebc51f 336 return time_after_eq(jiffies, he->expires);
1da177e4
LT
337}
338
39b46fc6 339static void htable_selective_cleanup(struct xt_hashlimit_htable *ht,
a47362a2
JE
340 bool (*select)(const struct xt_hashlimit_htable *ht,
341 const struct dsthash_ent *he))
1da177e4 342{
39b46fc6 343 unsigned int i;
1da177e4
LT
344
345 /* lock hash table and iterate over it */
346 spin_lock_bh(&ht->lock);
347 for (i = 0; i < ht->cfg.size; i++) {
348 struct dsthash_ent *dh;
349 struct hlist_node *pos, *n;
350 hlist_for_each_entry_safe(dh, pos, n, &ht->hash[i], node) {
351 if ((*select)(ht, dh))
39b46fc6 352 dsthash_free(ht, dh);
1da177e4
LT
353 }
354 }
355 spin_unlock_bh(&ht->lock);
356}
357
358/* hash table garbage collector, run by timer */
359static void htable_gc(unsigned long htlong)
360{
39b46fc6 361 struct xt_hashlimit_htable *ht = (struct xt_hashlimit_htable *)htlong;
1da177e4
LT
362
363 htable_selective_cleanup(ht, select_gc);
364
365 /* re-add the timer accordingly */
366 ht->timer.expires = jiffies + msecs_to_jiffies(ht->cfg.gc_interval);
367 add_timer(&ht->timer);
368}
369
39b46fc6 370static void htable_destroy(struct xt_hashlimit_htable *hinfo)
1da177e4 371{
e89fc3f1
AD
372 struct hashlimit_net *hashlimit_net = hashlimit_pernet(hinfo->net);
373 struct proc_dir_entry *parent;
374
967ab999 375 del_timer_sync(&hinfo->timer);
1da177e4 376
e89fc3f1
AD
377 if (hinfo->family == NFPROTO_IPV4)
378 parent = hashlimit_net->ipt_hashlimit;
379 else
380 parent = hashlimit_net->ip6t_hashlimit;
381 remove_proc_entry(hinfo->pde->name, parent);
1da177e4
LT
382 htable_selective_cleanup(hinfo, select_all);
383 vfree(hinfo);
384}
385
e89fc3f1
AD
386static struct xt_hashlimit_htable *htable_find_get(struct net *net,
387 const char *name,
76108cea 388 u_int8_t family)
1da177e4 389{
e89fc3f1 390 struct hashlimit_net *hashlimit_net = hashlimit_pernet(net);
39b46fc6 391 struct xt_hashlimit_htable *hinfo;
1da177e4
LT
392 struct hlist_node *pos;
393
e89fc3f1 394 hlist_for_each_entry(hinfo, pos, &hashlimit_net->htables, node) {
39b46fc6
PM
395 if (!strcmp(name, hinfo->pde->name) &&
396 hinfo->family == family) {
2eff25c1 397 hinfo->use++;
1da177e4
LT
398 return hinfo;
399 }
400 }
1da177e4
LT
401 return NULL;
402}
403
39b46fc6 404static void htable_put(struct xt_hashlimit_htable *hinfo)
1da177e4 405{
2eff25c1
PM
406 mutex_lock(&hashlimit_mutex);
407 if (--hinfo->use == 0) {
1da177e4 408 hlist_del(&hinfo->node);
1da177e4
LT
409 htable_destroy(hinfo);
410 }
2eff25c1 411 mutex_unlock(&hashlimit_mutex);
1da177e4
LT
412}
413
1da177e4
LT
414/* The algorithm used is the Simple Token Bucket Filter (TBF)
415 * see net/sched/sch_tbf.c in the linux source tree
416 */
417
418/* Rusty: This is my (non-mathematically-inclined) understanding of
419 this algorithm. The `average rate' in jiffies becomes your initial
420 amount of credit `credit' and the most credit you can ever have
421 `credit_cap'. The `peak rate' becomes the cost of passing the
422 test, `cost'.
423
424 `prev' tracks the last packet hit: you gain one credit per jiffy.
425 If you get credit balance more than this, the extra credit is
426 discarded. Every time the match passes, you lose `cost' credits;
427 if you don't have that many, the test fails.
428
429 See Alexey's formal explanation in net/sched/sch_tbf.c.
430
431 To get the maximum range, we multiply by this factor (ie. you get N
432 credits per jiffy). We want to allow a rate as low as 1 per day
433 (slowest userspace tool allows), which means
434 CREDITS_PER_JIFFY*HZ*60*60*24 < 2^32 ie.
435*/
436#define MAX_CPJ (0xFFFFFFFF / (HZ*60*60*24))
437
438/* Repeated shift and or gives us all 1s, final shift and add 1 gives
439 * us the power of 2 below the theoretical max, so GCC simply does a
440 * shift. */
441#define _POW2_BELOW2(x) ((x)|((x)>>1))
442#define _POW2_BELOW4(x) (_POW2_BELOW2(x)|_POW2_BELOW2((x)>>2))
443#define _POW2_BELOW8(x) (_POW2_BELOW4(x)|_POW2_BELOW4((x)>>4))
444#define _POW2_BELOW16(x) (_POW2_BELOW8(x)|_POW2_BELOW8((x)>>8))
445#define _POW2_BELOW32(x) (_POW2_BELOW16(x)|_POW2_BELOW16((x)>>16))
446#define POW2_BELOW32(x) ((_POW2_BELOW32(x)>>1) + 1)
447
448#define CREDITS_PER_JIFFY POW2_BELOW32(MAX_CPJ)
449
450/* Precision saver. */
451static inline u_int32_t
452user2credits(u_int32_t user)
453{
454 /* If multiplying would overflow... */
455 if (user > 0xFFFFFFFF / (HZ*CREDITS_PER_JIFFY))
456 /* Divide first. */
39b46fc6 457 return (user / XT_HASHLIMIT_SCALE) * HZ * CREDITS_PER_JIFFY;
1da177e4 458
39b46fc6 459 return (user * HZ * CREDITS_PER_JIFFY) / XT_HASHLIMIT_SCALE;
1da177e4
LT
460}
461
462static inline void rateinfo_recalc(struct dsthash_ent *dh, unsigned long now)
463{
39b46fc6 464 dh->rateinfo.credit += (now - dh->rateinfo.prev) * CREDITS_PER_JIFFY;
1da177e4
LT
465 if (dh->rateinfo.credit > dh->rateinfo.credit_cap)
466 dh->rateinfo.credit = dh->rateinfo.credit_cap;
39b46fc6
PM
467 dh->rateinfo.prev = now;
468}
469
09e410de
JE
470static inline __be32 maskl(__be32 a, unsigned int l)
471{
1b9b70ea 472 return l ? htonl(ntohl(a) & ~0 << (32 - l)) : 0;
09e410de
JE
473}
474
3ed5df44 475#if defined(CONFIG_IP6_NF_IPTABLES) || defined(CONFIG_IP6_NF_IPTABLES_MODULE)
09e410de
JE
476static void hashlimit_ipv6_mask(__be32 *i, unsigned int p)
477{
478 switch (p) {
1b9b70ea 479 case 0 ... 31:
09e410de
JE
480 i[0] = maskl(i[0], p);
481 i[1] = i[2] = i[3] = 0;
482 break;
1b9b70ea 483 case 32 ... 63:
09e410de
JE
484 i[1] = maskl(i[1], p - 32);
485 i[2] = i[3] = 0;
486 break;
1b9b70ea 487 case 64 ... 95:
09e410de
JE
488 i[2] = maskl(i[2], p - 64);
489 i[3] = 0;
1b9b70ea 490 case 96 ... 127:
09e410de
JE
491 i[3] = maskl(i[3], p - 96);
492 break;
493 case 128:
494 break;
495 }
496}
3ed5df44 497#endif
09e410de 498
39b46fc6 499static int
a47362a2
JE
500hashlimit_init_dst(const struct xt_hashlimit_htable *hinfo,
501 struct dsthash_dst *dst,
39b46fc6
PM
502 const struct sk_buff *skb, unsigned int protoff)
503{
504 __be16 _ports[2], *ports;
193b23c5 505 u8 nexthdr;
39b46fc6
PM
506
507 memset(dst, 0, sizeof(*dst));
508
509 switch (hinfo->family) {
ee999d8b 510 case NFPROTO_IPV4:
39b46fc6 511 if (hinfo->cfg.mode & XT_HASHLIMIT_HASH_DIP)
09e410de
JE
512 dst->ip.dst = maskl(ip_hdr(skb)->daddr,
513 hinfo->cfg.dstmask);
39b46fc6 514 if (hinfo->cfg.mode & XT_HASHLIMIT_HASH_SIP)
09e410de
JE
515 dst->ip.src = maskl(ip_hdr(skb)->saddr,
516 hinfo->cfg.srcmask);
39b46fc6
PM
517
518 if (!(hinfo->cfg.mode &
519 (XT_HASHLIMIT_HASH_DPT | XT_HASHLIMIT_HASH_SPT)))
520 return 0;
eddc9ec5 521 nexthdr = ip_hdr(skb)->protocol;
39b46fc6 522 break;
02dba025 523#if defined(CONFIG_IP6_NF_IPTABLES) || defined(CONFIG_IP6_NF_IPTABLES_MODULE)
ee999d8b 524 case NFPROTO_IPV6:
09e410de
JE
525 if (hinfo->cfg.mode & XT_HASHLIMIT_HASH_DIP) {
526 memcpy(&dst->ip6.dst, &ipv6_hdr(skb)->daddr,
527 sizeof(dst->ip6.dst));
528 hashlimit_ipv6_mask(dst->ip6.dst, hinfo->cfg.dstmask);
529 }
530 if (hinfo->cfg.mode & XT_HASHLIMIT_HASH_SIP) {
531 memcpy(&dst->ip6.src, &ipv6_hdr(skb)->saddr,
532 sizeof(dst->ip6.src));
533 hashlimit_ipv6_mask(dst->ip6.src, hinfo->cfg.srcmask);
534 }
39b46fc6
PM
535
536 if (!(hinfo->cfg.mode &
537 (XT_HASHLIMIT_HASH_DPT | XT_HASHLIMIT_HASH_SPT)))
538 return 0;
193b23c5
PM
539 nexthdr = ipv6_hdr(skb)->nexthdr;
540 protoff = ipv6_skip_exthdr(skb, sizeof(struct ipv6hdr), &nexthdr);
541 if ((int)protoff < 0)
39b46fc6
PM
542 return -1;
543 break;
544#endif
545 default:
546 BUG();
547 return 0;
548 }
549
550 switch (nexthdr) {
551 case IPPROTO_TCP:
552 case IPPROTO_UDP:
a8d0f952 553 case IPPROTO_UDPLITE:
39b46fc6
PM
554 case IPPROTO_SCTP:
555 case IPPROTO_DCCP:
556 ports = skb_header_pointer(skb, protoff, sizeof(_ports),
557 &_ports);
558 break;
559 default:
560 _ports[0] = _ports[1] = 0;
561 ports = _ports;
562 break;
563 }
564 if (!ports)
565 return -1;
566 if (hinfo->cfg.mode & XT_HASHLIMIT_HASH_SPT)
567 dst->src_port = ports[0];
568 if (hinfo->cfg.mode & XT_HASHLIMIT_HASH_DPT)
569 dst->dst_port = ports[1];
570 return 0;
1da177e4
LT
571}
572
1d93a9cb 573static bool
f7108a20 574hashlimit_mt_v0(const struct sk_buff *skb, const struct xt_match_param *par)
1da177e4 575{
28337ff5 576 const struct xt_hashlimit_info *r = par->matchinfo;
39b46fc6 577 struct xt_hashlimit_htable *hinfo = r->hinfo;
1da177e4
LT
578 unsigned long now = jiffies;
579 struct dsthash_ent *dh;
580 struct dsthash_dst dst;
581
f7108a20 582 if (hashlimit_init_dst(hinfo, &dst, skb, par->thoff) < 0)
39b46fc6 583 goto hotdrop;
1da177e4
LT
584
585 spin_lock_bh(&hinfo->lock);
39b46fc6 586 dh = dsthash_find(hinfo, &dst);
1da177e4 587 if (!dh) {
39b46fc6 588 dh = dsthash_alloc_init(hinfo, &dst);
1da177e4 589 if (!dh) {
1da177e4 590 spin_unlock_bh(&hinfo->lock);
39b46fc6 591 goto hotdrop;
1da177e4
LT
592 }
593
594 dh->expires = jiffies + msecs_to_jiffies(hinfo->cfg.expire);
1da177e4 595 dh->rateinfo.prev = jiffies;
39b46fc6
PM
596 dh->rateinfo.credit = user2credits(hinfo->cfg.avg *
597 hinfo->cfg.burst);
598 dh->rateinfo.credit_cap = user2credits(hinfo->cfg.avg *
599 hinfo->cfg.burst);
1da177e4 600 dh->rateinfo.cost = user2credits(hinfo->cfg.avg);
1c7628bd
PM
601 } else {
602 /* update expiration timeout */
603 dh->expires = now + msecs_to_jiffies(hinfo->cfg.expire);
604 rateinfo_recalc(dh, now);
1da177e4
LT
605 }
606
1da177e4
LT
607 if (dh->rateinfo.credit >= dh->rateinfo.cost) {
608 /* We're underlimit. */
609 dh->rateinfo.credit -= dh->rateinfo.cost;
610 spin_unlock_bh(&hinfo->lock);
1d93a9cb 611 return true;
1da177e4
LT
612 }
613
601e68e1 614 spin_unlock_bh(&hinfo->lock);
1da177e4
LT
615
616 /* default case: we're overlimit, thus don't match */
1d93a9cb 617 return false;
39b46fc6
PM
618
619hotdrop:
f7108a20 620 *par->hotdrop = true;
1d93a9cb 621 return false;
1da177e4
LT
622}
623
ccb79bdc 624static bool
f7108a20 625hashlimit_mt(const struct sk_buff *skb, const struct xt_match_param *par)
09e410de 626{
f7108a20 627 const struct xt_hashlimit_mtinfo1 *info = par->matchinfo;
09e410de
JE
628 struct xt_hashlimit_htable *hinfo = info->hinfo;
629 unsigned long now = jiffies;
630 struct dsthash_ent *dh;
631 struct dsthash_dst dst;
632
f7108a20 633 if (hashlimit_init_dst(hinfo, &dst, skb, par->thoff) < 0)
09e410de
JE
634 goto hotdrop;
635
636 spin_lock_bh(&hinfo->lock);
637 dh = dsthash_find(hinfo, &dst);
638 if (dh == NULL) {
639 dh = dsthash_alloc_init(hinfo, &dst);
640 if (dh == NULL) {
641 spin_unlock_bh(&hinfo->lock);
642 goto hotdrop;
643 }
644
645 dh->expires = jiffies + msecs_to_jiffies(hinfo->cfg.expire);
646 dh->rateinfo.prev = jiffies;
647 dh->rateinfo.credit = user2credits(hinfo->cfg.avg *
648 hinfo->cfg.burst);
649 dh->rateinfo.credit_cap = user2credits(hinfo->cfg.avg *
650 hinfo->cfg.burst);
651 dh->rateinfo.cost = user2credits(hinfo->cfg.avg);
652 } else {
653 /* update expiration timeout */
654 dh->expires = now + msecs_to_jiffies(hinfo->cfg.expire);
655 rateinfo_recalc(dh, now);
656 }
657
658 if (dh->rateinfo.credit >= dh->rateinfo.cost) {
659 /* below the limit */
660 dh->rateinfo.credit -= dh->rateinfo.cost;
661 spin_unlock_bh(&hinfo->lock);
662 return !(info->cfg.mode & XT_HASHLIMIT_INVERT);
663 }
664
665 spin_unlock_bh(&hinfo->lock);
666 /* default match is underlimit - so over the limit, we need to invert */
667 return info->cfg.mode & XT_HASHLIMIT_INVERT;
668
669 hotdrop:
f7108a20 670 *par->hotdrop = true;
09e410de
JE
671 return false;
672}
673
b0f38452 674static int hashlimit_mt_check_v0(const struct xt_mtchk_param *par)
1da177e4 675{
e89fc3f1 676 struct net *net = par->net;
9b4fce7a 677 struct xt_hashlimit_info *r = par->matchinfo;
4a5a5c73 678 int ret;
1da177e4 679
1da177e4 680 /* Check for overflow. */
39b46fc6
PM
681 if (r->cfg.burst == 0 ||
682 user2credits(r->cfg.avg * r->cfg.burst) < user2credits(r->cfg.avg)) {
8bee4bad
JE
683 pr_info("overflow, try lower: %u/%u\n",
684 r->cfg.avg, r->cfg.burst);
4a5a5c73 685 return -ERANGE;
1da177e4 686 }
39b46fc6
PM
687 if (r->cfg.mode == 0 ||
688 r->cfg.mode > (XT_HASHLIMIT_HASH_DPT |
689 XT_HASHLIMIT_HASH_DIP |
690 XT_HASHLIMIT_HASH_SIP |
691 XT_HASHLIMIT_HASH_SPT))
bd414ee6 692 return -EINVAL;
1da177e4 693 if (!r->cfg.gc_interval)
bd414ee6 694 return -EINVAL;
1da177e4 695 if (!r->cfg.expire)
bd414ee6 696 return -EINVAL;
3ab72088 697 if (r->name[sizeof(r->name) - 1] != '\0')
bd414ee6 698 return -EINVAL;
3ab72088 699
2eff25c1 700 mutex_lock(&hashlimit_mutex);
aa5fa318 701 r->hinfo = htable_find_get(net, r->name, par->family);
4a5a5c73
JE
702 if (r->hinfo == NULL) {
703 ret = htable_create_v0(net, r, par->family);
704 if (ret < 0) {
705 mutex_unlock(&hashlimit_mutex);
706 return ret;
707 }
1da177e4 708 }
2eff25c1 709 mutex_unlock(&hashlimit_mutex);
bd414ee6 710 return 0;
1da177e4
LT
711}
712
b0f38452 713static int hashlimit_mt_check(const struct xt_mtchk_param *par)
09e410de 714{
e89fc3f1 715 struct net *net = par->net;
9b4fce7a 716 struct xt_hashlimit_mtinfo1 *info = par->matchinfo;
4a5a5c73 717 int ret;
09e410de
JE
718
719 /* Check for overflow. */
720 if (info->cfg.burst == 0 ||
721 user2credits(info->cfg.avg * info->cfg.burst) <
722 user2credits(info->cfg.avg)) {
8bee4bad
JE
723 pr_info("overflow, try lower: %u/%u\n",
724 info->cfg.avg, info->cfg.burst);
4a5a5c73 725 return -ERANGE;
09e410de
JE
726 }
727 if (info->cfg.gc_interval == 0 || info->cfg.expire == 0)
bd414ee6 728 return -EINVAL;
09e410de 729 if (info->name[sizeof(info->name)-1] != '\0')
bd414ee6 730 return -EINVAL;
aa5fa318 731 if (par->family == NFPROTO_IPV4) {
09e410de 732 if (info->cfg.srcmask > 32 || info->cfg.dstmask > 32)
bd414ee6 733 return -EINVAL;
09e410de
JE
734 } else {
735 if (info->cfg.srcmask > 128 || info->cfg.dstmask > 128)
bd414ee6 736 return -EINVAL;
09e410de
JE
737 }
738
2eff25c1 739 mutex_lock(&hashlimit_mutex);
aa5fa318 740 info->hinfo = htable_find_get(net, info->name, par->family);
4a5a5c73
JE
741 if (info->hinfo == NULL) {
742 ret = htable_create(net, info, par->family);
743 if (ret < 0) {
744 mutex_unlock(&hashlimit_mutex);
745 return ret;
746 }
09e410de 747 }
2eff25c1 748 mutex_unlock(&hashlimit_mutex);
bd414ee6 749 return 0;
09e410de
JE
750}
751
1da177e4 752static void
6be3d859 753hashlimit_mt_destroy_v0(const struct xt_mtdtor_param *par)
1da177e4 754{
6be3d859 755 const struct xt_hashlimit_info *r = par->matchinfo;
1da177e4
LT
756
757 htable_put(r->hinfo);
758}
759
6be3d859 760static void hashlimit_mt_destroy(const struct xt_mtdtor_param *par)
09e410de 761{
6be3d859 762 const struct xt_hashlimit_mtinfo1 *info = par->matchinfo;
09e410de
JE
763
764 htable_put(info->hinfo);
765}
766
127f15dd 767#ifdef CONFIG_COMPAT
39b46fc6 768struct compat_xt_hashlimit_info {
127f15dd
PM
769 char name[IFNAMSIZ];
770 struct hashlimit_cfg cfg;
771 compat_uptr_t hinfo;
772 compat_uptr_t master;
773};
774
739674fb 775static void hashlimit_mt_compat_from_user(void *dst, const void *src)
127f15dd 776{
39b46fc6 777 int off = offsetof(struct compat_xt_hashlimit_info, hinfo);
127f15dd
PM
778
779 memcpy(dst, src, off);
39b46fc6 780 memset(dst + off, 0, sizeof(struct compat_xt_hashlimit_info) - off);
127f15dd
PM
781}
782
739674fb 783static int hashlimit_mt_compat_to_user(void __user *dst, const void *src)
127f15dd 784{
39b46fc6 785 int off = offsetof(struct compat_xt_hashlimit_info, hinfo);
127f15dd
PM
786
787 return copy_to_user(dst, src, off) ? -EFAULT : 0;
788}
789#endif
790
d3c5ee6d 791static struct xt_match hashlimit_mt_reg[] __read_mostly = {
39b46fc6
PM
792 {
793 .name = "hashlimit",
09e410de 794 .revision = 0,
ee999d8b 795 .family = NFPROTO_IPV4,
09e410de 796 .match = hashlimit_mt_v0,
39b46fc6
PM
797 .matchsize = sizeof(struct xt_hashlimit_info),
798#ifdef CONFIG_COMPAT
799 .compatsize = sizeof(struct compat_xt_hashlimit_info),
d3c5ee6d
JE
800 .compat_from_user = hashlimit_mt_compat_from_user,
801 .compat_to_user = hashlimit_mt_compat_to_user,
39b46fc6 802#endif
09e410de
JE
803 .checkentry = hashlimit_mt_check_v0,
804 .destroy = hashlimit_mt_destroy_v0,
39b46fc6
PM
805 .me = THIS_MODULE
806 },
09e410de
JE
807 {
808 .name = "hashlimit",
809 .revision = 1,
ee999d8b 810 .family = NFPROTO_IPV4,
09e410de
JE
811 .match = hashlimit_mt,
812 .matchsize = sizeof(struct xt_hashlimit_mtinfo1),
813 .checkentry = hashlimit_mt_check,
814 .destroy = hashlimit_mt_destroy,
815 .me = THIS_MODULE,
816 },
7b21e09d 817#if defined(CONFIG_IP6_NF_IPTABLES) || defined(CONFIG_IP6_NF_IPTABLES_MODULE)
39b46fc6
PM
818 {
819 .name = "hashlimit",
ee999d8b 820 .family = NFPROTO_IPV6,
09e410de 821 .match = hashlimit_mt_v0,
39b46fc6 822 .matchsize = sizeof(struct xt_hashlimit_info),
127f15dd 823#ifdef CONFIG_COMPAT
39b46fc6 824 .compatsize = sizeof(struct compat_xt_hashlimit_info),
d3c5ee6d
JE
825 .compat_from_user = hashlimit_mt_compat_from_user,
826 .compat_to_user = hashlimit_mt_compat_to_user,
127f15dd 827#endif
09e410de
JE
828 .checkentry = hashlimit_mt_check_v0,
829 .destroy = hashlimit_mt_destroy_v0,
39b46fc6
PM
830 .me = THIS_MODULE
831 },
09e410de
JE
832 {
833 .name = "hashlimit",
834 .revision = 1,
ee999d8b 835 .family = NFPROTO_IPV6,
09e410de
JE
836 .match = hashlimit_mt,
837 .matchsize = sizeof(struct xt_hashlimit_mtinfo1),
838 .checkentry = hashlimit_mt_check,
839 .destroy = hashlimit_mt_destroy,
840 .me = THIS_MODULE,
841 },
7b21e09d 842#endif
1da177e4
LT
843};
844
845/* PROC stuff */
1da177e4 846static void *dl_seq_start(struct seq_file *s, loff_t *pos)
f4f6fb71 847 __acquires(htable->lock)
1da177e4 848{
a1004d8e 849 struct xt_hashlimit_htable *htable = s->private;
1da177e4
LT
850 unsigned int *bucket;
851
852 spin_lock_bh(&htable->lock);
853 if (*pos >= htable->cfg.size)
854 return NULL;
855
856 bucket = kmalloc(sizeof(unsigned int), GFP_ATOMIC);
857 if (!bucket)
858 return ERR_PTR(-ENOMEM);
859
860 *bucket = *pos;
861 return bucket;
862}
863
864static void *dl_seq_next(struct seq_file *s, void *v, loff_t *pos)
865{
a1004d8e 866 struct xt_hashlimit_htable *htable = s->private;
1da177e4
LT
867 unsigned int *bucket = (unsigned int *)v;
868
869 *pos = ++(*bucket);
870 if (*pos >= htable->cfg.size) {
871 kfree(v);
872 return NULL;
873 }
874 return bucket;
875}
876
877static void dl_seq_stop(struct seq_file *s, void *v)
f4f6fb71 878 __releases(htable->lock)
1da177e4 879{
a1004d8e 880 struct xt_hashlimit_htable *htable = s->private;
1da177e4
LT
881 unsigned int *bucket = (unsigned int *)v;
882
883 kfree(bucket);
1da177e4
LT
884 spin_unlock_bh(&htable->lock);
885}
886
76108cea 887static int dl_seq_real_show(struct dsthash_ent *ent, u_int8_t family,
39b46fc6 888 struct seq_file *s)
1da177e4
LT
889{
890 /* recalculate to show accurate numbers */
891 rateinfo_recalc(ent, jiffies);
892
39b46fc6 893 switch (family) {
ee999d8b 894 case NFPROTO_IPV4:
14d5e834 895 return seq_printf(s, "%ld %pI4:%u->%pI4:%u %u %u %u\n",
39b46fc6 896 (long)(ent->expires - jiffies)/HZ,
14d5e834 897 &ent->dst.ip.src,
39b46fc6 898 ntohs(ent->dst.src_port),
14d5e834 899 &ent->dst.ip.dst,
39b46fc6
PM
900 ntohs(ent->dst.dst_port),
901 ent->rateinfo.credit, ent->rateinfo.credit_cap,
902 ent->rateinfo.cost);
7b21e09d 903#if defined(CONFIG_IP6_NF_IPTABLES) || defined(CONFIG_IP6_NF_IPTABLES_MODULE)
ee999d8b 904 case NFPROTO_IPV6:
5b095d98 905 return seq_printf(s, "%ld %pI6:%u->%pI6:%u %u %u %u\n",
39b46fc6 906 (long)(ent->expires - jiffies)/HZ,
38ff4fa4 907 &ent->dst.ip6.src,
39b46fc6 908 ntohs(ent->dst.src_port),
38ff4fa4 909 &ent->dst.ip6.dst,
39b46fc6
PM
910 ntohs(ent->dst.dst_port),
911 ent->rateinfo.credit, ent->rateinfo.credit_cap,
912 ent->rateinfo.cost);
7b21e09d 913#endif
39b46fc6
PM
914 default:
915 BUG();
916 return 0;
917 }
1da177e4
LT
918}
919
920static int dl_seq_show(struct seq_file *s, void *v)
921{
a1004d8e 922 struct xt_hashlimit_htable *htable = s->private;
1da177e4
LT
923 unsigned int *bucket = (unsigned int *)v;
924 struct dsthash_ent *ent;
925 struct hlist_node *pos;
926
39b46fc6
PM
927 if (!hlist_empty(&htable->hash[*bucket])) {
928 hlist_for_each_entry(ent, pos, &htable->hash[*bucket], node)
929 if (dl_seq_real_show(ent, htable->family, s))
683a04ce 930 return -1;
39b46fc6 931 }
1da177e4
LT
932 return 0;
933}
934
56b3d975 935static const struct seq_operations dl_seq_ops = {
1da177e4
LT
936 .start = dl_seq_start,
937 .next = dl_seq_next,
938 .stop = dl_seq_stop,
939 .show = dl_seq_show
940};
941
942static int dl_proc_open(struct inode *inode, struct file *file)
943{
944 int ret = seq_open(file, &dl_seq_ops);
945
946 if (!ret) {
947 struct seq_file *sf = file->private_data;
a1004d8e 948 sf->private = PDE(inode)->data;
1da177e4
LT
949 }
950 return ret;
951}
952
da7071d7 953static const struct file_operations dl_file_ops = {
1da177e4
LT
954 .owner = THIS_MODULE,
955 .open = dl_proc_open,
956 .read = seq_read,
957 .llseek = seq_lseek,
958 .release = seq_release
959};
960
e89fc3f1
AD
961static int __net_init hashlimit_proc_net_init(struct net *net)
962{
963 struct hashlimit_net *hashlimit_net = hashlimit_pernet(net);
964
965 hashlimit_net->ipt_hashlimit = proc_mkdir("ipt_hashlimit", net->proc_net);
966 if (!hashlimit_net->ipt_hashlimit)
967 return -ENOMEM;
968#if defined(CONFIG_IP6_NF_IPTABLES) || defined(CONFIG_IP6_NF_IPTABLES_MODULE)
969 hashlimit_net->ip6t_hashlimit = proc_mkdir("ip6t_hashlimit", net->proc_net);
970 if (!hashlimit_net->ip6t_hashlimit) {
971 proc_net_remove(net, "ipt_hashlimit");
972 return -ENOMEM;
973 }
974#endif
975 return 0;
976}
977
978static void __net_exit hashlimit_proc_net_exit(struct net *net)
979{
980 proc_net_remove(net, "ipt_hashlimit");
981#if defined(CONFIG_IP6_NF_IPTABLES) || defined(CONFIG_IP6_NF_IPTABLES_MODULE)
982 proc_net_remove(net, "ip6t_hashlimit");
983#endif
984}
985
986static int __net_init hashlimit_net_init(struct net *net)
987{
988 struct hashlimit_net *hashlimit_net = hashlimit_pernet(net);
989
990 INIT_HLIST_HEAD(&hashlimit_net->htables);
991 return hashlimit_proc_net_init(net);
992}
993
994static void __net_exit hashlimit_net_exit(struct net *net)
995{
996 struct hashlimit_net *hashlimit_net = hashlimit_pernet(net);
997
998 BUG_ON(!hlist_empty(&hashlimit_net->htables));
999 hashlimit_proc_net_exit(net);
1000}
1001
1002static struct pernet_operations hashlimit_net_ops = {
1003 .init = hashlimit_net_init,
1004 .exit = hashlimit_net_exit,
1005 .id = &hashlimit_net_id,
1006 .size = sizeof(struct hashlimit_net),
1007};
1008
d3c5ee6d 1009static int __init hashlimit_mt_init(void)
1da177e4 1010{
39b46fc6 1011 int err;
1da177e4 1012
e89fc3f1
AD
1013 err = register_pernet_subsys(&hashlimit_net_ops);
1014 if (err < 0)
1015 return err;
d3c5ee6d
JE
1016 err = xt_register_matches(hashlimit_mt_reg,
1017 ARRAY_SIZE(hashlimit_mt_reg));
39b46fc6
PM
1018 if (err < 0)
1019 goto err1;
1da177e4 1020
39b46fc6
PM
1021 err = -ENOMEM;
1022 hashlimit_cachep = kmem_cache_create("xt_hashlimit",
1023 sizeof(struct dsthash_ent), 0, 0,
20c2df83 1024 NULL);
1da177e4 1025 if (!hashlimit_cachep) {
8bee4bad 1026 pr_warning("unable to create slab cache\n");
39b46fc6 1027 goto err2;
1da177e4 1028 }
e89fc3f1
AD
1029 return 0;
1030
39b46fc6 1031err2:
d3c5ee6d 1032 xt_unregister_matches(hashlimit_mt_reg, ARRAY_SIZE(hashlimit_mt_reg));
39b46fc6 1033err1:
e89fc3f1 1034 unregister_pernet_subsys(&hashlimit_net_ops);
39b46fc6 1035 return err;
1da177e4 1036
1da177e4
LT
1037}
1038
d3c5ee6d 1039static void __exit hashlimit_mt_exit(void)
1da177e4 1040{
39b46fc6 1041 kmem_cache_destroy(hashlimit_cachep);
d3c5ee6d 1042 xt_unregister_matches(hashlimit_mt_reg, ARRAY_SIZE(hashlimit_mt_reg));
e89fc3f1 1043 unregister_pernet_subsys(&hashlimit_net_ops);
1da177e4
LT
1044}
1045
d3c5ee6d
JE
1046module_init(hashlimit_mt_init);
1047module_exit(hashlimit_mt_exit);
This page took 0.618922 seconds and 5 git commands to generate.