1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37#include "libbb.h"
38#include "libcoreutils/coreutils.h"
39
40int mv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
41int mv_main(int argc, char **argv)
42{
43 struct stat dest_stat;
44 const char *last;
45 const char *dest;
46 unsigned flags;
47 int dest_exists;
48 int status = 0;
49 int copy_flag = 0;
50
51#define OPT_FORCE (1 << 0)
52#define OPT_INTERACTIVE (1 << 1)
53#define OPT_NOCLOBBER (1 << 2)
54#define OPT_VERBOSE ((1 << 3) * ENABLE_FEATURE_VERBOSE)
55
56
57
58
59 flags = getopt32long(argv, "^"
60 "finv"
61 "\0"
62 "-2:f-in:i-fn:n-fi",
63 "interactive\0" No_argument "i"
64 "force\0" No_argument "f"
65 "no-clobber\0" No_argument "n"
66 IF_FEATURE_VERBOSE(
67 "verbose\0" No_argument "v"
68 )
69 );
70 argc -= optind;
71 argv += optind;
72 last = argv[argc - 1];
73
74 if (argc == 2) {
75 dest_exists = cp_mv_stat(last, &dest_stat);
76 if (dest_exists < 0) {
77 return EXIT_FAILURE;
78 }
79
80 if (!(dest_exists & 2)) {
81 dest = last;
82 goto DO_MOVE;
83 }
84 }
85
86 do {
87 dest = concat_path_file(last, bb_get_last_path_component_strip(*argv));
88 dest_exists = cp_mv_stat(dest, &dest_stat);
89 if (dest_exists < 0) {
90 goto RET_1;
91 }
92
93 DO_MOVE:
94 if (dest_exists) {
95 if (flags & OPT_NOCLOBBER)
96 goto RET_0;
97 if (!(flags & OPT_FORCE)
98 && ((access(dest, W_OK) < 0 && isatty(0))
99 || (flags & OPT_INTERACTIVE))
100 ) {
101 if (fprintf(stderr, "mv: overwrite '%s'? ", dest) < 0) {
102 goto RET_1;
103 }
104 if (!bb_ask_y_confirmation()) {
105 goto RET_0;
106 }
107 }
108 }
109
110 if (rename(*argv, dest) < 0) {
111 struct stat source_stat;
112 int source_exists;
113
114 if (errno != EXDEV
115 || (source_exists = cp_mv_stat2(*argv, &source_stat, lstat)) < 1
116 ) {
117 bb_perror_msg("can't rename '%s'", *argv);
118 } else {
119 static const char fmt[] ALIGN1 =
120 "can't overwrite %sdirectory with %sdirectory";
121
122 if (dest_exists) {
123 if (dest_exists == 3) {
124 if (source_exists != 3) {
125 bb_error_msg(fmt, "", "non-");
126 goto RET_1;
127 }
128 } else {
129 if (source_exists == 3) {
130 bb_error_msg(fmt, "non-", "");
131 goto RET_1;
132 }
133 }
134 if (unlink(dest) < 0) {
135 bb_perror_msg("can't remove '%s'", dest);
136 goto RET_1;
137 }
138 }
139
140
141
142 copy_flag = FILEUTILS_RECUR | FILEUTILS_PRESERVE_STATUS;
143#if ENABLE_SELINUX
144 copy_flag |= FILEUTILS_PRESERVE_SECURITY_CONTEXT;
145#endif
146 if ((copy_file(*argv, dest, copy_flag) >= 0)
147 && (remove_file(*argv, FILEUTILS_RECUR | FILEUTILS_FORCE) >= 0)
148 ) {
149 goto RET_0;
150 }
151 }
152 RET_1:
153 status = 1;
154 }
155 RET_0:
156 if (flags & OPT_VERBOSE) {
157 printf("'%s' -> '%s'\n", *argv, dest);
158 }
159 if (dest != last) {
160 free((void *) dest);
161 }
162 } while (*++argv != last);
163
164 return status;
165}
166