2 * Module for modifying the secmark field of the skb, for use by
5 * Based on the nfmark match by:
6 * (C) 1999-2001 Marc Boucher <marc@mbsi.ca>
8 * (C) 2006,2008 Red Hat, Inc., James Morris <jmorris@redhat.com>
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 #include <linux/module.h>
16 #include <linux/skbuff.h>
17 #include <linux/selinux.h>
18 #include <linux/netfilter/x_tables.h>
19 #include <linux/netfilter/xt_SECMARK.h>
21 MODULE_LICENSE("GPL");
22 MODULE_AUTHOR("James Morris <jmorris@redhat.com>");
23 MODULE_DESCRIPTION("Xtables: packet security mark modification");
24 MODULE_ALIAS("ipt_SECMARK");
25 MODULE_ALIAS("ip6t_SECMARK");
27 #define PFX "SECMARK: "
32 secmark_tg(struct sk_buff
*skb
, const struct xt_target_param
*par
)
35 const struct xt_secmark_target_info
*info
= par
->targinfo
;
37 BUG_ON(info
->mode
!= mode
);
40 case SECMARK_MODE_SEL
:
41 secmark
= info
->u
.sel
.selsid
;
48 skb
->secmark
= secmark
;
52 static bool checkentry_selinux(struct xt_secmark_target_info
*info
)
55 struct xt_secmark_target_selinux_info
*sel
= &info
->u
.sel
;
57 sel
->selctx
[SECMARK_SELCTX_MAX
- 1] = '\0';
59 err
= selinux_string_to_sid(sel
->selctx
, &sel
->selsid
);
62 printk(KERN_INFO PFX
"invalid SELinux context \'%s\'\n",
68 printk(KERN_INFO PFX
"unable to map SELinux context \'%s\'\n",
73 err
= selinux_secmark_relabel_packet_permission(sel
->selsid
);
75 printk(KERN_INFO PFX
"unable to obtain relabeling permission\n");
79 selinux_secmark_refcount_inc();
83 static bool secmark_tg_check(const struct xt_tgchk_param
*par
)
85 struct xt_secmark_target_info
*info
= par
->targinfo
;
87 if (strcmp(par
->table
, "mangle") != 0 &&
88 strcmp(par
->table
, "security") != 0) {
89 printk(KERN_INFO PFX
"target only valid in the \'mangle\' "
90 "or \'security\' tables, not \'%s\'.\n", par
->table
);
94 if (mode
&& mode
!= info
->mode
) {
95 printk(KERN_INFO PFX
"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
:
102 if (!checkentry_selinux(info
))
107 printk(KERN_INFO PFX
"invalid mode: %hu\n", info
->mode
);
116 static void secmark_tg_destroy(const struct xt_tgdtor_param
*par
)
119 case SECMARK_MODE_SEL
:
120 selinux_secmark_refcount_dec();
124 static struct xt_target secmark_tg_reg __read_mostly
= {
127 .family
= NFPROTO_UNSPEC
,
128 .checkentry
= secmark_tg_check
,
129 .destroy
= secmark_tg_destroy
,
130 .target
= secmark_tg
,
131 .targetsize
= sizeof(struct xt_secmark_target_info
),
135 static int __init
secmark_tg_init(void)
137 return xt_register_target(&secmark_tg_reg
);
140 static void __exit
secmark_tg_exit(void)
142 xt_unregister_target(&secmark_tg_reg
);
145 module_init(secmark_tg_init
);
146 module_exit(secmark_tg_exit
);