Include long-options.h
[platform/upstream/coreutils.git] / src / chmod.c
1 /* chmod -- change permission modes of files
2    Copyright (C) 89, 90, 91, 1995-1999 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 David MacKenzie <djm@gnu.ai.mit.edu> */
19
20 #include <config.h>
21 #include <stdio.h>
22 #include <getopt.h>
23 #include <sys/types.h>
24
25 #include "system.h"
26 #include "closeout.h"
27 #include "error.h"
28 #include "filemode.h"
29 #include "long-options.h"
30 #include "modechange.h"
31 #include "savedir.h"
32
33 enum Change_status
34 {
35   CH_SUCCEEDED,
36   CH_FAILED,
37   CH_NO_CHANGE_REQUESTED
38 };
39
40 enum Verbosity
41 {
42   /* Print a message for each file that is processed.  */
43   V_high,
44
45   /* Print a message for each file whose attributes we change.  */
46   V_changes_only,
47
48   /* Do not be verbose.  This is the default. */
49   V_off
50 };
51
52 void strip_trailing_slashes ();
53
54 static int change_dir_mode PARAMS ((const char *dir,
55                                     const struct mode_change *changes,
56                                     const struct stat *statp));
57
58 /* The name the program was run with. */
59 char *program_name;
60
61 /* If nonzero, change the modes of directories recursively. */
62 static int recurse;
63
64 /* If nonzero, force silence (no error messages). */
65 static int force_silent;
66
67 /* Level of verbosity.  */
68 static enum Verbosity verbosity = V_off;
69
70 /* The argument to the --reference option.  Use the owner and group IDs
71    of this file.  This file must exist.  */
72 static char *reference_file;
73
74 static struct option const long_options[] =
75 {
76   {"recursive", no_argument, 0, 'R'},
77   {"changes", no_argument, 0, 'c'},
78   {"silent", no_argument, 0, 'f'},
79   {"quiet", no_argument, 0, 'f'},
80   {"reference", required_argument, 0, CHAR_MAX + 1},
81   {"verbose", no_argument, 0, 'v'},
82   {0, 0, 0, 0}
83 };
84
85 /* Tell the user how/if the MODE of FILE has been changed.
86    CHANGED describes what (if anything) has happened. */
87
88 static void
89 describe_change (const char *file, short unsigned int mode,
90                  enum Change_status changed)
91 {
92   char perms[11];               /* "-rwxrwxrwx" ls-style modes. */
93   const char *fmt;
94
95   mode_string (mode, perms);
96   perms[10] = '\0';             /* `mode_string' does not null terminate. */
97   switch (changed)
98     {
99     case CH_SUCCEEDED:
100       fmt = _("mode of %s changed to %04o (%s)\n");
101       break;
102     case CH_FAILED:
103       fmt = _("failed to change mode of %s to %04o (%s)\n");
104       break;
105     case CH_NO_CHANGE_REQUESTED:
106       fmt = _("mode of %s retained as %04o (%s)\n");
107       break;
108     default:
109       abort ();
110     }
111   printf (fmt, file, mode & 07777, &perms[1]);
112 }
113
114 /* Change the mode of FILE according to the list of operations CHANGES.
115    If DEREF_SYMLINK is nonzero and FILE is a symbolic link, change the
116    mode of the referenced file.  If DEREF_SYMLINK is zero, ignore symbolic
117    links.  Return 0 if successful, 1 if errors occurred. */
118
119 static int
120 change_file_mode (const char *file, const struct mode_change *changes,
121                   const int deref_symlink)
122 {
123   struct stat file_stats;
124   unsigned short newmode;
125   int errors = 0;
126
127   if (lstat (file, &file_stats))
128     {
129       if (force_silent == 0)
130         error (0, errno, "%s", file);
131       return 1;
132     }
133 #ifdef S_ISLNK
134   if (S_ISLNK (file_stats.st_mode))
135     {
136       if (! deref_symlink)
137         return 0;
138       else
139         if (stat (file, &file_stats))
140           {
141             if (force_silent == 0)
142               error (0, errno, "%s", file);
143             return 1;
144           }
145     }
146 #endif
147
148   newmode = mode_adjust (file_stats.st_mode, changes);
149
150   if (newmode != (file_stats.st_mode & 07777))
151     {
152       int fail = chmod (file, (int) newmode);
153
154       if (verbosity == V_high || (verbosity == V_changes_only && !fail))
155         describe_change (file, newmode, (fail ? CH_FAILED : CH_SUCCEEDED));
156
157       if (fail)
158         {
159           if (force_silent == 0)
160             error (0, errno, "%s", file);
161           errors = 1;
162         }
163     }
164   else if (verbosity == V_high)
165     describe_change (file, newmode, CH_NO_CHANGE_REQUESTED);
166
167   if (recurse && S_ISDIR (file_stats.st_mode))
168     errors |= change_dir_mode (file, changes, &file_stats);
169   return errors;
170 }
171
172 /* Recursively change the modes of the files in directory DIR
173    according to the list of operations CHANGES.
174    STATP points to the results of lstat on DIR.
175    Return 0 if successful, 1 if errors occurred. */
176
177 static int
178 change_dir_mode (const char *dir, const struct mode_change *changes,
179                  const struct stat *statp)
180 {
181   char *name_space, *namep;
182   char *path;                   /* Full path of each entry to process. */
183   unsigned dirlength;           /* Length of DIR and '\0'. */
184   unsigned filelength;          /* Length of each pathname to process. */
185   unsigned pathlength;          /* Bytes allocated for `path'. */
186   int errors = 0;
187
188   errno = 0;
189   name_space = savedir (dir, (unsigned int) statp->st_size);
190   if (name_space == NULL)
191     {
192       if (errno)
193         {
194           if (force_silent == 0)
195             error (0, errno, "%s", dir);
196           return 1;
197         }
198       else
199         error (1, 0, _("virtual memory exhausted"));
200     }
201
202   dirlength = strlen (dir) + 1; /* + 1 is for the trailing '/'. */
203   pathlength = dirlength + 1;
204   /* Give `path' a dummy value; it will be reallocated before first use. */
205   path = xmalloc (pathlength);
206   strcpy (path, dir);
207   path[dirlength - 1] = '/';
208
209   for (namep = name_space; *namep; namep += filelength - dirlength)
210     {
211       filelength = dirlength + strlen (namep) + 1;
212       if (filelength > pathlength)
213         {
214           pathlength = filelength * 2;
215           path = xrealloc (path, pathlength);
216         }
217       strcpy (path + dirlength, namep);
218       errors |= change_file_mode (path, changes, 0);
219     }
220   free (path);
221   free (name_space);
222   return errors;
223 }
224
225 void
226 usage (int status)
227 {
228   if (status != 0)
229     fprintf (stderr, _("Try `%s --help' for more information.\n"),
230              program_name);
231   else
232     {
233       printf (_("\
234 Usage: %s [OPTION]... MODE[,MODE]... FILE...\n\
235   or:  %s [OPTION]... OCTAL_MODE FILE...\n\
236   or:  %s [OPTION]... --reference=RFILE FILE...\n\
237 "),
238               program_name, program_name, program_name);
239       printf (_("\
240 \n\
241   -c, --changes           like verbose but report only when a change is made\n\
242   -f, --silent, --quiet   suppress most error messages\n\
243   -v, --verbose           output a diagnostic for every file processed\n\
244       --reference=RFILE   use RFILE's mode instead of MODE values\n\
245   -R, --recursive         change files and directories recursively\n\
246       --help              display this help and exit\n\
247       --version           output version information and exit\n\
248 \n\
249 Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n\
250 one or more of the letters rwxXstugo.\n\
251 "));
252       puts (_("\nReport bugs to <bug-fileutils@gnu.org>."));
253       close_stdout ();
254     }
255   exit (status);
256 }
257
258 /* Parse the ASCII mode given on the command line into a linked list
259    of `struct mode_change' and apply that to each file argument. */
260
261 int
262 main (int argc, char **argv)
263 {
264   struct mode_change *changes;
265   int errors = 0;
266   int modeind = 0;              /* Index of the mode argument in `argv'. */
267   int thisind;
268   int c;
269
270   program_name = argv[0];
271   setlocale (LC_ALL, "");
272   bindtextdomain (PACKAGE, LOCALEDIR);
273   textdomain (PACKAGE);
274
275   parse_long_options (argc, argv, "chmod", GNU_PACKAGE, VERSION,
276                       "David MacKenzie", usage);
277
278   recurse = force_silent = 0;
279
280   while (1)
281     {
282       thisind = optind ? optind : 1;
283
284       c = getopt_long (argc, argv, "RcfvrwxXstugoa,+-=", long_options, NULL);
285       if (c == -1)
286         break;
287
288       switch (c)
289         {
290         case 0:
291           break;
292         case 'r':
293         case 'w':
294         case 'x':
295         case 'X':
296         case 's':
297         case 't':
298         case 'u':
299         case 'g':
300         case 'o':
301         case 'a':
302         case ',':
303         case '+':
304         case '-':
305         case '=':
306           if (modeind != 0 && modeind != thisind)
307             error (1, 0, _("invalid mode"));
308           modeind = thisind;
309           break;
310         case CHAR_MAX + 1:
311           reference_file = optarg;
312           break;
313         case 'R':
314           recurse = 1;
315           break;
316         case 'c':
317           verbosity = V_changes_only;
318           break;
319         case 'f':
320           force_silent = 1;
321           break;
322         case 'v':
323           verbosity = V_high;
324           break;
325         default:
326           usage (1);
327         }
328     }
329
330   if (modeind == 0 && reference_file == NULL)
331     modeind = optind++;
332
333   if (optind >= argc)
334     {
335       error (0, 0, _("too few arguments"));
336       usage (1);
337     }
338
339   changes = (reference_file ? mode_create_from_ref (reference_file)
340              : mode_compile (argv[modeind], MODE_MASK_ALL));
341
342   if (changes == MODE_INVALID)
343     error (1, 0, _("invalid mode"));
344   else if (changes == MODE_MEMORY_EXHAUSTED)
345     error (1, 0, _("virtual memory exhausted"));
346   else if (changes == MODE_BAD_REFERENCE)
347     error (1, errno, "%s", reference_file);
348
349   for (; optind < argc; ++optind)
350     {
351       strip_trailing_slashes (argv[optind]);
352       errors |= change_file_mode (argv[optind], changes, 1);
353     }
354
355   if (verbosity != V_off)
356     close_stdout ();
357   exit (errors);
358 }