]>
git.saurik.com Git - apple/file_cmds.git/blob - rm/rm.c
   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 
  34 #include <sys/cdefs.h> 
  36 __used 
static const char copyright
[] = 
  37 "@(#) Copyright (c) 1990, 1993, 1994\n\ 
  38         The Regents of the University of California.  All rights reserved.\n"; 
  43 static char sccsid
[] = "@(#)rm.c        8.5 (Berkeley) 4/18/94"; 
  45 __used 
static const char rcsid
[] = 
  46   "$FreeBSD: src/bin/rm/rm.c,v 1.33 2001/06/13 15:01:25 ru Exp $"; 
  51 #include <sys/param.h> 
  52 #include <sys/mount.h> 
  66 #include <removefile.h> 
  69 #include "get_compat.h" 
  71 #ifndef AT_REMOVEDIR_DATALESS 
  72 #define AT_REMOVEDIR_DATALESS   0x0100  /* Remove a dataless directory without materializing first */ 
  75 #define COMPAT_MODE(func, mode) 1 
  78 int dflag
, eval
, fflag
, iflag
, Pflag
, vflag
, Wflag
, stdin_ok
; 
  81 int     check 
__P((char *, char *, struct stat 
*)); 
  82 int checkdir 
__P((char *)); 
  83 int             yes_or_no 
__P((void)); 
  84 void    checkdot 
__P((char **)); 
  85 void    rm_file 
__P((char **)); 
  86 void    rm_overwrite 
__P((char *, struct stat 
*)); 
  87 void    rm_tree 
__P((char **)); 
  88 void    usage 
__P((void)); 
  92  *      This rm is different from historic rm's, but is expected to match 
  93  *      POSIX 1003.2 behavior.  The most visible difference is that -f 
  94  *      has two specific effects now, ignore non-existent files and force 
 109          * Test for the special case where the utility is called as 
 110          * "unlink", for which the functionality provided is greatly 
 113         if ((p 
= rindex(argv
[0], '/')) == NULL
) 
 118         if (strcmp(p
, "unlink") == 0) { 
 127         while ((ch 
= getopt(argc
, argv
, "dfiPRrvW")) != -1) 
 144                 case 'r':                       /* Compatibility. */ 
 168                 stdin_ok 
= isatty(STDIN_FILENO
); 
 188         int wantConformance 
= COMPAT_MODE("bin/rm", "unix2003"); 
 190          * Remove a file hierarchy.  If forcing removal (-f), or interactive 
 191          * (-i) or can't ask anyway (stdin_ok), don't stat the file. 
 193         needstat 
= !uid 
|| (!fflag 
&& !iflag 
&& stdin_ok
); 
 196          * If the -i option is specified, the user can skip on the pre-order 
 197          * visit.  The fts_number field flags skipped directories. 
 201         flags 
= FTS_PHYSICAL
; 
 205                 flags 
|= FTS_WHITEOUT
; 
 206         if (!(fts 
= fts_open(argv
, flags
, NULL
))) { 
 207                 if (fflag 
&& errno 
== ENOENT
) 
 211         while ((p 
= fts_read(fts
)) != NULL
) { 
 212                 switch (p
->fts_info
) { 
 214                         if (!fflag 
|| p
->fts_errno 
!= ENOENT
) { 
 216                                     p
->fts_path
, strerror(p
->fts_errno
)); 
 221                         errx(1, "%s: %s", p
->fts_path
, strerror(p
->fts_errno
)); 
 224                          * FTS_NS: assume that if can't stat the file, it 
 229                         if (!fflag 
|| p
->fts_errno 
!= ENOENT
) { 
 231                                     p
->fts_path
, strerror(p
->fts_errno
)); 
 236                         /* Pre-order: give user chance to skip. */ 
 237                         /* In conformance mode the user is prompted to skip processing the contents. 
 238                          * Then the option to delete the dir is presented post-order */ 
 240                                         ( (wantConformance 
&& !checkdir(p
->fts_path
)) || 
 241                                           (!wantConformance 
&& !check(p
->fts_path
, p
->fts_accpath
, p
->fts_statp
)) 
 244                                 (void)fts_set(fts
, p
, FTS_SKIP
); 
 245                                 p
->fts_number 
= SKIPPED
; 
 248                                  (p
->fts_statp
->st_flags 
& (UF_APPEND
|UF_IMMUTABLE
)) && 
 249                                  !(p
->fts_statp
->st_flags 
& (SF_APPEND
|SF_IMMUTABLE
)) && 
 250                                  chflags(p
->fts_accpath
, 
 251                                          p
->fts_statp
->st_flags 
&= ~(UF_APPEND
|UF_IMMUTABLE
)) < 0) 
 255                         /* Post-order: see if user skipped. */ 
 256                         if(p
->fts_number 
== SKIPPED
)/*in legacy mode, the user was prompted pre-order */ 
 258                         else if(wantConformance
) 
 260                                 /* delete directory if force is on, or if user answers Y to prompt */ 
 261                                 if(fflag 
|| check(p
->fts_path
, p
->fts_accpath
, p
->fts_statp
))  
 269                             !check(p
->fts_path
, p
->fts_accpath
, p
->fts_statp
)) 
 275                     (p
->fts_statp
->st_flags 
& (UF_APPEND
|UF_IMMUTABLE
)) && 
 276                     !(p
->fts_statp
->st_flags 
& (SF_APPEND
|SF_IMMUTABLE
))) 
 277                         rval 
= chflags(p
->fts_accpath
, 
 278                                        p
->fts_statp
->st_flags 
&= ~(UF_APPEND
|UF_IMMUTABLE
)); 
 281                          * If we can't read or search the directory, may still be 
 282                          * able to remove it.  Don't print out the un{read,search}able 
 283                          * message unless the remove fails. 
 285                         switch (p
->fts_info
) { 
 289                                 if (p
->fts_statp 
!= NULL 
&& (p
->fts_statp
->st_flags 
& SF_DATALESS
) != 0) 
 290                                         rval 
= unlinkat(AT_FDCWD
, p
->fts_accpath
, AT_REMOVEDIR_DATALESS
); 
 292                                         rval 
= rmdir(p
->fts_accpath
); 
 295                                 rval 
= rmdir(p
->fts_accpath
); 
 297                                 if (rval 
== 0 || (fflag 
&& errno 
== ENOENT
)) { 
 298                                         if (rval 
== 0 && vflag
) 
 306                                 rval 
= undelete(p
->fts_accpath
); 
 307                                 if (rval 
== 0 && (fflag 
&& errno 
== ENOENT
)) { 
 318                                         if (removefile(p
->fts_accpath
, NULL
, REMOVEFILE_SECURE_7_PASS
)) /* overwrites and unlinks */ 
 321                                         rval 
= unlink(p
->fts_accpath
); 
 322 #else  /* !__APPLE_ */ 
 324                                         rm_overwrite(p
->fts_accpath
, NULL
); 
 325                                 rval 
= unlink(p
->fts_accpath
); 
 326 #endif  /* __APPLE__ */ 
 327                                 if (rval 
== 0 || (fflag 
&& errno 
== ENOENT
)) { 
 328                                         if (rval 
== 0 && vflag
) 
 336                 warn("%s", p
->fts_path
); 
 353          * Remove a file.  POSIX 1003.2 states that, by default, attempting 
 354          * to remove a directory is an error, so must always stat the file. 
 356         while ((f 
= *argv
++) != NULL
) { 
 357                 /* Assume if can't stat the file, can't unlink it. */ 
 360                                 sb
.st_mode 
= S_IFWHT
|S_IWUSR
|S_IRUSR
; 
 362                                 if (!fflag 
|| errno 
!= ENOENT
) { 
 369                         warnx("%s: %s", f
, strerror(EEXIST
)); 
 374                 if (S_ISDIR(sb
.st_mode
) && !dflag
) { 
 375                         warnx("%s: is a directory", f
); 
 379                 if (!fflag 
&& !S_ISWHT(sb
.st_mode
) && !check(f
, f
, &sb
)) 
 383                     (sb
.st_flags 
& (UF_APPEND
|UF_IMMUTABLE
)) && 
 384                     !(sb
.st_flags 
& (SF_APPEND
|SF_IMMUTABLE
))) 
 385                         rval 
= chflags(f
, sb
.st_flags 
& ~(UF_APPEND
|UF_IMMUTABLE
)); 
 387                         if (S_ISWHT(sb
.st_mode
)) 
 389                         else if (S_ISDIR(sb
.st_mode
)) 
 394                                         if (removefile(f
, NULL
, REMOVEFILE_SECURE_7_PASS
)) /* overwrites and unlinks */ 
 398 #else  /* !__APPLE__ */ 
 400                                         rm_overwrite(f
, &sb
); 
 402 #endif  /* __APPLE__ */ 
 405                 if (rval 
&& (!fflag 
|| errno 
!= ENOENT
)) { 
 409                 if (vflag 
&& rval 
== 0) 
 410                         (void)printf("%s\n", f
); 
 416  *      Overwrite the file 3 times with varying bit patterns. 
 419  * This is a cheap way to *really* delete files.  Note that only regular 
 420  * files are deleted, directories (and therefore names) will remain. 
 421  * Also, this assumes a fixed-block file system (like FFS, or a V7 or a 
 422  * System V file system).  In a logging file system, you'll have to have 
 426 rm_overwrite(file
, sbp
) 
 437                 if (lstat(file
, &sb
)) 
 441         if (!S_ISREG(sbp
->st_mode
)) 
 443         if ((fd 
= open(file
, O_WRONLY
, 0)) == -1) 
 445         if (fstatfs(fd
, &fsb
) == -1) 
 447         bsize 
= MAX(fsb
.f_iosize
, 1024); 
 448         if ((buf 
= malloc(bsize
)) == NULL
) 
 451 #define PASS(byte) {                                                    \ 
 452         memset(buf, byte, bsize);                                       \ 
 453         for (len = sbp->st_size; len > 0; len -= wlen) {                \ 
 454                 wlen = len < bsize ? (int)len : bsize;                  \ 
 455                 if (write(fd, buf, wlen) != wlen)                       \ 
 460         if (fsync(fd
) || lseek(fd
, (off_t
)0, SEEK_SET
)) 
 463         if (fsync(fd
) || lseek(fd
, (off_t
)0, SEEK_SET
)) 
 466         if (!fsync(fd
) && !close(fd
)) { 
 481         char resp
[] = {'\0', '\0'}; 
 483         (void)fflush(stderr
); 
 485         /* Load user specified locale */ 
 486         setlocale(LC_MESSAGES
, ""); 
 488         first 
= ch 
= getchar(); 
 489         while (ch 
!= '\n' && ch 
!= EOF
) 
 492         /* only care about the first character */ 
 495         return (rpmatch(resp
) == 1); 
 503                 return 1;       //if not interactive, process directory's contents 
 504         (void)fprintf(stderr
, "examine files in directory %s? ", path
); 
 509 check(path
, name
, sp
) 
 513         char modep
[15], *flagsp
; 
 515         /* Check -i first. */ 
 517                 (void)fprintf(stderr
, "remove %s? ", path
); 
 520                  * If it's not a symbolic link and it's unwritable and we're 
 521                  * talking to a terminal, ask.  Symbolic links are excluded 
 522                  * because their permissions are meaningless.  Check stdin_ok 
 523                  * first because we may not have stat'ed the file. 
 525                 if (!stdin_ok 
|| S_ISLNK(sp
->st_mode
) || 
 526                     (!access(name
, W_OK
) && 
 527                     !(sp
->st_flags 
& (SF_APPEND
|SF_IMMUTABLE
)) && 
 528                     (!(sp
->st_flags 
& (UF_APPEND
|UF_IMMUTABLE
)) || !uid
))) 
 530                 strmode(sp
->st_mode
, modep
); 
 531                 if ((flagsp 
= fflagstostr(sp
->st_flags
)) == NULL
) 
 533                 (void)fprintf(stderr
, "override %s%s%s/%s %s%sfor %s? ", 
 534                     modep 
+ 1, modep
[9] == ' ' ? "" : " ", 
 535                     user_from_uid(sp
->st_uid
, 0), 
 536                     group_from_gid(sp
->st_gid
, 0), 
 537                     *flagsp 
? flagsp 
: "", *flagsp 
? " " : "",  
 545 #define ISDOT(a)        ((a)[0] == '.' && (!(a)[1] || ((a)[1] == '.' && !(a)[2]))) 
 550         char *p
, **save
, **t
; 
 554         for (t 
= argv
; *t
;) { 
 555                 size_t len 
= strlen(*t
); 
 558                 if ((p 
= strrchr(*t
, '/')) != NULL
) { 
 559                         if (p
[1] == '\0') { // one or more trailing / -- treat as if not present 
 560                                 for (; (p 
> *t
) && (p
[-1] == '/');) { 
 564                                 strlcpy(truncated
, *t
, len
); 
 565                                 p 
= strrchr(truncated
, '/'); 
 579                                 warnx("\".\" and \"..\" may not be removed"); 
 581                         for (save 
= t
; (t
[0] = t
[1]) != NULL
; ++t
) 
 593         (void)fprintf(stderr
, "%s\n%s\n", 
 594             "usage: rm [-f | -i] [-dPRrvW] file ...",