VirtualBox

source: kBuild/trunk/src/gmake/kmkbuiltin/rmdir.c@ 695

Last change on this file since 695 was 695, checked in by bird, 18 years ago

Ignore EINVAL too so rmdir . doesn't fail when we're trying to ignore failures.

File size: 4.8 KB
Line 
1/*-
2 * Copyright (c) 1992, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 4. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
30#if 0
31#ifndef lint
32static char const copyright[] =
33"@(#) Copyright (c) 1992, 1993, 1994\n\
34 The Regents of the University of California. All rights reserved.\n";
35#endif /* not lint */
36
37#ifndef lint
38static char sccsid[] = "@(#)rmdir.c 8.3 (Berkeley) 4/2/94";
39#endif /* not lint */
40#endif
41#if 0
42#include <sys/cdefs.h>
43__FBSDID("$FreeBSD: src/bin/rmdir/rmdir.c,v 1.20 2005/01/26 06:51:28 ssouhlal Exp $");
44#endif
45
46#include "err.h"
47#include <stdio.h>
48#include <stdlib.h>
49#include <string.h>
50#include <errno.h>
51#ifndef _MSC_VER
52#include <unistd.h>
53#else
54#include <malloc.h>
55#include "mscfakes.h"
56#endif
57#include <getopt.h>
58
59static int rm_path(char *);
60static int usage(void);
61
62static int pflag;
63static int vflag;
64static int ignore_fail_on_non_empty;
65static int ignore_fail_on_not_exist;
66
67static struct option long_options[] =
68{
69 { "ignore-fail-on-non-empty", no_argument, 0, 260 },
70 { "ignore-fail-on-not-exist", no_argument, 0, 261 },
71 { "parents", no_argument, 0, 'p' },
72 { "verbose", no_argument, 0, 'v' },
73 { 0, 0, 0, 0 },
74};
75
76
77int
78kmk_builtin_rmdir(int argc, char *argv[])
79{
80 int ch, errors;
81
82 /* reinitialize globals */
83 ignore_fail_on_not_exist = ignore_fail_on_non_empty = vflag = pflag = 0;
84
85 /* kmk: reset getopt and set progname */
86 g_progname = argv[0];
87 opterr = 1;
88 optarg = NULL;
89 optopt = 0;
90#if defined(__FreeBSD__) || defined(__EMX__) || defined(__APPLE__)
91 optreset = 1;
92 optind = 1;
93#else
94 optind = 0; /* init */
95#endif
96 while ((ch = getopt_long(argc, argv, "pv", long_options, NULL)) != -1)
97 switch(ch) {
98 case 'p':
99 pflag = 1;
100 break;
101 case 'v':
102 vflag = 1;
103 break;
104 case 260:
105 ignore_fail_on_non_empty = 1;
106 break;
107 case 261:
108 ignore_fail_on_not_exist = 1;
109 break;
110 case '?':
111 default:
112 return usage();
113 }
114 argc -= optind;
115 argv += optind;
116
117 if (argc == 0)
118 return usage();
119
120 for (errors = 0; *argv; argv++) {
121 if (rmdir(*argv) < 0) {
122 if ( (!ignore_fail_on_non_empty || (errno != ENOTEMPTY && errno != EPERM && errno != EACCES && errno != EINVAL))
123 && (!ignore_fail_on_not_exist || errno != ENOENT)) {
124 warn("%s", *argv);
125 errors = 1;
126 }
127 } else {
128 if (vflag)
129 printf("%s\n", *argv);
130 if (pflag)
131 errors |= rm_path(*argv);
132 }
133 }
134
135 return errors;
136}
137
138static int
139rm_path(char *path)
140{
141 char *p;
142 const size_t len = strlen(path);
143 p = alloca(len + 1);
144 path = memcpy(p, path, len + 1);
145
146#if defined(_MSC_VER) || defined(__EMX__)
147 p = strchr(path, '\\');
148 while (p) {
149 *p++ = '/';
150 p = strchr(p, '\\');
151 }
152#endif
153
154 p = path + len;
155 while (--p > path && *p == '/')
156 ;
157 *++p = '\0';
158 while ((p = strrchr(path, '/')) != NULL) {
159 /* Delete trailing slashes. */
160 while (--p >= path && *p == '/')
161 ;
162 *++p = '\0';
163 if (p == path)
164 break;
165#if defined(_MSC_VER) || defined(__EMX__)
166 if (p[-1] == ':' && p - 2 == path)
167 break;
168#endif
169
170 if (rmdir(path) < 0) {
171 if (ignore_fail_on_non_empty && (errno == ENOTEMPTY || errno == EPERM || errno == EACCES || errno == EINVAL))
172 break;
173 if (!ignore_fail_on_not_exist || errno != ENOENT) {
174 warn("%s", path);
175 return (1);
176 }
177 }
178 if (vflag)
179 printf("%s\n", path);
180 }
181
182 return (0);
183}
184
185static int
186usage(void)
187{
188
189 (void)fprintf(stderr, "usage: rmdir [-pv --ignore-fail-on-non-empty --ignore-fail-on-not-exist] directory ...\n");
190 return 1;
191}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette