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)
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
31 #include <sys/types.h>
33 #include "modechange.h"
45 #ifdef STAT_MACROS_BROKEN
47 #endif /* STAT_MACROS_BROKEN. */
49 #if !defined(S_ISDIR) && defined(S_IFDIR)
50 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
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')
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
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. */
74 mode_compile (mode_string
, masked_ops
)
75 register char *mode_string
;
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
);
91 head
= talloc (struct mode_change
);
93 return MODE_MEMORY_EXHAUSTED
;
98 head
->affected
= 07777; /* Affect all permissions. */
102 umask_value
= umask (0);
103 umask (umask_value
); /* Restore the old value. */
111 /* One loop iteration for each "ugoa...=+-rwxXstugo...[=+-rwxXstugo...]". */
116 /* Turn on all the bits in `affected_bits' for each group given. */
117 for (++mode_string
;; ++mode_string
)
118 switch (*mode_string
)
121 affected_bits
|= 04700;
124 affected_bits
|= 02070;
127 affected_bits
|= 01007;
130 affected_bits
|= 07777;
133 goto no_more_affected
;
137 /* If none specified, affect all bits, except perhaps those
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. */
151 head
= talloc (struct mode_change
);
153 return MODE_MEMORY_EXHAUSTED
;
158 change
->next
= talloc (struct mode_change
);
159 if (change
->next
== NULL
)
162 return MODE_MEMORY_EXHAUSTED
;
164 change
= change
->next
;
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
173 affected_masked
&= ~umask_value
;
174 change
->affected
= affected_masked
;
178 /* Set `value' according to the bits set in `affected_masked'. */
179 for (++mode_string
;; ++mode_string
)
180 switch (*mode_string
)
183 change
->value
|= 00444 & affected_masked
;
186 change
->value
|= 00222 & affected_masked
;
189 change
->flags
|= MODE_X_IF_ANY_X
;
192 change
->value
|= 00111 & affected_masked
;
195 /* Set the setuid/gid bits if `u' or `g' is selected. */
196 change
->value
|= 06000 & affected_masked
;
199 /* Set the "save text image" bit if `o' is selected. */
200 change
->value
|= 01000 & affected_masked
;
203 /* Set the affected bits to the value of the `u' bits
207 change
->value
= 00700;
208 change
->flags
|= MODE_COPY_EXISTING
;
211 /* Set the affected bits to the value of the `g' bits
215 change
->value
= 00070;
216 change
->flags
|= MODE_COPY_EXISTING
;
219 /* Set the affected bits to the value of the `o' bits
223 change
->value
= 00007;
224 change
->flags
|= MODE_COPY_EXISTING
;
231 } while (*mode_string
== ',');
232 if (*mode_string
== 0)
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. */
245 mode_adjust (oldmode
, changes
)
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);
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
;
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. */
293 /* Preserve the previous values in `newmode' of bits that are
294 not affected by this change operation. */
295 newmode
= (newmode
& ~changes
->affected
) | value
;
308 /* Free the memory used by the list of file mode change operations
313 register struct mode_change
*changes
;
315 register struct mode_change
*next
;
319 next
= 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. */
336 for (i
= 0; isodigit (*s
); ++s
)
337 i
= i
* 8 + *s
- '0';