blob: 2827bbd8366e02a8ce079a771fc5f9e29138cd01 [file] [log] [blame]
Christoph Hellwigef14f0c2009-06-10 17:07:47 +02001/*
2 * Copyright (c) 2008, Christoph Hellwig
3 * All Rights Reserved.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18#include "xfs.h"
19#include "xfs_acl.h"
20#include "xfs_attr.h"
21#include "xfs_bmap_btree.h"
22#include "xfs_inode.h"
23#include "xfs_vnodeops.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000024#include "xfs_trace.h"
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020026#include <linux/xattr.h>
27#include <linux/posix_acl_xattr.h>
28
29
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020030/*
31 * Locking scheme:
32 * - all ACL updates are protected by inode->i_mutex, which is taken before
33 * calling into this file.
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020034 */
35
36STATIC struct posix_acl *
37xfs_acl_from_disk(struct xfs_acl *aclp)
38{
39 struct posix_acl_entry *acl_e;
40 struct posix_acl *acl;
41 struct xfs_acl_entry *ace;
42 int count, i;
43
44 count = be32_to_cpu(aclp->acl_cnt);
45
46 acl = posix_acl_alloc(count, GFP_KERNEL);
47 if (!acl)
48 return ERR_PTR(-ENOMEM);
49
50 for (i = 0; i < count; i++) {
51 acl_e = &acl->a_entries[i];
52 ace = &aclp->acl_entry[i];
53
54 /*
55 * The tag is 32 bits on disk and 16 bits in core.
56 *
57 * Because every access to it goes through the core
58 * format first this is not a problem.
59 */
60 acl_e->e_tag = be32_to_cpu(ace->ae_tag);
61 acl_e->e_perm = be16_to_cpu(ace->ae_perm);
62
63 switch (acl_e->e_tag) {
64 case ACL_USER:
65 case ACL_GROUP:
66 acl_e->e_id = be32_to_cpu(ace->ae_id);
67 break;
68 case ACL_USER_OBJ:
69 case ACL_GROUP_OBJ:
70 case ACL_MASK:
71 case ACL_OTHER:
72 acl_e->e_id = ACL_UNDEFINED_ID;
73 break;
74 default:
75 goto fail;
76 }
77 }
78 return acl;
79
80fail:
81 posix_acl_release(acl);
82 return ERR_PTR(-EINVAL);
83}
84
85STATIC void
86xfs_acl_to_disk(struct xfs_acl *aclp, const struct posix_acl *acl)
87{
88 const struct posix_acl_entry *acl_e;
89 struct xfs_acl_entry *ace;
90 int i;
91
92 aclp->acl_cnt = cpu_to_be32(acl->a_count);
93 for (i = 0; i < acl->a_count; i++) {
94 ace = &aclp->acl_entry[i];
95 acl_e = &acl->a_entries[i];
96
97 ace->ae_tag = cpu_to_be32(acl_e->e_tag);
98 ace->ae_id = cpu_to_be32(acl_e->e_id);
99 ace->ae_perm = cpu_to_be16(acl_e->e_perm);
100 }
101}
102
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200103struct posix_acl *
104xfs_get_acl(struct inode *inode, int type)
105{
106 struct xfs_inode *ip = XFS_I(inode);
Al Viro1cbd20d2009-06-09 13:29:39 -0400107 struct posix_acl *acl;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200108 struct xfs_acl *xfs_acl;
109 int len = sizeof(struct xfs_acl);
Dave Chinnera9273ca2010-01-20 10:47:48 +1100110 unsigned char *ea_name;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200111 int error;
112
Al Viro1cbd20d2009-06-09 13:29:39 -0400113 acl = get_cached_acl(inode, type);
114 if (acl != ACL_NOT_CACHED)
115 return acl;
116
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200117 switch (type) {
118 case ACL_TYPE_ACCESS:
119 ea_name = SGI_ACL_FILE;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200120 break;
121 case ACL_TYPE_DEFAULT:
122 ea_name = SGI_ACL_DEFAULT;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200123 break;
124 default:
Al Viro1cbd20d2009-06-09 13:29:39 -0400125 BUG();
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200126 }
127
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200128 /*
129 * If we have a cached ACLs value just return it, not need to
130 * go out to the disk.
131 */
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200132
133 xfs_acl = kzalloc(sizeof(struct xfs_acl), GFP_KERNEL);
134 if (!xfs_acl)
135 return ERR_PTR(-ENOMEM);
136
Dave Chinnera9273ca2010-01-20 10:47:48 +1100137 error = -xfs_attr_get(ip, ea_name, (unsigned char *)xfs_acl,
138 &len, ATTR_ROOT);
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200139 if (error) {
140 /*
141 * If the attribute doesn't exist make sure we have a negative
142 * cache entry, for any other error assume it is transient and
Al Viro1cbd20d2009-06-09 13:29:39 -0400143 * leave the cache entry as ACL_NOT_CACHED.
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200144 */
145 if (error == -ENOATTR) {
146 acl = NULL;
147 goto out_update_cache;
148 }
149 goto out;
150 }
151
152 acl = xfs_acl_from_disk(xfs_acl);
153 if (IS_ERR(acl))
154 goto out;
155
156 out_update_cache:
Al Viro1cbd20d2009-06-09 13:29:39 -0400157 set_cached_acl(inode, type, acl);
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200158 out:
159 kfree(xfs_acl);
160 return acl;
161}
162
163STATIC int
164xfs_set_acl(struct inode *inode, int type, struct posix_acl *acl)
165{
166 struct xfs_inode *ip = XFS_I(inode);
Dave Chinnera9273ca2010-01-20 10:47:48 +1100167 unsigned char *ea_name;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200168 int error;
169
170 if (S_ISLNK(inode->i_mode))
171 return -EOPNOTSUPP;
172
173 switch (type) {
174 case ACL_TYPE_ACCESS:
175 ea_name = SGI_ACL_FILE;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200176 break;
177 case ACL_TYPE_DEFAULT:
178 if (!S_ISDIR(inode->i_mode))
179 return acl ? -EACCES : 0;
180 ea_name = SGI_ACL_DEFAULT;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200181 break;
182 default:
183 return -EINVAL;
184 }
185
186 if (acl) {
187 struct xfs_acl *xfs_acl;
188 int len;
189
190 xfs_acl = kzalloc(sizeof(struct xfs_acl), GFP_KERNEL);
191 if (!xfs_acl)
192 return -ENOMEM;
193
194 xfs_acl_to_disk(xfs_acl, acl);
195 len = sizeof(struct xfs_acl) -
196 (sizeof(struct xfs_acl_entry) *
197 (XFS_ACL_MAX_ENTRIES - acl->a_count));
198
Dave Chinnera9273ca2010-01-20 10:47:48 +1100199 error = -xfs_attr_set(ip, ea_name, (unsigned char *)xfs_acl,
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200200 len, ATTR_ROOT);
201
202 kfree(xfs_acl);
203 } else {
204 /*
205 * A NULL ACL argument means we want to remove the ACL.
206 */
207 error = -xfs_attr_remove(ip, ea_name, ATTR_ROOT);
208
209 /*
210 * If the attribute didn't exist to start with that's fine.
211 */
212 if (error == -ENOATTR)
213 error = 0;
214 }
215
216 if (!error)
Al Viro1cbd20d2009-06-09 13:29:39 -0400217 set_cached_acl(inode, type, acl);
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200218 return error;
219}
220
221int
Al Viro7e401452011-06-20 19:12:17 -0400222xfs_check_acl(struct inode *inode, int mask)
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200223{
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200224 struct posix_acl *acl;
225 int error = -EAGAIN;
226
Christoph Hellwig6311b102011-07-23 17:36:50 +0200227 trace_xfs_check_acl(XFS_I(inode));
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200228
229 acl = xfs_get_acl(inode, ACL_TYPE_ACCESS);
230 if (IS_ERR(acl))
231 return PTR_ERR(acl);
232 if (acl) {
233 error = posix_acl_permission(inode, acl, mask);
234 posix_acl_release(acl);
235 }
236
237 return error;
238}
239
240static int
241xfs_set_mode(struct inode *inode, mode_t mode)
242{
243 int error = 0;
244
245 if (mode != inode->i_mode) {
246 struct iattr iattr;
247
Christoph Hellwigd6d59ba2009-12-23 16:09:13 +0000248 iattr.ia_valid = ATTR_MODE | ATTR_CTIME;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200249 iattr.ia_mode = mode;
Christoph Hellwigd6d59ba2009-12-23 16:09:13 +0000250 iattr.ia_ctime = current_fs_time(inode->i_sb);
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200251
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200252 error = -xfs_setattr_nonsize(XFS_I(inode), &iattr, XFS_ATTR_NOACL);
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200253 }
254
255 return error;
256}
257
258static int
Dave Chinnera9273ca2010-01-20 10:47:48 +1100259xfs_acl_exists(struct inode *inode, unsigned char *name)
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200260{
261 int len = sizeof(struct xfs_acl);
262
263 return (xfs_attr_get(XFS_I(inode), name, NULL, &len,
264 ATTR_ROOT|ATTR_KERNOVAL) == 0);
265}
266
267int
268posix_acl_access_exists(struct inode *inode)
269{
270 return xfs_acl_exists(inode, SGI_ACL_FILE);
271}
272
273int
274posix_acl_default_exists(struct inode *inode)
275{
276 if (!S_ISDIR(inode->i_mode))
277 return 0;
278 return xfs_acl_exists(inode, SGI_ACL_DEFAULT);
279}
280
281/*
282 * No need for i_mutex because the inode is not yet exposed to the VFS.
283 */
284int
Al Viro826cae22011-07-23 03:10:32 -0400285xfs_inherit_acl(struct inode *inode, struct posix_acl *acl)
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200286{
Al Viro826cae22011-07-23 03:10:32 -0400287 mode_t mode = inode->i_mode;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200288 int error = 0, inherit = 0;
289
290 if (S_ISDIR(inode->i_mode)) {
Al Viro826cae22011-07-23 03:10:32 -0400291 error = xfs_set_acl(inode, ACL_TYPE_DEFAULT, acl);
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200292 if (error)
Al Viro826cae22011-07-23 03:10:32 -0400293 goto out;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200294 }
295
Al Viro826cae22011-07-23 03:10:32 -0400296 error = posix_acl_create(&acl, GFP_KERNEL, &mode);
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200297 if (error < 0)
Al Viro826cae22011-07-23 03:10:32 -0400298 return error;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200299
300 /*
Al Viro826cae22011-07-23 03:10:32 -0400301 * If posix_acl_create returns a positive value we need to
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200302 * inherit a permission that can't be represented using the Unix
303 * mode bits and we actually need to set an ACL.
304 */
305 if (error > 0)
306 inherit = 1;
307
308 error = xfs_set_mode(inode, mode);
309 if (error)
Al Viro826cae22011-07-23 03:10:32 -0400310 goto out;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200311
312 if (inherit)
Al Viro826cae22011-07-23 03:10:32 -0400313 error = xfs_set_acl(inode, ACL_TYPE_ACCESS, acl);
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200314
Al Viro826cae22011-07-23 03:10:32 -0400315out:
316 posix_acl_release(acl);
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200317 return error;
318}
319
320int
321xfs_acl_chmod(struct inode *inode)
322{
Al Virobc26ab52011-07-23 00:18:02 -0400323 struct posix_acl *acl;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200324 int error;
325
326 if (S_ISLNK(inode->i_mode))
327 return -EOPNOTSUPP;
328
329 acl = xfs_get_acl(inode, ACL_TYPE_ACCESS);
330 if (IS_ERR(acl) || !acl)
331 return PTR_ERR(acl);
332
Al Virobc26ab52011-07-23 00:18:02 -0400333 error = posix_acl_chmod(&acl, GFP_KERNEL, inode->i_mode);
334 if (error)
335 return error;
336
337 error = xfs_set_acl(inode, ACL_TYPE_ACCESS, acl);
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200338 posix_acl_release(acl);
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200339 return error;
340}
341
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200342static int
Christoph Hellwig431547b2009-11-13 09:52:56 +0000343xfs_xattr_acl_get(struct dentry *dentry, const char *name,
344 void *value, size_t size, int type)
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200345{
346 struct posix_acl *acl;
Christoph Hellwig431547b2009-11-13 09:52:56 +0000347 int error;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200348
Christoph Hellwig431547b2009-11-13 09:52:56 +0000349 acl = xfs_get_acl(dentry->d_inode, type);
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200350 if (IS_ERR(acl))
351 return PTR_ERR(acl);
352 if (acl == NULL)
353 return -ENODATA;
354
355 error = posix_acl_to_xattr(acl, value, size);
356 posix_acl_release(acl);
357
358 return error;
359}
360
361static int
Christoph Hellwig431547b2009-11-13 09:52:56 +0000362xfs_xattr_acl_set(struct dentry *dentry, const char *name,
363 const void *value, size_t size, int flags, int type)
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200364{
Christoph Hellwig431547b2009-11-13 09:52:56 +0000365 struct inode *inode = dentry->d_inode;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200366 struct posix_acl *acl = NULL;
Christoph Hellwig431547b2009-11-13 09:52:56 +0000367 int error = 0;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200368
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200369 if (flags & XATTR_CREATE)
370 return -EINVAL;
371 if (type == ACL_TYPE_DEFAULT && !S_ISDIR(inode->i_mode))
372 return value ? -EACCES : 0;
373 if ((current_fsuid() != inode->i_uid) && !capable(CAP_FOWNER))
374 return -EPERM;
375
376 if (!value)
377 goto set_acl;
378
379 acl = posix_acl_from_xattr(value, size);
380 if (!acl) {
381 /*
382 * acl_set_file(3) may request that we set default ACLs with
383 * zero length -- defend (gracefully) against that here.
384 */
385 goto out;
386 }
387 if (IS_ERR(acl)) {
388 error = PTR_ERR(acl);
389 goto out;
390 }
391
392 error = posix_acl_valid(acl);
393 if (error)
394 goto out_release;
395
396 error = -EINVAL;
397 if (acl->a_count > XFS_ACL_MAX_ENTRIES)
398 goto out_release;
399
400 if (type == ACL_TYPE_ACCESS) {
401 mode_t mode = inode->i_mode;
402 error = posix_acl_equiv_mode(acl, &mode);
403
404 if (error <= 0) {
405 posix_acl_release(acl);
406 acl = NULL;
407
408 if (error < 0)
409 return error;
410 }
411
412 error = xfs_set_mode(inode, mode);
413 if (error)
414 goto out_release;
415 }
416
417 set_acl:
418 error = xfs_set_acl(inode, type, acl);
419 out_release:
420 posix_acl_release(acl);
421 out:
422 return error;
423}
424
Stephen Hemminger46e58762010-05-13 17:53:20 -0700425const struct xattr_handler xfs_xattr_acl_access_handler = {
Christoph Hellwig431547b2009-11-13 09:52:56 +0000426 .prefix = POSIX_ACL_XATTR_ACCESS,
427 .flags = ACL_TYPE_ACCESS,
428 .get = xfs_xattr_acl_get,
429 .set = xfs_xattr_acl_set,
430};
431
Stephen Hemminger46e58762010-05-13 17:53:20 -0700432const struct xattr_handler xfs_xattr_acl_default_handler = {
Christoph Hellwig431547b2009-11-13 09:52:56 +0000433 .prefix = POSIX_ACL_XATTR_DEFAULT,
434 .flags = ACL_TYPE_DEFAULT,
435 .get = xfs_xattr_acl_get,
436 .set = xfs_xattr_acl_set,
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200437};