2 * Copyright (c) 1990, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * @(#) Copyright (c) 1990, 1993, 1994 The Regents of the University of California. All rights reserved.
34 * @(#)rm.c 8.5 (Berkeley) 4/18/94
35 * $FreeBSD: src/bin/rm/rm.c,v 1.29.2.5 2002/07/12 07:25:48 tjr Exp $
36 * $DragonFly: src/bin/rm/rm.c,v 1.19 2006/11/12 00:51:47 swildner Exp $
40 #include <sys/param.h>
41 #include <sys/mount.h>
42 #include <sys/ioctl.h>
55 static int dflag
, eval
, fflag
, iflag
, Pflag
, vflag
, Wflag
, stdin_ok
;
56 static int rflag
, Iflag
;
58 volatile sig_atomic_t info
;
60 static int check(const char *, const char *, struct stat
*);
61 static int check2(char **);
62 static void checkdot(char **);
63 static void rm_file(char **);
64 static int rm_overwrite(const char *, struct stat
*);
65 static void rm_tree(char **);
66 static void siginfo(int);
67 static void usage(void);
71 * This rm is different from historic rm's, but is expected to match
72 * POSIX 1003.2 behavior. The most visible difference is that -f
73 * has two specific effects now, ignore non-existent files and force
77 main(int argc
, char *argv
[])
84 * Test for the special case where the utility is called as
85 * "unlink", for which the functionality provided is greatly
88 if ((p
= strrchr(argv
[0], '/')) == NULL
)
92 if (strcmp(p
, "unlink") == 0) {
93 while (getopt(argc
, argv
, "") != -1)
104 while ((ch
= getopt(argc
, argv
, "dfiIPRrvW")) != -1) {
119 * The -I flag is intended to be generally aliasable
120 * in /etc/csh.cshrc. We apply it only to foreground
123 if (ioctl(0, TIOCGPGRP
, &tty_pgrp
) == 0) {
124 if (tty_pgrp
== getpgrp())
132 case 'r': /* Compatibility. */
157 signal(SIGINFO
, siginfo
);
160 stdin_ok
= isatty(STDIN_FILENO
);
162 if (Iflag
&& !iflag
) {
163 if (check2(argv
) == 0)
185 * Remove a file hierarchy. If forcing removal (-f), or interactive
186 * (-i) or can't ask anyway (stdin_ok), don't stat the file.
188 needstat
= !uid
|| (!fflag
&& !iflag
&& stdin_ok
);
191 * If the -i option is specified, the user can skip on the pre-order
192 * visit. The fts_number field flags skipped directories.
196 flags
= FTS_PHYSICAL
;
200 flags
|= FTS_WHITEOUT
;
201 if ((fts
= fts_open(argv
, flags
, NULL
)) == NULL
) {
202 if (fflag
&& errno
== ENOENT
)
206 while ((p
= fts_read(fts
)) != NULL
) {
207 switch (p
->fts_info
) {
209 if (!fflag
|| p
->fts_errno
!= ENOENT
) {
211 p
->fts_path
, strerror(p
->fts_errno
));
216 errx(1, "%s: %s", p
->fts_path
, strerror(p
->fts_errno
));
219 * Assume that since fts_read() couldn't stat
220 * the file, it can't be unlinked.
224 if (!fflag
|| p
->fts_errno
!= ENOENT
) {
226 p
->fts_path
, strerror(p
->fts_errno
));
231 /* Pre-order: give user chance to skip. */
232 if (!fflag
&& !check(p
->fts_path
, p
->fts_accpath
,
234 fts_set(fts
, p
, FTS_SKIP
);
235 p
->fts_number
= SKIPPED
;
238 (p
->fts_statp
->st_flags
& (UF_APPEND
|UF_IMMUTABLE
)) &&
239 !(p
->fts_statp
->st_flags
& (SF_APPEND
|SF_IMMUTABLE
)) &&
240 chflags(p
->fts_accpath
,
241 p
->fts_statp
->st_flags
&= ~(UF_APPEND
|UF_IMMUTABLE
)) < 0)
245 /* Post-order: see if user skipped. */
246 if (p
->fts_number
== SKIPPED
)
251 !check(p
->fts_path
, p
->fts_accpath
, p
->fts_statp
))
257 fprintf(stderr
, "Currently removing: %s\n", p
->fts_path
);
262 (p
->fts_statp
->st_flags
& (UF_APPEND
|UF_IMMUTABLE
)) &&
263 !(p
->fts_statp
->st_flags
& (SF_APPEND
|SF_IMMUTABLE
)))
264 rval
= chflags(p
->fts_accpath
,
265 p
->fts_statp
->st_flags
&= ~(UF_APPEND
|UF_IMMUTABLE
));
269 * If we can't read or search the directory, may still be
270 * able to remove it. Don't print out the un{read,search}able
271 * message unless the remove fails.
273 switch (p
->fts_info
) {
276 rval
= rmdir(p
->fts_accpath
);
277 if (rval
== 0 || (fflag
&& errno
== ENOENT
)) {
278 if (rval
== 0 && vflag
)
286 rval
= undelete(p
->fts_accpath
);
287 if (rval
== 0 && (fflag
&& errno
== ENOENT
)) {
297 * Assume that since fts_read() couldn't stat
298 * the file, it can't be unlinked.
305 if (!rm_overwrite(p
->fts_accpath
, NULL
))
307 rval
= unlink(p
->fts_accpath
);
308 if (rval
== 0 || (fflag
&& errno
== ENOENT
)) {
309 if (rval
== 0 && vflag
)
317 warn("%s", p
->fts_path
);
333 * Remove a file. POSIX 1003.2 states that, by default, attempting
334 * to remove a directory is an error, so must always stat the file.
336 while ((f
= *argv
++) != NULL
) {
339 fprintf(stderr
, "Currently removing: %s\n", f
);
342 /* Assume if can't stat the file, can't unlink it. */
345 sb
.st_mode
= S_IFWHT
|S_IWUSR
|S_IRUSR
;
347 if (!fflag
|| errno
!= ENOENT
) {
354 warnx("%s: %s", f
, strerror(EEXIST
));
359 if (S_ISDIR(sb
.st_mode
) && !dflag
) {
360 warnx("%s: is a directory", f
);
364 if (!fflag
&& !S_ISWHT(sb
.st_mode
) && !check(f
, f
, &sb
))
368 (sb
.st_flags
& (UF_APPEND
|UF_IMMUTABLE
)) &&
369 !(sb
.st_flags
& (SF_APPEND
|SF_IMMUTABLE
)))
370 rval
= chflags(f
, sb
.st_flags
& ~(UF_APPEND
|UF_IMMUTABLE
));
372 if (S_ISWHT(sb
.st_mode
))
374 else if (S_ISDIR(sb
.st_mode
))
378 if (!rm_overwrite(f
, &sb
))
383 if (rval
&& (!fflag
|| errno
!= ENOENT
)) {
387 if (vflag
&& rval
== 0)
394 * Overwrite the file 3 times with varying bit patterns.
397 * This is a cheap way to *really* delete files. Note that only regular
398 * files are deleted, directories (and therefore names) will remain.
399 * Also, this assumes a fixed-block filesystem (like FFS, or a V7 or a
400 * System V filesystem). In a logging filesystem, you'll have to have
404 rm_overwrite(const char *file
, struct stat
*sbp
)
414 if (lstat(file
, &sb
))
418 if (!S_ISREG(sbp
->st_mode
)) {
419 warnx("%s: cannot overwrite a non-regular file", file
);
422 if (sbp
->st_nlink
> 1) {
423 warnx("%s (inode %ju): not overwritten due to multiple links",
424 file
, (uintmax_t)sbp
->st_ino
);
427 if ((fd
= open(file
, O_WRONLY
, 0)) == -1)
429 if (fstatfs(fd
, &fsb
) == -1)
431 bsize
= MAX(fsb
.f_iosize
, 1024);
432 if ((buf
= malloc(bsize
)) == NULL
)
433 err(1, "%s malloc failed", file
);
435 #define PASS(byte) { \
436 memset(buf, byte, bsize); \
437 for (len = sbp->st_size; len > 0; len -= wlen) { \
438 wlen = len < bsize ? len : bsize; \
439 if (write(fd, buf, wlen) != wlen) \
444 if (fsync(fd
) || lseek(fd
, (off_t
)0, SEEK_SET
))
447 if (fsync(fd
) || lseek(fd
, (off_t
)0, SEEK_SET
))
450 if (!fsync(fd
) && !close(fd
)) {
466 check(const char *path
, const char *name
, struct stat
*sp
)
468 static int perm_answer
= -1;
474 } *choice
, choices
[] = {
475 { 'y', "yes" , 1, 0 },
476 { 'n', "no" , 0, 0 },
477 { 'a', "always", 1, 1 },
478 { 'v', "never" , 0, 1 },
481 char modep
[15], *flagsp
;
483 if (perm_answer
!= -1)
484 return (perm_answer
);
486 /* Check -i first. */
488 fprintf(stderr
, "remove %s? ", path
);
491 * If it's not a symbolic link and it's unwritable and we're
492 * talking to a terminal, ask. Symbolic links are excluded
493 * because their permissions are meaningless. Check stdin_ok
494 * first because we may not have stat'ed the file.
495 * Also skip this check if the -P option was specified because
496 * we will not be able to overwrite file contents and will
499 if (!stdin_ok
|| S_ISLNK(sp
->st_mode
) || Pflag
||
500 (!access(name
, W_OK
) &&
501 !(sp
->st_flags
& (SF_APPEND
|SF_IMMUTABLE
)) &&
502 (!(sp
->st_flags
& (UF_APPEND
|UF_IMMUTABLE
)) || !uid
)))
504 strmode(sp
->st_mode
, modep
);
505 if ((flagsp
= fflagstostr(sp
->st_flags
)) == NULL
)
507 fprintf(stderr
, "override %s%s%s/%s %s%sfor %s? ",
508 modep
+ 1, modep
[9] == ' ' ? "" : " ",
509 user_from_uid(sp
->st_uid
, 0),
510 group_from_gid(sp
->st_gid
, 0),
511 *flagsp
? flagsp
: "", *flagsp
? " " : "",
521 answer
= fgetln(stdin
, &len
);
522 /* clearerr(stdin); */
525 if (answer
[len
- 1] == '\n')
530 for (choice
= choices
; choice
->str
!= NULL
; choice
++) {
531 if (len
== 1 && choice
->ch
== answer
[0])
533 if (strncasecmp(answer
, choice
->str
, len
) == 0)
537 fprintf(stderr
, "invalid answer, try again (y/n/a/v): ");
542 perm_answer
= choice
->res
;
543 return (choice
->res
);
555 const char *dname
= NULL
;
557 for (i
= 0; argv
[i
]; ++i
) {
558 if (lstat(argv
[i
], &st
) == 0) {
559 if (S_ISDIR(st
.st_mode
)) {
561 dname
= argv
[i
]; /* only used if 1 dir */
568 while (first
!= 'n' && first
!= 'N' && first
!= 'y' && first
!= 'Y') {
569 if (dcount
&& rflag
) {
570 fprintf(stderr
, "recursively remove");
572 fprintf(stderr
, " %s", dname
);
574 fprintf(stderr
, " %d dirs", dcount
);
576 fprintf(stderr
, " and 1 file");
578 fprintf(stderr
, " and %d files", fcount
);
579 } else if (dcount
+ fcount
> 3) {
580 fprintf(stderr
, "remove %d files", dcount
+ fcount
);
584 fprintf(stderr
, "? ");
587 first
= ch
= getchar();
588 while (ch
!= '\n' && ch
!= EOF
)
593 return (first
== 'y' || first
== 'Y');
596 #define ISDOT(a) ((a)[0] == '.' && (!(a)[1] || ((a)[1] == '.' && !(a)[2])))
598 checkdot(char **argv
)
600 char *p
, **save
, **t
;
604 for (t
= argv
; *t
;) {
605 if ((p
= strrchr(*t
, '/')) != NULL
)
611 warnx("\".\" and \"..\" may not be removed");
613 for (save
= t
; (t
[0] = t
[1]) != NULL
; ++t
)
625 fprintf(stderr
, "%s\n%s\n",
626 "usage: rm [-f | -i] [-dIPRrvW] file ...",
632 siginfo(int notused __unused
)