Changeset 2725 in MondoRescue for branches/2.2.9/mindi-busybox/coreutils/mv.c


Ignore:
Timestamp:
Feb 25, 2011, 9:26:54 PM (13 years ago)
Author:
Bruno Cornec
Message:
  • 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:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi-busybox/coreutils/mv.c

    r1765 r2725  
    66 * SELinux support by Yuichi Nakamura <ynakam@hitachisoft.jp>
    77 *
    8  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
     8 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
    99 */
    1010
     
    1414 */
    1515
    16 #include <sys/types.h>
    17 #include <sys/stat.h>
    18 #include <dirent.h>
    19 #include <getopt.h> /* struct option */
    2016#include "libbb.h"
    2117#include "libcoreutils/coreutils.h"
     18
     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"
    2231
    2332#if ENABLE_FEATURE_MV_LONG_OPTIONS
     
    2534    "interactive\0" No_argument "i"
    2635    "force\0"       No_argument "f"
     36    "no-clobber\0"  No_argument "n"
    2737    ;
    2838#endif
     
    3040#define OPT_FILEUTILS_FORCE       1
    3141#define OPT_FILEUTILS_INTERACTIVE 2
     42#define OPT_FILEUTILS_NOCLOBBER   4
    3243
    33 static const char fmt[] ALIGN1 =
    34     "cannot overwrite %sdirectory with %sdirectory";
    35 
    36 int mv_main(int argc, char **argv);
     44int mv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
    3745int mv_main(int argc, char **argv)
    3846{
     
    4048    const char *last;
    4149    const char *dest;
    42     unsigned long flags;
     50    unsigned flags;
    4351    int dest_exists;
    4452    int status = 0;
     
    4856    applet_long_options = mv_longopts;
    4957#endif
    50     opt_complementary = "f-i:i-f";
    51     flags = getopt32(argv, "fi");
    52     if (optind + 2 > argc) {
    53         bb_show_usage();
    54     }
     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;
     65    last = argv[argc - 1];
    5566
    56     last = argv[argc - 1];
    57     argv += optind;
    58 
    59     if (optind + 2 == argc) {
     67    if (argc == 2) {
    6068        dest_exists = cp_mv_stat(last, &dest_stat);
    6169        if (dest_exists < 0) {
    62             return 1;
     70            return EXIT_FAILURE;
    6371        }
    6472
    65         if (!(dest_exists & 2)) {
     73        if (!(dest_exists & 2)) { /* last is not a directory */
    6674            dest = last;
    6775            goto DO_MOVE;
     
    7078
    7179    do {
    72         dest = concat_path_file(last, bb_get_last_path_component(*argv));
     80        dest = concat_path_file(last, bb_get_last_path_component_strip(*argv));
    7381        dest_exists = cp_mv_stat(dest, &dest_stat);
    7482        if (dest_exists < 0) {
     
    7684        }
    7785
    78 DO_MOVE:
    79 
    80         if (dest_exists && !(flags & OPT_FILEUTILS_FORCE) &&
    81             ((access(dest, W_OK) < 0 && isatty(0)) ||
    82             (flags & OPT_FILEUTILS_INTERACTIVE))) {
    83             if (fprintf(stderr, "mv: overwrite '%s'? ", dest) < 0) {
    84                 goto RET_1; /* Ouch! fprintf failed! */
    85             }
    86             if (!bb_ask_confirmation()) {
     86 DO_MOVE:
     87        if (dest_exists) {
     88            if (flags & OPT_FILEUTILS_NOCLOBBER)
    8789                goto RET_0;
     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                }
    88100            }
    89101        }
     102
    90103        if (rename(*argv, dest) < 0) {
    91104            struct stat source_stat;
    92105            int source_exists;
    93106
    94             if (errno != EXDEV ||
    95                 (source_exists = cp_mv_stat(*argv, &source_stat)) < 1) {
    96                 bb_perror_msg("cannot rename '%s'", *argv);
     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);
    97111            } else {
     112                static const char fmt[] ALIGN1 =
     113                    "can't overwrite %sdirectory with %sdirectory";
     114
    98115                if (dest_exists) {
    99116                    if (dest_exists == 3) {
     
    109126                    }
    110127                    if (unlink(dest) < 0) {
    111                         bb_perror_msg("cannot remove '%s'", dest);
     128                        bb_perror_msg("can't remove '%s'", dest);
    112129                        goto RET_1;
    113130                    }
    114131                }
     132                /* FILEUTILS_RECUR also prevents nasties like
     133                 * "read from device and write contents to dst"
     134                 * instead of "create same device node" */
    115135                copy_flag = FILEUTILS_RECUR | FILEUTILS_PRESERVE_STATUS;
    116136#if ENABLE_SELINUX
    117137                copy_flag |= FILEUTILS_PRESERVE_SECURITY_CONTEXT;
    118138#endif
    119                 if ((copy_file(*argv, dest, copy_flag) >= 0) &&
    120                     (remove_file(*argv, FILEUTILS_RECUR | FILEUTILS_FORCE) >= 0)) {
     139                if ((copy_file(*argv, dest, copy_flag) >= 0)
     140                 && (remove_file(*argv, FILEUTILS_RECUR | FILEUTILS_FORCE) >= 0)
     141                ) {
    121142                    goto RET_0;
    122143                }
    123144            }
    124 RET_1:
     145 RET_1:
    125146            status = 1;
    126147        }
    127 RET_0:
     148 RET_0:
    128149        if (dest != last) {
    129150            free((void *) dest);
Note: See TracChangeset for help on using the changeset viewer.