Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Mini mv implementation for busybox |
| 4 | * |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 5 | * Copyright (C) 2000 by Matt Kraai <kraai@alumni.carnegiemellon.edu> |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 6 | * SELinux support by Yuichi Nakamura <ynakam@hitachisoft.jp> |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 7 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 8 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 9 | */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 10 | /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) |
| 11 | * |
| 12 | * Size reduction and improved error checking. |
| 13 | */ |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 14 | //config:config MV |
| 15 | //config: bool "mv" |
| 16 | //config: default y |
| 17 | //config: help |
| 18 | //config: mv is used to move or rename files or directories. |
| 19 | //config: |
| 20 | //config:config FEATURE_MV_LONG_OPTIONS |
| 21 | //config: bool "Enable long options" |
| 22 | //config: default y |
| 23 | //config: depends on MV && LONG_OPTS |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 24 | |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 25 | //applet:IF_MV(APPLET(mv, BB_DIR_BIN, BB_SUID_DROP)) |
| 26 | |
| 27 | //kbuild:lib-$(CONFIG_MV) += mv.o |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 28 | |
Denys Vlasenko | 4c46d85 | 2010-10-26 15:58:47 +0200 | [diff] [blame] | 29 | //usage:#define mv_trivial_usage |
| 30 | //usage: "[-fin] SOURCE DEST\n" |
| 31 | //usage: "or: mv [-fin] SOURCE... DIRECTORY" |
| 32 | //usage:#define mv_full_usage "\n\n" |
| 33 | //usage: "Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY\n" |
Denys Vlasenko | 4c46d85 | 2010-10-26 15:58:47 +0200 | [diff] [blame] | 34 | //usage: "\n -f Don't prompt before overwriting" |
| 35 | //usage: "\n -i Interactive, prompt before overwrite" |
| 36 | //usage: "\n -n Don't overwrite an existing file" |
| 37 | //usage: |
| 38 | //usage:#define mv_example_usage |
| 39 | //usage: "$ mv /tmp/foo /bin/bar\n" |
| 40 | |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 41 | #include "libbb.h" |
| 42 | #include "libcoreutils/coreutils.h" |
| 43 | |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 44 | #if ENABLE_FEATURE_MV_LONG_OPTIONS |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 45 | static const char mv_longopts[] ALIGN1 = |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 46 | "interactive\0" No_argument "i" |
| 47 | "force\0" No_argument "f" |
Denys Vlasenko | 4c46d85 | 2010-10-26 15:58:47 +0200 | [diff] [blame] | 48 | "no-clobber\0" No_argument "n" |
Denys Vlasenko | 17f8418 | 2014-05-19 16:23:50 +0200 | [diff] [blame] | 49 | IF_FEATURE_VERBOSE( |
Simon B | f1f8fca | 2012-05-06 18:08:24 +0200 | [diff] [blame] | 50 | "verbose\0" No_argument "v" |
Denys Vlasenko | 17f8418 | 2014-05-19 16:23:50 +0200 | [diff] [blame] | 51 | ) |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 52 | ; |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 53 | #endif |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 54 | |
Simon B | f1f8fca | 2012-05-06 18:08:24 +0200 | [diff] [blame] | 55 | #define OPT_FORCE (1 << 0) |
| 56 | #define OPT_INTERACTIVE (1 << 1) |
| 57 | #define OPT_NOCLOBBER (1 << 2) |
Denys Vlasenko | 17f8418 | 2014-05-19 16:23:50 +0200 | [diff] [blame] | 58 | #define OPT_VERBOSE ((1 << 3) * ENABLE_FEATURE_VERBOSE) |
| 59 | |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 60 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 61 | int mv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Rob Landley | dfba741 | 2006-03-06 20:47:33 +0000 | [diff] [blame] | 62 | int mv_main(int argc, char **argv) |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 63 | { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 64 | struct stat dest_stat; |
| 65 | const char *last; |
| 66 | const char *dest; |
Denis Vlasenko | 13afb2a | 2008-07-12 11:22:19 +0000 | [diff] [blame] | 67 | unsigned flags; |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 68 | int dest_exists; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 69 | int status = 0; |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 70 | int copy_flag = 0; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 71 | |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 72 | #if ENABLE_FEATURE_MV_LONG_OPTIONS |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 73 | applet_long_options = mv_longopts; |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 74 | #endif |
Denys Vlasenko | 4c46d85 | 2010-10-26 15:58:47 +0200 | [diff] [blame] | 75 | /* Need at least two arguments. |
| 76 | * If more than one of -f, -i, -n is specified , only the final one |
Simon B | f1f8fca | 2012-05-06 18:08:24 +0200 | [diff] [blame] | 77 | * takes effect (it unsets previous options). |
Simon B | f1f8fca | 2012-05-06 18:08:24 +0200 | [diff] [blame] | 78 | */ |
Denys Vlasenko | 4c46d85 | 2010-10-26 15:58:47 +0200 | [diff] [blame] | 79 | opt_complementary = "-2:f-in:i-fn:n-fi"; |
Simon B | f1f8fca | 2012-05-06 18:08:24 +0200 | [diff] [blame] | 80 | flags = getopt32(argv, "finv"); |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 81 | argc -= optind; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 82 | argv += optind; |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 83 | last = argv[argc - 1]; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 84 | |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 85 | if (argc == 2) { |
Denis Vlasenko | f24e1f4 | 2006-10-21 23:40:20 +0000 | [diff] [blame] | 86 | dest_exists = cp_mv_stat(last, &dest_stat); |
| 87 | if (dest_exists < 0) { |
Bernhard Reutner-Fischer | 7c2db5c | 2007-11-16 12:39:16 +0000 | [diff] [blame] | 88 | return EXIT_FAILURE; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 89 | } |
| 90 | |
Denis Vlasenko | 13afb2a | 2008-07-12 11:22:19 +0000 | [diff] [blame] | 91 | if (!(dest_exists & 2)) { /* last is not a directory */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 92 | dest = last; |
| 93 | goto DO_MOVE; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 94 | } |
| 95 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 96 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 97 | do { |
Denis Vlasenko | 818322b | 2007-09-24 18:27:04 +0000 | [diff] [blame] | 98 | dest = concat_path_file(last, bb_get_last_path_component_strip(*argv)); |
Denis Vlasenko | f24e1f4 | 2006-10-21 23:40:20 +0000 | [diff] [blame] | 99 | dest_exists = cp_mv_stat(dest, &dest_stat); |
| 100 | if (dest_exists < 0) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 101 | goto RET_1; |
| 102 | } |
| 103 | |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 104 | DO_MOVE: |
Denys Vlasenko | 4c46d85 | 2010-10-26 15:58:47 +0200 | [diff] [blame] | 105 | if (dest_exists) { |
Simon B | f1f8fca | 2012-05-06 18:08:24 +0200 | [diff] [blame] | 106 | if (flags & OPT_NOCLOBBER) |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 107 | goto RET_0; |
Simon B | f1f8fca | 2012-05-06 18:08:24 +0200 | [diff] [blame] | 108 | if (!(flags & OPT_FORCE) |
Denys Vlasenko | 4c46d85 | 2010-10-26 15:58:47 +0200 | [diff] [blame] | 109 | && ((access(dest, W_OK) < 0 && isatty(0)) |
Simon B | f1f8fca | 2012-05-06 18:08:24 +0200 | [diff] [blame] | 110 | || (flags & OPT_INTERACTIVE)) |
Denys Vlasenko | 4c46d85 | 2010-10-26 15:58:47 +0200 | [diff] [blame] | 111 | ) { |
| 112 | if (fprintf(stderr, "mv: overwrite '%s'? ", dest) < 0) { |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 113 | goto RET_1; /* Ouch! fprintf failed! */ |
Denys Vlasenko | 4c46d85 | 2010-10-26 15:58:47 +0200 | [diff] [blame] | 114 | } |
| 115 | if (!bb_ask_confirmation()) { |
| 116 | goto RET_0; |
| 117 | } |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 118 | } |
| 119 | } |
Denys Vlasenko | 4c46d85 | 2010-10-26 15:58:47 +0200 | [diff] [blame] | 120 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 121 | if (rename(*argv, dest) < 0) { |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 122 | struct stat source_stat; |
| 123 | int source_exists; |
| 124 | |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 125 | if (errno != EXDEV |
Denis Vlasenko | 13afb2a | 2008-07-12 11:22:19 +0000 | [diff] [blame] | 126 | || (source_exists = cp_mv_stat2(*argv, &source_stat, lstat)) < 1 |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 127 | ) { |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 128 | bb_perror_msg("can't rename '%s'", *argv); |
Rob Landley | 3c12ff7 | 2005-07-20 00:45:40 +0000 | [diff] [blame] | 129 | } else { |
Denis Vlasenko | 13afb2a | 2008-07-12 11:22:19 +0000 | [diff] [blame] | 130 | static const char fmt[] ALIGN1 = |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 131 | "can't overwrite %sdirectory with %sdirectory"; |
Denis Vlasenko | 13afb2a | 2008-07-12 11:22:19 +0000 | [diff] [blame] | 132 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 133 | if (dest_exists) { |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 134 | if (dest_exists == 3) { |
| 135 | if (source_exists != 3) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 136 | bb_error_msg(fmt, "", "non-"); |
| 137 | goto RET_1; |
| 138 | } |
| 139 | } else { |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 140 | if (source_exists == 3) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 141 | bb_error_msg(fmt, "non-", ""); |
| 142 | goto RET_1; |
| 143 | } |
| 144 | } |
| 145 | if (unlink(dest) < 0) { |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 146 | bb_perror_msg("can't remove '%s'", dest); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 147 | goto RET_1; |
| 148 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 149 | } |
Denis Vlasenko | 1f22898 | 2008-04-22 00:16:29 +0000 | [diff] [blame] | 150 | /* FILEUTILS_RECUR also prevents nasties like |
Denis Vlasenko | b9ad75f | 2008-03-28 17:49:31 +0000 | [diff] [blame] | 151 | * "read from device and write contents to dst" |
| 152 | * instead of "create same device node" */ |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 153 | copy_flag = FILEUTILS_RECUR | FILEUTILS_PRESERVE_STATUS; |
| 154 | #if ENABLE_SELINUX |
| 155 | copy_flag |= FILEUTILS_PRESERVE_SECURITY_CONTEXT; |
Denis Vlasenko | c86e052 | 2007-03-20 11:30:28 +0000 | [diff] [blame] | 156 | #endif |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 157 | if ((copy_file(*argv, dest, copy_flag) >= 0) |
| 158 | && (remove_file(*argv, FILEUTILS_RECUR | FILEUTILS_FORCE) >= 0) |
| 159 | ) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 160 | goto RET_0; |
| 161 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 162 | } |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 163 | RET_1: |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 164 | status = 1; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 165 | } |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 166 | RET_0: |
Denys Vlasenko | 17f8418 | 2014-05-19 16:23:50 +0200 | [diff] [blame] | 167 | if (flags & OPT_VERBOSE) { |
| 168 | printf("'%s' -> '%s'\n", *argv, dest); |
| 169 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 170 | if (dest != last) { |
| 171 | free((void *) dest); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 172 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 173 | } while (*++argv != last); |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 174 | |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 175 | return status; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 176 | } |