mirror of
https://github.com/sheumann/hush.git
synced 2024-10-31 19:04:47 +00:00
bdc88fdc68
function old new delta tar_longopts - 222 +222 static.udhcpc_longopts - 192 +192 start_stop_daemon_longopts - 150 +150 getopt32 1045 1185 +140 static.wget_longopts - 111 +111 static.od_longopts - 105 +105 getopt_longopts - 96 +96 install_longopts - 67 +67 ipcalc_longopts - 63 +63 static.hwclock_longopts - 54 +54 ftpgetput_longopts - 52 +52 static.dumpleases_longopts - 32 +32 env_longopts - 31 +31 runparts_longopts - 30 +30 mv_longopts - 24 +24 mkdir_longopts - 19 +19 find_pair 164 180 +16 bb_null_long_options - 16 +16 setconsole_longopts - 10 +10 display_speed 91 98 +7 collect_blk 467 474 +7 show_color 4 1 -3 ls_main 913 904 -9 bb_default_long_options 16 - -16 ls_color_opt 32 10 -22 setconsole_long_options 32 - -32 arith 2077 2030 -47 mv_long_options 48 - -48 mkdir_long_options 48 - -48 env_long_options 48 - -48 static.options 248 184 -64 runparts_long_options 80 - -80 ftpgetput_long_options 96 - -96 static.hwclock_long_options 112 - -112 install_long_options 112 - -112 static.long_options 144 - -144 static.wget_long_options 160 - -160 longopts 160 - -160 static.arg_options 304 - -304 tar_long_options 320 - -320 long_options 384 - -384 ------------------------------------------------------------------------------ (add/remove: 17/15 grow/shrink: 4/5 up/down: 1444/-2209) Total: -765 bytes text data bss dec hex filename 782618 1328 11900 795846 c24c6 busybox_old 781354 1328 11900 794582 c1fd6 busybox_unstripped
174 lines
5.0 KiB
C
174 lines
5.0 KiB
C
/*
|
|
* chcon -- change security context, based on coreutils-5.97-13
|
|
*
|
|
* Port to busybox: KaiGai Kohei <kaigai@kaigai.gr.jp>
|
|
*
|
|
* Copyright (C) 2006 - 2007 KaiGai Kohei <kaigai@kaigai.gr.jp>
|
|
*/
|
|
#include <getopt.h>
|
|
#include <selinux/context.h>
|
|
|
|
#include "libbb.h"
|
|
|
|
#define OPT_RECURSIVE (1<<0) /* 'R' */
|
|
#define OPT_CHANHES (1<<1) /* 'c' */
|
|
#define OPT_NODEREFERENCE (1<<2) /* 'h' */
|
|
#define OPT_QUIET (1<<3) /* 'f' */
|
|
#define OPT_USER (1<<4) /* 'u' */
|
|
#define OPT_ROLE (1<<5) /* 'r' */
|
|
#define OPT_TYPE (1<<6) /* 't' */
|
|
#define OPT_RANGE (1<<7) /* 'l' */
|
|
#define OPT_VERBOSE (1<<8) /* 'v' */
|
|
#define OPT_REFERENCE ((1<<9) * ENABLE_FEATURE_CHCON_LONG_OPTIONS)
|
|
#define OPT_COMPONENT_SPECIFIED (OPT_USER | OPT_ROLE | OPT_TYPE | OPT_RANGE)
|
|
|
|
static char *user = NULL;
|
|
static char *role = NULL;
|
|
static char *type = NULL;
|
|
static char *range = NULL;
|
|
static char *specified_context = NULL;
|
|
|
|
static int change_filedir_context(const char *fname, struct stat *stbuf, void *userData, int depth)
|
|
{
|
|
context_t context = NULL;
|
|
security_context_t file_context = NULL;
|
|
security_context_t context_string;
|
|
int rc = FALSE;
|
|
int status = 0;
|
|
|
|
if (option_mask32 & OPT_NODEREFERENCE) {
|
|
status = lgetfilecon(fname, &file_context);
|
|
} else {
|
|
status = getfilecon(fname, &file_context);
|
|
}
|
|
if (status < 0 && errno != ENODATA) {
|
|
if ((option_mask32 & OPT_QUIET) == 0)
|
|
bb_error_msg("cannot obtain security context: %s", fname);
|
|
goto skip;
|
|
}
|
|
|
|
if (file_context == NULL && specified_context == NULL) {
|
|
bb_error_msg("cannot apply partial context to unlabeled file %s", fname);
|
|
goto skip;
|
|
}
|
|
|
|
if (specified_context == NULL) {
|
|
context = set_security_context_component(file_context,
|
|
user, role, type, range);
|
|
if (!context) {
|
|
bb_error_msg("cannot compute security context from %s", file_context);
|
|
goto skip;
|
|
}
|
|
} else {
|
|
context = context_new(specified_context);
|
|
if (!context) {
|
|
bb_error_msg("invalid context: %s", specified_context);
|
|
goto skip;
|
|
}
|
|
}
|
|
|
|
context_string = context_str(context);
|
|
if (!context_string) {
|
|
bb_error_msg("cannot obtain security context in text expression");
|
|
goto skip;
|
|
}
|
|
|
|
if (file_context == NULL || strcmp(context_string, file_context) != 0) {
|
|
int fail;
|
|
|
|
if (option_mask32 & OPT_NODEREFERENCE) {
|
|
fail = lsetfilecon(fname, context_string);
|
|
} else {
|
|
fail = setfilecon(fname, context_string);
|
|
}
|
|
if ((option_mask32 & OPT_VERBOSE) || ((option_mask32 & OPT_CHANHES) && !fail)) {
|
|
printf(!fail
|
|
? "context of %s changed to %s\n"
|
|
: "failed to change context of %s to %s\n",
|
|
fname, context_string);
|
|
}
|
|
if (!fail) {
|
|
rc = TRUE;
|
|
} else if ((option_mask32 & OPT_QUIET) == 0) {
|
|
bb_error_msg("failed to change context of %s to %s",
|
|
fname, context_string);
|
|
}
|
|
} else if (option_mask32 & OPT_VERBOSE) {
|
|
printf("context of %s retained as %s\n", fname, context_string);
|
|
rc = TRUE;
|
|
}
|
|
skip:
|
|
context_free(context);
|
|
freecon(file_context);
|
|
|
|
return rc;
|
|
}
|
|
|
|
#if ENABLE_FEATURE_CHCON_LONG_OPTIONS
|
|
static const char chcon_longopts[] =
|
|
"recursive\0" No_argument "R"
|
|
"changes\0" No_argument "c"
|
|
"no-dereference\0" No_argument "h"
|
|
"silent\0" No_argument "f"
|
|
"quiet\0" No_argument "f"
|
|
"user\0" Required_argument "u"
|
|
"role\0" Required_argument "r"
|
|
"type\0" Required_argument "t"
|
|
"range\0" Required_argument "l"
|
|
"verbose\0" No_argument "v"
|
|
"reference\0" Required_argument "\xff" /* no short option */
|
|
"\0";
|
|
#endif
|
|
|
|
int chcon_main(int argc, char **argv);
|
|
int chcon_main(int argc, char **argv)
|
|
{
|
|
char *reference_file;
|
|
char *fname;
|
|
int i, errors = 0;
|
|
|
|
#if ENABLE_FEATURE_CHCON_LONG_OPTIONS
|
|
applet_long_options = chcon_longopts;
|
|
#endif
|
|
opt_complementary = "-1" /* at least 1 param */
|
|
":?" /* error if exclusivity constraints are violated */
|
|
#if ENABLE_FEATURE_CHCON_LONG_OPTIONS
|
|
":\xff--urtl:u--\xff:r--\xff:t--\xff:l--\xff"
|
|
#endif
|
|
":f--v:v--f"; /* 'verbose' and 'quiet' are exclusive */
|
|
getopt32(argc, argv, "Rchf:u:r:t:l:v",
|
|
&user, &role, &type, &range, &reference_file);
|
|
argv += optind;
|
|
|
|
#if ENABLE_FEATURE_CHCON_LONG_OPTIONS
|
|
if (option_mask32 & OPT_REFERENCE) {
|
|
/* FIXME: lgetfilecon() should be used when '-h' is specified.
|
|
But current implementation follows the original one. */
|
|
if (getfilecon(reference_file, &specified_context) < 0)
|
|
bb_perror_msg_and_die("getfilecon('%s') failed", reference_file);
|
|
} else
|
|
#endif
|
|
if ((option_mask32 & OPT_COMPONENT_SPECIFIED) == 0) {
|
|
specified_context = *argv++;
|
|
/* specified_context is never NULL -
|
|
* "-1" in opt_complementary prevents this. */
|
|
if (!argv[0])
|
|
bb_error_msg_and_die("too few arguments");
|
|
}
|
|
|
|
for (i = 0; (fname = argv[i]) != NULL; i++) {
|
|
int fname_len = strlen(fname);
|
|
while (fname_len > 1 && fname[fname_len - 1] == '/')
|
|
fname_len--;
|
|
fname[fname_len] = '\0';
|
|
|
|
if (recursive_action(fname,
|
|
1<<option_mask32 & OPT_RECURSIVE,
|
|
change_filedir_context,
|
|
change_filedir_context,
|
|
NULL, 0) != TRUE)
|
|
errors = 1;
|
|
}
|
|
return errors;
|
|
}
|