kill boilerplate around posix_acl_chmod_masq()
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / ocfs2 / acl.c
blobdd0296ade181e2dc607a583063fb2650d22256ea
1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
4 * acl.c
6 * Copyright (C) 2004, 2008 Oracle. All rights reserved.
8 * CREDITS:
9 * Lots of code in this file is copy from linux/fs/ext3/acl.c.
10 * Copyright (C) 2001-2003 Andreas Gruenbacher, <agruen@suse.de>
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public
14 * License version 2 as published by the Free Software Foundation.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
22 #include <linux/init.h>
23 #include <linux/module.h>
24 #include <linux/slab.h>
25 #include <linux/string.h>
27 #include <cluster/masklog.h>
29 #include "ocfs2.h"
30 #include "alloc.h"
31 #include "dlmglue.h"
32 #include "file.h"
33 #include "inode.h"
34 #include "journal.h"
35 #include "ocfs2_fs.h"
37 #include "xattr.h"
38 #include "acl.h"
41 * Convert from xattr value to acl struct.
43 static struct posix_acl *ocfs2_acl_from_xattr(const void *value, size_t size)
45 int n, count;
46 struct posix_acl *acl;
48 if (!value)
49 return NULL;
50 if (size < sizeof(struct posix_acl_entry))
51 return ERR_PTR(-EINVAL);
53 count = size / sizeof(struct posix_acl_entry);
54 if (count < 0)
55 return ERR_PTR(-EINVAL);
56 if (count == 0)
57 return NULL;
59 acl = posix_acl_alloc(count, GFP_NOFS);
60 if (!acl)
61 return ERR_PTR(-ENOMEM);
62 for (n = 0; n < count; n++) {
63 struct ocfs2_acl_entry *entry =
64 (struct ocfs2_acl_entry *)value;
66 acl->a_entries[n].e_tag = le16_to_cpu(entry->e_tag);
67 acl->a_entries[n].e_perm = le16_to_cpu(entry->e_perm);
68 acl->a_entries[n].e_id = le32_to_cpu(entry->e_id);
69 value += sizeof(struct posix_acl_entry);
72 return acl;
76 * Convert acl struct to xattr value.
78 static void *ocfs2_acl_to_xattr(const struct posix_acl *acl, size_t *size)
80 struct ocfs2_acl_entry *entry = NULL;
81 char *ocfs2_acl;
82 size_t n;
84 *size = acl->a_count * sizeof(struct posix_acl_entry);
86 ocfs2_acl = kmalloc(*size, GFP_NOFS);
87 if (!ocfs2_acl)
88 return ERR_PTR(-ENOMEM);
90 entry = (struct ocfs2_acl_entry *)ocfs2_acl;
91 for (n = 0; n < acl->a_count; n++, entry++) {
92 entry->e_tag = cpu_to_le16(acl->a_entries[n].e_tag);
93 entry->e_perm = cpu_to_le16(acl->a_entries[n].e_perm);
94 entry->e_id = cpu_to_le32(acl->a_entries[n].e_id);
96 return ocfs2_acl;
99 static struct posix_acl *ocfs2_get_acl_nolock(struct inode *inode,
100 int type,
101 struct buffer_head *di_bh)
103 int name_index;
104 char *value = NULL;
105 struct posix_acl *acl;
106 int retval;
108 switch (type) {
109 case ACL_TYPE_ACCESS:
110 name_index = OCFS2_XATTR_INDEX_POSIX_ACL_ACCESS;
111 break;
112 case ACL_TYPE_DEFAULT:
113 name_index = OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT;
114 break;
115 default:
116 return ERR_PTR(-EINVAL);
119 retval = ocfs2_xattr_get_nolock(inode, di_bh, name_index, "", NULL, 0);
120 if (retval > 0) {
121 value = kmalloc(retval, GFP_NOFS);
122 if (!value)
123 return ERR_PTR(-ENOMEM);
124 retval = ocfs2_xattr_get_nolock(inode, di_bh, name_index,
125 "", value, retval);
128 if (retval > 0)
129 acl = ocfs2_acl_from_xattr(value, retval);
130 else if (retval == -ENODATA || retval == 0)
131 acl = NULL;
132 else
133 acl = ERR_PTR(retval);
135 kfree(value);
137 return acl;
142 * Get posix acl.
144 static struct posix_acl *ocfs2_get_acl(struct inode *inode, int type)
146 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
147 struct buffer_head *di_bh = NULL;
148 struct posix_acl *acl;
149 int ret;
151 if (!(osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL))
152 return NULL;
154 ret = ocfs2_inode_lock(inode, &di_bh, 0);
155 if (ret < 0) {
156 mlog_errno(ret);
157 acl = ERR_PTR(ret);
158 return acl;
161 acl = ocfs2_get_acl_nolock(inode, type, di_bh);
163 ocfs2_inode_unlock(inode, 0);
165 brelse(di_bh);
167 return acl;
171 * Helper function to set i_mode in memory and disk. Some call paths
172 * will not have di_bh or a journal handle to pass, in which case it
173 * will create it's own.
175 static int ocfs2_acl_set_mode(struct inode *inode, struct buffer_head *di_bh,
176 handle_t *handle, umode_t new_mode)
178 int ret, commit_handle = 0;
179 struct ocfs2_dinode *di;
181 if (di_bh == NULL) {
182 ret = ocfs2_read_inode_block(inode, &di_bh);
183 if (ret) {
184 mlog_errno(ret);
185 goto out;
187 } else
188 get_bh(di_bh);
190 if (handle == NULL) {
191 handle = ocfs2_start_trans(OCFS2_SB(inode->i_sb),
192 OCFS2_INODE_UPDATE_CREDITS);
193 if (IS_ERR(handle)) {
194 ret = PTR_ERR(handle);
195 mlog_errno(ret);
196 goto out_brelse;
199 commit_handle = 1;
202 di = (struct ocfs2_dinode *)di_bh->b_data;
203 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
204 OCFS2_JOURNAL_ACCESS_WRITE);
205 if (ret) {
206 mlog_errno(ret);
207 goto out_commit;
210 inode->i_mode = new_mode;
211 inode->i_ctime = CURRENT_TIME;
212 di->i_mode = cpu_to_le16(inode->i_mode);
213 di->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
214 di->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
216 ocfs2_journal_dirty(handle, di_bh);
218 out_commit:
219 if (commit_handle)
220 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
221 out_brelse:
222 brelse(di_bh);
223 out:
224 return ret;
228 * Set the access or default ACL of an inode.
230 static int ocfs2_set_acl(handle_t *handle,
231 struct inode *inode,
232 struct buffer_head *di_bh,
233 int type,
234 struct posix_acl *acl,
235 struct ocfs2_alloc_context *meta_ac,
236 struct ocfs2_alloc_context *data_ac)
238 int name_index;
239 void *value = NULL;
240 size_t size = 0;
241 int ret;
243 if (S_ISLNK(inode->i_mode))
244 return -EOPNOTSUPP;
246 switch (type) {
247 case ACL_TYPE_ACCESS:
248 name_index = OCFS2_XATTR_INDEX_POSIX_ACL_ACCESS;
249 if (acl) {
250 mode_t mode = inode->i_mode;
251 ret = posix_acl_equiv_mode(acl, &mode);
252 if (ret < 0)
253 return ret;
254 else {
255 if (ret == 0)
256 acl = NULL;
258 ret = ocfs2_acl_set_mode(inode, di_bh,
259 handle, mode);
260 if (ret)
261 return ret;
265 break;
266 case ACL_TYPE_DEFAULT:
267 name_index = OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT;
268 if (!S_ISDIR(inode->i_mode))
269 return acl ? -EACCES : 0;
270 break;
271 default:
272 return -EINVAL;
275 if (acl) {
276 value = ocfs2_acl_to_xattr(acl, &size);
277 if (IS_ERR(value))
278 return (int)PTR_ERR(value);
281 if (handle)
282 ret = ocfs2_xattr_set_handle(handle, inode, di_bh, name_index,
283 "", value, size, 0,
284 meta_ac, data_ac);
285 else
286 ret = ocfs2_xattr_set(inode, name_index, "", value, size, 0);
288 kfree(value);
290 return ret;
293 int ocfs2_check_acl(struct inode *inode, int mask)
295 struct ocfs2_super *osb;
296 struct buffer_head *di_bh = NULL;
297 struct posix_acl *acl;
298 int ret = -EAGAIN;
300 osb = OCFS2_SB(inode->i_sb);
301 if (!(osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL))
302 return ret;
304 ret = ocfs2_read_inode_block(inode, &di_bh);
305 if (ret < 0) {
306 mlog_errno(ret);
307 return ret;
310 acl = ocfs2_get_acl_nolock(inode, ACL_TYPE_ACCESS, di_bh);
312 brelse(di_bh);
314 if (IS_ERR(acl)) {
315 mlog_errno(PTR_ERR(acl));
316 return PTR_ERR(acl);
318 if (acl) {
319 ret = posix_acl_permission(inode, acl, mask);
320 posix_acl_release(acl);
321 return ret;
324 return -EAGAIN;
327 int ocfs2_acl_chmod(struct inode *inode)
329 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
330 struct posix_acl *acl;
331 int ret;
333 if (S_ISLNK(inode->i_mode))
334 return -EOPNOTSUPP;
336 if (!(osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL))
337 return 0;
339 acl = ocfs2_get_acl(inode, ACL_TYPE_ACCESS);
340 if (IS_ERR(acl) || !acl)
341 return PTR_ERR(acl);
342 ret = posix_acl_chmod(&acl, GFP_KERNEL, inode->i_mode);
343 if (ret)
344 return ret;
345 ret = ocfs2_set_acl(NULL, inode, NULL, ACL_TYPE_ACCESS,
346 acl, NULL, NULL);
347 posix_acl_release(acl);
348 return ret;
352 * Initialize the ACLs of a new inode. If parent directory has default ACL,
353 * then clone to new inode. Called from ocfs2_mknod.
355 int ocfs2_init_acl(handle_t *handle,
356 struct inode *inode,
357 struct inode *dir,
358 struct buffer_head *di_bh,
359 struct buffer_head *dir_bh,
360 struct ocfs2_alloc_context *meta_ac,
361 struct ocfs2_alloc_context *data_ac)
363 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
364 struct posix_acl *acl = NULL;
365 int ret = 0, ret2;
366 mode_t mode;
368 if (!S_ISLNK(inode->i_mode)) {
369 if (osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) {
370 acl = ocfs2_get_acl_nolock(dir, ACL_TYPE_DEFAULT,
371 dir_bh);
372 if (IS_ERR(acl))
373 return PTR_ERR(acl);
375 if (!acl) {
376 mode = inode->i_mode & ~current_umask();
377 ret = ocfs2_acl_set_mode(inode, di_bh, handle, mode);
378 if (ret) {
379 mlog_errno(ret);
380 goto cleanup;
384 if ((osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) && acl) {
385 struct posix_acl *clone;
387 if (S_ISDIR(inode->i_mode)) {
388 ret = ocfs2_set_acl(handle, inode, di_bh,
389 ACL_TYPE_DEFAULT, acl,
390 meta_ac, data_ac);
391 if (ret)
392 goto cleanup;
394 clone = posix_acl_clone(acl, GFP_NOFS);
395 ret = -ENOMEM;
396 if (!clone)
397 goto cleanup;
399 mode = inode->i_mode;
400 ret = posix_acl_create_masq(clone, &mode);
401 if (ret >= 0) {
402 ret2 = ocfs2_acl_set_mode(inode, di_bh, handle, mode);
403 if (ret2) {
404 mlog_errno(ret2);
405 ret = ret2;
406 posix_acl_release(clone);
407 goto cleanup;
409 if (ret > 0) {
410 ret = ocfs2_set_acl(handle, inode,
411 di_bh, ACL_TYPE_ACCESS,
412 clone, meta_ac, data_ac);
415 posix_acl_release(clone);
417 cleanup:
418 posix_acl_release(acl);
419 return ret;
422 static size_t ocfs2_xattr_list_acl_access(struct dentry *dentry,
423 char *list,
424 size_t list_len,
425 const char *name,
426 size_t name_len,
427 int type)
429 struct ocfs2_super *osb = OCFS2_SB(dentry->d_sb);
430 const size_t size = sizeof(POSIX_ACL_XATTR_ACCESS);
432 if (!(osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL))
433 return 0;
435 if (list && size <= list_len)
436 memcpy(list, POSIX_ACL_XATTR_ACCESS, size);
437 return size;
440 static size_t ocfs2_xattr_list_acl_default(struct dentry *dentry,
441 char *list,
442 size_t list_len,
443 const char *name,
444 size_t name_len,
445 int type)
447 struct ocfs2_super *osb = OCFS2_SB(dentry->d_sb);
448 const size_t size = sizeof(POSIX_ACL_XATTR_DEFAULT);
450 if (!(osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL))
451 return 0;
453 if (list && size <= list_len)
454 memcpy(list, POSIX_ACL_XATTR_DEFAULT, size);
455 return size;
458 static int ocfs2_xattr_get_acl(struct dentry *dentry, const char *name,
459 void *buffer, size_t size, int type)
461 struct ocfs2_super *osb = OCFS2_SB(dentry->d_sb);
462 struct posix_acl *acl;
463 int ret;
465 if (strcmp(name, "") != 0)
466 return -EINVAL;
467 if (!(osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL))
468 return -EOPNOTSUPP;
470 acl = ocfs2_get_acl(dentry->d_inode, type);
471 if (IS_ERR(acl))
472 return PTR_ERR(acl);
473 if (acl == NULL)
474 return -ENODATA;
475 ret = posix_acl_to_xattr(acl, buffer, size);
476 posix_acl_release(acl);
478 return ret;
481 static int ocfs2_xattr_set_acl(struct dentry *dentry, const char *name,
482 const void *value, size_t size, int flags, int type)
484 struct inode *inode = dentry->d_inode;
485 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
486 struct posix_acl *acl;
487 int ret = 0;
489 if (strcmp(name, "") != 0)
490 return -EINVAL;
491 if (!(osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL))
492 return -EOPNOTSUPP;
494 if (!inode_owner_or_capable(inode))
495 return -EPERM;
497 if (value) {
498 acl = posix_acl_from_xattr(value, size);
499 if (IS_ERR(acl))
500 return PTR_ERR(acl);
501 else if (acl) {
502 ret = posix_acl_valid(acl);
503 if (ret)
504 goto cleanup;
506 } else
507 acl = NULL;
509 ret = ocfs2_set_acl(NULL, inode, NULL, type, acl, NULL, NULL);
511 cleanup:
512 posix_acl_release(acl);
513 return ret;
516 const struct xattr_handler ocfs2_xattr_acl_access_handler = {
517 .prefix = POSIX_ACL_XATTR_ACCESS,
518 .flags = ACL_TYPE_ACCESS,
519 .list = ocfs2_xattr_list_acl_access,
520 .get = ocfs2_xattr_get_acl,
521 .set = ocfs2_xattr_set_acl,
524 const struct xattr_handler ocfs2_xattr_acl_default_handler = {
525 .prefix = POSIX_ACL_XATTR_DEFAULT,
526 .flags = ACL_TYPE_DEFAULT,
527 .list = ocfs2_xattr_list_acl_default,
528 .get = ocfs2_xattr_get_acl,
529 .set = ocfs2_xattr_set_acl,