getopt32: remove applet_long_options
[oweals/busybox.git] / coreutils / install.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Copyright (C) 2003 by Glenn McGrath
4  * SELinux support: by Yuichi Nakamura <ynakam@hitachisoft.jp>
5  *
6  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
7  */
8 //config:config INSTALL
9 //config:       bool "install (12 kb)"
10 //config:       default y
11 //config:       help
12 //config:       Copy files and set attributes.
13 //config:
14 //config:config FEATURE_INSTALL_LONG_OPTIONS
15 //config:       bool "Enable long options"
16 //config:       default y
17 //config:       depends on INSTALL && LONG_OPTS
18
19 //applet:IF_INSTALL(APPLET(install, BB_DIR_USR_BIN, BB_SUID_DROP))
20
21 //kbuild:lib-$(CONFIG_INSTALL) += install.o
22
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"
37 //usage:        IF_SELINUX(
38 //usage:     "\n        -Z      Set security context"
39 //usage:        )
40
41 #include "libbb.h"
42 #include "libcoreutils/coreutils.h"
43
44 #if ENABLE_FEATURE_INSTALL_LONG_OPTIONS
45 static const char install_longopts[] ALIGN1 =
46         IF_FEATURE_VERBOSE(
47         "verbose\0"             No_argument       "v"
48         )
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) */
58 # if ENABLE_SELINUX
59         "context\0"             Required_argument "Z"
60         "preserve_context\0"    No_argument       "\xff"
61         "preserve-context\0"    No_argument       "\xff"
62 # endif
63         ;
64 # define GETOPT32 getopt32long
65 # define LONGOPTS install_longopts,
66 #else
67 # define GETOPT32 getopt32
68 # define LONGOPTS
69 #endif
70
71
72 #if ENABLE_SELINUX
73 static void setdefaultfilecon(const char *path)
74 {
75         struct stat s;
76         security_context_t scontext = NULL;
77
78         if (!is_selinux_enabled()) {
79                 return;
80         }
81         if (lstat(path, &s) != 0) {
82                 return;
83         }
84
85         if (matchpathcon(path, s.st_mode, &scontext) < 0) {
86                 goto out;
87         }
88         if (strcmp(scontext, "<<none>>") == 0) {
89                 goto out;
90         }
91
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);
96                 }
97         }
98
99  out:
100         freecon(scontext);
101 }
102
103 #endif
104
105 int install_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
106 int install_main(int argc, char **argv)
107 {
108         struct stat statbuf;
109         mode_t mode;
110         uid_t uid;
111         gid_t gid;
112         char *arg, *last;
113         const char *gid_str;
114         const char *uid_str;
115         const char *mode_str;
116         int mkdir_flags = FILEUTILS_RECUR;
117         int copy_flags = FILEUTILS_DEREFERENCE | FILEUTILS_FORCE;
118         int opts;
119         int ret = EXIT_SUCCESS;
120         int isdir;
121 #if ENABLE_SELINUX
122         security_context_t scontext;
123         bool use_default_selinux_context = 1;
124 #endif
125         enum {
126                 OPT_c             = 1 << 0,
127                 OPT_v             = 1 << 1,
128                 OPT_b             = 1 << 2,
129                 OPT_MKDIR_LEADING = 1 << 3,
130                 OPT_DIRECTORY     = 1 << 4,
131                 OPT_PRESERVE_TIME = 1 << 5,
132                 OPT_STRIP         = 1 << 6,
133                 OPT_GROUP         = 1 << 7,
134                 OPT_MODE          = 1 << 8,
135                 OPT_OWNER         = 1 << 9,
136                 OPT_TARGET        = 1 << 10,
137 #if ENABLE_SELINUX
138                 OPT_SET_SECURITY_CONTEXT = 1 << 11,
139                 OPT_PRESERVE_SECURITY_CONTEXT = 1 << 12,
140 #endif
141         };
142
143         opt_complementary = "t--d:d--t:s--d:d--s" IF_FEATURE_INSTALL_LONG_OPTIONS(IF_SELINUX(":Z--\xff:\xff--Z"));
144         /* -c exists for backwards compatibility, it's needed */
145         /* -b is ignored ("make a backup of each existing destination file") */
146         opts = GETOPT32(argv, "cvb" "Ddpsg:m:o:t:" IF_SELINUX("Z:"),
147                         LONGOPTS
148                         &gid_str, &mode_str, &uid_str, &last
149                         IF_SELINUX(, &scontext)
150         );
151         argc -= optind;
152         argv += optind;
153
154 #if ENABLE_SELINUX
155         if (opts & (OPT_PRESERVE_SECURITY_CONTEXT|OPT_SET_SECURITY_CONTEXT)) {
156                 selinux_or_die();
157                 use_default_selinux_context = 0;
158                 if (opts & OPT_PRESERVE_SECURITY_CONTEXT) {
159                         copy_flags |= FILEUTILS_PRESERVE_SECURITY_CONTEXT;
160                 }
161                 if (opts & OPT_SET_SECURITY_CONTEXT) {
162                         setfscreatecon_or_die(scontext);
163                         copy_flags |= FILEUTILS_SET_SECURITY_CONTEXT;
164                 }
165         }
166 #endif
167
168         if ((opts & OPT_v) && FILEUTILS_VERBOSE) {
169                 mkdir_flags |= FILEUTILS_VERBOSE;
170                 copy_flags |= FILEUTILS_VERBOSE;
171         }
172
173         /* preserve access and modification time, this is GNU behaviour,
174          * BSD only preserves modification time */
175         if (opts & OPT_PRESERVE_TIME) {
176                 copy_flags |= FILEUTILS_PRESERVE_STATUS;
177         }
178         mode = 0755; /* GNU coreutils 6.10 compat */
179         if (opts & OPT_MODE)
180                 mode = bb_parse_mode(mode_str, mode);
181         uid = (opts & OPT_OWNER) ? get_ug_id(uid_str, xuname2uid) : getuid();
182         gid = (opts & OPT_GROUP) ? get_ug_id(gid_str, xgroup2gid) : getgid();
183
184         /* If -t DIR is in use, then isdir=true, last="DIR" */
185         isdir = (opts & OPT_TARGET);
186         if (!(opts & (OPT_TARGET|OPT_DIRECTORY))) {
187                 /* Neither -t DIR nor -d is in use */
188                 argc--;
189                 last = argv[argc];
190                 argv[argc] = NULL;
191                 /* coreutils install resolves link in this case, don't use lstat */
192                 isdir = stat(last, &statbuf) < 0 ? 0 : S_ISDIR(statbuf.st_mode);
193         }
194
195         if (argc < 1)
196                 bb_show_usage();
197
198         while ((arg = *argv++) != NULL) {
199                 char *dest;
200
201                 if (opts & OPT_DIRECTORY) {
202                         dest = arg;
203                         /* GNU coreutils 6.9 does not set uid:gid
204                          * on intermediate created directories
205                          * (only on last one) */
206                         if (bb_make_directory(dest, 0755, mkdir_flags)) {
207                                 ret = EXIT_FAILURE;
208                                 goto next;
209                         }
210                 } else {
211                         dest = last;
212                         if (opts & OPT_MKDIR_LEADING) {
213                                 char *ddir = xstrdup(dest);
214                                 bb_make_directory(dirname(ddir), 0755, mkdir_flags);
215                                 /* errors are not checked. copy_file
216                                  * will fail if dir is not created.
217                                  */
218                                 free(ddir);
219                         }
220                         if (isdir)
221                                 dest = concat_path_file(last, bb_basename(arg));
222                         if (copy_file(arg, dest, copy_flags) != 0) {
223                                 /* copy is not made */
224                                 ret = EXIT_FAILURE;
225                                 goto next;
226                         }
227                         if (opts & OPT_STRIP) {
228                                 char *args[4];
229                                 args[0] = (char*)"strip";
230                                 args[1] = (char*)"-p"; /* -p --preserve-dates */
231                                 args[2] = dest;
232                                 args[3] = NULL;
233                                 if (spawn_and_wait(args)) {
234                                         bb_perror_msg("strip");
235                                         ret = EXIT_FAILURE;
236                                 }
237                         }
238                 }
239
240                 /* Set the file mode (always, not only with -m).
241                  * GNU coreutils 6.10 is not affected by umask. */
242                 if (chmod(dest, mode) == -1) {
243                         bb_perror_msg("can't change %s of %s", "permissions", dest);
244                         ret = EXIT_FAILURE;
245                 }
246 #if ENABLE_SELINUX
247                 if (use_default_selinux_context)
248                         setdefaultfilecon(dest);
249 #endif
250                 /* Set the user and group id */
251                 if ((opts & (OPT_OWNER|OPT_GROUP))
252                  && lchown(dest, uid, gid) == -1
253                 ) {
254                         bb_perror_msg("can't change %s of %s", "ownership", dest);
255                         ret = EXIT_FAILURE;
256                 }
257  next:
258                 if (ENABLE_FEATURE_CLEAN_UP && isdir)
259                         free(dest);
260         }
261
262         return ret;
263 }