2007-03-12 03:46:02 +05:30
|
|
|
/*
|
|
|
|
* runcon [ context |
|
|
|
|
* ( [ -c ] [ -r role ] [-t type] [ -u user ] [ -l levelrange ] )
|
|
|
|
* command [arg1 [arg2 ...] ]
|
|
|
|
*
|
|
|
|
* attempt to run the specified command with the specified context.
|
|
|
|
*
|
|
|
|
* -r role : use the current context with the specified role
|
|
|
|
* -t type : use the current context with the specified type
|
|
|
|
* -u user : use the current context with the specified user
|
|
|
|
* -l level : use the current context with the specified level range
|
|
|
|
* -c : compute process transition context before modifying
|
|
|
|
*
|
|
|
|
* Contexts are interpreted as follows:
|
|
|
|
*
|
|
|
|
* Number of MLS
|
|
|
|
* components system?
|
|
|
|
*
|
|
|
|
* 1 - type
|
|
|
|
* 2 - role:type
|
|
|
|
* 3 Y role:type:range
|
|
|
|
* 3 N user:role:type
|
|
|
|
* 4 Y user:role:type:range
|
|
|
|
* 4 N error
|
|
|
|
*
|
|
|
|
* Port to busybox: KaiGai Kohei <kaigai@kaigai.gr.jp>
|
|
|
|
* - based on coreutils-5.97 (in Fedora Core 6)
|
2008-12-07 06:22:58 +05:30
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2, see file LICENSE in this source tree.
|
2007-03-12 03:46:02 +05:30
|
|
|
*/
|
|
|
|
#include <getopt.h>
|
|
|
|
#include <selinux/context.h>
|
|
|
|
#include <selinux/flask.h>
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
|
|
|
|
2007-03-12 03:46:02 +05:30
|
|
|
static context_t runcon_compute_new_context(char *user, char *role, char *type, char *range,
|
|
|
|
char *command, int compute_trans)
|
|
|
|
{
|
|
|
|
context_t con;
|
|
|
|
security_context_t cur_context;
|
|
|
|
|
|
|
|
if (getcon(&cur_context))
|
2009-11-13 13:38:27 +05:30
|
|
|
bb_error_msg_and_die("can't get current context");
|
2007-03-12 03:46:02 +05:30
|
|
|
|
|
|
|
if (compute_trans) {
|
|
|
|
security_context_t file_context, new_context;
|
|
|
|
|
|
|
|
if (getfilecon(command, &file_context) < 0)
|
2009-11-13 13:38:27 +05:30
|
|
|
bb_error_msg_and_die("can't retrieve attributes of '%s'",
|
2007-03-12 03:46:02 +05:30
|
|
|
command);
|
|
|
|
if (security_compute_create(cur_context, file_context,
|
|
|
|
SECCLASS_PROCESS, &new_context))
|
|
|
|
bb_error_msg_and_die("unable to compute a new context");
|
|
|
|
cur_context = new_context;
|
|
|
|
}
|
|
|
|
|
|
|
|
con = context_new(cur_context);
|
|
|
|
if (!con)
|
|
|
|
bb_error_msg_and_die("'%s' is not a valid context", cur_context);
|
|
|
|
if (user && context_user_set(con, user))
|
2010-03-23 20:55:17 +05:30
|
|
|
bb_error_msg_and_die("can't set new user '%s'", user);
|
2007-03-12 03:46:02 +05:30
|
|
|
if (type && context_type_set(con, type))
|
2010-03-23 20:55:17 +05:30
|
|
|
bb_error_msg_and_die("can't set new type '%s'", type);
|
2007-03-12 03:46:02 +05:30
|
|
|
if (range && context_range_set(con, range))
|
2010-03-23 20:55:17 +05:30
|
|
|
bb_error_msg_and_die("can't set new range '%s'", range);
|
2007-03-12 03:46:02 +05:30
|
|
|
if (role && context_role_set(con, role))
|
2010-03-23 20:55:17 +05:30
|
|
|
bb_error_msg_and_die("can't set new role '%s'", role);
|
2007-03-12 03:46:02 +05:30
|
|
|
|
|
|
|
return con;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if ENABLE_FEATURE_RUNCON_LONG_OPTIONS
|
2007-08-13 02:28:27 +05:30
|
|
|
static const char runcon_longopts[] ALIGN1 =
|
2007-07-23 22:44:14 +05:30
|
|
|
"user\0" Required_argument "u"
|
|
|
|
"role\0" Required_argument "r"
|
|
|
|
"type\0" Required_argument "t"
|
|
|
|
"range\0" Required_argument "l"
|
|
|
|
"compute\0" No_argument "c"
|
2007-08-13 16:39:30 +05:30
|
|
|
"help\0" No_argument "h"
|
2007-07-24 21:24:42 +05:30
|
|
|
;
|
2007-03-12 03:46:02 +05:30
|
|
|
#endif
|
|
|
|
|
|
|
|
#define OPTS_ROLE (1<<0) /* r */
|
|
|
|
#define OPTS_TYPE (1<<1) /* t */
|
|
|
|
#define OPTS_USER (1<<2) /* u */
|
|
|
|
#define OPTS_RANGE (1<<3) /* l */
|
|
|
|
#define OPTS_COMPUTE (1<<4) /* c */
|
|
|
|
#define OPTS_HELP (1<<5) /* h */
|
|
|
|
#define OPTS_CONTEXT_COMPONENT (OPTS_ROLE | OPTS_TYPE | OPTS_USER | OPTS_RANGE)
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int runcon_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int runcon_main(int argc UNUSED_PARAM, char **argv)
|
2007-03-12 03:46:02 +05:30
|
|
|
{
|
|
|
|
char *role = NULL;
|
|
|
|
char *range = NULL;
|
|
|
|
char *user = NULL;
|
|
|
|
char *type = NULL;
|
|
|
|
char *context = NULL;
|
|
|
|
unsigned opts;
|
|
|
|
context_t con;
|
|
|
|
|
|
|
|
selinux_or_die();
|
|
|
|
|
|
|
|
#if ENABLE_FEATURE_RUNCON_LONG_OPTIONS
|
2007-08-13 02:28:27 +05:30
|
|
|
applet_long_options = runcon_longopts;
|
2007-03-12 03:46:02 +05:30
|
|
|
#endif
|
|
|
|
opt_complementary = "-1";
|
2007-08-18 21:02:12 +05:30
|
|
|
opts = getopt32(argv, "r:t:u:l:ch", &role, &type, &user, &range);
|
2007-03-12 03:46:02 +05:30
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
if (!(opts & OPTS_CONTEXT_COMPONENT)) {
|
|
|
|
context = *argv++;
|
|
|
|
if (!argv[0])
|
2007-04-10 21:12:06 +05:30
|
|
|
bb_error_msg_and_die("no command given");
|
2007-03-12 03:46:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if (context) {
|
|
|
|
con = context_new(context);
|
|
|
|
if (!con)
|
|
|
|
bb_error_msg_and_die("'%s' is not a valid context", context);
|
|
|
|
} else {
|
|
|
|
con = runcon_compute_new_context(user, role, type, range,
|
|
|
|
argv[0], opts & OPTS_COMPUTE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (security_check_context(context_str(con)))
|
|
|
|
bb_error_msg_and_die("'%s' is not a valid context",
|
|
|
|
context_str(con));
|
|
|
|
|
|
|
|
if (setexeccon(context_str(con)))
|
2009-04-22 02:10:51 +05:30
|
|
|
bb_error_msg_and_die("can't set up security context '%s'",
|
2007-03-12 03:46:02 +05:30
|
|
|
context_str(con));
|
|
|
|
|
2010-11-28 09:04:09 +05:30
|
|
|
BB_EXECVP_or_die(argv);
|
2007-03-12 03:46:02 +05:30
|
|
|
}
|