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
);
41 forget_cached_acl(inode
, type
);
42 spin_unlock(&ci
->i_ceph_lock
);
45 struct posix_acl
*ceph_get_acl(struct inode
*inode
, int type
)
50 struct posix_acl
*acl
;
54 name
= XATTR_NAME_POSIX_ACL_ACCESS
;
56 case ACL_TYPE_DEFAULT
:
57 name
= XATTR_NAME_POSIX_ACL_DEFAULT
;
63 size
= __ceph_getxattr(inode
, name
, "", 0);
65 value
= kzalloc(size
, GFP_NOFS
);
67 return ERR_PTR(-ENOMEM
);
68 size
= __ceph_getxattr(inode
, name
, value
, size
);
72 acl
= posix_acl_from_xattr(&init_user_ns
, value
, size
);
73 else if (size
== -ERANGE
|| size
== -ENODATA
|| size
== 0)
81 ceph_set_cached_acl(inode
, type
, acl
);
86 int ceph_set_acl(struct inode
*inode
, struct posix_acl
*acl
, int type
)
88 int ret
= 0, size
= 0;
89 const char *name
= NULL
;
91 struct iattr newattrs
;
92 umode_t new_mode
= inode
->i_mode
, old_mode
= inode
->i_mode
;
96 name
= XATTR_NAME_POSIX_ACL_ACCESS
;
98 ret
= posix_acl_update_mode(inode
, &new_mode
, &acl
);
103 case ACL_TYPE_DEFAULT
:
104 if (!S_ISDIR(inode
->i_mode
)) {
105 ret
= acl
? -EINVAL
: 0;
108 name
= XATTR_NAME_POSIX_ACL_DEFAULT
;
116 size
= posix_acl_xattr_size(acl
->a_count
);
117 value
= kmalloc(size
, GFP_NOFS
);
123 ret
= posix_acl_to_xattr(&init_user_ns
, acl
, value
, size
);
128 if (ceph_snap(inode
) != CEPH_NOSNAP
) {
133 if (new_mode
!= old_mode
) {
134 newattrs
.ia_ctime
= current_time(inode
);
135 newattrs
.ia_mode
= new_mode
;
136 newattrs
.ia_valid
= ATTR_MODE
;
137 ret
= __ceph_setattr(inode
, &newattrs
);
142 ret
= __ceph_setxattr(inode
, name
, value
, size
, 0);
144 if (new_mode
!= old_mode
) {
145 newattrs
.ia_mode
= old_mode
;
146 newattrs
.ia_valid
= ATTR_MODE
;
147 __ceph_setattr(inode
, &newattrs
);
152 ceph_set_cached_acl(inode
, type
, acl
);
160 int ceph_pre_init_acls(struct inode
*dir
, umode_t
*mode
,
161 struct ceph_acls_info
*info
)
163 struct posix_acl
*acl
, *default_acl
;
164 size_t val_size1
= 0, val_size2
= 0;
165 struct ceph_pagelist
*pagelist
= NULL
;
166 void *tmp_buf
= NULL
;
169 err
= posix_acl_create(dir
, mode
, &default_acl
, &acl
);
174 int ret
= posix_acl_equiv_mode(acl
, mode
);
178 posix_acl_release(acl
);
183 if (!default_acl
&& !acl
)
187 val_size1
= posix_acl_xattr_size(acl
->a_count
);
189 val_size2
= posix_acl_xattr_size(default_acl
->a_count
);
192 tmp_buf
= kmalloc(max(val_size1
, val_size2
), GFP_KERNEL
);
195 pagelist
= kmalloc(sizeof(struct ceph_pagelist
), GFP_KERNEL
);
198 ceph_pagelist_init(pagelist
);
200 err
= ceph_pagelist_reserve(pagelist
, PAGE_SIZE
);
204 ceph_pagelist_encode_32(pagelist
, acl
&& default_acl
? 2 : 1);
207 size_t len
= strlen(XATTR_NAME_POSIX_ACL_ACCESS
);
208 err
= ceph_pagelist_reserve(pagelist
, len
+ val_size1
+ 8);
211 ceph_pagelist_encode_string(pagelist
, XATTR_NAME_POSIX_ACL_ACCESS
,
213 err
= posix_acl_to_xattr(&init_user_ns
, acl
,
217 ceph_pagelist_encode_32(pagelist
, val_size1
);
218 ceph_pagelist_append(pagelist
, tmp_buf
, val_size1
);
221 size_t len
= strlen(XATTR_NAME_POSIX_ACL_DEFAULT
);
222 err
= ceph_pagelist_reserve(pagelist
, len
+ val_size2
+ 8);
225 err
= ceph_pagelist_encode_string(pagelist
,
226 XATTR_NAME_POSIX_ACL_DEFAULT
, len
);
227 err
= posix_acl_to_xattr(&init_user_ns
, default_acl
,
231 ceph_pagelist_encode_32(pagelist
, val_size2
);
232 ceph_pagelist_append(pagelist
, tmp_buf
, val_size2
);
238 info
->default_acl
= default_acl
;
239 info
->pagelist
= pagelist
;
243 posix_acl_release(acl
);
244 posix_acl_release(default_acl
);
247 ceph_pagelist_release(pagelist
);
251 void ceph_init_inode_acls(struct inode
* inode
, struct ceph_acls_info
*info
)
255 ceph_set_cached_acl(inode
, ACL_TYPE_ACCESS
, info
->acl
);
256 ceph_set_cached_acl(inode
, ACL_TYPE_DEFAULT
, info
->default_acl
);
259 void ceph_release_acls_info(struct ceph_acls_info
*info
)
261 posix_acl_release(info
->acl
);
262 posix_acl_release(info
->default_acl
);
264 ceph_pagelist_release(info
->pagelist
);