1 /* $NetBSD: rm.c,v 1.53 2013/04/26 18:43:22 christos Exp $ */
4 * Copyright (c) 1990, 1993, 1994, 2003
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 #include <sys/cdefs.h>
34 __COPYRIGHT("@(#) Copyright (c) 1990, 1993, 1994\
35 The Regents of the University of California. All rights reserved.");
40 static char sccsid
[] = "@(#)rm.c 8.8 (Berkeley) 4/27/95";
42 __RCSID("$NetBSD: rm.c,v 1.53 2013/04/26 18:43:22 christos Exp $");
46 #include <sys/param.h>
48 #include <sys/types.h>
63 static int dflag
, eval
, fflag
, iflag
, Pflag
, stdin_ok
, vflag
, Wflag
;
65 static sig_atomic_t pinfo
;
67 static int check(char *, char *, struct stat
*);
68 static void checkdot(char **);
69 static void progress(int);
70 static void rm_file(char **);
71 static int rm_overwrite(char *, struct stat
*);
72 static void rm_tree(char **);
73 __dead
static void usage(void);
82 #endif /* defined(__minix) */
85 * For the sake of the `-f' flag, check whether an error number indicates the
86 * failure of an operation due to an non-existent file, either per se (ENOENT)
87 * or because its filename argument was illegal (ENAMETOOLONG, ENOTDIR).
89 #define NONEXISTENT(x) \
90 ((x) == ENOENT || (x) == ENAMETOOLONG || (x) == ENOTDIR)
94 * This rm is different from historic rm's, but is expected to match
95 * POSIX 1003.2 behavior. The most visible difference is that -f
96 * has two specific effects now, ignore non-existent files and force
100 main(int argc
, char *argv
[])
104 setprogname(argv
[0]);
105 (void)setlocale(LC_ALL
, "");
107 Pflag
= rflag
= xflag
= 0;
108 while ((ch
= getopt(argc
, argv
, "dfiPRrvWx")) != -1)
125 case 'r': /* Compatibility. */
150 (void)signal(SIGINFO
, progress
);
155 stdin_ok
= isatty(STDIN_FILENO
);
172 int flags
, needstat
, rval
;
175 * Remove a file hierarchy. If forcing removal (-f), or interactive
176 * (-i) or can't ask anyway (stdin_ok), don't stat the file.
178 needstat
= !fflag
&& !iflag
&& stdin_ok
;
181 * If the -i option is specified, the user can skip on the pre-order
182 * visit. The fts_number field flags skipped directories.
186 flags
= FTS_PHYSICAL
;
189 #if !defined(__minix)
191 flags
|= FTS_WHITEOUT
;
192 #endif /* !defined(__minix) */
195 if ((fts
= fts_open(argv
, flags
, NULL
)) == NULL
)
196 err(1, "fts_open failed");
197 while ((p
= fts_read(fts
)) != NULL
) {
199 switch (p
->fts_info
) {
201 if (!fflag
|| p
->fts_errno
!= ENOENT
) {
202 warnx("%s: %s", p
->fts_path
,
203 strerror(p
->fts_errno
));
208 errx(EXIT_FAILURE
, "%s: %s", p
->fts_path
,
209 strerror(p
->fts_errno
));
213 * FTS_NS: assume that if can't stat the file, it
216 if (fflag
&& NONEXISTENT(p
->fts_errno
))
219 warnx("%s: %s", p
->fts_path
,
220 strerror(p
->fts_errno
));
226 /* Pre-order: give user chance to skip. */
227 if (!fflag
&& !check(p
->fts_path
, p
->fts_accpath
,
229 (void)fts_set(fts
, p
, FTS_SKIP
);
230 p
->fts_number
= SKIPPED
;
234 /* Post-order: see if user skipped. */
235 if (p
->fts_number
== SKIPPED
)
240 !check(p
->fts_path
, p
->fts_accpath
, p
->fts_statp
))
246 * If we can't read or search the directory, may still be
247 * able to remove it. Don't print out the un{read,search}able
248 * message unless the remove fails.
250 switch (p
->fts_info
) {
253 rval
= rmdir(p
->fts_accpath
);
254 if (rval
!= 0 && fflag
&& errno
== ENOENT
)
258 #if !defined(__minix)
260 rval
= undelete(p
->fts_accpath
);
261 if (rval
!= 0 && fflag
&& errno
== ENOENT
)
264 #endif /* !defined(__minix) */
268 if (rm_overwrite(p
->fts_accpath
, NULL
))
271 rval
= unlink(p
->fts_accpath
);
272 if (rval
!= 0 && fflag
&& NONEXISTENT(errno
))
277 warn("%s", p
->fts_path
);
279 } else if (vflag
|| pinfo
) {
281 (void)printf("%s\n", p
->fts_path
);
297 * Remove a file. POSIX 1003.2 states that, by default, attempting
298 * to remove a directory is an error, so must always stat the file.
300 while ((f
= *argv
++) != NULL
) {
301 /* Assume if can't stat the file, can't unlink it. */
305 sb
.st_mode
= S_IWUSR
|S_IRUSR
;
307 sb
.st_mode
= S_IFWHT
|S_IWUSR
|S_IRUSR
;
308 #endif /* defined(__minix) */
310 if (!fflag
|| !NONEXISTENT(errno
)) {
317 warnx("%s: %s", f
, strerror(EEXIST
));
322 if (S_ISDIR(sb
.st_mode
) && !dflag
) {
323 warnx("%s: is a directory", f
);
327 #if !defined(__minix)
328 if (!fflag
&& !S_ISWHT(sb
.st_mode
) && !check(f
, f
, &sb
))
330 if (!fflag
&& !check(f
, f
, &sb
))
331 #endif /* !defined(__minix) */
333 #if !defined(__minix)
334 if (S_ISWHT(sb
.st_mode
))
337 #endif /* !defined(__minix) */
338 if (S_ISDIR(sb
.st_mode
))
342 if (rm_overwrite(f
, &sb
))
347 if (rval
&& (!fflag
|| !NONEXISTENT(errno
))) {
351 if (vflag
&& rval
== 0)
352 (void)printf("%s\n", f
);
358 * Overwrite the file 3 times with varying bit patterns.
360 * This is an expensive way to keep people from recovering files from your
361 * non-snapshotted FFS filesystems using fsdb(8). Really. No more. Only
362 * regular files are deleted, directories (and therefore names) will remain.
363 * Also, this assumes a fixed-block file system (like FFS, or a V7 or a
364 * System V file system). In a logging file system, you'll have to have
367 * A note on standards: U.S. DoD 5220.22-M "National Industrial Security
368 * Program Operating Manual" ("NISPOM") is often cited as a reference
369 * for clearing and sanitizing magnetic media. In fact, a matrix of
370 * "clearing" and "sanitization" methods for various media was given in
371 * Chapter 8 of the original 1995 version of NISPOM. However, that
372 * matrix was *removed from the document* when Chapter 8 was rewritten
373 * in Change 2 to the document in 2001. Recently, the Defense Security
374 * Service has made a revised clearing and sanitization matrix available
375 * in Microsoft Word format on the DSS web site. The standardization
376 * status of this matrix is unclear. Furthermore, one must be very
377 * careful when referring to this matrix: it is intended for the "clearing"
378 * prior to reuse or "sanitization" prior to disposal of *entire media*,
379 * not individual files and the only non-physically-destructive method of
380 * "sanitization" that is permitted for magnetic disks of any kind is
381 * specifically noted to be prohibited for media that have contained
384 * It is impossible to actually conform to the exact procedure given in
385 * the matrix if one is overwriting a file, not an entire disk, because
386 * the procedure requires examination and comparison of the disk's defect
387 * lists. Any program that claims to securely erase *files* while
388 * conforming to the standard, then, is not correct. We do as much of
389 * what the standard requires as can actually be done when erasing a
390 * file, rather than an entire disk; but that does not make us conformant.
392 * Furthermore, the presence of track caches, disk and controller write
393 * caches, and so forth make it extremely difficult to ensure that data
394 * have actually been written to the disk, particularly when one tries
395 * to repeatedly overwrite the same sectors in quick succession. We call
396 * fsync(), but controllers with nonvolatile cache, as well as IDE disks
397 * that just plain lie about the stable storage of data, will defeat this.
399 * Finally, widely respected research suggests that the given procedure
400 * is nowhere near sufficient to prevent the recovery of data using special
401 * forensic equipment and techniques that are well-known. This is
402 * presumably one reason that the matrix requires physical media destruction,
403 * rather than any technique of the sort attempted here, for secret data.
407 * rm_overwrite will return 0 on success.
411 rm_overwrite(char *file
, struct stat
*sbp
)
419 if (lstat(file
, &sb
))
423 if (!S_ISREG(sbp
->st_mode
))
426 /* flags to try to defeat hidden caching by forcing seeks */
427 if ((fd
= open(file
, O_RDWR
|O_SYNC
|O_RSYNC
|O_NOFOLLOW
, 0)) == -1)
430 if (fstat(fd
, &sb2
)) {
434 if (sb2
.st_dev
!= sbp
->st_dev
|| sb2
.st_ino
!= sbp
->st_ino
||
435 !S_ISREG(sb2
.st_mode
)) {
443 #define WRITE_PASS(mode, byte) do { \
446 char buf[8 * 1024]; \
448 if (fsync(fd) || lseek(fd, (off_t)0, SEEK_SET)) \
451 if (mode == THIS_BYTE) \
452 memset(buf, byte, sizeof(buf)); \
453 for (len = sbp->st_size; len > 0; len -= wlen) { \
454 if (mode == RAND_BYTES) { \
455 for (i = 0; i < sizeof(buf); \
456 i+= sizeof(u_int32_t)) \
457 *(int *)(buf + i) = arc4random(); \
459 wlen = len < (off_t)sizeof(buf) ? (size_t)len : sizeof(buf); \
460 if ((size_t)write(fd, buf, wlen) != wlen) \
463 sync(); /* another poke at hidden caches */ \
464 } while (/* CONSTCOND */ 0)
466 #define READ_PASS(byte) do { \
469 char pattern[8 * 1024]; \
470 char buf[8 * 1024]; \
472 if (fsync(fd) || lseek(fd, (off_t)0, SEEK_SET)) \
475 memset(pattern, byte, sizeof(pattern)); \
476 for(len = sbp->st_size; len > 0; len -= rlen) { \
477 rlen = len < (off_t)sizeof(buf) ? (size_t)len : sizeof(buf); \
478 if((size_t)read(fd, buf, rlen) != rlen) \
480 if(memcmp(buf, pattern, rlen)) \
483 sync(); /* another poke at hidden caches */ \
484 } while (/* CONSTCOND */ 0)
487 * DSS sanitization matrix "clear" for magnetic disks:
488 * option 'c' "Overwrite all addressable locations with a single
491 randint
= arc4random();
492 randchar
= *(char *)&randint
;
493 WRITE_PASS(THIS_BYTE
, randchar
);
496 * DSS sanitization matrix "sanitize" for magnetic disks:
497 * option 'd', sub 2 "Overwrite all addressable locations with a
498 * character, then its complement. Verify "complement" character
499 * was written successfully to all addressable locations, then
500 * overwrite all addressable locations with random characters; or
501 * verify third overwrite of random characters." The rest of the
502 * text in d-sub-2 specifies requirements for overwriting spared
503 * sectors; we cannot conform to it when erasing only a file, thus
504 * we do not conform to the standard.
507 /* 1. "a character" */
508 WRITE_PASS(THIS_BYTE
, 0xff);
510 /* 2. "its complement" */
511 WRITE_PASS(THIS_BYTE
, 0x00);
513 /* 3. "Verify 'complement' character" */
516 /* 4. "overwrite all addressable locations with random characters" */
518 WRITE_PASS(RAND_BYTES
, 0x00);
521 * As the file might be huge, and we note that this revision of
522 * the matrix says "random characters", not "a random character"
523 * as the original did, we do not verify the random-character
524 * write; the "or" in the standard allows this.
527 if (close(fd
) == -1) {
542 check(char *path
, char *name
, struct stat
*sp
)
547 /* Check -i first. */
549 (void)fprintf(stderr
, "remove '%s'? ", path
);
552 * If it's not a symbolic link and it's unwritable and we're
553 * talking to a terminal, ask. Symbolic links are excluded
554 * because their permissions are meaningless. Check stdin_ok
555 * first because we may not have stat'ed the file.
557 if (!stdin_ok
|| S_ISLNK(sp
->st_mode
) ||
558 !(access(name
, W_OK
) && (errno
!= ETXTBSY
)))
560 strmode(sp
->st_mode
, modep
);
563 "%s: -P was specified but file could not"
564 " be overwritten", path
);
567 (void)fprintf(stderr
, "override %s%s%s:%s for '%s'? ",
568 modep
+ 1, modep
[9] == ' ' ? "" : " ",
569 user_from_uid(sp
->st_uid
, 0),
570 group_from_gid(sp
->st_gid
, 0), path
);
572 (void)fflush(stderr
);
574 first
= ch
= getchar();
575 while (ch
!= '\n' && ch
!= EOF
)
577 return (first
== 'y' || first
== 'Y');
581 * POSIX.2 requires that if "." or ".." are specified as the basename
582 * portion of an operand, a diagnostic message be written to standard
583 * error and nothing more be done with such operands.
585 * Since POSIX.2 defines basename as the final portion of a path after
586 * trailing slashes have been removed, we'll remove them here.
588 #define ISDOT(a) ((a)[0] == '.' && (!(a)[1] || ((a)[1] == '.' && !(a)[2])))
590 checkdot(char **argv
)
592 char *p
, **save
, **t
;
596 for (t
= argv
; *t
;) {
597 /* strip trailing slashes */
598 p
= strrchr(*t
, '\0');
599 while (--p
> *t
&& *p
== '/')
602 /* extract basename */
603 if ((p
= strrchr(*t
, '/')) != NULL
)
610 warnx("\".\" and \"..\" may not be removed");
612 for (save
= t
; (t
[0] = t
[1]) != NULL
; ++t
)
624 (void)fprintf(stderr
, "usage: %s [-f|-i] [-dPRrvWx] file ...\n",
631 progress(int sig __unused
)