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