4 * Common NFSv4 ACL handling code.
6 * Copyright (c) 2002, 2003 The Regents of the University of Michigan.
9 * Marius Aamodt Eriksen <marius@umich.edu>
10 * Jeff Sedlak <jsedlak@umich.edu>
11 * J. Bruce Fields <bfields@umich.edu>
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
17 * 1. Redistributions of source code must retain the above copyright
18 * notice, this list of conditions and the following disclaimer.
19 * 2. Redistributions in binary form must reproduce the above copyright
20 * notice, this list of conditions and the following disclaimer in the
21 * documentation and/or other materials provided with the distribution.
22 * 3. Neither the name of the University nor the names of its
23 * contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
26 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
27 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
28 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
29 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
33 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
34 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
35 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
36 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 #include <linux/string.h>
40 #include <linux/slab.h>
41 #include <linux/list.h>
42 #include <linux/types.h>
44 #include <linux/module.h>
45 #include <linux/nfs_fs.h>
46 #include <linux/posix_acl.h>
47 #include <linux/nfs4.h>
48 #include <linux/nfs4_acl.h>
51 /* mode bit translations: */
52 #define NFS4_READ_MODE (NFS4_ACE_READ_DATA)
53 #define NFS4_WRITE_MODE (NFS4_ACE_WRITE_DATA | NFS4_ACE_APPEND_DATA)
54 #define NFS4_EXECUTE_MODE NFS4_ACE_EXECUTE
55 #define NFS4_ANYONE_MODE (NFS4_ACE_READ_ATTRIBUTES | NFS4_ACE_READ_ACL | NFS4_ACE_SYNCHRONIZE)
56 #define NFS4_OWNER_MODE (NFS4_ACE_WRITE_ATTRIBUTES | NFS4_ACE_WRITE_ACL)
58 /* We don't support these bits; insist they be neither allowed nor denied */
59 #define NFS4_MASK_UNSUPP (NFS4_ACE_DELETE | NFS4_ACE_WRITE_OWNER \
60 | NFS4_ACE_READ_NAMED_ATTRS | NFS4_ACE_WRITE_NAMED_ATTRS)
62 /* flags used to simulate posix default ACLs */
63 #define NFS4_INHERITANCE_FLAGS (NFS4_ACE_FILE_INHERIT_ACE \
64 | NFS4_ACE_DIRECTORY_INHERIT_ACE | NFS4_ACE_INHERIT_ONLY_ACE)
66 #define NFS4_SUPPORTED_FLAGS (NFS4_INHERITANCE_FLAGS | NFS4_ACE_IDENTIFIER_GROUP)
68 #define MASK_EQUAL(mask1, mask2) \
69 ( ((mask1) & NFS4_ACE_MASK_ALL) == ((mask2) & NFS4_ACE_MASK_ALL) )
72 mask_from_posix(unsigned short perm
, unsigned int flags
)
74 int mask
= NFS4_ANYONE_MODE
;
76 if (flags
& NFS4_ACL_OWNER
)
77 mask
|= NFS4_OWNER_MODE
;
79 mask
|= NFS4_READ_MODE
;
81 mask
|= NFS4_WRITE_MODE
;
82 if ((perm
& ACL_WRITE
) && (flags
& NFS4_ACL_DIR
))
83 mask
|= NFS4_ACE_DELETE_CHILD
;
84 if (perm
& ACL_EXECUTE
)
85 mask
|= NFS4_EXECUTE_MODE
;
90 deny_mask(u32 allow_mask
, unsigned int flags
)
92 u32 ret
= ~allow_mask
& ~NFS4_MASK_UNSUPP
;
93 if (!(flags
& NFS4_ACL_DIR
))
94 ret
&= ~NFS4_ACE_DELETE_CHILD
;
98 /* XXX: modify functions to return NFS errors; they're only ever
99 * used by nfs code, after all.... */
101 /* We only map from NFSv4 to POSIX ACLs when setting ACLs, when we err on the
102 * side of being more restrictive, so the mode bit mapping below is
103 * pessimistic. An optimistic version would be needed to handle DENY's,
104 * but we espect to coalesce all ALLOWs and DENYs before mapping to mode
108 low_mode_from_nfs4(u32 perm
, unsigned short *mode
, unsigned int flags
)
110 u32 write_mode
= NFS4_WRITE_MODE
;
112 if (flags
& NFS4_ACL_DIR
)
113 write_mode
|= NFS4_ACE_DELETE_CHILD
;
115 if ((perm
& NFS4_READ_MODE
) == NFS4_READ_MODE
)
117 if ((perm
& write_mode
) == write_mode
)
119 if ((perm
& NFS4_EXECUTE_MODE
) == NFS4_EXECUTE_MODE
)
120 *mode
|= ACL_EXECUTE
;
123 struct ace_container
{
124 struct nfs4_ace
*ace
;
125 struct list_head ace_l
;
128 static short ace2type(struct nfs4_ace
*);
129 static int _posix_to_nfsv4_one(struct posix_acl
*, struct nfs4_acl
*, unsigned int);
130 static struct posix_acl
*_nfsv4_to_posix_one(struct nfs4_acl
*, unsigned int);
131 int nfs4_acl_add_ace(struct nfs4_acl
*, u32
, u32
, u32
, int, uid_t
);
132 static int nfs4_acl_split(struct nfs4_acl
*, struct nfs4_acl
*);
135 nfs4_acl_posix_to_nfsv4(struct posix_acl
*pacl
, struct posix_acl
*dpacl
,
138 struct nfs4_acl
*acl
;
142 (posix_acl_valid(pacl
) < 0 || pacl
->a_count
== 0)) ||
144 (posix_acl_valid(dpacl
) < 0 || dpacl
->a_count
== 0)))
147 acl
= nfs4_acl_new();
154 error
= _posix_to_nfsv4_one(pacl
, acl
,
155 flags
& ~NFS4_ACL_TYPE_DEFAULT
);
161 error
= _posix_to_nfsv4_one(dpacl
, acl
,
162 flags
| NFS4_ACL_TYPE_DEFAULT
);
172 acl
= ERR_PTR(error
);
178 nfs4_acl_add_pair(struct nfs4_acl
*acl
, int eflag
, u32 mask
, int whotype
,
179 uid_t owner
, unsigned int flags
)
183 error
= nfs4_acl_add_ace(acl
, NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
,
184 eflag
, mask
, whotype
, owner
);
187 error
= nfs4_acl_add_ace(acl
, NFS4_ACE_ACCESS_DENIED_ACE_TYPE
,
188 eflag
, deny_mask(mask
, flags
), whotype
, owner
);
192 /* We assume the acl has been verified with posix_acl_valid. */
194 _posix_to_nfsv4_one(struct posix_acl
*pacl
, struct nfs4_acl
*acl
,
197 struct posix_acl_entry
*pa
, *pe
, *group_owner_entry
;
200 int eflag
= ((flags
& NFS4_ACL_TYPE_DEFAULT
) ?
201 NFS4_INHERITANCE_FLAGS
: 0);
203 BUG_ON(pacl
->a_count
< 3);
204 pe
= pacl
->a_entries
+ pacl
->a_count
;
205 pa
= pe
- 2; /* if mask entry exists, it's second from the last. */
206 if (pa
->e_tag
== ACL_MASK
)
207 mask_mask
= deny_mask(mask_from_posix(pa
->e_perm
, flags
), flags
);
211 pa
= pacl
->a_entries
;
212 BUG_ON(pa
->e_tag
!= ACL_USER_OBJ
);
213 mask
= mask_from_posix(pa
->e_perm
, flags
| NFS4_ACL_OWNER
);
214 error
= nfs4_acl_add_pair(acl
, eflag
, mask
, NFS4_ACL_WHO_OWNER
, 0, flags
);
219 while (pa
->e_tag
== ACL_USER
) {
220 mask
= mask_from_posix(pa
->e_perm
, flags
);
221 error
= nfs4_acl_add_ace(acl
, NFS4_ACE_ACCESS_DENIED_ACE_TYPE
,
222 eflag
, mask_mask
, NFS4_ACL_WHO_NAMED
, pa
->e_id
);
227 error
= nfs4_acl_add_pair(acl
, eflag
, mask
,
228 NFS4_ACL_WHO_NAMED
, pa
->e_id
, flags
);
234 /* In the case of groups, we apply allow ACEs first, then deny ACEs,
235 * since a user can be in more than one group. */
239 if (pacl
->a_count
> 3) {
240 BUG_ON(pa
->e_tag
!= ACL_GROUP_OBJ
);
241 error
= nfs4_acl_add_ace(acl
, NFS4_ACE_ACCESS_DENIED_ACE_TYPE
,
242 NFS4_ACE_IDENTIFIER_GROUP
| eflag
, mask_mask
,
243 NFS4_ACL_WHO_GROUP
, 0);
247 group_owner_entry
= pa
;
248 mask
= mask_from_posix(pa
->e_perm
, flags
);
249 error
= nfs4_acl_add_ace(acl
, NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
,
250 NFS4_ACE_IDENTIFIER_GROUP
| eflag
, mask
,
251 NFS4_ACL_WHO_GROUP
, 0);
256 while (pa
->e_tag
== ACL_GROUP
) {
257 mask
= mask_from_posix(pa
->e_perm
, flags
);
258 error
= nfs4_acl_add_ace(acl
, NFS4_ACE_ACCESS_DENIED_ACE_TYPE
,
259 NFS4_ACE_IDENTIFIER_GROUP
| eflag
, mask_mask
,
260 NFS4_ACL_WHO_NAMED
, pa
->e_id
);
264 error
= nfs4_acl_add_ace(acl
, NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
,
265 NFS4_ACE_IDENTIFIER_GROUP
| eflag
, mask
,
266 NFS4_ACL_WHO_NAMED
, pa
->e_id
);
274 pa
= group_owner_entry
;
275 mask
= mask_from_posix(pa
->e_perm
, flags
);
276 error
= nfs4_acl_add_ace(acl
, NFS4_ACE_ACCESS_DENIED_ACE_TYPE
,
277 NFS4_ACE_IDENTIFIER_GROUP
| eflag
,
278 deny_mask(mask
, flags
), NFS4_ACL_WHO_GROUP
, 0);
282 while (pa
->e_tag
== ACL_GROUP
) {
283 mask
= mask_from_posix(pa
->e_perm
, flags
);
284 error
= nfs4_acl_add_ace(acl
, NFS4_ACE_ACCESS_DENIED_ACE_TYPE
,
285 NFS4_ACE_IDENTIFIER_GROUP
| eflag
,
286 deny_mask(mask
, flags
), NFS4_ACL_WHO_NAMED
, pa
->e_id
);
292 if (pa
->e_tag
== ACL_MASK
)
294 BUG_ON(pa
->e_tag
!= ACL_OTHER
);
295 mask
= mask_from_posix(pa
->e_perm
, flags
);
296 error
= nfs4_acl_add_pair(acl
, eflag
, mask
, NFS4_ACL_WHO_EVERYONE
, 0, flags
);
303 sort_pacl_range(struct posix_acl
*pacl
, int start
, int end
) {
305 struct posix_acl_entry tmp
;
307 /* We just do a bubble sort; easy to do in place, and we're not
308 * expecting acl's to be long enough to justify anything more. */
311 for (i
= start
; i
< end
; i
++) {
312 if (pacl
->a_entries
[i
].e_id
313 > pacl
->a_entries
[i
+1].e_id
) {
315 tmp
= pacl
->a_entries
[i
];
316 pacl
->a_entries
[i
] = pacl
->a_entries
[i
+1];
317 pacl
->a_entries
[i
+1] = tmp
;
324 sort_pacl(struct posix_acl
*pacl
)
326 /* posix_acl_valid requires that users and groups be in order
330 if (pacl
->a_count
<= 4)
331 return; /* no users or groups */
333 while (pacl
->a_entries
[i
].e_tag
== ACL_USER
)
335 sort_pacl_range(pacl
, 1, i
-1);
337 BUG_ON(pacl
->a_entries
[i
].e_tag
!= ACL_GROUP_OBJ
);
339 while (pacl
->a_entries
[j
].e_tag
== ACL_GROUP
)
341 sort_pacl_range(pacl
, i
, j
-1);
346 nfs4_acl_nfsv4_to_posix(struct nfs4_acl
*acl
, struct posix_acl
**pacl
,
347 struct posix_acl
**dpacl
, unsigned int flags
)
349 struct nfs4_acl
*dacl
;
355 dacl
= nfs4_acl_new();
359 error
= nfs4_acl_split(acl
, dacl
);
363 *pacl
= _nfsv4_to_posix_one(acl
, flags
);
365 error
= PTR_ERR(*pacl
);
370 *dpacl
= _nfsv4_to_posix_one(dacl
, flags
);
371 if (IS_ERR(*dpacl
)) {
372 error
= PTR_ERR(*dpacl
);
377 posix_acl_release(*pacl
);
386 * While processing the NFSv4 ACE, this maintains bitmasks representing
387 * which permission bits have been allowed and which denied to a given
389 struct posix_ace_state
{
394 struct posix_user_ace_state
{
396 struct posix_ace_state perms
;
399 struct posix_ace_state_array
{
401 struct posix_user_ace_state aces
[];
405 * While processing the NFSv4 ACE, this maintains the partial permissions
406 * calculated so far: */
408 struct posix_acl_state
{
409 struct posix_ace_state owner
;
410 struct posix_ace_state group
;
411 struct posix_ace_state other
;
412 struct posix_ace_state everyone
;
413 struct posix_ace_state mask
; /* Deny unused in this case */
414 struct posix_ace_state_array
*users
;
415 struct posix_ace_state_array
*groups
;
419 init_state(struct posix_acl_state
*state
, int cnt
)
423 memset(state
, 0, sizeof(struct posix_acl_state
));
425 * In the worst case, each individual acl could be for a distinct
426 * named user or group, but we don't no which, so we allocate
427 * enough space for either:
429 alloc
= sizeof(struct posix_ace_state_array
)
430 + cnt
*sizeof(struct posix_ace_state
);
431 state
->users
= kzalloc(alloc
, GFP_KERNEL
);
434 state
->groups
= kzalloc(alloc
, GFP_KERNEL
);
435 if (!state
->groups
) {
443 free_state(struct posix_acl_state
*state
) {
445 kfree(state
->groups
);
448 static inline void add_to_mask(struct posix_acl_state
*state
, struct posix_ace_state
*astate
)
450 state
->mask
.allow
|= astate
->allow
;
454 * Certain bits (SYNCHRONIZE, DELETE, WRITE_OWNER, READ/WRITE_NAMED_ATTRS,
455 * READ_ATTRIBUTES, READ_ACL) are currently unenforceable and don't translate
456 * to traditional read/write/execute permissions.
458 * It's problematic to reject acls that use certain mode bits, because it
459 * places the burden on users to learn the rules about which bits one
460 * particular server sets, without giving the user a lot of help--we return an
461 * error that could mean any number of different things. To make matters
462 * worse, the problematic bits might be introduced by some application that's
463 * automatically mapping from some other acl model.
465 * So wherever possible we accept anything, possibly erring on the side of
466 * denying more permissions than necessary.
468 * However we do reject *explicit* DENY's of a few bits representing
469 * permissions we could never deny:
472 static inline int check_deny(u32 mask
, int isowner
)
474 if (mask
& (NFS4_ACE_READ_ATTRIBUTES
| NFS4_ACE_READ_ACL
))
478 if (mask
& (NFS4_ACE_WRITE_ATTRIBUTES
| NFS4_ACE_WRITE_ACL
))
483 static struct posix_acl
*
484 posix_state_to_acl(struct posix_acl_state
*state
, unsigned int flags
)
486 struct posix_acl_entry
*pace
;
487 struct posix_acl
*pacl
;
491 nace
= 4 + state
->users
->n
+ state
->groups
->n
;
492 pacl
= posix_acl_alloc(nace
, GFP_KERNEL
);
494 return ERR_PTR(-ENOMEM
);
496 pace
= pacl
->a_entries
;
497 pace
->e_tag
= ACL_USER_OBJ
;
498 error
= check_deny(state
->owner
.deny
, 1);
501 low_mode_from_nfs4(state
->owner
.allow
, &pace
->e_perm
, flags
);
502 pace
->e_id
= ACL_UNDEFINED_ID
;
504 for (i
=0; i
< state
->users
->n
; i
++) {
506 pace
->e_tag
= ACL_USER
;
507 error
= check_deny(state
->users
->aces
[i
].perms
.deny
, 0);
510 low_mode_from_nfs4(state
->users
->aces
[i
].perms
.allow
,
511 &pace
->e_perm
, flags
);
512 pace
->e_id
= state
->users
->aces
[i
].uid
;
513 add_to_mask(state
, &state
->users
->aces
[i
].perms
);
517 pace
->e_tag
= ACL_GROUP_OBJ
;
518 error
= check_deny(state
->group
.deny
, 0);
521 low_mode_from_nfs4(state
->group
.allow
, &pace
->e_perm
, flags
);
522 pace
->e_id
= ACL_UNDEFINED_ID
;
523 add_to_mask(state
, &state
->group
);
525 for (i
=0; i
< state
->groups
->n
; i
++) {
527 pace
->e_tag
= ACL_GROUP
;
528 error
= check_deny(state
->groups
->aces
[i
].perms
.deny
, 0);
531 low_mode_from_nfs4(state
->groups
->aces
[i
].perms
.allow
,
532 &pace
->e_perm
, flags
);
533 pace
->e_id
= state
->groups
->aces
[i
].uid
;
534 add_to_mask(state
, &state
->groups
->aces
[i
].perms
);
538 pace
->e_tag
= ACL_MASK
;
539 low_mode_from_nfs4(state
->mask
.allow
, &pace
->e_perm
, flags
);
540 pace
->e_id
= ACL_UNDEFINED_ID
;
543 pace
->e_tag
= ACL_OTHER
;
544 error
= check_deny(state
->other
.deny
, 0);
547 low_mode_from_nfs4(state
->other
.allow
, &pace
->e_perm
, flags
);
548 pace
->e_id
= ACL_UNDEFINED_ID
;
552 posix_acl_release(pacl
);
553 return ERR_PTR(error
);
556 static inline void allow_bits(struct posix_ace_state
*astate
, u32 mask
)
558 /* Allow all bits in the mask not already denied: */
559 astate
->allow
|= mask
& ~astate
->deny
;
562 static inline void deny_bits(struct posix_ace_state
*astate
, u32 mask
)
564 /* Deny all bits in the mask not already allowed: */
565 astate
->deny
|= mask
& ~astate
->allow
;
568 static int find_uid(struct posix_acl_state
*state
, struct posix_ace_state_array
*a
, uid_t uid
)
572 for (i
= 0; i
< a
->n
; i
++)
573 if (a
->aces
[i
].uid
== uid
)
577 a
->aces
[i
].uid
= uid
;
578 a
->aces
[i
].perms
.allow
= state
->everyone
.allow
;
579 a
->aces
[i
].perms
.deny
= state
->everyone
.deny
;
584 static void deny_bits_array(struct posix_ace_state_array
*a
, u32 mask
)
588 for (i
=0; i
< a
->n
; i
++)
589 deny_bits(&a
->aces
[i
].perms
, mask
);
592 static void allow_bits_array(struct posix_ace_state_array
*a
, u32 mask
)
596 for (i
=0; i
< a
->n
; i
++)
597 allow_bits(&a
->aces
[i
].perms
, mask
);
600 static void process_one_v4_ace(struct posix_acl_state
*state
,
601 struct nfs4_ace
*ace
)
603 u32 mask
= ace
->access_mask
;
606 switch (ace2type(ace
)) {
608 if (ace
->type
== NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
) {
609 allow_bits(&state
->owner
, mask
);
611 deny_bits(&state
->owner
, mask
);
615 i
= find_uid(state
, state
->users
, ace
->who
);
616 if (ace
->type
== NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
) {
617 allow_bits(&state
->users
->aces
[i
].perms
, mask
);
619 deny_bits(&state
->users
->aces
[i
].perms
, mask
);
620 mask
= state
->users
->aces
[i
].perms
.deny
;
621 deny_bits(&state
->owner
, mask
);
625 if (ace
->type
== NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
) {
626 allow_bits(&state
->group
, mask
);
628 deny_bits(&state
->group
, mask
);
629 mask
= state
->group
.deny
;
630 deny_bits(&state
->owner
, mask
);
631 deny_bits(&state
->everyone
, mask
);
632 deny_bits_array(state
->users
, mask
);
633 deny_bits_array(state
->groups
, mask
);
637 i
= find_uid(state
, state
->groups
, ace
->who
);
638 if (ace
->type
== NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
) {
639 allow_bits(&state
->groups
->aces
[i
].perms
, mask
);
641 deny_bits(&state
->groups
->aces
[i
].perms
, mask
);
642 mask
= state
->groups
->aces
[i
].perms
.deny
;
643 deny_bits(&state
->owner
, mask
);
644 deny_bits(&state
->group
, mask
);
645 deny_bits(&state
->everyone
, mask
);
646 deny_bits_array(state
->users
, mask
);
647 deny_bits_array(state
->groups
, mask
);
651 if (ace
->type
== NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
) {
652 allow_bits(&state
->owner
, mask
);
653 allow_bits(&state
->group
, mask
);
654 allow_bits(&state
->other
, mask
);
655 allow_bits(&state
->everyone
, mask
);
656 allow_bits_array(state
->users
, mask
);
657 allow_bits_array(state
->groups
, mask
);
659 deny_bits(&state
->owner
, mask
);
660 deny_bits(&state
->group
, mask
);
661 deny_bits(&state
->other
, mask
);
662 deny_bits(&state
->everyone
, mask
);
663 deny_bits_array(state
->users
, mask
);
664 deny_bits_array(state
->groups
, mask
);
669 static struct posix_acl
*
670 _nfsv4_to_posix_one(struct nfs4_acl
*n4acl
, unsigned int flags
)
672 struct posix_acl_state state
;
673 struct posix_acl
*pacl
;
674 struct nfs4_ace
*ace
;
677 ret
= init_state(&state
, n4acl
->naces
);
681 list_for_each_entry(ace
, &n4acl
->ace_head
, l_ace
)
682 process_one_v4_ace(&state
, ace
);
684 pacl
= posix_state_to_acl(&state
, flags
);
694 nfs4_acl_split(struct nfs4_acl
*acl
, struct nfs4_acl
*dacl
)
696 struct list_head
*h
, *n
;
697 struct nfs4_ace
*ace
;
700 list_for_each_safe(h
, n
, &acl
->ace_head
) {
701 ace
= list_entry(h
, struct nfs4_ace
, l_ace
);
703 if (ace
->type
!= NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
&&
704 ace
->type
!= NFS4_ACE_ACCESS_DENIED_ACE_TYPE
)
707 if (ace
->flag
& ~NFS4_SUPPORTED_FLAGS
)
710 switch (ace
->flag
& NFS4_INHERITANCE_FLAGS
) {
712 /* Leave this ace in the effective acl: */
714 case NFS4_INHERITANCE_FLAGS
:
715 /* Add this ace to the default acl and remove it
716 * from the effective acl: */
717 error
= nfs4_acl_add_ace(dacl
, ace
->type
, ace
->flag
,
718 ace
->access_mask
, ace
->whotype
, ace
->who
);
725 case NFS4_INHERITANCE_FLAGS
& ~NFS4_ACE_INHERIT_ONLY_ACE
:
726 /* Add this ace to the default, but leave it in
727 * the effective acl as well: */
728 error
= nfs4_acl_add_ace(dacl
, ace
->type
, ace
->flag
,
729 ace
->access_mask
, ace
->whotype
, ace
->who
);
741 ace2type(struct nfs4_ace
*ace
)
743 switch (ace
->whotype
) {
744 case NFS4_ACL_WHO_NAMED
:
745 return (ace
->flag
& NFS4_ACE_IDENTIFIER_GROUP
?
746 ACL_GROUP
: ACL_USER
);
747 case NFS4_ACL_WHO_OWNER
:
749 case NFS4_ACL_WHO_GROUP
:
750 return ACL_GROUP_OBJ
;
751 case NFS4_ACL_WHO_EVERYONE
:
758 EXPORT_SYMBOL(nfs4_acl_posix_to_nfsv4
);
759 EXPORT_SYMBOL(nfs4_acl_nfsv4_to_posix
);
764 struct nfs4_acl
*acl
;
766 if ((acl
= kmalloc(sizeof(*acl
), GFP_KERNEL
)) == NULL
)
770 INIT_LIST_HEAD(&acl
->ace_head
);
776 nfs4_acl_free(struct nfs4_acl
*acl
)
779 struct nfs4_ace
*ace
;
784 while (!list_empty(&acl
->ace_head
)) {
785 h
= acl
->ace_head
.next
;
787 ace
= list_entry(h
, struct nfs4_ace
, l_ace
);
797 nfs4_acl_add_ace(struct nfs4_acl
*acl
, u32 type
, u32 flag
, u32 access_mask
,
798 int whotype
, uid_t who
)
800 struct nfs4_ace
*ace
;
802 if ((ace
= kmalloc(sizeof(*ace
), GFP_KERNEL
)) == NULL
)
807 ace
->access_mask
= access_mask
;
808 ace
->whotype
= whotype
;
811 list_add_tail(&ace
->l_ace
, &acl
->ace_head
);
824 .stringlen
= sizeof("OWNER@") - 1,
825 .type
= NFS4_ACL_WHO_OWNER
,
829 .stringlen
= sizeof("GROUP@") - 1,
830 .type
= NFS4_ACL_WHO_GROUP
,
833 .string
= "EVERYONE@",
834 .stringlen
= sizeof("EVERYONE@") - 1,
835 .type
= NFS4_ACL_WHO_EVERYONE
,
840 nfs4_acl_get_whotype(char *p
, u32 len
)
844 for (i
= 0; i
< ARRAY_SIZE(s2t_map
); i
++) {
845 if (s2t_map
[i
].stringlen
== len
&&
846 0 == memcmp(s2t_map
[i
].string
, p
, len
))
847 return s2t_map
[i
].type
;
849 return NFS4_ACL_WHO_NAMED
;
853 nfs4_acl_write_who(int who
, char *p
)
857 for (i
= 0; i
< ARRAY_SIZE(s2t_map
); i
++) {
858 if (s2t_map
[i
].type
== who
) {
859 memcpy(p
, s2t_map
[i
].string
, s2t_map
[i
].stringlen
);
860 return s2t_map
[i
].stringlen
;
867 EXPORT_SYMBOL(nfs4_acl_new
);
868 EXPORT_SYMBOL(nfs4_acl_free
);
869 EXPORT_SYMBOL(nfs4_acl_add_ace
);
870 EXPORT_SYMBOL(nfs4_acl_get_whotype
);
871 EXPORT_SYMBOL(nfs4_acl_write_who
);