* added auto fs to PRUNEFS variable in updatedb.conf to prune
[findutils.git] / lib / modechange.c
blob3862599e21a4ae8b8c00fffaab77d2207e76a065
1 /* modechange.c -- file mode manipulation
2 Copyright (C) 1989, 1990 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)
7 any later version.
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
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
18 /* Written by David MacKenzie <djm@ai.mit.edu> */
20 /* The ASCII mode string is compiled into a linked list of `struct
21 modechange', which can then be applied to each file to be changed.
22 We do this instead of re-parsing the ASCII string for each file
23 because the compiled form requires less computation to use; when
24 changing the mode of many files, this probably results in a
25 performance gain. */
27 #ifdef HAVE_CONFIG_H
28 #include <config.h>
29 #endif
31 #include <sys/types.h>
32 #include <sys/stat.h>
33 #include "modechange.h"
35 #ifdef STDC_HEADERS
36 #include <stdlib.h>
37 #else
38 char *malloc ();
39 #endif
41 #ifndef NULL
42 #define NULL 0
43 #endif
45 #ifdef STAT_MACROS_BROKEN
46 #undef S_ISDIR
47 #endif /* STAT_MACROS_BROKEN. */
49 #if !defined(S_ISDIR) && defined(S_IFDIR)
50 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
51 #endif
53 /* Return newly allocated memory to hold one element of type TYPE. */
54 #define talloc(type) ((type *) malloc (sizeof (type)))
56 #define isodigit(c) ((c) >= '0' && (c) <= '7')
58 static int oatoi ();
60 /* Return a linked list of file mode change operations created from
61 MODE_STRING, an ASCII string that contains either an octal number
62 specifying an absolute mode, or symbolic mode change operations with
63 the form:
64 [ugoa...][[+-=][rwxXstugo...]...][,...]
65 MASKED_OPS is a bitmask indicating which symbolic mode operators (=+-)
66 should not affect bits set in the umask when no users are given.
67 Operators not selected in MASKED_OPS ignore the umask.
69 Return MODE_INVALID if `mode_string' does not contain a valid
70 representation of file mode change operations;
71 return MODE_MEMORY_EXHAUSTED if there is insufficient memory. */
73 struct mode_change *
74 mode_compile (mode_string, masked_ops)
75 register char *mode_string;
76 unsigned masked_ops;
78 struct mode_change *head; /* First element of the linked list. */
79 struct mode_change *change; /* An element of the linked list. */
80 int i; /* General purpose temporary. */
81 unsigned short umask_value; /* The umask value (surprise). */
82 unsigned short affected_bits; /* Which bits in the mode are operated on. */
83 unsigned short affected_masked; /* `affected_bits' modified by umask. */
84 unsigned ops_to_mask; /* Operators to actually use umask on. */
86 i = oatoi (mode_string);
87 if (i >= 0)
89 if (i > 07777)
90 return MODE_INVALID;
91 head = talloc (struct mode_change);
92 if (head == NULL)
93 return MODE_MEMORY_EXHAUSTED;
94 head->next = NULL;
95 head->op = '=';
96 head->flags = 0;
97 head->value = i;
98 head->affected = 07777; /* Affect all permissions. */
99 return head;
102 umask_value = umask (0);
103 umask (umask_value); /* Restore the old value. */
105 head = NULL;
106 #ifdef lint
107 change = NULL;
108 #endif
109 --mode_string;
111 /* One loop iteration for each "ugoa...=+-rwxXstugo...[=+-rwxXstugo...]". */
114 affected_bits = 0;
115 ops_to_mask = 0;
116 /* Turn on all the bits in `affected_bits' for each group given. */
117 for (++mode_string;; ++mode_string)
118 switch (*mode_string)
120 case 'u':
121 affected_bits |= 04700;
122 break;
123 case 'g':
124 affected_bits |= 02070;
125 break;
126 case 'o':
127 affected_bits |= 01007;
128 break;
129 case 'a':
130 affected_bits |= 07777;
131 break;
132 default:
133 goto no_more_affected;
136 no_more_affected:
137 /* If none specified, affect all bits, except perhaps those
138 set in the umask. */
139 if (affected_bits == 0)
141 affected_bits = 07777;
142 ops_to_mask = masked_ops;
145 while (*mode_string == '=' || *mode_string == '+' || *mode_string == '-')
147 /* Add the element to the tail of the list, so the operations
148 are performed in the correct order. */
149 if (head == NULL)
151 head = talloc (struct mode_change);
152 if (head == NULL)
153 return MODE_MEMORY_EXHAUSTED;
154 change = head;
156 else
158 change->next = talloc (struct mode_change);
159 if (change->next == NULL)
161 mode_free (change);
162 return MODE_MEMORY_EXHAUSTED;
164 change = change->next;
167 change->next = NULL;
168 change->op = *mode_string; /* One of "=+-". */
169 affected_masked = affected_bits;
170 if (ops_to_mask & (*mode_string == '=' ? MODE_MASK_EQUALS
171 : *mode_string == '+' ? MODE_MASK_PLUS
172 : MODE_MASK_MINUS))
173 affected_masked &= ~umask_value;
174 change->affected = affected_masked;
175 change->value = 0;
176 change->flags = 0;
178 /* Set `value' according to the bits set in `affected_masked'. */
179 for (++mode_string;; ++mode_string)
180 switch (*mode_string)
182 case 'r':
183 change->value |= 00444 & affected_masked;
184 break;
185 case 'w':
186 change->value |= 00222 & affected_masked;
187 break;
188 case 'X':
189 change->flags |= MODE_X_IF_ANY_X;
190 /* Fall through. */
191 case 'x':
192 change->value |= 00111 & affected_masked;
193 break;
194 case 's':
195 /* Set the setuid/gid bits if `u' or `g' is selected. */
196 change->value |= 06000 & affected_masked;
197 break;
198 case 't':
199 /* Set the "save text image" bit if `o' is selected. */
200 change->value |= 01000 & affected_masked;
201 break;
202 case 'u':
203 /* Set the affected bits to the value of the `u' bits
204 on the same file. */
205 if (change->value)
206 goto invalid;
207 change->value = 00700;
208 change->flags |= MODE_COPY_EXISTING;
209 break;
210 case 'g':
211 /* Set the affected bits to the value of the `g' bits
212 on the same file. */
213 if (change->value)
214 goto invalid;
215 change->value = 00070;
216 change->flags |= MODE_COPY_EXISTING;
217 break;
218 case 'o':
219 /* Set the affected bits to the value of the `o' bits
220 on the same file. */
221 if (change->value)
222 goto invalid;
223 change->value = 00007;
224 change->flags |= MODE_COPY_EXISTING;
225 break;
226 default:
227 goto no_more_values;
229 no_more_values:;
231 } while (*mode_string == ',');
232 if (*mode_string == 0)
233 return head;
234 invalid:
235 mode_free (head);
236 return MODE_INVALID;
239 /* Return file mode OLDMODE, adjusted as indicated by the list of change
240 operations CHANGES. If OLDMODE is a directory, the type `X'
241 change affects it even if no execute bits were set in OLDMODE.
242 The returned value has the S_IFMT bits cleared. */
244 unsigned short
245 mode_adjust (oldmode, changes)
246 unsigned oldmode;
247 register struct mode_change *changes;
249 unsigned short newmode; /* The adjusted mode and one operand. */
250 unsigned short value; /* The other operand. */
252 newmode = oldmode & 07777;
254 for (; changes; changes = changes->next)
256 if (changes->flags & MODE_COPY_EXISTING)
258 /* Isolate in `value' the bits in `newmode' to copy, given in
259 the mask `changes->value'. */
260 value = newmode & changes->value;
262 if (changes->value & 00700)
263 /* Copy `u' permissions onto `g' and `o'. */
264 value |= (value >> 3) | (value >> 6);
265 else if (changes->value & 00070)
266 /* Copy `g' permissions onto `u' and `o'. */
267 value |= (value << 3) | (value >> 3);
268 else
269 /* Copy `o' permissions onto `u' and `g'. */
270 value |= (value << 3) | (value << 6);
272 /* In order to change only `u', `g', or `o' permissions,
273 or some combination thereof, clear unselected bits.
274 This can not be done in mode_compile because the value
275 to which the `changes->affected' mask is applied depends
276 on the old mode of each file. */
277 value &= changes->affected;
279 else
281 value = changes->value;
282 /* If `X', do not affect the execute bits if the file is not a
283 directory and no execute bits are already set. */
284 if ((changes->flags & MODE_X_IF_ANY_X)
285 && !S_ISDIR (oldmode)
286 && (newmode & 00111) == 0)
287 value &= ~00111; /* Clear the execute bits. */
290 switch (changes->op)
292 case '=':
293 /* Preserve the previous values in `newmode' of bits that are
294 not affected by this change operation. */
295 newmode = (newmode & ~changes->affected) | value;
296 break;
297 case '+':
298 newmode |= value;
299 break;
300 case '-':
301 newmode &= ~value;
302 break;
305 return newmode;
308 /* Free the memory used by the list of file mode change operations
309 CHANGES. */
311 void
312 mode_free (changes)
313 register struct mode_change *changes;
315 register struct mode_change *next;
317 while (changes)
319 next = changes->next;
320 free (changes);
321 changes = next;
325 /* Return a positive integer containing the value of the ASCII
326 octal number S. If S is not an octal number, return -1. */
328 static int
329 oatoi (s)
330 char *s;
332 register int i;
334 if (*s == 0)
335 return -1;
336 for (i = 0; isodigit (*s); ++s)
337 i = i * 8 + *s - '0';
338 if (*s)
339 return -1;
340 return i;