2001-03-17 04:17:14 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2001-04-24 00:23:07 +05:30
|
|
|
* Mini copy_file implementation for busybox
|
2001-03-17 04:17:14 +05:30
|
|
|
*
|
2001-04-24 00:23:07 +05:30
|
|
|
* Copyright (C) 2001 by Matt Kraai <kraai@alumni.carnegiemellon.edu>
|
2007-03-10 22:28:49 +05:30
|
|
|
* SELinux support by Yuichi Nakamura <ynakam@hitachisoft.jp>
|
2001-03-17 04:17:14 +05:30
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2001-03-17 04:17:14 +05:30
|
|
|
*/
|
2006-06-25 02:57:36 +05:30
|
|
|
#include "libbb.h"
|
2001-03-17 04:17:14 +05:30
|
|
|
|
2009-07-05 16:19:29 +05:30
|
|
|
// FEATURE_NON_POSIX_CP:
|
|
|
|
//
|
2007-03-15 19:03:37 +05:30
|
|
|
// POSIX: if exists and -i, ask (w/o -i assume yes).
|
|
|
|
// Then open w/o EXCL (yes, not unlink!).
|
|
|
|
// If open still fails and -f, try unlink, then try open again.
|
|
|
|
// Result: a mess:
|
2009-07-05 16:54:17 +05:30
|
|
|
// If dest is a (sym)link, we overwrite link destination!
|
2007-03-15 19:03:37 +05:30
|
|
|
// (or fail, if it points to dir/nonexistent location/etc).
|
|
|
|
// This is strange, but POSIX-correct.
|
|
|
|
// coreutils cp has --remove-destination to override this...
|
|
|
|
|
2009-07-05 16:54:17 +05:30
|
|
|
/* Called if open of destination, link creation etc fails.
|
|
|
|
* errno must be set to relevant value ("why we cannot create dest?")
|
|
|
|
* to give reasonable error message */
|
2007-03-15 19:03:37 +05:30
|
|
|
static int ask_and_unlink(const char *dest, int flags)
|
2006-10-22 05:10:20 +05:30
|
|
|
{
|
2008-02-13 22:22:00 +05:30
|
|
|
int e = errno;
|
2009-07-05 16:54:17 +05:30
|
|
|
|
2009-07-05 16:19:29 +05:30
|
|
|
#if !ENABLE_FEATURE_NON_POSIX_CP
|
2006-10-22 05:10:20 +05:30
|
|
|
if (!(flags & (FILEUTILS_FORCE|FILEUTILS_INTERACTIVE))) {
|
2009-07-05 16:54:17 +05:30
|
|
|
/* Either it exists, or the *path* doesnt exist */
|
2009-11-13 13:38:27 +05:30
|
|
|
bb_perror_msg("can't create '%s'", dest);
|
2006-10-22 05:10:20 +05:30
|
|
|
return -1;
|
|
|
|
}
|
2007-03-15 19:03:37 +05:30
|
|
|
#endif
|
2009-07-05 16:54:17 +05:30
|
|
|
// else: act as if -f is always in effect.
|
2009-11-13 13:38:27 +05:30
|
|
|
// We don't want "can't create" msg, we want unlink to be done
|
2009-07-05 16:54:17 +05:30
|
|
|
// (silently unless -i). Why? POSIX cp usually succeeds with
|
|
|
|
// O_TRUNC open of existing file, and user is left ignorantly happy.
|
|
|
|
// With above block unconditionally enabled, non-POSIX cp
|
|
|
|
// will complain a lot more than POSIX one.
|
2007-03-15 19:03:37 +05:30
|
|
|
|
2009-07-05 16:54:17 +05:30
|
|
|
/* TODO: maybe we should do it only if ctty is present? */
|
2006-10-22 05:10:20 +05:30
|
|
|
if (flags & FILEUTILS_INTERACTIVE) {
|
2007-03-15 19:03:37 +05:30
|
|
|
// We would not do POSIX insanity. -i asks,
|
|
|
|
// then _unlinks_ the offender. Presto.
|
2007-08-24 19:53:57 +05:30
|
|
|
// (No "opening without O_EXCL", no "unlink only if -f")
|
2007-03-15 19:03:37 +05:30
|
|
|
// Or else we will end up having 3 open()s!
|
2006-10-22 05:10:20 +05:30
|
|
|
fprintf(stderr, "%s: overwrite '%s'? ", applet_name, dest);
|
|
|
|
if (!bb_ask_confirmation())
|
2009-07-05 16:54:17 +05:30
|
|
|
return 0; /* not allowed to overwrite */
|
2006-10-22 05:10:20 +05:30
|
|
|
}
|
|
|
|
if (unlink(dest) < 0) {
|
2008-02-13 22:22:00 +05:30
|
|
|
#if ENABLE_FEATURE_VERBOSE_CP_MESSAGE
|
|
|
|
if (e == errno && e == ENOENT) {
|
|
|
|
/* e == ENOTDIR is similar: path has non-dir component,
|
|
|
|
* but in this case we don't even reach copy_file() */
|
2009-11-13 13:38:27 +05:30
|
|
|
bb_error_msg("can't create '%s': Path does not exist", dest);
|
2009-07-05 16:54:17 +05:30
|
|
|
return -1; /* error */
|
2008-02-13 22:22:00 +05:30
|
|
|
}
|
|
|
|
#endif
|
2009-07-05 16:54:17 +05:30
|
|
|
errno = e; /* do not use errno from unlink */
|
2009-11-13 13:38:27 +05:30
|
|
|
bb_perror_msg("can't create '%s'", dest);
|
2009-07-05 16:54:17 +05:30
|
|
|
return -1; /* error */
|
2006-10-22 05:10:20 +05:30
|
|
|
}
|
2016-05-27 04:16:38 +05:30
|
|
|
#if ENABLE_FEATURE_CP_LONG_OPTIONS
|
|
|
|
if (flags & FILEUTILS_RMDEST)
|
|
|
|
if (flags & FILEUTILS_VERBOSE)
|
|
|
|
printf("removed '%s'\n", dest);
|
|
|
|
#endif
|
2009-07-05 16:54:17 +05:30
|
|
|
return 1; /* ok (to try again) */
|
2006-10-22 05:10:20 +05:30
|
|
|
}
|
|
|
|
|
2007-03-15 19:03:37 +05:30
|
|
|
/* Return:
|
|
|
|
* -1 error, copy not made
|
|
|
|
* 0 copy is made or user answered "no" in interactive mode
|
|
|
|
* (failures to preserve mode/owner/times are not reported in exit code)
|
|
|
|
*/
|
2008-06-27 08:22:20 +05:30
|
|
|
int FAST_FUNC copy_file(const char *source, const char *dest, int flags)
|
2001-03-17 04:17:14 +05:30
|
|
|
{
|
2007-08-26 02:44:55 +05:30
|
|
|
/* This is a recursive function, try to minimize stack usage */
|
|
|
|
/* NB: each struct stat is ~100 bytes */
|
2001-04-24 00:23:07 +05:30
|
|
|
struct stat source_stat;
|
|
|
|
struct stat dest_stat;
|
2011-01-28 23:44:17 +05:30
|
|
|
smallint retval = 0;
|
|
|
|
smallint dest_exists = 0;
|
|
|
|
smallint ovr;
|
2001-04-24 00:23:07 +05:30
|
|
|
|
2008-03-28 23:19:31 +05:30
|
|
|
/* Inverse of cp -d ("cp without -d") */
|
2010-01-16 02:35:07 +05:30
|
|
|
#define FLAGS_DEREF (flags & (FILEUTILS_DEREFERENCE + FILEUTILS_DEREFERENCE_L0))
|
2006-10-22 05:10:20 +05:30
|
|
|
|
|
|
|
if ((FLAGS_DEREF ? stat : lstat)(source, &source_stat) < 0) {
|
2009-07-05 16:54:17 +05:30
|
|
|
/* This may be a dangling symlink.
|
|
|
|
* Making [sym]links to dangling symlinks works, so... */
|
2006-10-22 05:10:20 +05:30
|
|
|
if (flags & (FILEUTILS_MAKE_SOFTLINK|FILEUTILS_MAKE_HARDLINK))
|
|
|
|
goto make_links;
|
2009-11-13 13:38:27 +05:30
|
|
|
bb_perror_msg("can't stat '%s'", source);
|
2001-04-24 00:23:07 +05:30
|
|
|
return -1;
|
2001-04-11 21:53:35 +05:30
|
|
|
}
|
2001-03-17 04:17:14 +05:30
|
|
|
|
2002-09-16 15:53:38 +05:30
|
|
|
if (lstat(dest, &dest_stat) < 0) {
|
2001-04-24 00:23:07 +05:30
|
|
|
if (errno != ENOENT) {
|
2009-11-13 13:38:27 +05:30
|
|
|
bb_perror_msg("can't stat '%s'", dest);
|
2001-04-24 00:23:07 +05:30
|
|
|
return -1;
|
2001-04-11 21:53:35 +05:30
|
|
|
}
|
2002-09-17 14:12:21 +05:30
|
|
|
} else {
|
2006-10-22 05:10:20 +05:30
|
|
|
if (source_stat.st_dev == dest_stat.st_dev
|
|
|
|
&& source_stat.st_ino == dest_stat.st_ino
|
|
|
|
) {
|
|
|
|
bb_error_msg("'%s' and '%s' are the same file", source, dest);
|
2005-04-14 08:22:50 +05:30
|
|
|
return -1;
|
|
|
|
}
|
2002-09-17 14:12:21 +05:30
|
|
|
dest_exists = 1;
|
|
|
|
}
|
2001-03-17 04:17:14 +05:30
|
|
|
|
2007-03-10 22:28:49 +05:30
|
|
|
#if ENABLE_SELINUX
|
|
|
|
if ((flags & FILEUTILS_PRESERVE_SECURITY_CONTEXT) && is_selinux_enabled() > 0) {
|
|
|
|
security_context_t con;
|
|
|
|
if (lgetfilecon(source, &con) >= 0) {
|
|
|
|
if (setfscreatecon(con) < 0) {
|
2009-11-13 13:38:27 +05:30
|
|
|
bb_perror_msg("can't set setfscreatecon %s", con);
|
2007-03-10 22:28:49 +05:30
|
|
|
freecon(con);
|
|
|
|
return -1;
|
|
|
|
}
|
2007-03-15 19:03:37 +05:30
|
|
|
} else if (errno == ENOTSUP || errno == ENODATA) {
|
|
|
|
setfscreatecon_or_die(NULL);
|
2007-03-10 22:28:49 +05:30
|
|
|
} else {
|
2009-11-13 13:38:27 +05:30
|
|
|
bb_perror_msg("can't lgetfilecon %s", source);
|
2007-03-15 19:03:37 +05:30
|
|
|
return -1;
|
2007-03-10 22:28:49 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-04-24 00:23:07 +05:30
|
|
|
if (S_ISDIR(source_stat.st_mode)) {
|
|
|
|
DIR *dp;
|
2007-08-27 22:32:19 +05:30
|
|
|
const char *tp;
|
2001-04-24 00:23:07 +05:30
|
|
|
struct dirent *d;
|
2001-04-30 23:02:43 +05:30
|
|
|
mode_t saved_umask = 0;
|
2001-04-24 00:23:07 +05:30
|
|
|
|
2001-04-24 07:00:02 +05:30
|
|
|
if (!(flags & FILEUTILS_RECUR)) {
|
2006-10-22 05:10:20 +05:30
|
|
|
bb_error_msg("omitting directory '%s'", source);
|
2001-04-24 00:23:07 +05:30
|
|
|
return -1;
|
2001-04-11 21:53:35 +05:30
|
|
|
}
|
2001-03-17 04:17:14 +05:30
|
|
|
|
2007-08-27 22:21:30 +05:30
|
|
|
/* Did we ever create source ourself before? */
|
2007-08-27 22:32:19 +05:30
|
|
|
tp = is_in_ino_dev_hashtable(&source_stat);
|
|
|
|
if (tp) {
|
2007-08-27 22:21:30 +05:30
|
|
|
/* We did! it's a recursion! man the lifeboats... */
|
|
|
|
bb_error_msg("recursion detected, omitting directory '%s'",
|
2007-08-27 22:32:19 +05:30
|
|
|
source);
|
2007-08-27 22:21:30 +05:30
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2001-04-24 00:23:07 +05:30
|
|
|
if (dest_exists) {
|
|
|
|
if (!S_ISDIR(dest_stat.st_mode)) {
|
2006-10-22 05:10:20 +05:30
|
|
|
bb_error_msg("target '%s' is not a directory", dest);
|
2001-04-24 00:23:07 +05:30
|
|
|
return -1;
|
2001-04-11 21:53:35 +05:30
|
|
|
}
|
2007-09-11 21:58:14 +05:30
|
|
|
/* race here: user can substitute a symlink between
|
|
|
|
* this check and actual creation of files inside dest */
|
2001-04-24 00:23:07 +05:30
|
|
|
} else {
|
2011-01-28 23:44:17 +05:30
|
|
|
/* Create DEST */
|
2001-04-30 23:02:43 +05:30
|
|
|
mode_t mode;
|
2001-04-24 00:23:07 +05:30
|
|
|
saved_umask = umask(0);
|
|
|
|
|
|
|
|
mode = source_stat.st_mode;
|
2001-04-24 07:00:02 +05:30
|
|
|
if (!(flags & FILEUTILS_PRESERVE_STATUS))
|
2001-04-24 00:23:07 +05:30
|
|
|
mode = source_stat.st_mode & ~saved_umask;
|
2007-08-26 02:44:55 +05:30
|
|
|
/* Allow owner to access new dir (at least for now) */
|
2001-04-24 00:23:07 +05:30
|
|
|
mode |= S_IRWXU;
|
|
|
|
if (mkdir(dest, mode) < 0) {
|
|
|
|
umask(saved_umask);
|
2009-11-13 13:38:27 +05:30
|
|
|
bb_perror_msg("can't create directory '%s'", dest);
|
2001-04-24 00:23:07 +05:30
|
|
|
return -1;
|
2001-04-11 21:53:35 +05:30
|
|
|
}
|
2001-04-24 00:23:07 +05:30
|
|
|
umask(saved_umask);
|
2007-08-27 22:21:30 +05:30
|
|
|
/* need stat info for add_to_ino_dev_hashtable */
|
|
|
|
if (lstat(dest, &dest_stat) < 0) {
|
2009-11-13 13:38:27 +05:30
|
|
|
bb_perror_msg("can't stat '%s'", dest);
|
2007-08-27 22:21:30 +05:30
|
|
|
return -1;
|
|
|
|
}
|
2001-03-17 04:17:14 +05:30
|
|
|
}
|
2007-08-27 22:21:30 +05:30
|
|
|
/* remember (dev,inode) of each created dir.
|
|
|
|
* NULL: name is not remembered */
|
|
|
|
add_to_ino_dev_hashtable(&dest_stat, NULL);
|
2001-06-11 19:28:02 +05:30
|
|
|
|
2007-08-26 02:44:55 +05:30
|
|
|
/* Recursively copy files in SOURCE */
|
2006-10-22 05:10:20 +05:30
|
|
|
dp = opendir(source);
|
|
|
|
if (dp == NULL) {
|
2007-08-26 02:44:55 +05:30
|
|
|
retval = -1;
|
|
|
|
goto preserve_mode_ugid_time;
|
2001-03-17 04:17:14 +05:30
|
|
|
}
|
2001-04-24 00:23:07 +05:30
|
|
|
|
|
|
|
while ((d = readdir(dp)) != NULL) {
|
|
|
|
char *new_source, *new_dest;
|
|
|
|
|
2003-05-26 19:37:50 +05:30
|
|
|
new_source = concat_subpath_file(source, d->d_name);
|
2006-10-22 05:10:20 +05:30
|
|
|
if (new_source == NULL)
|
2001-04-24 00:23:07 +05:30
|
|
|
continue;
|
|
|
|
new_dest = concat_path_file(dest, d->d_name);
|
2010-01-16 02:35:07 +05:30
|
|
|
if (copy_file(new_source, new_dest, flags & ~FILEUTILS_DEREFERENCE_L0) < 0)
|
2007-08-26 02:44:55 +05:30
|
|
|
retval = -1;
|
2001-04-24 00:23:07 +05:30
|
|
|
free(new_source);
|
|
|
|
free(new_dest);
|
2001-03-17 04:17:14 +05:30
|
|
|
}
|
2002-09-17 14:12:21 +05:30
|
|
|
closedir(dp);
|
2001-04-30 23:02:43 +05:30
|
|
|
|
2006-10-22 05:10:20 +05:30
|
|
|
if (!dest_exists
|
|
|
|
&& chmod(dest, source_stat.st_mode & ~saved_umask) < 0
|
|
|
|
) {
|
2009-11-13 13:38:27 +05:30
|
|
|
bb_perror_msg("can't preserve %s of '%s'", "permissions", dest);
|
2007-08-27 22:21:30 +05:30
|
|
|
/* retval = -1; - WRONG! copy *WAS* made */
|
2001-04-30 23:02:43 +05:30
|
|
|
}
|
2007-08-26 02:44:55 +05:30
|
|
|
goto preserve_mode_ugid_time;
|
|
|
|
}
|
2006-10-22 05:10:20 +05:30
|
|
|
|
2016-05-27 04:16:38 +05:30
|
|
|
if (dest_exists) {
|
|
|
|
if (flags & FILEUTILS_UPDATE) {
|
|
|
|
if (source_stat.st_mtime <= dest_stat.st_mtime) {
|
|
|
|
return 0; /* source file must be newer */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#if ENABLE_FEATURE_CP_LONG_OPTIONS
|
|
|
|
if (flags & FILEUTILS_RMDEST) {
|
|
|
|
ovr = ask_and_unlink(dest, flags);
|
|
|
|
if (ovr <= 0)
|
|
|
|
return ovr;
|
|
|
|
dest_exists = 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2007-08-26 02:44:55 +05:30
|
|
|
if (flags & (FILEUTILS_MAKE_SOFTLINK|FILEUTILS_MAKE_HARDLINK)) {
|
2006-10-22 05:10:20 +05:30
|
|
|
int (*lf)(const char *oldpath, const char *newpath);
|
|
|
|
make_links:
|
2009-07-05 16:54:17 +05:30
|
|
|
/* Hmm... maybe
|
|
|
|
* if (DEREF && MAKE_SOFTLINK) source = realpath(source) ?
|
|
|
|
* (but realpath returns NULL on dangling symlinks...) */
|
2006-10-22 05:10:20 +05:30
|
|
|
lf = (flags & FILEUTILS_MAKE_SOFTLINK) ? symlink : link;
|
|
|
|
if (lf(source, dest) < 0) {
|
2007-03-15 19:03:37 +05:30
|
|
|
ovr = ask_and_unlink(dest, flags);
|
2006-10-22 05:10:20 +05:30
|
|
|
if (ovr <= 0)
|
|
|
|
return ovr;
|
|
|
|
if (lf(source, dest) < 0) {
|
2009-11-13 13:38:27 +05:30
|
|
|
bb_perror_msg("can't create link '%s'", dest);
|
2006-10-22 05:10:20 +05:30
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2007-08-26 02:44:55 +05:30
|
|
|
/* _Not_ jumping to preserve_mode_ugid_time:
|
2009-07-05 16:54:17 +05:30
|
|
|
* (sym)links don't have those */
|
2006-10-22 05:10:20 +05:30
|
|
|
return 0;
|
2007-08-26 02:44:55 +05:30
|
|
|
}
|
2006-10-22 05:10:20 +05:30
|
|
|
|
2008-03-28 23:19:31 +05:30
|
|
|
if (/* "cp thing1 thing2" without -R: just open and read() from thing1 */
|
|
|
|
!(flags & FILEUTILS_RECUR)
|
|
|
|
/* "cp [-opts] regular_file thing2" */
|
|
|
|
|| S_ISREG(source_stat.st_mode)
|
|
|
|
/* DEREF uses stat, which never returns S_ISLNK() == true.
|
|
|
|
* So the below is never true: */
|
2007-03-15 19:03:37 +05:30
|
|
|
/* || (FLAGS_DEREF && S_ISLNK(source_stat.st_mode)) */
|
2006-10-22 05:10:20 +05:30
|
|
|
) {
|
2003-12-20 10:08:01 +05:30
|
|
|
int src_fd;
|
|
|
|
int dst_fd;
|
2008-03-28 23:19:31 +05:30
|
|
|
mode_t new_mode;
|
|
|
|
|
|
|
|
if (!FLAGS_DEREF && S_ISLNK(source_stat.st_mode)) {
|
|
|
|
/* "cp -d symlink dst": create a link */
|
|
|
|
goto dont_cat;
|
|
|
|
}
|
2007-08-26 02:44:55 +05:30
|
|
|
|
|
|
|
if (ENABLE_FEATURE_PRESERVE_HARDLINKS && !FLAGS_DEREF) {
|
2007-08-27 22:32:19 +05:30
|
|
|
const char *link_target;
|
2007-08-26 02:44:55 +05:30
|
|
|
link_target = is_in_ino_dev_hashtable(&source_stat);
|
|
|
|
if (link_target) {
|
|
|
|
if (link(link_target, dest) < 0) {
|
|
|
|
ovr = ask_and_unlink(dest, flags);
|
|
|
|
if (ovr <= 0)
|
|
|
|
return ovr;
|
2007-06-20 20:19:47 +05:30
|
|
|
if (link(link_target, dest) < 0) {
|
2009-11-13 13:38:27 +05:30
|
|
|
bb_perror_msg("can't create link '%s'", dest);
|
2007-08-26 02:44:55 +05:30
|
|
|
return -1;
|
2006-10-22 05:10:20 +05:30
|
|
|
}
|
2006-06-25 02:57:36 +05:30
|
|
|
}
|
2007-08-26 02:44:55 +05:30
|
|
|
return 0;
|
2006-06-25 02:57:36 +05:30
|
|
|
}
|
|
|
|
add_to_ino_dev_hashtable(&source_stat, dest);
|
2001-12-17 20:56:36 +05:30
|
|
|
}
|
2006-10-22 05:10:20 +05:30
|
|
|
|
2007-04-12 04:50:53 +05:30
|
|
|
src_fd = open_or_warn(source, O_RDONLY);
|
2007-08-26 02:44:55 +05:30
|
|
|
if (src_fd < 0)
|
2006-10-22 05:10:20 +05:30
|
|
|
return -1;
|
2001-12-11 22:13:48 +05:30
|
|
|
|
2008-03-28 23:19:31 +05:30
|
|
|
/* Do not try to open with weird mode fields */
|
|
|
|
new_mode = source_stat.st_mode;
|
|
|
|
if (!S_ISREG(source_stat.st_mode))
|
|
|
|
new_mode = 0666;
|
|
|
|
|
2016-08-14 02:53:48 +05:30
|
|
|
if (ENABLE_FEATURE_NON_POSIX_CP || (flags & FILEUTILS_INTERACTIVE)) {
|
|
|
|
/*
|
|
|
|
* O_CREAT|O_EXCL: require that file did not exist before creation
|
|
|
|
*/
|
2008-03-28 23:19:31 +05:30
|
|
|
dst_fd = open(dest, O_WRONLY|O_CREAT|O_EXCL, new_mode);
|
2016-08-14 02:53:48 +05:30
|
|
|
} else { /* POSIX, and not "cp -i" */
|
|
|
|
/*
|
|
|
|
* O_CREAT|O_TRUNC: create, or truncate (security problem versus (sym)link attacks)
|
|
|
|
*/
|
|
|
|
dst_fd = open(dest, O_WRONLY|O_CREAT|O_TRUNC, new_mode);
|
2009-07-05 16:54:17 +05:30
|
|
|
}
|
2006-10-22 05:10:20 +05:30
|
|
|
if (dst_fd == -1) {
|
2007-03-15 19:03:37 +05:30
|
|
|
ovr = ask_and_unlink(dest, flags);
|
2006-10-22 05:10:20 +05:30
|
|
|
if (ovr <= 0) {
|
|
|
|
close(src_fd);
|
|
|
|
return ovr;
|
2001-04-11 21:53:35 +05:30
|
|
|
}
|
2007-03-15 19:03:37 +05:30
|
|
|
/* It shouldn't exist. If it exists, do not open (symlink attack?) */
|
2008-03-28 23:19:31 +05:30
|
|
|
dst_fd = open3_or_warn(dest, O_WRONLY|O_CREAT|O_EXCL, new_mode);
|
2007-04-12 04:50:53 +05:30
|
|
|
if (dst_fd < 0) {
|
2003-12-20 10:08:01 +05:30
|
|
|
close(src_fd);
|
2006-10-22 05:10:20 +05:30
|
|
|
return -1;
|
2001-04-11 21:53:35 +05:30
|
|
|
}
|
2001-03-17 04:17:14 +05:30
|
|
|
}
|
|
|
|
|
2007-03-10 22:28:49 +05:30
|
|
|
#if ENABLE_SELINUX
|
2008-03-28 23:19:31 +05:30
|
|
|
if ((flags & (FILEUTILS_PRESERVE_SECURITY_CONTEXT|FILEUTILS_SET_SECURITY_CONTEXT))
|
2007-03-15 19:03:37 +05:30
|
|
|
&& is_selinux_enabled() > 0
|
|
|
|
) {
|
2007-03-20 17:00:28 +05:30
|
|
|
security_context_t con;
|
2007-03-10 22:28:49 +05:30
|
|
|
if (getfscreatecon(&con) == -1) {
|
|
|
|
bb_perror_msg("getfscreatecon");
|
|
|
|
return -1;
|
2007-03-20 17:00:28 +05:30
|
|
|
}
|
2007-03-10 22:28:49 +05:30
|
|
|
if (con) {
|
2007-04-12 06:02:05 +05:30
|
|
|
if (setfilecon(dest, con) == -1) {
|
2007-03-10 22:28:49 +05:30
|
|
|
bb_perror_msg("setfilecon:%s,%s", dest, con);
|
|
|
|
freecon(con);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
freecon(con);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2003-12-20 10:08:01 +05:30
|
|
|
if (bb_copyfd_eof(src_fd, dst_fd) == -1)
|
2007-08-26 02:44:55 +05:30
|
|
|
retval = -1;
|
2010-02-07 01:41:49 +05:30
|
|
|
/* Careful with writing... */
|
2003-12-20 10:08:01 +05:30
|
|
|
if (close(dst_fd) < 0) {
|
2010-02-07 01:41:49 +05:30
|
|
|
bb_perror_msg("error writing to '%s'", dest);
|
2007-08-26 02:44:55 +05:30
|
|
|
retval = -1;
|
2001-04-11 21:53:35 +05:30
|
|
|
}
|
2007-08-27 22:21:30 +05:30
|
|
|
/* ...but read size is already checked by bb_copyfd_eof */
|
|
|
|
close(src_fd);
|
2008-03-28 23:19:31 +05:30
|
|
|
/* "cp /dev/something new_file" should not
|
|
|
|
* copy mode of /dev/something */
|
|
|
|
if (!S_ISREG(source_stat.st_mode))
|
|
|
|
return retval;
|
2007-08-26 02:44:55 +05:30
|
|
|
goto preserve_mode_ugid_time;
|
|
|
|
}
|
2008-03-28 23:19:31 +05:30
|
|
|
dont_cat:
|
2002-09-16 14:53:22 +05:30
|
|
|
|
2007-08-26 02:44:55 +05:30
|
|
|
/* Source is a symlink or a special file */
|
|
|
|
/* We are lazy here, a bit lax with races... */
|
|
|
|
if (dest_exists) {
|
|
|
|
errno = EEXIST;
|
|
|
|
ovr = ask_and_unlink(dest, flags);
|
|
|
|
if (ovr <= 0)
|
|
|
|
return ovr;
|
|
|
|
}
|
|
|
|
if (S_ISLNK(source_stat.st_mode)) {
|
2007-08-27 22:21:30 +05:30
|
|
|
char *lpath = xmalloc_readlink_or_warn(source);
|
|
|
|
if (lpath) {
|
|
|
|
int r = symlink(lpath, dest);
|
2005-11-02 03:25:14 +05:30
|
|
|
free(lpath);
|
2007-08-27 22:21:30 +05:30
|
|
|
if (r < 0) {
|
2009-11-13 13:38:27 +05:30
|
|
|
bb_perror_msg("can't create symlink '%s'", dest);
|
2007-08-27 22:21:30 +05:30
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (flags & FILEUTILS_PRESERVE_STATUS)
|
|
|
|
if (lchown(dest, source_stat.st_uid, source_stat.st_gid) < 0)
|
2009-11-13 13:38:27 +05:30
|
|
|
bb_perror_msg("can't preserve %s of '%s'", "ownership", dest);
|
2007-08-26 02:44:55 +05:30
|
|
|
}
|
|
|
|
/* _Not_ jumping to preserve_mode_ugid_time:
|
|
|
|
* symlinks don't have those */
|
2016-07-15 00:28:39 +05:30
|
|
|
goto verb_and_exit;
|
2007-08-26 02:44:55 +05:30
|
|
|
}
|
|
|
|
if (S_ISBLK(source_stat.st_mode) || S_ISCHR(source_stat.st_mode)
|
|
|
|
|| S_ISSOCK(source_stat.st_mode) || S_ISFIFO(source_stat.st_mode)
|
|
|
|
) {
|
|
|
|
if (mknod(dest, source_stat.st_mode, source_stat.st_rdev) < 0) {
|
2009-11-13 13:38:27 +05:30
|
|
|
bb_perror_msg("can't create '%s'", dest);
|
2007-08-26 02:44:55 +05:30
|
|
|
return -1;
|
2005-11-02 03:25:14 +05:30
|
|
|
}
|
|
|
|
} else {
|
2007-08-26 02:44:55 +05:30
|
|
|
bb_error_msg("unrecognized file '%s' with mode %x", source, source_stat.st_mode);
|
2005-11-02 03:25:14 +05:30
|
|
|
return -1;
|
2004-04-19 17:58:02 +05:30
|
|
|
}
|
2001-12-17 20:56:36 +05:30
|
|
|
|
2007-08-26 02:44:55 +05:30
|
|
|
preserve_mode_ugid_time:
|
2001-03-17 04:17:14 +05:30
|
|
|
|
2006-10-22 05:10:20 +05:30
|
|
|
if (flags & FILEUTILS_PRESERVE_STATUS
|
|
|
|
/* Cannot happen: */
|
|
|
|
/* && !(flags & (FILEUTILS_MAKE_SOFTLINK|FILEUTILS_MAKE_HARDLINK)) */
|
|
|
|
) {
|
2009-11-30 00:10:36 +05:30
|
|
|
struct timeval times[2];
|
2009-11-15 06:58:56 +05:30
|
|
|
|
2009-11-30 00:10:36 +05:30
|
|
|
times[1].tv_sec = times[0].tv_sec = source_stat.st_mtime;
|
|
|
|
times[1].tv_usec = times[0].tv_usec = 0;
|
2007-08-27 22:21:30 +05:30
|
|
|
/* BTW, utimes sets usec-precision time - just FYI */
|
2009-11-30 00:10:36 +05:30
|
|
|
if (utimes(dest, times) < 0)
|
2009-11-13 13:38:27 +05:30
|
|
|
bb_perror_msg("can't preserve %s of '%s'", "times", dest);
|
2001-04-24 00:23:07 +05:30
|
|
|
if (chown(dest, source_stat.st_uid, source_stat.st_gid) < 0) {
|
|
|
|
source_stat.st_mode &= ~(S_ISUID | S_ISGID);
|
2009-11-13 13:38:27 +05:30
|
|
|
bb_perror_msg("can't preserve %s of '%s'", "ownership", dest);
|
2001-04-24 00:23:07 +05:30
|
|
|
}
|
|
|
|
if (chmod(dest, source_stat.st_mode) < 0)
|
2009-11-13 13:38:27 +05:30
|
|
|
bb_perror_msg("can't preserve %s of '%s'", "permissions", dest);
|
2001-04-24 00:23:07 +05:30
|
|
|
}
|
2001-03-17 04:17:14 +05:30
|
|
|
|
2016-07-15 00:28:39 +05:30
|
|
|
verb_and_exit:
|
2014-05-19 19:53:50 +05:30
|
|
|
if (flags & FILEUTILS_VERBOSE) {
|
|
|
|
printf("'%s' -> '%s'\n", source, dest);
|
|
|
|
}
|
|
|
|
|
2007-08-26 02:44:55 +05:30
|
|
|
return retval;
|
2001-04-24 00:23:07 +05:30
|
|
|
}
|