blob: d3043fa32ebc9c30715485299438060e33371fa0 [file] [log] [blame]
Patrick McHardy39b46fc2006-11-29 02:35:36 +01001/* iptables match extension to limit the number of packets per second
2 * seperately for each hashbucket (sourceip/sourceport/dstip/dstport)
3 *
4 * (C) 2003-2004 by Harald Welte <laforge@netfilter.org>
5 *
6 * $Id: ipt_hashlimit.c 3244 2004-10-20 16:24:29Z laforge@netfilter.org $
7 *
8 * Development of this code was funded by Astaro AG, http://www.astaro.com/
9 */
10#include <linux/module.h>
11#include <linux/spinlock.h>
12#include <linux/random.h>
13#include <linux/jhash.h>
14#include <linux/slab.h>
15#include <linux/vmalloc.h>
16#include <linux/proc_fs.h>
17#include <linux/seq_file.h>
18#include <linux/list.h>
19#include <linux/skbuff.h>
Al Virod7fe0f22006-12-03 23:15:30 -050020#include <linux/mm.h>
Patrick McHardy39b46fc2006-11-29 02:35:36 +010021#include <linux/in.h>
22#include <linux/ip.h>
23#include <linux/ipv6.h>
24
25#include <linux/netfilter/x_tables.h>
26#include <linux/netfilter_ipv4/ip_tables.h>
27#include <linux/netfilter_ipv6/ip6_tables.h>
28#include <linux/netfilter/xt_hashlimit.h>
29#include <linux/mutex.h>
30
31MODULE_LICENSE("GPL");
32MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
33MODULE_DESCRIPTION("iptables match for limiting per hash-bucket");
34MODULE_ALIAS("ipt_hashlimit");
35MODULE_ALIAS("ip6t_hashlimit");
36
37/* need to declare this at the top */
38static struct proc_dir_entry *hashlimit_procdir4;
39static struct proc_dir_entry *hashlimit_procdir6;
Arjan van de Venda7071d2007-02-12 00:55:36 -080040static const struct file_operations dl_file_ops;
Patrick McHardy39b46fc2006-11-29 02:35:36 +010041
42/* hash table crap */
43struct dsthash_dst {
44 union {
45 struct {
46 __be32 src;
47 __be32 dst;
48 } ip;
49 struct {
50 __be32 src[4];
51 __be32 dst[4];
52 } ip6;
53 } addr;
54 __be16 src_port;
55 __be16 dst_port;
56};
57
58struct dsthash_ent {
59 /* static / read-only parts in the beginning */
60 struct hlist_node node;
61 struct dsthash_dst dst;
62
63 /* modified structure members in the end */
64 unsigned long expires; /* precalculated expiry time */
65 struct {
66 unsigned long prev; /* last modification */
67 u_int32_t credit;
68 u_int32_t credit_cap, cost;
69 } rateinfo;
70};
71
72struct xt_hashlimit_htable {
73 struct hlist_node node; /* global list of all htables */
74 atomic_t use;
75 int family;
76
77 struct hashlimit_cfg cfg; /* config */
78
79 /* used internally */
80 spinlock_t lock; /* lock for list_head */
81 u_int32_t rnd; /* random seed for hash */
82 int rnd_initialized;
83 unsigned int count; /* number entries in table */
84 struct timer_list timer; /* timer for gc */
85
86 /* seq_file stuff */
87 struct proc_dir_entry *pde;
88
89 struct hlist_head hash[0]; /* hashtable itself */
90};
91
92static DEFINE_SPINLOCK(hashlimit_lock); /* protects htables list */
93static DEFINE_MUTEX(hlimit_mutex); /* additional checkentry protection */
94static HLIST_HEAD(hashlimit_htables);
Christoph Lametere18b8902006-12-06 20:33:20 -080095static struct kmem_cache *hashlimit_cachep __read_mostly;
Patrick McHardy39b46fc2006-11-29 02:35:36 +010096
97static inline int dst_cmp(const struct dsthash_ent *ent, struct dsthash_dst *b)
98{
99 return !memcmp(&ent->dst, b, sizeof(ent->dst));
100}
101
102static u_int32_t
103hash_dst(const struct xt_hashlimit_htable *ht, const struct dsthash_dst *dst)
104{
105 return jhash(dst, sizeof(*dst), ht->rnd) % ht->cfg.size;
106}
107
108static struct dsthash_ent *
109dsthash_find(const struct xt_hashlimit_htable *ht, struct dsthash_dst *dst)
110{
111 struct dsthash_ent *ent;
112 struct hlist_node *pos;
113 u_int32_t hash = hash_dst(ht, dst);
114
115 if (!hlist_empty(&ht->hash[hash])) {
116 hlist_for_each_entry(ent, pos, &ht->hash[hash], node)
117 if (dst_cmp(ent, dst))
118 return ent;
119 }
120 return NULL;
121}
122
123/* allocate dsthash_ent, initialize dst, put in htable and lock it */
124static struct dsthash_ent *
125dsthash_alloc_init(struct xt_hashlimit_htable *ht, struct dsthash_dst *dst)
126{
127 struct dsthash_ent *ent;
128
129 /* initialize hash with random val at the time we allocate
130 * the first hashtable entry */
131 if (!ht->rnd_initialized) {
132 get_random_bytes(&ht->rnd, 4);
133 ht->rnd_initialized = 1;
134 }
135
136 if (ht->cfg.max && ht->count >= ht->cfg.max) {
137 /* FIXME: do something. question is what.. */
138 if (net_ratelimit())
139 printk(KERN_WARNING
140 "xt_hashlimit: max count of %u reached\n",
141 ht->cfg.max);
142 return NULL;
143 }
144
145 ent = kmem_cache_alloc(hashlimit_cachep, GFP_ATOMIC);
146 if (!ent) {
147 if (net_ratelimit())
148 printk(KERN_ERR
149 "xt_hashlimit: can't allocate dsthash_ent\n");
150 return NULL;
151 }
152 memcpy(&ent->dst, dst, sizeof(ent->dst));
153
154 hlist_add_head(&ent->node, &ht->hash[hash_dst(ht, dst)]);
155 ht->count++;
156 return ent;
157}
158
159static inline void
160dsthash_free(struct xt_hashlimit_htable *ht, struct dsthash_ent *ent)
161{
162 hlist_del(&ent->node);
163 kmem_cache_free(hashlimit_cachep, ent);
164 ht->count--;
165}
166static void htable_gc(unsigned long htlong);
167
168static int htable_create(struct xt_hashlimit_info *minfo, int family)
169{
170 struct xt_hashlimit_htable *hinfo;
171 unsigned int size;
172 unsigned int i;
173
174 if (minfo->cfg.size)
175 size = minfo->cfg.size;
176 else {
177 size = ((num_physpages << PAGE_SHIFT) / 16384) /
178 sizeof(struct list_head);
179 if (num_physpages > (1024 * 1024 * 1024 / PAGE_SIZE))
180 size = 8192;
181 if (size < 16)
182 size = 16;
183 }
184 /* FIXME: don't use vmalloc() here or anywhere else -HW */
185 hinfo = vmalloc(sizeof(struct xt_hashlimit_htable) +
186 sizeof(struct list_head) * size);
187 if (!hinfo) {
188 printk(KERN_ERR "xt_hashlimit: unable to create hashtable\n");
189 return -1;
190 }
191 minfo->hinfo = hinfo;
192
193 /* copy match config into hashtable config */
194 memcpy(&hinfo->cfg, &minfo->cfg, sizeof(hinfo->cfg));
195 hinfo->cfg.size = size;
196 if (!hinfo->cfg.max)
197 hinfo->cfg.max = 8 * hinfo->cfg.size;
198 else if (hinfo->cfg.max < hinfo->cfg.size)
199 hinfo->cfg.max = hinfo->cfg.size;
200
201 for (i = 0; i < hinfo->cfg.size; i++)
202 INIT_HLIST_HEAD(&hinfo->hash[i]);
203
204 atomic_set(&hinfo->use, 1);
205 hinfo->count = 0;
206 hinfo->family = family;
207 hinfo->rnd_initialized = 0;
208 spin_lock_init(&hinfo->lock);
209 hinfo->pde = create_proc_entry(minfo->name, 0,
210 family == AF_INET ? hashlimit_procdir4 :
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800211 hashlimit_procdir6);
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100212 if (!hinfo->pde) {
213 vfree(hinfo);
214 return -1;
215 }
216 hinfo->pde->proc_fops = &dl_file_ops;
217 hinfo->pde->data = hinfo;
218
Patrick McHardye6f689d2007-03-23 11:16:30 -0700219 setup_timer(&hinfo->timer, htable_gc, (unsigned long )hinfo);
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100220 hinfo->timer.expires = jiffies + msecs_to_jiffies(hinfo->cfg.gc_interval);
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100221 add_timer(&hinfo->timer);
222
223 spin_lock_bh(&hashlimit_lock);
224 hlist_add_head(&hinfo->node, &hashlimit_htables);
225 spin_unlock_bh(&hashlimit_lock);
226
227 return 0;
228}
229
230static int select_all(struct xt_hashlimit_htable *ht, struct dsthash_ent *he)
231{
232 return 1;
233}
234
235static int select_gc(struct xt_hashlimit_htable *ht, struct dsthash_ent *he)
236{
237 return (jiffies >= he->expires);
238}
239
240static void htable_selective_cleanup(struct xt_hashlimit_htable *ht,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800241 int (*select)(struct xt_hashlimit_htable *ht,
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100242 struct dsthash_ent *he))
243{
244 unsigned int i;
245
246 /* lock hash table and iterate over it */
247 spin_lock_bh(&ht->lock);
248 for (i = 0; i < ht->cfg.size; i++) {
249 struct dsthash_ent *dh;
250 struct hlist_node *pos, *n;
251 hlist_for_each_entry_safe(dh, pos, n, &ht->hash[i], node) {
252 if ((*select)(ht, dh))
253 dsthash_free(ht, dh);
254 }
255 }
256 spin_unlock_bh(&ht->lock);
257}
258
259/* hash table garbage collector, run by timer */
260static void htable_gc(unsigned long htlong)
261{
262 struct xt_hashlimit_htable *ht = (struct xt_hashlimit_htable *)htlong;
263
264 htable_selective_cleanup(ht, select_gc);
265
266 /* re-add the timer accordingly */
267 ht->timer.expires = jiffies + msecs_to_jiffies(ht->cfg.gc_interval);
268 add_timer(&ht->timer);
269}
270
271static void htable_destroy(struct xt_hashlimit_htable *hinfo)
272{
273 /* remove timer, if it is pending */
274 if (timer_pending(&hinfo->timer))
275 del_timer(&hinfo->timer);
276
277 /* remove proc entry */
278 remove_proc_entry(hinfo->pde->name,
279 hinfo->family == AF_INET ? hashlimit_procdir4 :
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800280 hashlimit_procdir6);
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100281 htable_selective_cleanup(hinfo, select_all);
282 vfree(hinfo);
283}
284
285static struct xt_hashlimit_htable *htable_find_get(char *name, int family)
286{
287 struct xt_hashlimit_htable *hinfo;
288 struct hlist_node *pos;
289
290 spin_lock_bh(&hashlimit_lock);
291 hlist_for_each_entry(hinfo, pos, &hashlimit_htables, node) {
292 if (!strcmp(name, hinfo->pde->name) &&
293 hinfo->family == family) {
294 atomic_inc(&hinfo->use);
295 spin_unlock_bh(&hashlimit_lock);
296 return hinfo;
297 }
298 }
299 spin_unlock_bh(&hashlimit_lock);
300 return NULL;
301}
302
303static void htable_put(struct xt_hashlimit_htable *hinfo)
304{
305 if (atomic_dec_and_test(&hinfo->use)) {
306 spin_lock_bh(&hashlimit_lock);
307 hlist_del(&hinfo->node);
308 spin_unlock_bh(&hashlimit_lock);
309 htable_destroy(hinfo);
310 }
311}
312
313/* The algorithm used is the Simple Token Bucket Filter (TBF)
314 * see net/sched/sch_tbf.c in the linux source tree
315 */
316
317/* Rusty: This is my (non-mathematically-inclined) understanding of
318 this algorithm. The `average rate' in jiffies becomes your initial
319 amount of credit `credit' and the most credit you can ever have
320 `credit_cap'. The `peak rate' becomes the cost of passing the
321 test, `cost'.
322
323 `prev' tracks the last packet hit: you gain one credit per jiffy.
324 If you get credit balance more than this, the extra credit is
325 discarded. Every time the match passes, you lose `cost' credits;
326 if you don't have that many, the test fails.
327
328 See Alexey's formal explanation in net/sched/sch_tbf.c.
329
330 To get the maximum range, we multiply by this factor (ie. you get N
331 credits per jiffy). We want to allow a rate as low as 1 per day
332 (slowest userspace tool allows), which means
333 CREDITS_PER_JIFFY*HZ*60*60*24 < 2^32 ie.
334*/
335#define MAX_CPJ (0xFFFFFFFF / (HZ*60*60*24))
336
337/* Repeated shift and or gives us all 1s, final shift and add 1 gives
338 * us the power of 2 below the theoretical max, so GCC simply does a
339 * shift. */
340#define _POW2_BELOW2(x) ((x)|((x)>>1))
341#define _POW2_BELOW4(x) (_POW2_BELOW2(x)|_POW2_BELOW2((x)>>2))
342#define _POW2_BELOW8(x) (_POW2_BELOW4(x)|_POW2_BELOW4((x)>>4))
343#define _POW2_BELOW16(x) (_POW2_BELOW8(x)|_POW2_BELOW8((x)>>8))
344#define _POW2_BELOW32(x) (_POW2_BELOW16(x)|_POW2_BELOW16((x)>>16))
345#define POW2_BELOW32(x) ((_POW2_BELOW32(x)>>1) + 1)
346
347#define CREDITS_PER_JIFFY POW2_BELOW32(MAX_CPJ)
348
349/* Precision saver. */
350static inline u_int32_t
351user2credits(u_int32_t user)
352{
353 /* If multiplying would overflow... */
354 if (user > 0xFFFFFFFF / (HZ*CREDITS_PER_JIFFY))
355 /* Divide first. */
356 return (user / XT_HASHLIMIT_SCALE) * HZ * CREDITS_PER_JIFFY;
357
358 return (user * HZ * CREDITS_PER_JIFFY) / XT_HASHLIMIT_SCALE;
359}
360
361static inline void rateinfo_recalc(struct dsthash_ent *dh, unsigned long now)
362{
363 dh->rateinfo.credit += (now - dh->rateinfo.prev) * CREDITS_PER_JIFFY;
364 if (dh->rateinfo.credit > dh->rateinfo.credit_cap)
365 dh->rateinfo.credit = dh->rateinfo.credit_cap;
366 dh->rateinfo.prev = now;
367}
368
369static int
370hashlimit_init_dst(struct xt_hashlimit_htable *hinfo, struct dsthash_dst *dst,
371 const struct sk_buff *skb, unsigned int protoff)
372{
373 __be16 _ports[2], *ports;
374 int nexthdr;
375
376 memset(dst, 0, sizeof(*dst));
377
378 switch (hinfo->family) {
379 case AF_INET:
380 if (hinfo->cfg.mode & XT_HASHLIMIT_HASH_DIP)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700381 dst->addr.ip.dst = ip_hdr(skb)->daddr;
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100382 if (hinfo->cfg.mode & XT_HASHLIMIT_HASH_SIP)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700383 dst->addr.ip.src = ip_hdr(skb)->saddr;
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100384
385 if (!(hinfo->cfg.mode &
386 (XT_HASHLIMIT_HASH_DPT | XT_HASHLIMIT_HASH_SPT)))
387 return 0;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700388 nexthdr = ip_hdr(skb)->protocol;
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100389 break;
Yasuyuki Kozakai02dba022006-12-02 22:19:01 -0800390#if defined(CONFIG_IP6_NF_IPTABLES) || defined(CONFIG_IP6_NF_IPTABLES_MODULE)
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100391 case AF_INET6:
392 if (hinfo->cfg.mode & XT_HASHLIMIT_HASH_DIP)
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700393 memcpy(&dst->addr.ip6.dst, &ipv6_hdr(skb)->daddr,
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100394 sizeof(dst->addr.ip6.dst));
395 if (hinfo->cfg.mode & XT_HASHLIMIT_HASH_SIP)
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700396 memcpy(&dst->addr.ip6.src, &ipv6_hdr(skb)->saddr,
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100397 sizeof(dst->addr.ip6.src));
398
399 if (!(hinfo->cfg.mode &
400 (XT_HASHLIMIT_HASH_DPT | XT_HASHLIMIT_HASH_SPT)))
401 return 0;
402 nexthdr = ipv6_find_hdr(skb, &protoff, -1, NULL);
403 if (nexthdr < 0)
404 return -1;
405 break;
406#endif
407 default:
408 BUG();
409 return 0;
410 }
411
412 switch (nexthdr) {
413 case IPPROTO_TCP:
414 case IPPROTO_UDP:
Patrick McHardya8d0f952007-02-07 15:07:43 -0800415 case IPPROTO_UDPLITE:
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100416 case IPPROTO_SCTP:
417 case IPPROTO_DCCP:
418 ports = skb_header_pointer(skb, protoff, sizeof(_ports),
419 &_ports);
420 break;
421 default:
422 _ports[0] = _ports[1] = 0;
423 ports = _ports;
424 break;
425 }
426 if (!ports)
427 return -1;
428 if (hinfo->cfg.mode & XT_HASHLIMIT_HASH_SPT)
429 dst->src_port = ports[0];
430 if (hinfo->cfg.mode & XT_HASHLIMIT_HASH_DPT)
431 dst->dst_port = ports[1];
432 return 0;
433}
434
435static int
436hashlimit_match(const struct sk_buff *skb,
437 const struct net_device *in,
438 const struct net_device *out,
439 const struct xt_match *match,
440 const void *matchinfo,
441 int offset,
442 unsigned int protoff,
443 int *hotdrop)
444{
445 struct xt_hashlimit_info *r =
446 ((struct xt_hashlimit_info *)matchinfo)->u.master;
447 struct xt_hashlimit_htable *hinfo = r->hinfo;
448 unsigned long now = jiffies;
449 struct dsthash_ent *dh;
450 struct dsthash_dst dst;
451
452 if (hashlimit_init_dst(hinfo, &dst, skb, protoff) < 0)
453 goto hotdrop;
454
455 spin_lock_bh(&hinfo->lock);
456 dh = dsthash_find(hinfo, &dst);
457 if (!dh) {
458 dh = dsthash_alloc_init(hinfo, &dst);
459 if (!dh) {
460 spin_unlock_bh(&hinfo->lock);
461 goto hotdrop;
462 }
463
464 dh->expires = jiffies + msecs_to_jiffies(hinfo->cfg.expire);
465 dh->rateinfo.prev = jiffies;
466 dh->rateinfo.credit = user2credits(hinfo->cfg.avg *
467 hinfo->cfg.burst);
468 dh->rateinfo.credit_cap = user2credits(hinfo->cfg.avg *
469 hinfo->cfg.burst);
470 dh->rateinfo.cost = user2credits(hinfo->cfg.avg);
471 } else {
472 /* update expiration timeout */
473 dh->expires = now + msecs_to_jiffies(hinfo->cfg.expire);
474 rateinfo_recalc(dh, now);
475 }
476
477 if (dh->rateinfo.credit >= dh->rateinfo.cost) {
478 /* We're underlimit. */
479 dh->rateinfo.credit -= dh->rateinfo.cost;
480 spin_unlock_bh(&hinfo->lock);
481 return 1;
482 }
483
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800484 spin_unlock_bh(&hinfo->lock);
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100485
486 /* default case: we're overlimit, thus don't match */
487 return 0;
488
489hotdrop:
490 *hotdrop = 1;
491 return 0;
492}
493
494static int
495hashlimit_checkentry(const char *tablename,
496 const void *inf,
497 const struct xt_match *match,
498 void *matchinfo,
499 unsigned int hook_mask)
500{
501 struct xt_hashlimit_info *r = matchinfo;
502
503 /* Check for overflow. */
504 if (r->cfg.burst == 0 ||
505 user2credits(r->cfg.avg * r->cfg.burst) < user2credits(r->cfg.avg)) {
506 printk(KERN_ERR "xt_hashlimit: overflow, try lower: %u/%u\n",
507 r->cfg.avg, r->cfg.burst);
508 return 0;
509 }
510 if (r->cfg.mode == 0 ||
511 r->cfg.mode > (XT_HASHLIMIT_HASH_DPT |
512 XT_HASHLIMIT_HASH_DIP |
513 XT_HASHLIMIT_HASH_SIP |
514 XT_HASHLIMIT_HASH_SPT))
515 return 0;
516 if (!r->cfg.gc_interval)
517 return 0;
518 if (!r->cfg.expire)
519 return 0;
520 if (r->name[sizeof(r->name) - 1] != '\0')
521 return 0;
522
523 /* This is the best we've got: We cannot release and re-grab lock,
524 * since checkentry() is called before x_tables.c grabs xt_mutex.
525 * We also cannot grab the hashtable spinlock, since htable_create will
526 * call vmalloc, and that can sleep. And we cannot just re-search
527 * the list of htable's in htable_create(), since then we would
528 * create duplicate proc files. -HW */
529 mutex_lock(&hlimit_mutex);
530 r->hinfo = htable_find_get(r->name, match->family);
531 if (!r->hinfo && htable_create(r, match->family) != 0) {
532 mutex_unlock(&hlimit_mutex);
533 return 0;
534 }
535 mutex_unlock(&hlimit_mutex);
536
537 /* Ugly hack: For SMP, we only want to use one set */
538 r->u.master = r;
539 return 1;
540}
541
542static void
543hashlimit_destroy(const struct xt_match *match, void *matchinfo)
544{
545 struct xt_hashlimit_info *r = matchinfo;
546
547 htable_put(r->hinfo);
548}
549
550#ifdef CONFIG_COMPAT
551struct compat_xt_hashlimit_info {
552 char name[IFNAMSIZ];
553 struct hashlimit_cfg cfg;
554 compat_uptr_t hinfo;
555 compat_uptr_t master;
556};
557
558static void compat_from_user(void *dst, void *src)
559{
560 int off = offsetof(struct compat_xt_hashlimit_info, hinfo);
561
562 memcpy(dst, src, off);
563 memset(dst + off, 0, sizeof(struct compat_xt_hashlimit_info) - off);
564}
565
566static int compat_to_user(void __user *dst, void *src)
567{
568 int off = offsetof(struct compat_xt_hashlimit_info, hinfo);
569
570 return copy_to_user(dst, src, off) ? -EFAULT : 0;
571}
572#endif
573
574static struct xt_match xt_hashlimit[] = {
575 {
576 .name = "hashlimit",
577 .family = AF_INET,
578 .match = hashlimit_match,
579 .matchsize = sizeof(struct xt_hashlimit_info),
580#ifdef CONFIG_COMPAT
581 .compatsize = sizeof(struct compat_xt_hashlimit_info),
582 .compat_from_user = compat_from_user,
583 .compat_to_user = compat_to_user,
584#endif
585 .checkentry = hashlimit_checkentry,
586 .destroy = hashlimit_destroy,
587 .me = THIS_MODULE
588 },
589 {
590 .name = "hashlimit",
591 .family = AF_INET6,
592 .match = hashlimit_match,
593 .matchsize = sizeof(struct xt_hashlimit_info),
594#ifdef CONFIG_COMPAT
595 .compatsize = sizeof(struct compat_xt_hashlimit_info),
596 .compat_from_user = compat_from_user,
597 .compat_to_user = compat_to_user,
598#endif
599 .checkentry = hashlimit_checkentry,
600 .destroy = hashlimit_destroy,
601 .me = THIS_MODULE
602 },
603};
604
605/* PROC stuff */
606static void *dl_seq_start(struct seq_file *s, loff_t *pos)
607{
608 struct proc_dir_entry *pde = s->private;
609 struct xt_hashlimit_htable *htable = pde->data;
610 unsigned int *bucket;
611
612 spin_lock_bh(&htable->lock);
613 if (*pos >= htable->cfg.size)
614 return NULL;
615
616 bucket = kmalloc(sizeof(unsigned int), GFP_ATOMIC);
617 if (!bucket)
618 return ERR_PTR(-ENOMEM);
619
620 *bucket = *pos;
621 return bucket;
622}
623
624static void *dl_seq_next(struct seq_file *s, void *v, loff_t *pos)
625{
626 struct proc_dir_entry *pde = s->private;
627 struct xt_hashlimit_htable *htable = pde->data;
628 unsigned int *bucket = (unsigned int *)v;
629
630 *pos = ++(*bucket);
631 if (*pos >= htable->cfg.size) {
632 kfree(v);
633 return NULL;
634 }
635 return bucket;
636}
637
638static void dl_seq_stop(struct seq_file *s, void *v)
639{
640 struct proc_dir_entry *pde = s->private;
641 struct xt_hashlimit_htable *htable = pde->data;
642 unsigned int *bucket = (unsigned int *)v;
643
644 kfree(bucket);
645 spin_unlock_bh(&htable->lock);
646}
647
648static int dl_seq_real_show(struct dsthash_ent *ent, int family,
649 struct seq_file *s)
650{
651 /* recalculate to show accurate numbers */
652 rateinfo_recalc(ent, jiffies);
653
654 switch (family) {
655 case AF_INET:
656 return seq_printf(s, "%ld %u.%u.%u.%u:%u->"
657 "%u.%u.%u.%u:%u %u %u %u\n",
658 (long)(ent->expires - jiffies)/HZ,
659 NIPQUAD(ent->dst.addr.ip.src),
660 ntohs(ent->dst.src_port),
661 NIPQUAD(ent->dst.addr.ip.dst),
662 ntohs(ent->dst.dst_port),
663 ent->rateinfo.credit, ent->rateinfo.credit_cap,
664 ent->rateinfo.cost);
665 case AF_INET6:
666 return seq_printf(s, "%ld " NIP6_FMT ":%u->"
667 NIP6_FMT ":%u %u %u %u\n",
668 (long)(ent->expires - jiffies)/HZ,
669 NIP6(*(struct in6_addr *)&ent->dst.addr.ip6.src),
670 ntohs(ent->dst.src_port),
671 NIP6(*(struct in6_addr *)&ent->dst.addr.ip6.dst),
672 ntohs(ent->dst.dst_port),
673 ent->rateinfo.credit, ent->rateinfo.credit_cap,
674 ent->rateinfo.cost);
675 default:
676 BUG();
677 return 0;
678 }
679}
680
681static int dl_seq_show(struct seq_file *s, void *v)
682{
683 struct proc_dir_entry *pde = s->private;
684 struct xt_hashlimit_htable *htable = pde->data;
685 unsigned int *bucket = (unsigned int *)v;
686 struct dsthash_ent *ent;
687 struct hlist_node *pos;
688
689 if (!hlist_empty(&htable->hash[*bucket])) {
690 hlist_for_each_entry(ent, pos, &htable->hash[*bucket], node)
691 if (dl_seq_real_show(ent, htable->family, s))
692 return 1;
693 }
694 return 0;
695}
696
697static struct seq_operations dl_seq_ops = {
698 .start = dl_seq_start,
699 .next = dl_seq_next,
700 .stop = dl_seq_stop,
701 .show = dl_seq_show
702};
703
704static int dl_proc_open(struct inode *inode, struct file *file)
705{
706 int ret = seq_open(file, &dl_seq_ops);
707
708 if (!ret) {
709 struct seq_file *sf = file->private_data;
710 sf->private = PDE(inode);
711 }
712 return ret;
713}
714
Arjan van de Venda7071d2007-02-12 00:55:36 -0800715static const struct file_operations dl_file_ops = {
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100716 .owner = THIS_MODULE,
717 .open = dl_proc_open,
718 .read = seq_read,
719 .llseek = seq_lseek,
720 .release = seq_release
721};
722
723static int __init xt_hashlimit_init(void)
724{
725 int err;
726
727 err = xt_register_matches(xt_hashlimit, ARRAY_SIZE(xt_hashlimit));
728 if (err < 0)
729 goto err1;
730
731 err = -ENOMEM;
732 hashlimit_cachep = kmem_cache_create("xt_hashlimit",
733 sizeof(struct dsthash_ent), 0, 0,
734 NULL, NULL);
735 if (!hashlimit_cachep) {
736 printk(KERN_ERR "xt_hashlimit: unable to create slab cache\n");
737 goto err2;
738 }
739 hashlimit_procdir4 = proc_mkdir("ipt_hashlimit", proc_net);
740 if (!hashlimit_procdir4) {
741 printk(KERN_ERR "xt_hashlimit: unable to create proc dir "
742 "entry\n");
743 goto err3;
744 }
745 hashlimit_procdir6 = proc_mkdir("ip6t_hashlimit", proc_net);
746 if (!hashlimit_procdir6) {
Alexey Dobriyan9c2440b2007-01-02 00:42:00 -0800747 printk(KERN_ERR "xt_hashlimit: unable to create proc dir "
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100748 "entry\n");
749 goto err4;
750 }
751 return 0;
752err4:
753 remove_proc_entry("ipt_hashlimit", proc_net);
754err3:
755 kmem_cache_destroy(hashlimit_cachep);
756err2:
757 xt_unregister_matches(xt_hashlimit, ARRAY_SIZE(xt_hashlimit));
758err1:
759 return err;
760
761}
762
763static void __exit xt_hashlimit_fini(void)
764{
765 remove_proc_entry("ipt_hashlimit", proc_net);
766 remove_proc_entry("ip6t_hashlimit", proc_net);
767 kmem_cache_destroy(hashlimit_cachep);
768 xt_unregister_matches(xt_hashlimit, ARRAY_SIZE(xt_hashlimit));
769}
770
771module_init(xt_hashlimit_init);
772module_exit(xt_hashlimit_fini);