blob: c80be01ff4e438bce748f01b79a4ed8608f835bd [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Glenn L McGratheebcc1d2003-09-24 03:22:57 +00002/*
Denis Vlasenko1203c9b2007-03-11 22:16:02 +00003 * Copyright (C) 2003 by Glenn McGrath <bug1@iinet.net.au>
4 * SELinux support: by Yuichi Nakamura <ynakam@hitachisoft.jp>
Glenn L McGratheebcc1d2003-09-24 03:22:57 +00005 *
"Robert P. J. Day"801ab142006-07-12 07:56:04 +00006 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Glenn L McGratheebcc1d2003-09-24 03:22:57 +00007 *
8 * TODO: -d option, need a way of recursively making directories and changing
9 * owner/group, will probably modify bb_make_directory(...)
Glenn L McGratheebcc1d2003-09-24 03:22:57 +000010 */
11
Glenn L McGrath11e69472003-11-27 22:40:08 +000012#include "busybox.h"
13#include "libcoreutils/coreutils.h"
Rob Landley519d7df2006-08-09 20:56:23 +000014#include <libgen.h>
15#include <getopt.h> /* struct option */
Glenn L McGrath11e69472003-11-27 22:40:08 +000016
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000017#if ENABLE_FEATURE_INSTALL_LONG_OPTIONS
Glenn L McGrathca43b482004-01-23 21:57:16 +000018static const struct option install_long_options[] = {
Denis Vlasenko9a44c4f2006-12-28 05:44:47 +000019 { "directory", 0, NULL, 'd' },
20 { "preserve-timestamps", 0, NULL, 'p' },
21 { "strip", 0, NULL, 's' },
22 { "group", 0, NULL, 'g' },
23 { "mode", 0, NULL, 'm' },
24 { "owner", 0, NULL, 'o' },
Denis Vlasenko49622d72007-03-10 16:58:49 +000025#if ENABLE_SELINUX
26 { "context", 1, NULL, 'Z' },
27 { "preserve_context", 0, NULL, 0xff },
28 { "preserve-context", 0, NULL, 0xff },
29#endif
Denis Vlasenko9a44c4f2006-12-28 05:44:47 +000030 { 0, 0, 0, 0 }
Glenn L McGrathca43b482004-01-23 21:57:16 +000031};
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000032#endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +000033
Denis Vlasenko49622d72007-03-10 16:58:49 +000034
35#if ENABLE_SELINUX
36static bool use_default_selinux_context = 1;
37
38static void setdefaultfilecon(const char *path) {
39 struct stat s;
40 security_context_t scontext = NULL;
41
42 if (!is_selinux_enabled()) {
43 return;
Denis Vlasenkoc86e0522007-03-20 11:30:28 +000044 }
Denis Vlasenko49622d72007-03-10 16:58:49 +000045 if (lstat(path, &s) != 0) {
46 return;
47 }
48
49 if (matchpathcon(path, s.st_mode, &scontext) < 0) {
50 goto out;
51 }
52 if (strcmp(scontext, "<<none>>") == 0) {
53 goto out;
54 }
55
56 if (lsetfilecon(path, scontext) < 0) {
57 if (errno != ENOTSUP) {
58 bb_perror_msg("warning: failed to change context of %s to %s", path, scontext);
59 }
60 }
61
62 out:
63 freecon(scontext);
64}
65
66#endif
67
Denis Vlasenko06af2162007-02-03 17:28:39 +000068int install_main(int argc, char **argv);
Rob Landleydfba7412006-03-06 20:47:33 +000069int install_main(int argc, char **argv)
Glenn L McGratheebcc1d2003-09-24 03:22:57 +000070{
Denis Vlasenko9a44c4f2006-12-28 05:44:47 +000071 struct stat statbuf;
Glenn L McGrath578eff52004-01-23 10:57:00 +000072 mode_t mode;
73 uid_t uid;
74 gid_t gid;
Denis Vlasenko9a44c4f2006-12-28 05:44:47 +000075 const char *gid_str;
76 const char *uid_str;
77 const char *mode_str;
Glenn L McGrath11e69472003-11-27 22:40:08 +000078 int copy_flags = FILEUTILS_DEREFERENCE | FILEUTILS_FORCE;
Rob Landleyae907f32005-10-09 11:16:01 +000079 int ret = EXIT_SUCCESS, flags, i, isdir;
Denis Vlasenko49622d72007-03-10 16:58:49 +000080#if ENABLE_SELINUX
81 security_context_t scontext;
82#endif
Denis Vlasenko9a44c4f2006-12-28 05:44:47 +000083 enum {
84 OPT_CMD = 0x1,
85 OPT_DIRECTORY = 0x2,
86 OPT_PRESERVE_TIME = 0x4,
87 OPT_STRIP = 0x8,
88 OPT_GROUP = 0x10,
89 OPT_MODE = 0x20,
90 OPT_OWNER = 0x40,
Denis Vlasenko49622d72007-03-10 16:58:49 +000091#if ENABLE_SELINUX
92 OPT_SET_SECURITY_CONTEXT = 0x80,
93 OPT_PRESERVE_SECURITY_CONTEXT = 0x100,
94#endif
Denis Vlasenko9a44c4f2006-12-28 05:44:47 +000095 };
96
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000097#if ENABLE_FEATURE_INSTALL_LONG_OPTIONS
Denis Vlasenko67b23e62006-10-03 21:00:06 +000098 applet_long_options = install_long_options;
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000099#endif
Denis Vlasenko49622d72007-03-10 16:58:49 +0000100 opt_complementary = "?:s--d:d--s" USE_SELINUX(":Z--\xff:\xff--Z");
101 /* -c exists for backwards compatibility, it's needed */
102
103 flags = getopt32(argc, argv, "cdpsg:m:o:" USE_SELINUX("Z:"), &gid_str, &mode_str, &uid_str USE_SELINUX(, &scontext));
Denis Vlasenkoc86e0522007-03-20 11:30:28 +0000104
Denis Vlasenko49622d72007-03-10 16:58:49 +0000105#if ENABLE_SELINUX
106 if (flags & OPT_PRESERVE_SECURITY_CONTEXT) {
107 use_default_selinux_context = 0;
108 copy_flags |= FILEUTILS_PRESERVE_SECURITY_CONTEXT;
109 selinux_or_die();
110 }
111 if (flags & OPT_SET_SECURITY_CONTEXT) {
112 selinux_or_die();
Denis Vlasenko39c651e2007-03-12 18:22:55 +0000113 setfscreatecon_or_die(scontext);
Denis Vlasenko49622d72007-03-10 16:58:49 +0000114 use_default_selinux_context = 0;
115 copy_flags |= FILEUTILS_SET_SECURITY_CONTEXT;
116 }
117#endif
Glenn L McGrath11e69472003-11-27 22:40:08 +0000118
119 /* preserve access and modification time, this is GNU behaviour, BSD only preserves modification time */
Denis Vlasenko9a44c4f2006-12-28 05:44:47 +0000120 if (flags & OPT_PRESERVE_TIME) {
Glenn L McGrath11e69472003-11-27 22:40:08 +0000121 copy_flags |= FILEUTILS_PRESERVE_STATUS;
122 }
Denis Vlasenko9a44c4f2006-12-28 05:44:47 +0000123 mode = 0666;
124 if (flags & OPT_MODE) bb_parse_mode(mode_str, &mode);
125 uid = (flags & OPT_OWNER) ? get_ug_id(uid_str, xuname2uid) : getuid();
126 gid = (flags & OPT_GROUP) ? get_ug_id(gid_str, xgroup2gid) : getgid();
127 if (flags & (OPT_OWNER|OPT_GROUP)) umask(0);
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000128
Glenn L McGrath578eff52004-01-23 10:57:00 +0000129 /* Create directories
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000130 * don't use bb_make_directory() as it can't change uid or gid
Glenn L McGrath578eff52004-01-23 10:57:00 +0000131 * perhaps bb_make_directory() should be improved.
132 */
Denis Vlasenko9a44c4f2006-12-28 05:44:47 +0000133 if (flags & OPT_DIRECTORY) {
Glenn L McGratha406a9c2003-09-24 05:00:29 +0000134 for (argv += optind; *argv; argv++) {
Glenn L McGrath578eff52004-01-23 10:57:00 +0000135 char *old_argv_ptr = *argv + 1;
136 char *argv_ptr;
Glenn L McGratha406a9c2003-09-24 05:00:29 +0000137 do {
Glenn L McGrath578eff52004-01-23 10:57:00 +0000138 argv_ptr = strchr(old_argv_ptr, '/');
139 old_argv_ptr = argv_ptr;
Glenn L McGratha406a9c2003-09-24 05:00:29 +0000140 if (argv_ptr) {
141 *argv_ptr = '\0';
Glenn L McGrath578eff52004-01-23 10:57:00 +0000142 old_argv_ptr++;
Glenn L McGratha406a9c2003-09-24 05:00:29 +0000143 }
Denis Vlasenko9a44c4f2006-12-28 05:44:47 +0000144 if (mkdir(*argv, mode | 0111) == -1) {
Glenn L McGrath711bb922004-01-23 20:28:53 +0000145 if (errno != EEXIST) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000146 bb_perror_msg("cannot create %s", *argv);
Glenn L McGrath711bb922004-01-23 20:28:53 +0000147 ret = EXIT_FAILURE;
148 break;
149 }
Glenn L McGrath578eff52004-01-23 10:57:00 +0000150 }
Denis Vlasenko150f4022007-01-13 21:06:21 +0000151 if ((flags & (OPT_OWNER|OPT_GROUP))
Denis Vlasenko9a44c4f2006-12-28 05:44:47 +0000152 && lchown(*argv, uid, gid) == -1
153 ) {
Glenn L McGrath578eff52004-01-23 10:57:00 +0000154 bb_perror_msg("cannot change ownership of %s", *argv);
155 ret = EXIT_FAILURE;
156 break;
157 }
158 if (argv_ptr) {
159 *argv_ptr = '/';
160 }
161 } while (old_argv_ptr);
Glenn L McGratha406a9c2003-09-24 05:00:29 +0000162 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000163 return ret;
Glenn L McGratha406a9c2003-09-24 05:00:29 +0000164 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000165
Denis Vlasenko9a44c4f2006-12-28 05:44:47 +0000166 isdir = lstat(argv[argc - 1], &statbuf) < 0 ? 0 : S_ISDIR(statbuf.st_mode);
167
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000168 for (i = optind; i < argc - 1; i++) {
Eric Andersen5e678872006-01-30 19:48:23 +0000169 char *dest;
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000170
Rob Landleyae907f32005-10-09 11:16:01 +0000171 dest = argv[argc - 1];
Denis Vlasenko9a44c4f2006-12-28 05:44:47 +0000172 if (isdir)
173 dest = concat_path_file(argv[argc - 1], basename(argv[i]));
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000174 ret |= copy_file(argv[i], dest, copy_flags);
175
176 /* Set the file mode */
Denis Vlasenko9a44c4f2006-12-28 05:44:47 +0000177 if ((flags & OPT_MODE) && chmod(dest, mode) == -1) {
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000178 bb_perror_msg("cannot change permissions of %s", dest);
Glenn L McGrath578eff52004-01-23 10:57:00 +0000179 ret = EXIT_FAILURE;
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000180 }
Denis Vlasenko49622d72007-03-10 16:58:49 +0000181#if ENABLE_SELINUX
182 if (use_default_selinux_context)
183 setdefaultfilecon(dest);
184#endif
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000185 /* Set the user and group id */
Denis Vlasenko9a44c4f2006-12-28 05:44:47 +0000186 if ((flags & (OPT_OWNER|OPT_GROUP))
187 && lchown(dest, uid, gid) == -1
188 ) {
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000189 bb_perror_msg("cannot change ownership of %s", dest);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000190 ret = EXIT_FAILURE;
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000191 }
Denis Vlasenko9a44c4f2006-12-28 05:44:47 +0000192 if (flags & OPT_STRIP) {
Denis Vlasenko1d76f432007-02-06 01:20:12 +0000193 if (BB_EXECLP("strip", "strip", dest, NULL) == -1) {
Denis Vlasenko9a44c4f2006-12-28 05:44:47 +0000194 bb_perror_msg("strip");
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000195 ret = EXIT_FAILURE;
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000196 }
197 }
Denis Vlasenko9a44c4f2006-12-28 05:44:47 +0000198 if (ENABLE_FEATURE_CLEAN_UP && isdir) free(dest);
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000199 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000200
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000201 return ret;
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000202}