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> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 20 | * |
| 21 | */ |
| 22 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 23 | /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) |
| 24 | * |
| 25 | * Size reduction and improved error checking. |
| 26 | */ |
| 27 | |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 28 | #include <sys/types.h> |
| 29 | #include <sys/stat.h> |
| 30 | #include <unistd.h> |
| 31 | #include <dirent.h> |
| 32 | #include <errno.h> |
| 33 | #include <stdlib.h> |
Rob Landley | b7128c6 | 2005-09-11 01:05:30 +0000 | [diff] [blame^] | 34 | #include <getopt.h> /* struct option */ |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 35 | #include "busybox.h" |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 36 | #include "libcoreutils/coreutils.h" |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 37 | |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 38 | static const struct option mv_long_options[] = { |
| 39 | { "interactive", 0, NULL, 'i' }, |
| 40 | { "force", 0, NULL, 'f' }, |
| 41 | { 0, 0, 0, 0 } |
| 42 | }; |
| 43 | |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 44 | #define OPT_FILEUTILS_FORCE 1 |
| 45 | #define OPT_FILEUTILS_INTERACTIVE 2 |
| 46 | |
| 47 | static const char fmt[] = "cannot overwrite %sdirectory with %sdirectory"; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 48 | |
| 49 | extern int mv_main(int argc, char **argv) |
| 50 | { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 51 | struct stat dest_stat; |
| 52 | const char *last; |
| 53 | const char *dest; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 54 | unsigned long flags; |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 55 | int dest_exists; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 56 | int status = 0; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 57 | |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 58 | bb_applet_long_options = mv_long_options; |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 59 | bb_opt_complementally = "f-i:i-f"; |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 60 | flags = bb_getopt_ulflags(argc, argv, "fi"); |
| 61 | if (optind + 2 > argc) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 62 | bb_show_usage(); |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 63 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 64 | |
| 65 | last = argv[argc - 1]; |
| 66 | argv += optind; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 67 | |
| 68 | if (optind + 2 == argc) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 69 | if ((dest_exists = cp_mv_stat(last, &dest_stat)) < 0) { |
| 70 | return 1; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 71 | } |
| 72 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 73 | if (!(dest_exists & 2)) { |
| 74 | dest = last; |
| 75 | goto DO_MOVE; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 76 | } |
| 77 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 78 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 79 | do { |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 80 | dest = concat_path_file(last, bb_get_last_path_component(*argv)); |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 81 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 82 | if ((dest_exists = cp_mv_stat(dest, &dest_stat)) < 0) { |
| 83 | goto RET_1; |
| 84 | } |
| 85 | |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 86 | DO_MOVE: |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 87 | |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 88 | if (dest_exists && !(flags & OPT_FILEUTILS_FORCE) && |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 89 | ((access(dest, W_OK) < 0 && isatty(0)) || |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 90 | (flags & OPT_FILEUTILS_INTERACTIVE))) { |
| 91 | if (fprintf(stderr, "mv: overwrite `%s'? ", dest) < 0) { |
| 92 | goto RET_1; /* Ouch! fprintf failed! */ |
| 93 | } |
| 94 | if (!bb_ask_confirmation()) { |
| 95 | goto RET_0; |
| 96 | } |
| 97 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 98 | if (rename(*argv, dest) < 0) { |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 99 | struct stat source_stat; |
| 100 | int source_exists; |
| 101 | |
Rob Landley | 3c12ff7 | 2005-07-20 00:45:40 +0000 | [diff] [blame] | 102 | if (errno != EXDEV || |
| 103 | (source_exists = cp_mv_stat(*argv, &source_stat)) < 1) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 104 | bb_perror_msg("unable to rename `%s'", *argv); |
Rob Landley | 3c12ff7 | 2005-07-20 00:45:40 +0000 | [diff] [blame] | 105 | } else { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 106 | if (dest_exists) { |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 107 | if (dest_exists == 3) { |
| 108 | if (source_exists != 3) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 109 | bb_error_msg(fmt, "", "non-"); |
| 110 | goto RET_1; |
| 111 | } |
| 112 | } else { |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 113 | if (source_exists == 3) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 114 | bb_error_msg(fmt, "non-", ""); |
| 115 | goto RET_1; |
| 116 | } |
| 117 | } |
| 118 | if (unlink(dest) < 0) { |
| 119 | bb_perror_msg("cannot remove `%s'", dest); |
| 120 | goto RET_1; |
| 121 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 122 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 123 | if ((copy_file(*argv, dest, |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 124 | FILEUTILS_RECUR | FILEUTILS_PRESERVE_STATUS) >= 0) && |
| 125 | (remove_file(*argv, FILEUTILS_RECUR | FILEUTILS_FORCE) >= 0)) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 126 | goto RET_0; |
| 127 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 128 | } |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 129 | RET_1: |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 130 | status = 1; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 131 | } |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 132 | RET_0: |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 133 | if (dest != last) { |
| 134 | free((void *) dest); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 135 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 136 | } while (*++argv != last); |
Glenn L McGrath | 96099d5 | 2004-02-21 07:49:54 +0000 | [diff] [blame] | 137 | |
| 138 | return (status); |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 139 | } |