2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2000-02-07 05:29:42 +00:00
|
|
|
/*
|
|
|
|
* Mini `cp' and `mv' implementation for BusyBox.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999 by Lineo, inc.
|
|
|
|
* Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2000 by BitterSweet Enterprises, LLC. (GPL)
|
|
|
|
* Extensively modified and rewritten by Karl M. Hegbloom <karlheg@debian.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2000-09-25 21:45:58 +00:00
|
|
|
#include "busybox.h"
|
2000-02-07 05:29:42 +00:00
|
|
|
#define BB_DECLARE_EXTERN
|
|
|
|
#define bb_need_name_too_long
|
|
|
|
#define bb_need_omitting_directory
|
|
|
|
#define bb_need_not_a_directory
|
|
|
|
#include "messages.c"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <utime.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <sys/param.h>
|
2000-04-13 01:18:56 +00:00
|
|
|
#include <setjmp.h>
|
2000-03-04 21:19:32 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
2000-07-13 18:42:58 +00:00
|
|
|
#include <getopt.h>
|
2000-02-07 05:29:42 +00:00
|
|
|
|
|
|
|
#define is_cp 0
|
|
|
|
#define is_mv 1
|
2000-03-04 21:19:32 +00:00
|
|
|
static int dz_i; /* index into cp_mv_usage */
|
2000-07-14 23:28:47 +00:00
|
|
|
|
|
|
|
static const char *cp_mv_usage[] = /* .rodata */
|
|
|
|
{
|
|
|
|
cp_usage,
|
|
|
|
mv_usage
|
2000-02-07 05:29:42 +00:00
|
|
|
};
|
|
|
|
|
2000-03-04 21:19:32 +00:00
|
|
|
static int recursiveFlag;
|
|
|
|
static int followLinks;
|
|
|
|
static int preserveFlag;
|
2000-05-10 05:05:45 +00:00
|
|
|
static int forceFlag;
|
2000-03-04 21:19:32 +00:00
|
|
|
|
|
|
|
static const char *baseSrcName;
|
|
|
|
static int srcDirFlag;
|
|
|
|
static struct stat srcStatBuf;
|
|
|
|
|
2000-04-28 00:18:56 +00:00
|
|
|
static char baseDestName[BUFSIZ + 1];
|
2000-03-04 21:19:32 +00:00
|
|
|
static size_t baseDestLen;
|
|
|
|
static int destDirFlag;
|
|
|
|
static struct stat destStatBuf;
|
|
|
|
|
|
|
|
static jmp_buf catch;
|
|
|
|
static volatile int mv_Action_first_time;
|
|
|
|
|
|
|
|
static void name_too_long__exit (void) __attribute__((noreturn));
|
|
|
|
|
|
|
|
static
|
|
|
|
void name_too_long__exit (void)
|
2000-02-07 05:29:42 +00:00
|
|
|
{
|
2000-07-14 01:51:25 +00:00
|
|
|
fatalError(name_too_long);
|
2000-03-04 21:19:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
fill_baseDest_buf(char *_buf, size_t * _buflen) {
|
|
|
|
const char *srcBasename;
|
|
|
|
if ((srcBasename = strrchr(baseSrcName, '/')) == NULL) {
|
|
|
|
srcBasename = baseSrcName;
|
|
|
|
if (_buf[*_buflen - 1] != '/') {
|
2000-04-28 00:18:56 +00:00
|
|
|
if (++(*_buflen) > BUFSIZ)
|
2000-03-04 21:19:32 +00:00
|
|
|
name_too_long__exit();
|
|
|
|
strcat(_buf, "/");
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
|
|
|
}
|
2000-04-28 00:18:56 +00:00
|
|
|
if (*_buflen + strlen(srcBasename) > BUFSIZ)
|
2000-03-04 21:19:32 +00:00
|
|
|
name_too_long__exit();
|
|
|
|
strcat(_buf, srcBasename);
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
2000-02-07 05:29:42 +00:00
|
|
|
|
2000-03-04 21:19:32 +00:00
|
|
|
static int
|
2000-03-28 00:58:14 +00:00
|
|
|
cp_mv_Action(const char *fileName, struct stat *statbuf, void* junk)
|
2000-03-04 21:19:32 +00:00
|
|
|
{
|
2000-04-28 00:18:56 +00:00
|
|
|
char destName[BUFSIZ + 1];
|
2000-03-04 21:19:32 +00:00
|
|
|
size_t destLen;
|
|
|
|
const char *srcBasename;
|
|
|
|
char *name;
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2000-03-04 21:19:32 +00:00
|
|
|
strcpy(destName, baseDestName);
|
|
|
|
destLen = strlen(destName);
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2000-03-04 21:19:32 +00:00
|
|
|
if (srcDirFlag == TRUE) {
|
|
|
|
if (recursiveFlag == FALSE) {
|
2000-07-14 01:51:25 +00:00
|
|
|
errorMsg(omitting_directory, baseSrcName);
|
2000-03-04 21:19:32 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
srcBasename = (strstr(fileName, baseSrcName)
|
|
|
|
+ strlen(baseSrcName));
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2000-04-28 00:18:56 +00:00
|
|
|
if (destLen + strlen(srcBasename) > BUFSIZ) {
|
2000-07-14 01:51:25 +00:00
|
|
|
errorMsg(name_too_long);
|
2000-03-04 21:19:32 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
strcat(destName, srcBasename);
|
|
|
|
}
|
|
|
|
else if (destDirFlag == TRUE) {
|
|
|
|
fill_baseDest_buf(&destName[0], &destLen);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
srcBasename = baseSrcName;
|
|
|
|
}
|
|
|
|
if (mv_Action_first_time && (dz_i == is_mv)) {
|
|
|
|
mv_Action_first_time = errno = 0;
|
|
|
|
if (rename(fileName, destName) < 0 && errno != EXDEV) {
|
2000-07-14 01:51:25 +00:00
|
|
|
errorMsg("rename(%s, %s): %s\n", fileName, destName,
|
|
|
|
strerror(errno));
|
2000-03-04 21:19:32 +00:00
|
|
|
goto do_copyFile; /* Try anyway... */
|
|
|
|
}
|
|
|
|
else if (errno == EXDEV)
|
|
|
|
goto do_copyFile;
|
|
|
|
else
|
|
|
|
longjmp(catch, 1); /* succeeded with rename() */
|
|
|
|
}
|
|
|
|
do_copyFile:
|
|
|
|
if (preserveFlag == TRUE && statbuf->st_nlink > 1) {
|
|
|
|
if (is_in_ino_dev_hashtable(statbuf, &name)) {
|
|
|
|
if (link(name, destName) < 0) {
|
2000-07-14 01:51:25 +00:00
|
|
|
errorMsg("link(%s, %s): %s\n", name, destName, strerror(errno));
|
2000-02-11 21:55:04 +00:00
|
|
|
return FALSE;
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
2000-03-04 21:19:32 +00:00
|
|
|
return TRUE;
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
2000-03-04 21:19:32 +00:00
|
|
|
else {
|
|
|
|
add_to_ino_dev_hashtable(statbuf, destName);
|
2000-02-07 05:29:42 +00:00
|
|
|
}
|
|
|
|
}
|
2000-05-10 05:05:45 +00:00
|
|
|
return copyFile(fileName, destName, preserveFlag, followLinks, forceFlag);
|
2000-03-04 21:19:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2000-03-28 00:58:14 +00:00
|
|
|
rm_Action(const char *fileName, struct stat *statbuf, void* junk)
|
2000-03-04 21:19:32 +00:00
|
|
|
{
|
|
|
|
int status = TRUE;
|
2000-02-07 05:29:42 +00:00
|
|
|
|
2000-03-04 21:19:32 +00:00
|
|
|
if (S_ISDIR(statbuf->st_mode)) {
|
2000-02-08 19:58:47 +00:00
|
|
|
if (rmdir(fileName) < 0) {
|
2000-07-14 01:51:25 +00:00
|
|
|
errorMsg("rmdir(%s): %s\n", fileName, strerror(errno));
|
2000-03-04 21:19:32 +00:00
|
|
|
status = FALSE;
|
2000-02-07 05:29:42 +00:00
|
|
|
}
|
2000-03-04 21:19:32 +00:00
|
|
|
} else if (unlink(fileName) < 0) {
|
2000-07-14 01:51:25 +00:00
|
|
|
errorMsg("unlink(%s): %s\n", fileName, strerror(errno));
|
2000-03-04 21:19:32 +00:00
|
|
|
status = FALSE;
|
2000-02-07 05:29:42 +00:00
|
|
|
}
|
2000-03-04 21:19:32 +00:00
|
|
|
return status;
|
|
|
|
}
|
2000-02-07 05:29:42 +00:00
|
|
|
|
2000-03-04 21:19:32 +00:00
|
|
|
extern int cp_mv_main(int argc, char **argv)
|
|
|
|
{
|
2000-07-14 06:19:41 +00:00
|
|
|
volatile int i;
|
2000-07-14 15:18:57 +00:00
|
|
|
int c;
|
2000-07-13 18:42:58 +00:00
|
|
|
|
2000-07-12 00:53:06 +00:00
|
|
|
if (*applet_name == 'c' && *(applet_name + 1) == 'p')
|
2000-02-08 19:58:47 +00:00
|
|
|
dz_i = is_cp;
|
|
|
|
else
|
|
|
|
dz_i = is_mv;
|
|
|
|
if (argc < 3)
|
|
|
|
usage(cp_mv_usage[dz_i]);
|
|
|
|
|
|
|
|
if (dz_i == is_cp) {
|
2000-05-10 05:05:45 +00:00
|
|
|
recursiveFlag = preserveFlag = forceFlag = FALSE;
|
2000-02-08 19:58:47 +00:00
|
|
|
followLinks = TRUE;
|
2000-07-13 18:42:58 +00:00
|
|
|
while ((c = getopt(argc, argv, "adpRf")) != EOF) {
|
|
|
|
switch (c) {
|
2000-06-08 18:06:37 +00:00
|
|
|
case 'a':
|
|
|
|
followLinks = FALSE;
|
|
|
|
preserveFlag = TRUE;
|
|
|
|
recursiveFlag = TRUE;
|
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
followLinks = FALSE;
|
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
preserveFlag = TRUE;
|
|
|
|
break;
|
|
|
|
case 'R':
|
|
|
|
recursiveFlag = TRUE;
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
forceFlag = TRUE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage(cp_mv_usage[is_cp]);
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
2000-02-07 05:29:42 +00:00
|
|
|
}
|
2000-07-13 18:42:58 +00:00
|
|
|
if ((argc - optind) < 2) {
|
2000-06-08 18:06:37 +00:00
|
|
|
usage(cp_mv_usage[dz_i]);
|
2000-06-06 16:15:23 +00:00
|
|
|
}
|
2000-02-08 19:58:47 +00:00
|
|
|
} else { /* (dz_i == is_mv) */
|
2000-09-23 20:55:59 +00:00
|
|
|
/* Initialize optind to 1, since in libc5 optind
|
|
|
|
* is not initialized until getopt() is called
|
|
|
|
* (or until sneaky programmers force it...). */
|
|
|
|
optind = 1;
|
2000-02-08 19:58:47 +00:00
|
|
|
recursiveFlag = preserveFlag = TRUE;
|
|
|
|
followLinks = FALSE;
|
|
|
|
}
|
2000-06-06 16:15:23 +00:00
|
|
|
|
2000-02-07 05:29:42 +00:00
|
|
|
|
2000-04-28 00:18:56 +00:00
|
|
|
if (strlen(argv[argc - 1]) > BUFSIZ) {
|
2000-07-14 01:51:25 +00:00
|
|
|
errorMsg(name_too_long);
|
2000-02-08 19:58:47 +00:00
|
|
|
goto exit_false;
|
|
|
|
}
|
|
|
|
strcpy(baseDestName, argv[argc - 1]);
|
|
|
|
baseDestLen = strlen(baseDestName);
|
|
|
|
if (baseDestLen == 0)
|
|
|
|
goto exit_false;
|
|
|
|
|
2000-02-11 21:55:04 +00:00
|
|
|
destDirFlag = isDirectory(baseDestName, TRUE, &destStatBuf);
|
2000-08-06 15:36:50 +00:00
|
|
|
if (argc - optind > 2 && destDirFlag == FALSE) {
|
2000-07-14 01:51:25 +00:00
|
|
|
errorMsg(not_a_directory, baseDestName);
|
2000-02-08 19:58:47 +00:00
|
|
|
goto exit_false;
|
|
|
|
}
|
2000-02-07 05:29:42 +00:00
|
|
|
|
2000-07-13 18:42:58 +00:00
|
|
|
for (i = optind; i < (argc-1); i++) {
|
2000-02-08 19:58:47 +00:00
|
|
|
size_t srcLen;
|
2000-03-04 21:19:32 +00:00
|
|
|
volatile int flags_memo;
|
|
|
|
int status;
|
2000-02-07 05:29:42 +00:00
|
|
|
|
2000-07-13 18:42:58 +00:00
|
|
|
baseSrcName=argv[i];
|
2000-02-07 05:29:42 +00:00
|
|
|
|
2000-04-28 00:18:56 +00:00
|
|
|
if ((srcLen = strlen(baseSrcName)) > BUFSIZ)
|
2000-03-04 21:19:32 +00:00
|
|
|
name_too_long__exit();
|
2000-02-07 05:29:42 +00:00
|
|
|
|
2000-03-04 21:19:32 +00:00
|
|
|
if (srcLen == 0) continue; /* "" */
|
2000-02-07 05:29:42 +00:00
|
|
|
|
2000-02-11 21:55:04 +00:00
|
|
|
srcDirFlag = isDirectory(baseSrcName, followLinks, &srcStatBuf);
|
2000-02-07 05:29:42 +00:00
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
if ((flags_memo = (recursiveFlag == TRUE &&
|
|
|
|
srcDirFlag == TRUE && destDirFlag == TRUE))) {
|
2000-03-04 21:19:32 +00:00
|
|
|
|
|
|
|
struct stat sb;
|
|
|
|
int state = 0;
|
|
|
|
char *pushd, *d, *p;
|
|
|
|
|
2000-04-28 00:18:56 +00:00
|
|
|
if ((pushd = getcwd(NULL, BUFSIZ + 1)) == NULL) {
|
2000-07-14 01:51:25 +00:00
|
|
|
errorMsg("getcwd(): %s\n", strerror(errno));
|
2000-03-04 21:19:32 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (chdir(baseDestName) < 0) {
|
2000-07-14 01:51:25 +00:00
|
|
|
errorMsg("chdir(%s): %s\n", baseSrcName, strerror(errno));
|
2000-03-04 21:19:32 +00:00
|
|
|
continue;
|
|
|
|
}
|
2000-04-28 00:18:56 +00:00
|
|
|
if ((d = getcwd(NULL, BUFSIZ + 1)) == NULL) {
|
2000-07-14 01:51:25 +00:00
|
|
|
errorMsg("getcwd(): %s\n", strerror(errno));
|
2000-03-04 21:19:32 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
while (!state && *d != '\0') {
|
|
|
|
if (stat(d, &sb) < 0) { /* stat not lstat - always dereference targets */
|
2000-07-14 01:51:25 +00:00
|
|
|
errorMsg("stat(%s): %s\n", d, strerror(errno));
|
2000-03-04 21:19:32 +00:00
|
|
|
state = -1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if ((sb.st_ino == srcStatBuf.st_ino) &&
|
|
|
|
(sb.st_dev == srcStatBuf.st_dev)) {
|
2000-07-14 01:51:25 +00:00
|
|
|
errorMsg("Cannot %s `%s' into a subdirectory of itself, "
|
|
|
|
"`%s/%s'\n", applet_name, baseSrcName,
|
|
|
|
baseDestName, baseSrcName);
|
2000-03-04 21:19:32 +00:00
|
|
|
state = -1;
|
|
|
|
continue;
|
2000-02-11 21:55:04 +00:00
|
|
|
}
|
2000-03-04 21:19:32 +00:00
|
|
|
if ((p = strrchr(d, '/')) != NULL) {
|
|
|
|
*p = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (chdir(pushd) < 0) {
|
2000-07-14 01:51:25 +00:00
|
|
|
errorMsg("chdir(%s): %s\n", pushd, strerror(errno));
|
2000-03-04 21:19:32 +00:00
|
|
|
free(pushd);
|
|
|
|
free(d);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
free(pushd);
|
|
|
|
free(d);
|
|
|
|
if (state < 0)
|
|
|
|
continue;
|
|
|
|
else
|
2000-02-11 21:55:04 +00:00
|
|
|
fill_baseDest_buf(baseDestName, &baseDestLen);
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
2000-03-04 21:19:32 +00:00
|
|
|
status = setjmp(catch);
|
|
|
|
if (status == 0) {
|
|
|
|
mv_Action_first_time = 1;
|
|
|
|
if (recursiveAction(baseSrcName,
|
|
|
|
recursiveFlag, followLinks, FALSE,
|
2000-03-28 00:58:14 +00:00
|
|
|
cp_mv_Action, cp_mv_Action, NULL) == FALSE) goto exit_false;
|
2000-03-04 21:19:32 +00:00
|
|
|
if (dz_i == is_mv &&
|
|
|
|
recursiveAction(baseSrcName,
|
|
|
|
recursiveFlag, followLinks, TRUE,
|
2000-03-28 00:58:14 +00:00
|
|
|
rm_Action, rm_Action, NULL) == FALSE) goto exit_false;
|
2000-03-04 21:19:32 +00:00
|
|
|
}
|
2000-02-08 19:58:47 +00:00
|
|
|
if (flags_memo)
|
|
|
|
*(baseDestName + baseDestLen) = '\0';
|
2000-02-07 05:29:42 +00:00
|
|
|
}
|
2000-12-01 02:55:13 +00:00
|
|
|
return EXIT_SUCCESS;
|
2000-03-04 21:19:32 +00:00
|
|
|
exit_false:
|
2000-12-01 02:55:13 +00:00
|
|
|
return EXIT_FAILURE;
|
2000-02-07 05:29:42 +00:00
|
|
|
}
|
|
|
|
|
2000-03-04 21:19:32 +00:00
|
|
|
/*
|
|
|
|
Local Variables:
|
|
|
|
c-file-style: "linux"
|
|
|
|
c-basic-offset: 4
|
|
|
|
tab-width: 4
|
|
|
|
End:
|
|
|
|
*/
|