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 | |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 16 | #include <sys/types.h> |
| 17 | #include <sys/stat.h> |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 18 | #include <dirent.h> |
Rob Landley | b7128c6 | 2005-09-11 01:05:30 +0000 | [diff] [blame] | 19 | #include <getopt.h> /* struct option */ |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 20 | #include "libbb.h" |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 21 | #include "libcoreutils/coreutils.h" |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 22 | |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 23 | #if ENABLE_FEATURE_MV_LONG_OPTIONS |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 24 | static const char mv_longopts[] ALIGN1 = |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 25 | "interactive\0" No_argument "i" |
| 26 | "force\0" No_argument "f" |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 27 | ; |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 28 | #endif |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 29 | |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 30 | #define OPT_FILEUTILS_FORCE 1 |
| 31 | #define OPT_FILEUTILS_INTERACTIVE 2 |
| 32 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 33 | static const char fmt[] ALIGN1 = |
| 34 | "cannot overwrite %sdirectory with %sdirectory"; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 35 | |
Denis Vlasenko | 06af216 | 2007-02-03 17:28:39 +0000 | [diff] [blame] | 36 | int mv_main(int argc, char **argv); |
Rob Landley | dfba741 | 2006-03-06 20:47:33 +0000 | [diff] [blame] | 37 | int mv_main(int argc, char **argv) |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 38 | { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 39 | struct stat dest_stat; |
| 40 | const char *last; |
| 41 | const char *dest; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 42 | unsigned long flags; |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 43 | int dest_exists; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 44 | int status = 0; |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 45 | int copy_flag = 0; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 46 | |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 47 | #if ENABLE_FEATURE_MV_LONG_OPTIONS |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 48 | applet_long_options = mv_longopts; |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 49 | #endif |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 50 | opt_complementary = "f-i:i-f"; |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 51 | flags = getopt32(argv, "fi"); |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 52 | if (optind + 2 > argc) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 53 | bb_show_usage(); |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 54 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 55 | |
| 56 | last = argv[argc - 1]; |
| 57 | argv += optind; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 58 | |
| 59 | if (optind + 2 == argc) { |
Denis Vlasenko | f24e1f4 | 2006-10-21 23:40:20 +0000 | [diff] [blame] | 60 | dest_exists = cp_mv_stat(last, &dest_stat); |
| 61 | if (dest_exists < 0) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 62 | return 1; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 63 | } |
| 64 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 65 | if (!(dest_exists & 2)) { |
| 66 | dest = last; |
| 67 | goto DO_MOVE; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 68 | } |
| 69 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 70 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 71 | do { |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 72 | dest = concat_path_file(last, bb_get_last_path_component(*argv)); |
Denis Vlasenko | f24e1f4 | 2006-10-21 23:40:20 +0000 | [diff] [blame] | 73 | dest_exists = cp_mv_stat(dest, &dest_stat); |
| 74 | if (dest_exists < 0) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 75 | goto RET_1; |
| 76 | } |
| 77 | |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 78 | DO_MOVE: |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 79 | |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 80 | if (dest_exists && !(flags & OPT_FILEUTILS_FORCE) && |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 81 | ((access(dest, W_OK) < 0 && isatty(0)) || |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 82 | (flags & OPT_FILEUTILS_INTERACTIVE))) { |
Denis Vlasenko | f24e1f4 | 2006-10-21 23:40:20 +0000 | [diff] [blame] | 83 | if (fprintf(stderr, "mv: overwrite '%s'? ", dest) < 0) { |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 84 | goto RET_1; /* Ouch! fprintf failed! */ |
| 85 | } |
| 86 | if (!bb_ask_confirmation()) { |
| 87 | goto RET_0; |
| 88 | } |
| 89 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 90 | if (rename(*argv, dest) < 0) { |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 91 | struct stat source_stat; |
| 92 | int source_exists; |
| 93 | |
Rob Landley | 3c12ff7 | 2005-07-20 00:45:40 +0000 | [diff] [blame] | 94 | if (errno != EXDEV || |
| 95 | (source_exists = cp_mv_stat(*argv, &source_stat)) < 1) { |
Denis Vlasenko | f24e1f4 | 2006-10-21 23:40:20 +0000 | [diff] [blame] | 96 | bb_perror_msg("cannot rename '%s'", *argv); |
Rob Landley | 3c12ff7 | 2005-07-20 00:45:40 +0000 | [diff] [blame] | 97 | } else { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 98 | if (dest_exists) { |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 99 | if (dest_exists == 3) { |
| 100 | if (source_exists != 3) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 101 | bb_error_msg(fmt, "", "non-"); |
| 102 | goto RET_1; |
| 103 | } |
| 104 | } else { |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 105 | if (source_exists == 3) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 106 | bb_error_msg(fmt, "non-", ""); |
| 107 | goto RET_1; |
| 108 | } |
| 109 | } |
| 110 | if (unlink(dest) < 0) { |
Denis Vlasenko | f24e1f4 | 2006-10-21 23:40:20 +0000 | [diff] [blame] | 111 | bb_perror_msg("cannot remove '%s'", dest); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 112 | goto RET_1; |
| 113 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 114 | } |
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 | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 119 | if ((copy_file(*argv, dest, copy_flag) >= 0) && |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 120 | (remove_file(*argv, FILEUTILS_RECUR | FILEUTILS_FORCE) >= 0)) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 121 | goto RET_0; |
| 122 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 123 | } |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 124 | RET_1: |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 125 | status = 1; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 126 | } |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 127 | RET_0: |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 128 | if (dest != last) { |
| 129 | free((void *) dest); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 130 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 131 | } while (*++argv != last); |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 132 | |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 133 | return status; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 134 | } |