1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
6 * Copyright (C) 2004, 2008 Oracle. All rights reserved.
9 * Lots of code in this file is copy from linux/fs/ext3/acl.c.
10 * Copyright (C) 2001-2003 Andreas Gruenbacher, <agruen@suse.de>
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public
14 * License version 2 as published by the Free Software Foundation.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
22 #include <linux/init.h>
23 #include <linux/module.h>
24 #include <linux/slab.h>
25 #include <linux/string.h>
27 #include <cluster/masklog.h>
41 * Convert from xattr value to acl struct.
43 static struct posix_acl
*ocfs2_acl_from_xattr(const void *value
, size_t size
)
46 struct posix_acl
*acl
;
50 if (size
< sizeof(struct posix_acl_entry
))
51 return ERR_PTR(-EINVAL
);
53 count
= size
/ sizeof(struct posix_acl_entry
);
55 return ERR_PTR(-EINVAL
);
59 acl
= posix_acl_alloc(count
, GFP_NOFS
);
61 return ERR_PTR(-ENOMEM
);
62 for (n
= 0; n
< count
; n
++) {
63 struct ocfs2_acl_entry
*entry
=
64 (struct ocfs2_acl_entry
*)value
;
66 acl
->a_entries
[n
].e_tag
= le16_to_cpu(entry
->e_tag
);
67 acl
->a_entries
[n
].e_perm
= le16_to_cpu(entry
->e_perm
);
68 acl
->a_entries
[n
].e_id
= le32_to_cpu(entry
->e_id
);
69 value
+= sizeof(struct posix_acl_entry
);
76 * Convert acl struct to xattr value.
78 static void *ocfs2_acl_to_xattr(const struct posix_acl
*acl
, size_t *size
)
80 struct ocfs2_acl_entry
*entry
= NULL
;
84 *size
= acl
->a_count
* sizeof(struct posix_acl_entry
);
86 ocfs2_acl
= kmalloc(*size
, GFP_NOFS
);
88 return ERR_PTR(-ENOMEM
);
90 entry
= (struct ocfs2_acl_entry
*)ocfs2_acl
;
91 for (n
= 0; n
< acl
->a_count
; n
++, entry
++) {
92 entry
->e_tag
= cpu_to_le16(acl
->a_entries
[n
].e_tag
);
93 entry
->e_perm
= cpu_to_le16(acl
->a_entries
[n
].e_perm
);
94 entry
->e_id
= cpu_to_le32(acl
->a_entries
[n
].e_id
);
99 static struct posix_acl
*ocfs2_get_acl_nolock(struct inode
*inode
,
101 struct buffer_head
*di_bh
)
105 struct posix_acl
*acl
;
109 case ACL_TYPE_ACCESS
:
110 name_index
= OCFS2_XATTR_INDEX_POSIX_ACL_ACCESS
;
112 case ACL_TYPE_DEFAULT
:
113 name_index
= OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT
;
116 return ERR_PTR(-EINVAL
);
119 retval
= ocfs2_xattr_get_nolock(inode
, di_bh
, name_index
, "", NULL
, 0);
121 value
= kmalloc(retval
, GFP_NOFS
);
123 return ERR_PTR(-ENOMEM
);
124 retval
= ocfs2_xattr_get_nolock(inode
, di_bh
, name_index
,
129 acl
= ocfs2_acl_from_xattr(value
, retval
);
130 else if (retval
== -ENODATA
|| retval
== 0)
133 acl
= ERR_PTR(retval
);
144 static struct posix_acl
*ocfs2_get_acl(struct inode
*inode
, int type
)
146 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
147 struct buffer_head
*di_bh
= NULL
;
148 struct posix_acl
*acl
;
151 if (!(osb
->s_mount_opt
& OCFS2_MOUNT_POSIX_ACL
))
154 ret
= ocfs2_inode_lock(inode
, &di_bh
, 0);
161 acl
= ocfs2_get_acl_nolock(inode
, type
, di_bh
);
163 ocfs2_inode_unlock(inode
, 0);
171 * Helper function to set i_mode in memory and disk. Some call paths
172 * will not have di_bh or a journal handle to pass, in which case it
173 * will create it's own.
175 static int ocfs2_acl_set_mode(struct inode
*inode
, struct buffer_head
*di_bh
,
176 handle_t
*handle
, umode_t new_mode
)
178 int ret
, commit_handle
= 0;
179 struct ocfs2_dinode
*di
;
182 ret
= ocfs2_read_inode_block(inode
, &di_bh
);
190 if (handle
== NULL
) {
191 handle
= ocfs2_start_trans(OCFS2_SB(inode
->i_sb
),
192 OCFS2_INODE_UPDATE_CREDITS
);
193 if (IS_ERR(handle
)) {
194 ret
= PTR_ERR(handle
);
202 di
= (struct ocfs2_dinode
*)di_bh
->b_data
;
203 ret
= ocfs2_journal_access_di(handle
, INODE_CACHE(inode
), di_bh
,
204 OCFS2_JOURNAL_ACCESS_WRITE
);
210 inode
->i_mode
= new_mode
;
211 inode
->i_ctime
= CURRENT_TIME
;
212 di
->i_mode
= cpu_to_le16(inode
->i_mode
);
213 di
->i_ctime
= cpu_to_le64(inode
->i_ctime
.tv_sec
);
214 di
->i_ctime_nsec
= cpu_to_le32(inode
->i_ctime
.tv_nsec
);
216 ocfs2_journal_dirty(handle
, di_bh
);
220 ocfs2_commit_trans(OCFS2_SB(inode
->i_sb
), handle
);
228 * Set the access or default ACL of an inode.
230 static int ocfs2_set_acl(handle_t
*handle
,
232 struct buffer_head
*di_bh
,
234 struct posix_acl
*acl
,
235 struct ocfs2_alloc_context
*meta_ac
,
236 struct ocfs2_alloc_context
*data_ac
)
243 if (S_ISLNK(inode
->i_mode
))
247 case ACL_TYPE_ACCESS
:
248 name_index
= OCFS2_XATTR_INDEX_POSIX_ACL_ACCESS
;
250 mode_t mode
= inode
->i_mode
;
251 ret
= posix_acl_equiv_mode(acl
, &mode
);
258 ret
= ocfs2_acl_set_mode(inode
, di_bh
,
266 case ACL_TYPE_DEFAULT
:
267 name_index
= OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT
;
268 if (!S_ISDIR(inode
->i_mode
))
269 return acl
? -EACCES
: 0;
276 value
= ocfs2_acl_to_xattr(acl
, &size
);
278 return (int)PTR_ERR(value
);
282 ret
= ocfs2_xattr_set_handle(handle
, inode
, di_bh
, name_index
,
286 ret
= ocfs2_xattr_set(inode
, name_index
, "", value
, size
, 0);
293 int ocfs2_check_acl(struct inode
*inode
, int mask
, unsigned int flags
)
295 struct ocfs2_super
*osb
;
296 struct buffer_head
*di_bh
= NULL
;
297 struct posix_acl
*acl
;
300 if (flags
& IPERM_FLAG_RCU
)
303 osb
= OCFS2_SB(inode
->i_sb
);
304 if (!(osb
->s_mount_opt
& OCFS2_MOUNT_POSIX_ACL
))
307 ret
= ocfs2_read_inode_block(inode
, &di_bh
);
313 acl
= ocfs2_get_acl_nolock(inode
, ACL_TYPE_ACCESS
, di_bh
);
318 mlog_errno(PTR_ERR(acl
));
322 ret
= posix_acl_permission(inode
, acl
, mask
);
323 posix_acl_release(acl
);
330 int ocfs2_acl_chmod(struct inode
*inode
)
332 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
333 struct posix_acl
*acl
, *clone
;
336 if (S_ISLNK(inode
->i_mode
))
339 if (!(osb
->s_mount_opt
& OCFS2_MOUNT_POSIX_ACL
))
342 acl
= ocfs2_get_acl(inode
, ACL_TYPE_ACCESS
);
343 if (IS_ERR(acl
) || !acl
)
345 clone
= posix_acl_clone(acl
, GFP_KERNEL
);
346 posix_acl_release(acl
);
349 ret
= posix_acl_chmod_masq(clone
, inode
->i_mode
);
351 ret
= ocfs2_set_acl(NULL
, inode
, NULL
, ACL_TYPE_ACCESS
,
353 posix_acl_release(clone
);
358 * Initialize the ACLs of a new inode. If parent directory has default ACL,
359 * then clone to new inode. Called from ocfs2_mknod.
361 int ocfs2_init_acl(handle_t
*handle
,
364 struct buffer_head
*di_bh
,
365 struct buffer_head
*dir_bh
,
366 struct ocfs2_alloc_context
*meta_ac
,
367 struct ocfs2_alloc_context
*data_ac
)
369 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
370 struct posix_acl
*acl
= NULL
;
374 if (!S_ISLNK(inode
->i_mode
)) {
375 if (osb
->s_mount_opt
& OCFS2_MOUNT_POSIX_ACL
) {
376 acl
= ocfs2_get_acl_nolock(dir
, ACL_TYPE_DEFAULT
,
382 mode
= inode
->i_mode
& ~current_umask();
383 ret
= ocfs2_acl_set_mode(inode
, di_bh
, handle
, mode
);
390 if ((osb
->s_mount_opt
& OCFS2_MOUNT_POSIX_ACL
) && acl
) {
391 struct posix_acl
*clone
;
393 if (S_ISDIR(inode
->i_mode
)) {
394 ret
= ocfs2_set_acl(handle
, inode
, di_bh
,
395 ACL_TYPE_DEFAULT
, acl
,
400 clone
= posix_acl_clone(acl
, GFP_NOFS
);
405 mode
= inode
->i_mode
;
406 ret
= posix_acl_create_masq(clone
, &mode
);
408 ret2
= ocfs2_acl_set_mode(inode
, di_bh
, handle
, mode
);
415 ret
= ocfs2_set_acl(handle
, inode
,
416 di_bh
, ACL_TYPE_ACCESS
,
417 clone
, meta_ac
, data_ac
);
420 posix_acl_release(clone
);
423 posix_acl_release(acl
);
427 static size_t ocfs2_xattr_list_acl_access(struct dentry
*dentry
,
434 struct ocfs2_super
*osb
= OCFS2_SB(dentry
->d_sb
);
435 const size_t size
= sizeof(POSIX_ACL_XATTR_ACCESS
);
437 if (!(osb
->s_mount_opt
& OCFS2_MOUNT_POSIX_ACL
))
440 if (list
&& size
<= list_len
)
441 memcpy(list
, POSIX_ACL_XATTR_ACCESS
, size
);
445 static size_t ocfs2_xattr_list_acl_default(struct dentry
*dentry
,
452 struct ocfs2_super
*osb
= OCFS2_SB(dentry
->d_sb
);
453 const size_t size
= sizeof(POSIX_ACL_XATTR_DEFAULT
);
455 if (!(osb
->s_mount_opt
& OCFS2_MOUNT_POSIX_ACL
))
458 if (list
&& size
<= list_len
)
459 memcpy(list
, POSIX_ACL_XATTR_DEFAULT
, size
);
463 static int ocfs2_xattr_get_acl(struct dentry
*dentry
, const char *name
,
464 void *buffer
, size_t size
, int type
)
466 struct ocfs2_super
*osb
= OCFS2_SB(dentry
->d_sb
);
467 struct posix_acl
*acl
;
470 if (strcmp(name
, "") != 0)
472 if (!(osb
->s_mount_opt
& OCFS2_MOUNT_POSIX_ACL
))
475 acl
= ocfs2_get_acl(dentry
->d_inode
, type
);
480 ret
= posix_acl_to_xattr(acl
, buffer
, size
);
481 posix_acl_release(acl
);
486 static int ocfs2_xattr_set_acl(struct dentry
*dentry
, const char *name
,
487 const void *value
, size_t size
, int flags
, int type
)
489 struct inode
*inode
= dentry
->d_inode
;
490 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
491 struct posix_acl
*acl
;
494 if (strcmp(name
, "") != 0)
496 if (!(osb
->s_mount_opt
& OCFS2_MOUNT_POSIX_ACL
))
499 if (!inode_owner_or_capable(inode
))
503 acl
= posix_acl_from_xattr(value
, size
);
507 ret
= posix_acl_valid(acl
);
514 ret
= ocfs2_set_acl(NULL
, inode
, NULL
, type
, acl
, NULL
, NULL
);
517 posix_acl_release(acl
);
521 const struct xattr_handler ocfs2_xattr_acl_access_handler
= {
522 .prefix
= POSIX_ACL_XATTR_ACCESS
,
523 .flags
= ACL_TYPE_ACCESS
,
524 .list
= ocfs2_xattr_list_acl_access
,
525 .get
= ocfs2_xattr_get_acl
,
526 .set
= ocfs2_xattr_set_acl
,
529 const struct xattr_handler ocfs2_xattr_acl_default_handler
= {
530 .prefix
= POSIX_ACL_XATTR_DEFAULT
,
531 .flags
= ACL_TYPE_DEFAULT
,
532 .list
= ocfs2_xattr_list_acl_default
,
533 .get
= ocfs2_xattr_get_acl
,
534 .set
= ocfs2_xattr_set_acl
,