2 * xt_u32 - kernel module to match u32 packet content
5 * (C) CC Computer Consultants GmbH, 2007
8 #include <linux/module.h>
9 #include <linux/moduleparam.h>
10 #include <linux/spinlock.h>
11 #include <linux/skbuff.h>
12 #include <linux/types.h>
13 #include <linux/netfilter/x_tables.h>
14 #include <linux/netfilter/xt_u32.h>
16 static bool u32_match_it(const struct xt_u32 *data,
17 const struct sk_buff *skb)
19 const struct xt_u32_test *ct;
30 * Small example: "0 >> 28 == 4 && 8 & 0xFF0000 >> 16 = 6, 17"
31 * (=IPv4 and (TCP or UDP)). Outer loop runs over the "&&" operands.
33 for (testind = 0; testind < data->ntests; ++testind) {
34 ct = &data->tests[testind];
36 pos = ct->location[0].number;
38 if (skb->len < 4 || pos > skb->len - 4)
41 if (skb_copy_bits(skb, pos, &n, sizeof(n)) < 0)
46 /* Inner loop runs over "&", "<<", ">>" and "@" operands */
47 for (i = 1; i < nnums; ++i) {
48 u_int32_t number = ct->location[i].number;
49 switch (ct->location[i].nextop) {
64 if (at + 4 < at || skb->len < at + 4 ||
65 pos > skb->len - at - 4)
68 if (skb_copy_bits(skb, at + pos, &n,
76 /* Run over the "," and ":" operands */
78 for (i = 0; i < nvals; ++i)
79 if (ct->value[i].min <= val && val <= ct->value[i].max)
89 static bool u32_mt(const struct sk_buff *skb, struct xt_action_param *par)
91 const struct xt_u32 *data = par->matchinfo;
94 ret = u32_match_it(data, skb);
95 return ret ^ data->invert;
98 static struct xt_match xt_u32_mt_reg __read_mostly = {
101 .family = NFPROTO_UNSPEC,
103 .matchsize = sizeof(struct xt_u32),
107 static int __init u32_mt_init(void)
109 return xt_register_match(&xt_u32_mt_reg);
112 static void __exit u32_mt_exit(void)
114 xt_unregister_match(&xt_u32_mt_reg);
117 module_init(u32_mt_init);
118 module_exit(u32_mt_exit);
120 MODULE_DESCRIPTION("Xtables: arbitrary byte matching");
121 MODULE_LICENSE("GPL");
122 MODULE_ALIAS("ipt_u32");
123 MODULE_ALIAS("ip6t_u32");