6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public
8 * License v2 as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public
16 * License along with this program; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 021110-1307, USA.
21 #include <linux/ceph/ceph_debug.h>
23 #include <linux/string.h>
24 #include <linux/xattr.h>
25 #include <linux/posix_acl_xattr.h>
26 #include <linux/posix_acl.h>
27 #include <linux/sched.h>
28 #include <linux/slab.h>
32 static inline void ceph_set_cached_acl(struct inode *inode,
33 int type, struct posix_acl *acl)
35 struct ceph_inode_info *ci = ceph_inode(inode);
37 spin_lock(&ci->i_ceph_lock);
38 if (__ceph_caps_issued_mask(ci, CEPH_CAP_XATTR_SHARED, 0))
39 set_cached_acl(inode, type, acl);
40 spin_unlock(&ci->i_ceph_lock);
43 static inline struct posix_acl *ceph_get_cached_acl(struct inode *inode,
46 struct ceph_inode_info *ci = ceph_inode(inode);
47 struct posix_acl *acl = ACL_NOT_CACHED;
49 spin_lock(&ci->i_ceph_lock);
50 if (__ceph_caps_issued_mask(ci, CEPH_CAP_XATTR_SHARED, 0))
51 acl = get_cached_acl(inode, type);
52 spin_unlock(&ci->i_ceph_lock);
57 struct posix_acl *ceph_get_acl(struct inode *inode, int type)
62 struct posix_acl *acl;
66 name = POSIX_ACL_XATTR_ACCESS;
68 case ACL_TYPE_DEFAULT:
69 name = POSIX_ACL_XATTR_DEFAULT;
75 size = __ceph_getxattr(inode, name, "", 0);
77 value = kzalloc(size, GFP_NOFS);
79 return ERR_PTR(-ENOMEM);
80 size = __ceph_getxattr(inode, name, value, size);
84 acl = posix_acl_from_xattr(&init_user_ns, value, size);
85 else if (size == -ERANGE || size == -ENODATA || size == 0)
93 ceph_set_cached_acl(inode, type, acl);
98 int ceph_set_acl(struct inode *inode, struct posix_acl *acl, int type)
100 int ret = 0, size = 0;
101 const char *name = NULL;
103 struct iattr newattrs;
104 umode_t new_mode = inode->i_mode, old_mode = inode->i_mode;
105 struct dentry *dentry;
108 case ACL_TYPE_ACCESS:
109 name = POSIX_ACL_XATTR_ACCESS;
111 ret = posix_acl_equiv_mode(acl, &new_mode);
118 case ACL_TYPE_DEFAULT:
119 if (!S_ISDIR(inode->i_mode)) {
120 ret = acl ? -EINVAL : 0;
123 name = POSIX_ACL_XATTR_DEFAULT;
131 size = posix_acl_xattr_size(acl->a_count);
132 value = kmalloc(size, GFP_NOFS);
138 ret = posix_acl_to_xattr(&init_user_ns, acl, value, size);
143 dentry = d_find_alias(inode);
144 if (new_mode != old_mode) {
145 newattrs.ia_mode = new_mode;
146 newattrs.ia_valid = ATTR_MODE;
147 ret = ceph_setattr(dentry, &newattrs);
152 ret = __ceph_setxattr(dentry, name, value, size, 0);
154 if (new_mode != old_mode) {
155 newattrs.ia_mode = old_mode;
156 newattrs.ia_valid = ATTR_MODE;
157 ceph_setattr(dentry, &newattrs);
162 ceph_set_cached_acl(inode, type, acl);
172 int ceph_pre_init_acls(struct inode *dir, umode_t *mode,
173 struct ceph_acls_info *info)
175 struct posix_acl *acl, *default_acl;
176 size_t val_size1 = 0, val_size2 = 0;
177 struct ceph_pagelist *pagelist = NULL;
178 void *tmp_buf = NULL;
181 err = posix_acl_create(dir, mode, &default_acl, &acl);
186 int ret = posix_acl_equiv_mode(acl, mode);
190 posix_acl_release(acl);
195 if (!default_acl && !acl)
199 val_size1 = posix_acl_xattr_size(acl->a_count);
201 val_size2 = posix_acl_xattr_size(default_acl->a_count);
204 tmp_buf = kmalloc(max(val_size1, val_size2), GFP_NOFS);
207 pagelist = kmalloc(sizeof(struct ceph_pagelist), GFP_NOFS);
210 ceph_pagelist_init(pagelist);
212 err = ceph_pagelist_reserve(pagelist, PAGE_SIZE);
216 ceph_pagelist_encode_32(pagelist, acl && default_acl ? 2 : 1);
219 size_t len = strlen(POSIX_ACL_XATTR_ACCESS);
220 err = ceph_pagelist_reserve(pagelist, len + val_size1 + 8);
223 ceph_pagelist_encode_string(pagelist, POSIX_ACL_XATTR_ACCESS,
225 err = posix_acl_to_xattr(&init_user_ns, acl,
229 ceph_pagelist_encode_32(pagelist, val_size1);
230 ceph_pagelist_append(pagelist, tmp_buf, val_size1);
233 size_t len = strlen(POSIX_ACL_XATTR_DEFAULT);
234 err = ceph_pagelist_reserve(pagelist, len + val_size2 + 8);
237 err = ceph_pagelist_encode_string(pagelist,
238 POSIX_ACL_XATTR_DEFAULT, len);
239 err = posix_acl_to_xattr(&init_user_ns, default_acl,
243 ceph_pagelist_encode_32(pagelist, val_size2);
244 ceph_pagelist_append(pagelist, tmp_buf, val_size2);
250 info->default_acl = default_acl;
251 info->pagelist = pagelist;
255 posix_acl_release(acl);
256 posix_acl_release(default_acl);
259 ceph_pagelist_release(pagelist);
263 void ceph_init_inode_acls(struct inode* inode, struct ceph_acls_info *info)
267 ceph_set_cached_acl(inode, ACL_TYPE_ACCESS, info->acl);
268 ceph_set_cached_acl(inode, ACL_TYPE_DEFAULT, info->default_acl);
271 void ceph_release_acls_info(struct ceph_acls_info *info)
273 posix_acl_release(info->acl);
274 posix_acl_release(info->default_acl);
276 ceph_pagelist_release(info->pagelist);