2001-04-23 18:53:07 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini cp implementation for busybox
|
|
|
|
*
|
|
|
|
* Copyright (C) 2000 by Matt Kraai <kraai@alumni.carnegiemellon.edu>
|
2007-03-10 16:58:49 +00:00
|
|
|
* SELinux support by Yuichi Nakamura <ynakam@hitachisoft.jp>
|
2001-04-23 18:53:07 +00:00
|
|
|
*
|
2005-11-01 21:55:14 +00:00
|
|
|
* Licensed under GPL v2 or later, see file LICENSE in this tarball for details.
|
2001-04-23 18:53:07 +00:00
|
|
|
*/
|
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
/* http://www.opengroup.org/onlinepubs/007904975/utilities/cp.html */
|
|
|
|
|
|
|
|
/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
|
|
|
|
*
|
|
|
|
* Size reduction.
|
|
|
|
*/
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
2003-03-19 09:13:01 +00:00
|
|
|
#include "libcoreutils/coreutils.h"
|
|
|
|
|
2007-04-10 15:43:37 +00:00
|
|
|
/* This is a NOEXEC applet. Be very careful! */
|
|
|
|
|
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int cp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2006-03-06 20:47:33 +00:00
|
|
|
int cp_main(int argc, char **argv)
|
2001-04-23 18:53:07 +00:00
|
|
|
{
|
2003-03-19 09:13:01 +00:00
|
|
|
struct stat source_stat;
|
|
|
|
struct stat dest_stat;
|
|
|
|
const char *last;
|
|
|
|
const char *dest;
|
|
|
|
int s_flags;
|
|
|
|
int d_flags;
|
|
|
|
int flags;
|
2001-04-23 18:53:07 +00:00
|
|
|
int status = 0;
|
2006-10-21 23:40:20 +00:00
|
|
|
enum {
|
|
|
|
OPT_a = 1 << (sizeof(FILEUTILS_CP_OPTSTR)-1),
|
|
|
|
OPT_r = 1 << (sizeof(FILEUTILS_CP_OPTSTR)),
|
|
|
|
OPT_P = 1 << (sizeof(FILEUTILS_CP_OPTSTR)+1),
|
|
|
|
OPT_H = 1 << (sizeof(FILEUTILS_CP_OPTSTR)+2),
|
|
|
|
};
|
2001-04-23 18:53:07 +00:00
|
|
|
|
2007-08-24 21:46:24 +00:00
|
|
|
// Need at least two arguments
|
2008-04-27 22:06:24 +00:00
|
|
|
// Soft- and hardlinking doesn't mix
|
2006-10-21 23:40:20 +00:00
|
|
|
// -P and -d are the same (-P is POSIX, -d is GNU)
|
|
|
|
// -r and -R are the same
|
2008-04-11 10:54:37 +00:00
|
|
|
// -R (and therefore -r) turns on -d (coreutils does this)
|
2006-10-21 23:40:20 +00:00
|
|
|
// -a = -pdR
|
2008-04-27 22:06:24 +00:00
|
|
|
opt_complementary = "-2:l--s:s--l:Pd:rRd:Rd:apdR:HL";
|
|
|
|
flags = getopt32(argv, FILEUTILS_CP_OPTSTR "arPH");
|
2007-08-24 21:46:24 +00:00
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
2008-04-27 22:06:24 +00:00
|
|
|
flags ^= FILEUTILS_DEREFERENCE; /* the sense of this flag was reversed */
|
|
|
|
/* 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;
|
|
|
|
/* The behavior of -H is *almost* like -L, but not quite, so let's
|
|
|
|
* just ignore it too for fun. TODO.
|
2006-10-21 23:40:20 +00:00
|
|
|
if (flags & OPT_H) ... // deref command-line params only
|
2005-04-14 02:52:50 +00:00
|
|
|
*/
|
2003-03-19 09:13:01 +00:00
|
|
|
|
2007-03-20 11:30:28 +00:00
|
|
|
#if ENABLE_SELINUX
|
2007-03-10 16:58:49 +00:00
|
|
|
if (flags & FILEUTILS_PRESERVE_SECURITY_CONTEXT) {
|
|
|
|
selinux_or_die();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
last = argv[argc - 1];
|
|
|
|
/* If there are only two arguments and... */
|
2007-08-24 21:46:24 +00:00
|
|
|
if (argc == 2) {
|
2003-03-19 09:13:01 +00:00
|
|
|
s_flags = cp_mv_stat2(*argv, &source_stat,
|
2006-09-17 16:28:10 +00:00
|
|
|
(flags & FILEUTILS_DEREFERENCE) ? stat : lstat);
|
2006-10-21 23:40:20 +00:00
|
|
|
if (s_flags < 0)
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
d_flags = cp_mv_stat(last, &dest_stat);
|
|
|
|
if (d_flags < 0)
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
2001-04-23 18:53:07 +00:00
|
|
|
/* ...if neither is a directory or... */
|
2003-03-19 09:13:01 +00:00
|
|
|
if ( !((s_flags | d_flags) & 2) ||
|
|
|
|
/* ...recursing, the 1st is a directory, and the 2nd doesn't exist... */
|
2006-10-21 23:40:20 +00:00
|
|
|
((flags & FILEUTILS_RECUR) && (s_flags & 2) && !d_flags)
|
2003-03-19 09:13:01 +00:00
|
|
|
) {
|
2001-04-23 18:53:07 +00:00
|
|
|
/* ...do a simple copy. */
|
2007-08-24 21:46:24 +00:00
|
|
|
dest = last;
|
|
|
|
goto DO_COPY; /* NB: argc==2 -> *++argv==last */
|
2001-04-23 18:53:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-24 21:46:24 +00:00
|
|
|
while (1) {
|
2007-09-24 18:27:04 +00:00
|
|
|
dest = concat_path_file(last, bb_get_last_path_component_strip(*argv));
|
2006-10-21 23:40:20 +00:00
|
|
|
DO_COPY:
|
2003-03-19 09:13:01 +00:00
|
|
|
if (copy_file(*argv, dest, flags) < 0) {
|
2001-04-23 18:53:07 +00:00
|
|
|
status = 1;
|
2003-03-19 09:13:01 +00:00
|
|
|
}
|
2007-08-24 21:46:24 +00:00
|
|
|
if (*++argv == last) {
|
|
|
|
/* possibly leaking dest... */
|
|
|
|
break;
|
|
|
|
}
|
2006-10-21 23:40:20 +00:00
|
|
|
free((void*)dest);
|
2007-08-24 21:46:24 +00:00
|
|
|
}
|
2001-04-23 18:53:07 +00:00
|
|
|
|
2007-08-24 21:46:24 +00:00
|
|
|
/* Exit. We are NOEXEC, not NOFORK. We do exit at the end of main() */
|
2006-10-21 23:40:20 +00:00
|
|
|
return status;
|
2001-04-23 18:53:07 +00:00
|
|
|
}
|