source: MondoRescue/branches/2.2.9/mindi-busybox/coreutils/mv.c@ 2859

Last change on this file since 2859 was 2725, checked in by Bruno Cornec, 13 years ago
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File size: 3.8 KB
RevLine 
[821]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>
[1765]6 * SELinux support by Yuichi Nakamura <ynakam@hitachisoft.jp>
[821]7 *
[2725]8 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
[821]9 */
10
11/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
12 *
13 * Size reduction and improved error checking.
14 */
15
[1765]16#include "libbb.h"
[821]17#include "libcoreutils/coreutils.h"
18
[2725]19//usage:#define mv_trivial_usage
20//usage: "[-fin] SOURCE DEST\n"
21//usage: "or: mv [-fin] SOURCE... DIRECTORY"
22//usage:#define mv_full_usage "\n\n"
23//usage: "Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY\n"
24//usage: "\nOptions:"
25//usage: "\n -f Don't prompt before overwriting"
26//usage: "\n -i Interactive, prompt before overwrite"
27//usage: "\n -n Don't overwrite an existing file"
28//usage:
29//usage:#define mv_example_usage
30//usage: "$ mv /tmp/foo /bin/bar\n"
31
[821]32#if ENABLE_FEATURE_MV_LONG_OPTIONS
[1765]33static const char mv_longopts[] ALIGN1 =
34 "interactive\0" No_argument "i"
35 "force\0" No_argument "f"
[2725]36 "no-clobber\0" No_argument "n"
[1765]37 ;
[821]38#endif
39
40#define OPT_FILEUTILS_FORCE 1
41#define OPT_FILEUTILS_INTERACTIVE 2
[2725]42#define OPT_FILEUTILS_NOCLOBBER 4
[821]43
[2725]44int mv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
[821]45int mv_main(int argc, char **argv)
46{
47 struct stat dest_stat;
48 const char *last;
49 const char *dest;
[2725]50 unsigned flags;
[821]51 int dest_exists;
52 int status = 0;
[1765]53 int copy_flag = 0;
[821]54
55#if ENABLE_FEATURE_MV_LONG_OPTIONS
[1765]56 applet_long_options = mv_longopts;
[821]57#endif
[2725]58 /* Need at least two arguments.
59 * If more than one of -f, -i, -n is specified , only the final one
60 * takes effect (it unsets previous options). */
61 opt_complementary = "-2:f-in:i-fn:n-fi";
62 flags = getopt32(argv, "fin");
63 argc -= optind;
64 argv += optind;
[821]65 last = argv[argc - 1];
66
[2725]67 if (argc == 2) {
[1765]68 dest_exists = cp_mv_stat(last, &dest_stat);
69 if (dest_exists < 0) {
[2725]70 return EXIT_FAILURE;
[821]71 }
72
[2725]73 if (!(dest_exists & 2)) { /* last is not a directory */
[821]74 dest = last;
75 goto DO_MOVE;
76 }
77 }
78
79 do {
[2725]80 dest = concat_path_file(last, bb_get_last_path_component_strip(*argv));
[1765]81 dest_exists = cp_mv_stat(dest, &dest_stat);
82 if (dest_exists < 0) {
[821]83 goto RET_1;
84 }
85
[2725]86 DO_MOVE:
87 if (dest_exists) {
88 if (flags & OPT_FILEUTILS_NOCLOBBER)
[821]89 goto RET_0;
[2725]90 if (!(flags & OPT_FILEUTILS_FORCE)
91 && ((access(dest, W_OK) < 0 && isatty(0))
92 || (flags & OPT_FILEUTILS_INTERACTIVE))
93 ) {
94 if (fprintf(stderr, "mv: overwrite '%s'? ", dest) < 0) {
95 goto RET_1; /* Ouch! fprintf failed! */
96 }
97 if (!bb_ask_confirmation()) {
98 goto RET_0;
99 }
[821]100 }
101 }
[2725]102
[821]103 if (rename(*argv, dest) < 0) {
104 struct stat source_stat;
105 int source_exists;
106
[2725]107 if (errno != EXDEV
108 || (source_exists = cp_mv_stat2(*argv, &source_stat, lstat)) < 1
109 ) {
110 bb_perror_msg("can't rename '%s'", *argv);
[821]111 } else {
[2725]112 static const char fmt[] ALIGN1 =
113 "can't overwrite %sdirectory with %sdirectory";
114
[821]115 if (dest_exists) {
116 if (dest_exists == 3) {
117 if (source_exists != 3) {
118 bb_error_msg(fmt, "", "non-");
119 goto RET_1;
120 }
121 } else {
122 if (source_exists == 3) {
123 bb_error_msg(fmt, "non-", "");
124 goto RET_1;
125 }
126 }
127 if (unlink(dest) < 0) {
[2725]128 bb_perror_msg("can't remove '%s'", dest);
[821]129 goto RET_1;
130 }
131 }
[2725]132 /* FILEUTILS_RECUR also prevents nasties like
133 * "read from device and write contents to dst"
134 * instead of "create same device node" */
[1765]135 copy_flag = FILEUTILS_RECUR | FILEUTILS_PRESERVE_STATUS;
136#if ENABLE_SELINUX
137 copy_flag |= FILEUTILS_PRESERVE_SECURITY_CONTEXT;
138#endif
[2725]139 if ((copy_file(*argv, dest, copy_flag) >= 0)
140 && (remove_file(*argv, FILEUTILS_RECUR | FILEUTILS_FORCE) >= 0)
141 ) {
[821]142 goto RET_0;
143 }
144 }
[2725]145 RET_1:
[821]146 status = 1;
147 }
[2725]148 RET_0:
[821]149 if (dest != last) {
150 free((void *) dest);
151 }
152 } while (*++argv != last);
153
[1765]154 return status;
[821]155}
Note: See TracBrowser for help on using the repository browser.