2 * Copyright (c) 2008, Christoph Hellwig
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.
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.
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
21 #include "xfs_bmap_btree.h"
22 #include "xfs_inode.h"
23 #include "xfs_vnodeops.h"
24 #include "xfs_trace.h"
25 #include <linux/xattr.h>
26 #include <linux/posix_acl_xattr.h>
31 * - all ACL updates are protected by inode->i_mutex, which is taken before
32 * calling into this file.
35 STATIC
struct posix_acl
*
36 xfs_acl_from_disk(struct xfs_acl
*aclp
)
38 struct posix_acl_entry
*acl_e
;
39 struct posix_acl
*acl
;
40 struct xfs_acl_entry
*ace
;
43 count
= be32_to_cpu(aclp
->acl_cnt
);
45 acl
= posix_acl_alloc(count
, GFP_KERNEL
);
47 return ERR_PTR(-ENOMEM
);
49 for (i
= 0; i
< count
; i
++) {
50 acl_e
= &acl
->a_entries
[i
];
51 ace
= &aclp
->acl_entry
[i
];
54 * The tag is 32 bits on disk and 16 bits in core.
56 * Because every access to it goes through the core
57 * format first this is not a problem.
59 acl_e
->e_tag
= be32_to_cpu(ace
->ae_tag
);
60 acl_e
->e_perm
= be16_to_cpu(ace
->ae_perm
);
62 switch (acl_e
->e_tag
) {
65 acl_e
->e_id
= be32_to_cpu(ace
->ae_id
);
71 acl_e
->e_id
= ACL_UNDEFINED_ID
;
80 posix_acl_release(acl
);
81 return ERR_PTR(-EINVAL
);
85 xfs_acl_to_disk(struct xfs_acl
*aclp
, const struct posix_acl
*acl
)
87 const struct posix_acl_entry
*acl_e
;
88 struct xfs_acl_entry
*ace
;
91 aclp
->acl_cnt
= cpu_to_be32(acl
->a_count
);
92 for (i
= 0; i
< acl
->a_count
; i
++) {
93 ace
= &aclp
->acl_entry
[i
];
94 acl_e
= &acl
->a_entries
[i
];
96 ace
->ae_tag
= cpu_to_be32(acl_e
->e_tag
);
97 ace
->ae_id
= cpu_to_be32(acl_e
->e_id
);
98 ace
->ae_perm
= cpu_to_be16(acl_e
->e_perm
);
103 xfs_get_acl(struct inode
*inode
, int type
)
105 struct xfs_inode
*ip
= XFS_I(inode
);
106 struct posix_acl
*acl
;
107 struct xfs_acl
*xfs_acl
;
108 int len
= sizeof(struct xfs_acl
);
112 acl
= get_cached_acl(inode
, type
);
113 if (acl
!= ACL_NOT_CACHED
)
117 case ACL_TYPE_ACCESS
:
118 ea_name
= SGI_ACL_FILE
;
120 case ACL_TYPE_DEFAULT
:
121 ea_name
= SGI_ACL_DEFAULT
;
128 * If we have a cached ACLs value just return it, not need to
129 * go out to the disk.
132 xfs_acl
= kzalloc(sizeof(struct xfs_acl
), GFP_KERNEL
);
134 return ERR_PTR(-ENOMEM
);
136 error
= -xfs_attr_get(ip
, ea_name
, (char *)xfs_acl
, &len
, ATTR_ROOT
);
139 * If the attribute doesn't exist make sure we have a negative
140 * cache entry, for any other error assume it is transient and
141 * leave the cache entry as ACL_NOT_CACHED.
143 if (error
== -ENOATTR
) {
145 goto out_update_cache
;
150 acl
= xfs_acl_from_disk(xfs_acl
);
155 set_cached_acl(inode
, type
, acl
);
162 xfs_set_acl(struct inode
*inode
, int type
, struct posix_acl
*acl
)
164 struct xfs_inode
*ip
= XFS_I(inode
);
168 if (S_ISLNK(inode
->i_mode
))
172 case ACL_TYPE_ACCESS
:
173 ea_name
= SGI_ACL_FILE
;
175 case ACL_TYPE_DEFAULT
:
176 if (!S_ISDIR(inode
->i_mode
))
177 return acl
? -EACCES
: 0;
178 ea_name
= SGI_ACL_DEFAULT
;
185 struct xfs_acl
*xfs_acl
;
188 xfs_acl
= kzalloc(sizeof(struct xfs_acl
), GFP_KERNEL
);
192 xfs_acl_to_disk(xfs_acl
, acl
);
193 len
= sizeof(struct xfs_acl
) -
194 (sizeof(struct xfs_acl_entry
) *
195 (XFS_ACL_MAX_ENTRIES
- acl
->a_count
));
197 error
= -xfs_attr_set(ip
, ea_name
, (char *)xfs_acl
,
203 * A NULL ACL argument means we want to remove the ACL.
205 error
= -xfs_attr_remove(ip
, ea_name
, ATTR_ROOT
);
208 * If the attribute didn't exist to start with that's fine.
210 if (error
== -ENOATTR
)
215 set_cached_acl(inode
, type
, acl
);
220 xfs_check_acl(struct inode
*inode
, int mask
)
222 struct xfs_inode
*ip
= XFS_I(inode
);
223 struct posix_acl
*acl
;
226 xfs_itrace_entry(ip
);
229 * If there is no attribute fork no ACL exists on this inode and
230 * we can skip the whole exercise.
232 if (!XFS_IFORK_Q(ip
))
235 acl
= xfs_get_acl(inode
, ACL_TYPE_ACCESS
);
239 error
= posix_acl_permission(inode
, acl
, mask
);
240 posix_acl_release(acl
);
247 xfs_set_mode(struct inode
*inode
, mode_t mode
)
251 if (mode
!= inode
->i_mode
) {
254 iattr
.ia_valid
= ATTR_MODE
;
255 iattr
.ia_mode
= mode
;
257 error
= -xfs_setattr(XFS_I(inode
), &iattr
, XFS_ATTR_NOACL
);
264 xfs_acl_exists(struct inode
*inode
, char *name
)
266 int len
= sizeof(struct xfs_acl
);
268 return (xfs_attr_get(XFS_I(inode
), name
, NULL
, &len
,
269 ATTR_ROOT
|ATTR_KERNOVAL
) == 0);
273 posix_acl_access_exists(struct inode
*inode
)
275 return xfs_acl_exists(inode
, SGI_ACL_FILE
);
279 posix_acl_default_exists(struct inode
*inode
)
281 if (!S_ISDIR(inode
->i_mode
))
283 return xfs_acl_exists(inode
, SGI_ACL_DEFAULT
);
287 * No need for i_mutex because the inode is not yet exposed to the VFS.
290 xfs_inherit_acl(struct inode
*inode
, struct posix_acl
*default_acl
)
292 struct posix_acl
*clone
;
294 int error
= 0, inherit
= 0;
296 if (S_ISDIR(inode
->i_mode
)) {
297 error
= xfs_set_acl(inode
, ACL_TYPE_DEFAULT
, default_acl
);
302 clone
= posix_acl_clone(default_acl
, GFP_KERNEL
);
306 mode
= inode
->i_mode
;
307 error
= posix_acl_create_masq(clone
, &mode
);
309 goto out_release_clone
;
312 * If posix_acl_create_masq returns a positive value we need to
313 * inherit a permission that can't be represented using the Unix
314 * mode bits and we actually need to set an ACL.
319 error
= xfs_set_mode(inode
, mode
);
321 goto out_release_clone
;
324 error
= xfs_set_acl(inode
, ACL_TYPE_ACCESS
, clone
);
327 posix_acl_release(clone
);
332 xfs_acl_chmod(struct inode
*inode
)
334 struct posix_acl
*acl
, *clone
;
337 if (S_ISLNK(inode
->i_mode
))
340 acl
= xfs_get_acl(inode
, ACL_TYPE_ACCESS
);
341 if (IS_ERR(acl
) || !acl
)
344 clone
= posix_acl_clone(acl
, GFP_KERNEL
);
345 posix_acl_release(acl
);
349 error
= posix_acl_chmod_masq(clone
, inode
->i_mode
);
351 error
= xfs_set_acl(inode
, ACL_TYPE_ACCESS
, clone
);
353 posix_acl_release(clone
);
358 xfs_xattr_acl_get(struct dentry
*dentry
, const char *name
,
359 void *value
, size_t size
, int type
)
361 struct posix_acl
*acl
;
364 acl
= xfs_get_acl(dentry
->d_inode
, type
);
370 error
= posix_acl_to_xattr(acl
, value
, size
);
371 posix_acl_release(acl
);
377 xfs_xattr_acl_set(struct dentry
*dentry
, const char *name
,
378 const void *value
, size_t size
, int flags
, int type
)
380 struct inode
*inode
= dentry
->d_inode
;
381 struct posix_acl
*acl
= NULL
;
384 if (flags
& XATTR_CREATE
)
386 if (type
== ACL_TYPE_DEFAULT
&& !S_ISDIR(inode
->i_mode
))
387 return value
? -EACCES
: 0;
388 if ((current_fsuid() != inode
->i_uid
) && !capable(CAP_FOWNER
))
394 acl
= posix_acl_from_xattr(value
, size
);
397 * acl_set_file(3) may request that we set default ACLs with
398 * zero length -- defend (gracefully) against that here.
403 error
= PTR_ERR(acl
);
407 error
= posix_acl_valid(acl
);
412 if (acl
->a_count
> XFS_ACL_MAX_ENTRIES
)
415 if (type
== ACL_TYPE_ACCESS
) {
416 mode_t mode
= inode
->i_mode
;
417 error
= posix_acl_equiv_mode(acl
, &mode
);
420 posix_acl_release(acl
);
427 error
= xfs_set_mode(inode
, mode
);
433 error
= xfs_set_acl(inode
, type
, acl
);
435 posix_acl_release(acl
);
440 struct xattr_handler xfs_xattr_acl_access_handler
= {
441 .prefix
= POSIX_ACL_XATTR_ACCESS
,
442 .flags
= ACL_TYPE_ACCESS
,
443 .get
= xfs_xattr_acl_get
,
444 .set
= xfs_xattr_acl_set
,
447 struct xattr_handler xfs_xattr_acl_default_handler
= {
448 .prefix
= POSIX_ACL_XATTR_DEFAULT
,
449 .flags
= ACL_TYPE_DEFAULT
,
450 .get
= xfs_xattr_acl_get
,
451 .set
= xfs_xattr_acl_set
,