2 * Module for modifying the secmark field of the skb, for use by
5 * Based on the nfmark match by:
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16 #include <linux/module.h>
17 #include <linux/security.h>
18 #include <linux/skbuff.h>
19 #include <linux/netfilter/x_tables.h>
20 #include <linux/netfilter/xt_SECMARK.h>
22 MODULE_LICENSE("GPL");
24 MODULE_DESCRIPTION("Xtables: packet security mark modification");
25 MODULE_ALIAS("ipt_SECMARK");
26 MODULE_ALIAS("ip6t_SECMARK");
28 #define PFX "SECMARK: "
33 secmark_tg(struct sk_buff *skb, const struct xt_action_param *par)
36 const struct xt_secmark_target_info *info = par->targinfo;
38 BUG_ON(info->mode != mode);
41 case SECMARK_MODE_SEL:
42 secmark = info->secid;
48 skb->secmark = secmark;
52 static int checkentry_lsm(struct xt_secmark_target_info *info)
56 info->secctx[SECMARK_SECCTX_MAX - 1] = '\0';
59 err = security_secctx_to_secid(info->secctx, strlen(info->secctx),
63 pr_info("invalid security context \'%s\'\n", info->secctx);
68 pr_info("unable to map security context \'%s\'\n", info->secctx);
72 err = security_secmark_relabel_packet(info->secid);
74 pr_info("unable to obtain relabeling permission\n");
78 security_secmark_refcount_inc();
82 static int secmark_tg_check(const struct xt_tgchk_param *par)
84 struct xt_secmark_target_info *info = par->targinfo;
87 if (strcmp(par->table, "mangle") != 0 &&
88 strcmp(par->table, "security") != 0) {
89 pr_info("target only valid in the \'mangle\' "
90 "or \'security\' tables, not \'%s\'.\n", par->table);
94 if (mode && mode != info->mode) {
95 pr_info("mode already set to %hu cannot mix with "
96 "rules for mode %hu\n", mode, info->mode);
100 switch (info->mode) {
101 case SECMARK_MODE_SEL:
104 pr_info("invalid mode: %hu\n", info->mode);
108 err = checkentry_lsm(info);
117 static void secmark_tg_destroy(const struct xt_tgdtor_param *par)
120 case SECMARK_MODE_SEL:
121 security_secmark_refcount_dec();
125 static struct xt_target secmark_tg_reg __read_mostly = {
128 .family = NFPROTO_UNSPEC,
129 .checkentry = secmark_tg_check,
130 .destroy = secmark_tg_destroy,
131 .target = secmark_tg,
132 .targetsize = sizeof(struct xt_secmark_target_info),
136 static int __init secmark_tg_init(void)
138 return xt_register_target(&secmark_tg_reg);
141 static void __exit secmark_tg_exit(void)
143 xt_unregister_target(&secmark_tg_reg);
146 module_init(secmark_tg_init);
147 module_exit(secmark_tg_exit);