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