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
38
39#include "libbb.h"
40#include "libcoreutils/coreutils.h"
41
42int mv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
43int mv_main(int argc, char **argv)
44{
45 struct stat statbuf;
46 const char *last;
47 const char *dest;
48 unsigned flags;
49 int dest_exists;
50 int status = 0;
51 int copy_flag = 0;
52
53#define OPT_FORCE (1 << 0)
54#define OPT_INTERACTIVE (1 << 1)
55#define OPT_NOCLOBBER (1 << 2)
56#define OPT_DESTNOTDIR (1 << 3)
57#define OPT_DESTDIR (1 << 4)
58#define OPT_VERBOSE ((1 << 5) * ENABLE_FEATURE_VERBOSE)
59 flags = getopt32long(argv, "^"
60 "finTt:v"
61 "\0"
62
63 "-1"
64
65 ":f-in:i-fn:n-fi"
66
67 ":t--T:T--t",
68 "interactive\0" No_argument "i"
69 "force\0" No_argument "f"
70 "no-clobber\0" No_argument "n"
71 "no-target-directory\0" No_argument "T"
72 "target-directory\0" Required_argument "t"
73 IF_FEATURE_VERBOSE(
74 "verbose\0" No_argument "v",
75 &last
76 )
77 );
78 argc -= optind;
79 argv += optind;
80
81 if (!(flags & OPT_DESTDIR)) {
82 last = argv[argc - 1];
83 if (argc < 2)
84 bb_show_usage();
85 if (argc != 2) {
86 if (flags & OPT_DESTNOTDIR)
87 bb_show_usage();
88
89 } else {
90
91 dest_exists = cp_mv_stat(last, &statbuf);
92 if (dest_exists < 0) {
93 return EXIT_FAILURE;
94 }
95 if (!(dest_exists & 2)) {
96
97 dest = last;
98 goto DO_MOVE;
99 }
100
101 if (flags & OPT_DESTNOTDIR) {
102 if (stat(argv[0], &statbuf) == 0 && !S_ISDIR(statbuf.st_mode))
103 bb_error_msg_and_die("'%s' is a directory", last);
104
105 dest = last;
106 goto DO_MOVE;
107 }
108
109 }
110 }
111
112
113 do {
114 dest = concat_path_file(last, bb_get_last_path_component_strip(*argv));
115 dest_exists = cp_mv_stat(dest, &statbuf);
116 if (dest_exists < 0) {
117 goto RET_1;
118 }
119
120 DO_MOVE:
121 if (dest_exists) {
122 if (flags & OPT_NOCLOBBER)
123 goto RET_0;
124 if (!(flags & OPT_FORCE)
125 && ((access(dest, W_OK) < 0 && isatty(0))
126 || (flags & OPT_INTERACTIVE))
127 ) {
128 if (fprintf(stderr, "mv: overwrite '%s'? ", dest) < 0) {
129 goto RET_1;
130 }
131 if (!bb_ask_y_confirmation()) {
132 goto RET_0;
133 }
134 }
135 }
136
137 if (rename(*argv, dest) < 0) {
138 int source_exists;
139
140 if (errno != EXDEV
141 || (source_exists = cp_mv_stat2(*argv, &statbuf, lstat)) < 1
142 ) {
143 bb_perror_msg("can't rename '%s'", *argv);
144 } else {
145 static const char fmt[] ALIGN1 =
146 "can't overwrite %sdirectory with %sdirectory";
147
148 if (dest_exists) {
149 if (dest_exists == 3) {
150 if (source_exists != 3) {
151 bb_error_msg(fmt, "", "non-");
152 goto RET_1;
153 }
154 } else {
155 if (source_exists == 3) {
156 bb_error_msg(fmt, "non-", "");
157 goto RET_1;
158 }
159 }
160 if (unlink(dest) < 0) {
161 bb_perror_msg("can't remove '%s'", dest);
162 goto RET_1;
163 }
164 }
165
166
167
168 copy_flag = FILEUTILS_RECUR | FILEUTILS_PRESERVE_STATUS;
169#if ENABLE_SELINUX
170 copy_flag |= FILEUTILS_PRESERVE_SECURITY_CONTEXT;
171#endif
172 if ((copy_file(*argv, dest, copy_flag) >= 0)
173 && (remove_file(*argv, FILEUTILS_RECUR | FILEUTILS_FORCE) >= 0)
174 ) {
175 goto RET_0;
176 }
177 }
178 RET_1:
179 status = 1;
180 }
181 RET_0:
182 if (flags & OPT_VERBOSE) {
183 printf("'%s' -> '%s'\n", *argv, dest);
184 }
185 if (dest != last) {
186 free((void *) dest);
187 }
188 } while (*++argv && *argv != last);
189
190 return status;
191}
192