]> Git Repo - linux.git/blame - fs/9p/acl.c
net: avoid double accounting for pure zerocopy skbs
[linux.git] / fs / 9p / acl.c
CommitLineData
85ff872d
AK
1/*
2 * Copyright IBM Corporation, 2010
3 * Author Aneesh Kumar K.V <[email protected]>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2.1 of the GNU Lesser General Public License
7 * as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it would be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 *
13 */
14
15#include <linux/module.h>
16#include <linux/fs.h>
17#include <net/9p/9p.h>
18#include <net/9p/client.h>
19#include <linux/slab.h>
22d8dcdf 20#include <linux/sched.h>
85ff872d
AK
21#include <linux/posix_acl_xattr.h>
22#include "xattr.h"
23#include "acl.h"
76381a42 24#include "v9fs.h"
5ffc0cb3 25#include "v9fs_vfs.h"
0f235cae 26#include "fid.h"
85ff872d
AK
27
28static struct posix_acl *__v9fs_get_acl(struct p9_fid *fid, char *name)
29{
30 ssize_t size;
31 void *value = NULL;
009ca389 32 struct posix_acl *acl = NULL;
85ff872d
AK
33
34 size = v9fs_fid_xattr_get(fid, name, NULL, 0);
35 if (size > 0) {
36 value = kzalloc(size, GFP_NOFS);
37 if (!value)
38 return ERR_PTR(-ENOMEM);
39 size = v9fs_fid_xattr_get(fid, name, value, size);
40 if (size > 0) {
5f3a4a28 41 acl = posix_acl_from_xattr(&init_user_ns, value, size);
85ff872d
AK
42 if (IS_ERR(acl))
43 goto err_out;
44 }
45 } else if (size == -ENODATA || size == 0 ||
46 size == -ENOSYS || size == -EOPNOTSUPP) {
47 acl = NULL;
48 } else
49 acl = ERR_PTR(-EIO);
50
51err_out:
52 kfree(value);
53 return acl;
54}
55
56int v9fs_get_acl(struct inode *inode, struct p9_fid *fid)
57{
58 int retval = 0;
59 struct posix_acl *pacl, *dacl;
76381a42 60 struct v9fs_session_info *v9ses;
85ff872d 61
76381a42 62 v9ses = v9fs_inode2v9ses(inode);
e782ef71
VJJ
63 if (((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT) ||
64 ((v9ses->flags & V9FS_ACL_MASK) != V9FS_POSIX_ACL)) {
76381a42
AK
65 set_cached_acl(inode, ACL_TYPE_DEFAULT, NULL);
66 set_cached_acl(inode, ACL_TYPE_ACCESS, NULL);
67 return 0;
68 }
85ff872d 69 /* get the default/access acl values and cache them */
97d79299
AG
70 dacl = __v9fs_get_acl(fid, XATTR_NAME_POSIX_ACL_DEFAULT);
71 pacl = __v9fs_get_acl(fid, XATTR_NAME_POSIX_ACL_ACCESS);
85ff872d
AK
72
73 if (!IS_ERR(dacl) && !IS_ERR(pacl)) {
74 set_cached_acl(inode, ACL_TYPE_DEFAULT, dacl);
75 set_cached_acl(inode, ACL_TYPE_ACCESS, pacl);
85ff872d
AK
76 } else
77 retval = -EIO;
78
c61fa0d6
VJJ
79 if (!IS_ERR(dacl))
80 posix_acl_release(dacl);
81
82 if (!IS_ERR(pacl))
83 posix_acl_release(pacl);
84
85ff872d
AK
85 return retval;
86}
87
88static struct posix_acl *v9fs_get_cached_acl(struct inode *inode, int type)
89{
90 struct posix_acl *acl;
91 /*
92 * 9p Always cache the acl value when
93 * instantiating the inode (v9fs_inode_from_fid)
94 */
95 acl = get_cached_acl(inode, type);
b8a7a3a6 96 BUG_ON(is_uncached_acl(acl));
85ff872d
AK
97 return acl;
98}
99
0cad6246 100struct posix_acl *v9fs_iop_get_acl(struct inode *inode, int type, bool rcu)
85ff872d 101{
76381a42
AK
102 struct v9fs_session_info *v9ses;
103
0cad6246
MS
104 if (rcu)
105 return ERR_PTR(-ECHILD);
106
76381a42 107 v9ses = v9fs_inode2v9ses(inode);
e782ef71
VJJ
108 if (((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT) ||
109 ((v9ses->flags & V9FS_ACL_MASK) != V9FS_POSIX_ACL)) {
76381a42 110 /*
e782ef71 111 * On access = client and acl = on mode get the acl
76381a42
AK
112 * values from the server
113 */
4e34e719 114 return NULL;
76381a42 115 }
4e34e719
CH
116 return v9fs_get_cached_acl(inode, type);
117
85ff872d 118}
7a4566b0 119
0f235cae 120static int v9fs_set_acl(struct p9_fid *fid, int type, struct posix_acl *acl)
6e8dc555
AK
121{
122 int retval;
123 char *name;
124 size_t size;
125 void *buffer;
d344b0fb
VJJ
126 if (!acl)
127 return 0;
128
6e8dc555
AK
129 /* Set a setxattr request to server */
130 size = posix_acl_xattr_size(acl->a_count);
131 buffer = kmalloc(size, GFP_KERNEL);
132 if (!buffer)
133 return -ENOMEM;
5f3a4a28 134 retval = posix_acl_to_xattr(&init_user_ns, acl, buffer, size);
6e8dc555
AK
135 if (retval < 0)
136 goto err_free_out;
137 switch (type) {
138 case ACL_TYPE_ACCESS:
97d79299 139 name = XATTR_NAME_POSIX_ACL_ACCESS;
6e8dc555
AK
140 break;
141 case ACL_TYPE_DEFAULT:
97d79299 142 name = XATTR_NAME_POSIX_ACL_DEFAULT;
6e8dc555
AK
143 break;
144 default:
145 BUG();
146 }
0f235cae 147 retval = v9fs_fid_xattr_set(fid, name, buffer, size, 0);
6e8dc555
AK
148err_free_out:
149 kfree(buffer);
150 return retval;
151}
152
be308f07 153int v9fs_acl_chmod(struct inode *inode, struct p9_fid *fid)
6e8dc555
AK
154{
155 int retval = 0;
bc26ab5f 156 struct posix_acl *acl;
6e8dc555
AK
157
158 if (S_ISLNK(inode->i_mode))
159 return -EOPNOTSUPP;
160 acl = v9fs_get_cached_acl(inode, ACL_TYPE_ACCESS);
161 if (acl) {
5bf3258f 162 retval = __posix_acl_chmod(&acl, GFP_KERNEL, inode->i_mode);
bc26ab5f
AV
163 if (retval)
164 return retval;
7f165aaa 165 set_cached_acl(inode, ACL_TYPE_ACCESS, acl);
0f235cae 166 retval = v9fs_set_acl(fid, ACL_TYPE_ACCESS, acl);
6e8dc555 167 posix_acl_release(acl);
6e8dc555
AK
168 }
169 return retval;
170}
171
3592ac44 172int v9fs_set_create_acl(struct inode *inode, struct p9_fid *fid,
5fa6300a 173 struct posix_acl *dacl, struct posix_acl *acl)
ad77dbce 174{
3592ac44
AV
175 set_cached_acl(inode, ACL_TYPE_DEFAULT, dacl);
176 set_cached_acl(inode, ACL_TYPE_ACCESS, acl);
177 v9fs_set_acl(fid, ACL_TYPE_DEFAULT, dacl);
178 v9fs_set_acl(fid, ACL_TYPE_ACCESS, acl);
ad77dbce
AK
179 return 0;
180}
181
5fa6300a
AV
182void v9fs_put_acl(struct posix_acl *dacl,
183 struct posix_acl *acl)
184{
185 posix_acl_release(dacl);
186 posix_acl_release(acl);
187}
188
d3fb6120 189int v9fs_acl_mode(struct inode *dir, umode_t *modep,
ad77dbce
AK
190 struct posix_acl **dpacl, struct posix_acl **pacl)
191{
192 int retval = 0;
d3fb6120 193 umode_t mode = *modep;
ad77dbce
AK
194 struct posix_acl *acl = NULL;
195
196 if (!S_ISLNK(mode)) {
197 acl = v9fs_get_cached_acl(dir, ACL_TYPE_DEFAULT);
198 if (IS_ERR(acl))
199 return PTR_ERR(acl);
200 if (!acl)
201 mode &= ~current_umask();
202 }
203 if (acl) {
ad77dbce 204 if (S_ISDIR(mode))
1ec95bf3 205 *dpacl = posix_acl_dup(acl);
37bc1539 206 retval = __posix_acl_create(&acl, GFP_NOFS, &mode);
826cae2f
AV
207 if (retval < 0)
208 return retval;
ad77dbce 209 if (retval > 0)
826cae2f 210 *pacl = acl;
1ec95bf3 211 else
826cae2f 212 posix_acl_release(acl);
ad77dbce
AK
213 }
214 *modep = mode;
215 return 0;
ad77dbce
AK
216}
217
d9a82a04 218static int v9fs_xattr_get_acl(const struct xattr_handler *handler,
b296821a
AV
219 struct dentry *dentry, struct inode *inode,
220 const char *name, void *buffer, size_t size)
7a4566b0 221{
76381a42 222 struct v9fs_session_info *v9ses;
7a4566b0
AK
223 struct posix_acl *acl;
224 int error;
225
42869c8a 226 v9ses = v9fs_dentry2v9ses(dentry);
76381a42
AK
227 /*
228 * We allow set/get/list of acl when access=client is not specified
229 */
230 if ((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT)
98e9cb57 231 return v9fs_xattr_get(dentry, handler->name, buffer, size);
76381a42 232
b296821a 233 acl = v9fs_get_cached_acl(inode, handler->flags);
7a4566b0
AK
234 if (IS_ERR(acl))
235 return PTR_ERR(acl);
236 if (acl == NULL)
237 return -ENODATA;
5f3a4a28 238 error = posix_acl_to_xattr(&init_user_ns, acl, buffer, size);
7a4566b0
AK
239 posix_acl_release(acl);
240
241 return error;
242}
243
d9a82a04 244static int v9fs_xattr_set_acl(const struct xattr_handler *handler,
e65ce2a5 245 struct user_namespace *mnt_userns,
59301226
AV
246 struct dentry *dentry, struct inode *inode,
247 const char *name, const void *value,
248 size_t size, int flags)
7a4566b0 249{
22d8dcdf
AK
250 int retval;
251 struct posix_acl *acl;
76381a42 252 struct v9fs_session_info *v9ses;
22d8dcdf 253
42869c8a 254 v9ses = v9fs_dentry2v9ses(dentry);
76381a42
AK
255 /*
256 * set the attribute on the remote. Without even looking at the
257 * xattr value. We leave it to the server to validate
258 */
259 if ((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT)
98e9cb57 260 return v9fs_xattr_set(dentry, handler->name, value, size,
e409de99 261 flags);
76381a42 262
22d8dcdf
AK
263 if (S_ISLNK(inode->i_mode))
264 return -EOPNOTSUPP;
21cb47be 265 if (!inode_owner_or_capable(&init_user_ns, inode))
22d8dcdf
AK
266 return -EPERM;
267 if (value) {
268 /* update the cached acl value */
5f3a4a28 269 acl = posix_acl_from_xattr(&init_user_ns, value, size);
22d8dcdf
AK
270 if (IS_ERR(acl))
271 return PTR_ERR(acl);
272 else if (acl) {
0d4d717f 273 retval = posix_acl_valid(inode->i_sb->s_user_ns, acl);
22d8dcdf
AK
274 if (retval)
275 goto err_out;
276 }
277 } else
278 acl = NULL;
279
d9a82a04 280 switch (handler->flags) {
22d8dcdf 281 case ACL_TYPE_ACCESS:
22d8dcdf 282 if (acl) {
e02a53d9 283 struct iattr iattr = { 0 };
b5c66bab 284 struct posix_acl *old_acl = acl;
07393101 285
549c7297 286 retval = posix_acl_update_mode(&init_user_ns, inode,
e65ce2a5 287 &iattr.ia_mode, &acl);
07393101 288 if (retval)
22d8dcdf 289 goto err_out;
07393101
JK
290 if (!acl) {
291 /*
292 * ACL can be represented
293 * by the mode bits. So don't
294 * update ACL.
22d8dcdf 295 */
b5c66bab 296 posix_acl_release(old_acl);
07393101
JK
297 value = NULL;
298 size = 0;
22d8dcdf 299 }
07393101
JK
300 iattr.ia_valid = ATTR_MODE;
301 /* FIXME should we update ctime ?
302 * What is the following setxattr update the
303 * mode ?
304 */
549c7297 305 v9fs_vfs_setattr_dotl(&init_user_ns, dentry, &iattr);
22d8dcdf
AK
306 }
307 break;
308 case ACL_TYPE_DEFAULT:
22d8dcdf 309 if (!S_ISDIR(inode->i_mode)) {
6f81c115 310 retval = acl ? -EINVAL : 0;
22d8dcdf
AK
311 goto err_out;
312 }
313 break;
314 default:
315 BUG();
316 }
98e9cb57 317 retval = v9fs_xattr_set(dentry, handler->name, value, size, flags);
22d8dcdf 318 if (!retval)
d9a82a04 319 set_cached_acl(inode, handler->flags, acl);
22d8dcdf
AK
320err_out:
321 posix_acl_release(acl);
322 return retval;
7a4566b0
AK
323}
324
325const struct xattr_handler v9fs_xattr_acl_access_handler = {
98e9cb57 326 .name = XATTR_NAME_POSIX_ACL_ACCESS,
7a4566b0
AK
327 .flags = ACL_TYPE_ACCESS,
328 .get = v9fs_xattr_get_acl,
329 .set = v9fs_xattr_set_acl,
330};
331
332const struct xattr_handler v9fs_xattr_acl_default_handler = {
98e9cb57 333 .name = XATTR_NAME_POSIX_ACL_DEFAULT,
7a4566b0
AK
334 .flags = ACL_TYPE_DEFAULT,
335 .get = v9fs_xattr_get_acl,
336 .set = v9fs_xattr_set_acl,
337};
This page took 0.516281 seconds and 4 git commands to generate.