1 /* vi: set sw=4 ts=4: */
3 * Copyright (C) 2003 by Glenn McGrath
4 * SELinux support: by Yuichi Nakamura <ynakam@hitachisoft.jp>
6 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 //config:config INSTALL
9 //config: bool "install (12 kb)"
12 //config: Copy files and set attributes.
14 //config:config FEATURE_INSTALL_LONG_OPTIONS
15 //config: bool "Enable long options"
17 //config: depends on INSTALL && LONG_OPTS
19 //applet:IF_INSTALL(APPLET(install, BB_DIR_USR_BIN, BB_SUID_DROP))
21 //kbuild:lib-$(CONFIG_INSTALL) += install.o
23 /* -v, -b, -c are ignored */
24 //usage:#define install_trivial_usage
25 //usage: "[-cdDsp] [-o USER] [-g GRP] [-m MODE] [-t DIR] [SOURCE]... DEST"
26 //usage:#define install_full_usage "\n\n"
27 //usage: "Copy files and set attributes\n"
28 //usage: "\n -c Just copy (default)"
29 //usage: "\n -d Create directories"
30 //usage: "\n -D Create leading target directories"
31 //usage: "\n -s Strip symbol table"
32 //usage: "\n -p Preserve date"
33 //usage: "\n -o USER Set ownership"
34 //usage: "\n -g GRP Set group ownership"
35 //usage: "\n -m MODE Set permissions"
36 //usage: "\n -t DIR Install to DIR"
38 //usage: "\n -Z Set security context"
42 #include "libcoreutils/coreutils.h"
44 #if ENABLE_FEATURE_INSTALL_LONG_OPTIONS
45 static const char install_longopts
[] ALIGN1
=
47 "verbose\0" No_argument
"v"
49 "directory\0" No_argument
"d"
50 "preserve-timestamps\0" No_argument
"p"
51 "strip\0" No_argument
"s"
52 "group\0" Required_argument
"g"
53 "mode\0" Required_argument
"m"
54 "owner\0" Required_argument
"o"
55 "target-directory\0" Required_argument
"t"
56 /* autofs build insists of using -b --suffix=.orig */
57 /* TODO? (short option for --suffix is -S) */
59 "context\0" Required_argument
"Z"
60 "preserve_context\0" No_argument
"\xff"
61 "preserve-context\0" No_argument
"\xff"
64 # define GETOPT32 getopt32long
65 # define LONGOPTS install_longopts,
67 # define GETOPT32 getopt32
73 static void setdefaultfilecon(const char *path
)
76 security_context_t scontext
= NULL
;
78 if (!is_selinux_enabled()) {
81 if (lstat(path
, &s
) != 0) {
85 if (matchpathcon(path
, s
.st_mode
, &scontext
) < 0) {
88 if (strcmp(scontext
, "<<none>>") == 0) {
92 if (lsetfilecon(path
, scontext
) < 0) {
93 if (errno
!= ENOTSUP
) {
94 bb_perror_msg("warning: can't change context"
95 " of %s to %s", path
, scontext
);
105 int install_main(int argc
, char **argv
) MAIN_EXTERNALLY_VISIBLE
;
106 int install_main(int argc
, char **argv
)
115 const char *mode_str
;
116 int mkdir_flags
= FILEUTILS_RECUR
;
117 int copy_flags
= FILEUTILS_DEREFERENCE
| FILEUTILS_FORCE
;
119 int ret
= EXIT_SUCCESS
;
122 security_context_t scontext
;
123 bool use_default_selinux_context
= 1;
129 OPT_MKDIR_LEADING
= 1 << 3,
130 OPT_DIRECTORY
= 1 << 4,
131 OPT_PRESERVE_TIME
= 1 << 5,
136 OPT_TARGET
= 1 << 10,
138 OPT_SET_SECURITY_CONTEXT
= 1 << 11,
139 OPT_PRESERVE_SECURITY_CONTEXT
= 1 << 12,
143 /* -c exists for backwards compatibility, it's needed */
144 /* -b is ignored ("make a backup of each existing destination file") */
145 opts
= GETOPT32(argv
, "^"
146 "cvb" "Ddpsg:m:o:t:" IF_SELINUX("Z:")
148 "t--d:d--t:s--d:d--s"
149 IF_FEATURE_INSTALL_LONG_OPTIONS(IF_SELINUX(":Z--\xff:\xff--Z")),
151 &gid_str
, &mode_str
, &uid_str
, &last
152 IF_SELINUX(, &scontext
)
158 if (opts
& (OPT_PRESERVE_SECURITY_CONTEXT
|OPT_SET_SECURITY_CONTEXT
)) {
160 use_default_selinux_context
= 0;
161 if (opts
& OPT_PRESERVE_SECURITY_CONTEXT
) {
162 copy_flags
|= FILEUTILS_PRESERVE_SECURITY_CONTEXT
;
164 if (opts
& OPT_SET_SECURITY_CONTEXT
) {
165 setfscreatecon_or_die(scontext
);
166 copy_flags
|= FILEUTILS_SET_SECURITY_CONTEXT
;
171 if ((opts
& OPT_v
) && FILEUTILS_VERBOSE
) {
172 mkdir_flags
|= FILEUTILS_VERBOSE
;
173 copy_flags
|= FILEUTILS_VERBOSE
;
176 /* preserve access and modification time, this is GNU behaviour,
177 * BSD only preserves modification time */
178 if (opts
& OPT_PRESERVE_TIME
) {
179 copy_flags
|= FILEUTILS_PRESERVE_STATUS
;
181 mode
= 0755; /* GNU coreutils 6.10 compat */
183 mode
= bb_parse_mode(mode_str
, mode
);
184 uid
= (opts
& OPT_OWNER
) ? get_ug_id(uid_str
, xuname2uid
) : getuid();
185 gid
= (opts
& OPT_GROUP
) ? get_ug_id(gid_str
, xgroup2gid
) : getgid();
187 /* If -t DIR is in use, then isdir=true, last="DIR" */
188 isdir
= (opts
& OPT_TARGET
);
189 if (!(opts
& (OPT_TARGET
|OPT_DIRECTORY
))) {
190 /* Neither -t DIR nor -d is in use */
194 /* coreutils install resolves link in this case, don't use lstat */
195 isdir
= stat(last
, &statbuf
) < 0 ? 0 : S_ISDIR(statbuf
.st_mode
);
201 while ((arg
= *argv
++) != NULL
) {
204 if (opts
& OPT_DIRECTORY
) {
206 /* GNU coreutils 6.9 does not set uid:gid
207 * on intermediate created directories
208 * (only on last one) */
209 if (bb_make_directory(dest
, 0755, mkdir_flags
)) {
215 if (opts
& OPT_MKDIR_LEADING
) {
216 char *ddir
= xstrdup(dest
);
218 * -D -t DIR1/DIR2/F3 FILE: create DIR1/DIR2/F3, copy FILE there
219 * -D FILE DIR1/DIR2/F3: create DIR1/DIR2, copy FILE there as F3
221 bb_make_directory((opts
& OPT_TARGET
) ? ddir
: dirname(ddir
), 0755, mkdir_flags
);
222 /* errors are not checked. copy_file
223 * will fail if dir is not created.
228 dest
= concat_path_file(last
, bb_basename(arg
));
229 if (copy_file(arg
, dest
, copy_flags
) != 0) {
230 /* copy is not made */
234 if (opts
& OPT_STRIP
) {
236 args
[0] = (char*)"strip";
237 args
[1] = (char*)"-p"; /* -p --preserve-dates */
240 if (spawn_and_wait(args
)) {
241 bb_simple_perror_msg("strip");
247 /* Set the user and group id */
248 /* (must be before chmod, or else chown may clear suid/gid bits) */
249 if ((opts
& (OPT_OWNER
|OPT_GROUP
))
250 && lchown(dest
, uid
, gid
) == -1
252 bb_perror_msg("can't change %s of %s", "ownership", dest
);
256 /* Set the file mode (always, not only with -m).
257 * GNU coreutils 6.10 is not affected by umask. */
258 if (chmod(dest
, mode
) == -1) {
259 bb_perror_msg("can't change %s of %s", "permissions", dest
);
263 if (use_default_selinux_context
)
264 setdefaultfilecon(dest
);
267 if (ENABLE_FEATURE_CLEAN_UP
&& isdir
)