2001-04-23 18:53:07 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini mv implementation for busybox
|
|
|
|
*
|
|
|
|
* Copyright (C) 2000 by Matt Kraai <kraai@alumni.carnegiemellon.edu>
|
|
|
|
*
|
2006-07-12 07:56:04 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-04-23 18:53:07 +00:00
|
|
|
*/
|
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
|
|
|
|
*
|
|
|
|
* Size reduction and improved error checking.
|
|
|
|
*/
|
|
|
|
|
2001-04-23 18:53:07 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdlib.h>
|
2005-09-11 01:05:30 +00:00
|
|
|
#include <getopt.h> /* struct option */
|
2001-04-23 18:53:07 +00:00
|
|
|
#include "busybox.h"
|
2003-03-19 09:13:01 +00:00
|
|
|
#include "libcoreutils/coreutils.h"
|
2001-04-23 18:53:07 +00:00
|
|
|
|
2006-05-26 20:19:22 +00:00
|
|
|
#if ENABLE_FEATURE_MV_LONG_OPTIONS
|
2003-06-20 09:01:58 +00:00
|
|
|
static const struct option mv_long_options[] = {
|
|
|
|
{ "interactive", 0, NULL, 'i' },
|
|
|
|
{ "force", 0, NULL, 'f' },
|
|
|
|
{ 0, 0, 0, 0 }
|
|
|
|
};
|
2006-05-26 20:19:22 +00:00
|
|
|
#endif
|
2003-06-20 09:01:58 +00:00
|
|
|
|
|
|
|
#define OPT_FILEUTILS_FORCE 1
|
|
|
|
#define OPT_FILEUTILS_INTERACTIVE 2
|
|
|
|
|
|
|
|
static const char fmt[] = "cannot overwrite %sdirectory with %sdirectory";
|
2001-04-23 18:53:07 +00:00
|
|
|
|
2006-03-06 20:47:33 +00:00
|
|
|
int mv_main(int argc, char **argv)
|
2001-04-23 18:53:07 +00:00
|
|
|
{
|
|
|
|
struct stat dest_stat;
|
2003-03-19 09:13:01 +00:00
|
|
|
const char *last;
|
|
|
|
const char *dest;
|
2003-06-20 09:01:58 +00:00
|
|
|
unsigned long flags;
|
2004-02-21 07:49:54 +00:00
|
|
|
int dest_exists;
|
2003-03-19 09:13:01 +00:00
|
|
|
int status = 0;
|
2001-04-23 18:53:07 +00:00
|
|
|
|
2006-05-26 20:19:22 +00:00
|
|
|
#if ENABLE_FEATURE_MV_LONG_OPTIONS
|
2003-06-20 09:01:58 +00:00
|
|
|
bb_applet_long_options = mv_long_options;
|
2006-05-26 20:19:22 +00:00
|
|
|
#endif
|
2005-09-05 14:46:07 +00:00
|
|
|
bb_opt_complementally = "f-i:i-f";
|
2004-02-21 07:49:54 +00:00
|
|
|
flags = bb_getopt_ulflags(argc, argv, "fi");
|
|
|
|
if (optind + 2 > argc) {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_show_usage();
|
2004-02-21 07:49:54 +00:00
|
|
|
}
|
2001-04-23 18:53:07 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
last = argv[argc - 1];
|
|
|
|
argv += optind;
|
2001-04-23 18:53:07 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
if (optind + 2 == argc) {
|
|
|
|
if ((dest_exists = cp_mv_stat(last, &dest_stat)) < 0) {
|
|
|
|
return 1;
|
2001-04-23 18:53:07 +00:00
|
|
|
}
|
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
if (!(dest_exists & 2)) {
|
|
|
|
dest = last;
|
|
|
|
goto DO_MOVE;
|
2001-04-23 18:53:07 +00:00
|
|
|
}
|
|
|
|
}
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
do {
|
2003-06-20 09:01:58 +00:00
|
|
|
dest = concat_path_file(last, bb_get_last_path_component(*argv));
|
2001-04-23 18:53:07 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
if ((dest_exists = cp_mv_stat(dest, &dest_stat)) < 0) {
|
|
|
|
goto RET_1;
|
2001-04-23 18:53:07 +00:00
|
|
|
}
|
|
|
|
|
2004-02-21 07:49:54 +00:00
|
|
|
DO_MOVE:
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2003-06-20 09:01:58 +00:00
|
|
|
if (dest_exists && !(flags & OPT_FILEUTILS_FORCE) &&
|
2001-04-23 18:53:07 +00:00
|
|
|
((access(dest, W_OK) < 0 && isatty(0)) ||
|
2004-02-21 07:49:54 +00:00
|
|
|
(flags & OPT_FILEUTILS_INTERACTIVE))) {
|
|
|
|
if (fprintf(stderr, "mv: overwrite `%s'? ", dest) < 0) {
|
|
|
|
goto RET_1; /* Ouch! fprintf failed! */
|
|
|
|
}
|
|
|
|
if (!bb_ask_confirmation()) {
|
|
|
|
goto RET_0;
|
|
|
|
}
|
|
|
|
}
|
2003-03-19 09:13:01 +00:00
|
|
|
if (rename(*argv, dest) < 0) {
|
2004-02-21 07:49:54 +00:00
|
|
|
struct stat source_stat;
|
|
|
|
int source_exists;
|
|
|
|
|
2005-07-20 00:45:40 +00:00
|
|
|
if (errno != EXDEV ||
|
|
|
|
(source_exists = cp_mv_stat(*argv, &source_stat)) < 1) {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_perror_msg("unable to rename `%s'", *argv);
|
2005-07-20 00:45:40 +00:00
|
|
|
} else {
|
2003-03-19 09:13:01 +00:00
|
|
|
if (dest_exists) {
|
2004-02-21 07:49:54 +00:00
|
|
|
if (dest_exists == 3) {
|
|
|
|
if (source_exists != 3) {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_error_msg(fmt, "", "non-");
|
|
|
|
goto RET_1;
|
|
|
|
}
|
|
|
|
} else {
|
2004-02-21 07:49:54 +00:00
|
|
|
if (source_exists == 3) {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_error_msg(fmt, "non-", "");
|
|
|
|
goto RET_1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (unlink(dest) < 0) {
|
|
|
|
bb_perror_msg("cannot remove `%s'", dest);
|
|
|
|
goto RET_1;
|
|
|
|
}
|
2004-03-15 08:29:22 +00:00
|
|
|
}
|
2003-03-19 09:13:01 +00:00
|
|
|
if ((copy_file(*argv, dest,
|
2004-02-21 07:49:54 +00:00
|
|
|
FILEUTILS_RECUR | FILEUTILS_PRESERVE_STATUS) >= 0) &&
|
|
|
|
(remove_file(*argv, FILEUTILS_RECUR | FILEUTILS_FORCE) >= 0)) {
|
2003-03-19 09:13:01 +00:00
|
|
|
goto RET_0;
|
|
|
|
}
|
|
|
|
}
|
2004-02-21 07:49:54 +00:00
|
|
|
RET_1:
|
2003-03-19 09:13:01 +00:00
|
|
|
status = 1;
|
2001-04-23 18:53:07 +00:00
|
|
|
}
|
2004-02-21 07:49:54 +00:00
|
|
|
RET_0:
|
2003-03-19 09:13:01 +00:00
|
|
|
if (dest != last) {
|
|
|
|
free((void *) dest);
|
2004-03-15 08:29:22 +00:00
|
|
|
}
|
2003-03-19 09:13:01 +00:00
|
|
|
} while (*++argv != last);
|
2004-02-21 07:49:54 +00:00
|
|
|
|
|
|
|
return (status);
|
2001-04-23 18:53:07 +00:00
|
|
|
}
|