2006-07-02 19:47:05 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2003-09-24 03:22:57 +00:00
|
|
|
/*
|
2004-04-25 05:11:19 +00:00
|
|
|
* Copyright (C) 2003 by Glenn McGrath <bug1@iinet.net.au>
|
2003-09-24 03:22:57 +00:00
|
|
|
*
|
2006-07-12 07:56:04 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2003-09-24 03:22:57 +00:00
|
|
|
*
|
|
|
|
* TODO: -d option, need a way of recursively making directories and changing
|
|
|
|
* owner/group, will probably modify bb_make_directory(...)
|
|
|
|
*/
|
|
|
|
|
2003-11-27 22:40:08 +00:00
|
|
|
#include "busybox.h"
|
|
|
|
#include "libcoreutils/coreutils.h"
|
2006-08-09 20:56:23 +00:00
|
|
|
#include <libgen.h>
|
|
|
|
#include <getopt.h> /* struct option */
|
2003-11-27 22:40:08 +00:00
|
|
|
|
2006-05-26 20:19:22 +00:00
|
|
|
#if ENABLE_FEATURE_INSTALL_LONG_OPTIONS
|
2004-01-23 21:57:16 +00:00
|
|
|
static const struct option install_long_options[] = {
|
2006-12-28 05:44:47 +00:00
|
|
|
{ "directory", 0, NULL, 'd' },
|
|
|
|
{ "preserve-timestamps", 0, NULL, 'p' },
|
|
|
|
{ "strip", 0, NULL, 's' },
|
|
|
|
{ "group", 0, NULL, 'g' },
|
|
|
|
{ "mode", 0, NULL, 'm' },
|
|
|
|
{ "owner", 0, NULL, 'o' },
|
|
|
|
{ 0, 0, 0, 0 }
|
2004-01-23 21:57:16 +00:00
|
|
|
};
|
2006-05-26 20:19:22 +00:00
|
|
|
#endif
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2007-02-03 17:28:39 +00:00
|
|
|
int install_main(int argc, char **argv);
|
2006-03-06 20:47:33 +00:00
|
|
|
int install_main(int argc, char **argv)
|
2003-09-24 03:22:57 +00:00
|
|
|
{
|
2006-12-28 05:44:47 +00:00
|
|
|
struct stat statbuf;
|
2004-01-23 10:57:00 +00:00
|
|
|
mode_t mode;
|
|
|
|
uid_t uid;
|
|
|
|
gid_t gid;
|
2006-12-28 05:44:47 +00:00
|
|
|
const char *gid_str;
|
|
|
|
const char *uid_str;
|
|
|
|
const char *mode_str;
|
2003-11-27 22:40:08 +00:00
|
|
|
int copy_flags = FILEUTILS_DEREFERENCE | FILEUTILS_FORCE;
|
2005-10-09 11:16:01 +00:00
|
|
|
int ret = EXIT_SUCCESS, flags, i, isdir;
|
2003-09-24 03:22:57 +00:00
|
|
|
|
2006-12-28 05:44:47 +00:00
|
|
|
enum {
|
|
|
|
OPT_CMD = 0x1,
|
|
|
|
OPT_DIRECTORY = 0x2,
|
|
|
|
OPT_PRESERVE_TIME = 0x4,
|
|
|
|
OPT_STRIP = 0x8,
|
|
|
|
OPT_GROUP = 0x10,
|
|
|
|
OPT_MODE = 0x20,
|
|
|
|
OPT_OWNER = 0x40,
|
|
|
|
};
|
|
|
|
|
2006-05-26 20:19:22 +00:00
|
|
|
#if ENABLE_FEATURE_INSTALL_LONG_OPTIONS
|
2006-10-03 21:00:06 +00:00
|
|
|
applet_long_options = install_long_options;
|
2006-05-26 20:19:22 +00:00
|
|
|
#endif
|
2006-10-03 21:00:06 +00:00
|
|
|
opt_complementary = "?:s--d:d--s";
|
2006-04-02 20:17:55 +00:00
|
|
|
/* -c exists for backwards compatibility, its needed */
|
2006-12-28 05:44:47 +00:00
|
|
|
flags = getopt32(argc, argv, "cdpsg:m:o:", &gid_str, &mode_str, &uid_str);
|
2003-11-27 22:40:08 +00:00
|
|
|
|
|
|
|
/* preserve access and modification time, this is GNU behaviour, BSD only preserves modification time */
|
2006-12-28 05:44:47 +00:00
|
|
|
if (flags & OPT_PRESERVE_TIME) {
|
2003-11-27 22:40:08 +00:00
|
|
|
copy_flags |= FILEUTILS_PRESERVE_STATUS;
|
|
|
|
}
|
2006-12-28 05:44:47 +00:00
|
|
|
mode = 0666;
|
|
|
|
if (flags & OPT_MODE) bb_parse_mode(mode_str, &mode);
|
|
|
|
uid = (flags & OPT_OWNER) ? get_ug_id(uid_str, xuname2uid) : getuid();
|
|
|
|
gid = (flags & OPT_GROUP) ? get_ug_id(gid_str, xgroup2gid) : getgid();
|
|
|
|
if (flags & (OPT_OWNER|OPT_GROUP)) umask(0);
|
2003-09-24 03:22:57 +00:00
|
|
|
|
2004-01-23 10:57:00 +00:00
|
|
|
/* Create directories
|
2006-10-20 13:28:22 +00:00
|
|
|
* don't use bb_make_directory() as it can't change uid or gid
|
2004-01-23 10:57:00 +00:00
|
|
|
* perhaps bb_make_directory() should be improved.
|
|
|
|
*/
|
2006-12-28 05:44:47 +00:00
|
|
|
if (flags & OPT_DIRECTORY) {
|
2003-09-24 05:00:29 +00:00
|
|
|
for (argv += optind; *argv; argv++) {
|
2004-01-23 10:57:00 +00:00
|
|
|
char *old_argv_ptr = *argv + 1;
|
|
|
|
char *argv_ptr;
|
2003-09-24 05:00:29 +00:00
|
|
|
do {
|
2004-01-23 10:57:00 +00:00
|
|
|
argv_ptr = strchr(old_argv_ptr, '/');
|
|
|
|
old_argv_ptr = argv_ptr;
|
|
|
|
if (argv_ptr) {
|
|
|
|
*argv_ptr = '\0';
|
|
|
|
old_argv_ptr++;
|
|
|
|
}
|
2006-12-28 05:44:47 +00:00
|
|
|
if (mkdir(*argv, mode | 0111) == -1) {
|
2004-01-23 20:28:53 +00:00
|
|
|
if (errno != EEXIST) {
|
2006-10-20 13:28:22 +00:00
|
|
|
bb_perror_msg("cannot create %s", *argv);
|
2004-01-23 20:28:53 +00:00
|
|
|
ret = EXIT_FAILURE;
|
|
|
|
break;
|
|
|
|
}
|
2003-09-24 05:00:29 +00:00
|
|
|
}
|
2007-01-13 21:06:21 +00:00
|
|
|
if ((flags & (OPT_OWNER|OPT_GROUP))
|
2006-12-28 05:44:47 +00:00
|
|
|
&& lchown(*argv, uid, gid) == -1
|
|
|
|
) {
|
2004-01-23 10:57:00 +00:00
|
|
|
bb_perror_msg("cannot change ownership of %s", *argv);
|
|
|
|
ret = EXIT_FAILURE;
|
|
|
|
break;
|
2003-09-24 05:00:29 +00:00
|
|
|
}
|
|
|
|
if (argv_ptr) {
|
2004-01-23 10:57:00 +00:00
|
|
|
*argv_ptr = '/';
|
2003-09-24 05:00:29 +00:00
|
|
|
}
|
2004-01-23 10:57:00 +00:00
|
|
|
} while (old_argv_ptr);
|
2003-09-24 05:00:29 +00:00
|
|
|
}
|
2006-11-27 16:49:31 +00:00
|
|
|
return ret;
|
2003-09-24 05:00:29 +00:00
|
|
|
}
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2006-12-28 05:44:47 +00:00
|
|
|
isdir = lstat(argv[argc - 1], &statbuf) < 0 ? 0 : S_ISDIR(statbuf.st_mode);
|
|
|
|
|
2003-09-24 03:22:57 +00:00
|
|
|
for (i = optind; i < argc - 1; i++) {
|
2006-01-30 19:48:23 +00:00
|
|
|
char *dest;
|
2003-09-24 03:22:57 +00:00
|
|
|
|
2005-10-09 11:16:01 +00:00
|
|
|
dest = argv[argc - 1];
|
2006-12-28 05:44:47 +00:00
|
|
|
if (isdir)
|
|
|
|
dest = concat_path_file(argv[argc - 1], basename(argv[i]));
|
2003-09-24 03:22:57 +00:00
|
|
|
ret |= copy_file(argv[i], dest, copy_flags);
|
|
|
|
|
|
|
|
/* Set the file mode */
|
2006-12-28 05:44:47 +00:00
|
|
|
if ((flags & OPT_MODE) && chmod(dest, mode) == -1) {
|
2003-09-24 03:22:57 +00:00
|
|
|
bb_perror_msg("cannot change permissions of %s", dest);
|
2004-01-23 10:57:00 +00:00
|
|
|
ret = EXIT_FAILURE;
|
2003-09-24 03:22:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the user and group id */
|
2006-12-28 05:44:47 +00:00
|
|
|
if ((flags & (OPT_OWNER|OPT_GROUP))
|
|
|
|
&& lchown(dest, uid, gid) == -1
|
|
|
|
) {
|
2003-09-24 03:22:57 +00:00
|
|
|
bb_perror_msg("cannot change ownership of %s", dest);
|
2004-03-15 08:29:22 +00:00
|
|
|
ret = EXIT_FAILURE;
|
2003-09-24 03:22:57 +00:00
|
|
|
}
|
2006-12-28 05:44:47 +00:00
|
|
|
if (flags & OPT_STRIP) {
|
2007-02-06 01:20:12 +00:00
|
|
|
if (BB_EXECLP("strip", "strip", dest, NULL) == -1) {
|
2006-12-28 05:44:47 +00:00
|
|
|
bb_perror_msg("strip");
|
2004-03-15 08:29:22 +00:00
|
|
|
ret = EXIT_FAILURE;
|
2003-09-24 03:22:57 +00:00
|
|
|
}
|
|
|
|
}
|
2006-12-28 05:44:47 +00:00
|
|
|
if (ENABLE_FEATURE_CLEAN_UP && isdir) free(dest);
|
2003-09-24 03:22:57 +00:00
|
|
|
}
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2006-11-27 16:49:31 +00:00
|
|
|
return ret;
|
2003-09-24 03:22:57 +00:00
|
|
|
}
|