1 /* vi: set sw=4 ts=4: */
3 * parse_mode implementation for busybox
5 * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
10 /* http://www.opengroup.org/onlinepubs/007904975/utilities/chmod.html */
14 /* This function is used from NOFORK applets. It must not allocate anything */
16 #define FILEMODEBITS (S_ISUID | S_ISGID | S_ISVTX | S_IRWXU | S_IRWXG | S_IRWXO)
18 int FAST_FUNC bb_parse_mode(const char *s, mode_t *current_mode)
20 static const mode_t who_mask[] = {
21 S_ISUID | S_ISGID | S_ISVTX | S_IRWXU | S_IRWXG | S_IRWXO, /* a */
22 S_ISUID | S_IRWXU, /* u */
23 S_ISGID | S_IRWXG, /* g */
26 static const mode_t perm_mask[] = {
27 S_IRUSR | S_IRGRP | S_IROTH, /* r */
28 S_IWUSR | S_IWGRP | S_IWOTH, /* w */
29 S_IXUSR | S_IXGRP | S_IXOTH, /* x */
30 S_IXUSR | S_IXGRP | S_IXOTH, /* X -- special -- see below */
31 S_ISUID | S_ISGID, /* s */
34 static const char who_chars[] ALIGN1 = "augo";
35 static const char perm_chars[] ALIGN1 = "rwxXst";
43 if (((unsigned int)(*s - '0')) < 8) {
47 tmp = strtoul(s, &e, 8);
48 if (*e || (tmp > 07777U)) { /* Check range and trailing chars. */
55 new_mode = *current_mode;
57 /* Note: we allow empty clauses, and hence empty modes.
58 * We treat an empty mode as no change to perms. */
60 while (*s) { /* Process clauses. */
61 if (*s == ',') { /* We allow empty clauses. */
72 wholist |= who_mask[(int)(p-who_chars)];
80 do { /* Process action list. */
81 if ((*s != '+') && (*s != '-')) {
85 /* Since op is '=', clear all bits corresponding to the
86 * wholist, or all file bits if wholist is empty. */
87 permlist = ~FILEMODEBITS;
95 /* Check for permcopy. */
96 p = who_chars + 1; /* Skip 'a' entry. */
100 permlist = who_mask[(int)(p-who_chars)]
101 & (S_IRWXU | S_IRWXG | S_IRWXO)
104 if (permlist & perm_mask[i]) {
105 permlist |= perm_mask[i];
113 /* It was not a permcopy, so get a permlist. */
120 || (new_mode & (S_IFDIR | S_IXUSR | S_IXGRP | S_IXOTH))
122 permlist |= perm_mask[(int)(p-perm_chars)];
131 if (permlist) { /* The permlist was nonempty. */
132 mode_t tmp = wholist;
134 mode_t u_mask = umask(0);
140 new_mode &= ~permlist;
142 new_mode |= permlist;
145 } while (*s && (*s != ','));
148 *current_mode = new_mode;