]>
git.saurik.com Git - apple/libc.git/blob - gen/FreeBSD/setmode.c
2 * Copyright (c) 1989, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
6 * Dave Borman at Cray Research, Inc.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 4. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 #if defined(LIBC_SCCS) && !defined(lint)
34 static char sccsid
[] = "@(#)setmode.c 8.2 (Berkeley) 3/25/94";
35 #endif /* LIBC_SCCS and not lint */
36 #include <sys/cdefs.h>
37 __FBSDID("$FreeBSD: src/lib/libc/gen/setmode.c,v 1.11 2007/01/09 00:27:55 imp Exp $");
39 #include "namespace.h"
40 #include <sys/types.h>
52 #include "un-namespace.h"
54 #define SET_LEN 6 /* initial # of bitcmd struct to malloc */
55 #define SET_LEN_INCR 4 /* # of bitcmd structs to add as needed */
57 typedef struct bitcmd
{
65 #define CMD2_GBITS 0x04
66 #define CMD2_OBITS 0x08
67 #define CMD2_UBITS 0x10
69 static BITCMD
*addcmd(BITCMD
*, int, int, int, u_int
);
70 static void compress_mode(BITCMD
*);
72 static void dumpmode(BITCMD
*);
76 * Given the old mode and an array of bitcmd structures, apply the operations
77 * described in the bitcmd structures to the old mode, and return the new mode.
78 * Note that there is no '=' command; a strict assignment is just a '-' (clear
79 * bits) followed by a '+' (set bits).
82 getmode(const void *bbox
, mode_t omode
)
85 mode_t clrval
, newmode
, value
;
87 set
= (const BITCMD
*)bbox
;
89 for (value
= 0;; set
++)
92 * When copying the user, group or other bits around, we "know"
93 * where the bits are in the mode so that we can do shifts to
94 * copy them around. If we don't use shifts, it gets real
95 * grundgy with lots of single bit checks and bit sets.
98 value
= (newmode
& S_IRWXU
) >> 6;
102 value
= (newmode
& S_IRWXG
) >> 3;
106 value
= newmode
& S_IRWXO
;
107 common
: if (set
->cmd2
& CMD2_CLR
) {
109 (set
->cmd2
& CMD2_SET
) ? S_IRWXO
: value
;
110 if (set
->cmd2
& CMD2_UBITS
)
111 newmode
&= ~((clrval
<<6) & set
->bits
);
112 if (set
->cmd2
& CMD2_GBITS
)
113 newmode
&= ~((clrval
<<3) & set
->bits
);
114 if (set
->cmd2
& CMD2_OBITS
)
115 newmode
&= ~(clrval
& set
->bits
);
117 if (set
->cmd2
& CMD2_SET
) {
118 if (set
->cmd2
& CMD2_UBITS
)
119 newmode
|= (value
<<6) & set
->bits
;
120 if (set
->cmd2
& CMD2_GBITS
)
121 newmode
|= (value
<<3) & set
->bits
;
122 if (set
->cmd2
& CMD2_OBITS
)
123 newmode
|= value
& set
->bits
;
128 newmode
|= set
->bits
;
132 newmode
&= ~set
->bits
;
136 if (omode
& (S_IFDIR
|S_IXUSR
|S_IXGRP
|S_IXOTH
))
137 newmode
|= set
->bits
;
143 (void)printf("getmode:%04o -> %04o\n", omode
, newmode
);
149 #define ADDCMD(a, b, c, d) \
150 if (set >= endset) { \
152 setlen += SET_LEN_INCR; \
153 newset = realloc(saveset, sizeof(BITCMD) * setlen); \
160 set = newset + (set - saveset); \
162 endset = newset + (setlen - 2); \
164 set = addcmd(set, (a), (b), (c), (d))
166 #define STANDARD_BITS (S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO)
169 setmode(const char *p
)
173 BITCMD
*set
, *saveset
, *endset
;
174 sigset_t sigset
, sigoset
;
176 int equalopdone
=0, permXbits
, setlen
;
183 * Get a copy of the mask for the permissions that are mask relative.
184 * Flip the bits, we want what's not set. Since it's possible that
185 * the caller is opening files inside a signal handler, protect them
189 (void)_sigprocmask(SIG_BLOCK
, &sigset
, &sigoset
);
190 (void)umask(mask
= umask(0));
192 (void)_sigprocmask(SIG_SETMASK
, &sigoset
, NULL
);
194 setlen
= SET_LEN
+ 2;
196 if ((set
= malloc((u_int
)(sizeof(BITCMD
) * setlen
))) == NULL
)
199 endset
= set
+ (setlen
- 2);
202 * If an absolute number, get it and return; disallow non-octal digits
205 if (isdigit((unsigned char)*p
)) {
206 perml
= strtol(p
, &ep
, 8);
207 if (*ep
|| perml
< 0 || perml
& ~(STANDARD_BITS
|S_ISTXT
)) {
211 perm
= (mode_t
)perml
;
212 ADDCMD('=', (STANDARD_BITS
|S_ISTXT
), perm
, mask
);
218 * Build list of structures to set/clear/copy bits as described by
219 * each clause of the symbolic mode.
222 /* First, find out which bits might be modified. */
223 for (who
= 0;; ++p
) {
226 who
|= STANDARD_BITS
;
229 who
|= S_ISUID
|S_IRWXU
;
232 who
|= S_ISGID
|S_IRWXG
;
242 getop
: if ((op
= *p
++) != '+' && op
!= '-' && op
!= '=') {
250 for (perm
= 0, permXbits
= 0;; ++p
) {
253 perm
|= S_IRUSR
|S_IRGRP
|S_IROTH
;
256 /* If only "other" bits ignore set-id. */
257 if (!who
|| who
& ~S_IRWXO
)
258 perm
|= S_ISUID
|S_ISGID
;
261 /* If only "other" bits ignore sticky. */
262 if (!who
|| who
& ~S_IRWXO
) {
268 perm
|= S_IWUSR
|S_IWGRP
|S_IWOTH
;
271 permXbits
= S_IXUSR
|S_IXGRP
|S_IXOTH
;
274 perm
|= S_IXUSR
|S_IXGRP
|S_IXOTH
;
280 * When ever we hit 'u', 'g', or 'o', we have
281 * to flush out any partial mode that we have,
282 * and then do the copying of the mode bits.
285 ADDCMD(op
, who
, perm
, mask
);
290 if (op
== '+' && permXbits
) {
291 ADDCMD('X', who
, permXbits
, mask
);
294 ADDCMD(*p
, who
, op
, mask
);
299 * Add any permissions that we haven't already
302 if (perm
|| (op
== '=' && !equalopdone
)) {
305 ADDCMD(op
, who
, perm
, mask
);
309 ADDCMD('X', who
, permXbits
, mask
);
324 (void)printf("Before compress_mode()\n");
327 compress_mode(saveset
);
329 (void)printf("After compress_mode()\n");
336 addcmd(BITCMD
*set
, int op
, int who
, int oparg
, u_int mask
)
341 set
->bits
= who
? who
: STANDARD_BITS
;
350 set
->bits
= (who
? who
: mask
) & oparg
;
358 set
->cmd2
= ((who
& S_IRUSR
) ? CMD2_UBITS
: 0) |
359 ((who
& S_IRGRP
) ? CMD2_GBITS
: 0) |
360 ((who
& S_IROTH
) ? CMD2_OBITS
: 0);
361 set
->bits
= (mode_t
)~0;
363 set
->cmd2
= CMD2_UBITS
| CMD2_GBITS
| CMD2_OBITS
;
368 set
->cmd2
|= CMD2_SET
;
369 else if (oparg
== '-')
370 set
->cmd2
|= CMD2_CLR
;
371 else if (oparg
== '=')
372 set
->cmd2
|= CMD2_SET
|CMD2_CLR
;
380 dumpmode(BITCMD
*set
)
382 for (; set
->cmd
; ++set
)
383 (void)printf("cmd: '%c' bits %04o%s%s%s%s%s%s\n",
384 set
->cmd
, set
->bits
, set
->cmd2
? " cmd2:" : "",
385 set
->cmd2
& CMD2_CLR
? " CLR" : "",
386 set
->cmd2
& CMD2_SET
? " SET" : "",
387 set
->cmd2
& CMD2_UBITS
? " UBITS" : "",
388 set
->cmd2
& CMD2_GBITS
? " GBITS" : "",
389 set
->cmd2
& CMD2_OBITS
? " OBITS" : "");
394 * Given an array of bitcmd structures, compress by compacting consecutive
395 * '+', '-' and 'X' commands into at most 3 commands, one of each. The 'u',
396 * 'g' and 'o' commands continue to be separate. They could probably be
397 * compacted, but it's not worth the effort.
400 compress_mode(BITCMD
*set
)
403 int setbits
, clrbits
, Xbits
, op
;
406 /* Copy over any 'u', 'g' and 'o' commands. */
407 while ((op
= nset
->cmd
) != '+' && op
!= '-' && op
!= 'X') {
413 for (setbits
= clrbits
= Xbits
= 0;; nset
++) {
414 if ((op
= nset
->cmd
) == '-') {
415 clrbits
|= nset
->bits
;
416 setbits
&= ~nset
->bits
;
417 Xbits
&= ~nset
->bits
;
418 } else if (op
== '+') {
419 setbits
|= nset
->bits
;
420 clrbits
&= ~nset
->bits
;
421 Xbits
&= ~nset
->bits
;
422 } else if (op
== 'X')
423 Xbits
|= nset
->bits
& ~setbits
;