1 // SPDX-License-Identifier: GPL-2.0-only
3 * xt_mark - Netfilter module to match NFMARK value
5 * (C) 1999-2001 Marc Boucher <marc@mbsi.ca>
6 * Copyright © CC Computer Consultants GmbH, 2007 - 2008
7 * Jan Engelhardt <jengelh@medozas.de>
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("Xtables: packet mark operations");
19 MODULE_ALIAS("ipt_mark");
20 MODULE_ALIAS("ip6t_mark");
21 MODULE_ALIAS("ipt_MARK");
22 MODULE_ALIAS("ip6t_MARK");
23 MODULE_ALIAS("arpt_MARK");
26 mark_tg(struct sk_buff
*skb
, const struct xt_action_param
*par
)
28 const struct xt_mark_tginfo2
*info
= par
->targinfo
;
30 skb
->mark
= (skb
->mark
& ~info
->mask
) ^ info
->mark
;
35 mark_mt(const struct sk_buff
*skb
, struct xt_action_param
*par
)
37 const struct xt_mark_mtinfo1
*info
= par
->matchinfo
;
39 return ((skb
->mark
& info
->mask
) == info
->mark
) ^ info
->invert
;
42 static struct xt_target mark_tg_reg
[] __read_mostly
= {
46 .family
= NFPROTO_IPV4
,
48 .targetsize
= sizeof(struct xt_mark_tginfo2
),
51 #if IS_ENABLED(CONFIG_IP_NF_ARPTABLES)
55 .family
= NFPROTO_ARP
,
57 .targetsize
= sizeof(struct xt_mark_tginfo2
),
61 #if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
65 .family
= NFPROTO_IPV6
,
67 .targetsize
= sizeof(struct xt_mark_tginfo2
),
73 static struct xt_match mark_mt_reg __read_mostly
= {
76 .family
= NFPROTO_UNSPEC
,
78 .matchsize
= sizeof(struct xt_mark_mtinfo1
),
82 static int __init
mark_mt_init(void)
86 ret
= xt_register_targets(mark_tg_reg
, ARRAY_SIZE(mark_tg_reg
));
89 ret
= xt_register_match(&mark_mt_reg
);
91 xt_unregister_targets(mark_tg_reg
, ARRAY_SIZE(mark_tg_reg
));
97 static void __exit
mark_mt_exit(void)
99 xt_unregister_match(&mark_mt_reg
);
100 xt_unregister_targets(mark_tg_reg
, ARRAY_SIZE(mark_tg_reg
));
103 module_init(mark_mt_init
);
104 module_exit(mark_mt_exit
);