2 * xt_mark - Netfilter module to match NFMARK value
4 * (C) 1999-2001 Marc Boucher <marc@mbsi.ca>
5 * Copyright © CC Computer Consultants GmbH, 2007 - 2008
6 * Jan Engelhardt <jengelh@computergmbh.de>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/module.h>
14 #include <linux/skbuff.h>
16 #include <linux/netfilter/xt_mark.h>
17 #include <linux/netfilter/x_tables.h>
19 MODULE_LICENSE("GPL");
20 MODULE_AUTHOR("Marc Boucher <marc@mbsi.ca>");
21 MODULE_DESCRIPTION("Xtables: packet mark match");
22 MODULE_ALIAS("ipt_mark");
23 MODULE_ALIAS("ip6t_mark");
26 mark_mt_v0(const struct sk_buff
*skb
, const struct xt_match_param
*par
)
28 const struct xt_mark_info
*info
= par
->matchinfo
;
30 return ((skb
->mark
& info
->mask
) == info
->mark
) ^ info
->invert
;
34 mark_mt(const struct sk_buff
*skb
, const struct xt_match_param
*par
)
36 const struct xt_mark_mtinfo1
*info
= par
->matchinfo
;
38 return ((skb
->mark
& info
->mask
) == info
->mark
) ^ info
->invert
;
41 static bool mark_mt_check_v0(const struct xt_mtchk_param
*par
)
43 const struct xt_mark_info
*minfo
= par
->matchinfo
;
45 if (minfo
->mark
> 0xffffffff || minfo
->mask
> 0xffffffff) {
46 printk(KERN_WARNING
"mark: only supports 32bit mark\n");
53 struct compat_xt_mark_info
{
54 compat_ulong_t mark
, mask
;
60 static void mark_mt_compat_from_user_v0(void *dst
, void *src
)
62 const struct compat_xt_mark_info
*cm
= src
;
63 struct xt_mark_info m
= {
68 memcpy(dst
, &m
, sizeof(m
));
71 static int mark_mt_compat_to_user_v0(void __user
*dst
, void *src
)
73 const struct xt_mark_info
*m
= src
;
74 struct compat_xt_mark_info cm
= {
79 return copy_to_user(dst
, &cm
, sizeof(cm
)) ? -EFAULT
: 0;
81 #endif /* CONFIG_COMPAT */
83 static struct xt_match mark_mt_reg
[] __read_mostly
= {
87 .family
= NFPROTO_UNSPEC
,
88 .checkentry
= mark_mt_check_v0
,
90 .matchsize
= sizeof(struct xt_mark_info
),
92 .compatsize
= sizeof(struct compat_xt_mark_info
),
93 .compat_from_user
= mark_mt_compat_from_user_v0
,
94 .compat_to_user
= mark_mt_compat_to_user_v0
,
101 .family
= NFPROTO_UNSPEC
,
103 .matchsize
= sizeof(struct xt_mark_mtinfo1
),
108 static int __init
mark_mt_init(void)
110 return xt_register_matches(mark_mt_reg
, ARRAY_SIZE(mark_mt_reg
));
113 static void __exit
mark_mt_exit(void)
115 xt_unregister_matches(mark_mt_reg
, ARRAY_SIZE(mark_mt_reg
));
118 module_init(mark_mt_init
);
119 module_exit(mark_mt_exit
);