2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-19 00:32:32 +05:30
|
|
|
/*
|
|
|
|
* Mini rm implementation for busybox
|
|
|
|
*
|
1999-10-21 03:38:37 +05:30
|
|
|
*
|
2001-01-27 15:03:39 +05:30
|
|
|
* Copyright (C) 1999,2000,2001 by Lineo, inc.
|
1999-10-21 03:38:37 +05:30
|
|
|
* Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
|
1999-10-19 00:32:32 +05:30
|
|
|
*
|
2001-03-13 22:05:55 +05:30
|
|
|
* INTERACTIVE feature Copyright (C) 2001 by Alcove
|
|
|
|
* written by Christophe Boyanique <Christophe.Boyanique@fr.alcove.com>
|
|
|
|
* for Ipanema Technologies
|
|
|
|
*
|
1999-10-19 00:32:32 +05:30
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <utime.h>
|
|
|
|
#include <dirent.h>
|
1999-11-15 23:03:30 +05:30
|
|
|
#include <errno.h>
|
2001-01-27 13:54:39 +05:30
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
2001-03-20 00:22:37 +05:30
|
|
|
#include <getopt.h>
|
2001-02-20 11:44:08 +05:30
|
|
|
#include "busybox.h"
|
1999-10-19 00:32:32 +05:30
|
|
|
|
|
|
|
static int recursiveFlag = FALSE;
|
|
|
|
static int forceFlag = FALSE;
|
2001-03-13 06:10:19 +05:30
|
|
|
#ifdef BB_FEATURE_RM_INTERACTIVE
|
|
|
|
static int interactiveFlag = FALSE;
|
|
|
|
#endif
|
1999-10-19 00:32:32 +05:30
|
|
|
static const char *srcName;
|
|
|
|
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2000-03-28 06:28:14 +05:30
|
|
|
static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
|
1999-10-19 00:32:32 +05:30
|
|
|
{
|
2001-03-13 06:10:19 +05:30
|
|
|
#ifdef BB_FEATURE_RM_INTERACTIVE
|
|
|
|
if (interactiveFlag == TRUE) {
|
|
|
|
printf("rm: remove `%s'? ", fileName);
|
|
|
|
if (ask_confirmation() == 0)
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
#endif
|
2000-02-09 01:28:47 +05:30
|
|
|
if (unlink(fileName) < 0) {
|
2000-12-08 01:26:48 +05:30
|
|
|
perror_msg("%s", fileName);
|
2000-02-09 01:28:47 +05:30
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
return (TRUE);
|
1999-10-19 00:32:32 +05:30
|
|
|
}
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2000-03-28 06:28:14 +05:30
|
|
|
static int dirAction(const char *fileName, struct stat *statbuf, void* junk)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2000-09-21 04:40:21 +05:30
|
|
|
if (recursiveFlag == FALSE) {
|
|
|
|
errno = EISDIR;
|
2000-12-08 01:26:48 +05:30
|
|
|
perror_msg("%s", fileName);
|
2000-09-21 04:40:21 +05:30
|
|
|
return (FALSE);
|
|
|
|
}
|
2001-03-13 06:10:19 +05:30
|
|
|
#ifdef BB_FEATURE_RM_INTERACTIVE
|
|
|
|
if (interactiveFlag == TRUE) {
|
|
|
|
printf("rm: remove directory `%s'? ", fileName);
|
|
|
|
if (ask_confirmation() == 0)
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
#endif
|
2000-02-09 01:28:47 +05:30
|
|
|
if (rmdir(fileName) < 0) {
|
2000-12-08 01:26:48 +05:30
|
|
|
perror_msg("%s", fileName);
|
2000-02-09 01:28:47 +05:30
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
return (TRUE);
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
1999-10-19 00:32:32 +05:30
|
|
|
extern int rm_main(int argc, char **argv)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2001-03-20 00:22:37 +05:30
|
|
|
int opt;
|
2000-12-05 10:41:41 +05:30
|
|
|
int status = EXIT_SUCCESS;
|
2000-02-09 01:28:47 +05:30
|
|
|
struct stat statbuf;
|
2001-03-20 00:22:37 +05:30
|
|
|
|
|
|
|
|
|
|
|
/* do normal option parsing */
|
|
|
|
while ((opt = getopt(argc, argv, "Rrf-"
|
2001-03-13 06:10:19 +05:30
|
|
|
#ifdef BB_FEATURE_RM_INTERACTIVE
|
2001-03-20 00:22:37 +05:30
|
|
|
"i"
|
2001-03-13 06:10:19 +05:30
|
|
|
#endif
|
2001-03-20 00:22:37 +05:30
|
|
|
)) > 0) {
|
|
|
|
switch (opt) {
|
|
|
|
case 'R':
|
|
|
|
case 'r':
|
|
|
|
recursiveFlag = TRUE;
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
forceFlag = TRUE;
|
|
|
|
break;
|
|
|
|
#ifdef BB_FEATURE_RM_INTERACTIVE
|
2001-03-20 00:29:01 +05:30
|
|
|
case 'i':
|
2001-03-20 00:22:37 +05:30
|
|
|
interactiveFlag = TRUE;
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
show_usage();
|
2000-06-06 21:45:23 +05:30
|
|
|
}
|
2000-06-14 23:09:41 +05:30
|
|
|
}
|
2001-03-20 00:22:37 +05:30
|
|
|
|
2001-03-20 01:10:43 +05:30
|
|
|
if (argc == optind && forceFlag == FALSE) {
|
2001-02-15 02:53:06 +05:30
|
|
|
show_usage();
|
1999-11-15 23:03:30 +05:30
|
|
|
}
|
2001-03-20 00:24:38 +05:30
|
|
|
#ifdef BB_FEATURE_RM_INTERACTIVE
|
|
|
|
if (forceFlag == TRUE)
|
|
|
|
interactiveFlag = FALSE;
|
|
|
|
#endif
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2001-03-20 00:22:37 +05:30
|
|
|
while (optind < argc) {
|
|
|
|
srcName = argv[optind];
|
2000-02-09 01:28:47 +05:30
|
|
|
if (forceFlag == TRUE && lstat(srcName, &statbuf) != 0
|
|
|
|
&& errno == ENOENT) {
|
|
|
|
/* do not reports errors for non-existent files if -f, just skip them */
|
|
|
|
} else {
|
2000-12-08 01:26:48 +05:30
|
|
|
if (recursive_action(srcName, recursiveFlag, FALSE,
|
2000-03-28 06:28:14 +05:30
|
|
|
TRUE, fileAction, dirAction, NULL) == FALSE) {
|
2000-12-05 10:41:41 +05:30
|
|
|
status = EXIT_FAILURE;
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
|
|
|
}
|
2001-03-20 00:22:37 +05:30
|
|
|
optind++;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
2000-12-05 10:41:41 +05:30
|
|
|
return status;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|