USB: serial: option: add support for D-Link DWM-157 C1
[linux/fpc-iii.git] / fs / ceph / acl.c
blobbdb9c94335f16281b08501dddcad7a6c2945227a
1 /*
2 * linux/fs/ceph/acl.c
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>
22 #include <linux/fs.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>
30 #include "super.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)
45 int size;
46 const char *name;
47 char *value = NULL;
48 struct posix_acl *acl;
50 switch (type) {
51 case ACL_TYPE_ACCESS:
52 name = POSIX_ACL_XATTR_ACCESS;
53 break;
54 case ACL_TYPE_DEFAULT:
55 name = POSIX_ACL_XATTR_DEFAULT;
56 break;
57 default:
58 BUG();
61 size = __ceph_getxattr(inode, name, "", 0);
62 if (size > 0) {
63 value = kzalloc(size, GFP_NOFS);
64 if (!value)
65 return ERR_PTR(-ENOMEM);
66 size = __ceph_getxattr(inode, name, value, size);
69 if (size > 0)
70 acl = posix_acl_from_xattr(&init_user_ns, value, size);
71 else if (size == -ERANGE || size == -ENODATA || size == 0)
72 acl = NULL;
73 else
74 acl = ERR_PTR(-EIO);
76 kfree(value);
78 if (!IS_ERR(acl))
79 ceph_set_cached_acl(inode, type, acl);
81 return 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;
88 char *value = NULL;
89 struct iattr newattrs;
90 umode_t new_mode = inode->i_mode, old_mode = inode->i_mode;
91 struct dentry *dentry;
93 switch (type) {
94 case ACL_TYPE_ACCESS:
95 name = POSIX_ACL_XATTR_ACCESS;
96 if (acl) {
97 ret = posix_acl_update_mode(inode, &new_mode, &acl);
98 if (ret)
99 goto out;
101 break;
102 case ACL_TYPE_DEFAULT:
103 if (!S_ISDIR(inode->i_mode)) {
104 ret = acl ? -EINVAL : 0;
105 goto out;
107 name = POSIX_ACL_XATTR_DEFAULT;
108 break;
109 default:
110 ret = -EINVAL;
111 goto out;
114 if (acl) {
115 size = posix_acl_xattr_size(acl->a_count);
116 value = kmalloc(size, GFP_NOFS);
117 if (!value) {
118 ret = -ENOMEM;
119 goto out;
122 ret = posix_acl_to_xattr(&init_user_ns, acl, value, size);
123 if (ret < 0)
124 goto out_free;
127 dentry = d_find_alias(inode);
128 if (new_mode != old_mode) {
129 newattrs.ia_mode = new_mode;
130 newattrs.ia_valid = ATTR_MODE;
131 ret = __ceph_setattr(dentry, &newattrs);
132 if (ret)
133 goto out_dput;
136 ret = __ceph_setxattr(dentry, name, value, size, 0);
137 if (ret) {
138 if (new_mode != old_mode) {
139 newattrs.ia_mode = old_mode;
140 newattrs.ia_valid = ATTR_MODE;
141 __ceph_setattr(dentry, &newattrs);
143 goto out_dput;
146 ceph_set_cached_acl(inode, type, acl);
148 out_dput:
149 dput(dentry);
150 out_free:
151 kfree(value);
152 out:
153 return ret;
156 int ceph_pre_init_acls(struct inode *dir, umode_t *mode,
157 struct ceph_acls_info *info)
159 struct posix_acl *acl, *default_acl;
160 size_t val_size1 = 0, val_size2 = 0;
161 struct ceph_pagelist *pagelist = NULL;
162 void *tmp_buf = NULL;
163 int err;
165 err = posix_acl_create(dir, mode, &default_acl, &acl);
166 if (err)
167 return err;
169 if (acl) {
170 int ret = posix_acl_equiv_mode(acl, mode);
171 if (ret < 0)
172 goto out_err;
173 if (ret == 0) {
174 posix_acl_release(acl);
175 acl = NULL;
179 if (!default_acl && !acl)
180 return 0;
182 if (acl)
183 val_size1 = posix_acl_xattr_size(acl->a_count);
184 if (default_acl)
185 val_size2 = posix_acl_xattr_size(default_acl->a_count);
187 err = -ENOMEM;
188 tmp_buf = kmalloc(max(val_size1, val_size2), GFP_KERNEL);
189 if (!tmp_buf)
190 goto out_err;
191 pagelist = kmalloc(sizeof(struct ceph_pagelist), GFP_KERNEL);
192 if (!pagelist)
193 goto out_err;
194 ceph_pagelist_init(pagelist);
196 err = ceph_pagelist_reserve(pagelist, PAGE_SIZE);
197 if (err)
198 goto out_err;
200 ceph_pagelist_encode_32(pagelist, acl && default_acl ? 2 : 1);
202 if (acl) {
203 size_t len = strlen(POSIX_ACL_XATTR_ACCESS);
204 err = ceph_pagelist_reserve(pagelist, len + val_size1 + 8);
205 if (err)
206 goto out_err;
207 ceph_pagelist_encode_string(pagelist, POSIX_ACL_XATTR_ACCESS,
208 len);
209 err = posix_acl_to_xattr(&init_user_ns, acl,
210 tmp_buf, val_size1);
211 if (err < 0)
212 goto out_err;
213 ceph_pagelist_encode_32(pagelist, val_size1);
214 ceph_pagelist_append(pagelist, tmp_buf, val_size1);
216 if (default_acl) {
217 size_t len = strlen(POSIX_ACL_XATTR_DEFAULT);
218 err = ceph_pagelist_reserve(pagelist, len + val_size2 + 8);
219 if (err)
220 goto out_err;
221 err = ceph_pagelist_encode_string(pagelist,
222 POSIX_ACL_XATTR_DEFAULT, len);
223 err = posix_acl_to_xattr(&init_user_ns, default_acl,
224 tmp_buf, val_size2);
225 if (err < 0)
226 goto out_err;
227 ceph_pagelist_encode_32(pagelist, val_size2);
228 ceph_pagelist_append(pagelist, tmp_buf, val_size2);
231 kfree(tmp_buf);
233 info->acl = acl;
234 info->default_acl = default_acl;
235 info->pagelist = pagelist;
236 return 0;
238 out_err:
239 posix_acl_release(acl);
240 posix_acl_release(default_acl);
241 kfree(tmp_buf);
242 if (pagelist)
243 ceph_pagelist_release(pagelist);
244 return err;
247 void ceph_init_inode_acls(struct inode* inode, struct ceph_acls_info *info)
249 if (!inode)
250 return;
251 ceph_set_cached_acl(inode, ACL_TYPE_ACCESS, info->acl);
252 ceph_set_cached_acl(inode, ACL_TYPE_DEFAULT, info->default_acl);
255 void ceph_release_acls_info(struct ceph_acls_info *info)
257 posix_acl_release(info->acl);
258 posix_acl_release(info->default_acl);
259 if (info->pagelist)
260 ceph_pagelist_release(info->pagelist);