2006-07-02 19:47:05 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2003-09-24 03:22:57 +00:00
|
|
|
/*
|
2007-09-21 13:16:32 +00:00
|
|
|
* Copyright (C) 2003 by Glenn McGrath
|
2007-03-11 22:16:02 +00:00
|
|
|
* SELinux support: by Yuichi Nakamura <ynakam@hitachisoft.jp>
|
2003-09-24 03:22:57 +00:00
|
|
|
*
|
2006-07-12 07:56:04 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2003-09-24 03:22:57 +00:00
|
|
|
*
|
|
|
|
* TODO: -d option, need a way of recursively making directories and changing
|
|
|
|
* owner/group, will probably modify bb_make_directory(...)
|
|
|
|
*/
|
|
|
|
|
2006-08-09 20:56:23 +00:00
|
|
|
#include <libgen.h>
|
|
|
|
#include <getopt.h> /* struct option */
|
2003-11-27 22:40:08 +00:00
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
|
|
|
#include "libcoreutils/coreutils.h"
|
|
|
|
|
2006-05-26 20:19:22 +00:00
|
|
|
#if ENABLE_FEATURE_INSTALL_LONG_OPTIONS
|
2007-08-12 20:58:27 +00:00
|
|
|
static const char install_longopts[] ALIGN1 =
|
2007-07-23 17:14:14 +00:00
|
|
|
"directory\0" No_argument "d"
|
|
|
|
"preserve-timestamps\0" No_argument "p"
|
|
|
|
"strip\0" No_argument "s"
|
|
|
|
"group\0" No_argument "g"
|
|
|
|
"mode\0" No_argument "m"
|
|
|
|
"owner\0" No_argument "o"
|
2007-03-10 16:58:49 +00:00
|
|
|
#if ENABLE_SELINUX
|
2007-07-23 17:14:14 +00:00
|
|
|
"context\0" Required_argument "Z"
|
|
|
|
"preserve_context\0" No_argument "\xff"
|
|
|
|
"preserve-context\0" No_argument "\xff"
|
2007-03-10 16:58:49 +00:00
|
|
|
#endif
|
2007-07-24 15:54:42 +00:00
|
|
|
;
|
2006-05-26 20:19:22 +00:00
|
|
|
#endif
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2007-03-10 16:58:49 +00:00
|
|
|
|
|
|
|
#if ENABLE_SELINUX
|
|
|
|
static bool use_default_selinux_context = 1;
|
|
|
|
|
2007-04-16 22:32:04 +00:00
|
|
|
static void setdefaultfilecon(const char *path)
|
|
|
|
{
|
2007-03-10 16:58:49 +00:00
|
|
|
struct stat s;
|
|
|
|
security_context_t scontext = NULL;
|
|
|
|
|
|
|
|
if (!is_selinux_enabled()) {
|
|
|
|
return;
|
2007-03-20 11:30:28 +00:00
|
|
|
}
|
2007-03-10 16:58:49 +00:00
|
|
|
if (lstat(path, &s) != 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (matchpathcon(path, s.st_mode, &scontext) < 0) {
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (strcmp(scontext, "<<none>>") == 0) {
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lsetfilecon(path, scontext) < 0) {
|
|
|
|
if (errno != ENOTSUP) {
|
|
|
|
bb_perror_msg("warning: failed to change context of %s to %s", path, scontext);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
freecon(scontext);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2007-02-03 17:28:39 +00:00
|
|
|
int install_main(int argc, char **argv);
|
2006-03-06 20:47:33 +00:00
|
|
|
int install_main(int argc, char **argv)
|
2003-09-24 03:22:57 +00:00
|
|
|
{
|
2006-12-28 05:44:47 +00:00
|
|
|
struct stat statbuf;
|
2004-01-23 10:57:00 +00:00
|
|
|
mode_t mode;
|
|
|
|
uid_t uid;
|
|
|
|
gid_t gid;
|
2007-08-26 14:21:55 +00:00
|
|
|
char *arg, *last;
|
2006-12-28 05:44:47 +00:00
|
|
|
const char *gid_str;
|
|
|
|
const char *uid_str;
|
|
|
|
const char *mode_str;
|
2003-11-27 22:40:08 +00:00
|
|
|
int copy_flags = FILEUTILS_DEREFERENCE | FILEUTILS_FORCE;
|
2007-08-26 14:21:55 +00:00
|
|
|
int flags;
|
|
|
|
int ret = EXIT_SUCCESS;
|
|
|
|
int isdir;
|
2007-03-10 16:58:49 +00:00
|
|
|
#if ENABLE_SELINUX
|
|
|
|
security_context_t scontext;
|
|
|
|
#endif
|
2006-12-28 05:44:47 +00:00
|
|
|
enum {
|
|
|
|
OPT_CMD = 0x1,
|
|
|
|
OPT_DIRECTORY = 0x2,
|
|
|
|
OPT_PRESERVE_TIME = 0x4,
|
|
|
|
OPT_STRIP = 0x8,
|
|
|
|
OPT_GROUP = 0x10,
|
|
|
|
OPT_MODE = 0x20,
|
|
|
|
OPT_OWNER = 0x40,
|
2007-03-10 16:58:49 +00:00
|
|
|
#if ENABLE_SELINUX
|
|
|
|
OPT_SET_SECURITY_CONTEXT = 0x80,
|
|
|
|
OPT_PRESERVE_SECURITY_CONTEXT = 0x100,
|
|
|
|
#endif
|
2006-12-28 05:44:47 +00:00
|
|
|
};
|
|
|
|
|
2006-05-26 20:19:22 +00:00
|
|
|
#if ENABLE_FEATURE_INSTALL_LONG_OPTIONS
|
2007-07-23 17:14:14 +00:00
|
|
|
applet_long_options = install_longopts;
|
2006-05-26 20:19:22 +00:00
|
|
|
#endif
|
2007-07-21 13:27:44 +00:00
|
|
|
opt_complementary = "s--d:d--s" USE_SELINUX(":Z--\xff:\xff--Z");
|
2007-03-10 16:58:49 +00:00
|
|
|
/* -c exists for backwards compatibility, it's needed */
|
|
|
|
|
2007-08-18 15:32:12 +00:00
|
|
|
flags = getopt32(argv, "cdpsg:m:o:" USE_SELINUX("Z:"),
|
2007-06-17 00:35:15 +00:00
|
|
|
&gid_str, &mode_str, &uid_str USE_SELINUX(, &scontext));
|
2007-08-26 14:21:55 +00:00
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
2007-03-20 11:30:28 +00:00
|
|
|
|
2007-03-10 16:58:49 +00:00
|
|
|
#if ENABLE_SELINUX
|
|
|
|
if (flags & OPT_PRESERVE_SECURITY_CONTEXT) {
|
|
|
|
use_default_selinux_context = 0;
|
|
|
|
copy_flags |= FILEUTILS_PRESERVE_SECURITY_CONTEXT;
|
|
|
|
selinux_or_die();
|
|
|
|
}
|
|
|
|
if (flags & OPT_SET_SECURITY_CONTEXT) {
|
|
|
|
selinux_or_die();
|
2007-03-12 18:22:55 +00:00
|
|
|
setfscreatecon_or_die(scontext);
|
2007-03-10 16:58:49 +00:00
|
|
|
use_default_selinux_context = 0;
|
|
|
|
copy_flags |= FILEUTILS_SET_SECURITY_CONTEXT;
|
|
|
|
}
|
|
|
|
#endif
|
2003-11-27 22:40:08 +00:00
|
|
|
|
|
|
|
/* preserve access and modification time, this is GNU behaviour, BSD only preserves modification time */
|
2006-12-28 05:44:47 +00:00
|
|
|
if (flags & OPT_PRESERVE_TIME) {
|
2003-11-27 22:40:08 +00:00
|
|
|
copy_flags |= FILEUTILS_PRESERVE_STATUS;
|
|
|
|
}
|
2006-12-28 05:44:47 +00:00
|
|
|
mode = 0666;
|
2007-08-24 21:46:24 +00:00
|
|
|
if (flags & OPT_MODE)
|
|
|
|
bb_parse_mode(mode_str, &mode);
|
2006-12-28 05:44:47 +00:00
|
|
|
uid = (flags & OPT_OWNER) ? get_ug_id(uid_str, xuname2uid) : getuid();
|
|
|
|
gid = (flags & OPT_GROUP) ? get_ug_id(gid_str, xgroup2gid) : getgid();
|
2007-08-24 21:46:24 +00:00
|
|
|
if (flags & (OPT_OWNER|OPT_GROUP))
|
|
|
|
umask(0);
|
2003-09-24 03:22:57 +00:00
|
|
|
|
2004-01-23 10:57:00 +00:00
|
|
|
/* Create directories
|
2006-10-20 13:28:22 +00:00
|
|
|
* don't use bb_make_directory() as it can't change uid or gid
|
2004-01-23 10:57:00 +00:00
|
|
|
* perhaps bb_make_directory() should be improved.
|
|
|
|
*/
|
2006-12-28 05:44:47 +00:00
|
|
|
if (flags & OPT_DIRECTORY) {
|
2007-08-26 14:21:55 +00:00
|
|
|
while ((arg = *argv++) != NULL) {
|
|
|
|
char *slash = arg;
|
|
|
|
while (1) {
|
|
|
|
slash = strchr(slash + 1, '/');
|
|
|
|
if (slash)
|
|
|
|
*slash = '\0';
|
|
|
|
if (mkdir(arg, mode | 0111) == -1) {
|
2004-01-23 20:28:53 +00:00
|
|
|
if (errno != EEXIST) {
|
2007-08-26 14:21:55 +00:00
|
|
|
bb_perror_msg("cannot create %s", arg);
|
2004-01-23 20:28:53 +00:00
|
|
|
ret = EXIT_FAILURE;
|
|
|
|
break;
|
|
|
|
}
|
2007-08-26 14:21:55 +00:00
|
|
|
} /* dir was created, chown? */
|
|
|
|
else if ((flags & (OPT_OWNER|OPT_GROUP))
|
|
|
|
&& lchown(arg, uid, gid) == -1
|
2006-12-28 05:44:47 +00:00
|
|
|
) {
|
2007-08-26 14:21:55 +00:00
|
|
|
bb_perror_msg("cannot change ownership of %s", arg);
|
2004-01-23 10:57:00 +00:00
|
|
|
ret = EXIT_FAILURE;
|
|
|
|
break;
|
2003-09-24 05:00:29 +00:00
|
|
|
}
|
2007-08-26 14:21:55 +00:00
|
|
|
if (!slash)
|
|
|
|
break;
|
|
|
|
*slash = '/';
|
|
|
|
}
|
2003-09-24 05:00:29 +00:00
|
|
|
}
|
2006-11-27 16:49:31 +00:00
|
|
|
return ret;
|
2003-09-24 05:00:29 +00:00
|
|
|
}
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2007-08-26 14:21:55 +00:00
|
|
|
if (argc < 2)
|
|
|
|
bb_show_usage();
|
2006-12-28 05:44:47 +00:00
|
|
|
|
2007-08-26 14:21:55 +00:00
|
|
|
last = argv[argc - 1];
|
|
|
|
/* coreutils install resolves link in this case, don't use lstat */
|
|
|
|
isdir = stat(last, &statbuf) < 0 ? 0 : S_ISDIR(statbuf.st_mode);
|
2003-09-24 03:22:57 +00:00
|
|
|
|
2007-08-26 14:21:55 +00:00
|
|
|
while ((arg = *argv++) != NULL) {
|
|
|
|
char *dest = last;
|
2006-12-28 05:44:47 +00:00
|
|
|
if (isdir)
|
2007-08-26 14:21:55 +00:00
|
|
|
dest = concat_path_file(last, basename(arg));
|
|
|
|
if (copy_file(arg, dest, copy_flags)) {
|
|
|
|
/* copy is not made */
|
|
|
|
ret = EXIT_FAILURE;
|
|
|
|
goto next;
|
|
|
|
}
|
2003-09-24 03:22:57 +00:00
|
|
|
|
|
|
|
/* Set the file mode */
|
2006-12-28 05:44:47 +00:00
|
|
|
if ((flags & OPT_MODE) && chmod(dest, mode) == -1) {
|
2003-09-24 03:22:57 +00:00
|
|
|
bb_perror_msg("cannot change permissions of %s", dest);
|
2004-01-23 10:57:00 +00:00
|
|
|
ret = EXIT_FAILURE;
|
2003-09-24 03:22:57 +00:00
|
|
|
}
|
2007-03-10 16:58:49 +00:00
|
|
|
#if ENABLE_SELINUX
|
|
|
|
if (use_default_selinux_context)
|
|
|
|
setdefaultfilecon(dest);
|
|
|
|
#endif
|
2003-09-24 03:22:57 +00:00
|
|
|
/* Set the user and group id */
|
2006-12-28 05:44:47 +00:00
|
|
|
if ((flags & (OPT_OWNER|OPT_GROUP))
|
|
|
|
&& lchown(dest, uid, gid) == -1
|
|
|
|
) {
|
2003-09-24 03:22:57 +00:00
|
|
|
bb_perror_msg("cannot change ownership of %s", dest);
|
2004-03-15 08:29:22 +00:00
|
|
|
ret = EXIT_FAILURE;
|
2003-09-24 03:22:57 +00:00
|
|
|
}
|
2006-12-28 05:44:47 +00:00
|
|
|
if (flags & OPT_STRIP) {
|
2007-06-17 00:35:15 +00:00
|
|
|
char *args[3];
|
|
|
|
args[0] = (char*)"strip";
|
|
|
|
args[1] = dest;
|
|
|
|
args[2] = NULL;
|
|
|
|
if (spawn_and_wait(args)) {
|
2006-12-28 05:44:47 +00:00
|
|
|
bb_perror_msg("strip");
|
2004-03-15 08:29:22 +00:00
|
|
|
ret = EXIT_FAILURE;
|
2003-09-24 03:22:57 +00:00
|
|
|
}
|
|
|
|
}
|
2007-08-26 14:21:55 +00:00
|
|
|
next:
|
|
|
|
if (ENABLE_FEATURE_CLEAN_UP && isdir)
|
|
|
|
free(dest);
|
2003-09-24 03:22:57 +00:00
|
|
|
}
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2006-11-27 16:49:31 +00:00
|
|
|
return ret;
|
2003-09-24 03:22:57 +00:00
|
|
|
}
|