diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-11 22:16:02 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-11 22:16:02 +0000 |
commit | 1203c9bf2f63938f7766a3022a9659b25712824f (patch) | |
tree | 162a5019d61ce2403466754ab0ee727e04f1563b /selinux/runcon.c | |
parent | baca1759129945fcd03d96ccc840892401b5a1af (diff) | |
download | busybox-w32-1203c9bf2f63938f7766a3022a9659b25712824f.tar.gz busybox-w32-1203c9bf2f63938f7766a3022a9659b25712824f.tar.bz2 busybox-w32-1203c9bf2f63938f7766a3022a9659b25712824f.zip |
next portion of selinux updates: chcon, runcon. From
Yuichi Nakamura <himainu-ynakam@miomio.jp>
KaiGai Kohei <busybox@kaigai.gr.jp>
Diffstat (limited to 'selinux/runcon.c')
-rw-r--r-- | selinux/runcon.c | 137 |
1 files changed, 137 insertions, 0 deletions
diff --git a/selinux/runcon.c b/selinux/runcon.c new file mode 100644 index 000000000..24e436feb --- /dev/null +++ b/selinux/runcon.c | |||
@@ -0,0 +1,137 @@ | |||
1 | /* | ||
2 | * runcon [ context | | ||
3 | * ( [ -c ] [ -r role ] [-t type] [ -u user ] [ -l levelrange ] ) | ||
4 | * command [arg1 [arg2 ...] ] | ||
5 | * | ||
6 | * attempt to run the specified command with the specified context. | ||
7 | * | ||
8 | * -r role : use the current context with the specified role | ||
9 | * -t type : use the current context with the specified type | ||
10 | * -u user : use the current context with the specified user | ||
11 | * -l level : use the current context with the specified level range | ||
12 | * -c : compute process transition context before modifying | ||
13 | * | ||
14 | * Contexts are interpreted as follows: | ||
15 | * | ||
16 | * Number of MLS | ||
17 | * components system? | ||
18 | * | ||
19 | * 1 - type | ||
20 | * 2 - role:type | ||
21 | * 3 Y role:type:range | ||
22 | * 3 N user:role:type | ||
23 | * 4 Y user:role:type:range | ||
24 | * 4 N error | ||
25 | * | ||
26 | * Port to busybox: KaiGai Kohei <kaigai@kaigai.gr.jp> | ||
27 | * - based on coreutils-5.97 (in Fedora Core 6) | ||
28 | */ | ||
29 | #include "busybox.h" | ||
30 | #include <getopt.h> | ||
31 | #include <selinux/context.h> | ||
32 | #include <selinux/flask.h> | ||
33 | |||
34 | static context_t runcon_compute_new_context(char *user, char *role, char *type, char *range, | ||
35 | char *command, int compute_trans) | ||
36 | { | ||
37 | context_t con; | ||
38 | security_context_t cur_context; | ||
39 | |||
40 | if (getcon(&cur_context)) | ||
41 | bb_error_msg_and_die("cannot get current context"); | ||
42 | |||
43 | if (compute_trans) { | ||
44 | security_context_t file_context, new_context; | ||
45 | |||
46 | if (getfilecon(command, &file_context) < 0) | ||
47 | bb_error_msg_and_die("cannot retrieve attributes of '%s'", | ||
48 | command); | ||
49 | if (security_compute_create(cur_context, file_context, | ||
50 | SECCLASS_PROCESS, &new_context)) | ||
51 | bb_error_msg_and_die("unable to compute a new context"); | ||
52 | cur_context = new_context; | ||
53 | } | ||
54 | |||
55 | con = context_new(cur_context); | ||
56 | if (!con) | ||
57 | bb_error_msg_and_die("'%s' is not a valid context", cur_context); | ||
58 | if (user && context_user_set(con, user)) | ||
59 | bb_error_msg_and_die("failed to set new user '%s'", user); | ||
60 | if (type && context_type_set(con, type)) | ||
61 | bb_error_msg_and_die("failed to set new type '%s'", type); | ||
62 | if (range && context_range_set(con, range)) | ||
63 | bb_error_msg_and_die("failed to set new range '%s'", range); | ||
64 | if (role && context_role_set(con, role)) | ||
65 | bb_error_msg_and_die("failed to set new role '%s'", role); | ||
66 | |||
67 | return con; | ||
68 | } | ||
69 | |||
70 | #if ENABLE_FEATURE_RUNCON_LONG_OPTIONS | ||
71 | static const struct option runcon_options[] = { | ||
72 | { "user", 1, NULL, 'u' }, | ||
73 | { "role", 1, NULL, 'r' }, | ||
74 | { "type", 1, NULL, 't' }, | ||
75 | { "range", 1, NULL, 'l' }, | ||
76 | { "compute", 0, NULL, 'c' }, | ||
77 | { "help", 0, NULL, 'h' }, | ||
78 | { NULL, 0, NULL, 0 }, | ||
79 | }; | ||
80 | #endif | ||
81 | |||
82 | #define OPTS_ROLE (1<<0) /* r */ | ||
83 | #define OPTS_TYPE (1<<1) /* t */ | ||
84 | #define OPTS_USER (1<<2) /* u */ | ||
85 | #define OPTS_RANGE (1<<3) /* l */ | ||
86 | #define OPTS_COMPUTE (1<<4) /* c */ | ||
87 | #define OPTS_HELP (1<<5) /* h */ | ||
88 | #define OPTS_CONTEXT_COMPONENT (OPTS_ROLE | OPTS_TYPE | OPTS_USER | OPTS_RANGE) | ||
89 | |||
90 | int runcon_main(int argc, char *argv[]); | ||
91 | int runcon_main(int argc, char *argv[]) | ||
92 | { | ||
93 | char *role = NULL; | ||
94 | char *range = NULL; | ||
95 | char *user = NULL; | ||
96 | char *type = NULL; | ||
97 | char *context = NULL; | ||
98 | unsigned opts; | ||
99 | context_t con; | ||
100 | |||
101 | selinux_or_die(); | ||
102 | |||
103 | #if ENABLE_FEATURE_RUNCON_LONG_OPTIONS | ||
104 | applet_long_options = runcon_options; | ||
105 | #endif | ||
106 | opt_complementary = "-1"; | ||
107 | opts = getopt32(argc, argv, "r:t:u:l:ch", &role, &type, &user, &range); | ||
108 | argv += optind; | ||
109 | |||
110 | if (!(opts & OPTS_CONTEXT_COMPONENT)) { | ||
111 | context = *argv++; | ||
112 | if (!argv[0]) | ||
113 | bb_error_msg_and_die("no command found"); | ||
114 | } | ||
115 | |||
116 | if (context) { | ||
117 | con = context_new(context); | ||
118 | if (!con) | ||
119 | bb_error_msg_and_die("'%s' is not a valid context", context); | ||
120 | } else { | ||
121 | con = runcon_compute_new_context(user, role, type, range, | ||
122 | argv[0], opts & OPTS_COMPUTE); | ||
123 | } | ||
124 | |||
125 | if (security_check_context(context_str(con))) | ||
126 | bb_error_msg_and_die("'%s' is not a valid context", | ||
127 | context_str(con)); | ||
128 | |||
129 | if (setexeccon(context_str(con))) | ||
130 | bb_error_msg_and_die("cannot set up security context '%s'", | ||
131 | context_str(con)); | ||
132 | |||
133 | execvp(argv[0], argv); | ||
134 | |||
135 | bb_perror_msg_and_die("cannot execute '%s'", command); | ||
136 | return 1; | ||
137 | } | ||