4 * Copyright (C) 2002 by Andreas Gruenbacher <a.gruenbacher@computer.org>
6 * Fixes from William Schumacher incorporated on 15 March 2001.
7 * (Reported by Charles Bertsch, <CBertsch@microtest.com>).
11 * This file contains generic functions for manipulating
12 * POSIX 1003.1e draft standard 17 ACLs.
15 #include <linux/kernel.h>
16 #include <linux/slab.h>
17 #include <linux/atomic.h>
19 #include <linux/sched.h>
20 #include <linux/posix_acl.h>
21 #include <linux/export.h>
23 #include <linux/errno.h>
25 EXPORT_SYMBOL(posix_acl_init);
26 EXPORT_SYMBOL(posix_acl_alloc);
27 EXPORT_SYMBOL(posix_acl_valid);
28 EXPORT_SYMBOL(posix_acl_equiv_mode);
29 EXPORT_SYMBOL(posix_acl_from_mode);
32 * Init a fresh posix_acl
35 posix_acl_init(struct posix_acl *acl, int count)
37 atomic_set(&acl->a_refcount, 1);
42 * Allocate a new ACL with the specified number of entries.
45 posix_acl_alloc(int count, gfp_t flags)
47 const size_t size = sizeof(struct posix_acl) +
48 count * sizeof(struct posix_acl_entry);
49 struct posix_acl *acl = kmalloc(size, flags);
51 posix_acl_init(acl, count);
58 static struct posix_acl *
59 posix_acl_clone(const struct posix_acl *acl, gfp_t flags)
61 struct posix_acl *clone = NULL;
64 int size = sizeof(struct posix_acl) + acl->a_count *
65 sizeof(struct posix_acl_entry);
66 clone = kmemdup(acl, size, flags);
68 atomic_set(&clone->a_refcount, 1);
74 * Check if an acl is valid. Returns 0 if it is, or -E... otherwise.
77 posix_acl_valid(const struct posix_acl *acl)
79 const struct posix_acl_entry *pa, *pe;
80 int state = ACL_USER_OBJ;
81 kuid_t prev_uid = INVALID_UID;
82 kgid_t prev_gid = INVALID_GID;
85 FOREACH_ACL_ENTRY(pa, acl, pe) {
86 if (pa->e_perm & ~(ACL_READ|ACL_WRITE|ACL_EXECUTE))
90 if (state == ACL_USER_OBJ) {
97 if (state != ACL_USER)
99 if (!uid_valid(pa->e_uid))
101 if (uid_valid(prev_uid) &&
102 uid_lte(pa->e_uid, prev_uid))
104 prev_uid = pa->e_uid;
109 if (state == ACL_USER) {
116 if (state != ACL_GROUP)
118 if (!gid_valid(pa->e_gid))
120 if (gid_valid(prev_gid) &&
121 gid_lte(pa->e_gid, prev_gid))
123 prev_gid = pa->e_gid;
128 if (state != ACL_GROUP)
134 if (state == ACL_OTHER ||
135 (state == ACL_GROUP && !needs_mask)) {
151 * Returns 0 if the acl can be exactly represented in the traditional
152 * file mode permission bits, or else 1. Returns -E... on error.
155 posix_acl_equiv_mode(const struct posix_acl *acl, umode_t *mode_p)
157 const struct posix_acl_entry *pa, *pe;
161 FOREACH_ACL_ENTRY(pa, acl, pe) {
164 mode |= (pa->e_perm & S_IRWXO) << 6;
167 mode |= (pa->e_perm & S_IRWXO) << 3;
170 mode |= pa->e_perm & S_IRWXO;
173 mode = (mode & ~S_IRWXG) |
174 ((pa->e_perm & S_IRWXO) << 3);
186 *mode_p = (*mode_p & ~S_IRWXUGO) | mode;
191 * Create an ACL representing the file mode permission bits of an inode.
194 posix_acl_from_mode(umode_t mode, gfp_t flags)
196 struct posix_acl *acl = posix_acl_alloc(3, flags);
198 return ERR_PTR(-ENOMEM);
200 acl->a_entries[0].e_tag = ACL_USER_OBJ;
201 acl->a_entries[0].e_perm = (mode & S_IRWXU) >> 6;
203 acl->a_entries[1].e_tag = ACL_GROUP_OBJ;
204 acl->a_entries[1].e_perm = (mode & S_IRWXG) >> 3;
206 acl->a_entries[2].e_tag = ACL_OTHER;
207 acl->a_entries[2].e_perm = (mode & S_IRWXO);
212 * Return 0 if current is granted want access to the inode
213 * by the acl. Returns -E... otherwise.
216 posix_acl_permission(struct inode *inode, const struct posix_acl *acl, int want)
218 const struct posix_acl_entry *pa, *pe, *mask_obj;
221 want &= MAY_READ | MAY_WRITE | MAY_EXEC | MAY_NOT_BLOCK;
223 FOREACH_ACL_ENTRY(pa, acl, pe) {
226 /* (May have been checked already) */
227 if (uid_eq(inode->i_uid, current_fsuid()))
231 if (uid_eq(pa->e_uid, current_fsuid()))
235 if (in_group_p(inode->i_gid)) {
237 if ((pa->e_perm & want) == want)
242 if (in_group_p(pa->e_gid)) {
244 if ((pa->e_perm & want) == want)
262 for (mask_obj = pa+1; mask_obj != pe; mask_obj++) {
263 if (mask_obj->e_tag == ACL_MASK) {
264 if ((pa->e_perm & mask_obj->e_perm & want) == want)
271 if ((pa->e_perm & want) == want)
277 * Modify acl when creating a new inode. The caller must ensure the acl is
278 * only referenced once.
280 * mode_p initially must contain the mode parameter to the open() / creat()
281 * system calls. All permissions that are not granted by the acl are removed.
282 * The permissions in the acl are changed to reflect the mode_p parameter.
284 static int posix_acl_create_masq(struct posix_acl *acl, umode_t *mode_p)
286 struct posix_acl_entry *pa, *pe;
287 struct posix_acl_entry *group_obj = NULL, *mask_obj = NULL;
288 umode_t mode = *mode_p;
291 /* assert(atomic_read(acl->a_refcount) == 1); */
293 FOREACH_ACL_ENTRY(pa, acl, pe) {
296 pa->e_perm &= (mode >> 6) | ~S_IRWXO;
297 mode &= (pa->e_perm << 6) | ~S_IRWXU;
310 pa->e_perm &= mode | ~S_IRWXO;
311 mode &= pa->e_perm | ~S_IRWXO;
325 mask_obj->e_perm &= (mode >> 3) | ~S_IRWXO;
326 mode &= (mask_obj->e_perm << 3) | ~S_IRWXG;
330 group_obj->e_perm &= (mode >> 3) | ~S_IRWXO;
331 mode &= (group_obj->e_perm << 3) | ~S_IRWXG;
334 *mode_p = (*mode_p & ~S_IRWXUGO) | mode;
339 * Modify the ACL for the chmod syscall.
341 static int posix_acl_chmod_masq(struct posix_acl *acl, umode_t mode)
343 struct posix_acl_entry *group_obj = NULL, *mask_obj = NULL;
344 struct posix_acl_entry *pa, *pe;
346 /* assert(atomic_read(acl->a_refcount) == 1); */
348 FOREACH_ACL_ENTRY(pa, acl, pe) {
351 pa->e_perm = (mode & S_IRWXU) >> 6;
367 pa->e_perm = (mode & S_IRWXO);
376 mask_obj->e_perm = (mode & S_IRWXG) >> 3;
380 group_obj->e_perm = (mode & S_IRWXG) >> 3;
387 posix_acl_create(struct posix_acl **acl, gfp_t gfp, umode_t *mode_p)
389 struct posix_acl *clone = posix_acl_clone(*acl, gfp);
392 err = posix_acl_create_masq(clone, mode_p);
394 posix_acl_release(clone);
398 posix_acl_release(*acl);
402 EXPORT_SYMBOL(posix_acl_create);
405 posix_acl_chmod(struct posix_acl **acl, gfp_t gfp, umode_t mode)
407 struct posix_acl *clone = posix_acl_clone(*acl, gfp);
410 err = posix_acl_chmod_masq(clone, mode);
412 posix_acl_release(clone);
416 posix_acl_release(*acl);
420 EXPORT_SYMBOL(posix_acl_chmod);