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
= {
45 .family
= NFPROTO_UNSPEC
,
47 .targetsize
= sizeof(struct xt_mark_tginfo2
),
51 static struct xt_match mark_mt_reg __read_mostly
= {
54 .family
= NFPROTO_UNSPEC
,
56 .matchsize
= sizeof(struct xt_mark_mtinfo1
),
60 static int __init
mark_mt_init(void)
64 ret
= xt_register_target(&mark_tg_reg
);
67 ret
= xt_register_match(&mark_mt_reg
);
69 xt_unregister_target(&mark_tg_reg
);
75 static void __exit
mark_mt_exit(void)
77 xt_unregister_match(&mark_mt_reg
);
78 xt_unregister_target(&mark_tg_reg
);
81 module_init(mark_mt_init
);
82 module_exit(mark_mt_exit
);