2 * xt_MARK - Netfilter module to modify the NFMARK field of an skb
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 <net/checksum.h>
18 #include <linux/netfilter/x_tables.h>
19 #include <linux/netfilter/xt_MARK.h>
21 MODULE_LICENSE("GPL");
22 MODULE_AUTHOR("Marc Boucher <marc@mbsi.ca>");
23 MODULE_DESCRIPTION("Xtables: packet mark modification");
24 MODULE_ALIAS("ipt_MARK");
25 MODULE_ALIAS("ip6t_MARK");
28 mark_tg_v0(struct sk_buff
*skb
, const struct xt_target_param
*par
)
30 const struct xt_mark_target_info
*markinfo
= par
->targinfo
;
32 skb
->mark
= markinfo
->mark
;
37 mark_tg_v1(struct sk_buff
*skb
, const struct xt_target_param
*par
)
39 const struct xt_mark_target_info_v1
*markinfo
= par
->targinfo
;
42 switch (markinfo
->mode
) {
44 mark
= markinfo
->mark
;
48 mark
= skb
->mark
& markinfo
->mark
;
52 mark
= skb
->mark
| markinfo
->mark
;
61 mark_tg(struct sk_buff
*skb
, const struct xt_target_param
*par
)
63 const struct xt_mark_tginfo2
*info
= par
->targinfo
;
65 skb
->mark
= (skb
->mark
& ~info
->mask
) ^ info
->mark
;
69 static bool mark_tg_check_v0(const struct xt_tgchk_param
*par
)
71 const struct xt_mark_target_info
*markinfo
= par
->targinfo
;
73 if (markinfo
->mark
> 0xffffffff) {
74 printk(KERN_WARNING
"MARK: Only supports 32bit wide mark\n");
80 static bool mark_tg_check_v1(const struct xt_tgchk_param
*par
)
82 const struct xt_mark_target_info_v1
*markinfo
= par
->targinfo
;
84 if (markinfo
->mode
!= XT_MARK_SET
85 && markinfo
->mode
!= XT_MARK_AND
86 && markinfo
->mode
!= XT_MARK_OR
) {
87 printk(KERN_WARNING
"MARK: unknown mode %u\n",
91 if (markinfo
->mark
> 0xffffffff) {
92 printk(KERN_WARNING
"MARK: Only supports 32bit wide mark\n");
99 struct compat_xt_mark_target_info
{
103 static void mark_tg_compat_from_user_v0(void *dst
, void *src
)
105 const struct compat_xt_mark_target_info
*cm
= src
;
106 struct xt_mark_target_info m
= {
109 memcpy(dst
, &m
, sizeof(m
));
112 static int mark_tg_compat_to_user_v0(void __user
*dst
, void *src
)
114 const struct xt_mark_target_info
*m
= src
;
115 struct compat_xt_mark_target_info cm
= {
118 return copy_to_user(dst
, &cm
, sizeof(cm
)) ? -EFAULT
: 0;
121 struct compat_xt_mark_target_info_v1
{
128 static void mark_tg_compat_from_user_v1(void *dst
, void *src
)
130 const struct compat_xt_mark_target_info_v1
*cm
= src
;
131 struct xt_mark_target_info_v1 m
= {
135 memcpy(dst
, &m
, sizeof(m
));
138 static int mark_tg_compat_to_user_v1(void __user
*dst
, void *src
)
140 const struct xt_mark_target_info_v1
*m
= src
;
141 struct compat_xt_mark_target_info_v1 cm
= {
145 return copy_to_user(dst
, &cm
, sizeof(cm
)) ? -EFAULT
: 0;
147 #endif /* CONFIG_COMPAT */
149 static struct xt_target mark_tg_reg
[] __read_mostly
= {
152 .family
= NFPROTO_UNSPEC
,
154 .checkentry
= mark_tg_check_v0
,
155 .target
= mark_tg_v0
,
156 .targetsize
= sizeof(struct xt_mark_target_info
),
158 .compatsize
= sizeof(struct compat_xt_mark_target_info
),
159 .compat_from_user
= mark_tg_compat_from_user_v0
,
160 .compat_to_user
= mark_tg_compat_to_user_v0
,
167 .family
= NFPROTO_UNSPEC
,
169 .checkentry
= mark_tg_check_v1
,
170 .target
= mark_tg_v1
,
171 .targetsize
= sizeof(struct xt_mark_target_info_v1
),
173 .compatsize
= sizeof(struct compat_xt_mark_target_info_v1
),
174 .compat_from_user
= mark_tg_compat_from_user_v1
,
175 .compat_to_user
= mark_tg_compat_to_user_v1
,
183 .family
= NFPROTO_UNSPEC
,
185 .targetsize
= sizeof(struct xt_mark_tginfo2
),
190 static int __init
mark_tg_init(void)
192 return xt_register_targets(mark_tg_reg
, ARRAY_SIZE(mark_tg_reg
));
195 static void __exit
mark_tg_exit(void)
197 xt_unregister_targets(mark_tg_reg
, ARRAY_SIZE(mark_tg_reg
));
200 module_init(mark_tg_init
);
201 module_exit(mark_tg_exit
);