(main): Don't strip trailing slashes; POSIX doesn't allow it here.
[platform/upstream/coreutils.git] / src / rm.c
1 /* `rm' file deletion utility for GNU.
2    Copyright (C) 88, 90, 91, 1994-2001 Free Software Foundation, Inc.
3
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)
7    any later version.
8
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.
13
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.  */
17
18 /* Written by Paul Rubin, David MacKenzie, and Richard Stallman.
19    Reworked to use chdir and hash tables by Jim Meyering.  */
20
21 /* Implementation overview:
22
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.
28
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.
33
34    RM detects directory cycles by maintaining a table of the currently
35    active directories.  See the description of active_dir_map in remove.c.
36
37    RM is careful to avoid forming full file names whenever possible.
38    A full file name is formed only when it is about to be used -- e.g.
39    in a diagnostic or in an interactive-mode prompt.
40
41    RM minimizes the number of lstat system calls it makes.  On systems
42    that have valid d_type data in directory entries, RM makes only one
43    lstat call per command line argument -- regardless of the depth of
44    the hierarchy.  */
45
46 #include <config.h>
47 #include <stdio.h>
48 #include <getopt.h>
49 #include <sys/types.h>
50 #include <assert.h>
51
52 #include "system.h"
53 #include "error.h"
54 #include "remove.h"
55 #include "save-cwd.h"
56
57 /* The official name of this program (e.g., no `g' prefix).  */
58 #define PROGRAM_NAME "rm"
59
60 #define AUTHORS \
61   "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering"
62
63 /* Name this program was run with.  */
64 char *program_name;
65
66 static struct option const long_opts[] =
67 {
68   {"directory", no_argument, NULL, 'd'},
69   {"force", no_argument, NULL, 'f'},
70   {"interactive", no_argument, NULL, 'i'},
71   {"recursive", no_argument, NULL, 'r'},
72   {"verbose", no_argument, NULL, 'v'},
73   {GETOPT_HELP_OPTION_DECL},
74   {GETOPT_VERSION_OPTION_DECL},
75   {NULL, 0, NULL, 0}
76 };
77
78 void
79 usage (int status)
80 {
81   if (status != 0)
82     fprintf (stderr, _("Try `%s --help' for more information.\n"),
83              program_name);
84   else
85     {
86       printf (_("Usage: %s [OPTION]... FILE...\n"), program_name);
87       printf (_("\
88 Remove (unlink) the FILE(s).\n\
89 \n\
90   -d, --directory       unlink directory, even if non-empty (super-user only)\n\
91   -f, --force           ignore nonexistent files, never prompt\n\
92   -i, --interactive     prompt before any removal\n\
93   -r, -R, --recursive   remove the contents of directories recursively\n\
94   -v, --verbose         explain what is being done\n\
95       --help            display this help and exit\n\
96       --version         output version information and exit\n\
97 \n\
98 To remove a file whose name starts with a `-', for example `-foo',\n\
99 use one of these commands:\n\
100   %s -- -foo\n\
101 \n\
102   %s ./-foo\n\
103 \n\
104 Note that if you use rm to remove a file, it is usually possible to recover\n\
105 the contents of that file.  If you want more assurance that the contents are\n\
106 truly unrecoverable, consider using shred.\n\
107 "),
108               program_name, program_name);
109       puts (_("\nReport bugs to <bug-fileutils@gnu.org>."));
110     }
111   exit (status);
112 }
113
114 static void
115 rm_option_init (struct rm_options *x)
116 {
117   x->unlink_dirs = 0;
118   x->ignore_missing_files = 0;
119   x->interactive = 0;
120   x->recursive = 0;
121   x->stdin_tty = isatty (STDIN_FILENO);
122   x->verbose = 0;
123 }
124
125 int
126 main (int argc, char **argv)
127 {
128   struct rm_options x;
129   int fail = 0;
130   int c;
131
132   program_name = argv[0];
133   setlocale (LC_ALL, "");
134   bindtextdomain (PACKAGE, LOCALEDIR);
135   textdomain (PACKAGE);
136
137   atexit (close_stdout);
138
139   rm_option_init (&x);
140
141   while ((c = getopt_long (argc, argv, "dfirvR", long_opts, NULL)) != -1)
142     {
143       switch (c)
144         {
145         case 0:         /* Long option.  */
146           break;
147         case 'd':
148           x.unlink_dirs = 1;
149           break;
150         case 'f':
151           x.interactive = 0;
152           x.ignore_missing_files = 1;
153           break;
154         case 'i':
155           x.interactive = 1;
156           x.ignore_missing_files = 0;
157           break;
158         case 'r':
159         case 'R':
160           x.recursive = 1;
161           break;
162         case 'v':
163           x.verbose = 1;
164           break;
165         case_GETOPT_HELP_CHAR;
166         case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
167         default:
168           usage (1);
169         }
170     }
171
172   if (optind == argc)
173     {
174       if (x.ignore_missing_files)
175         exit (0);
176       else
177         {
178           error (0, 0, _("too few arguments"));
179           usage (1);
180         }
181     }
182
183   remove_init ();
184
185   for (; optind < argc; optind++)
186     {
187       struct File_spec fs;
188       enum RM_status status;
189
190       fspec_init_file (&fs, argv[optind]);
191       status = rm (&fs, 1, &x);
192       assert (VALID_STATUS (status));
193       if (status == RM_ERROR)
194         fail = 1;
195     }
196
197   remove_fini ();
198
199   exit (fail);
200 }