blob: a4a96151dd0196ae371cafe1f0e6b46fe59255f9 [file] [log] [blame]
Glenn L McGratheebcc1d2003-09-24 03:22:57 +00001/*
Glenn L McGrathc6992fe2004-04-25 05:11:19 +00002 * Copyright (C) 2003 by Glenn McGrath <bug1@iinet.net.au>
Glenn L McGratheebcc1d2003-09-24 03:22:57 +00003 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Library General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 *
18 *
19 * TODO: -d option, need a way of recursively making directories and changing
20 * owner/group, will probably modify bb_make_directory(...)
Glenn L McGratheebcc1d2003-09-24 03:22:57 +000021 */
22
23#include <sys/stat.h>
24#include <sys/types.h>
25#include <errno.h>
Glenn L McGratheebcc1d2003-09-24 03:22:57 +000026#include <stdlib.h>
Glenn L McGratha406a9c2003-09-24 05:00:29 +000027#include <string.h>
Glenn L McGratheebcc1d2003-09-24 03:22:57 +000028#include <unistd.h>
Rob Landleyb7128c62005-09-11 01:05:30 +000029#include <getopt.h> /* struct option */
Glenn L McGratheebcc1d2003-09-24 03:22:57 +000030
Glenn L McGrath11e69472003-11-27 22:40:08 +000031#include "busybox.h"
32#include "libcoreutils/coreutils.h"
33
34#define INSTALL_OPT_CMD 1
35#define INSTALL_OPT_DIRECTORY 2
36#define INSTALL_OPT_PRESERVE_TIME 4
37#define INSTALL_OPT_STRIP 8
38#define INSTALL_OPT_GROUP 16
39#define INSTALL_OPT_MODE 32
40#define INSTALL_OPT_OWNER 64
Glenn L McGratheebcc1d2003-09-24 03:22:57 +000041
Glenn L McGrathca43b482004-01-23 21:57:16 +000042static const struct option install_long_options[] = {
43 { "directory", 0, NULL, 'd' },
44 { "preserve-timestamps", 0, NULL, 'p' },
45 { "strip", 0, NULL, 's' },
46 { "group", 0, NULL, 'g' },
47 { "mode", 0, NULL, 'm' },
48 { "owner", 0, NULL, 'o' },
49 { 0, 0, 0, 0 }
50};
Eric Andersenc7bda1c2004-03-15 08:29:22 +000051
Glenn L McGratheebcc1d2003-09-24 03:22:57 +000052extern int install_main(int argc, char **argv)
53{
Glenn L McGrath578eff52004-01-23 10:57:00 +000054 mode_t mode;
55 uid_t uid;
56 gid_t gid;
57 char *gid_str = "-1";
58 char *uid_str = "-1";
59 char *mode_str = "0755";
Glenn L McGrath11e69472003-11-27 22:40:08 +000060 int copy_flags = FILEUTILS_DEREFERENCE | FILEUTILS_FORCE;
Rob Landleyae907f32005-10-09 11:16:01 +000061 int ret = EXIT_SUCCESS, flags, i, isdir;
Glenn L McGratheebcc1d2003-09-24 03:22:57 +000062
Glenn L McGrathca43b482004-01-23 21:57:16 +000063 bb_applet_long_options = install_long_options;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +000064 bb_opt_complementally = "?:s--d:d--s";
Glenn L McGrathca43b482004-01-23 21:57:16 +000065 /* -c exists for backwards compatability, its needed */
Glenn L McGrath11e69472003-11-27 22:40:08 +000066 flags = bb_getopt_ulflags(argc, argv, "cdpsg:m:o:", &gid_str, &mode_str, &uid_str); /* 'a' must be 2nd */
67
68 /* preserve access and modification time, this is GNU behaviour, BSD only preserves modification time */
69 if (flags & INSTALL_OPT_PRESERVE_TIME) {
70 copy_flags |= FILEUTILS_PRESERVE_STATUS;
71 }
Glenn L McGrath578eff52004-01-23 10:57:00 +000072 bb_parse_mode(mode_str, &mode);
Bernhard Reutner-Fischerd5bd1372005-09-20 21:06:17 +000073 gid = get_ug_id(gid_str, bb_xgetgrnam);
74 uid = get_ug_id(uid_str, bb_xgetpwnam);
Glenn L McGrath578eff52004-01-23 10:57:00 +000075 umask(0);
Glenn L McGratheebcc1d2003-09-24 03:22:57 +000076
Glenn L McGrath578eff52004-01-23 10:57:00 +000077 /* Create directories
78 * dont use bb_make_directory() as it cant change uid or gid
79 * perhaps bb_make_directory() should be improved.
80 */
Glenn L McGrath11e69472003-11-27 22:40:08 +000081 if (flags & INSTALL_OPT_DIRECTORY) {
Glenn L McGratha406a9c2003-09-24 05:00:29 +000082 for (argv += optind; *argv; argv++) {
Glenn L McGrath578eff52004-01-23 10:57:00 +000083 char *old_argv_ptr = *argv + 1;
84 char *argv_ptr;
Glenn L McGratha406a9c2003-09-24 05:00:29 +000085 do {
Glenn L McGrath578eff52004-01-23 10:57:00 +000086 argv_ptr = strchr(old_argv_ptr, '/');
87 old_argv_ptr = argv_ptr;
Glenn L McGratha406a9c2003-09-24 05:00:29 +000088 if (argv_ptr) {
89 *argv_ptr = '\0';
Glenn L McGrath578eff52004-01-23 10:57:00 +000090 old_argv_ptr++;
Glenn L McGratha406a9c2003-09-24 05:00:29 +000091 }
Glenn L McGrath711bb922004-01-23 20:28:53 +000092 if (mkdir(*argv, mode) == -1) {
93 if (errno != EEXIST) {
94 bb_perror_msg("coulnt create %s", *argv);
95 ret = EXIT_FAILURE;
96 break;
97 }
Glenn L McGrath578eff52004-01-23 10:57:00 +000098 }
99 else if (lchown(*argv, uid, gid) == -1) {
100 bb_perror_msg("cannot change ownership of %s", *argv);
101 ret = EXIT_FAILURE;
102 break;
103 }
104 if (argv_ptr) {
105 *argv_ptr = '/';
106 }
107 } while (old_argv_ptr);
Glenn L McGratha406a9c2003-09-24 05:00:29 +0000108 }
109 return(ret);
110 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000111
Rob Landleyae907f32005-10-09 11:16:01 +0000112 {
113 struct stat statbuf;
114 isdir = lstat(argv[argc - 1], &statbuf)<0
115 ? 0 : S_ISDIR(statbuf.st_mode);
116 }
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000117 for (i = optind; i < argc - 1; i++) {
118 unsigned char *dest;
119
Rob Landleyae907f32005-10-09 11:16:01 +0000120 dest = argv[argc - 1];
121 if (isdir) dest = concat_path_file(argv[argc - 1], basename(argv[i]));
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000122 ret |= copy_file(argv[i], dest, copy_flags);
123
124 /* Set the file mode */
125 if (chmod(dest, mode) == -1) {
126 bb_perror_msg("cannot change permissions of %s", dest);
Glenn L McGrath578eff52004-01-23 10:57:00 +0000127 ret = EXIT_FAILURE;
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000128 }
129
130 /* Set the user and group id */
Glenn L McGrath11e69472003-11-27 22:40:08 +0000131 if (lchown(dest, uid, gid) == -1) {
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000132 bb_perror_msg("cannot change ownership of %s", dest);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000133 ret = EXIT_FAILURE;
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000134 }
Glenn L McGrath11e69472003-11-27 22:40:08 +0000135 if (flags & INSTALL_OPT_STRIP) {
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000136 if (execlp("strip", "strip", dest, NULL) == -1) {
137 bb_error_msg("strip failed");
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000138 ret = EXIT_FAILURE;
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000139 }
140 }
Rob Landleyae907f32005-10-09 11:16:01 +0000141 if(ENABLE_FEATURE_CLEAN_UP && isdir) free(dest);
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000142 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000143
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000144 return(ret);
145}