1 // SPDX-License-Identifier: GPL-2.0-only
8 #include <linux/init.h>
9 #include <linux/spinlock.h>
10 #include <linux/skbuff.h>
11 #include <linux/net.h>
12 #include <linux/slab.h>
14 #include <linux/netfilter/xt_statistic.h>
15 #include <linux/netfilter/x_tables.h>
16 #include <linux/module.h>
18 struct xt_statistic_priv {
20 } ____cacheline_aligned_in_smp;
22 MODULE_LICENSE("GPL");
24 MODULE_DESCRIPTION("Xtables: statistics-based matching (\"Nth\", random)");
25 MODULE_ALIAS("ipt_statistic");
26 MODULE_ALIAS("ip6t_statistic");
29 statistic_mt(const struct sk_buff *skb, struct xt_action_param *par)
31 const struct xt_statistic_info *info = par->matchinfo;
32 bool ret = info->flags & XT_STATISTIC_INVERT;
36 case XT_STATISTIC_MODE_RANDOM:
37 if ((get_random_u32() & 0x7FFFFFFF) < info->u.random.probability)
40 case XT_STATISTIC_MODE_NTH:
42 oval = atomic_read(&info->master->count);
43 nval = (oval == info->u.nth.every) ? 0 : oval + 1;
44 } while (atomic_cmpxchg(&info->master->count, oval, nval) != oval);
53 static int statistic_mt_check(const struct xt_mtchk_param *par)
55 struct xt_statistic_info *info = par->matchinfo;
57 if (info->mode > XT_STATISTIC_MODE_MAX ||
58 info->flags & ~XT_STATISTIC_MASK)
61 info->master = kzalloc(sizeof(*info->master), GFP_KERNEL);
62 if (info->master == NULL)
64 atomic_set(&info->master->count, info->u.nth.count);
69 static void statistic_mt_destroy(const struct xt_mtdtor_param *par)
71 const struct xt_statistic_info *info = par->matchinfo;
76 static struct xt_match xt_statistic_mt_reg __read_mostly = {
79 .family = NFPROTO_UNSPEC,
80 .match = statistic_mt,
81 .checkentry = statistic_mt_check,
82 .destroy = statistic_mt_destroy,
83 .matchsize = sizeof(struct xt_statistic_info),
84 .usersize = offsetof(struct xt_statistic_info, master),
88 static int __init statistic_mt_init(void)
90 return xt_register_match(&xt_statistic_mt_reg);
93 static void __exit statistic_mt_exit(void)
95 xt_unregister_match(&xt_statistic_mt_reg);
98 module_init(statistic_mt_init);
99 module_exit(statistic_mt_exit);