4 * Copyright (C) 2013 Guangliang Zhao, <lucienchao@gmail.com>
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 struct posix_acl *ceph_get_acl(struct inode *inode, int type)
48 struct posix_acl *acl;
52 name = POSIX_ACL_XATTR_ACCESS;
54 case ACL_TYPE_DEFAULT:
55 name = POSIX_ACL_XATTR_DEFAULT;
61 size = __ceph_getxattr(inode, name, "", 0);
63 value = kzalloc(size, GFP_NOFS);
65 return ERR_PTR(-ENOMEM);
66 size = __ceph_getxattr(inode, name, value, size);
70 acl = posix_acl_from_xattr(&init_user_ns, value, size);
71 else if (size == -ERANGE || size == -ENODATA || size == 0)
79 ceph_set_cached_acl(inode, type, acl);
84 int ceph_set_acl(struct inode *inode, struct posix_acl *acl, int type)
86 int ret = 0, size = 0;
87 const char *name = NULL;
89 struct iattr newattrs;
90 umode_t new_mode = inode->i_mode, old_mode = inode->i_mode;
91 struct dentry *dentry;
95 name = POSIX_ACL_XATTR_ACCESS;
97 ret = posix_acl_equiv_mode(acl, &new_mode);
104 case ACL_TYPE_DEFAULT:
105 if (!S_ISDIR(inode->i_mode)) {
106 ret = acl ? -EINVAL : 0;
109 name = POSIX_ACL_XATTR_DEFAULT;
117 size = posix_acl_xattr_size(acl->a_count);
118 value = kmalloc(size, GFP_NOFS);
124 ret = posix_acl_to_xattr(&init_user_ns, acl, value, size);
129 dentry = d_find_alias(inode);
130 if (new_mode != old_mode) {
131 newattrs.ia_mode = new_mode;
132 newattrs.ia_valid = ATTR_MODE;
133 ret = ceph_setattr(dentry, &newattrs);
138 ret = __ceph_setxattr(dentry, name, value, size, 0);
140 if (new_mode != old_mode) {
141 newattrs.ia_mode = old_mode;
142 newattrs.ia_valid = ATTR_MODE;
143 ceph_setattr(dentry, &newattrs);
148 ceph_set_cached_acl(inode, type, acl);
158 int ceph_pre_init_acls(struct inode *dir, umode_t *mode,
159 struct ceph_acls_info *info)
161 struct posix_acl *acl, *default_acl;
162 size_t val_size1 = 0, val_size2 = 0;
163 struct ceph_pagelist *pagelist = NULL;
164 void *tmp_buf = NULL;
167 err = posix_acl_create(dir, mode, &default_acl, &acl);
172 int ret = posix_acl_equiv_mode(acl, mode);
176 posix_acl_release(acl);
181 if (!default_acl && !acl)
185 val_size1 = posix_acl_xattr_size(acl->a_count);
187 val_size2 = posix_acl_xattr_size(default_acl->a_count);
190 tmp_buf = kmalloc(max(val_size1, val_size2), GFP_KERNEL);
193 pagelist = kmalloc(sizeof(struct ceph_pagelist), GFP_KERNEL);
196 ceph_pagelist_init(pagelist);
198 err = ceph_pagelist_reserve(pagelist, PAGE_SIZE);
202 ceph_pagelist_encode_32(pagelist, acl && default_acl ? 2 : 1);
205 size_t len = strlen(POSIX_ACL_XATTR_ACCESS);
206 err = ceph_pagelist_reserve(pagelist, len + val_size1 + 8);
209 ceph_pagelist_encode_string(pagelist, POSIX_ACL_XATTR_ACCESS,
211 err = posix_acl_to_xattr(&init_user_ns, acl,
215 ceph_pagelist_encode_32(pagelist, val_size1);
216 ceph_pagelist_append(pagelist, tmp_buf, val_size1);
219 size_t len = strlen(POSIX_ACL_XATTR_DEFAULT);
220 err = ceph_pagelist_reserve(pagelist, len + val_size2 + 8);
223 err = ceph_pagelist_encode_string(pagelist,
224 POSIX_ACL_XATTR_DEFAULT, len);
225 err = posix_acl_to_xattr(&init_user_ns, default_acl,
229 ceph_pagelist_encode_32(pagelist, val_size2);
230 ceph_pagelist_append(pagelist, tmp_buf, val_size2);
236 info->default_acl = default_acl;
237 info->pagelist = pagelist;
241 posix_acl_release(acl);
242 posix_acl_release(default_acl);
245 ceph_pagelist_release(pagelist);
249 void ceph_init_inode_acls(struct inode* inode, struct ceph_acls_info *info)
253 ceph_set_cached_acl(inode, ACL_TYPE_ACCESS, info->acl);
254 ceph_set_cached_acl(inode, ACL_TYPE_DEFAULT, info->default_acl);
257 void ceph_release_acls_info(struct ceph_acls_info *info)
259 posix_acl_release(info->acl);
260 posix_acl_release(info->default_acl);
262 ceph_pagelist_release(info->pagelist);