1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
6 * Copyright (C) 2004, 2008 Oracle. All rights reserved.
9 * Lots of code in this file is copy from linux/fs/ext3/acl.c.
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>
41 * Convert from xattr value to acl struct.
43 static struct posix_acl *ocfs2_acl_from_xattr(const void *value, size_t size)
46 struct posix_acl *acl;
50 if (size < sizeof(struct posix_acl_entry))
51 return ERR_PTR(-EINVAL);
53 count = size / sizeof(struct posix_acl_entry);
55 return ERR_PTR(-EINVAL);
59 acl = posix_acl_alloc(count, GFP_NOFS);
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 switch(acl->a_entries[n].e_tag) {
70 acl->a_entries[n].e_uid =
71 make_kuid(&init_user_ns,
72 le32_to_cpu(entry->e_id));
75 acl->a_entries[n].e_gid =
76 make_kgid(&init_user_ns,
77 le32_to_cpu(entry->e_id));
82 value += sizeof(struct posix_acl_entry);
89 * Convert acl struct to xattr value.
91 static void *ocfs2_acl_to_xattr(const struct posix_acl *acl, size_t *size)
93 struct ocfs2_acl_entry *entry = NULL;
97 *size = acl->a_count * sizeof(struct posix_acl_entry);
99 ocfs2_acl = kmalloc(*size, GFP_NOFS);
101 return ERR_PTR(-ENOMEM);
103 entry = (struct ocfs2_acl_entry *)ocfs2_acl;
104 for (n = 0; n < acl->a_count; n++, entry++) {
105 entry->e_tag = cpu_to_le16(acl->a_entries[n].e_tag);
106 entry->e_perm = cpu_to_le16(acl->a_entries[n].e_perm);
107 switch(acl->a_entries[n].e_tag) {
109 entry->e_id = cpu_to_le32(
110 from_kuid(&init_user_ns,
111 acl->a_entries[n].e_uid));
114 entry->e_id = cpu_to_le32(
115 from_kgid(&init_user_ns,
116 acl->a_entries[n].e_gid));
119 entry->e_id = cpu_to_le32(ACL_UNDEFINED_ID);
126 static struct posix_acl *ocfs2_get_acl_nolock(struct inode *inode,
128 struct buffer_head *di_bh)
132 struct posix_acl *acl;
136 case ACL_TYPE_ACCESS:
137 name_index = OCFS2_XATTR_INDEX_POSIX_ACL_ACCESS;
139 case ACL_TYPE_DEFAULT:
140 name_index = OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT;
143 return ERR_PTR(-EINVAL);
146 retval = ocfs2_xattr_get_nolock(inode, di_bh, name_index, "", NULL, 0);
148 value = kmalloc(retval, GFP_NOFS);
150 return ERR_PTR(-ENOMEM);
151 retval = ocfs2_xattr_get_nolock(inode, di_bh, name_index,
156 acl = ocfs2_acl_from_xattr(value, retval);
157 else if (retval == -ENODATA || retval == 0)
160 acl = ERR_PTR(retval);
171 static struct posix_acl *ocfs2_get_acl(struct inode *inode, int type)
173 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
174 struct buffer_head *di_bh = NULL;
175 struct posix_acl *acl;
178 if (!(osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL))
181 ret = ocfs2_inode_lock(inode, &di_bh, 0);
188 acl = ocfs2_get_acl_nolock(inode, type, di_bh);
190 ocfs2_inode_unlock(inode, 0);
198 * Helper function to set i_mode in memory and disk. Some call paths
199 * will not have di_bh or a journal handle to pass, in which case it
200 * will create it's own.
202 static int ocfs2_acl_set_mode(struct inode *inode, struct buffer_head *di_bh,
203 handle_t *handle, umode_t new_mode)
205 int ret, commit_handle = 0;
206 struct ocfs2_dinode *di;
209 ret = ocfs2_read_inode_block(inode, &di_bh);
217 if (handle == NULL) {
218 handle = ocfs2_start_trans(OCFS2_SB(inode->i_sb),
219 OCFS2_INODE_UPDATE_CREDITS);
220 if (IS_ERR(handle)) {
221 ret = PTR_ERR(handle);
229 di = (struct ocfs2_dinode *)di_bh->b_data;
230 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
231 OCFS2_JOURNAL_ACCESS_WRITE);
237 inode->i_mode = new_mode;
238 inode->i_ctime = CURRENT_TIME;
239 di->i_mode = cpu_to_le16(inode->i_mode);
240 di->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
241 di->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
243 ocfs2_journal_dirty(handle, di_bh);
247 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
255 * Set the access or default ACL of an inode.
257 static int ocfs2_set_acl(handle_t *handle,
259 struct buffer_head *di_bh,
261 struct posix_acl *acl,
262 struct ocfs2_alloc_context *meta_ac,
263 struct ocfs2_alloc_context *data_ac)
270 if (S_ISLNK(inode->i_mode))
274 case ACL_TYPE_ACCESS:
275 name_index = OCFS2_XATTR_INDEX_POSIX_ACL_ACCESS;
277 umode_t mode = inode->i_mode;
278 ret = posix_acl_equiv_mode(acl, &mode);
285 ret = ocfs2_acl_set_mode(inode, di_bh,
293 case ACL_TYPE_DEFAULT:
294 name_index = OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT;
295 if (!S_ISDIR(inode->i_mode))
296 return acl ? -EACCES : 0;
303 value = ocfs2_acl_to_xattr(acl, &size);
305 return (int)PTR_ERR(value);
309 ret = ocfs2_xattr_set_handle(handle, inode, di_bh, name_index,
313 ret = ocfs2_xattr_set(inode, name_index, "", value, size, 0);
320 struct posix_acl *ocfs2_iop_get_acl(struct inode *inode, int type)
322 struct ocfs2_super *osb;
323 struct buffer_head *di_bh = NULL;
324 struct posix_acl *acl;
327 osb = OCFS2_SB(inode->i_sb);
328 if (!(osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL))
331 ret = ocfs2_read_inode_block(inode, &di_bh);
335 acl = ocfs2_get_acl_nolock(inode, type, di_bh);
342 int ocfs2_acl_chmod(struct inode *inode)
344 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
345 struct posix_acl *acl;
348 if (S_ISLNK(inode->i_mode))
351 if (!(osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL))
354 acl = ocfs2_get_acl(inode, ACL_TYPE_ACCESS);
355 if (IS_ERR(acl) || !acl)
357 ret = posix_acl_chmod(&acl, GFP_KERNEL, inode->i_mode);
360 ret = ocfs2_set_acl(NULL, inode, NULL, ACL_TYPE_ACCESS,
362 posix_acl_release(acl);
367 * Initialize the ACLs of a new inode. If parent directory has default ACL,
368 * then clone to new inode. Called from ocfs2_mknod.
370 int ocfs2_init_acl(handle_t *handle,
373 struct buffer_head *di_bh,
374 struct buffer_head *dir_bh,
375 struct ocfs2_alloc_context *meta_ac,
376 struct ocfs2_alloc_context *data_ac)
378 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
379 struct posix_acl *acl = NULL;
383 if (!S_ISLNK(inode->i_mode)) {
384 if (osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) {
385 acl = ocfs2_get_acl_nolock(dir, ACL_TYPE_DEFAULT,
391 mode = inode->i_mode & ~current_umask();
392 ret = ocfs2_acl_set_mode(inode, di_bh, handle, mode);
399 if ((osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) && acl) {
400 if (S_ISDIR(inode->i_mode)) {
401 ret = ocfs2_set_acl(handle, inode, di_bh,
402 ACL_TYPE_DEFAULT, acl,
407 mode = inode->i_mode;
408 ret = posix_acl_create(&acl, GFP_NOFS, &mode);
412 ret2 = ocfs2_acl_set_mode(inode, di_bh, handle, mode);
419 ret = ocfs2_set_acl(handle, inode,
420 di_bh, ACL_TYPE_ACCESS,
421 acl, meta_ac, data_ac);
425 posix_acl_release(acl);
429 static size_t ocfs2_xattr_list_acl_access(struct dentry *dentry,
436 struct ocfs2_super *osb = OCFS2_SB(dentry->d_sb);
437 const size_t size = sizeof(POSIX_ACL_XATTR_ACCESS);
439 if (!(osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL))
442 if (list && size <= list_len)
443 memcpy(list, POSIX_ACL_XATTR_ACCESS, size);
447 static size_t ocfs2_xattr_list_acl_default(struct dentry *dentry,
454 struct ocfs2_super *osb = OCFS2_SB(dentry->d_sb);
455 const size_t size = sizeof(POSIX_ACL_XATTR_DEFAULT);
457 if (!(osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL))
460 if (list && size <= list_len)
461 memcpy(list, POSIX_ACL_XATTR_DEFAULT, size);
465 static int ocfs2_xattr_get_acl(struct dentry *dentry, const char *name,
466 void *buffer, size_t size, int type)
468 struct ocfs2_super *osb = OCFS2_SB(dentry->d_sb);
469 struct posix_acl *acl;
472 if (strcmp(name, "") != 0)
474 if (!(osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL))
477 acl = ocfs2_get_acl(dentry->d_inode, type);
482 ret = posix_acl_to_xattr(&init_user_ns, acl, buffer, size);
483 posix_acl_release(acl);
488 static int ocfs2_xattr_set_acl(struct dentry *dentry, const char *name,
489 const void *value, size_t size, int flags, int type)
491 struct inode *inode = dentry->d_inode;
492 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
493 struct posix_acl *acl;
496 if (strcmp(name, "") != 0)
498 if (!(osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL))
501 if (!inode_owner_or_capable(inode))
505 acl = posix_acl_from_xattr(&init_user_ns, value, size);
509 ret = posix_acl_valid(acl);
516 ret = ocfs2_set_acl(NULL, inode, NULL, type, acl, NULL, NULL);
519 posix_acl_release(acl);
523 const struct xattr_handler ocfs2_xattr_acl_access_handler = {
524 .prefix = POSIX_ACL_XATTR_ACCESS,
525 .flags = ACL_TYPE_ACCESS,
526 .list = ocfs2_xattr_list_acl_access,
527 .get = ocfs2_xattr_get_acl,
528 .set = ocfs2_xattr_set_acl,
531 const struct xattr_handler ocfs2_xattr_acl_default_handler = {
532 .prefix = POSIX_ACL_XATTR_DEFAULT,
533 .flags = ACL_TYPE_DEFAULT,
534 .list = ocfs2_xattr_list_acl_default,
535 .get = ocfs2_xattr_get_acl,
536 .set = ocfs2_xattr_set_acl,