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