blob: dcadc491db21088aaf31a1bdcc5a524ad22bd6b4 [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>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080021MODULE_DESCRIPTION("Xtables: statistics-based matching (\"Nth\", random)");
Patrick McHardyf3389802006-05-29 18:21:00 -070022MODULE_ALIAS("ipt_statistic");
23MODULE_ALIAS("ip6t_statistic");
24
25static DEFINE_SPINLOCK(nth_lock);
26
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070027static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +020028statistic_mt(const struct sk_buff *skb, const struct xt_match_param *par)
Patrick McHardyf3389802006-05-29 18:21:00 -070029{
Jan Engelhardtf7108a22008-10-08 11:35:18 +020030 struct xt_statistic_info *info = (void *)par->matchinfo;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070031 bool ret = info->flags & XT_STATISTIC_INVERT;
Patrick McHardyf3389802006-05-29 18:21:00 -070032
33 switch (info->mode) {
34 case XT_STATISTIC_MODE_RANDOM:
35 if ((net_random() & 0x7FFFFFFF) < info->u.random.probability)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070036 ret = !ret;
Patrick McHardyf3389802006-05-29 18:21:00 -070037 break;
38 case XT_STATISTIC_MODE_NTH:
39 info = info->master;
40 spin_lock_bh(&nth_lock);
41 if (info->u.nth.count++ == info->u.nth.every) {
42 info->u.nth.count = 0;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070043 ret = !ret;
Patrick McHardyf3389802006-05-29 18:21:00 -070044 }
45 spin_unlock_bh(&nth_lock);
46 break;
47 }
48
49 return ret;
50}
51
Jan Engelhardtccb79bd2007-07-07 22:16:00 -070052static bool
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080053statistic_mt_check(const char *tablename, const void *entry,
54 const struct xt_match *match, void *matchinfo,
55 unsigned int hook_mask)
Patrick McHardyf3389802006-05-29 18:21:00 -070056{
Jan Engelhardta47362a2007-07-07 22:16:55 -070057 struct xt_statistic_info *info = 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;
Patrick McHardyf3389802006-05-29 18:21:00 -070062 info->master = info;
Jan Engelhardtccb79bd2007-07-07 22:16:00 -070063 return true;
Patrick McHardyf3389802006-05-29 18:21:00 -070064}
65
Jan Engelhardt55b69e92008-10-08 11:35:01 +020066static struct xt_match xt_statistic_mt_reg __read_mostly = {
67 .name = "statistic",
68 .revision = 0,
69 .family = NFPROTO_UNSPEC,
70 .match = statistic_mt,
71 .checkentry = statistic_mt_check,
72 .matchsize = sizeof(struct xt_statistic_info),
73 .me = THIS_MODULE,
Patrick McHardyf3389802006-05-29 18:21:00 -070074};
75
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080076static int __init statistic_mt_init(void)
Patrick McHardyf3389802006-05-29 18:21:00 -070077{
Jan Engelhardt55b69e92008-10-08 11:35:01 +020078 return xt_register_match(&xt_statistic_mt_reg);
Patrick McHardyf3389802006-05-29 18:21:00 -070079}
80
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080081static void __exit statistic_mt_exit(void)
Patrick McHardyf3389802006-05-29 18:21:00 -070082{
Jan Engelhardt55b69e92008-10-08 11:35:01 +020083 xt_unregister_match(&xt_statistic_mt_reg);
Patrick McHardyf3389802006-05-29 18:21:00 -070084}
85
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080086module_init(statistic_mt_init);
87module_exit(statistic_mt_exit);