3
0

mv.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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"
  16. //config: default y
  17. //config: help
  18. //config: mv is used to move or rename files or directories.
  19. //config:
  20. //config:config FEATURE_MV_LONG_OPTIONS
  21. //config: bool "Enable long options"
  22. //config: default y
  23. //config: depends on MV && LONG_OPTS
  24. //config: help
  25. //config: Support long options for the mv applet.
  26. //applet:IF_MV(APPLET(mv, BB_DIR_BIN, BB_SUID_DROP))
  27. //kbuild:lib-$(CONFIG_MV) += mv.o
  28. //usage:#define mv_trivial_usage
  29. //usage: "[-fin] SOURCE DEST\n"
  30. //usage: "or: mv [-fin] SOURCE... DIRECTORY"
  31. //usage:#define mv_full_usage "\n\n"
  32. //usage: "Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY\n"
  33. //usage: "\n -f Don't prompt before overwriting"
  34. //usage: "\n -i Interactive, prompt before overwrite"
  35. //usage: "\n -n Don't overwrite an existing file"
  36. //usage:
  37. //usage:#define mv_example_usage
  38. //usage: "$ mv /tmp/foo /bin/bar\n"
  39. #include "libbb.h"
  40. #include "libcoreutils/coreutils.h"
  41. #if ENABLE_FEATURE_MV_LONG_OPTIONS
  42. static const char mv_longopts[] ALIGN1 =
  43. "interactive\0" No_argument "i"
  44. "force\0" No_argument "f"
  45. "no-clobber\0" No_argument "n"
  46. IF_FEATURE_VERBOSE(
  47. "verbose\0" No_argument "v"
  48. )
  49. ;
  50. #endif
  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. int mv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  56. int mv_main(int argc, char **argv)
  57. {
  58. struct stat dest_stat;
  59. const char *last;
  60. const char *dest;
  61. unsigned flags;
  62. int dest_exists;
  63. int status = 0;
  64. int copy_flag = 0;
  65. #if ENABLE_FEATURE_MV_LONG_OPTIONS
  66. applet_long_options = mv_longopts;
  67. #endif
  68. /* Need at least two arguments.
  69. * If more than one of -f, -i, -n is specified , only the final one
  70. * takes effect (it unsets previous options).
  71. */
  72. opt_complementary = "-2:f-in:i-fn:n-fi";
  73. flags = getopt32(argv, "finv");
  74. argc -= optind;
  75. argv += optind;
  76. last = argv[argc - 1];
  77. if (argc == 2) {
  78. dest_exists = cp_mv_stat(last, &dest_stat);
  79. if (dest_exists < 0) {
  80. return EXIT_FAILURE;
  81. }
  82. if (!(dest_exists & 2)) { /* last is not a directory */
  83. dest = last;
  84. goto DO_MOVE;
  85. }
  86. }
  87. do {
  88. dest = concat_path_file(last, bb_get_last_path_component_strip(*argv));
  89. dest_exists = cp_mv_stat(dest, &dest_stat);
  90. if (dest_exists < 0) {
  91. goto RET_1;
  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; /* Ouch! fprintf failed! */
  103. }
  104. if (!bb_ask_confirmation()) {
  105. goto RET_0;
  106. }
  107. }
  108. }
  109. if (rename(*argv, dest) < 0) {
  110. struct stat source_stat;
  111. int source_exists;
  112. if (errno != EXDEV
  113. || (source_exists = cp_mv_stat2(*argv, &source_stat, lstat)) < 1
  114. ) {
  115. bb_perror_msg("can't rename '%s'", *argv);
  116. } else {
  117. static const char fmt[] ALIGN1 =
  118. "can't overwrite %sdirectory with %sdirectory";
  119. if (dest_exists) {
  120. if (dest_exists == 3) {
  121. if (source_exists != 3) {
  122. bb_error_msg(fmt, "", "non-");
  123. goto RET_1;
  124. }
  125. } else {
  126. if (source_exists == 3) {
  127. bb_error_msg(fmt, "non-", "");
  128. goto RET_1;
  129. }
  130. }
  131. if (unlink(dest) < 0) {
  132. bb_perror_msg("can't remove '%s'", dest);
  133. goto RET_1;
  134. }
  135. }
  136. /* FILEUTILS_RECUR also prevents nasties like
  137. * "read from device and write contents to dst"
  138. * instead of "create same device node" */
  139. copy_flag = FILEUTILS_RECUR | FILEUTILS_PRESERVE_STATUS;
  140. #if ENABLE_SELINUX
  141. copy_flag |= FILEUTILS_PRESERVE_SECURITY_CONTEXT;
  142. #endif
  143. if ((copy_file(*argv, dest, copy_flag) >= 0)
  144. && (remove_file(*argv, FILEUTILS_RECUR | FILEUTILS_FORCE) >= 0)
  145. ) {
  146. goto RET_0;
  147. }
  148. }
  149. RET_1:
  150. status = 1;
  151. }
  152. RET_0:
  153. if (flags & OPT_VERBOSE) {
  154. printf("'%s' -> '%s'\n", *argv, dest);
  155. }
  156. if (dest != last) {
  157. free((void *) dest);
  158. }
  159. } while (*++argv != last);
  160. return status;
  161. }