sanitize xattr handler prototypes
[linux-2.6.git] / fs / xfs / linux-2.6 / xfs_acl.c
blob2512125dfa7c9eadba5e440afea5250124fcbe28
1 /*
2 * Copyright (c) 2008, Christoph Hellwig
3 * All Rights Reserved.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it would 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 the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 #include "xfs.h"
19 #include "xfs_acl.h"
20 #include "xfs_attr.h"
21 #include "xfs_bmap_btree.h"
22 #include "xfs_inode.h"
23 #include "xfs_vnodeops.h"
24 #include "xfs_trace.h"
25 #include <linux/xattr.h>
26 #include <linux/posix_acl_xattr.h>
30 * Locking scheme:
31 * - all ACL updates are protected by inode->i_mutex, which is taken before
32 * calling into this file.
35 STATIC struct posix_acl *
36 xfs_acl_from_disk(struct xfs_acl *aclp)
38 struct posix_acl_entry *acl_e;
39 struct posix_acl *acl;
40 struct xfs_acl_entry *ace;
41 int count, i;
43 count = be32_to_cpu(aclp->acl_cnt);
45 acl = posix_acl_alloc(count, GFP_KERNEL);
46 if (!acl)
47 return ERR_PTR(-ENOMEM);
49 for (i = 0; i < count; i++) {
50 acl_e = &acl->a_entries[i];
51 ace = &aclp->acl_entry[i];
54 * The tag is 32 bits on disk and 16 bits in core.
56 * Because every access to it goes through the core
57 * format first this is not a problem.
59 acl_e->e_tag = be32_to_cpu(ace->ae_tag);
60 acl_e->e_perm = be16_to_cpu(ace->ae_perm);
62 switch (acl_e->e_tag) {
63 case ACL_USER:
64 case ACL_GROUP:
65 acl_e->e_id = be32_to_cpu(ace->ae_id);
66 break;
67 case ACL_USER_OBJ:
68 case ACL_GROUP_OBJ:
69 case ACL_MASK:
70 case ACL_OTHER:
71 acl_e->e_id = ACL_UNDEFINED_ID;
72 break;
73 default:
74 goto fail;
77 return acl;
79 fail:
80 posix_acl_release(acl);
81 return ERR_PTR(-EINVAL);
84 STATIC void
85 xfs_acl_to_disk(struct xfs_acl *aclp, const struct posix_acl *acl)
87 const struct posix_acl_entry *acl_e;
88 struct xfs_acl_entry *ace;
89 int i;
91 aclp->acl_cnt = cpu_to_be32(acl->a_count);
92 for (i = 0; i < acl->a_count; i++) {
93 ace = &aclp->acl_entry[i];
94 acl_e = &acl->a_entries[i];
96 ace->ae_tag = cpu_to_be32(acl_e->e_tag);
97 ace->ae_id = cpu_to_be32(acl_e->e_id);
98 ace->ae_perm = cpu_to_be16(acl_e->e_perm);
102 struct posix_acl *
103 xfs_get_acl(struct inode *inode, int type)
105 struct xfs_inode *ip = XFS_I(inode);
106 struct posix_acl *acl;
107 struct xfs_acl *xfs_acl;
108 int len = sizeof(struct xfs_acl);
109 char *ea_name;
110 int error;
112 acl = get_cached_acl(inode, type);
113 if (acl != ACL_NOT_CACHED)
114 return acl;
116 switch (type) {
117 case ACL_TYPE_ACCESS:
118 ea_name = SGI_ACL_FILE;
119 break;
120 case ACL_TYPE_DEFAULT:
121 ea_name = SGI_ACL_DEFAULT;
122 break;
123 default:
124 BUG();
128 * If we have a cached ACLs value just return it, not need to
129 * go out to the disk.
132 xfs_acl = kzalloc(sizeof(struct xfs_acl), GFP_KERNEL);
133 if (!xfs_acl)
134 return ERR_PTR(-ENOMEM);
136 error = -xfs_attr_get(ip, ea_name, (char *)xfs_acl, &len, ATTR_ROOT);
137 if (error) {
139 * If the attribute doesn't exist make sure we have a negative
140 * cache entry, for any other error assume it is transient and
141 * leave the cache entry as ACL_NOT_CACHED.
143 if (error == -ENOATTR) {
144 acl = NULL;
145 goto out_update_cache;
147 goto out;
150 acl = xfs_acl_from_disk(xfs_acl);
151 if (IS_ERR(acl))
152 goto out;
154 out_update_cache:
155 set_cached_acl(inode, type, acl);
156 out:
157 kfree(xfs_acl);
158 return acl;
161 STATIC int
162 xfs_set_acl(struct inode *inode, int type, struct posix_acl *acl)
164 struct xfs_inode *ip = XFS_I(inode);
165 char *ea_name;
166 int error;
168 if (S_ISLNK(inode->i_mode))
169 return -EOPNOTSUPP;
171 switch (type) {
172 case ACL_TYPE_ACCESS:
173 ea_name = SGI_ACL_FILE;
174 break;
175 case ACL_TYPE_DEFAULT:
176 if (!S_ISDIR(inode->i_mode))
177 return acl ? -EACCES : 0;
178 ea_name = SGI_ACL_DEFAULT;
179 break;
180 default:
181 return -EINVAL;
184 if (acl) {
185 struct xfs_acl *xfs_acl;
186 int len;
188 xfs_acl = kzalloc(sizeof(struct xfs_acl), GFP_KERNEL);
189 if (!xfs_acl)
190 return -ENOMEM;
192 xfs_acl_to_disk(xfs_acl, acl);
193 len = sizeof(struct xfs_acl) -
194 (sizeof(struct xfs_acl_entry) *
195 (XFS_ACL_MAX_ENTRIES - acl->a_count));
197 error = -xfs_attr_set(ip, ea_name, (char *)xfs_acl,
198 len, ATTR_ROOT);
200 kfree(xfs_acl);
201 } else {
203 * A NULL ACL argument means we want to remove the ACL.
205 error = -xfs_attr_remove(ip, ea_name, ATTR_ROOT);
208 * If the attribute didn't exist to start with that's fine.
210 if (error == -ENOATTR)
211 error = 0;
214 if (!error)
215 set_cached_acl(inode, type, acl);
216 return error;
220 xfs_check_acl(struct inode *inode, int mask)
222 struct xfs_inode *ip = XFS_I(inode);
223 struct posix_acl *acl;
224 int error = -EAGAIN;
226 xfs_itrace_entry(ip);
229 * If there is no attribute fork no ACL exists on this inode and
230 * we can skip the whole exercise.
232 if (!XFS_IFORK_Q(ip))
233 return -EAGAIN;
235 acl = xfs_get_acl(inode, ACL_TYPE_ACCESS);
236 if (IS_ERR(acl))
237 return PTR_ERR(acl);
238 if (acl) {
239 error = posix_acl_permission(inode, acl, mask);
240 posix_acl_release(acl);
243 return error;
246 static int
247 xfs_set_mode(struct inode *inode, mode_t mode)
249 int error = 0;
251 if (mode != inode->i_mode) {
252 struct iattr iattr;
254 iattr.ia_valid = ATTR_MODE;
255 iattr.ia_mode = mode;
257 error = -xfs_setattr(XFS_I(inode), &iattr, XFS_ATTR_NOACL);
260 return error;
263 static int
264 xfs_acl_exists(struct inode *inode, char *name)
266 int len = sizeof(struct xfs_acl);
268 return (xfs_attr_get(XFS_I(inode), name, NULL, &len,
269 ATTR_ROOT|ATTR_KERNOVAL) == 0);
273 posix_acl_access_exists(struct inode *inode)
275 return xfs_acl_exists(inode, SGI_ACL_FILE);
279 posix_acl_default_exists(struct inode *inode)
281 if (!S_ISDIR(inode->i_mode))
282 return 0;
283 return xfs_acl_exists(inode, SGI_ACL_DEFAULT);
287 * No need for i_mutex because the inode is not yet exposed to the VFS.
290 xfs_inherit_acl(struct inode *inode, struct posix_acl *default_acl)
292 struct posix_acl *clone;
293 mode_t mode;
294 int error = 0, inherit = 0;
296 if (S_ISDIR(inode->i_mode)) {
297 error = xfs_set_acl(inode, ACL_TYPE_DEFAULT, default_acl);
298 if (error)
299 return error;
302 clone = posix_acl_clone(default_acl, GFP_KERNEL);
303 if (!clone)
304 return -ENOMEM;
306 mode = inode->i_mode;
307 error = posix_acl_create_masq(clone, &mode);
308 if (error < 0)
309 goto out_release_clone;
312 * If posix_acl_create_masq returns a positive value we need to
313 * inherit a permission that can't be represented using the Unix
314 * mode bits and we actually need to set an ACL.
316 if (error > 0)
317 inherit = 1;
319 error = xfs_set_mode(inode, mode);
320 if (error)
321 goto out_release_clone;
323 if (inherit)
324 error = xfs_set_acl(inode, ACL_TYPE_ACCESS, clone);
326 out_release_clone:
327 posix_acl_release(clone);
328 return error;
332 xfs_acl_chmod(struct inode *inode)
334 struct posix_acl *acl, *clone;
335 int error;
337 if (S_ISLNK(inode->i_mode))
338 return -EOPNOTSUPP;
340 acl = xfs_get_acl(inode, ACL_TYPE_ACCESS);
341 if (IS_ERR(acl) || !acl)
342 return PTR_ERR(acl);
344 clone = posix_acl_clone(acl, GFP_KERNEL);
345 posix_acl_release(acl);
346 if (!clone)
347 return -ENOMEM;
349 error = posix_acl_chmod_masq(clone, inode->i_mode);
350 if (!error)
351 error = xfs_set_acl(inode, ACL_TYPE_ACCESS, clone);
353 posix_acl_release(clone);
354 return error;
357 static int
358 xfs_xattr_acl_get(struct dentry *dentry, const char *name,
359 void *value, size_t size, int type)
361 struct posix_acl *acl;
362 int error;
364 acl = xfs_get_acl(dentry->d_inode, type);
365 if (IS_ERR(acl))
366 return PTR_ERR(acl);
367 if (acl == NULL)
368 return -ENODATA;
370 error = posix_acl_to_xattr(acl, value, size);
371 posix_acl_release(acl);
373 return error;
376 static int
377 xfs_xattr_acl_set(struct dentry *dentry, const char *name,
378 const void *value, size_t size, int flags, int type)
380 struct inode *inode = dentry->d_inode;
381 struct posix_acl *acl = NULL;
382 int error = 0;
384 if (flags & XATTR_CREATE)
385 return -EINVAL;
386 if (type == ACL_TYPE_DEFAULT && !S_ISDIR(inode->i_mode))
387 return value ? -EACCES : 0;
388 if ((current_fsuid() != inode->i_uid) && !capable(CAP_FOWNER))
389 return -EPERM;
391 if (!value)
392 goto set_acl;
394 acl = posix_acl_from_xattr(value, size);
395 if (!acl) {
397 * acl_set_file(3) may request that we set default ACLs with
398 * zero length -- defend (gracefully) against that here.
400 goto out;
402 if (IS_ERR(acl)) {
403 error = PTR_ERR(acl);
404 goto out;
407 error = posix_acl_valid(acl);
408 if (error)
409 goto out_release;
411 error = -EINVAL;
412 if (acl->a_count > XFS_ACL_MAX_ENTRIES)
413 goto out_release;
415 if (type == ACL_TYPE_ACCESS) {
416 mode_t mode = inode->i_mode;
417 error = posix_acl_equiv_mode(acl, &mode);
419 if (error <= 0) {
420 posix_acl_release(acl);
421 acl = NULL;
423 if (error < 0)
424 return error;
427 error = xfs_set_mode(inode, mode);
428 if (error)
429 goto out_release;
432 set_acl:
433 error = xfs_set_acl(inode, type, acl);
434 out_release:
435 posix_acl_release(acl);
436 out:
437 return error;
440 struct xattr_handler xfs_xattr_acl_access_handler = {
441 .prefix = POSIX_ACL_XATTR_ACCESS,
442 .flags = ACL_TYPE_ACCESS,
443 .get = xfs_xattr_acl_get,
444 .set = xfs_xattr_acl_set,
447 struct xattr_handler xfs_xattr_acl_default_handler = {
448 .prefix = POSIX_ACL_XATTR_DEFAULT,
449 .flags = ACL_TYPE_DEFAULT,
450 .get = xfs_xattr_acl_get,
451 .set = xfs_xattr_acl_set,