2 * Copyright (c) 2006 Patrick McHardy <kaber@trash.net>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 * Based on ipt_random and ipt_nth by Fabrice MARIE <fabrice@netfilter.org>.
11 #include <linux/init.h>
12 #include <linux/spinlock.h>
13 #include <linux/skbuff.h>
14 #include <linux/net.h>
16 #include <linux/netfilter/xt_statistic.h>
17 #include <linux/netfilter/x_tables.h>
19 MODULE_LICENSE("GPL");
20 MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
21 MODULE_DESCRIPTION("Xtables: statistics-based matching (\"Nth\", random)");
22 MODULE_ALIAS("ipt_statistic");
23 MODULE_ALIAS("ip6t_statistic");
25 static DEFINE_SPINLOCK(nth_lock
);
28 statistic_mt(const struct sk_buff
*skb
, const struct net_device
*in
,
29 const struct net_device
*out
, const struct xt_match
*match
,
30 const void *matchinfo
, int offset
, unsigned int protoff
,
33 struct xt_statistic_info
*info
= (struct xt_statistic_info
*)matchinfo
;
34 bool ret
= info
->flags
& XT_STATISTIC_INVERT
;
37 case XT_STATISTIC_MODE_RANDOM
:
38 if ((net_random() & 0x7FFFFFFF) < info
->u
.random
.probability
)
41 case XT_STATISTIC_MODE_NTH
:
43 spin_lock_bh(&nth_lock
);
44 if (info
->u
.nth
.count
++ == info
->u
.nth
.every
) {
45 info
->u
.nth
.count
= 0;
48 spin_unlock_bh(&nth_lock
);
56 statistic_mt_check(const char *tablename
, const void *entry
,
57 const struct xt_match
*match
, void *matchinfo
,
58 unsigned int hook_mask
)
60 struct xt_statistic_info
*info
= matchinfo
;
62 if (info
->mode
> XT_STATISTIC_MODE_MAX
||
63 info
->flags
& ~XT_STATISTIC_MASK
)
69 static struct xt_match statistic_mt_reg
[] __read_mostly
= {
73 .checkentry
= statistic_mt_check
,
74 .match
= statistic_mt
,
75 .matchsize
= sizeof(struct xt_statistic_info
),
81 .checkentry
= statistic_mt_check
,
82 .match
= statistic_mt
,
83 .matchsize
= sizeof(struct xt_statistic_info
),
88 static int __init
statistic_mt_init(void)
90 return xt_register_matches(statistic_mt_reg
,
91 ARRAY_SIZE(statistic_mt_reg
));
94 static void __exit
statistic_mt_exit(void)
96 xt_unregister_matches(statistic_mt_reg
,
97 ARRAY_SIZE(statistic_mt_reg
));
100 module_init(statistic_mt_init
);
101 module_exit(statistic_mt_exit
);