5663351588ea5df39886ba1f25e3c8c01c8a0a5b
[oweals/busybox.git] / coreutils / rm.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini rm implementation for busybox
4  *
5  *
6  * Copyright (C) 1999,2000 by Lineo, inc.
7  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22  *
23  */
24
25 #include "busybox.h"
26 #include <stdio.h>
27 #include <time.h>
28 #include <utime.h>
29 #include <dirent.h>
30 #include <errno.h>
31
32 static int recursiveFlag = FALSE;
33 static int forceFlag = FALSE;
34 static const char *srcName;
35
36
37 static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
38 {
39         if (unlink(fileName) < 0) {
40                 perrorMsg("%s", fileName);
41                 return (FALSE);
42         }
43         return (TRUE);
44 }
45
46 static int dirAction(const char *fileName, struct stat *statbuf, void* junk)
47 {
48         if (recursiveFlag == FALSE) {
49                 errno = EISDIR;
50                 perrorMsg("%s", fileName);
51                 return (FALSE);
52         } 
53         if (rmdir(fileName) < 0) {
54                 perrorMsg("%s", fileName);
55                 return (FALSE);
56         }
57         return (TRUE);
58 }
59
60 extern int rm_main(int argc, char **argv)
61 {
62         int status = EXIT_SUCCESS;
63         int stopIt=FALSE;
64         struct stat statbuf;
65
66         argc--;
67         argv++;
68
69         /* Parse any options */
70         while (argc > 0 && stopIt == FALSE) {
71                 if (**argv == '-') {
72                         while (*++(*argv))
73                                 switch (**argv) {
74                                         case 'R':
75                                         case 'r':
76                                                 recursiveFlag = TRUE;
77                                                 break;
78                                         case 'f':
79                                                 forceFlag = TRUE;
80                                                 break;
81                                         case '-':
82                                                 stopIt = TRUE;
83                                                 break;
84                                         default:
85                                                 usage(rm_usage);
86                                 }
87                         argc--;
88                         argv++;
89                 }
90                 else
91                         break;
92         }
93
94         if (argc < 1 && forceFlag == FALSE) {
95                 usage(rm_usage);
96         }
97
98         while (argc-- > 0) {
99                 srcName = *(argv++);
100                 if (forceFlag == TRUE && lstat(srcName, &statbuf) != 0
101                         && errno == ENOENT) {
102                         /* do not reports errors for non-existent files if -f, just skip them */
103                 } else {
104                         if (recursiveAction(srcName, recursiveFlag, FALSE,
105                                                                 TRUE, fileAction, dirAction, NULL) == FALSE) {
106                                 status = EXIT_FAILURE;
107                         }
108                 }
109         }
110         return status;
111 }