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