2001-04-24 00:23:07 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini cp implementation for busybox
|
|
|
|
*
|
|
|
|
* Copyright (C) 2000 by Matt Kraai <kraai@alumni.carnegiemellon.edu>
|
2007-03-10 22:28:49 +05:30
|
|
|
* SELinux support by Yuichi Nakamura <ynakam@hitachisoft.jp>
|
2001-04-24 00:23:07 +05:30
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2001-04-24 00:23:07 +05:30
|
|
|
*/
|
2003-03-19 14:43:01 +05:30
|
|
|
/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
|
|
|
|
*
|
|
|
|
* Size reduction.
|
|
|
|
*/
|
2016-11-23 19:16:56 +05:30
|
|
|
//config:config CP
|
2018-12-28 07:50:17 +05:30
|
|
|
//config: bool "cp (10 kb)"
|
2016-11-23 19:16:56 +05:30
|
|
|
//config: default y
|
|
|
|
//config: help
|
2017-07-21 13:20:55 +05:30
|
|
|
//config: cp is used to copy files and directories.
|
2016-11-23 19:16:56 +05:30
|
|
|
//config:
|
|
|
|
//config:config FEATURE_CP_LONG_OPTIONS
|
2017-01-10 19:28:54 +05:30
|
|
|
//config: bool "Enable long options"
|
2016-11-23 19:16:56 +05:30
|
|
|
//config: default y
|
|
|
|
//config: depends on CP && LONG_OPTS
|
|
|
|
//config: help
|
2017-07-21 13:20:55 +05:30
|
|
|
//config: Enable long options.
|
|
|
|
//config: Also add support for --parents option.
|
2018-07-14 00:00:02 +05:30
|
|
|
//config:
|
|
|
|
//config:config FEATURE_CP_REFLINK
|
2018-07-17 03:46:16 +05:30
|
|
|
//config: bool "Enable --reflink[=auto]"
|
2018-07-14 00:00:02 +05:30
|
|
|
//config: default y
|
|
|
|
//config: depends on FEATURE_CP_LONG_OPTIONS
|
2016-11-23 19:16:56 +05:30
|
|
|
|
|
|
|
//applet:IF_CP(APPLET_NOEXEC(cp, cp, BB_DIR_BIN, BB_SUID_DROP, cp))
|
2018-01-14 19:11:52 +05:30
|
|
|
/* NOEXEC despite cases when it can be a "runner" (cp -r LARGE_DIR NEW_DIR) */
|
2016-11-23 19:16:56 +05:30
|
|
|
|
|
|
|
//kbuild:lib-$(CONFIG_CP) += cp.o
|
|
|
|
|
|
|
|
/* http://www.opengroup.org/onlinepubs/007904975/utilities/cp.html */
|
2003-03-19 14:43:01 +05:30
|
|
|
|
2021-06-21 23:05:33 +05:30
|
|
|
// Options of cp from GNU coreutils 6.10:
|
|
|
|
// -a, --archive
|
|
|
|
// -f, --force
|
|
|
|
// -i, --interactive
|
|
|
|
// -l, --link
|
|
|
|
// -L, --dereference
|
|
|
|
// -P, --no-dereference
|
|
|
|
// -R, -r, --recursive
|
|
|
|
// -s, --symbolic-link
|
|
|
|
// -v, --verbose
|
|
|
|
// -H follow command-line symbolic links in SOURCE
|
|
|
|
// -d same as --no-dereference --preserve=links
|
|
|
|
// -p same as --preserve=mode,ownership,timestamps
|
|
|
|
// -c same as --preserve=context
|
|
|
|
// -u, --update
|
|
|
|
// copy only when the SOURCE file is newer than the destination
|
|
|
|
// file or when the destination file is missing
|
|
|
|
// --remove-destination
|
|
|
|
// remove each existing destination file before attempting to open
|
|
|
|
// --parents
|
|
|
|
// use full source file name under DIRECTORY
|
|
|
|
// -T, --no-target-directory
|
|
|
|
// treat DEST as a normal file
|
|
|
|
// NOT SUPPORTED IN BBOX:
|
|
|
|
// --backup[=CONTROL]
|
|
|
|
// make a backup of each existing destination file
|
|
|
|
// -b like --backup but does not accept an argument
|
|
|
|
// --copy-contents
|
|
|
|
// copy contents of special files when recursive
|
|
|
|
// --preserve[=ATTR_LIST]
|
|
|
|
// preserve attributes (default: mode,ownership,timestamps),
|
|
|
|
// if possible additional attributes: security context,links,all
|
|
|
|
// --no-preserve=ATTR_LIST
|
|
|
|
// --sparse=WHEN
|
|
|
|
// control creation of sparse files
|
|
|
|
// --strip-trailing-slashes
|
|
|
|
// remove any trailing slashes from each SOURCE argument
|
|
|
|
// -S, --suffix=SUFFIX
|
|
|
|
// override the usual backup suffix
|
|
|
|
// -t, --target-directory=DIRECTORY
|
|
|
|
// copy all SOURCE arguments into DIRECTORY
|
|
|
|
// -x, --one-file-system
|
|
|
|
// stay on this file system
|
|
|
|
// -Z, --context=CONTEXT
|
|
|
|
// (SELinux) set SELinux security context of copy to CONTEXT
|
|
|
|
|
2011-03-31 18:13:25 +05:30
|
|
|
//usage:#define cp_trivial_usage
|
2021-06-22 18:58:34 +05:30
|
|
|
//usage: "[-arPLHpfinlsTu] SOURCE DEST\n"
|
|
|
|
//usage: "or: cp [-arPLHpfinlsu] SOURCE... { -t DIRECTORY | DIRECTORY }"
|
2011-03-31 18:13:25 +05:30
|
|
|
//usage:#define cp_full_usage "\n\n"
|
2021-04-14 18:45:45 +05:30
|
|
|
//usage: "Copy SOURCEs to DEST\n"
|
2011-03-31 18:13:25 +05:30
|
|
|
//usage: "\n -a Same as -dpR"
|
|
|
|
//usage: IF_SELINUX(
|
|
|
|
//usage: "\n -c Preserve security context"
|
|
|
|
//usage: )
|
|
|
|
//usage: "\n -R,-r Recurse"
|
|
|
|
//usage: "\n -d,-P Preserve symlinks (default if -R)"
|
|
|
|
//usage: "\n -L Follow all symlinks"
|
|
|
|
//usage: "\n -H Follow symlinks on command line"
|
|
|
|
//usage: "\n -p Preserve file attributes if possible"
|
|
|
|
//usage: "\n -f Overwrite"
|
|
|
|
//usage: "\n -i Prompt before overwrite"
|
2021-06-22 18:58:34 +05:30
|
|
|
//usage: "\n -n Don't overwrite"
|
2011-03-31 18:13:25 +05:30
|
|
|
//usage: "\n -l,-s Create (sym)links"
|
2021-06-21 23:05:33 +05:30
|
|
|
//usage: "\n -T Refuse to copy if DEST is a directory"
|
|
|
|
//usage: "\n -t DIR Copy all SOURCEs into DIR"
|
2016-05-27 04:16:38 +05:30
|
|
|
//usage: "\n -u Copy only newer files"
|
2011-03-31 18:13:25 +05:30
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2003-03-19 14:43:01 +05:30
|
|
|
#include "libcoreutils/coreutils.h"
|
|
|
|
|
2007-04-10 21:13:37 +05:30
|
|
|
/* This is a NOEXEC applet. Be very careful! */
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int cp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2006-03-07 02:17:33 +05:30
|
|
|
int cp_main(int argc, char **argv)
|
2001-04-24 00:23:07 +05:30
|
|
|
{
|
2003-03-19 14:43:01 +05:30
|
|
|
struct stat source_stat;
|
|
|
|
struct stat dest_stat;
|
|
|
|
const char *last;
|
|
|
|
const char *dest;
|
|
|
|
int s_flags;
|
|
|
|
int d_flags;
|
|
|
|
int flags;
|
2009-09-26 18:01:04 +05:30
|
|
|
int status;
|
|
|
|
#if ENABLE_FEATURE_CP_LONG_OPTIONS
|
2021-08-10 13:43:02 +05:30
|
|
|
enum {
|
2021-06-22 18:58:34 +05:30
|
|
|
/*OPT_rmdest = FILEUTILS_RMDEST = 1 << FILEUTILS_CP_OPTBITS */
|
|
|
|
OPT_parents = 1 << (FILEUTILS_CP_OPTBITS+1),
|
|
|
|
OPT_reflink = 1 << (FILEUTILS_CP_OPTBITS+2),
|
2006-10-22 05:10:20 +05:30
|
|
|
};
|
2018-07-14 00:00:02 +05:30
|
|
|
# if ENABLE_FEATURE_CP_REFLINK
|
|
|
|
char *reflink = NULL;
|
|
|
|
# endif
|
2017-08-09 01:25:02 +05:30
|
|
|
flags = getopt32long(argv, "^"
|
|
|
|
FILEUTILS_CP_OPTSTR
|
|
|
|
"\0"
|
2021-06-22 18:58:34 +05:30
|
|
|
// Need at least one argument. (Usually two+, but -t DIR can have only one)
|
2017-08-09 01:25:02 +05:30
|
|
|
// Soft- and hardlinking doesn't mix
|
|
|
|
// -P and -d are the same (-P is POSIX, -d is GNU)
|
|
|
|
// -r and -R are the same
|
|
|
|
// -R (and therefore -r) turns on -d (coreutils does this)
|
|
|
|
// -a = -pdR
|
2021-06-22 18:58:34 +05:30
|
|
|
// -i overrides -n and vice versa (last wins)
|
|
|
|
"-1:l--s:s--l:Pd:rRd:Rd:apdR:i-n:n-i",
|
2009-09-26 18:01:04 +05:30
|
|
|
"archive\0" No_argument "a"
|
|
|
|
"force\0" No_argument "f"
|
|
|
|
"interactive\0" No_argument "i"
|
2021-06-22 18:58:34 +05:30
|
|
|
"no-clobber\0" No_argument "n"
|
2009-09-26 18:01:04 +05:30
|
|
|
"link\0" No_argument "l"
|
|
|
|
"dereference\0" No_argument "L"
|
|
|
|
"no-dereference\0" No_argument "P"
|
|
|
|
"recursive\0" No_argument "R"
|
|
|
|
"symbolic-link\0" No_argument "s"
|
2018-02-01 13:59:05 +05:30
|
|
|
"no-target-directory\0" No_argument "T"
|
2021-06-22 18:58:34 +05:30
|
|
|
"target-directory\0" Required_argument "t"
|
2009-09-26 18:01:04 +05:30
|
|
|
"verbose\0" No_argument "v"
|
2016-05-27 04:16:38 +05:30
|
|
|
"update\0" No_argument "u"
|
|
|
|
"remove-destination\0" No_argument "\xff"
|
|
|
|
"parents\0" No_argument "\xfe"
|
2018-07-14 00:00:02 +05:30
|
|
|
# if ENABLE_FEATURE_CP_REFLINK
|
|
|
|
"reflink\0" Optional_argument "\xfd"
|
2021-06-21 23:05:33 +05:30
|
|
|
# endif
|
|
|
|
, &last
|
|
|
|
# if ENABLE_FEATURE_CP_REFLINK
|
2018-07-14 00:00:02 +05:30
|
|
|
, &reflink
|
|
|
|
# endif
|
getopt32: remove applet_long_options
FEATURE_GETOPT_LONG made dependent on LONG_OPTS.
The folloving options are removed, now LONG_OPTS enables long options
for affected applets:
FEATURE_ENV_LONG_OPTIONS FEATURE_EXPAND_LONG_OPTIONS
FEATURE_UNEXPAND_LONG_OPTIONS FEATURE_MKDIR_LONG_OPTIONS
FEATURE_MV_LONG_OPTIONS FEATURE_RMDIR_LONG_OPTIONS
FEATURE_ADDGROUP_LONG_OPTIONS FEATURE_ADDUSER_LONG_OPTIONS
FEATURE_HWCLOCK_LONG_OPTIONS FEATURE_NSENTER_LONG_OPTS
FEATURE_CHCON_LONG_OPTIONS FEATURE_RUNCON_LONG_OPTIONS
They either had a small number of long options, or their long options are
essential.
Example: upstream addgroup and adduser have ONLY longopts,
we should probably go further and get rid
of non-standard short options.
To this end, make addgroup and adduser "select LONG_OPTS".
We had this breakage caused by us even in our own package!
#if ENABLE_LONG_OPTS || !ENABLE_ADDGROUP
/* We try to use --gid, not -g, because "standard" addgroup
* has no short option -g, it has only long --gid.
*/
argv[1] = (char*)"--gid";
#else
/* Breaks if system in fact does NOT use busybox addgroup */
argv[1] = (char*)"-g";
#endif
xargs: its lone longopt no longer depends on DESKTOP, only on LONG_OPTS.
hwclock TODO: get rid of incompatible -t, -l aliases to --systz, --localtime
Shorten help texts by omitting long option when short opt alternative exists.
Reduction of size comes from the fact that store of an immediate
(an address of longopts) to a fixed address (global variable)
is a longer insn than pushing that immediate or passing it in a register.
This effect is CPU-agnostic.
function old new delta
getopt32 1350 22 -1328
vgetopt32 - 1318 +1318
getopt32long - 24 +24
tftpd_main 562 567 +5
scan_recursive 376 380 +4
collect_cpu 545 546 +1
date_main 1096 1095 -1
hostname_main 262 259 -3
uname_main 259 255 -4
setpriv_main 362 358 -4
rmdir_main 191 187 -4
mv_main 562 558 -4
ipcalc_main 548 544 -4
ifenslave_main 641 637 -4
gzip_main 192 188 -4
gunzip_main 77 73 -4
fsfreeze_main 81 77 -4
flock_main 318 314 -4
deluser_main 337 333 -4
cp_main 374 370 -4
chown_main 175 171 -4
applet_long_options 4 - -4
xargs_main 894 889 -5
wget_main 2540 2535 -5
udhcpc_main 2767 2762 -5
touch_main 436 431 -5
tar_main 1014 1009 -5
start_stop_daemon_main 1033 1028 -5
sed_main 682 677 -5
script_main 1082 1077 -5
run_parts_main 330 325 -5
rtcwake_main 459 454 -5
od_main 2169 2164 -5
nl_main 201 196 -5
modprobe_main 773 768 -5
mkdir_main 160 155 -5
ls_main 568 563 -5
install_main 773 768 -5
hwclock_main 411 406 -5
getopt_main 622 617 -5
fstrim_main 256 251 -5
env_main 198 193 -5
dumpleases_main 635 630 -5
dpkg_main 3991 3986 -5
diff_main 1355 1350 -5
cryptpw_main 233 228 -5
cpio_main 593 588 -5
conspy_main 1135 1130 -5
chpasswd_main 313 308 -5
adduser_main 887 882 -5
addgroup_main 416 411 -5
ftpgetput_main 351 345 -6
get_terminal_width_height 242 234 -8
expand_main 690 680 -10
static.expand_longopts 18 - -18
static.unexpand_longopts 27 - -27
mkdir_longopts 28 - -28
env_longopts 30 - -30
static.ifenslave_longopts 34 - -34
mv_longopts 46 - -46
static.rmdir_longopts 48 - -48
packed_usage 31739 31687 -52
------------------------------------------------------------------------------
(add/remove: 2/8 grow/shrink: 3/49 up/down: 1352/-1840) Total: -488 bytes
text data bss dec hex filename
915681 485 6880 923046 e15a6 busybox_old
915428 485 6876 922789 e14a5 busybox_unstripped
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2017-08-08 20:08:18 +05:30
|
|
|
);
|
2018-07-14 00:00:02 +05:30
|
|
|
# if ENABLE_FEATURE_CP_REFLINK
|
2018-08-01 21:59:41 +05:30
|
|
|
BUILD_BUG_ON((int)OPT_reflink != (int)FILEUTILS_REFLINK);
|
2018-07-14 00:00:02 +05:30
|
|
|
if (flags & FILEUTILS_REFLINK) {
|
|
|
|
if (!reflink)
|
|
|
|
flags |= FILEUTILS_REFLINK_ALWAYS;
|
|
|
|
else if (strcmp(reflink, "always") == 0)
|
|
|
|
flags |= FILEUTILS_REFLINK_ALWAYS;
|
|
|
|
else if (strcmp(reflink, "auto") != 0)
|
|
|
|
bb_show_usage();
|
|
|
|
}
|
|
|
|
# endif
|
getopt32: remove applet_long_options
FEATURE_GETOPT_LONG made dependent on LONG_OPTS.
The folloving options are removed, now LONG_OPTS enables long options
for affected applets:
FEATURE_ENV_LONG_OPTIONS FEATURE_EXPAND_LONG_OPTIONS
FEATURE_UNEXPAND_LONG_OPTIONS FEATURE_MKDIR_LONG_OPTIONS
FEATURE_MV_LONG_OPTIONS FEATURE_RMDIR_LONG_OPTIONS
FEATURE_ADDGROUP_LONG_OPTIONS FEATURE_ADDUSER_LONG_OPTIONS
FEATURE_HWCLOCK_LONG_OPTIONS FEATURE_NSENTER_LONG_OPTS
FEATURE_CHCON_LONG_OPTIONS FEATURE_RUNCON_LONG_OPTIONS
They either had a small number of long options, or their long options are
essential.
Example: upstream addgroup and adduser have ONLY longopts,
we should probably go further and get rid
of non-standard short options.
To this end, make addgroup and adduser "select LONG_OPTS".
We had this breakage caused by us even in our own package!
#if ENABLE_LONG_OPTS || !ENABLE_ADDGROUP
/* We try to use --gid, not -g, because "standard" addgroup
* has no short option -g, it has only long --gid.
*/
argv[1] = (char*)"--gid";
#else
/* Breaks if system in fact does NOT use busybox addgroup */
argv[1] = (char*)"-g";
#endif
xargs: its lone longopt no longer depends on DESKTOP, only on LONG_OPTS.
hwclock TODO: get rid of incompatible -t, -l aliases to --systz, --localtime
Shorten help texts by omitting long option when short opt alternative exists.
Reduction of size comes from the fact that store of an immediate
(an address of longopts) to a fixed address (global variable)
is a longer insn than pushing that immediate or passing it in a register.
This effect is CPU-agnostic.
function old new delta
getopt32 1350 22 -1328
vgetopt32 - 1318 +1318
getopt32long - 24 +24
tftpd_main 562 567 +5
scan_recursive 376 380 +4
collect_cpu 545 546 +1
date_main 1096 1095 -1
hostname_main 262 259 -3
uname_main 259 255 -4
setpriv_main 362 358 -4
rmdir_main 191 187 -4
mv_main 562 558 -4
ipcalc_main 548 544 -4
ifenslave_main 641 637 -4
gzip_main 192 188 -4
gunzip_main 77 73 -4
fsfreeze_main 81 77 -4
flock_main 318 314 -4
deluser_main 337 333 -4
cp_main 374 370 -4
chown_main 175 171 -4
applet_long_options 4 - -4
xargs_main 894 889 -5
wget_main 2540 2535 -5
udhcpc_main 2767 2762 -5
touch_main 436 431 -5
tar_main 1014 1009 -5
start_stop_daemon_main 1033 1028 -5
sed_main 682 677 -5
script_main 1082 1077 -5
run_parts_main 330 325 -5
rtcwake_main 459 454 -5
od_main 2169 2164 -5
nl_main 201 196 -5
modprobe_main 773 768 -5
mkdir_main 160 155 -5
ls_main 568 563 -5
install_main 773 768 -5
hwclock_main 411 406 -5
getopt_main 622 617 -5
fstrim_main 256 251 -5
env_main 198 193 -5
dumpleases_main 635 630 -5
dpkg_main 3991 3986 -5
diff_main 1355 1350 -5
cryptpw_main 233 228 -5
cpio_main 593 588 -5
conspy_main 1135 1130 -5
chpasswd_main 313 308 -5
adduser_main 887 882 -5
addgroup_main 416 411 -5
ftpgetput_main 351 345 -6
get_terminal_width_height 242 234 -8
expand_main 690 680 -10
static.expand_longopts 18 - -18
static.unexpand_longopts 27 - -27
mkdir_longopts 28 - -28
env_longopts 30 - -30
static.ifenslave_longopts 34 - -34
mv_longopts 46 - -46
static.rmdir_longopts 48 - -48
packed_usage 31739 31687 -52
------------------------------------------------------------------------------
(add/remove: 2/8 grow/shrink: 3/49 up/down: 1352/-1840) Total: -488 bytes
text data bss dec hex filename
915681 485 6880 923046 e15a6 busybox_old
915428 485 6876 922789 e14a5 busybox_unstripped
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2017-08-08 20:08:18 +05:30
|
|
|
#else
|
2018-02-12 01:55:23 +05:30
|
|
|
flags = getopt32(argv, "^"
|
|
|
|
FILEUTILS_CP_OPTSTR
|
|
|
|
"\0"
|
2021-06-21 23:05:33 +05:30
|
|
|
"-1:l--s:s--l:Pd:rRd:Rd:apdR"
|
|
|
|
, &last
|
2018-02-12 01:55:23 +05:30
|
|
|
);
|
getopt32: remove applet_long_options
FEATURE_GETOPT_LONG made dependent on LONG_OPTS.
The folloving options are removed, now LONG_OPTS enables long options
for affected applets:
FEATURE_ENV_LONG_OPTIONS FEATURE_EXPAND_LONG_OPTIONS
FEATURE_UNEXPAND_LONG_OPTIONS FEATURE_MKDIR_LONG_OPTIONS
FEATURE_MV_LONG_OPTIONS FEATURE_RMDIR_LONG_OPTIONS
FEATURE_ADDGROUP_LONG_OPTIONS FEATURE_ADDUSER_LONG_OPTIONS
FEATURE_HWCLOCK_LONG_OPTIONS FEATURE_NSENTER_LONG_OPTS
FEATURE_CHCON_LONG_OPTIONS FEATURE_RUNCON_LONG_OPTIONS
They either had a small number of long options, or their long options are
essential.
Example: upstream addgroup and adduser have ONLY longopts,
we should probably go further and get rid
of non-standard short options.
To this end, make addgroup and adduser "select LONG_OPTS".
We had this breakage caused by us even in our own package!
#if ENABLE_LONG_OPTS || !ENABLE_ADDGROUP
/* We try to use --gid, not -g, because "standard" addgroup
* has no short option -g, it has only long --gid.
*/
argv[1] = (char*)"--gid";
#else
/* Breaks if system in fact does NOT use busybox addgroup */
argv[1] = (char*)"-g";
#endif
xargs: its lone longopt no longer depends on DESKTOP, only on LONG_OPTS.
hwclock TODO: get rid of incompatible -t, -l aliases to --systz, --localtime
Shorten help texts by omitting long option when short opt alternative exists.
Reduction of size comes from the fact that store of an immediate
(an address of longopts) to a fixed address (global variable)
is a longer insn than pushing that immediate or passing it in a register.
This effect is CPU-agnostic.
function old new delta
getopt32 1350 22 -1328
vgetopt32 - 1318 +1318
getopt32long - 24 +24
tftpd_main 562 567 +5
scan_recursive 376 380 +4
collect_cpu 545 546 +1
date_main 1096 1095 -1
hostname_main 262 259 -3
uname_main 259 255 -4
setpriv_main 362 358 -4
rmdir_main 191 187 -4
mv_main 562 558 -4
ipcalc_main 548 544 -4
ifenslave_main 641 637 -4
gzip_main 192 188 -4
gunzip_main 77 73 -4
fsfreeze_main 81 77 -4
flock_main 318 314 -4
deluser_main 337 333 -4
cp_main 374 370 -4
chown_main 175 171 -4
applet_long_options 4 - -4
xargs_main 894 889 -5
wget_main 2540 2535 -5
udhcpc_main 2767 2762 -5
touch_main 436 431 -5
tar_main 1014 1009 -5
start_stop_daemon_main 1033 1028 -5
sed_main 682 677 -5
script_main 1082 1077 -5
run_parts_main 330 325 -5
rtcwake_main 459 454 -5
od_main 2169 2164 -5
nl_main 201 196 -5
modprobe_main 773 768 -5
mkdir_main 160 155 -5
ls_main 568 563 -5
install_main 773 768 -5
hwclock_main 411 406 -5
getopt_main 622 617 -5
fstrim_main 256 251 -5
env_main 198 193 -5
dumpleases_main 635 630 -5
dpkg_main 3991 3986 -5
diff_main 1355 1350 -5
cryptpw_main 233 228 -5
cpio_main 593 588 -5
conspy_main 1135 1130 -5
chpasswd_main 313 308 -5
adduser_main 887 882 -5
addgroup_main 416 411 -5
ftpgetput_main 351 345 -6
get_terminal_width_height 242 234 -8
expand_main 690 680 -10
static.expand_longopts 18 - -18
static.unexpand_longopts 27 - -27
mkdir_longopts 28 - -28
env_longopts 30 - -30
static.ifenslave_longopts 34 - -34
mv_longopts 46 - -46
static.rmdir_longopts 48 - -48
packed_usage 31739 31687 -52
------------------------------------------------------------------------------
(add/remove: 2/8 grow/shrink: 3/49 up/down: 1352/-1840) Total: -488 bytes
text data bss dec hex filename
915681 485 6880 923046 e15a6 busybox_old
915428 485 6876 922789 e14a5 busybox_unstripped
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2017-08-08 20:08:18 +05:30
|
|
|
#endif
|
2007-08-25 03:16:24 +05:30
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
2010-01-16 02:35:07 +05:30
|
|
|
/* Reverse this bit. If there is -d, bit is not set: */
|
|
|
|
flags ^= FILEUTILS_DEREFERENCE;
|
2008-04-28 03:36:24 +05:30
|
|
|
/* coreutils 6.9 compat:
|
|
|
|
* by default, "cp" derefs symlinks (creates regular dest files),
|
|
|
|
* but "cp -R" does not. We switch off deref if -r or -R (see above).
|
|
|
|
* However, "cp -RL" must still deref symlinks: */
|
|
|
|
if (flags & FILEUTILS_DEREF_SOFTLINK) /* -L */
|
|
|
|
flags |= FILEUTILS_DEREFERENCE;
|
2003-03-19 14:43:01 +05:30
|
|
|
|
2007-03-20 17:00:28 +05:30
|
|
|
#if ENABLE_SELINUX
|
2007-03-10 22:28:49 +05:30
|
|
|
if (flags & FILEUTILS_PRESERVE_SECURITY_CONTEXT) {
|
|
|
|
selinux_or_die();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-09-26 18:01:04 +05:30
|
|
|
status = EXIT_SUCCESS;
|
2021-06-21 23:05:33 +05:30
|
|
|
if (!(flags & FILEUTILS_TARGET_DIR)) {
|
|
|
|
last = argv[argc - 1];
|
|
|
|
if (argc < 2)
|
|
|
|
bb_show_usage();
|
|
|
|
if (argc != 2) {
|
|
|
|
if (flags & FILEUTILS_NO_TARGET_DIR)
|
|
|
|
bb_show_usage();
|
|
|
|
/* "cp A B C... DIR" - target must be dir */
|
|
|
|
} else /* argc == 2 */ {
|
|
|
|
/* "cp A B" - only case where target can be not a dir */
|
2021-06-21 23:01:37 +05:30
|
|
|
s_flags = cp_mv_stat2(*argv, &source_stat,
|
|
|
|
(flags & FILEUTILS_DEREFERENCE) ? stat : lstat);
|
2021-06-21 23:05:33 +05:30
|
|
|
if (s_flags < 0) /* error other than ENOENT */
|
2021-06-21 23:01:37 +05:30
|
|
|
return EXIT_FAILURE;
|
|
|
|
d_flags = cp_mv_stat(last, &dest_stat);
|
2021-06-21 23:05:33 +05:30
|
|
|
if (d_flags < 0) /* error other than ENOENT */
|
2021-06-21 23:01:37 +05:30
|
|
|
return EXIT_FAILURE;
|
2006-10-22 05:10:20 +05:30
|
|
|
|
2021-06-21 23:01:37 +05:30
|
|
|
if (flags & FILEUTILS_NO_TARGET_DIR) { /* -T */
|
|
|
|
if (!(s_flags & 2) && (d_flags & 2))
|
|
|
|
/* cp -T NOTDIR DIR */
|
|
|
|
bb_error_msg_and_die("'%s' is a directory", last);
|
|
|
|
}
|
2018-02-01 13:59:05 +05:30
|
|
|
|
2009-09-26 18:01:04 +05:30
|
|
|
#if ENABLE_FEATURE_CP_LONG_OPTIONS
|
2021-06-21 23:01:37 +05:30
|
|
|
//bb_error_msg("flags:%x FILEUTILS_RMDEST:%x OPT_parents:%x",
|
|
|
|
// flags, FILEUTILS_RMDEST, OPT_parents);
|
|
|
|
if (flags & OPT_parents) {
|
|
|
|
if (!(d_flags & 2)) {
|
|
|
|
bb_simple_error_msg_and_die("with --parents, the destination must be a directory");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (flags & FILEUTILS_RMDEST) {
|
|
|
|
flags |= FILEUTILS_FORCE;
|
2009-09-26 18:01:04 +05:30
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2021-06-21 23:01:37 +05:30
|
|
|
/* ...if neither is a directory... */
|
|
|
|
if (!((s_flags | d_flags) & 2)
|
|
|
|
/* ...or: recursing, the 1st is a directory, and the 2nd doesn't exist... */
|
|
|
|
|| ((flags & FILEUTILS_RECUR) && (s_flags & 2) && !d_flags)
|
|
|
|
|| (flags & FILEUTILS_NO_TARGET_DIR)
|
|
|
|
) {
|
|
|
|
/* Do a simple copy */
|
|
|
|
dest = last;
|
|
|
|
goto DO_COPY; /* NB: argc==2 -> *++argv==last */
|
|
|
|
}
|
2021-06-21 23:05:33 +05:30
|
|
|
}
|
2001-04-24 00:23:07 +05:30
|
|
|
}
|
2021-06-24 19:38:15 +05:30
|
|
|
/* else: last is DIR from "-t DIR" */
|
2001-04-24 00:23:07 +05:30
|
|
|
|
2007-08-25 03:16:24 +05:30
|
|
|
while (1) {
|
2009-09-26 18:01:04 +05:30
|
|
|
#if ENABLE_FEATURE_CP_LONG_OPTIONS
|
|
|
|
if (flags & OPT_parents) {
|
|
|
|
char *dest_dup;
|
|
|
|
char *dest_dir;
|
|
|
|
dest = concat_path_file(last, *argv);
|
|
|
|
dest_dup = xstrdup(dest);
|
|
|
|
dest_dir = dirname(dest_dup);
|
|
|
|
if (bb_make_directory(dest_dir, -1, FILEUTILS_RECUR)) {
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
free(dest_dup);
|
|
|
|
goto DO_COPY;
|
|
|
|
}
|
|
|
|
#endif
|
2007-09-24 23:57:04 +05:30
|
|
|
dest = concat_path_file(last, bb_get_last_path_component_strip(*argv));
|
2006-10-22 05:10:20 +05:30
|
|
|
DO_COPY:
|
2003-03-19 14:43:01 +05:30
|
|
|
if (copy_file(*argv, dest, flags) < 0) {
|
2009-09-26 18:01:04 +05:30
|
|
|
status = EXIT_FAILURE;
|
2003-03-19 14:43:01 +05:30
|
|
|
}
|
2021-06-24 19:38:15 +05:30
|
|
|
if (!*++argv || *argv == last) {
|
2009-10-08 05:02:44 +05:30
|
|
|
/* possibly leaking dest... */
|
2007-08-25 03:16:24 +05:30
|
|
|
break;
|
|
|
|
}
|
2009-10-08 05:02:44 +05:30
|
|
|
/* don't move up: dest may be == last and not malloced! */
|
|
|
|
free((void*)dest);
|
2007-08-25 03:16:24 +05:30
|
|
|
}
|
2001-04-24 00:23:07 +05:30
|
|
|
|
2007-08-25 03:16:24 +05:30
|
|
|
/* Exit. We are NOEXEC, not NOFORK. We do exit at the end of main() */
|
2006-10-22 05:10:20 +05:30
|
|
|
return status;
|
2001-04-24 00:23:07 +05:30
|
|
|
}
|