1 /* Kernel module to match NFMARK values. */
3 /* (C) 1999-2001 Marc Boucher <marc@mbsi.ca>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
10 #include <linux/module.h>
11 #include <linux/skbuff.h>
13 #include <linux/netfilter/xt_mark.h>
14 #include <linux/netfilter/x_tables.h>
16 MODULE_LICENSE("GPL");
17 MODULE_AUTHOR("Marc Boucher <marc@mbsi.ca>");
18 MODULE_DESCRIPTION("iptables mark matching module");
19 MODULE_ALIAS("ipt_mark");
20 MODULE_ALIAS("ip6t_mark");
23 match(const struct sk_buff
*skb
,
24 const struct net_device
*in
,
25 const struct net_device
*out
,
26 const struct xt_match
*match
,
27 const void *matchinfo
,
32 const struct xt_mark_info
*info
= matchinfo
;
34 return ((skb
->nfmark
& info
->mask
) == info
->mark
) ^ info
->invert
;
38 checkentry(const char *tablename
,
40 const struct xt_match
*match
,
42 unsigned int matchsize
,
43 unsigned int hook_mask
)
45 struct xt_mark_info
*minfo
= (struct xt_mark_info
*) matchinfo
;
47 if (minfo
->mark
> 0xffffffff || minfo
->mask
> 0xffffffff) {
48 printk(KERN_WARNING
"mark: only supports 32bit mark\n");
54 static struct xt_match mark_match
= {
57 .matchsize
= sizeof(struct xt_mark_info
),
58 .checkentry
= checkentry
,
63 static struct xt_match mark6_match
= {
66 .matchsize
= sizeof(struct xt_mark_info
),
67 .checkentry
= checkentry
,
72 static int __init
init(void)
75 ret
= xt_register_match(&mark_match
);
79 ret
= xt_register_match(&mark6_match
);
81 xt_unregister_match(&mark_match
);
86 static void __exit
fini(void)
88 xt_unregister_match(&mark_match
);
89 xt_unregister_match(&mark6_match
);