1 // SPDX-License-Identifier: GPL-2.0-only
3 * Module for modifying the secmark field of the skb, for use by
6 * Based on the nfmark match by:
7 * (C) 1999-2001 Marc Boucher <marc@mbsi.ca>
9 * (C) 2006,2008 Red Hat, Inc., James Morris <jmorris@redhat.com>
11 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12 #include <linux/module.h>
13 #include <linux/security.h>
14 #include <linux/skbuff.h>
15 #include <linux/netfilter/x_tables.h>
16 #include <linux/netfilter/xt_SECMARK.h>
18 MODULE_LICENSE("GPL");
19 MODULE_AUTHOR("James Morris <jmorris@redhat.com>");
20 MODULE_DESCRIPTION("Xtables: packet security mark modification");
21 MODULE_ALIAS("ipt_SECMARK");
22 MODULE_ALIAS("ip6t_SECMARK");
24 #define PFX "SECMARK: "
29 secmark_tg(struct sk_buff
*skb
, const struct xt_action_param
*par
)
32 const struct xt_secmark_target_info
*info
= par
->targinfo
;
35 case SECMARK_MODE_SEL
:
36 secmark
= info
->secid
;
42 skb
->secmark
= secmark
;
46 static int checkentry_lsm(struct xt_secmark_target_info
*info
)
50 info
->secctx
[SECMARK_SECCTX_MAX
- 1] = '\0';
53 err
= security_secctx_to_secid(info
->secctx
, strlen(info
->secctx
),
57 pr_info_ratelimited("invalid security context \'%s\'\n",
63 pr_info_ratelimited("unable to map security context \'%s\'\n",
68 err
= security_secmark_relabel_packet(info
->secid
);
70 pr_info_ratelimited("unable to obtain relabeling permission\n");
74 security_secmark_refcount_inc();
78 static int secmark_tg_check(const struct xt_tgchk_param
*par
)
80 struct xt_secmark_target_info
*info
= par
->targinfo
;
83 if (strcmp(par
->table
, "mangle") != 0 &&
84 strcmp(par
->table
, "security") != 0) {
85 pr_info_ratelimited("only valid in \'mangle\' or \'security\' table, not \'%s\'\n",
90 if (mode
&& mode
!= info
->mode
) {
91 pr_info_ratelimited("mode already set to %hu cannot mix with rules for mode %hu\n",
97 case SECMARK_MODE_SEL
:
100 pr_info_ratelimited("invalid mode: %hu\n", info
->mode
);
104 err
= checkentry_lsm(info
);
113 static void secmark_tg_destroy(const struct xt_tgdtor_param
*par
)
116 case SECMARK_MODE_SEL
:
117 security_secmark_refcount_dec();
121 static struct xt_target secmark_tg_reg __read_mostly
= {
124 .family
= NFPROTO_UNSPEC
,
125 .checkentry
= secmark_tg_check
,
126 .destroy
= secmark_tg_destroy
,
127 .target
= secmark_tg
,
128 .targetsize
= sizeof(struct xt_secmark_target_info
),
132 static int __init
secmark_tg_init(void)
134 return xt_register_target(&secmark_tg_reg
);
137 static void __exit
secmark_tg_exit(void)
139 xt_unregister_target(&secmark_tg_reg
);
142 module_init(secmark_tg_init
);
143 module_exit(secmark_tg_exit
);