rm.c revision 272372
1192067Snwhitehorn/*-
2192067Snwhitehorn * Copyright (c) 1990, 1993, 1994
3192067Snwhitehorn *	The Regents of the University of California.  All rights reserved.
4192067Snwhitehorn *
5192067Snwhitehorn * Redistribution and use in source and binary forms, with or without
6192067Snwhitehorn * modification, are permitted provided that the following conditions
7192067Snwhitehorn * are met:
8192067Snwhitehorn * 1. Redistributions of source code must retain the above copyright
9192067Snwhitehorn *    notice, this list of conditions and the following disclaimer.
10192067Snwhitehorn * 2. Redistributions in binary form must reproduce the above copyright
11192067Snwhitehorn *    notice, this list of conditions and the following disclaimer in the
12192067Snwhitehorn *    documentation and/or other materials provided with the distribution.
13192067Snwhitehorn * 4. Neither the name of the University nor the names of its contributors
14192067Snwhitehorn *    may be used to endorse or promote products derived from this software
15192067Snwhitehorn *    without specific prior written permission.
16192067Snwhitehorn *
17192067Snwhitehorn * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18192067Snwhitehorn * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19192067Snwhitehorn * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20192067Snwhitehorn * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21192067Snwhitehorn * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22192067Snwhitehorn * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23192067Snwhitehorn * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24192067Snwhitehorn * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25192067Snwhitehorn * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26192067Snwhitehorn * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27192067Snwhitehorn * SUCH DAMAGE.
28192067Snwhitehorn */
29192067Snwhitehorn
30192067Snwhitehorn#if 0
31192067Snwhitehorn#ifndef lint
32192067Snwhitehornstatic const char copyright[] =
33192067Snwhitehorn"@(#) Copyright (c) 1990, 1993, 1994\n\
34192067Snwhitehorn	The Regents of the University of California.  All rights reserved.\n";
35192067Snwhitehorn#endif /* not lint */
36192067Snwhitehorn
37192067Snwhitehorn#ifndef lint
38192067Snwhitehornstatic char sccsid[] = "@(#)rm.c	8.5 (Berkeley) 4/18/94";
39192067Snwhitehorn#endif /* not lint */
40192067Snwhitehorn#endif
41192067Snwhitehorn#include <sys/cdefs.h>
42192067Snwhitehorn__FBSDID("$FreeBSD: stable/10/bin/rm/rm.c 272372 2014-10-01 16:18:40Z gjb $");
43192067Snwhitehorn
44192067Snwhitehorn#include <sys/stat.h>
45192067Snwhitehorn#include <sys/param.h>
46192067Snwhitehorn#include <sys/mount.h>
47209908Sraj
48209908Sraj#include <err.h>
49209908Sraj#include <errno.h>
50209908Sraj#include <fcntl.h>
51209908Sraj#include <fts.h>
52192067Snwhitehorn#include <grp.h>
53192067Snwhitehorn#include <pwd.h>
54192067Snwhitehorn#include <stdint.h>
55192067Snwhitehorn#include <stdio.h>
56192532Sraj#include <stdlib.h>
57192532Sraj#include <string.h>
58192532Sraj#include <sysexits.h>
59192532Sraj#include <unistd.h>
60192532Sraj
61192532Srajstatic int dflag, eval, fflag, iflag, Pflag, vflag, Wflag, stdin_ok;
62217523Smarcelstatic int rflag, Iflag, xflag;
63217523Smarcelstatic uid_t uid;
64193492Srajstatic volatile sig_atomic_t info;
65192067Snwhitehorn
66192067Snwhitehornstatic int	check(const char *, const char *, struct stat *);
67192067Snwhitehornstatic int	check2(char **);
68192067Snwhitehornstatic void	checkdot(char **);
69192067Snwhitehornstatic void	checkslash(char **);
70192067Snwhitehornstatic void	rm_file(char **);
71192067Snwhitehornstatic int	rm_overwrite(const char *, struct stat *);
72192067Snwhitehornstatic void	rm_tree(char **);
73192067Snwhitehornstatic void siginfo(int __unused);
74192067Snwhitehornstatic void	usage(void);
75212054Snwhitehorn
76212054Snwhitehorn/*
77192067Snwhitehorn * rm --
78192067Snwhitehorn *	This rm is different from historic rm's, but is expected to match
79192067Snwhitehorn *	POSIX 1003.2 behavior.	The most visible difference is that -f
80192067Snwhitehorn *	has two specific effects now, ignore non-existent files and force
81192067Snwhitehorn *	file removal.
82192067Snwhitehorn */
83192067Snwhitehornint
84192067Snwhitehornmain(int argc, char *argv[])
85192067Snwhitehorn{
86192067Snwhitehorn	int ch;
87212453Smav	char *p;
88212054Snwhitehorn
89192067Snwhitehorn	/*
90192067Snwhitehorn	 * Test for the special case where the utility is called as
91192067Snwhitehorn	 * "unlink", for which the functionality provided is greatly
92192067Snwhitehorn	 * simplified.
93192067Snwhitehorn	 */
94192067Snwhitehorn	if ((p = strrchr(argv[0], '/')) == NULL)
95192067Snwhitehorn		p = argv[0];
96192067Snwhitehorn	else
97192067Snwhitehorn		++p;
98192067Snwhitehorn	if (strcmp(p, "unlink") == 0) {
99192067Snwhitehorn		while (getopt(argc, argv, "") != -1)
100192067Snwhitehorn			usage();
101192067Snwhitehorn		argc -= optind;
102192067Snwhitehorn		argv += optind;
103209908Sraj		if (argc != 1)
104209908Sraj			usage();
105192067Snwhitehorn		rm_file(&argv[0]);
106193492Sraj		exit(eval);
107193492Sraj	}
108193492Sraj
109193492Sraj	Pflag = rflag = xflag = 0;
110193492Sraj	while ((ch = getopt(argc, argv, "dfiIPRrvWx")) != -1)
111193492Sraj		switch(ch) {
112209908Sraj		case 'd':
113209908Sraj			dflag = 1;
114209908Sraj			break;
115209908Sraj		case 'f':
116209908Sraj			fflag = 1;
117209908Sraj			iflag = 0;
118209908Sraj			break;
119209908Sraj		case 'i':
120209908Sraj			fflag = 0;
121209908Sraj			iflag = 1;
122209908Sraj			break;
123209908Sraj		case 'I':
124209908Sraj			Iflag = 1;
125209908Sraj			break;
126209908Sraj		case 'P':
127209908Sraj			Pflag = 1;
128209908Sraj			break;
129192067Snwhitehorn		case 'R':
130192067Snwhitehorn		case 'r':			/* Compatibility. */
131192067Snwhitehorn			rflag = 1;
132192067Snwhitehorn			break;
133192067Snwhitehorn		case 'v':
134192067Snwhitehorn			vflag = 1;
135192067Snwhitehorn			break;
136192067Snwhitehorn		case 'W':
137192067Snwhitehorn			Wflag = 1;
138192067Snwhitehorn			break;
139209908Sraj		case 'x':
140209908Sraj			xflag = 1;
141192067Snwhitehorn			break;
142209908Sraj		default:
143209908Sraj			usage();
144209908Sraj		}
145209908Sraj	argc -= optind;
146209908Sraj	argv += optind;
147209908Sraj
148209908Sraj	if (argc < 1) {
149209908Sraj		if (fflag)
150209908Sraj			return (0);
151209908Sraj		usage();
152192067Snwhitehorn	}
153192067Snwhitehorn
154192067Snwhitehorn	checkdot(argv);
155192067Snwhitehorn	if (getenv("POSIXLY_CORRECT") == NULL)
156192067Snwhitehorn		checkslash(argv);
157192067Snwhitehorn	uid = geteuid();
158192067Snwhitehorn
159192067Snwhitehorn	(void)signal(SIGINFO, siginfo);
160192067Snwhitehorn	if (*argv) {
161192067Snwhitehorn		stdin_ok = isatty(STDIN_FILENO);
162192067Snwhitehorn
163192067Snwhitehorn		if (Iflag) {
164192067Snwhitehorn			if (check2(argv) == 0)
165217523Smarcel				exit (1);
166209908Sraj		}
167209908Sraj		if (rflag)
168192067Snwhitehorn			rm_tree(argv);
169222327Smarcel		else
170222327Smarcel			rm_file(argv);
171222327Smarcel	}
172222327Smarcel
173222327Smarcel	exit (eval);
174217523Smarcel}
175209908Sraj
176209908Srajstatic void
177209908Srajrm_tree(char **argv)
178209908Sraj{
179209908Sraj	FTS *fts;
180209908Sraj	FTSENT *p;
181217523Smarcel	int needstat;
182209908Sraj	int flags;
183209908Sraj	int rval;
184209908Sraj
185217523Smarcel	/*
186192067Snwhitehorn	 * Remove a file hierarchy.  If forcing removal (-f), or interactive
187192067Snwhitehorn	 * (-i) or can't ask anyway (stdin_ok), don't stat the file.
188192067Snwhitehorn	 */
189192067Snwhitehorn	needstat = !uid || (!fflag && !iflag && stdin_ok);
190217523Smarcel
191217523Smarcel	/*
192217523Smarcel	 * If the -i option is specified, the user can skip on the pre-order
193209908Sraj	 * visit.  The fts_number field flags skipped directories.
194192067Snwhitehorn	 */
195192067Snwhitehorn#define	SKIPPED	1
196192067Snwhitehorn
197192067Snwhitehorn	flags = FTS_PHYSICAL;
198192067Snwhitehorn	if (!needstat)
199192067Snwhitehorn		flags |= FTS_NOSTAT;
200192067Snwhitehorn	if (Wflag)
201192067Snwhitehorn		flags |= FTS_WHITEOUT;
202192067Snwhitehorn	if (xflag)
203192067Snwhitehorn		flags |= FTS_XDEV;
204192067Snwhitehorn	if (!(fts = fts_open(argv, flags, NULL))) {
205192067Snwhitehorn		if (fflag && errno == ENOENT)
206192067Snwhitehorn			return;
207192067Snwhitehorn		err(1, "fts_open");
208192067Snwhitehorn	}
209192067Snwhitehorn	while ((p = fts_read(fts)) != NULL) {
210192067Snwhitehorn		switch (p->fts_info) {
211192067Snwhitehorn		case FTS_DNR:
212192067Snwhitehorn			if (!fflag || p->fts_errno != ENOENT) {
213192067Snwhitehorn				warnx("%s: %s",
214192067Snwhitehorn				    p->fts_path, strerror(p->fts_errno));
215192067Snwhitehorn				eval = 1;
216192067Snwhitehorn			}
217192067Snwhitehorn			continue;
218193492Sraj		case FTS_ERR:
219192067Snwhitehorn			errx(1, "%s: %s", p->fts_path, strerror(p->fts_errno));
220192067Snwhitehorn		case FTS_NS:
221192067Snwhitehorn			/*
222192067Snwhitehorn			 * Assume that since fts_read() couldn't stat the
223192067Snwhitehorn			 * file, it can't be unlinked.
224192067Snwhitehorn			 */
225192067Snwhitehorn			if (!needstat)
226192067Snwhitehorn				break;
227192067Snwhitehorn			if (!fflag || p->fts_errno != ENOENT) {
228192067Snwhitehorn				warnx("%s: %s",
229192067Snwhitehorn				    p->fts_path, strerror(p->fts_errno));
230192067Snwhitehorn				eval = 1;
231192067Snwhitehorn			}
232192067Snwhitehorn			continue;
233192067Snwhitehorn		case FTS_D:
234192067Snwhitehorn			/* Pre-order: give user chance to skip. */
235192067Snwhitehorn			if (!fflag && !check(p->fts_path, p->fts_accpath,
236192067Snwhitehorn			    p->fts_statp)) {
237192067Snwhitehorn				(void)fts_set(fts, p, FTS_SKIP);
238192067Snwhitehorn				p->fts_number = SKIPPED;
239192067Snwhitehorn			}
240192067Snwhitehorn			else if (!uid &&
241192067Snwhitehorn				 (p->fts_statp->st_flags & (UF_APPEND|UF_IMMUTABLE)) &&
242192532Sraj				 !(p->fts_statp->st_flags & (SF_APPEND|SF_IMMUTABLE)) &&
243192532Sraj				 lchflags(p->fts_accpath,
244192532Sraj					 p->fts_statp->st_flags &= ~(UF_APPEND|UF_IMMUTABLE)) < 0)
245192067Snwhitehorn				goto err;
246192532Sraj			continue;
247222070Sattilio		case FTS_DP:
248192532Sraj			/* Post-order: see if user skipped. */
249192532Sraj			if (p->fts_number == SKIPPED)
250192532Sraj				continue;
251192532Sraj			break;
252192532Sraj		default:
253192532Sraj			if (!fflag &&
254192532Sraj			    !check(p->fts_path, p->fts_accpath, p->fts_statp))
255192532Sraj				continue;
256192532Sraj		}
257192532Sraj
258192532Sraj		rval = 0;
259192532Sraj		if (!uid &&
260192532Sraj		    (p->fts_statp->st_flags & (UF_APPEND|UF_IMMUTABLE)) &&
261192532Sraj		    !(p->fts_statp->st_flags & (SF_APPEND|SF_IMMUTABLE)))
262192532Sraj			rval = lchflags(p->fts_accpath,
263192532Sraj				       p->fts_statp->st_flags &= ~(UF_APPEND|UF_IMMUTABLE));
264192532Sraj		if (rval == 0) {
265222070Sattilio			/*
266192532Sraj			 * If we can't read or search the directory, may still be
267192532Sraj			 * able to remove it.  Don't print out the un{read,search}able
268192532Sraj			 * message unless the remove fails.
269192532Sraj			 */
270192532Sraj			switch (p->fts_info) {
271192532Sraj			case FTS_DP:
272192532Sraj			case FTS_DNR:
273192532Sraj				rval = rmdir(p->fts_accpath);
274192532Sraj				if (rval == 0 || (fflag && errno == ENOENT)) {
275192067Snwhitehorn					if (rval == 0 && vflag)
276192067Snwhitehorn						(void)printf("%s\n",
277192532Sraj						    p->fts_path);
278192067Snwhitehorn					if (rval == 0 && info) {
279212054Snwhitehorn						info = 0;
280212054Snwhitehorn						(void)printf("%s\n",
281212054Snwhitehorn						    p->fts_path);
282212054Snwhitehorn					}
283212054Snwhitehorn					continue;
284212054Snwhitehorn				}
285212054Snwhitehorn				break;
286212054Snwhitehorn
287212054Snwhitehorn			case FTS_W:
288212054Snwhitehorn				rval = undelete(p->fts_accpath);
289212054Snwhitehorn				if (rval == 0 && (fflag && errno == ENOENT)) {
290212054Snwhitehorn					if (vflag)
291212054Snwhitehorn						(void)printf("%s\n",
292212054Snwhitehorn						    p->fts_path);
293212054Snwhitehorn					if (info) {
294212054Snwhitehorn						info = 0;
295212054Snwhitehorn						(void)printf("%s\n",
296212054Snwhitehorn						    p->fts_path);
297212054Snwhitehorn					}
298212054Snwhitehorn					continue;
299212054Snwhitehorn				}
300212054Snwhitehorn				break;
301212054Snwhitehorn
302212054Snwhitehorn			case FTS_NS:
303212054Snwhitehorn				/*
304212054Snwhitehorn				 * Assume that since fts_read() couldn't stat
305212054Snwhitehorn				 * the file, it can't be unlinked.
306				 */
307				if (fflag)
308					continue;
309				/* FALLTHROUGH */
310
311			case FTS_F:
312			case FTS_NSOK:
313				if (Pflag)
314					if (!rm_overwrite(p->fts_accpath, p->fts_info ==
315					    FTS_NSOK ? NULL : p->fts_statp))
316						continue;
317				/* FALLTHROUGH */
318
319			default:
320				rval = unlink(p->fts_accpath);
321				if (rval == 0 || (fflag && errno == ENOENT)) {
322					if (rval == 0 && vflag)
323						(void)printf("%s\n",
324						    p->fts_path);
325					if (rval == 0 && info) {
326						info = 0;
327						(void)printf("%s\n",
328						    p->fts_path);
329					}
330					continue;
331				}
332			}
333		}
334err:
335		warn("%s", p->fts_path);
336		eval = 1;
337	}
338	if (!fflag && errno)
339		err(1, "fts_read");
340	fts_close(fts);
341}
342
343static void
344rm_file(char **argv)
345{
346	struct stat sb;
347	int rval;
348	char *f;
349
350	/*
351	 * Remove a file.  POSIX 1003.2 states that, by default, attempting
352	 * to remove a directory is an error, so must always stat the file.
353	 */
354	while ((f = *argv++) != NULL) {
355		/* Assume if can't stat the file, can't unlink it. */
356		if (lstat(f, &sb)) {
357			if (Wflag) {
358				sb.st_mode = S_IFWHT|S_IWUSR|S_IRUSR;
359			} else {
360				if (!fflag || errno != ENOENT) {
361					warn("%s", f);
362					eval = 1;
363				}
364				continue;
365			}
366		} else if (Wflag) {
367			warnx("%s: %s", f, strerror(EEXIST));
368			eval = 1;
369			continue;
370		}
371
372		if (S_ISDIR(sb.st_mode) && !dflag) {
373			warnx("%s: is a directory", f);
374			eval = 1;
375			continue;
376		}
377		if (!fflag && !S_ISWHT(sb.st_mode) && !check(f, f, &sb))
378			continue;
379		rval = 0;
380		if (!uid && !S_ISWHT(sb.st_mode) &&
381		    (sb.st_flags & (UF_APPEND|UF_IMMUTABLE)) &&
382		    !(sb.st_flags & (SF_APPEND|SF_IMMUTABLE)))
383			rval = lchflags(f, sb.st_flags & ~(UF_APPEND|UF_IMMUTABLE));
384		if (rval == 0) {
385			if (S_ISWHT(sb.st_mode))
386				rval = undelete(f);
387			else if (S_ISDIR(sb.st_mode))
388				rval = rmdir(f);
389			else {
390				if (Pflag)
391					if (!rm_overwrite(f, &sb))
392						continue;
393				rval = unlink(f);
394			}
395		}
396		if (rval && (!fflag || errno != ENOENT)) {
397			warn("%s", f);
398			eval = 1;
399		}
400		if (vflag && rval == 0)
401			(void)printf("%s\n", f);
402		if (info && rval == 0) {
403			info = 0;
404			(void)printf("%s\n", f);
405		}
406	}
407}
408
409/*
410 * rm_overwrite --
411 *	Overwrite the file 3 times with varying bit patterns.
412 *
413 * XXX
414 * This is a cheap way to *really* delete files.  Note that only regular
415 * files are deleted, directories (and therefore names) will remain.
416 * Also, this assumes a fixed-block file system (like FFS, or a V7 or a
417 * System V file system).  In a logging or COW file system, you'll have to
418 * have kernel support.
419 */
420static int
421rm_overwrite(const char *file, struct stat *sbp)
422{
423	struct stat sb, sb2;
424	struct statfs fsb;
425	off_t len;
426	int bsize, fd, wlen;
427	char *buf = NULL;
428
429	fd = -1;
430	if (sbp == NULL) {
431		if (lstat(file, &sb))
432			goto err;
433		sbp = &sb;
434	}
435	if (!S_ISREG(sbp->st_mode))
436		return (1);
437	if (sbp->st_nlink > 1 && !fflag) {
438		warnx("%s (inode %ju): not overwritten due to multiple links",
439		    file, (uintmax_t)sbp->st_ino);
440		return (0);
441	}
442	if ((fd = open(file, O_WRONLY|O_NONBLOCK|O_NOFOLLOW, 0)) == -1)
443		goto err;
444	if (fstat(fd, &sb2))
445		goto err;
446	if (sb2.st_dev != sbp->st_dev || sb2.st_ino != sbp->st_ino ||
447	    !S_ISREG(sb2.st_mode)) {
448		errno = EPERM;
449		goto err;
450	}
451	if (fstatfs(fd, &fsb) == -1)
452		goto err;
453	bsize = MAX(fsb.f_iosize, 1024);
454	if ((buf = malloc(bsize)) == NULL)
455		err(1, "%s: malloc", file);
456
457#define	PASS(byte) {							\
458	memset(buf, byte, bsize);					\
459	for (len = sbp->st_size; len > 0; len -= wlen) {		\
460		wlen = len < bsize ? len : bsize;			\
461		if (write(fd, buf, wlen) != wlen)			\
462			goto err;					\
463	}								\
464}
465	PASS(0xff);
466	if (fsync(fd) || lseek(fd, (off_t)0, SEEK_SET))
467		goto err;
468	PASS(0x00);
469	if (fsync(fd) || lseek(fd, (off_t)0, SEEK_SET))
470		goto err;
471	PASS(0xff);
472	if (!fsync(fd) && !close(fd)) {
473		free(buf);
474		return (1);
475	}
476
477err:	eval = 1;
478	if (buf)
479		free(buf);
480	if (fd != -1)
481		close(fd);
482	warn("%s", file);
483	return (0);
484}
485
486
487static int
488check(const char *path, const char *name, struct stat *sp)
489{
490	int ch, first;
491	char modep[15], *flagsp;
492
493	/* Check -i first. */
494	if (iflag)
495		(void)fprintf(stderr, "remove %s? ", path);
496	else {
497		/*
498		 * If it's not a symbolic link and it's unwritable and we're
499		 * talking to a terminal, ask.  Symbolic links are excluded
500		 * because their permissions are meaningless.  Check stdin_ok
501		 * first because we may not have stat'ed the file.
502		 */
503		if (!stdin_ok || S_ISLNK(sp->st_mode) ||
504		    (!access(name, W_OK) &&
505		    !(sp->st_flags & (SF_APPEND|SF_IMMUTABLE)) &&
506		    (!(sp->st_flags & (UF_APPEND|UF_IMMUTABLE)) || !uid)))
507			return (1);
508		strmode(sp->st_mode, modep);
509		if ((flagsp = fflagstostr(sp->st_flags)) == NULL)
510			err(1, "fflagstostr");
511		if (Pflag)
512			errx(1,
513			    "%s: -P was specified, but file is not writable",
514			    path);
515		(void)fprintf(stderr, "override %s%s%s/%s %s%sfor %s? ",
516		    modep + 1, modep[9] == ' ' ? "" : " ",
517		    user_from_uid(sp->st_uid, 0),
518		    group_from_gid(sp->st_gid, 0),
519		    *flagsp ? flagsp : "", *flagsp ? " " : "",
520		    path);
521		free(flagsp);
522	}
523	(void)fflush(stderr);
524
525	first = ch = getchar();
526	while (ch != '\n' && ch != EOF)
527		ch = getchar();
528	return (first == 'y' || first == 'Y');
529}
530
531#define ISSLASH(a)	((a)[0] == '/' && (a)[1] == '\0')
532static void
533checkslash(char **argv)
534{
535	char **t, **u;
536	int complained;
537
538	complained = 0;
539	for (t = argv; *t;) {
540		if (ISSLASH(*t)) {
541			if (!complained++)
542				warnx("\"/\" may not be removed");
543			eval = 1;
544			for (u = t; u[0] != NULL; ++u)
545				u[0] = u[1];
546		} else {
547			++t;
548		}
549	}
550}
551
552static int
553check2(char **argv)
554{
555	struct stat st;
556	int first;
557	int ch;
558	int fcount = 0;
559	int dcount = 0;
560	int i;
561	const char *dname = NULL;
562
563	for (i = 0; argv[i]; ++i) {
564		if (lstat(argv[i], &st) == 0) {
565			if (S_ISDIR(st.st_mode)) {
566				++dcount;
567				dname = argv[i];    /* only used if 1 dir */
568			} else {
569				++fcount;
570			}
571		}
572	}
573	first = 0;
574	while (first != 'n' && first != 'N' && first != 'y' && first != 'Y') {
575		if (dcount && rflag) {
576			fprintf(stderr, "recursively remove");
577			if (dcount == 1)
578				fprintf(stderr, " %s", dname);
579			else
580				fprintf(stderr, " %d dirs", dcount);
581			if (fcount == 1)
582				fprintf(stderr, " and 1 file");
583			else if (fcount > 1)
584				fprintf(stderr, " and %d files", fcount);
585		} else if (dcount + fcount > 3) {
586			fprintf(stderr, "remove %d files", dcount + fcount);
587		} else {
588			return(1);
589		}
590		fprintf(stderr, "? ");
591		fflush(stderr);
592
593		first = ch = getchar();
594		while (ch != '\n' && ch != EOF)
595			ch = getchar();
596		if (ch == EOF)
597			break;
598	}
599	return (first == 'y' || first == 'Y');
600}
601
602#define ISDOT(a)	((a)[0] == '.' && (!(a)[1] || ((a)[1] == '.' && !(a)[2])))
603static void
604checkdot(char **argv)
605{
606	char *p, **save, **t;
607	int complained;
608
609	complained = 0;
610	for (t = argv; *t;) {
611		if ((p = strrchr(*t, '/')) != NULL)
612			++p;
613		else
614			p = *t;
615		if (ISDOT(p)) {
616			if (!complained++)
617				warnx("\".\" and \"..\" may not be removed");
618			eval = 1;
619			for (save = t; (t[0] = t[1]) != NULL; ++t)
620				continue;
621			t = save;
622		} else
623			++t;
624	}
625}
626
627static void
628usage(void)
629{
630
631	(void)fprintf(stderr, "%s\n%s\n",
632	    "usage: rm [-f | -i] [-dIPRrvWx] file ...",
633	    "       unlink file");
634	exit(EX_USAGE);
635}
636
637static void
638siginfo(int sig __unused)
639{
640
641	info = 1;
642}
643