]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/netfilter/xt_SECMARK.c
scm: lower SCM_MAX_FD
[net-next-2.6.git] / net / netfilter / xt_SECMARK.c
CommitLineData
5e6874cd
JM
1/*
2 * Module for modifying the secmark field of the skb, for use by
3 * security subsystems.
4 *
5 * Based on the nfmark match by:
6 * (C) 1999-2001 Marc Boucher <marc@mbsi.ca>
7 *
560ee653 8 * (C) 2006,2008 Red Hat, Inc., James Morris <jmorris@redhat.com>
5e6874cd
JM
9 *
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.
13 *
14 */
8bee4bad 15#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
5e6874cd 16#include <linux/module.h>
2606fd1f 17#include <linux/security.h>
5e6874cd 18#include <linux/skbuff.h>
5e6874cd
JM
19#include <linux/netfilter/x_tables.h>
20#include <linux/netfilter/xt_SECMARK.h>
21
22MODULE_LICENSE("GPL");
23MODULE_AUTHOR("James Morris <jmorris@redhat.com>");
2ae15b64 24MODULE_DESCRIPTION("Xtables: packet security mark modification");
5e6874cd
JM
25MODULE_ALIAS("ipt_SECMARK");
26MODULE_ALIAS("ip6t_SECMARK");
27
28#define PFX "SECMARK: "
29
30static u8 mode;
31
d3c5ee6d 32static unsigned int
4b560b44 33secmark_tg(struct sk_buff *skb, const struct xt_action_param *par)
5e6874cd
JM
34{
35 u32 secmark = 0;
7eb35586 36 const struct xt_secmark_target_info *info = par->targinfo;
5e6874cd
JM
37
38 BUG_ON(info->mode != mode);
39
40 switch (mode) {
41 case SECMARK_MODE_SEL:
2606fd1f 42 secmark = info->secid;
5e6874cd 43 break;
5e6874cd
JM
44 default:
45 BUG();
46 }
47
3db05fea 48 skb->secmark = secmark;
5e6874cd
JM
49 return XT_CONTINUE;
50}
51
2606fd1f 52static int checkentry_lsm(struct xt_secmark_target_info *info)
5e6874cd
JM
53{
54 int err;
601e68e1 55
2606fd1f
EP
56 info->secctx[SECMARK_SECCTX_MAX - 1] = '\0';
57 info->secid = 0;
5e6874cd 58
2606fd1f
EP
59 err = security_secctx_to_secid(info->secctx, strlen(info->secctx),
60 &info->secid);
5e6874cd
JM
61 if (err) {
62 if (err == -EINVAL)
2606fd1f 63 pr_info("invalid security context \'%s\'\n", info->secctx);
4a5a5c73 64 return err;
5e6874cd
JM
65 }
66
2606fd1f
EP
67 if (!info->secid) {
68 pr_info("unable to map security context \'%s\'\n", info->secctx);
4a5a5c73 69 return -ENOENT;
5e6874cd
JM
70 }
71
2606fd1f 72 err = security_secmark_relabel_packet(info->secid);
5e6874cd 73 if (err) {
8bee4bad 74 pr_info("unable to obtain relabeling permission\n");
4a5a5c73 75 return err;
5e6874cd
JM
76 }
77
2606fd1f 78 security_secmark_refcount_inc();
4a5a5c73 79 return 0;
5e6874cd
JM
80}
81
135367b8 82static int secmark_tg_check(const struct xt_tgchk_param *par)
5e6874cd 83{
af5d6dc2 84 struct xt_secmark_target_info *info = par->targinfo;
4a5a5c73 85 int err;
5e6874cd 86
af5d6dc2
JE
87 if (strcmp(par->table, "mangle") != 0 &&
88 strcmp(par->table, "security") != 0) {
8bee4bad
JE
89 pr_info("target only valid in the \'mangle\' "
90 "or \'security\' tables, not \'%s\'.\n", par->table);
d6b00a53 91 return -EINVAL;
560ee653
JM
92 }
93
5e6874cd 94 if (mode && mode != info->mode) {
8bee4bad
JE
95 pr_info("mode already set to %hu cannot mix with "
96 "rules for mode %hu\n", mode, info->mode);
d6b00a53 97 return -EINVAL;
5e6874cd
JM
98 }
99
100 switch (info->mode) {
101 case SECMARK_MODE_SEL:
5e6874cd 102 break;
5e6874cd 103 default:
8bee4bad 104 pr_info("invalid mode: %hu\n", info->mode);
d6b00a53 105 return -EINVAL;
5e6874cd
JM
106 }
107
2606fd1f
EP
108 err = checkentry_lsm(info);
109 if (err)
110 return err;
111
5e6874cd
JM
112 if (!mode)
113 mode = info->mode;
d6b00a53 114 return 0;
5e6874cd
JM
115}
116
a2df1648 117static void secmark_tg_destroy(const struct xt_tgdtor_param *par)
d621d35e
PM
118{
119 switch (mode) {
120 case SECMARK_MODE_SEL:
2606fd1f 121 security_secmark_refcount_dec();
d621d35e
PM
122 }
123}
124
55b69e91
JE
125static struct xt_target secmark_tg_reg __read_mostly = {
126 .name = "SECMARK",
127 .revision = 0,
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),
133 .me = THIS_MODULE,
5e6874cd
JM
134};
135
d3c5ee6d 136static int __init secmark_tg_init(void)
5e6874cd 137{
55b69e91 138 return xt_register_target(&secmark_tg_reg);
5e6874cd
JM
139}
140
d3c5ee6d 141static void __exit secmark_tg_exit(void)
5e6874cd 142{
55b69e91 143 xt_unregister_target(&secmark_tg_reg);
5e6874cd
JM
144}
145
d3c5ee6d
JE
146module_init(secmark_tg_init);
147module_exit(secmark_tg_exit);