mv.c 4.1 KB

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