Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Mini cp implementation for busybox |
| 4 | * |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 5 | * Copyright (C) 2000 by Matt Kraai <kraai@alumni.carnegiemellon.edu> |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 6 | * SELinux support by Yuichi Nakamura <ynakam@hitachisoft.jp> |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 7 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 8 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 11 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/cp.html */ |
| 12 | |
| 13 | /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) |
| 14 | * |
| 15 | * Size reduction. |
| 16 | */ |
| 17 | |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame^] | 18 | //usage:#define cp_trivial_usage |
| 19 | //usage: "[OPTIONS] SOURCE DEST" |
| 20 | //usage:#define cp_full_usage "\n\n" |
| 21 | //usage: "Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY\n" |
| 22 | //usage: "\nOptions:" |
| 23 | //usage: "\n -a Same as -dpR" |
| 24 | //usage: IF_SELINUX( |
| 25 | //usage: "\n -c Preserve security context" |
| 26 | //usage: ) |
| 27 | //usage: "\n -R,-r Recurse" |
| 28 | //usage: "\n -d,-P Preserve symlinks (default if -R)" |
| 29 | //usage: "\n -L Follow all symlinks" |
| 30 | //usage: "\n -H Follow symlinks on command line" |
| 31 | //usage: "\n -p Preserve file attributes if possible" |
| 32 | //usage: "\n -f Overwrite" |
| 33 | //usage: "\n -i Prompt before overwrite" |
| 34 | //usage: "\n -l,-s Create (sym)links" |
| 35 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 36 | #include "libbb.h" |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 37 | #include "libcoreutils/coreutils.h" |
| 38 | |
Denis Vlasenko | 99912ca | 2007-04-10 15:43:37 +0000 | [diff] [blame] | 39 | /* This is a NOEXEC applet. Be very careful! */ |
| 40 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 41 | int cp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Rob Landley | dfba741 | 2006-03-06 20:47:33 +0000 | [diff] [blame] | 42 | int cp_main(int argc, char **argv) |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 43 | { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 44 | struct stat source_stat; |
| 45 | struct stat dest_stat; |
| 46 | const char *last; |
| 47 | const char *dest; |
| 48 | int s_flags; |
| 49 | int d_flags; |
| 50 | int flags; |
Denys Vlasenko | 48f1161 | 2009-09-26 14:31:04 +0200 | [diff] [blame] | 51 | int status; |
Denis Vlasenko | f24e1f4 | 2006-10-21 23:40:20 +0000 | [diff] [blame] | 52 | enum { |
| 53 | OPT_a = 1 << (sizeof(FILEUTILS_CP_OPTSTR)-1), |
| 54 | OPT_r = 1 << (sizeof(FILEUTILS_CP_OPTSTR)), |
| 55 | OPT_P = 1 << (sizeof(FILEUTILS_CP_OPTSTR)+1), |
Denys Vlasenko | a40f062 | 2010-01-15 22:05:07 +0100 | [diff] [blame] | 56 | OPT_v = 1 << (sizeof(FILEUTILS_CP_OPTSTR)+2), |
Denys Vlasenko | 48f1161 | 2009-09-26 14:31:04 +0200 | [diff] [blame] | 57 | #if ENABLE_FEATURE_CP_LONG_OPTIONS |
Denys Vlasenko | a40f062 | 2010-01-15 22:05:07 +0100 | [diff] [blame] | 58 | OPT_parents = 1 << (sizeof(FILEUTILS_CP_OPTSTR)+3), |
Denys Vlasenko | 48f1161 | 2009-09-26 14:31:04 +0200 | [diff] [blame] | 59 | #endif |
Denis Vlasenko | f24e1f4 | 2006-10-21 23:40:20 +0000 | [diff] [blame] | 60 | }; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 61 | |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 62 | // Need at least two arguments |
Denis Vlasenko | c0431ed | 2008-04-27 22:06:24 +0000 | [diff] [blame] | 63 | // Soft- and hardlinking doesn't mix |
Denis Vlasenko | f24e1f4 | 2006-10-21 23:40:20 +0000 | [diff] [blame] | 64 | // -P and -d are the same (-P is POSIX, -d is GNU) |
| 65 | // -r and -R are the same |
Denis Vlasenko | 80f647c | 2008-04-11 10:54:37 +0000 | [diff] [blame] | 66 | // -R (and therefore -r) turns on -d (coreutils does this) |
Denis Vlasenko | f24e1f4 | 2006-10-21 23:40:20 +0000 | [diff] [blame] | 67 | // -a = -pdR |
Denys Vlasenko | a40f062 | 2010-01-15 22:05:07 +0100 | [diff] [blame] | 68 | opt_complementary = "-2:l--s:s--l:Pd:rRd:Rd:apdR"; |
Denys Vlasenko | 48f1161 | 2009-09-26 14:31:04 +0200 | [diff] [blame] | 69 | #if ENABLE_FEATURE_CP_LONG_OPTIONS |
| 70 | applet_long_options = |
| 71 | "archive\0" No_argument "a" |
| 72 | "force\0" No_argument "f" |
| 73 | "interactive\0" No_argument "i" |
| 74 | "link\0" No_argument "l" |
| 75 | "dereference\0" No_argument "L" |
| 76 | "no-dereference\0" No_argument "P" |
| 77 | "recursive\0" No_argument "R" |
| 78 | "symbolic-link\0" No_argument "s" |
| 79 | "verbose\0" No_argument "v" |
| 80 | "parents\0" No_argument "\xff" |
| 81 | ; |
| 82 | #endif |
Denis Vlasenko | 0b28103 | 2009-03-20 14:04:00 +0000 | [diff] [blame] | 83 | // -v (--verbose) is ignored |
Denys Vlasenko | a40f062 | 2010-01-15 22:05:07 +0100 | [diff] [blame] | 84 | flags = getopt32(argv, FILEUTILS_CP_OPTSTR "arPv"); |
Denis Vlasenko | 0b28103 | 2009-03-20 14:04:00 +0000 | [diff] [blame] | 85 | /* Options of cp from GNU coreutils 6.10: |
| 86 | * -a, --archive |
| 87 | * -f, --force |
| 88 | * -i, --interactive |
| 89 | * -l, --link |
| 90 | * -L, --dereference |
| 91 | * -P, --no-dereference |
| 92 | * -R, -r, --recursive |
| 93 | * -s, --symbolic-link |
| 94 | * -v, --verbose |
| 95 | * -H follow command-line symbolic links in SOURCE |
| 96 | * -d same as --no-dereference --preserve=links |
| 97 | * -p same as --preserve=mode,ownership,timestamps |
| 98 | * -c same as --preserve=context |
Denys Vlasenko | 48f1161 | 2009-09-26 14:31:04 +0200 | [diff] [blame] | 99 | * --parents |
| 100 | * use full source file name under DIRECTORY |
Denis Vlasenko | 0b28103 | 2009-03-20 14:04:00 +0000 | [diff] [blame] | 101 | * NOT SUPPORTED IN BBOX: |
Denis Vlasenko | 0b28103 | 2009-03-20 14:04:00 +0000 | [diff] [blame] | 102 | * --backup[=CONTROL] |
| 103 | * make a backup of each existing destination file |
| 104 | * -b like --backup but does not accept an argument |
| 105 | * --copy-contents |
| 106 | * copy contents of special files when recursive |
| 107 | * --preserve[=ATTR_LIST] |
| 108 | * preserve attributes (default: mode,ownership,timestamps), |
| 109 | * if possible additional attributes: security context,links,all |
| 110 | * --no-preserve=ATTR_LIST |
Denis Vlasenko | 0b28103 | 2009-03-20 14:04:00 +0000 | [diff] [blame] | 111 | * --remove-destination |
| 112 | * remove each existing destination file before attempting to open |
| 113 | * --sparse=WHEN |
| 114 | * control creation of sparse files |
| 115 | * --strip-trailing-slashes |
| 116 | * remove any trailing slashes from each SOURCE argument |
| 117 | * -S, --suffix=SUFFIX |
| 118 | * override the usual backup suffix |
| 119 | * -t, --target-directory=DIRECTORY |
| 120 | * copy all SOURCE arguments into DIRECTORY |
| 121 | * -T, --no-target-directory |
| 122 | * treat DEST as a normal file |
| 123 | * -u, --update |
| 124 | * copy only when the SOURCE file is newer than the destination |
| 125 | * file or when the destination file is missing |
| 126 | * -x, --one-file-system |
| 127 | * stay on this file system |
| 128 | * -Z, --context=CONTEXT |
| 129 | * (SELinux) set SELinux security context of copy to CONTEXT |
| 130 | */ |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 131 | argc -= optind; |
| 132 | argv += optind; |
Denys Vlasenko | a40f062 | 2010-01-15 22:05:07 +0100 | [diff] [blame] | 133 | /* Reverse this bit. If there is -d, bit is not set: */ |
| 134 | flags ^= FILEUTILS_DEREFERENCE; |
Denis Vlasenko | c0431ed | 2008-04-27 22:06:24 +0000 | [diff] [blame] | 135 | /* coreutils 6.9 compat: |
| 136 | * by default, "cp" derefs symlinks (creates regular dest files), |
| 137 | * but "cp -R" does not. We switch off deref if -r or -R (see above). |
| 138 | * However, "cp -RL" must still deref symlinks: */ |
| 139 | if (flags & FILEUTILS_DEREF_SOFTLINK) /* -L */ |
| 140 | flags |= FILEUTILS_DEREFERENCE; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 141 | |
Denis Vlasenko | c86e052 | 2007-03-20 11:30:28 +0000 | [diff] [blame] | 142 | #if ENABLE_SELINUX |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 143 | if (flags & FILEUTILS_PRESERVE_SECURITY_CONTEXT) { |
| 144 | selinux_or_die(); |
| 145 | } |
| 146 | #endif |
| 147 | |
Denys Vlasenko | 48f1161 | 2009-09-26 14:31:04 +0200 | [diff] [blame] | 148 | status = EXIT_SUCCESS; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 149 | last = argv[argc - 1]; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 150 | /* If there are only two arguments and... */ |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 151 | if (argc == 2) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 152 | s_flags = cp_mv_stat2(*argv, &source_stat, |
Denys Vlasenko | 48f1161 | 2009-09-26 14:31:04 +0200 | [diff] [blame] | 153 | (flags & FILEUTILS_DEREFERENCE) ? stat : lstat); |
Denis Vlasenko | f24e1f4 | 2006-10-21 23:40:20 +0000 | [diff] [blame] | 154 | if (s_flags < 0) |
| 155 | return EXIT_FAILURE; |
| 156 | d_flags = cp_mv_stat(last, &dest_stat); |
| 157 | if (d_flags < 0) |
| 158 | return EXIT_FAILURE; |
| 159 | |
Denys Vlasenko | 48f1161 | 2009-09-26 14:31:04 +0200 | [diff] [blame] | 160 | #if ENABLE_FEATURE_CP_LONG_OPTIONS |
| 161 | if (flags & OPT_parents) { |
| 162 | if (!(d_flags & 2)) { |
| 163 | bb_error_msg_and_die("with --parents, the destination must be a directory"); |
| 164 | } |
| 165 | } |
| 166 | #endif |
| 167 | |
| 168 | /* ...if neither is a directory... */ |
| 169 | if (!((s_flags | d_flags) & 2) |
| 170 | /* ...or: recursing, the 1st is a directory, and the 2nd doesn't exist... */ |
| 171 | || ((flags & FILEUTILS_RECUR) && (s_flags & 2) && !d_flags) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 172 | ) { |
Denys Vlasenko | 48f1161 | 2009-09-26 14:31:04 +0200 | [diff] [blame] | 173 | /* Do a simple copy */ |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 174 | dest = last; |
| 175 | goto DO_COPY; /* NB: argc==2 -> *++argv==last */ |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 176 | } |
| 177 | } |
| 178 | |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 179 | while (1) { |
Denys Vlasenko | 48f1161 | 2009-09-26 14:31:04 +0200 | [diff] [blame] | 180 | #if ENABLE_FEATURE_CP_LONG_OPTIONS |
| 181 | if (flags & OPT_parents) { |
| 182 | char *dest_dup; |
| 183 | char *dest_dir; |
| 184 | dest = concat_path_file(last, *argv); |
| 185 | dest_dup = xstrdup(dest); |
| 186 | dest_dir = dirname(dest_dup); |
| 187 | if (bb_make_directory(dest_dir, -1, FILEUTILS_RECUR)) { |
| 188 | return EXIT_FAILURE; |
| 189 | } |
| 190 | free(dest_dup); |
| 191 | goto DO_COPY; |
| 192 | } |
| 193 | #endif |
Denis Vlasenko | 818322b | 2007-09-24 18:27:04 +0000 | [diff] [blame] | 194 | dest = concat_path_file(last, bb_get_last_path_component_strip(*argv)); |
Denis Vlasenko | f24e1f4 | 2006-10-21 23:40:20 +0000 | [diff] [blame] | 195 | DO_COPY: |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 196 | if (copy_file(*argv, dest, flags) < 0) { |
Denys Vlasenko | 48f1161 | 2009-09-26 14:31:04 +0200 | [diff] [blame] | 197 | status = EXIT_FAILURE; |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 198 | } |
Denys Vlasenko | 48f1161 | 2009-09-26 14:31:04 +0200 | [diff] [blame] | 199 | if (*++argv == last) { |
Denys Vlasenko | d5fddcd | 2009-10-08 01:32:44 +0200 | [diff] [blame] | 200 | /* possibly leaking dest... */ |
Denys Vlasenko | 48f1161 | 2009-09-26 14:31:04 +0200 | [diff] [blame] | 201 | break; |
| 202 | } |
Denys Vlasenko | d5fddcd | 2009-10-08 01:32:44 +0200 | [diff] [blame] | 203 | /* don't move up: dest may be == last and not malloced! */ |
| 204 | free((void*)dest); |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 205 | } |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 206 | |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 207 | /* Exit. We are NOEXEC, not NOFORK. We do exit at the end of main() */ |
Denis Vlasenko | f24e1f4 | 2006-10-21 23:40:20 +0000 | [diff] [blame] | 208 | return status; |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 209 | } |