blob: 4089dae4e2865ae9f99377d307195ff69127f07b [file] [log] [blame]
Patrick McHardyf3389802006-05-29 18:21:00 -07001/*
2 * Copyright (c) 2006 Patrick McHardy <kaber@trash.net>
3 *
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.
7 *
8 * Based on ipt_random and ipt_nth by Fabrice MARIE <fabrice@netfilter.org>.
9 */
10
11#include <linux/init.h>
12#include <linux/spinlock.h>
13#include <linux/skbuff.h>
14#include <linux/net.h>
15
16#include <linux/netfilter/xt_statistic.h>
17#include <linux/netfilter/x_tables.h>
18
19MODULE_LICENSE("GPL");
20MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
21MODULE_DESCRIPTION("xtables statistical match module");
22MODULE_ALIAS("ipt_statistic");
23MODULE_ALIAS("ip6t_statistic");
24
25static DEFINE_SPINLOCK(nth_lock);
26
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070027static bool
Patrick McHardyf3389802006-05-29 18:21:00 -070028match(const struct sk_buff *skb,
29 const struct net_device *in, const struct net_device *out,
30 const struct xt_match *match, const void *matchinfo,
Jan Engelhardtcff533a2007-07-07 22:15:12 -070031 int offset, unsigned int protoff, bool *hotdrop)
Patrick McHardyf3389802006-05-29 18:21:00 -070032{
33 struct xt_statistic_info *info = (struct xt_statistic_info *)matchinfo;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070034 bool ret = info->flags & XT_STATISTIC_INVERT;
Patrick McHardyf3389802006-05-29 18:21:00 -070035
36 switch (info->mode) {
37 case XT_STATISTIC_MODE_RANDOM:
38 if ((net_random() & 0x7FFFFFFF) < info->u.random.probability)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070039 ret = !ret;
Patrick McHardyf3389802006-05-29 18:21:00 -070040 break;
41 case XT_STATISTIC_MODE_NTH:
42 info = info->master;
43 spin_lock_bh(&nth_lock);
44 if (info->u.nth.count++ == info->u.nth.every) {
45 info->u.nth.count = 0;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070046 ret = !ret;
Patrick McHardyf3389802006-05-29 18:21:00 -070047 }
48 spin_unlock_bh(&nth_lock);
49 break;
50 }
51
52 return ret;
53}
54
Jan Engelhardtccb79bd2007-07-07 22:16:00 -070055static bool
Patrick McHardyf3389802006-05-29 18:21:00 -070056checkentry(const char *tablename, const void *entry,
57 const struct xt_match *match, void *matchinfo,
Patrick McHardyefa74162006-08-22 00:36:37 -070058 unsigned int hook_mask)
Patrick McHardyf3389802006-05-29 18:21:00 -070059{
Jan Engelhardta47362a2007-07-07 22:16:55 -070060 struct xt_statistic_info *info = matchinfo;
Patrick McHardyf3389802006-05-29 18:21:00 -070061
62 if (info->mode > XT_STATISTIC_MODE_MAX ||
63 info->flags & ~XT_STATISTIC_MASK)
Jan Engelhardtccb79bd2007-07-07 22:16:00 -070064 return false;
Patrick McHardyf3389802006-05-29 18:21:00 -070065 info->master = info;
Jan Engelhardtccb79bd2007-07-07 22:16:00 -070066 return true;
Patrick McHardyf3389802006-05-29 18:21:00 -070067}
68
Patrick McHardy9f15c532007-07-07 22:22:02 -070069static struct xt_match xt_statistic_match[] __read_mostly = {
Patrick McHardy4470bbc2006-08-22 00:34:04 -070070 {
71 .name = "statistic",
72 .family = AF_INET,
73 .checkentry = checkentry,
74 .match = match,
75 .matchsize = sizeof(struct xt_statistic_info),
76 .me = THIS_MODULE,
77 },
78 {
79 .name = "statistic",
80 .family = AF_INET6,
81 .checkentry = checkentry,
82 .match = match,
83 .matchsize = sizeof(struct xt_statistic_info),
84 .me = THIS_MODULE,
85 },
Patrick McHardyf3389802006-05-29 18:21:00 -070086};
87
88static int __init xt_statistic_init(void)
89{
Patrick McHardy4470bbc2006-08-22 00:34:04 -070090 return xt_register_matches(xt_statistic_match,
91 ARRAY_SIZE(xt_statistic_match));
Patrick McHardyf3389802006-05-29 18:21:00 -070092}
93
94static void __exit xt_statistic_fini(void)
95{
Patrick McHardy4470bbc2006-08-22 00:34:04 -070096 xt_unregister_matches(xt_statistic_match,
97 ARRAY_SIZE(xt_statistic_match));
Patrick McHardyf3389802006-05-29 18:21:00 -070098}
99
100module_init(xt_statistic_init);
101module_exit(xt_statistic_fini);