blob: d8c0f8f1a78e3a2c5c6ae96edb94f76258a410cf [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
Jan Engelhardtacc738f2009-03-16 15:35:29 +010019struct xt_statistic_priv {
20 uint32_t count;
21};
22
Patrick McHardyf3389802006-05-29 18:21:00 -070023MODULE_LICENSE("GPL");
24MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080025MODULE_DESCRIPTION("Xtables: statistics-based matching (\"Nth\", random)");
Patrick McHardyf3389802006-05-29 18:21:00 -070026MODULE_ALIAS("ipt_statistic");
27MODULE_ALIAS("ip6t_statistic");
28
29static DEFINE_SPINLOCK(nth_lock);
30
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070031static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +020032statistic_mt(const struct sk_buff *skb, const struct xt_match_param *par)
Patrick McHardyf3389802006-05-29 18:21:00 -070033{
Jan Engelhardtacc738f2009-03-16 15:35:29 +010034 const struct xt_statistic_info *info = par->matchinfo;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070035 bool ret = info->flags & XT_STATISTIC_INVERT;
Patrick McHardyf3389802006-05-29 18:21:00 -070036
37 switch (info->mode) {
38 case XT_STATISTIC_MODE_RANDOM:
39 if ((net_random() & 0x7FFFFFFF) < info->u.random.probability)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070040 ret = !ret;
Patrick McHardyf3389802006-05-29 18:21:00 -070041 break;
42 case XT_STATISTIC_MODE_NTH:
Patrick McHardyf3389802006-05-29 18:21:00 -070043 spin_lock_bh(&nth_lock);
Jan Engelhardtacc738f2009-03-16 15:35:29 +010044 if (info->master->count++ == info->u.nth.every) {
45 info->master->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 Engelhardt9b4fce72008-10-08 11:35:18 +020055static bool statistic_mt_check(const struct xt_mtchk_param *par)
Patrick McHardyf3389802006-05-29 18:21:00 -070056{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +020057 struct xt_statistic_info *info = par->matchinfo;
Patrick McHardyf3389802006-05-29 18:21:00 -070058
59 if (info->mode > XT_STATISTIC_MODE_MAX ||
60 info->flags & ~XT_STATISTIC_MASK)
Jan Engelhardtccb79bd2007-07-07 22:16:00 -070061 return false;
Jan Engelhardtacc738f2009-03-16 15:35:29 +010062
63 info->master = kzalloc(sizeof(*info->master), GFP_KERNEL);
64 if (info->master == NULL) {
65 printk(KERN_ERR KBUILD_MODNAME ": Out of memory\n");
66 return false;
67 }
68 info->master->count = info->u.nth.count;
69
Jan Engelhardtccb79bd2007-07-07 22:16:00 -070070 return true;
Patrick McHardyf3389802006-05-29 18:21:00 -070071}
72
Jan Engelhardtacc738f2009-03-16 15:35:29 +010073static void statistic_mt_destroy(const struct xt_mtdtor_param *par)
74{
75 const struct xt_statistic_info *info = par->matchinfo;
76
77 kfree(info->master);
78}
79
Jan Engelhardt55b69e92008-10-08 11:35:01 +020080static struct xt_match xt_statistic_mt_reg __read_mostly = {
81 .name = "statistic",
82 .revision = 0,
83 .family = NFPROTO_UNSPEC,
84 .match = statistic_mt,
85 .checkentry = statistic_mt_check,
Jan Engelhardtacc738f2009-03-16 15:35:29 +010086 .destroy = statistic_mt_destroy,
Jan Engelhardt55b69e92008-10-08 11:35:01 +020087 .matchsize = sizeof(struct xt_statistic_info),
88 .me = THIS_MODULE,
Patrick McHardyf3389802006-05-29 18:21:00 -070089};
90
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080091static int __init statistic_mt_init(void)
Patrick McHardyf3389802006-05-29 18:21:00 -070092{
Jan Engelhardt55b69e92008-10-08 11:35:01 +020093 return xt_register_match(&xt_statistic_mt_reg);
Patrick McHardyf3389802006-05-29 18:21:00 -070094}
95
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080096static void __exit statistic_mt_exit(void)
Patrick McHardyf3389802006-05-29 18:21:00 -070097{
Jan Engelhardt55b69e92008-10-08 11:35:01 +020098 xt_unregister_match(&xt_statistic_mt_reg);
Patrick McHardyf3389802006-05-29 18:21:00 -070099}
100
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800101module_init(statistic_mt_init);
102module_exit(statistic_mt_exit);