"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Glenn L McGrath | eebcc1d | 2003-09-24 03:22:57 +0000 | [diff] [blame] | 2 | /* |
Glenn L McGrath | c6992fe | 2004-04-25 05:11:19 +0000 | [diff] [blame] | 3 | * Copyright (C) 2003 by Glenn McGrath <bug1@iinet.net.au> |
Glenn L McGrath | eebcc1d | 2003-09-24 03:22:57 +0000 | [diff] [blame] | 4 | * |
"Robert P. J. Day" | 801ab14 | 2006-07-12 07:56:04 +0000 | [diff] [blame] | 5 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Glenn L McGrath | eebcc1d | 2003-09-24 03:22:57 +0000 | [diff] [blame] | 6 | * |
| 7 | * TODO: -d option, need a way of recursively making directories and changing |
| 8 | * owner/group, will probably modify bb_make_directory(...) |
Glenn L McGrath | eebcc1d | 2003-09-24 03:22:57 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
Glenn L McGrath | 11e6947 | 2003-11-27 22:40:08 +0000 | [diff] [blame] | 11 | #include "busybox.h" |
| 12 | #include "libcoreutils/coreutils.h" |
Rob Landley | 519d7df | 2006-08-09 20:56:23 +0000 | [diff] [blame] | 13 | #include <libgen.h> |
| 14 | #include <getopt.h> /* struct option */ |
Glenn L McGrath | 11e6947 | 2003-11-27 22:40:08 +0000 | [diff] [blame] | 15 | |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 16 | #if ENABLE_FEATURE_INSTALL_LONG_OPTIONS |
Glenn L McGrath | ca43b48 | 2004-01-23 21:57:16 +0000 | [diff] [blame] | 17 | static const struct option install_long_options[] = { |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 18 | { "directory", 0, NULL, 'd' }, |
| 19 | { "preserve-timestamps", 0, NULL, 'p' }, |
| 20 | { "strip", 0, NULL, 's' }, |
| 21 | { "group", 0, NULL, 'g' }, |
| 22 | { "mode", 0, NULL, 'm' }, |
| 23 | { "owner", 0, NULL, 'o' }, |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame^] | 24 | #if ENABLE_SELINUX |
| 25 | { "context", 1, NULL, 'Z' }, |
| 26 | { "preserve_context", 0, NULL, 0xff }, |
| 27 | { "preserve-context", 0, NULL, 0xff }, |
| 28 | #endif |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 29 | { 0, 0, 0, 0 } |
Glenn L McGrath | ca43b48 | 2004-01-23 21:57:16 +0000 | [diff] [blame] | 30 | }; |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 31 | #endif |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 32 | |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame^] | 33 | |
| 34 | #if ENABLE_SELINUX |
| 35 | static bool use_default_selinux_context = 1; |
| 36 | |
| 37 | static void setdefaultfilecon(const char *path) { |
| 38 | struct stat s; |
| 39 | security_context_t scontext = NULL; |
| 40 | |
| 41 | if (!is_selinux_enabled()) { |
| 42 | return; |
| 43 | } |
| 44 | if (lstat(path, &s) != 0) { |
| 45 | return; |
| 46 | } |
| 47 | |
| 48 | if (matchpathcon(path, s.st_mode, &scontext) < 0) { |
| 49 | goto out; |
| 50 | } |
| 51 | if (strcmp(scontext, "<<none>>") == 0) { |
| 52 | goto out; |
| 53 | } |
| 54 | |
| 55 | if (lsetfilecon(path, scontext) < 0) { |
| 56 | if (errno != ENOTSUP) { |
| 57 | bb_perror_msg("warning: failed to change context of %s to %s", path, scontext); |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | out: |
| 62 | freecon(scontext); |
| 63 | } |
| 64 | |
| 65 | #endif |
| 66 | |
Denis Vlasenko | 06af216 | 2007-02-03 17:28:39 +0000 | [diff] [blame] | 67 | int install_main(int argc, char **argv); |
Rob Landley | dfba741 | 2006-03-06 20:47:33 +0000 | [diff] [blame] | 68 | int install_main(int argc, char **argv) |
Glenn L McGrath | eebcc1d | 2003-09-24 03:22:57 +0000 | [diff] [blame] | 69 | { |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 70 | struct stat statbuf; |
Glenn L McGrath | 578eff5 | 2004-01-23 10:57:00 +0000 | [diff] [blame] | 71 | mode_t mode; |
| 72 | uid_t uid; |
| 73 | gid_t gid; |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 74 | const char *gid_str; |
| 75 | const char *uid_str; |
| 76 | const char *mode_str; |
Glenn L McGrath | 11e6947 | 2003-11-27 22:40:08 +0000 | [diff] [blame] | 77 | int copy_flags = FILEUTILS_DEREFERENCE | FILEUTILS_FORCE; |
Rob Landley | ae907f3 | 2005-10-09 11:16:01 +0000 | [diff] [blame] | 78 | int ret = EXIT_SUCCESS, flags, i, isdir; |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame^] | 79 | #if ENABLE_SELINUX |
| 80 | security_context_t scontext; |
| 81 | #endif |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 82 | enum { |
| 83 | OPT_CMD = 0x1, |
| 84 | OPT_DIRECTORY = 0x2, |
| 85 | OPT_PRESERVE_TIME = 0x4, |
| 86 | OPT_STRIP = 0x8, |
| 87 | OPT_GROUP = 0x10, |
| 88 | OPT_MODE = 0x20, |
| 89 | OPT_OWNER = 0x40, |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame^] | 90 | #if ENABLE_SELINUX |
| 91 | OPT_SET_SECURITY_CONTEXT = 0x80, |
| 92 | OPT_PRESERVE_SECURITY_CONTEXT = 0x100, |
| 93 | #endif |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 94 | }; |
| 95 | |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 96 | #if ENABLE_FEATURE_INSTALL_LONG_OPTIONS |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 97 | applet_long_options = install_long_options; |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 98 | #endif |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame^] | 99 | opt_complementary = "?:s--d:d--s" USE_SELINUX(":Z--\xff:\xff--Z"); |
| 100 | /* -c exists for backwards compatibility, it's needed */ |
| 101 | |
| 102 | flags = getopt32(argc, argv, "cdpsg:m:o:" USE_SELINUX("Z:"), &gid_str, &mode_str, &uid_str USE_SELINUX(, &scontext)); |
| 103 | |
| 104 | #if ENABLE_SELINUX |
| 105 | if (flags & OPT_PRESERVE_SECURITY_CONTEXT) { |
| 106 | use_default_selinux_context = 0; |
| 107 | copy_flags |= FILEUTILS_PRESERVE_SECURITY_CONTEXT; |
| 108 | selinux_or_die(); |
| 109 | } |
| 110 | if (flags & OPT_SET_SECURITY_CONTEXT) { |
| 111 | selinux_or_die(); |
| 112 | if (setfscreatecon(scontext) < 0) { |
| 113 | bb_error_msg_and_die("setfscreatecon(%s)", scontext); // perror? |
| 114 | } |
| 115 | use_default_selinux_context = 0; |
| 116 | copy_flags |= FILEUTILS_SET_SECURITY_CONTEXT; |
| 117 | } |
| 118 | #endif |
Glenn L McGrath | 11e6947 | 2003-11-27 22:40:08 +0000 | [diff] [blame] | 119 | |
| 120 | /* preserve access and modification time, this is GNU behaviour, BSD only preserves modification time */ |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 121 | if (flags & OPT_PRESERVE_TIME) { |
Glenn L McGrath | 11e6947 | 2003-11-27 22:40:08 +0000 | [diff] [blame] | 122 | copy_flags |= FILEUTILS_PRESERVE_STATUS; |
| 123 | } |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 124 | mode = 0666; |
| 125 | if (flags & OPT_MODE) bb_parse_mode(mode_str, &mode); |
| 126 | uid = (flags & OPT_OWNER) ? get_ug_id(uid_str, xuname2uid) : getuid(); |
| 127 | gid = (flags & OPT_GROUP) ? get_ug_id(gid_str, xgroup2gid) : getgid(); |
| 128 | if (flags & (OPT_OWNER|OPT_GROUP)) umask(0); |
Glenn L McGrath | eebcc1d | 2003-09-24 03:22:57 +0000 | [diff] [blame] | 129 | |
Glenn L McGrath | 578eff5 | 2004-01-23 10:57:00 +0000 | [diff] [blame] | 130 | /* Create directories |
Denis Vlasenko | e1a0d48 | 2006-10-20 13:28:22 +0000 | [diff] [blame] | 131 | * don't use bb_make_directory() as it can't change uid or gid |
Glenn L McGrath | 578eff5 | 2004-01-23 10:57:00 +0000 | [diff] [blame] | 132 | * perhaps bb_make_directory() should be improved. |
| 133 | */ |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 134 | if (flags & OPT_DIRECTORY) { |
Glenn L McGrath | a406a9c | 2003-09-24 05:00:29 +0000 | [diff] [blame] | 135 | for (argv += optind; *argv; argv++) { |
Glenn L McGrath | 578eff5 | 2004-01-23 10:57:00 +0000 | [diff] [blame] | 136 | char *old_argv_ptr = *argv + 1; |
| 137 | char *argv_ptr; |
Glenn L McGrath | a406a9c | 2003-09-24 05:00:29 +0000 | [diff] [blame] | 138 | do { |
Glenn L McGrath | 578eff5 | 2004-01-23 10:57:00 +0000 | [diff] [blame] | 139 | argv_ptr = strchr(old_argv_ptr, '/'); |
| 140 | old_argv_ptr = argv_ptr; |
Glenn L McGrath | a406a9c | 2003-09-24 05:00:29 +0000 | [diff] [blame] | 141 | if (argv_ptr) { |
| 142 | *argv_ptr = '\0'; |
Glenn L McGrath | 578eff5 | 2004-01-23 10:57:00 +0000 | [diff] [blame] | 143 | old_argv_ptr++; |
Glenn L McGrath | a406a9c | 2003-09-24 05:00:29 +0000 | [diff] [blame] | 144 | } |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 145 | if (mkdir(*argv, mode | 0111) == -1) { |
Glenn L McGrath | 711bb92 | 2004-01-23 20:28:53 +0000 | [diff] [blame] | 146 | if (errno != EEXIST) { |
Denis Vlasenko | e1a0d48 | 2006-10-20 13:28:22 +0000 | [diff] [blame] | 147 | bb_perror_msg("cannot create %s", *argv); |
Glenn L McGrath | 711bb92 | 2004-01-23 20:28:53 +0000 | [diff] [blame] | 148 | ret = EXIT_FAILURE; |
| 149 | break; |
| 150 | } |
Glenn L McGrath | 578eff5 | 2004-01-23 10:57:00 +0000 | [diff] [blame] | 151 | } |
Denis Vlasenko | 150f402 | 2007-01-13 21:06:21 +0000 | [diff] [blame] | 152 | if ((flags & (OPT_OWNER|OPT_GROUP)) |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 153 | && lchown(*argv, uid, gid) == -1 |
| 154 | ) { |
Glenn L McGrath | 578eff5 | 2004-01-23 10:57:00 +0000 | [diff] [blame] | 155 | bb_perror_msg("cannot change ownership of %s", *argv); |
| 156 | ret = EXIT_FAILURE; |
| 157 | break; |
| 158 | } |
| 159 | if (argv_ptr) { |
| 160 | *argv_ptr = '/'; |
| 161 | } |
| 162 | } while (old_argv_ptr); |
Glenn L McGrath | a406a9c | 2003-09-24 05:00:29 +0000 | [diff] [blame] | 163 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 164 | return ret; |
Glenn L McGrath | a406a9c | 2003-09-24 05:00:29 +0000 | [diff] [blame] | 165 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 166 | |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 167 | isdir = lstat(argv[argc - 1], &statbuf) < 0 ? 0 : S_ISDIR(statbuf.st_mode); |
| 168 | |
Glenn L McGrath | eebcc1d | 2003-09-24 03:22:57 +0000 | [diff] [blame] | 169 | for (i = optind; i < argc - 1; i++) { |
Eric Andersen | 5e67887 | 2006-01-30 19:48:23 +0000 | [diff] [blame] | 170 | char *dest; |
Glenn L McGrath | eebcc1d | 2003-09-24 03:22:57 +0000 | [diff] [blame] | 171 | |
Rob Landley | ae907f3 | 2005-10-09 11:16:01 +0000 | [diff] [blame] | 172 | dest = argv[argc - 1]; |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 173 | if (isdir) |
| 174 | dest = concat_path_file(argv[argc - 1], basename(argv[i])); |
Glenn L McGrath | eebcc1d | 2003-09-24 03:22:57 +0000 | [diff] [blame] | 175 | ret |= copy_file(argv[i], dest, copy_flags); |
| 176 | |
| 177 | /* Set the file mode */ |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 178 | if ((flags & OPT_MODE) && chmod(dest, mode) == -1) { |
Glenn L McGrath | eebcc1d | 2003-09-24 03:22:57 +0000 | [diff] [blame] | 179 | bb_perror_msg("cannot change permissions of %s", dest); |
Glenn L McGrath | 578eff5 | 2004-01-23 10:57:00 +0000 | [diff] [blame] | 180 | ret = EXIT_FAILURE; |
Glenn L McGrath | eebcc1d | 2003-09-24 03:22:57 +0000 | [diff] [blame] | 181 | } |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame^] | 182 | #if ENABLE_SELINUX |
| 183 | if (use_default_selinux_context) |
| 184 | setdefaultfilecon(dest); |
| 185 | #endif |
Glenn L McGrath | eebcc1d | 2003-09-24 03:22:57 +0000 | [diff] [blame] | 186 | /* Set the user and group id */ |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 187 | if ((flags & (OPT_OWNER|OPT_GROUP)) |
| 188 | && lchown(dest, uid, gid) == -1 |
| 189 | ) { |
Glenn L McGrath | eebcc1d | 2003-09-24 03:22:57 +0000 | [diff] [blame] | 190 | bb_perror_msg("cannot change ownership of %s", dest); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 191 | ret = EXIT_FAILURE; |
Glenn L McGrath | eebcc1d | 2003-09-24 03:22:57 +0000 | [diff] [blame] | 192 | } |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 193 | if (flags & OPT_STRIP) { |
Denis Vlasenko | 1d76f43 | 2007-02-06 01:20:12 +0000 | [diff] [blame] | 194 | if (BB_EXECLP("strip", "strip", dest, NULL) == -1) { |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 195 | bb_perror_msg("strip"); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 196 | ret = EXIT_FAILURE; |
Glenn L McGrath | eebcc1d | 2003-09-24 03:22:57 +0000 | [diff] [blame] | 197 | } |
| 198 | } |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 199 | if (ENABLE_FEATURE_CLEAN_UP && isdir) free(dest); |
Glenn L McGrath | eebcc1d | 2003-09-24 03:22:57 +0000 | [diff] [blame] | 200 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 201 | |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 202 | return ret; |
Glenn L McGrath | eebcc1d | 2003-09-24 03:22:57 +0000 | [diff] [blame] | 203 | } |