1 /* `rm' file deletion utility for GNU.
2 Copyright (C) 88, 90, 91, 1994-2003 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /* Written by Paul Rubin, David MacKenzie, and Richard Stallman.
19 Reworked to use chdir and avoid recursion by Jim Meyering. */
21 /* Implementation overview:
23 In the `usual' case, RM saves no state for directories it is processing.
24 When a removal fails (either due to an error or to an interactive `no'
25 reply), the failure is noted (see description of `ht' in remove.c's
26 remove_cwd_entries function) so that when/if the containing directory
27 is reopened, RM doesn't try to remove the entry again.
29 RM may delete arbitrarily deep hierarchies -- even ones in which file
30 names (from root to leaf) are longer than the system-imposed maximum.
31 It does this by using chdir to change to each directory in turn before
32 removing the entries in that directory.
34 RM detects directory cycles lazily. See lib/cycle-check.c.
36 RM is careful to avoid forming full file names whenever possible.
37 A full file name is formed only when it is about to be used -- e.g.
38 in a diagnostic or in an interactive-mode prompt.
40 RM minimizes the number of lstat system calls it makes. On systems
41 that have valid d_type data in directory entries, RM makes only one
42 lstat call per command line argument -- regardless of the depth of
48 #include <sys/types.h>
56 #include "root-dev-ino.h"
59 /* The official name of this program (e.g., no `g' prefix). */
60 #define PROGRAM_NAME "rm"
63 "Paul Rubin", "David MacKenzie, Richard Stallman", "Jim Meyering"
65 /* Name this program was run with. */
68 /* For long options that have no equivalent short option, use a
69 non-character as a pseudo short option, starting with CHAR_MAX + 1. */
72 NO_PRESERVE_ROOT
= CHAR_MAX
+ 1,
74 PRESUME_INPUT_TTY_OPTION
77 static struct option
const long_opts
[] =
79 {"directory", no_argument
, NULL
, 'd'},
80 {"force", no_argument
, NULL
, 'f'},
81 {"interactive", no_argument
, NULL
, 'i'},
83 {"no-preserve-root", no_argument
, 0, NO_PRESERVE_ROOT
},
84 {"preserve-root", no_argument
, 0, PRESERVE_ROOT
},
86 /* This is solely for testing. Do not document. */
87 /* It is relatively difficult to ensure that there is a tty on stdin.
88 Since rm acts differently depending on that, without this option,
89 it'd be harder to test the parts of rm that depend on that setting. */
90 {"presume-input-tty", no_argument
, NULL
, PRESUME_INPUT_TTY_OPTION
},
92 {"recursive", no_argument
, NULL
, 'r'},
93 {"verbose", no_argument
, NULL
, 'v'},
94 {GETOPT_HELP_OPTION_DECL
},
95 {GETOPT_VERSION_OPTION_DECL
},
103 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
107 char *base
= base_name (program_name
);
108 printf (_("Usage: %s [OPTION]... FILE...\n"), program_name
);
110 Remove (unlink) the FILE(s).\n\
112 -d, --directory unlink FILE, even if it is a non-empty directory\n\
113 (super-user only; this works only if your system\n\
114 supports `unlink' for nonempty directories)\n\
115 -f, --force ignore nonexistent files, never prompt\n\
116 -i, --interactive prompt before any removal\n\
119 --no-preserve-root do not treat `/' specially (the default)\n\
120 --preserve-root fail to operate recursively on `/'\n\
121 -r, -R, --recursive remove the contents of directories recursively\n\
122 -v, --verbose explain what is being done\n\
124 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
125 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
128 To remove a file whose name starts with a `-', for example `-foo',\n\
129 use one of these commands:\n\
137 Note that if you use rm to remove a file, it is usually possible to recover\n\
138 the contents of that file. If you want more assurance that the contents are\n\
139 truly unrecoverable, consider using shred.\n\
141 printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT
);
147 rm_option_init (struct rm_options
*x
)
150 x
->ignore_missing_files
= 0;
153 x
->root_dev_ino
= NULL
;
154 x
->stdin_tty
= isatty (STDIN_FILENO
);
159 main (int argc
, char **argv
)
161 bool preserve_root
= false;
166 initialize_main (&argc
, &argv
);
167 program_name
= argv
[0];
168 setlocale (LC_ALL
, "");
169 bindtextdomain (PACKAGE
, LOCALEDIR
);
170 textdomain (PACKAGE
);
172 atexit (close_stdout
);
176 while ((c
= getopt_long (argc
, argv
, "dfirvR", long_opts
, NULL
)) != -1)
180 case 0: /* Long option. */
189 x
.ignore_missing_files
= 1;
194 x
.ignore_missing_files
= 0;
202 case NO_PRESERVE_ROOT
:
203 preserve_root
= false;
207 preserve_root
= true;
210 case PRESUME_INPUT_TTY_OPTION
:
218 case_GETOPT_HELP_CHAR
;
219 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
221 usage (EXIT_FAILURE
);
227 if (x
.ignore_missing_files
)
231 error (0, 0, _("too few arguments"));
232 usage (EXIT_FAILURE
);
236 if (x
.recursive
&& preserve_root
)
238 static struct dev_ino dev_ino_buf
;
239 x
.root_dev_ino
= get_root_dev_ino (&dev_ino_buf
);
240 if (x
.root_dev_ino
== NULL
)
241 error (EXIT_FAILURE
, errno
, _("failed to get attributes of %s"),
246 size_t n_files
= argc
- optind
;
247 char const *const *file
= (char const *const *) argv
+ optind
;
249 enum RM_status status
= rm (n_files
, file
, &x
);
250 assert (VALID_STATUS (status
));
251 if (status
== RM_ERROR
)