]>
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 #define compress_mode _sm_compress_mode
71 static BITCMD
*addcmd(BITCMD
*, int, int, int, u_int
);
72 __private_extern__
void compress_mode(BITCMD
*);
74 static void dumpmode(BITCMD
*);
77 #ifndef BUILDING_VARIANT
79 * Given the old mode and an array of bitcmd structures, apply the operations
80 * described in the bitcmd structures to the old mode, and return the new mode.
81 * Note that there is no '=' command; a strict assignment is just a '-' (clear
82 * bits) followed by a '+' (set bits).
85 getmode(const void *bbox
, mode_t omode
)
88 mode_t clrval
, newmode
, value
;
90 set
= (const BITCMD
*)bbox
;
92 for (value
= 0;; set
++)
95 * When copying the user, group or other bits around, we "know"
96 * where the bits are in the mode so that we can do shifts to
97 * copy them around. If we don't use shifts, it gets real
98 * grundgy with lots of single bit checks and bit sets.
101 value
= (newmode
& S_IRWXU
) >> 6;
105 value
= (newmode
& S_IRWXG
) >> 3;
109 value
= newmode
& S_IRWXO
;
110 common
: if (set
->cmd2
& CMD2_CLR
) {
112 (set
->cmd2
& CMD2_SET
) ? S_IRWXO
: value
;
113 if (set
->cmd2
& CMD2_UBITS
)
114 newmode
&= ~((clrval
<<6) & set
->bits
);
115 if (set
->cmd2
& CMD2_GBITS
)
116 newmode
&= ~((clrval
<<3) & set
->bits
);
117 if (set
->cmd2
& CMD2_OBITS
)
118 newmode
&= ~(clrval
& set
->bits
);
120 if (set
->cmd2
& CMD2_SET
) {
121 if (set
->cmd2
& CMD2_UBITS
)
122 newmode
|= (value
<<6) & set
->bits
;
123 if (set
->cmd2
& CMD2_GBITS
)
124 newmode
|= (value
<<3) & set
->bits
;
125 if (set
->cmd2
& CMD2_OBITS
)
126 newmode
|= value
& set
->bits
;
131 newmode
|= set
->bits
;
135 newmode
&= ~set
->bits
;
139 if (omode
& (S_IFDIR
|S_IXUSR
|S_IXGRP
|S_IXOTH
))
140 newmode
|= set
->bits
;
146 (void)printf("getmode:%04o -> %04o\n", omode
, newmode
);
151 #endif /* BUILDING_VARIANT */
153 #define ADDCMD(a, b, c, d) \
154 if (set >= endset) { \
156 setlen += SET_LEN_INCR; \
157 newset = realloc(saveset, sizeof(BITCMD) * setlen); \
164 set = newset + (set - saveset); \
166 endset = newset + (setlen - 2); \
168 set = addcmd(set, (a), (b), (c), (d))
170 #ifndef VARIANT_LEGACY
171 #define STANDARD_BITS (S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO|S_ISTXT)
172 #else /* VARIANT_LEGACY */
173 #define STANDARD_BITS (S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO)
174 #endif /* !VARIANT_LEGACY */
177 setmode(const char *p
)
181 BITCMD
*set
, *saveset
, *endset
;
182 sigset_t sigset
, sigoset
;
184 int equalopdone
=0, permXbits
, setlen
;
191 * Get a copy of the mask for the permissions that are mask relative.
192 * Flip the bits, we want what's not set. Since it's possible that
193 * the caller is opening files inside a signal handler, protect them
197 (void)_sigprocmask(SIG_BLOCK
, &sigset
, &sigoset
);
198 (void)umask(mask
= umask(0));
200 (void)_sigprocmask(SIG_SETMASK
, &sigoset
, NULL
);
202 setlen
= SET_LEN
+ 2;
204 if ((set
= malloc((u_int
)(sizeof(BITCMD
) * setlen
))) == NULL
)
207 endset
= set
+ (setlen
- 2);
210 * If an absolute number, get it and return; disallow non-octal digits
213 if (isdigit((unsigned char)*p
)) {
214 perml
= strtol(p
, &ep
, 8);
215 #ifndef VARIANT_LEGACY
216 if (*ep
|| perml
< 0 || perml
& ~STANDARD_BITS
)
217 #else /* VARIANT_LEGACY */
218 if (*ep
|| perml
< 0 || perml
& ~(STANDARD_BITS
|S_ISTXT
))
219 #endif /* !VARIANT_LEGACY */
224 perm
= (mode_t
)perml
;
225 #ifndef VARIANT_LEGACY
226 ADDCMD('=', STANDARD_BITS
, perm
, mask
);
227 #else /* VARIANT_LEGACY */
228 ADDCMD('=', (STANDARD_BITS
|S_ISTXT
), perm
, mask
);
229 #endif /* !VARIANT_LEGACY */
235 * Build list of structures to set/clear/copy bits as described by
236 * each clause of the symbolic mode.
239 /* First, find out which bits might be modified. */
240 for (who
= 0;; ++p
) {
243 who
|= STANDARD_BITS
;
246 who
|= S_ISUID
|S_IRWXU
;
249 who
|= S_ISGID
|S_IRWXG
;
259 getop
: if ((op
= *p
++) != '+' && op
!= '-' && op
!= '=') {
266 #ifdef VARIANT_LEGACY
268 #endif /* VARIANT_LEGACY */
269 for (perm
= 0, permXbits
= 0;; ++p
) {
272 perm
|= S_IRUSR
|S_IRGRP
|S_IROTH
;
275 /* If only "other" bits ignore set-id. */
276 if (!who
|| who
& ~S_IRWXO
)
277 perm
|= S_ISUID
|S_ISGID
;
280 /* If only "other" bits ignore sticky. */
281 if (!who
|| who
& ~S_IRWXO
) {
282 #ifdef VARIANT_LEGACY
284 #endif /* VARIANT_LEGACY */
289 perm
|= S_IWUSR
|S_IWGRP
|S_IWOTH
;
292 permXbits
= S_IXUSR
|S_IXGRP
|S_IXOTH
;
295 perm
|= S_IXUSR
|S_IXGRP
|S_IXOTH
;
301 * When ever we hit 'u', 'g', or 'o', we have
302 * to flush out any partial mode that we have,
303 * and then do the copying of the mode bits.
306 ADDCMD(op
, who
, perm
, mask
);
311 if (op
== '+' && permXbits
) {
312 ADDCMD('X', who
, permXbits
, mask
);
315 ADDCMD(*p
, who
, op
, mask
);
320 * Add any permissions that we haven't already
323 if (perm
|| (op
== '=' && !equalopdone
)) {
326 ADDCMD(op
, who
, perm
, mask
);
330 ADDCMD('X', who
, permXbits
, mask
);
345 (void)printf("Before compress_mode()\n");
348 compress_mode(saveset
);
350 (void)printf("After compress_mode()\n");
357 addcmd(BITCMD
*set
, int op
, int who
, int oparg
, u_int mask
)
362 set
->bits
= who
? who
: STANDARD_BITS
;
371 set
->bits
= (who
? who
: mask
) & oparg
;
379 set
->cmd2
= ((who
& S_IRUSR
) ? CMD2_UBITS
: 0) |
380 ((who
& S_IRGRP
) ? CMD2_GBITS
: 0) |
381 ((who
& S_IROTH
) ? CMD2_OBITS
: 0);
382 set
->bits
= (mode_t
)~0;
384 set
->cmd2
= CMD2_UBITS
| CMD2_GBITS
| CMD2_OBITS
;
389 set
->cmd2
|= CMD2_SET
;
390 else if (oparg
== '-')
391 set
->cmd2
|= CMD2_CLR
;
392 else if (oparg
== '=')
393 set
->cmd2
|= CMD2_SET
|CMD2_CLR
;
401 dumpmode(BITCMD
*set
)
403 for (; set
->cmd
; ++set
)
404 (void)printf("cmd: '%c' bits %04o%s%s%s%s%s%s\n",
405 set
->cmd
, set
->bits
, set
->cmd2
? " cmd2:" : "",
406 set
->cmd2
& CMD2_CLR
? " CLR" : "",
407 set
->cmd2
& CMD2_SET
? " SET" : "",
408 set
->cmd2
& CMD2_UBITS
? " UBITS" : "",
409 set
->cmd2
& CMD2_GBITS
? " GBITS" : "",
410 set
->cmd2
& CMD2_OBITS
? " OBITS" : "");
414 #ifndef BUILDING_VARIANT
416 * Given an array of bitcmd structures, compress by compacting consecutive
417 * '+', '-' and 'X' commands into at most 3 commands, one of each. The 'u',
418 * 'g' and 'o' commands continue to be separate. They could probably be
419 * compacted, but it's not worth the effort.
421 __private_extern__
void
422 compress_mode(BITCMD
*set
)
425 int setbits
, clrbits
, Xbits
, op
;
428 /* Copy over any 'u', 'g' and 'o' commands. */
429 while ((op
= nset
->cmd
) != '+' && op
!= '-' && op
!= 'X') {
435 for (setbits
= clrbits
= Xbits
= 0;; nset
++) {
436 if ((op
= nset
->cmd
) == '-') {
437 clrbits
|= nset
->bits
;
438 setbits
&= ~nset
->bits
;
439 Xbits
&= ~nset
->bits
;
440 } else if (op
== '+') {
441 setbits
|= nset
->bits
;
442 clrbits
&= ~nset
->bits
;
443 Xbits
&= ~nset
->bits
;
444 } else if (op
== 'X')
445 Xbits
|= nset
->bits
& ~setbits
;
469 #endif /* BUILDING_VARIANT */