blob: 42ecb71d445fe6d009ac252d1b030cd86befcfb1 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Patrick McHardyf3389802006-05-29 18:21:00 -070016
17#include <linux/netfilter/xt_statistic.h>
18#include <linux/netfilter/x_tables.h>
19
Jan Engelhardtacc738f2009-03-16 15:35:29 +010020struct xt_statistic_priv {
Eric Dumazetfabf3a82010-06-01 12:00:41 +020021 atomic_t count;
22} ____cacheline_aligned_in_smp;
Jan Engelhardtacc738f2009-03-16 15:35:29 +010023
Patrick McHardyf3389802006-05-29 18:21:00 -070024MODULE_LICENSE("GPL");
25MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080026MODULE_DESCRIPTION("Xtables: statistics-based matching (\"Nth\", random)");
Patrick McHardyf3389802006-05-29 18:21:00 -070027MODULE_ALIAS("ipt_statistic");
28MODULE_ALIAS("ip6t_statistic");
29
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070030static bool
Jan Engelhardt62fc8052009-07-07 20:42:08 +020031statistic_mt(const struct sk_buff *skb, struct xt_action_param *par)
Patrick McHardyf3389802006-05-29 18:21:00 -070032{
Jan Engelhardtacc738f2009-03-16 15:35:29 +010033 const struct xt_statistic_info *info = par->matchinfo;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070034 bool ret = info->flags & XT_STATISTIC_INVERT;
Eric Dumazetfabf3a82010-06-01 12:00:41 +020035 int nval, oval;
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:
Eric Dumazetfabf3a82010-06-01 12:00:41 +020043 do {
44 oval = atomic_read(&info->master->count);
45 nval = (oval == info->u.nth.every) ? 0 : oval + 1;
46 } while (atomic_cmpxchg(&info->master->count, oval, nval) != oval);
47 if (nval == 0)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070048 ret = !ret;
Patrick McHardyf3389802006-05-29 18:21:00 -070049 break;
50 }
51
52 return ret;
53}
54
Jan Engelhardtb0f38452010-03-19 17:16:42 +010055static int 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 Engelhardtbd414ee2010-03-23 16:35:56 +010061 return -EINVAL;
Jan Engelhardtacc738f2009-03-16 15:35:29 +010062
63 info->master = kzalloc(sizeof(*info->master), GFP_KERNEL);
Jan Engelhardt85bc3f32010-03-18 00:27:03 +010064 if (info->master == NULL)
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +010065 return -ENOMEM;
Eric Dumazetfabf3a82010-06-01 12:00:41 +020066 atomic_set(&info->master->count, info->u.nth.count);
Jan Engelhardtacc738f2009-03-16 15:35:29 +010067
Jan Engelhardtbd414ee2010-03-23 16:35:56 +010068 return 0;
Patrick McHardyf3389802006-05-29 18:21:00 -070069}
70
Jan Engelhardtacc738f2009-03-16 15:35:29 +010071static void statistic_mt_destroy(const struct xt_mtdtor_param *par)
72{
73 const struct xt_statistic_info *info = par->matchinfo;
74
75 kfree(info->master);
76}
77
Jan Engelhardt55b69e92008-10-08 11:35:01 +020078static struct xt_match xt_statistic_mt_reg __read_mostly = {
79 .name = "statistic",
80 .revision = 0,
81 .family = NFPROTO_UNSPEC,
82 .match = statistic_mt,
83 .checkentry = statistic_mt_check,
Jan Engelhardtacc738f2009-03-16 15:35:29 +010084 .destroy = statistic_mt_destroy,
Jan Engelhardt55b69e92008-10-08 11:35:01 +020085 .matchsize = sizeof(struct xt_statistic_info),
86 .me = THIS_MODULE,
Patrick McHardyf3389802006-05-29 18:21:00 -070087};
88
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080089static int __init statistic_mt_init(void)
Patrick McHardyf3389802006-05-29 18:21:00 -070090{
Jan Engelhardt55b69e92008-10-08 11:35:01 +020091 return xt_register_match(&xt_statistic_mt_reg);
Patrick McHardyf3389802006-05-29 18:21:00 -070092}
93
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080094static void __exit statistic_mt_exit(void)
Patrick McHardyf3389802006-05-29 18:21:00 -070095{
Jan Engelhardt55b69e92008-10-08 11:35:01 +020096 xt_unregister_match(&xt_statistic_mt_reg);
Patrick McHardyf3389802006-05-29 18:21:00 -070097}
98
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080099module_init(statistic_mt_init);
100module_exit(statistic_mt_exit);