2 * Common NFSv4 ACL handling code.
4 * Copyright (c) 2002, 2003 The Regents of the University of Michigan.
7 * Marius Aamodt Eriksen <marius@umich.edu>
8 * Jeff Sedlak <jsedlak@umich.edu>
9 * J. Bruce Fields <bfields@umich.edu>
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. Neither the name of the University nor the names of its
21 * contributors may be used to endorse or promote products derived
22 * from this software without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
25 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
27 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
31 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
32 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
33 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
34 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 #include <linux/slab.h>
38 #include <linux/nfs_fs.h>
39 #include <linux/export.h>
43 /* mode bit translations: */
44 #define NFS4_READ_MODE (NFS4_ACE_READ_DATA)
45 #define NFS4_WRITE_MODE (NFS4_ACE_WRITE_DATA | NFS4_ACE_APPEND_DATA)
46 #define NFS4_EXECUTE_MODE NFS4_ACE_EXECUTE
47 #define NFS4_ANYONE_MODE (NFS4_ACE_READ_ATTRIBUTES | NFS4_ACE_READ_ACL | NFS4_ACE_SYNCHRONIZE)
48 #define NFS4_OWNER_MODE (NFS4_ACE_WRITE_ATTRIBUTES | NFS4_ACE_WRITE_ACL)
50 /* We don't support these bits; insist they be neither allowed nor denied */
51 #define NFS4_MASK_UNSUPP (NFS4_ACE_DELETE | NFS4_ACE_WRITE_OWNER \
52 | NFS4_ACE_READ_NAMED_ATTRS | NFS4_ACE_WRITE_NAMED_ATTRS)
54 /* flags used to simulate posix default ACLs */
55 #define NFS4_INHERITANCE_FLAGS (NFS4_ACE_FILE_INHERIT_ACE \
56 | NFS4_ACE_DIRECTORY_INHERIT_ACE)
58 #define NFS4_SUPPORTED_FLAGS (NFS4_INHERITANCE_FLAGS \
59 | NFS4_ACE_INHERIT_ONLY_ACE \
60 | NFS4_ACE_IDENTIFIER_GROUP)
62 #define MASK_EQUAL(mask1, mask2) \
63 ( ((mask1) & NFS4_ACE_MASK_ALL) == ((mask2) & NFS4_ACE_MASK_ALL) )
66 mask_from_posix(unsigned short perm
, unsigned int flags
)
68 int mask
= NFS4_ANYONE_MODE
;
70 if (flags
& NFS4_ACL_OWNER
)
71 mask
|= NFS4_OWNER_MODE
;
73 mask
|= NFS4_READ_MODE
;
75 mask
|= NFS4_WRITE_MODE
;
76 if ((perm
& ACL_WRITE
) && (flags
& NFS4_ACL_DIR
))
77 mask
|= NFS4_ACE_DELETE_CHILD
;
78 if (perm
& ACL_EXECUTE
)
79 mask
|= NFS4_EXECUTE_MODE
;
84 deny_mask_from_posix(unsigned short perm
, u32 flags
)
89 mask
|= NFS4_READ_MODE
;
91 mask
|= NFS4_WRITE_MODE
;
92 if ((perm
& ACL_WRITE
) && (flags
& NFS4_ACL_DIR
))
93 mask
|= NFS4_ACE_DELETE_CHILD
;
94 if (perm
& ACL_EXECUTE
)
95 mask
|= NFS4_EXECUTE_MODE
;
99 /* XXX: modify functions to return NFS errors; they're only ever
100 * used by nfs code, after all.... */
102 /* We only map from NFSv4 to POSIX ACLs when setting ACLs, when we err on the
103 * side of being more restrictive, so the mode bit mapping below is
104 * pessimistic. An optimistic version would be needed to handle DENY's,
105 * but we espect to coalesce all ALLOWs and DENYs before mapping to mode
109 low_mode_from_nfs4(u32 perm
, unsigned short *mode
, unsigned int flags
)
111 u32 write_mode
= NFS4_WRITE_MODE
;
113 if (flags
& NFS4_ACL_DIR
)
114 write_mode
|= NFS4_ACE_DELETE_CHILD
;
116 if ((perm
& NFS4_READ_MODE
) == NFS4_READ_MODE
)
118 if ((perm
& write_mode
) == write_mode
)
120 if ((perm
& NFS4_EXECUTE_MODE
) == NFS4_EXECUTE_MODE
)
121 *mode
|= ACL_EXECUTE
;
124 struct ace_container
{
125 struct nfs4_ace
*ace
;
126 struct list_head ace_l
;
129 static short ace2type(struct nfs4_ace
*);
130 static void _posix_to_nfsv4_one(struct posix_acl
*, struct nfs4_acl
*,
134 nfs4_acl_posix_to_nfsv4(struct posix_acl
*pacl
, struct posix_acl
*dpacl
,
137 struct nfs4_acl
*acl
;
141 if (posix_acl_valid(pacl
) < 0)
142 return ERR_PTR(-EINVAL
);
143 size
+= 2*pacl
->a_count
;
146 if (posix_acl_valid(dpacl
) < 0)
147 return ERR_PTR(-EINVAL
);
148 size
+= 2*dpacl
->a_count
;
151 /* Allocate for worst case: one (deny, allow) pair each: */
152 acl
= nfs4_acl_new(size
);
154 return ERR_PTR(-ENOMEM
);
157 _posix_to_nfsv4_one(pacl
, acl
, flags
& ~NFS4_ACL_TYPE_DEFAULT
);
160 _posix_to_nfsv4_one(dpacl
, acl
, flags
| NFS4_ACL_TYPE_DEFAULT
);
165 struct posix_acl_summary
{
166 unsigned short owner
;
167 unsigned short users
;
168 unsigned short group
;
169 unsigned short groups
;
170 unsigned short other
;
175 summarize_posix_acl(struct posix_acl
*acl
, struct posix_acl_summary
*pas
)
177 struct posix_acl_entry
*pa
, *pe
;
180 * Only pas.users and pas.groups need initialization; previous
181 * posix_acl_valid() calls ensure that the other fields will be
182 * initialized in the following loop. But, just to placate gcc:
184 memset(pas
, 0, sizeof(*pas
));
187 pe
= acl
->a_entries
+ acl
->a_count
;
189 FOREACH_ACL_ENTRY(pa
, acl
, pe
) {
192 pas
->owner
= pa
->e_perm
;
195 pas
->group
= pa
->e_perm
;
198 pas
->users
|= pa
->e_perm
;
201 pas
->groups
|= pa
->e_perm
;
204 pas
->other
= pa
->e_perm
;
207 pas
->mask
= pa
->e_perm
;
211 /* We'll only care about effective permissions: */
212 pas
->users
&= pas
->mask
;
213 pas
->group
&= pas
->mask
;
214 pas
->groups
&= pas
->mask
;
217 /* We assume the acl has been verified with posix_acl_valid. */
219 _posix_to_nfsv4_one(struct posix_acl
*pacl
, struct nfs4_acl
*acl
,
222 struct posix_acl_entry
*pa
, *group_owner_entry
;
223 struct nfs4_ace
*ace
;
224 struct posix_acl_summary pas
;
226 int eflag
= ((flags
& NFS4_ACL_TYPE_DEFAULT
) ?
227 NFS4_INHERITANCE_FLAGS
| NFS4_ACE_INHERIT_ONLY_ACE
: 0);
229 BUG_ON(pacl
->a_count
< 3);
230 summarize_posix_acl(pacl
, &pas
);
232 pa
= pacl
->a_entries
;
233 ace
= acl
->aces
+ acl
->naces
;
235 /* We could deny everything not granted by the owner: */
238 * but it is equivalent (and simpler) to deny only what is not
239 * granted by later entries:
241 deny
&= pas
.users
| pas
.group
| pas
.groups
| pas
.other
;
243 ace
->type
= NFS4_ACE_ACCESS_DENIED_ACE_TYPE
;
245 ace
->access_mask
= deny_mask_from_posix(deny
, flags
);
246 ace
->whotype
= NFS4_ACL_WHO_OWNER
;
251 ace
->type
= NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
;
253 ace
->access_mask
= mask_from_posix(pa
->e_perm
, flags
| NFS4_ACL_OWNER
);
254 ace
->whotype
= NFS4_ACL_WHO_OWNER
;
259 while (pa
->e_tag
== ACL_USER
) {
260 deny
= ~(pa
->e_perm
& pas
.mask
);
261 deny
&= pas
.groups
| pas
.group
| pas
.other
;
263 ace
->type
= NFS4_ACE_ACCESS_DENIED_ACE_TYPE
;
265 ace
->access_mask
= deny_mask_from_posix(deny
, flags
);
266 ace
->whotype
= NFS4_ACL_WHO_NAMED
;
267 ace
->who_uid
= pa
->e_uid
;
271 ace
->type
= NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
;
273 ace
->access_mask
= mask_from_posix(pa
->e_perm
& pas
.mask
,
275 ace
->whotype
= NFS4_ACL_WHO_NAMED
;
276 ace
->who_uid
= pa
->e_uid
;
282 /* In the case of groups, we apply allow ACEs first, then deny ACEs,
283 * since a user can be in more than one group. */
287 group_owner_entry
= pa
;
289 ace
->type
= NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
;
291 ace
->access_mask
= mask_from_posix(pas
.group
, flags
);
292 ace
->whotype
= NFS4_ACL_WHO_GROUP
;
297 while (pa
->e_tag
== ACL_GROUP
) {
298 ace
->type
= NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
;
299 ace
->flag
= eflag
| NFS4_ACE_IDENTIFIER_GROUP
;
300 ace
->access_mask
= mask_from_posix(pa
->e_perm
& pas
.mask
,
302 ace
->whotype
= NFS4_ACL_WHO_NAMED
;
303 ace
->who_gid
= pa
->e_gid
;
311 pa
= group_owner_entry
;
313 deny
= ~pas
.group
& pas
.other
;
315 ace
->type
= NFS4_ACE_ACCESS_DENIED_ACE_TYPE
;
317 ace
->access_mask
= deny_mask_from_posix(deny
, flags
);
318 ace
->whotype
= NFS4_ACL_WHO_GROUP
;
324 while (pa
->e_tag
== ACL_GROUP
) {
325 deny
= ~(pa
->e_perm
& pas
.mask
);
328 ace
->type
= NFS4_ACE_ACCESS_DENIED_ACE_TYPE
;
329 ace
->flag
= eflag
| NFS4_ACE_IDENTIFIER_GROUP
;
330 ace
->access_mask
= deny_mask_from_posix(deny
, flags
);
331 ace
->whotype
= NFS4_ACL_WHO_NAMED
;
332 ace
->who_gid
= pa
->e_gid
;
339 if (pa
->e_tag
== ACL_MASK
)
341 ace
->type
= NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
;
343 ace
->access_mask
= mask_from_posix(pa
->e_perm
, flags
);
344 ace
->whotype
= NFS4_ACL_WHO_EVERYONE
;
349 pace_gt(struct posix_acl_entry
*pace1
, struct posix_acl_entry
*pace2
)
351 if (pace1
->e_tag
!= pace2
->e_tag
)
352 return pace1
->e_tag
> pace2
->e_tag
;
353 if (pace1
->e_tag
== ACL_USER
)
354 return uid_gt(pace1
->e_uid
, pace2
->e_uid
);
355 if (pace1
->e_tag
== ACL_GROUP
)
356 return gid_gt(pace1
->e_gid
, pace2
->e_gid
);
361 sort_pacl_range(struct posix_acl
*pacl
, int start
, int end
) {
363 struct posix_acl_entry tmp
;
365 /* We just do a bubble sort; easy to do in place, and we're not
366 * expecting acl's to be long enough to justify anything more. */
369 for (i
= start
; i
< end
; i
++) {
370 if (pace_gt(&pacl
->a_entries
[i
],
371 &pacl
->a_entries
[i
+1])) {
373 tmp
= pacl
->a_entries
[i
];
374 pacl
->a_entries
[i
] = pacl
->a_entries
[i
+1];
375 pacl
->a_entries
[i
+1] = tmp
;
382 sort_pacl(struct posix_acl
*pacl
)
384 /* posix_acl_valid requires that users and groups be in order
388 if (pacl
->a_count
<= 4)
389 return; /* no users or groups */
391 while (pacl
->a_entries
[i
].e_tag
== ACL_USER
)
393 sort_pacl_range(pacl
, 1, i
-1);
395 BUG_ON(pacl
->a_entries
[i
].e_tag
!= ACL_GROUP_OBJ
);
397 while (pacl
->a_entries
[j
].e_tag
== ACL_GROUP
)
399 sort_pacl_range(pacl
, i
, j
-1);
404 * While processing the NFSv4 ACE, this maintains bitmasks representing
405 * which permission bits have been allowed and which denied to a given
407 struct posix_ace_state
{
412 struct posix_user_ace_state
{
417 struct posix_ace_state perms
;
420 struct posix_ace_state_array
{
422 struct posix_user_ace_state aces
[];
426 * While processing the NFSv4 ACE, this maintains the partial permissions
427 * calculated so far: */
429 struct posix_acl_state
{
431 struct posix_ace_state owner
;
432 struct posix_ace_state group
;
433 struct posix_ace_state other
;
434 struct posix_ace_state everyone
;
435 struct posix_ace_state mask
; /* Deny unused in this case */
436 struct posix_ace_state_array
*users
;
437 struct posix_ace_state_array
*groups
;
441 init_state(struct posix_acl_state
*state
, int cnt
)
445 memset(state
, 0, sizeof(struct posix_acl_state
));
448 * In the worst case, each individual acl could be for a distinct
449 * named user or group, but we don't no which, so we allocate
450 * enough space for either:
452 alloc
= sizeof(struct posix_ace_state_array
)
453 + cnt
*sizeof(struct posix_user_ace_state
);
454 state
->users
= kzalloc(alloc
, GFP_KERNEL
);
457 state
->groups
= kzalloc(alloc
, GFP_KERNEL
);
458 if (!state
->groups
) {
466 free_state(struct posix_acl_state
*state
) {
468 kfree(state
->groups
);
471 static inline void add_to_mask(struct posix_acl_state
*state
, struct posix_ace_state
*astate
)
473 state
->mask
.allow
|= astate
->allow
;
477 * Certain bits (SYNCHRONIZE, DELETE, WRITE_OWNER, READ/WRITE_NAMED_ATTRS,
478 * READ_ATTRIBUTES, READ_ACL) are currently unenforceable and don't translate
479 * to traditional read/write/execute permissions.
481 * It's problematic to reject acls that use certain mode bits, because it
482 * places the burden on users to learn the rules about which bits one
483 * particular server sets, without giving the user a lot of help--we return an
484 * error that could mean any number of different things. To make matters
485 * worse, the problematic bits might be introduced by some application that's
486 * automatically mapping from some other acl model.
488 * So wherever possible we accept anything, possibly erring on the side of
489 * denying more permissions than necessary.
491 * However we do reject *explicit* DENY's of a few bits representing
492 * permissions we could never deny:
495 static inline int check_deny(u32 mask
, int isowner
)
497 if (mask
& (NFS4_ACE_READ_ATTRIBUTES
| NFS4_ACE_READ_ACL
))
501 if (mask
& (NFS4_ACE_WRITE_ATTRIBUTES
| NFS4_ACE_WRITE_ACL
))
506 static struct posix_acl
*
507 posix_state_to_acl(struct posix_acl_state
*state
, unsigned int flags
)
509 struct posix_acl_entry
*pace
;
510 struct posix_acl
*pacl
;
515 * ACLs with no ACEs are treated differently in the inheritable
516 * and effective cases: when there are no inheritable ACEs, we
517 * set a zero-length default posix acl:
519 if (state
->empty
&& (flags
& NFS4_ACL_TYPE_DEFAULT
)) {
520 pacl
= posix_acl_alloc(0, GFP_KERNEL
);
521 return pacl
? pacl
: ERR_PTR(-ENOMEM
);
524 * When there are no effective ACEs, the following will end
525 * up setting a 3-element effective posix ACL with all
528 nace
= 4 + state
->users
->n
+ state
->groups
->n
;
529 pacl
= posix_acl_alloc(nace
, GFP_KERNEL
);
531 return ERR_PTR(-ENOMEM
);
533 pace
= pacl
->a_entries
;
534 pace
->e_tag
= ACL_USER_OBJ
;
535 error
= check_deny(state
->owner
.deny
, 1);
538 low_mode_from_nfs4(state
->owner
.allow
, &pace
->e_perm
, flags
);
540 for (i
=0; i
< state
->users
->n
; i
++) {
542 pace
->e_tag
= ACL_USER
;
543 error
= check_deny(state
->users
->aces
[i
].perms
.deny
, 0);
546 low_mode_from_nfs4(state
->users
->aces
[i
].perms
.allow
,
547 &pace
->e_perm
, flags
);
548 pace
->e_uid
= state
->users
->aces
[i
].uid
;
549 add_to_mask(state
, &state
->users
->aces
[i
].perms
);
553 pace
->e_tag
= ACL_GROUP_OBJ
;
554 error
= check_deny(state
->group
.deny
, 0);
557 low_mode_from_nfs4(state
->group
.allow
, &pace
->e_perm
, flags
);
558 add_to_mask(state
, &state
->group
);
560 for (i
=0; i
< state
->groups
->n
; i
++) {
562 pace
->e_tag
= ACL_GROUP
;
563 error
= check_deny(state
->groups
->aces
[i
].perms
.deny
, 0);
566 low_mode_from_nfs4(state
->groups
->aces
[i
].perms
.allow
,
567 &pace
->e_perm
, flags
);
568 pace
->e_gid
= state
->groups
->aces
[i
].gid
;
569 add_to_mask(state
, &state
->groups
->aces
[i
].perms
);
573 pace
->e_tag
= ACL_MASK
;
574 low_mode_from_nfs4(state
->mask
.allow
, &pace
->e_perm
, flags
);
577 pace
->e_tag
= ACL_OTHER
;
578 error
= check_deny(state
->other
.deny
, 0);
581 low_mode_from_nfs4(state
->other
.allow
, &pace
->e_perm
, flags
);
585 posix_acl_release(pacl
);
586 return ERR_PTR(error
);
589 static inline void allow_bits(struct posix_ace_state
*astate
, u32 mask
)
591 /* Allow all bits in the mask not already denied: */
592 astate
->allow
|= mask
& ~astate
->deny
;
595 static inline void deny_bits(struct posix_ace_state
*astate
, u32 mask
)
597 /* Deny all bits in the mask not already allowed: */
598 astate
->deny
|= mask
& ~astate
->allow
;
601 static int find_uid(struct posix_acl_state
*state
, kuid_t uid
)
603 struct posix_ace_state_array
*a
= state
->users
;
606 for (i
= 0; i
< a
->n
; i
++)
607 if (uid_eq(a
->aces
[i
].uid
, uid
))
611 a
->aces
[i
].uid
= uid
;
612 a
->aces
[i
].perms
.allow
= state
->everyone
.allow
;
613 a
->aces
[i
].perms
.deny
= state
->everyone
.deny
;
618 static int find_gid(struct posix_acl_state
*state
, kgid_t gid
)
620 struct posix_ace_state_array
*a
= state
->groups
;
623 for (i
= 0; i
< a
->n
; i
++)
624 if (gid_eq(a
->aces
[i
].gid
, gid
))
628 a
->aces
[i
].gid
= gid
;
629 a
->aces
[i
].perms
.allow
= state
->everyone
.allow
;
630 a
->aces
[i
].perms
.deny
= state
->everyone
.deny
;
635 static void deny_bits_array(struct posix_ace_state_array
*a
, u32 mask
)
639 for (i
=0; i
< a
->n
; i
++)
640 deny_bits(&a
->aces
[i
].perms
, mask
);
643 static void allow_bits_array(struct posix_ace_state_array
*a
, u32 mask
)
647 for (i
=0; i
< a
->n
; i
++)
648 allow_bits(&a
->aces
[i
].perms
, mask
);
651 static void process_one_v4_ace(struct posix_acl_state
*state
,
652 struct nfs4_ace
*ace
)
654 u32 mask
= ace
->access_mask
;
659 switch (ace2type(ace
)) {
661 if (ace
->type
== NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
) {
662 allow_bits(&state
->owner
, mask
);
664 deny_bits(&state
->owner
, mask
);
668 i
= find_uid(state
, ace
->who_uid
);
669 if (ace
->type
== NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
) {
670 allow_bits(&state
->users
->aces
[i
].perms
, mask
);
672 deny_bits(&state
->users
->aces
[i
].perms
, mask
);
673 mask
= state
->users
->aces
[i
].perms
.deny
;
674 deny_bits(&state
->owner
, mask
);
678 if (ace
->type
== NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
) {
679 allow_bits(&state
->group
, mask
);
681 deny_bits(&state
->group
, mask
);
682 mask
= state
->group
.deny
;
683 deny_bits(&state
->owner
, mask
);
684 deny_bits(&state
->everyone
, mask
);
685 deny_bits_array(state
->users
, mask
);
686 deny_bits_array(state
->groups
, mask
);
690 i
= find_gid(state
, ace
->who_gid
);
691 if (ace
->type
== NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
) {
692 allow_bits(&state
->groups
->aces
[i
].perms
, mask
);
694 deny_bits(&state
->groups
->aces
[i
].perms
, mask
);
695 mask
= state
->groups
->aces
[i
].perms
.deny
;
696 deny_bits(&state
->owner
, mask
);
697 deny_bits(&state
->group
, mask
);
698 deny_bits(&state
->everyone
, mask
);
699 deny_bits_array(state
->users
, mask
);
700 deny_bits_array(state
->groups
, mask
);
704 if (ace
->type
== NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
) {
705 allow_bits(&state
->owner
, mask
);
706 allow_bits(&state
->group
, mask
);
707 allow_bits(&state
->other
, mask
);
708 allow_bits(&state
->everyone
, mask
);
709 allow_bits_array(state
->users
, mask
);
710 allow_bits_array(state
->groups
, mask
);
712 deny_bits(&state
->owner
, mask
);
713 deny_bits(&state
->group
, mask
);
714 deny_bits(&state
->other
, mask
);
715 deny_bits(&state
->everyone
, mask
);
716 deny_bits_array(state
->users
, mask
);
717 deny_bits_array(state
->groups
, mask
);
722 int nfs4_acl_nfsv4_to_posix(struct nfs4_acl
*acl
, struct posix_acl
**pacl
,
723 struct posix_acl
**dpacl
, unsigned int flags
)
725 struct posix_acl_state effective_acl_state
, default_acl_state
;
726 struct nfs4_ace
*ace
;
729 ret
= init_state(&effective_acl_state
, acl
->naces
);
732 ret
= init_state(&default_acl_state
, acl
->naces
);
736 for (ace
= acl
->aces
; ace
< acl
->aces
+ acl
->naces
; ace
++) {
737 if (ace
->type
!= NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
&&
738 ace
->type
!= NFS4_ACE_ACCESS_DENIED_ACE_TYPE
)
740 if (ace
->flag
& ~NFS4_SUPPORTED_FLAGS
)
742 if ((ace
->flag
& NFS4_INHERITANCE_FLAGS
) == 0) {
743 process_one_v4_ace(&effective_acl_state
, ace
);
746 if (!(flags
& NFS4_ACL_DIR
))
749 * Note that when only one of FILE_INHERIT or DIRECTORY_INHERIT
750 * is set, we're effectively turning on the other. That's OK,
751 * according to rfc 3530.
753 process_one_v4_ace(&default_acl_state
, ace
);
755 if (!(ace
->flag
& NFS4_ACE_INHERIT_ONLY_ACE
))
756 process_one_v4_ace(&effective_acl_state
, ace
);
758 *pacl
= posix_state_to_acl(&effective_acl_state
, flags
);
760 ret
= PTR_ERR(*pacl
);
764 *dpacl
= posix_state_to_acl(&default_acl_state
,
765 flags
| NFS4_ACL_TYPE_DEFAULT
);
766 if (IS_ERR(*dpacl
)) {
767 ret
= PTR_ERR(*dpacl
);
769 posix_acl_release(*pacl
);
777 free_state(&default_acl_state
);
779 free_state(&effective_acl_state
);
784 ace2type(struct nfs4_ace
*ace
)
786 switch (ace
->whotype
) {
787 case NFS4_ACL_WHO_NAMED
:
788 return (ace
->flag
& NFS4_ACE_IDENTIFIER_GROUP
?
789 ACL_GROUP
: ACL_USER
);
790 case NFS4_ACL_WHO_OWNER
:
792 case NFS4_ACL_WHO_GROUP
:
793 return ACL_GROUP_OBJ
;
794 case NFS4_ACL_WHO_EVERYONE
:
801 EXPORT_SYMBOL(nfs4_acl_posix_to_nfsv4
);
802 EXPORT_SYMBOL(nfs4_acl_nfsv4_to_posix
);
807 struct nfs4_acl
*acl
;
809 acl
= kmalloc(sizeof(*acl
) + n
*sizeof(struct nfs4_ace
), GFP_KERNEL
);
823 .stringlen
= sizeof("OWNER@") - 1,
824 .type
= NFS4_ACL_WHO_OWNER
,
828 .stringlen
= sizeof("GROUP@") - 1,
829 .type
= NFS4_ACL_WHO_GROUP
,
832 .string
= "EVERYONE@",
833 .stringlen
= sizeof("EVERYONE@") - 1,
834 .type
= NFS4_ACL_WHO_EVERYONE
,
839 nfs4_acl_get_whotype(char *p
, u32 len
)
843 for (i
= 0; i
< ARRAY_SIZE(s2t_map
); i
++) {
844 if (s2t_map
[i
].stringlen
== len
&&
845 0 == memcmp(s2t_map
[i
].string
, p
, len
))
846 return s2t_map
[i
].type
;
848 return NFS4_ACL_WHO_NAMED
;
852 nfs4_acl_write_who(int who
, char *p
)
856 for (i
= 0; i
< ARRAY_SIZE(s2t_map
); i
++) {
857 if (s2t_map
[i
].type
== who
) {
858 memcpy(p
, s2t_map
[i
].string
, s2t_map
[i
].stringlen
);
859 return s2t_map
[i
].stringlen
;
866 EXPORT_SYMBOL(nfs4_acl_new
);
867 EXPORT_SYMBOL(nfs4_acl_get_whotype
);
868 EXPORT_SYMBOL(nfs4_acl_write_who
);