]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/netfilter/xt_statistic.c
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit...
[mirror_ubuntu-bionic-kernel.git] / net / netfilter / xt_statistic.c
CommitLineData
f3389805
PM
1/*
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>
5a0e3ad6 15#include <linux/slab.h>
f3389805
PM
16
17#include <linux/netfilter/xt_statistic.h>
18#include <linux/netfilter/x_tables.h>
19
acc738fe
JE
20struct xt_statistic_priv {
21 uint32_t count;
22};
23
f3389805
PM
24MODULE_LICENSE("GPL");
25MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
2ae15b64 26MODULE_DESCRIPTION("Xtables: statistics-based matching (\"Nth\", random)");
f3389805
PM
27MODULE_ALIAS("ipt_statistic");
28MODULE_ALIAS("ip6t_statistic");
29
30static DEFINE_SPINLOCK(nth_lock);
31
1d93a9cb 32static bool
f7108a20 33statistic_mt(const struct sk_buff *skb, const struct xt_match_param *par)
f3389805 34{
acc738fe 35 const struct xt_statistic_info *info = par->matchinfo;
1d93a9cb 36 bool ret = info->flags & XT_STATISTIC_INVERT;
f3389805
PM
37
38 switch (info->mode) {
39 case XT_STATISTIC_MODE_RANDOM:
40 if ((net_random() & 0x7FFFFFFF) < info->u.random.probability)
1d93a9cb 41 ret = !ret;
f3389805
PM
42 break;
43 case XT_STATISTIC_MODE_NTH:
f3389805 44 spin_lock_bh(&nth_lock);
acc738fe
JE
45 if (info->master->count++ == info->u.nth.every) {
46 info->master->count = 0;
1d93a9cb 47 ret = !ret;
f3389805
PM
48 }
49 spin_unlock_bh(&nth_lock);
50 break;
51 }
52
53 return ret;
54}
55
9b4fce7a 56static bool statistic_mt_check(const struct xt_mtchk_param *par)
f3389805 57{
9b4fce7a 58 struct xt_statistic_info *info = par->matchinfo;
f3389805
PM
59
60 if (info->mode > XT_STATISTIC_MODE_MAX ||
61 info->flags & ~XT_STATISTIC_MASK)
ccb79bdc 62 return false;
acc738fe
JE
63
64 info->master = kzalloc(sizeof(*info->master), GFP_KERNEL);
65 if (info->master == NULL) {
66 printk(KERN_ERR KBUILD_MODNAME ": Out of memory\n");
67 return false;
68 }
69 info->master->count = info->u.nth.count;
70
ccb79bdc 71 return true;
f3389805
PM
72}
73
acc738fe
JE
74static void statistic_mt_destroy(const struct xt_mtdtor_param *par)
75{
76 const struct xt_statistic_info *info = par->matchinfo;
77
78 kfree(info->master);
79}
80
55b69e91
JE
81static struct xt_match xt_statistic_mt_reg __read_mostly = {
82 .name = "statistic",
83 .revision = 0,
84 .family = NFPROTO_UNSPEC,
85 .match = statistic_mt,
86 .checkentry = statistic_mt_check,
acc738fe 87 .destroy = statistic_mt_destroy,
55b69e91
JE
88 .matchsize = sizeof(struct xt_statistic_info),
89 .me = THIS_MODULE,
f3389805
PM
90};
91
d3c5ee6d 92static int __init statistic_mt_init(void)
f3389805 93{
55b69e91 94 return xt_register_match(&xt_statistic_mt_reg);
f3389805
PM
95}
96
d3c5ee6d 97static void __exit statistic_mt_exit(void)
f3389805 98{
55b69e91 99 xt_unregister_match(&xt_statistic_mt_reg);
f3389805
PM
100}
101
d3c5ee6d
JE
102module_init(statistic_mt_init);
103module_exit(statistic_mt_exit);