4 * Copyright (C) 2001-2003 Andreas Gruenbacher, <agruen@suse.de>
7 #include <linux/capability.h>
8 #include <linux/init.h>
9 #include <linux/sched.h>
10 #include <linux/slab.h>
17 * Convert from filesystem to in-memory representation.
19 static struct posix_acl
*
20 ext2_acl_from_disk(const void *value
, size_t size
)
22 const char *end
= (char *)value
+ size
;
24 struct posix_acl
*acl
;
28 if (size
< sizeof(ext2_acl_header
))
29 return ERR_PTR(-EINVAL
);
30 if (((ext2_acl_header
*)value
)->a_version
!=
31 cpu_to_le32(EXT2_ACL_VERSION
))
32 return ERR_PTR(-EINVAL
);
33 value
= (char *)value
+ sizeof(ext2_acl_header
);
34 count
= ext2_acl_count(size
);
36 return ERR_PTR(-EINVAL
);
39 acl
= posix_acl_alloc(count
, GFP_KERNEL
);
41 return ERR_PTR(-ENOMEM
);
42 for (n
=0; n
< count
; n
++) {
43 ext2_acl_entry
*entry
=
44 (ext2_acl_entry
*)value
;
45 if ((char *)value
+ sizeof(ext2_acl_entry_short
) > end
)
47 acl
->a_entries
[n
].e_tag
= le16_to_cpu(entry
->e_tag
);
48 acl
->a_entries
[n
].e_perm
= le16_to_cpu(entry
->e_perm
);
49 switch(acl
->a_entries
[n
].e_tag
) {
54 value
= (char *)value
+
55 sizeof(ext2_acl_entry_short
);
56 acl
->a_entries
[n
].e_id
= ACL_UNDEFINED_ID
;
61 value
= (char *)value
+ sizeof(ext2_acl_entry
);
62 if ((char *)value
> end
)
64 acl
->a_entries
[n
].e_id
=
65 le32_to_cpu(entry
->e_id
);
77 posix_acl_release(acl
);
78 return ERR_PTR(-EINVAL
);
82 * Convert from in-memory to filesystem representation.
85 ext2_acl_to_disk(const struct posix_acl
*acl
, size_t *size
)
87 ext2_acl_header
*ext_acl
;
91 *size
= ext2_acl_size(acl
->a_count
);
92 ext_acl
= kmalloc(sizeof(ext2_acl_header
) + acl
->a_count
*
93 sizeof(ext2_acl_entry
), GFP_KERNEL
);
95 return ERR_PTR(-ENOMEM
);
96 ext_acl
->a_version
= cpu_to_le32(EXT2_ACL_VERSION
);
97 e
= (char *)ext_acl
+ sizeof(ext2_acl_header
);
98 for (n
=0; n
< acl
->a_count
; n
++) {
99 ext2_acl_entry
*entry
= (ext2_acl_entry
*)e
;
100 entry
->e_tag
= cpu_to_le16(acl
->a_entries
[n
].e_tag
);
101 entry
->e_perm
= cpu_to_le16(acl
->a_entries
[n
].e_perm
);
102 switch(acl
->a_entries
[n
].e_tag
) {
106 cpu_to_le32(acl
->a_entries
[n
].e_id
);
107 e
+= sizeof(ext2_acl_entry
);
114 e
+= sizeof(ext2_acl_entry_short
);
121 return (char *)ext_acl
;
125 return ERR_PTR(-EINVAL
);
129 * inode->i_mutex: don't care
131 static struct posix_acl
*
132 ext2_get_acl(struct inode
*inode
, int type
)
136 struct posix_acl
*acl
;
139 if (!test_opt(inode
->i_sb
, POSIX_ACL
))
142 acl
= get_cached_acl(inode
, type
);
143 if (acl
!= ACL_NOT_CACHED
)
147 case ACL_TYPE_ACCESS
:
148 name_index
= EXT2_XATTR_INDEX_POSIX_ACL_ACCESS
;
150 case ACL_TYPE_DEFAULT
:
151 name_index
= EXT2_XATTR_INDEX_POSIX_ACL_DEFAULT
;
156 retval
= ext2_xattr_get(inode
, name_index
, "", NULL
, 0);
158 value
= kmalloc(retval
, GFP_KERNEL
);
160 return ERR_PTR(-ENOMEM
);
161 retval
= ext2_xattr_get(inode
, name_index
, "", value
, retval
);
164 acl
= ext2_acl_from_disk(value
, retval
);
165 else if (retval
== -ENODATA
|| retval
== -ENOSYS
)
168 acl
= ERR_PTR(retval
);
172 set_cached_acl(inode
, type
, acl
);
178 * inode->i_mutex: down
181 ext2_set_acl(struct inode
*inode
, int type
, struct posix_acl
*acl
)
188 if (S_ISLNK(inode
->i_mode
))
190 if (!test_opt(inode
->i_sb
, POSIX_ACL
))
194 case ACL_TYPE_ACCESS
:
195 name_index
= EXT2_XATTR_INDEX_POSIX_ACL_ACCESS
;
197 mode_t mode
= inode
->i_mode
;
198 error
= posix_acl_equiv_mode(acl
, &mode
);
202 inode
->i_mode
= mode
;
203 mark_inode_dirty(inode
);
210 case ACL_TYPE_DEFAULT
:
211 name_index
= EXT2_XATTR_INDEX_POSIX_ACL_DEFAULT
;
212 if (!S_ISDIR(inode
->i_mode
))
213 return acl
? -EACCES
: 0;
220 value
= ext2_acl_to_disk(acl
, &size
);
222 return (int)PTR_ERR(value
);
225 error
= ext2_xattr_set(inode
, name_index
, "", value
, size
, 0);
229 set_cached_acl(inode
, type
, acl
);
234 ext2_check_acl(struct inode
*inode
, int mask
)
236 struct posix_acl
*acl
= ext2_get_acl(inode
, ACL_TYPE_ACCESS
);
241 int error
= posix_acl_permission(inode
, acl
, mask
);
242 posix_acl_release(acl
);
250 ext2_permission(struct inode
*inode
, int mask
)
252 return generic_permission(inode
, mask
, ext2_check_acl
);
256 * Initialize the ACLs of a new inode. Called from ext2_new_inode.
259 * inode->i_mutex: up (access to inode is still exclusive)
262 ext2_init_acl(struct inode
*inode
, struct inode
*dir
)
264 struct posix_acl
*acl
= NULL
;
267 if (!S_ISLNK(inode
->i_mode
)) {
268 if (test_opt(dir
->i_sb
, POSIX_ACL
)) {
269 acl
= ext2_get_acl(dir
, ACL_TYPE_DEFAULT
);
274 inode
->i_mode
&= ~current_umask();
276 if (test_opt(inode
->i_sb
, POSIX_ACL
) && acl
) {
277 struct posix_acl
*clone
;
280 if (S_ISDIR(inode
->i_mode
)) {
281 error
= ext2_set_acl(inode
, ACL_TYPE_DEFAULT
, acl
);
285 clone
= posix_acl_clone(acl
, GFP_KERNEL
);
289 mode
= inode
->i_mode
;
290 error
= posix_acl_create_masq(clone
, &mode
);
292 inode
->i_mode
= mode
;
294 /* This is an extended ACL */
295 error
= ext2_set_acl(inode
,
296 ACL_TYPE_ACCESS
, clone
);
299 posix_acl_release(clone
);
302 posix_acl_release(acl
);
307 * Does chmod for an inode that may have an Access Control List. The
308 * inode->i_mode field must be updated to the desired value by the caller
309 * before calling this function.
310 * Returns 0 on success, or a negative error number.
312 * We change the ACL rather than storing some ACL entries in the file
313 * mode permission bits (which would be more efficient), because that
314 * would break once additional permissions (like ACL_APPEND, ACL_DELETE
315 * for directories) are added. There are no more bits available in the
318 * inode->i_mutex: down
321 ext2_acl_chmod(struct inode
*inode
)
323 struct posix_acl
*acl
, *clone
;
326 if (!test_opt(inode
->i_sb
, POSIX_ACL
))
328 if (S_ISLNK(inode
->i_mode
))
330 acl
= ext2_get_acl(inode
, ACL_TYPE_ACCESS
);
331 if (IS_ERR(acl
) || !acl
)
333 clone
= posix_acl_clone(acl
, GFP_KERNEL
);
334 posix_acl_release(acl
);
337 error
= posix_acl_chmod_masq(clone
, inode
->i_mode
);
339 error
= ext2_set_acl(inode
, ACL_TYPE_ACCESS
, clone
);
340 posix_acl_release(clone
);
345 * Extended attribut handlers
348 ext2_xattr_list_acl_access(struct inode
*inode
, char *list
, size_t list_size
,
349 const char *name
, size_t name_len
)
351 const size_t size
= sizeof(POSIX_ACL_XATTR_ACCESS
);
353 if (!test_opt(inode
->i_sb
, POSIX_ACL
))
355 if (list
&& size
<= list_size
)
356 memcpy(list
, POSIX_ACL_XATTR_ACCESS
, size
);
361 ext2_xattr_list_acl_default(struct inode
*inode
, char *list
, size_t list_size
,
362 const char *name
, size_t name_len
)
364 const size_t size
= sizeof(POSIX_ACL_XATTR_DEFAULT
);
366 if (!test_opt(inode
->i_sb
, POSIX_ACL
))
368 if (list
&& size
<= list_size
)
369 memcpy(list
, POSIX_ACL_XATTR_DEFAULT
, size
);
374 ext2_xattr_get_acl(struct inode
*inode
, int type
, void *buffer
, size_t size
)
376 struct posix_acl
*acl
;
379 if (!test_opt(inode
->i_sb
, POSIX_ACL
))
382 acl
= ext2_get_acl(inode
, type
);
387 error
= posix_acl_to_xattr(acl
, buffer
, size
);
388 posix_acl_release(acl
);
394 ext2_xattr_get_acl_access(struct inode
*inode
, const char *name
,
395 void *buffer
, size_t size
)
397 if (strcmp(name
, "") != 0)
399 return ext2_xattr_get_acl(inode
, ACL_TYPE_ACCESS
, buffer
, size
);
403 ext2_xattr_get_acl_default(struct inode
*inode
, const char *name
,
404 void *buffer
, size_t size
)
406 if (strcmp(name
, "") != 0)
408 return ext2_xattr_get_acl(inode
, ACL_TYPE_DEFAULT
, buffer
, size
);
412 ext2_xattr_set_acl(struct inode
*inode
, int type
, const void *value
,
415 struct posix_acl
*acl
;
418 if (!test_opt(inode
->i_sb
, POSIX_ACL
))
420 if (!is_owner_or_cap(inode
))
424 acl
= posix_acl_from_xattr(value
, size
);
428 error
= posix_acl_valid(acl
);
430 goto release_and_out
;
435 error
= ext2_set_acl(inode
, type
, acl
);
438 posix_acl_release(acl
);
443 ext2_xattr_set_acl_access(struct inode
*inode
, const char *name
,
444 const void *value
, size_t size
, int flags
)
446 if (strcmp(name
, "") != 0)
448 return ext2_xattr_set_acl(inode
, ACL_TYPE_ACCESS
, value
, size
);
452 ext2_xattr_set_acl_default(struct inode
*inode
, const char *name
,
453 const void *value
, size_t size
, int flags
)
455 if (strcmp(name
, "") != 0)
457 return ext2_xattr_set_acl(inode
, ACL_TYPE_DEFAULT
, value
, size
);
460 struct xattr_handler ext2_xattr_acl_access_handler
= {
461 .prefix
= POSIX_ACL_XATTR_ACCESS
,
462 .list
= ext2_xattr_list_acl_access
,
463 .get
= ext2_xattr_get_acl_access
,
464 .set
= ext2_xattr_set_acl_access
,
467 struct xattr_handler ext2_xattr_acl_default_handler
= {
468 .prefix
= POSIX_ACL_XATTR_DEFAULT
,
469 .list
= ext2_xattr_list_acl_default
,
470 .get
= ext2_xattr_get_acl_default
,
471 .set
= ext2_xattr_set_acl_default
,