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 | * |
"Robert P. J. Day" | 801ab14 | 2006-07-12 07:56:04 +0000 | [diff] [blame] | 8 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 11 | /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) |
| 12 | * |
| 13 | * Size reduction and improved error checking. |
| 14 | */ |
| 15 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 16 | #include "libbb.h" |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 17 | #include "libcoreutils/coreutils.h" |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 18 | |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 19 | #if ENABLE_FEATURE_MV_LONG_OPTIONS |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 20 | static const char mv_longopts[] ALIGN1 = |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 21 | "interactive\0" No_argument "i" |
| 22 | "force\0" No_argument "f" |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 23 | ; |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 24 | #endif |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 25 | |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 26 | #define OPT_FILEUTILS_FORCE 1 |
| 27 | #define OPT_FILEUTILS_INTERACTIVE 2 |
| 28 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 29 | int mv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Rob Landley | dfba741 | 2006-03-06 20:47:33 +0000 | [diff] [blame] | 30 | int mv_main(int argc, char **argv) |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 31 | { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 32 | struct stat dest_stat; |
| 33 | const char *last; |
| 34 | const char *dest; |
Denis Vlasenko | 13afb2a | 2008-07-12 11:22:19 +0000 | [diff] [blame] | 35 | unsigned flags; |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 36 | int dest_exists; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 37 | int status = 0; |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 38 | int copy_flag = 0; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 39 | |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 40 | #if ENABLE_FEATURE_MV_LONG_OPTIONS |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 41 | applet_long_options = mv_longopts; |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 42 | #endif |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 43 | // Need at least two arguments |
| 44 | // -f unsets -i, -i unsets -f |
| 45 | opt_complementary = "-2:f-i:i-f"; |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 46 | flags = getopt32(argv, "fi"); |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 47 | argc -= optind; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 48 | argv += optind; |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 49 | last = argv[argc - 1]; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 50 | |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 51 | if (argc == 2) { |
Denis Vlasenko | f24e1f4 | 2006-10-21 23:40:20 +0000 | [diff] [blame] | 52 | dest_exists = cp_mv_stat(last, &dest_stat); |
| 53 | if (dest_exists < 0) { |
Bernhard Reutner-Fischer | 7c2db5c | 2007-11-16 12:39:16 +0000 | [diff] [blame] | 54 | return EXIT_FAILURE; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 55 | } |
| 56 | |
Denis Vlasenko | 13afb2a | 2008-07-12 11:22:19 +0000 | [diff] [blame] | 57 | if (!(dest_exists & 2)) { /* last is not a directory */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 58 | dest = last; |
| 59 | goto DO_MOVE; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 60 | } |
| 61 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 62 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 63 | do { |
Denis Vlasenko | 818322b | 2007-09-24 18:27:04 +0000 | [diff] [blame] | 64 | dest = concat_path_file(last, bb_get_last_path_component_strip(*argv)); |
Denis Vlasenko | f24e1f4 | 2006-10-21 23:40:20 +0000 | [diff] [blame] | 65 | dest_exists = cp_mv_stat(dest, &dest_stat); |
| 66 | if (dest_exists < 0) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 67 | goto RET_1; |
| 68 | } |
| 69 | |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 70 | DO_MOVE: |
Denis Vlasenko | b9ad75f | 2008-03-28 17:49:31 +0000 | [diff] [blame] | 71 | if (dest_exists |
| 72 | && !(flags & OPT_FILEUTILS_FORCE) |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 73 | && ((access(dest, W_OK) < 0 && isatty(0)) |
| 74 | || (flags & OPT_FILEUTILS_INTERACTIVE)) |
| 75 | ) { |
Denis Vlasenko | f24e1f4 | 2006-10-21 23:40:20 +0000 | [diff] [blame] | 76 | if (fprintf(stderr, "mv: overwrite '%s'? ", dest) < 0) { |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 77 | goto RET_1; /* Ouch! fprintf failed! */ |
| 78 | } |
| 79 | if (!bb_ask_confirmation()) { |
| 80 | goto RET_0; |
| 81 | } |
| 82 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 83 | if (rename(*argv, dest) < 0) { |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 84 | struct stat source_stat; |
| 85 | int source_exists; |
| 86 | |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 87 | if (errno != EXDEV |
Denis Vlasenko | 13afb2a | 2008-07-12 11:22:19 +0000 | [diff] [blame] | 88 | || (source_exists = cp_mv_stat2(*argv, &source_stat, lstat)) < 1 |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 89 | ) { |
Denis Vlasenko | f24e1f4 | 2006-10-21 23:40:20 +0000 | [diff] [blame] | 90 | bb_perror_msg("cannot rename '%s'", *argv); |
Rob Landley | 3c12ff7 | 2005-07-20 00:45:40 +0000 | [diff] [blame] | 91 | } else { |
Denis Vlasenko | 13afb2a | 2008-07-12 11:22:19 +0000 | [diff] [blame] | 92 | static const char fmt[] ALIGN1 = |
| 93 | "cannot overwrite %sdirectory with %sdirectory"; |
| 94 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 95 | if (dest_exists) { |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 96 | if (dest_exists == 3) { |
| 97 | if (source_exists != 3) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 98 | bb_error_msg(fmt, "", "non-"); |
| 99 | goto RET_1; |
| 100 | } |
| 101 | } else { |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 102 | if (source_exists == 3) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 103 | bb_error_msg(fmt, "non-", ""); |
| 104 | goto RET_1; |
| 105 | } |
| 106 | } |
| 107 | if (unlink(dest) < 0) { |
Denis Vlasenko | f24e1f4 | 2006-10-21 23:40:20 +0000 | [diff] [blame] | 108 | bb_perror_msg("cannot remove '%s'", dest); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 109 | goto RET_1; |
| 110 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 111 | } |
Denis Vlasenko | 1f22898 | 2008-04-22 00:16:29 +0000 | [diff] [blame] | 112 | /* FILEUTILS_RECUR also prevents nasties like |
Denis Vlasenko | b9ad75f | 2008-03-28 17:49:31 +0000 | [diff] [blame] | 113 | * "read from device and write contents to dst" |
| 114 | * instead of "create same device node" */ |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 115 | copy_flag = FILEUTILS_RECUR | FILEUTILS_PRESERVE_STATUS; |
| 116 | #if ENABLE_SELINUX |
| 117 | copy_flag |= FILEUTILS_PRESERVE_SECURITY_CONTEXT; |
Denis Vlasenko | c86e052 | 2007-03-20 11:30:28 +0000 | [diff] [blame] | 118 | #endif |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 119 | if ((copy_file(*argv, dest, copy_flag) >= 0) |
| 120 | && (remove_file(*argv, FILEUTILS_RECUR | FILEUTILS_FORCE) >= 0) |
| 121 | ) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 122 | goto RET_0; |
| 123 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 124 | } |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 125 | RET_1: |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 126 | status = 1; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 127 | } |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 128 | RET_0: |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 129 | if (dest != last) { |
| 130 | free((void *) dest); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 131 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 132 | } while (*++argv != last); |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 133 | |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 134 | return status; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 135 | } |