*** empty log message ***
[platform/upstream/coreutils.git] / src / chmod.c
1 /* chmod -- change permission modes of files
2    Copyright (C) 89, 90, 91, 1995-2006 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 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 "dev-ino.h"
27 #include "dirname.h"
28 #include "error.h"
29 #include "filemode.h"
30 #include "modechange.h"
31 #include "openat.h"
32 #include "quote.h"
33 #include "quotearg.h"
34 #include "root-dev-ino.h"
35 #include "xfts.h"
36
37 /* The official name of this program (e.g., no `g' prefix).  */
38 #define PROGRAM_NAME "chmod"
39
40 #define AUTHORS "David MacKenzie", "Jim Meyering"
41
42 enum Change_status
43 {
44   CH_NOT_APPLIED,
45   CH_SUCCEEDED,
46   CH_FAILED,
47   CH_NO_CHANGE_REQUESTED
48 };
49
50 enum Verbosity
51 {
52   /* Print a message for each file that is processed.  */
53   V_high,
54
55   /* Print a message for each file whose attributes we change.  */
56   V_changes_only,
57
58   /* Do not be verbose.  This is the default. */
59   V_off
60 };
61
62 /* The name the program was run with. */
63 char *program_name;
64
65 /* The desired change to the mode.  */
66 static struct mode_change *change;
67
68 /* The initial umask value, if it might be needed.  */
69 static mode_t umask_value;
70
71 /* If true, change the modes of directories recursively. */
72 static bool recurse;
73
74 /* If true, force silence (no error messages). */
75 static bool force_silent;
76
77 /* If true, diagnose surprises from naive misuses like "chmod -r file".
78    POSIX allows diagnostics here, as portable code is supposed to use
79    "chmod -- -r file".  */
80 static bool diagnose_surprises;
81
82 /* Level of verbosity.  */
83 static enum Verbosity verbosity = V_off;
84
85 /* Pointer to the device and inode numbers of `/', when --recursive.
86    Otherwise NULL.  */
87 static struct dev_ino *root_dev_ino;
88
89 /* For long options that have no equivalent short option, use a
90    non-character as a pseudo short option, starting with CHAR_MAX + 1.  */
91 enum
92 {
93   NO_PRESERVE_ROOT = CHAR_MAX + 1,
94   PRESERVE_ROOT,
95   REFERENCE_FILE_OPTION
96 };
97
98 static struct option const long_options[] =
99 {
100   {"changes", no_argument, NULL, 'c'},
101   {"recursive", no_argument, NULL, 'R'},
102   {"no-preserve-root", no_argument, NULL, NO_PRESERVE_ROOT},
103   {"preserve-root", no_argument, NULL, PRESERVE_ROOT},
104   {"quiet", no_argument, NULL, 'f'},
105   {"reference", required_argument, NULL, REFERENCE_FILE_OPTION},
106   {"silent", no_argument, NULL, 'f'},
107   {"verbose", no_argument, NULL, 'v'},
108   {GETOPT_HELP_OPTION_DECL},
109   {GETOPT_VERSION_OPTION_DECL},
110   {NULL, 0, NULL, 0}
111 };
112
113 /* Return true if the chmodable permission bits of FILE changed.
114    The old mode was OLD_MODE, but it was changed to NEW_MODE.  */
115
116 static bool
117 mode_changed (char const *file, mode_t old_mode, mode_t new_mode)
118 {
119   if (new_mode & (S_ISUID | S_ISGID | S_ISVTX))
120     {
121       /* The new mode contains unusual bits that the call to chmod may
122          have silently cleared.  Check whether they actually changed.  */
123
124       struct stat new_stats;
125
126       if (stat (file, &new_stats) != 0)
127         {
128           if (!force_silent)
129             error (0, errno, _("getting new attributes of %s"), quote (file));
130           return false;
131         }
132
133       new_mode = new_stats.st_mode;
134     }
135
136   return ((old_mode ^ new_mode) & CHMOD_MODE_BITS) != 0;
137 }
138
139 /* Tell the user how/if the MODE of FILE has been changed.
140    CHANGED describes what (if anything) has happened. */
141
142 static void
143 describe_change (const char *file, mode_t mode,
144                  enum Change_status changed)
145 {
146   char perms[12];               /* "-rwxrwxrwx" ls-style modes. */
147   const char *fmt;
148
149   if (changed == CH_NOT_APPLIED)
150     {
151       printf (_("neither symbolic link %s nor referent has been changed\n"),
152               quote (file));
153       return;
154     }
155
156   strmode (mode, perms);
157   perms[10] = '\0';             /* Remove trailing space.  */
158   switch (changed)
159     {
160     case CH_SUCCEEDED:
161       fmt = _("mode of %s changed to %04lo (%s)\n");
162       break;
163     case CH_FAILED:
164       fmt = _("failed to change mode of %s to %04lo (%s)\n");
165       break;
166     case CH_NO_CHANGE_REQUESTED:
167       fmt = _("mode of %s retained as %04lo (%s)\n");
168       break;
169     default:
170       abort ();
171     }
172   printf (fmt, quote (file),
173           (unsigned long int) (mode & CHMOD_MODE_BITS), &perms[1]);
174 }
175
176 /* Change the mode of FILE.
177    Return true if successful.  This function is called
178    once for every file system object that fts encounters.  */
179
180 static bool
181 process_file (FTS *fts, FTSENT *ent)
182 {
183   char const *file_full_name = ent->fts_path;
184   char const *file = ent->fts_accpath;
185   const struct stat *file_stats = ent->fts_statp;
186   mode_t old_mode IF_LINT (= 0);
187   mode_t new_mode IF_LINT (= 0);
188   bool ok = true;
189   bool chmod_succeeded = false;
190
191   switch (ent->fts_info)
192     {
193     case FTS_DP:
194       return true;
195
196     case FTS_NS:
197       error (0, ent->fts_errno, _("cannot access %s"), quote (file_full_name));
198       ok = false;
199       break;
200
201     case FTS_ERR:
202       error (0, ent->fts_errno, _("%s"), quote (file_full_name));
203       ok = false;
204       break;
205
206     case FTS_DNR:
207       error (0, ent->fts_errno, _("cannot read directory %s"),
208              quote (file_full_name));
209       ok = false;
210       break;
211
212     default:
213       break;
214     }
215
216   if (ok && ROOT_DEV_INO_CHECK (root_dev_ino, file_stats))
217     {
218       ROOT_DEV_INO_WARN (file_full_name);
219       ok = false;
220     }
221
222   if (ok)
223     {
224       old_mode = file_stats->st_mode;
225       new_mode = mode_adjust (old_mode, change, umask_value);
226
227       if (! S_ISLNK (old_mode))
228         {
229           if (chmodat (fts->fts_cwd_fd, file, new_mode) == 0)
230             chmod_succeeded = true;
231           else
232             {
233               if (! force_silent)
234                 error (0, errno, _("changing permissions of %s"),
235                        quote (file_full_name));
236               ok = false;
237             }
238         }
239     }
240
241   if (verbosity != V_off)
242     {
243       bool changed = (chmod_succeeded
244                       && mode_changed (file, old_mode, new_mode));
245
246       if (changed || verbosity == V_high)
247         {
248           enum Change_status ch_status =
249             (!ok ? CH_FAILED
250              : !chmod_succeeded ? CH_NOT_APPLIED
251              : !changed ? CH_NO_CHANGE_REQUESTED
252              : CH_SUCCEEDED);
253           describe_change (file_full_name, new_mode, ch_status);
254         }
255     }
256
257   if (chmod_succeeded & diagnose_surprises)
258     {
259       mode_t naively_expected_mode = mode_adjust (old_mode, change, 0);
260       if (new_mode & ~naively_expected_mode)
261         {
262           char new_perms[12];
263           char naively_expected_perms[12];
264           strmode (new_mode, new_perms);
265           strmode (naively_expected_mode, naively_expected_perms);
266           new_perms[10] = naively_expected_perms[10] = '\0';
267           error (0, 0,
268                  _("%s: new permissions are %s, not %s"),
269                  quotearg_colon (file_full_name),
270                  new_perms + 1, naively_expected_perms + 1);
271           ok = false;
272         }
273     }
274
275   if ( ! recurse)
276     fts_set (fts, ent, FTS_SKIP);
277
278   return ok;
279 }
280
281 /* Recursively change the modes of the specified FILES (the last entry
282    of which is NULL).  BIT_FLAGS controls how fts works.
283    Return true if successful.  */
284
285 static bool
286 process_files (char **files, int bit_flags)
287 {
288   bool ok = true;
289
290   FTS *fts = xfts_open (files, bit_flags, NULL);
291
292   while (1)
293     {
294       FTSENT *ent;
295
296       ent = fts_read (fts);
297       if (ent == NULL)
298         {
299           if (errno != 0)
300             {
301               /* FIXME: try to give a better message  */
302               error (0, errno, _("fts_read failed"));
303               ok = false;
304             }
305           break;
306         }
307
308       ok &= process_file (fts, ent);
309     }
310
311   /* Ignore failure, since the only way it can do so is in failing to
312      return to the original directory, and since we're about to exit,
313      that doesn't matter.  */
314   fts_close (fts);
315
316   return ok;
317 }
318
319 void
320 usage (int status)
321 {
322   if (status != EXIT_SUCCESS)
323     fprintf (stderr, _("Try `%s --help' for more information.\n"),
324              program_name);
325   else
326     {
327       printf (_("\
328 Usage: %s [OPTION]... MODE[,MODE]... FILE...\n\
329   or:  %s [OPTION]... OCTAL-MODE FILE...\n\
330   or:  %s [OPTION]... --reference=RFILE FILE...\n\
331 "),
332               program_name, program_name, program_name);
333       fputs (_("\
334 Change the mode of each FILE to MODE.\n\
335 \n\
336   -c, --changes           like verbose but report only when a change is made\n\
337 "), stdout);
338       fputs (_("\
339       --no-preserve-root  do not treat `/' specially (the default)\n\
340       --preserve-root     fail to operate recursively on `/'\n\
341 "), stdout);
342       fputs (_("\
343   -f, --silent, --quiet   suppress most error messages\n\
344   -v, --verbose           output a diagnostic for every file processed\n\
345       --reference=RFILE   use RFILE's mode instead of MODE values\n\
346   -R, --recursive         change files and directories recursively\n\
347 "), stdout);
348       fputs (HELP_OPTION_DESCRIPTION, stdout);
349       fputs (VERSION_OPTION_DESCRIPTION, stdout);
350       fputs (_("\
351 \n\
352 Each MODE is of the form `[ugoa]*([-+=]([rwxXst]*|[ugo]))+'.\n\
353 "), stdout);
354       printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
355     }
356   exit (status);
357 }
358
359 /* Parse the ASCII mode given on the command line into a linked list
360    of `struct mode_change' and apply that to each file argument. */
361
362 int
363 main (int argc, char **argv)
364 {
365   char *mode = NULL;
366   size_t mode_len = 0;
367   size_t mode_alloc = 0;
368   bool ok;
369   bool preserve_root = false;
370   char const *reference_file = NULL;
371   int c;
372
373   initialize_main (&argc, &argv);
374   program_name = argv[0];
375   setlocale (LC_ALL, "");
376   bindtextdomain (PACKAGE, LOCALEDIR);
377   textdomain (PACKAGE);
378
379   atexit (close_stdout);
380
381   recurse = force_silent = diagnose_surprises = false;
382
383   while ((c = getopt_long (argc, argv,
384                            "Rcfvr::w::x::X::s::t::u::g::o::a::,::+::=::",
385                            long_options, NULL))
386          != -1)
387     {
388       switch (c)
389         {
390         case 'r':
391         case 'w':
392         case 'x':
393         case 'X':
394         case 's':
395         case 't':
396         case 'u':
397         case 'g':
398         case 'o':
399         case 'a':
400         case ',':
401         case '+':
402         case '=':
403           /* Support nonportable uses like "chmod -w", but diagnose
404              surprises due to umask confusion.  Even though "--", "--r",
405              etc., are valid modes, there is no "case '-'" here since
406              getopt_long reserves leading "--" for long options.  */
407           {
408             /* Allocate a mode string (e.g., "-rwx") by concatenating
409                the argument containing this option.  If a previous mode
410                string was given, concatenate the previous string, a
411                comma, and the new string (e.g., "-s,-rwx").  */
412
413             char const *arg = argv[optind - 1];
414             size_t arg_len = strlen (arg);
415             size_t mode_comma_len = mode_len + !!mode_len;
416             size_t new_mode_len = mode_comma_len + arg_len;
417             if (mode_alloc <= new_mode_len)
418               {
419                 mode_alloc = new_mode_len + 1;
420                 mode = X2REALLOC (mode, &mode_alloc);
421               }
422             mode[mode_len] = ',';
423             strcpy (mode + mode_comma_len, arg);
424             mode_len = new_mode_len;
425
426             diagnose_surprises = true;
427           }
428           break;
429         case NO_PRESERVE_ROOT:
430           preserve_root = false;
431           break;
432         case PRESERVE_ROOT:
433           preserve_root = true;
434           break;
435         case REFERENCE_FILE_OPTION:
436           reference_file = optarg;
437           break;
438         case 'R':
439           recurse = true;
440           break;
441         case 'c':
442           verbosity = V_changes_only;
443           break;
444         case 'f':
445           force_silent = true;
446           break;
447         case 'v':
448           verbosity = V_high;
449           break;
450         case_GETOPT_HELP_CHAR;
451         case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
452         default:
453           usage (EXIT_FAILURE);
454         }
455     }
456
457   if (reference_file)
458     {
459       if (mode)
460         {
461           error (0, 0, _("cannot combine mode and --reference options"));
462           usage (EXIT_FAILURE);
463         }
464     }
465   else
466     {
467       if (!mode)
468         mode = argv[optind++];
469     }
470
471   if (optind >= argc)
472     {
473       if (!mode || mode != argv[optind - 1])
474         error (0, 0, _("missing operand"));
475       else
476         error (0, 0, _("missing operand after %s"), quote (argv[argc - 1]));
477       usage (EXIT_FAILURE);
478     }
479
480   if (reference_file)
481     {
482       change = mode_create_from_ref (reference_file);
483       if (!change)
484         error (EXIT_FAILURE, errno, _("failed to get attributes of %s"),
485                quote (reference_file));
486     }
487   else
488     {
489       change = mode_compile (mode);
490       if (!change)
491         {
492           error (0, 0, _("invalid mode: %s"), quote (mode));
493           usage (EXIT_FAILURE);
494         }
495       umask_value = umask (0);
496     }
497
498   if (recurse & preserve_root)
499     {
500       static struct dev_ino dev_ino_buf;
501       root_dev_ino = get_root_dev_ino (&dev_ino_buf);
502       if (root_dev_ino == NULL)
503         error (EXIT_FAILURE, errno, _("failed to get attributes of %s"),
504                quote ("/"));
505     }
506   else
507     {
508       root_dev_ino = NULL;
509     }
510
511   ok = process_files (argv + optind, FTS_COMFOLLOW | FTS_PHYSICAL);
512
513   exit (ok ? EXIT_SUCCESS : EXIT_FAILURE);
514 }