blob: f1152eab37389cba7ad6f79bdb37275c124cce4f [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersenbed30e91999-10-18 19:02:32 +00002/*
3 * Mini rm implementation for busybox
4 *
Eric Andersenc4996011999-10-20 22:08:37 +00005 *
Eric Andersen8ec10a92001-01-27 09:33:39 +00006 * Copyright (C) 1999,2000,2001 by Lineo, inc.
Eric Andersenc4996011999-10-20 22:08:37 +00007 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
Eric Andersenbed30e91999-10-18 19:02:32 +00008 *
Mark Whitleyf6ba2da2001-03-13 16:35:55 +00009 * INTERACTIVE feature Copyright (C) 2001 by Alcove
10 * written by Christophe Boyanique <Christophe.Boyanique@fr.alcove.com>
11 * for Ipanema Technologies
12 *
Eric Andersenbed30e91999-10-18 19:02:32 +000013 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 * General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 *
27 */
28
Eric Andersenbed30e91999-10-18 19:02:32 +000029#include <stdio.h>
30#include <time.h>
31#include <utime.h>
32#include <dirent.h>
Eric Andersena9c95ea1999-11-15 17:33:30 +000033#include <errno.h>
Eric Andersened3ef502001-01-27 08:24:39 +000034#include <unistd.h>
35#include <stdlib.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000036#include "busybox.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000037
Eric Andersenbed30e91999-10-18 19:02:32 +000038static int recursiveFlag = FALSE;
39static int forceFlag = FALSE;
Mark Whitleye0bf91d2001-03-13 00:40:19 +000040#ifdef BB_FEATURE_RM_INTERACTIVE
41 static int interactiveFlag = FALSE;
42#endif
Eric Andersenbed30e91999-10-18 19:02:32 +000043static const char *srcName;
44
45
Erik Andersen3364d782000-03-28 00:58:14 +000046static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
Eric Andersencc8ed391999-10-05 16:24:54 +000047{
Mark Whitleye0bf91d2001-03-13 00:40:19 +000048#ifdef BB_FEATURE_RM_INTERACTIVE
49 if (interactiveFlag == TRUE) {
50 printf("rm: remove `%s'? ", fileName);
51 if (ask_confirmation() == 0)
52 return (TRUE);
53 }
54#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +000055 if (unlink(fileName) < 0) {
Mark Whitleyf57c9442000-12-07 19:56:48 +000056 perror_msg("%s", fileName);
Erik Andersene49d5ec2000-02-08 19:58:47 +000057 return (FALSE);
58 }
59 return (TRUE);
Eric Andersencc8ed391999-10-05 16:24:54 +000060}
61
Erik Andersen3364d782000-03-28 00:58:14 +000062static int dirAction(const char *fileName, struct stat *statbuf, void* junk)
Eric Andersencc8ed391999-10-05 16:24:54 +000063{
Matt Kraai7c22b772000-09-20 23:10:21 +000064 if (recursiveFlag == FALSE) {
65 errno = EISDIR;
Mark Whitleyf57c9442000-12-07 19:56:48 +000066 perror_msg("%s", fileName);
Matt Kraai7c22b772000-09-20 23:10:21 +000067 return (FALSE);
68 }
Mark Whitleye0bf91d2001-03-13 00:40:19 +000069#ifdef BB_FEATURE_RM_INTERACTIVE
70 if (interactiveFlag == TRUE) {
71 printf("rm: remove directory `%s'? ", fileName);
72 if (ask_confirmation() == 0)
73 return (TRUE);
74 }
75#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +000076 if (rmdir(fileName) < 0) {
Mark Whitleyf57c9442000-12-07 19:56:48 +000077 perror_msg("%s", fileName);
Erik Andersene49d5ec2000-02-08 19:58:47 +000078 return (FALSE);
79 }
80 return (TRUE);
Eric Andersenbed30e91999-10-18 19:02:32 +000081}
82
83extern int rm_main(int argc, char **argv)
84{
Matt Kraaid27753a2000-12-05 05:11:41 +000085 int status = EXIT_SUCCESS;
Eric Andersen815e9042000-06-06 16:15:23 +000086 int stopIt=FALSE;
Erik Andersene49d5ec2000-02-08 19:58:47 +000087 struct stat statbuf;
Eric Andersenbed30e91999-10-18 19:02:32 +000088
Pavel Roskine97da402000-06-14 17:39:41 +000089 argc--;
Eric Andersenbed30e91999-10-18 19:02:32 +000090 argv++;
Eric Andersenbed30e91999-10-18 19:02:32 +000091
Erik Andersene49d5ec2000-02-08 19:58:47 +000092 /* Parse any options */
Pavel Roskine97da402000-06-14 17:39:41 +000093 while (argc > 0 && stopIt == FALSE) {
94 if (**argv == '-') {
Eric Andersen815e9042000-06-06 16:15:23 +000095 while (*++(*argv))
96 switch (**argv) {
97 case 'R':
98 case 'r':
99 recursiveFlag = TRUE;
100 break;
101 case 'f':
102 forceFlag = TRUE;
Mark Whitleye0bf91d2001-03-13 00:40:19 +0000103#ifdef BB_FEATURE_RM_INTERACTIVE
104 interactiveFlag = FALSE;
105#endif
106 break;
107 case 'i':
108#ifdef BB_FEATURE_RM_INTERACTIVE
109 interactiveFlag = TRUE;
110#endif
Eric Andersen815e9042000-06-06 16:15:23 +0000111 break;
112 case '-':
113 stopIt = TRUE;
114 break;
115 default:
Eric Andersen67991cf2001-02-14 21:23:06 +0000116 show_usage();
Eric Andersen815e9042000-06-06 16:15:23 +0000117 }
Pavel Roskine97da402000-06-14 17:39:41 +0000118 argc--;
119 argv++;
Eric Andersen815e9042000-06-06 16:15:23 +0000120 }
Pavel Roskine97da402000-06-14 17:39:41 +0000121 else
122 break;
123 }
124
125 if (argc < 1 && forceFlag == FALSE) {
Eric Andersen67991cf2001-02-14 21:23:06 +0000126 show_usage();
Eric Andersena9c95ea1999-11-15 17:33:30 +0000127 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000128
129 while (argc-- > 0) {
130 srcName = *(argv++);
131 if (forceFlag == TRUE && lstat(srcName, &statbuf) != 0
132 && errno == ENOENT) {
133 /* do not reports errors for non-existent files if -f, just skip them */
134 } else {
Mark Whitleyf57c9442000-12-07 19:56:48 +0000135 if (recursive_action(srcName, recursiveFlag, FALSE,
Erik Andersen3364d782000-03-28 00:58:14 +0000136 TRUE, fileAction, dirAction, NULL) == FALSE) {
Matt Kraaid27753a2000-12-05 05:11:41 +0000137 status = EXIT_FAILURE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000138 }
139 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000140 }
Matt Kraaid27753a2000-12-05 05:11:41 +0000141 return status;
Eric Andersencc8ed391999-10-05 16:24:54 +0000142}