2001-04-24 00:23:07 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini mv implementation for busybox
|
|
|
|
*
|
|
|
|
* Copyright (C) 2000 by Matt Kraai <kraai@alumni.carnegiemellon.edu>
|
2007-03-10 22:28:49 +05:30
|
|
|
* SELinux support by Yuichi Nakamura <ynakam@hitachisoft.jp>
|
2001-04-24 00:23:07 +05:30
|
|
|
*
|
2006-07-12 13:26:04 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-04-24 00:23:07 +05:30
|
|
|
*/
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
|
|
|
|
*
|
|
|
|
* Size reduction and improved error checking.
|
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2003-03-19 14:43:01 +05:30
|
|
|
#include "libcoreutils/coreutils.h"
|
2001-04-24 00:23:07 +05:30
|
|
|
|
2006-05-27 01:49:22 +05:30
|
|
|
#if ENABLE_FEATURE_MV_LONG_OPTIONS
|
2007-08-13 02:28:27 +05:30
|
|
|
static const char mv_longopts[] ALIGN1 =
|
2007-07-23 22:44:14 +05:30
|
|
|
"interactive\0" No_argument "i"
|
|
|
|
"force\0" No_argument "f"
|
2007-07-24 21:24:42 +05:30
|
|
|
;
|
2006-05-27 01:49:22 +05:30
|
|
|
#endif
|
2003-06-20 14:31:58 +05:30
|
|
|
|
|
|
|
#define OPT_FILEUTILS_FORCE 1
|
|
|
|
#define OPT_FILEUTILS_INTERACTIVE 2
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int mv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2006-03-07 02:17:33 +05:30
|
|
|
int mv_main(int argc, char **argv)
|
2001-04-24 00:23:07 +05:30
|
|
|
{
|
|
|
|
struct stat dest_stat;
|
2003-03-19 14:43:01 +05:30
|
|
|
const char *last;
|
|
|
|
const char *dest;
|
2008-07-12 16:52:19 +05:30
|
|
|
unsigned flags;
|
2004-02-21 13:19:54 +05:30
|
|
|
int dest_exists;
|
2003-03-19 14:43:01 +05:30
|
|
|
int status = 0;
|
2007-03-10 22:28:49 +05:30
|
|
|
int copy_flag = 0;
|
2001-04-24 00:23:07 +05:30
|
|
|
|
2006-05-27 01:49:22 +05:30
|
|
|
#if ENABLE_FEATURE_MV_LONG_OPTIONS
|
2007-07-23 22:44:14 +05:30
|
|
|
applet_long_options = mv_longopts;
|
2006-05-27 01:49:22 +05:30
|
|
|
#endif
|
2007-08-25 03:16:24 +05:30
|
|
|
// Need at least two arguments
|
|
|
|
// -f unsets -i, -i unsets -f
|
|
|
|
opt_complementary = "-2:f-i:i-f";
|
2007-08-18 21:02:12 +05:30
|
|
|
flags = getopt32(argv, "fi");
|
2007-08-25 03:16:24 +05:30
|
|
|
argc -= optind;
|
2003-03-19 14:43:01 +05:30
|
|
|
argv += optind;
|
2007-08-25 03:16:24 +05:30
|
|
|
last = argv[argc - 1];
|
2001-04-24 00:23:07 +05:30
|
|
|
|
2007-08-25 03:16:24 +05:30
|
|
|
if (argc == 2) {
|
2006-10-22 05:10:20 +05:30
|
|
|
dest_exists = cp_mv_stat(last, &dest_stat);
|
|
|
|
if (dest_exists < 0) {
|
2007-11-16 18:09:16 +05:30
|
|
|
return EXIT_FAILURE;
|
2001-04-24 00:23:07 +05:30
|
|
|
}
|
|
|
|
|
2008-07-12 16:52:19 +05:30
|
|
|
if (!(dest_exists & 2)) { /* last is not a directory */
|
2003-03-19 14:43:01 +05:30
|
|
|
dest = last;
|
|
|
|
goto DO_MOVE;
|
2001-04-24 00:23:07 +05:30
|
|
|
}
|
|
|
|
}
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
do {
|
2007-09-24 23:57:04 +05:30
|
|
|
dest = concat_path_file(last, bb_get_last_path_component_strip(*argv));
|
2006-10-22 05:10:20 +05:30
|
|
|
dest_exists = cp_mv_stat(dest, &dest_stat);
|
|
|
|
if (dest_exists < 0) {
|
2003-03-19 14:43:01 +05:30
|
|
|
goto RET_1;
|
2001-04-24 00:23:07 +05:30
|
|
|
}
|
|
|
|
|
2007-08-25 03:16:24 +05:30
|
|
|
DO_MOVE:
|
2008-03-28 23:19:31 +05:30
|
|
|
if (dest_exists
|
|
|
|
&& !(flags & OPT_FILEUTILS_FORCE)
|
2007-08-25 03:16:24 +05:30
|
|
|
&& ((access(dest, W_OK) < 0 && isatty(0))
|
|
|
|
|| (flags & OPT_FILEUTILS_INTERACTIVE))
|
|
|
|
) {
|
2006-10-22 05:10:20 +05:30
|
|
|
if (fprintf(stderr, "mv: overwrite '%s'? ", dest) < 0) {
|
2004-02-21 13:19:54 +05:30
|
|
|
goto RET_1; /* Ouch! fprintf failed! */
|
|
|
|
}
|
|
|
|
if (!bb_ask_confirmation()) {
|
|
|
|
goto RET_0;
|
|
|
|
}
|
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
if (rename(*argv, dest) < 0) {
|
2004-02-21 13:19:54 +05:30
|
|
|
struct stat source_stat;
|
|
|
|
int source_exists;
|
|
|
|
|
2007-08-25 03:16:24 +05:30
|
|
|
if (errno != EXDEV
|
2008-07-12 16:52:19 +05:30
|
|
|
|| (source_exists = cp_mv_stat2(*argv, &source_stat, lstat)) < 1
|
2007-08-25 03:16:24 +05:30
|
|
|
) {
|
2006-10-22 05:10:20 +05:30
|
|
|
bb_perror_msg("cannot rename '%s'", *argv);
|
2005-07-20 06:15:40 +05:30
|
|
|
} else {
|
2008-07-12 16:52:19 +05:30
|
|
|
static const char fmt[] ALIGN1 =
|
|
|
|
"cannot overwrite %sdirectory with %sdirectory";
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
if (dest_exists) {
|
2004-02-21 13:19:54 +05:30
|
|
|
if (dest_exists == 3) {
|
|
|
|
if (source_exists != 3) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg(fmt, "", "non-");
|
|
|
|
goto RET_1;
|
|
|
|
}
|
|
|
|
} else {
|
2004-02-21 13:19:54 +05:30
|
|
|
if (source_exists == 3) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg(fmt, "non-", "");
|
|
|
|
goto RET_1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (unlink(dest) < 0) {
|
2006-10-22 05:10:20 +05:30
|
|
|
bb_perror_msg("cannot remove '%s'", dest);
|
2003-03-19 14:43:01 +05:30
|
|
|
goto RET_1;
|
|
|
|
}
|
2004-03-15 13:59:22 +05:30
|
|
|
}
|
2008-04-22 05:46:29 +05:30
|
|
|
/* FILEUTILS_RECUR also prevents nasties like
|
2008-03-28 23:19:31 +05:30
|
|
|
* "read from device and write contents to dst"
|
|
|
|
* instead of "create same device node" */
|
2007-03-10 22:28:49 +05:30
|
|
|
copy_flag = FILEUTILS_RECUR | FILEUTILS_PRESERVE_STATUS;
|
|
|
|
#if ENABLE_SELINUX
|
|
|
|
copy_flag |= FILEUTILS_PRESERVE_SECURITY_CONTEXT;
|
2007-03-20 17:00:28 +05:30
|
|
|
#endif
|
2007-08-25 03:16:24 +05:30
|
|
|
if ((copy_file(*argv, dest, copy_flag) >= 0)
|
|
|
|
&& (remove_file(*argv, FILEUTILS_RECUR | FILEUTILS_FORCE) >= 0)
|
|
|
|
) {
|
2003-03-19 14:43:01 +05:30
|
|
|
goto RET_0;
|
|
|
|
}
|
|
|
|
}
|
2007-08-25 03:16:24 +05:30
|
|
|
RET_1:
|
2003-03-19 14:43:01 +05:30
|
|
|
status = 1;
|
2001-04-24 00:23:07 +05:30
|
|
|
}
|
2007-08-25 03:16:24 +05:30
|
|
|
RET_0:
|
2003-03-19 14:43:01 +05:30
|
|
|
if (dest != last) {
|
|
|
|
free((void *) dest);
|
2004-03-15 13:59:22 +05:30
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
} while (*++argv != last);
|
2004-02-21 13:19:54 +05:30
|
|
|
|
2006-11-27 22:19:55 +05:30
|
|
|
return status;
|
2001-04-24 00:23:07 +05:30
|
|
|
}
|