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>
44 #define NFS4_ACL_TYPE_DEFAULT 0x01
45 #define NFS4_ACL_DIR 0x02
46 #define NFS4_ACL_OWNER 0x04
48 /* mode bit translations: */
49 #define NFS4_READ_MODE (NFS4_ACE_READ_DATA)
50 #define NFS4_WRITE_MODE (NFS4_ACE_WRITE_DATA | NFS4_ACE_APPEND_DATA)
51 #define NFS4_EXECUTE_MODE NFS4_ACE_EXECUTE
52 #define NFS4_ANYONE_MODE (NFS4_ACE_READ_ATTRIBUTES | NFS4_ACE_READ_ACL | NFS4_ACE_SYNCHRONIZE)
53 #define NFS4_OWNER_MODE (NFS4_ACE_WRITE_ATTRIBUTES | NFS4_ACE_WRITE_ACL)
55 /* We don't support these bits; insist they be neither allowed nor denied */
56 #define NFS4_MASK_UNSUPP (NFS4_ACE_DELETE | NFS4_ACE_WRITE_OWNER \
57 | NFS4_ACE_READ_NAMED_ATTRS | NFS4_ACE_WRITE_NAMED_ATTRS)
59 /* flags used to simulate posix default ACLs */
60 #define NFS4_INHERITANCE_FLAGS (NFS4_ACE_FILE_INHERIT_ACE \
61 | NFS4_ACE_DIRECTORY_INHERIT_ACE)
63 #define NFS4_SUPPORTED_FLAGS (NFS4_INHERITANCE_FLAGS \
64 | NFS4_ACE_INHERIT_ONLY_ACE \
65 | NFS4_ACE_IDENTIFIER_GROUP)
67 #define MASK_EQUAL(mask1, mask2) \
68 ( ((mask1) & NFS4_ACE_MASK_ALL) == ((mask2) & NFS4_ACE_MASK_ALL) )
71 mask_from_posix(unsigned short perm, unsigned int flags)
73 int mask = NFS4_ANYONE_MODE;
75 if (flags & NFS4_ACL_OWNER)
76 mask |= NFS4_OWNER_MODE;
78 mask |= NFS4_READ_MODE;
80 mask |= NFS4_WRITE_MODE;
81 if ((perm & ACL_WRITE) && (flags & NFS4_ACL_DIR))
82 mask |= NFS4_ACE_DELETE_CHILD;
83 if (perm & ACL_EXECUTE)
84 mask |= NFS4_EXECUTE_MODE;
89 deny_mask_from_posix(unsigned short perm, u32 flags)
94 mask |= NFS4_READ_MODE;
96 mask |= NFS4_WRITE_MODE;
97 if ((perm & ACL_WRITE) && (flags & NFS4_ACL_DIR))
98 mask |= NFS4_ACE_DELETE_CHILD;
99 if (perm & ACL_EXECUTE)
100 mask |= NFS4_EXECUTE_MODE;
104 /* XXX: modify functions to return NFS errors; they're only ever
105 * used by nfs code, after all.... */
107 /* We only map from NFSv4 to POSIX ACLs when setting ACLs, when we err on the
108 * side of being more restrictive, so the mode bit mapping below is
109 * pessimistic. An optimistic version would be needed to handle DENY's,
110 * but we espect to coalesce all ALLOWs and DENYs before mapping to mode
114 low_mode_from_nfs4(u32 perm, unsigned short *mode, unsigned int flags)
116 u32 write_mode = NFS4_WRITE_MODE;
118 if (flags & NFS4_ACL_DIR)
119 write_mode |= NFS4_ACE_DELETE_CHILD;
121 if ((perm & NFS4_READ_MODE) == NFS4_READ_MODE)
123 if ((perm & write_mode) == write_mode)
125 if ((perm & NFS4_EXECUTE_MODE) == NFS4_EXECUTE_MODE)
126 *mode |= ACL_EXECUTE;
129 struct ace_container {
130 struct nfs4_ace *ace;
131 struct list_head ace_l;
134 static short ace2type(struct nfs4_ace *);
135 static void _posix_to_nfsv4_one(struct posix_acl *, struct nfs4_acl *,
139 nfsd4_get_nfs4_acl(struct svc_rqst *rqstp, struct dentry *dentry,
140 struct nfs4_acl **acl)
142 struct inode *inode = dentry->d_inode;
144 struct posix_acl *pacl = NULL, *dpacl = NULL;
145 unsigned int flags = 0;
148 pacl = get_acl(inode, ACL_TYPE_ACCESS);
150 pacl = posix_acl_from_mode(inode->i_mode, GFP_KERNEL);
152 return PTR_ERR(pacl);
154 /* allocate for worst case: one (deny, allow) pair each: */
155 size += 2 * pacl->a_count;
157 if (S_ISDIR(inode->i_mode)) {
158 flags = NFS4_ACL_DIR;
159 dpacl = get_acl(inode, ACL_TYPE_DEFAULT);
161 size += 2 * dpacl->a_count;
164 *acl = nfs4_acl_new(size);
170 _posix_to_nfsv4_one(pacl, *acl, flags & ~NFS4_ACL_TYPE_DEFAULT);
173 _posix_to_nfsv4_one(dpacl, *acl, flags | NFS4_ACL_TYPE_DEFAULT);
176 posix_acl_release(pacl);
177 posix_acl_release(dpacl);
181 struct posix_acl_summary {
182 unsigned short owner;
183 unsigned short users;
184 unsigned short group;
185 unsigned short groups;
186 unsigned short other;
191 summarize_posix_acl(struct posix_acl *acl, struct posix_acl_summary *pas)
193 struct posix_acl_entry *pa, *pe;
196 * Only pas.users and pas.groups need initialization; previous
197 * posix_acl_valid() calls ensure that the other fields will be
198 * initialized in the following loop. But, just to placate gcc:
200 memset(pas, 0, sizeof(*pas));
203 pe = acl->a_entries + acl->a_count;
205 FOREACH_ACL_ENTRY(pa, acl, pe) {
208 pas->owner = pa->e_perm;
211 pas->group = pa->e_perm;
214 pas->users |= pa->e_perm;
217 pas->groups |= pa->e_perm;
220 pas->other = pa->e_perm;
223 pas->mask = pa->e_perm;
227 /* We'll only care about effective permissions: */
228 pas->users &= pas->mask;
229 pas->group &= pas->mask;
230 pas->groups &= pas->mask;
233 /* We assume the acl has been verified with posix_acl_valid. */
235 _posix_to_nfsv4_one(struct posix_acl *pacl, struct nfs4_acl *acl,
238 struct posix_acl_entry *pa, *group_owner_entry;
239 struct nfs4_ace *ace;
240 struct posix_acl_summary pas;
242 int eflag = ((flags & NFS4_ACL_TYPE_DEFAULT) ?
243 NFS4_INHERITANCE_FLAGS | NFS4_ACE_INHERIT_ONLY_ACE : 0);
245 BUG_ON(pacl->a_count < 3);
246 summarize_posix_acl(pacl, &pas);
248 pa = pacl->a_entries;
249 ace = acl->aces + acl->naces;
251 /* We could deny everything not granted by the owner: */
254 * but it is equivalent (and simpler) to deny only what is not
255 * granted by later entries:
257 deny &= pas.users | pas.group | pas.groups | pas.other;
259 ace->type = NFS4_ACE_ACCESS_DENIED_ACE_TYPE;
261 ace->access_mask = deny_mask_from_posix(deny, flags);
262 ace->whotype = NFS4_ACL_WHO_OWNER;
267 ace->type = NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE;
269 ace->access_mask = mask_from_posix(pa->e_perm, flags | NFS4_ACL_OWNER);
270 ace->whotype = NFS4_ACL_WHO_OWNER;
275 while (pa->e_tag == ACL_USER) {
276 deny = ~(pa->e_perm & pas.mask);
277 deny &= pas.groups | pas.group | pas.other;
279 ace->type = NFS4_ACE_ACCESS_DENIED_ACE_TYPE;
281 ace->access_mask = deny_mask_from_posix(deny, flags);
282 ace->whotype = NFS4_ACL_WHO_NAMED;
283 ace->who_uid = pa->e_uid;
287 ace->type = NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE;
289 ace->access_mask = mask_from_posix(pa->e_perm & pas.mask,
291 ace->whotype = NFS4_ACL_WHO_NAMED;
292 ace->who_uid = pa->e_uid;
298 /* In the case of groups, we apply allow ACEs first, then deny ACEs,
299 * since a user can be in more than one group. */
303 group_owner_entry = pa;
305 ace->type = NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE;
307 ace->access_mask = mask_from_posix(pas.group, flags);
308 ace->whotype = NFS4_ACL_WHO_GROUP;
313 while (pa->e_tag == ACL_GROUP) {
314 ace->type = NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE;
315 ace->flag = eflag | NFS4_ACE_IDENTIFIER_GROUP;
316 ace->access_mask = mask_from_posix(pa->e_perm & pas.mask,
318 ace->whotype = NFS4_ACL_WHO_NAMED;
319 ace->who_gid = pa->e_gid;
327 pa = group_owner_entry;
329 deny = ~pas.group & pas.other;
331 ace->type = NFS4_ACE_ACCESS_DENIED_ACE_TYPE;
333 ace->access_mask = deny_mask_from_posix(deny, flags);
334 ace->whotype = NFS4_ACL_WHO_GROUP;
340 while (pa->e_tag == ACL_GROUP) {
341 deny = ~(pa->e_perm & pas.mask);
344 ace->type = NFS4_ACE_ACCESS_DENIED_ACE_TYPE;
345 ace->flag = eflag | NFS4_ACE_IDENTIFIER_GROUP;
346 ace->access_mask = deny_mask_from_posix(deny, flags);
347 ace->whotype = NFS4_ACL_WHO_NAMED;
348 ace->who_gid = pa->e_gid;
355 if (pa->e_tag == ACL_MASK)
357 ace->type = NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE;
359 ace->access_mask = mask_from_posix(pa->e_perm, flags);
360 ace->whotype = NFS4_ACL_WHO_EVERYONE;
365 pace_gt(struct posix_acl_entry *pace1, struct posix_acl_entry *pace2)
367 if (pace1->e_tag != pace2->e_tag)
368 return pace1->e_tag > pace2->e_tag;
369 if (pace1->e_tag == ACL_USER)
370 return uid_gt(pace1->e_uid, pace2->e_uid);
371 if (pace1->e_tag == ACL_GROUP)
372 return gid_gt(pace1->e_gid, pace2->e_gid);
377 sort_pacl_range(struct posix_acl *pacl, int start, int end) {
379 struct posix_acl_entry tmp;
381 /* We just do a bubble sort; easy to do in place, and we're not
382 * expecting acl's to be long enough to justify anything more. */
385 for (i = start; i < end; i++) {
386 if (pace_gt(&pacl->a_entries[i],
387 &pacl->a_entries[i+1])) {
389 tmp = pacl->a_entries[i];
390 pacl->a_entries[i] = pacl->a_entries[i+1];
391 pacl->a_entries[i+1] = tmp;
398 sort_pacl(struct posix_acl *pacl)
400 /* posix_acl_valid requires that users and groups be in order
404 /* no users or groups */
405 if (!pacl || pacl->a_count <= 4)
409 while (pacl->a_entries[i].e_tag == ACL_USER)
411 sort_pacl_range(pacl, 1, i-1);
413 BUG_ON(pacl->a_entries[i].e_tag != ACL_GROUP_OBJ);
415 while (pacl->a_entries[j].e_tag == ACL_GROUP)
417 sort_pacl_range(pacl, i, j-1);
422 * While processing the NFSv4 ACE, this maintains bitmasks representing
423 * which permission bits have been allowed and which denied to a given
425 struct posix_ace_state {
430 struct posix_user_ace_state {
435 struct posix_ace_state perms;
438 struct posix_ace_state_array {
440 struct posix_user_ace_state aces[];
444 * While processing the NFSv4 ACE, this maintains the partial permissions
445 * calculated so far: */
447 struct posix_acl_state {
449 struct posix_ace_state owner;
450 struct posix_ace_state group;
451 struct posix_ace_state other;
452 struct posix_ace_state everyone;
453 struct posix_ace_state mask; /* Deny unused in this case */
454 struct posix_ace_state_array *users;
455 struct posix_ace_state_array *groups;
459 init_state(struct posix_acl_state *state, int cnt)
463 memset(state, 0, sizeof(struct posix_acl_state));
466 * In the worst case, each individual acl could be for a distinct
467 * named user or group, but we don't no which, so we allocate
468 * enough space for either:
470 alloc = sizeof(struct posix_ace_state_array)
471 + cnt*sizeof(struct posix_user_ace_state);
472 state->users = kzalloc(alloc, GFP_KERNEL);
475 state->groups = kzalloc(alloc, GFP_KERNEL);
476 if (!state->groups) {
484 free_state(struct posix_acl_state *state) {
486 kfree(state->groups);
489 static inline void add_to_mask(struct posix_acl_state *state, struct posix_ace_state *astate)
491 state->mask.allow |= astate->allow;
495 * Certain bits (SYNCHRONIZE, DELETE, WRITE_OWNER, READ/WRITE_NAMED_ATTRS,
496 * READ_ATTRIBUTES, READ_ACL) are currently unenforceable and don't translate
497 * to traditional read/write/execute permissions.
499 * It's problematic to reject acls that use certain mode bits, because it
500 * places the burden on users to learn the rules about which bits one
501 * particular server sets, without giving the user a lot of help--we return an
502 * error that could mean any number of different things. To make matters
503 * worse, the problematic bits might be introduced by some application that's
504 * automatically mapping from some other acl model.
506 * So wherever possible we accept anything, possibly erring on the side of
507 * denying more permissions than necessary.
509 * However we do reject *explicit* DENY's of a few bits representing
510 * permissions we could never deny:
513 static inline int check_deny(u32 mask, int isowner)
515 if (mask & (NFS4_ACE_READ_ATTRIBUTES | NFS4_ACE_READ_ACL))
519 if (mask & (NFS4_ACE_WRITE_ATTRIBUTES | NFS4_ACE_WRITE_ACL))
524 static struct posix_acl *
525 posix_state_to_acl(struct posix_acl_state *state, unsigned int flags)
527 struct posix_acl_entry *pace;
528 struct posix_acl *pacl;
533 * ACLs with no ACEs are treated differently in the inheritable
534 * and effective cases: when there are no inheritable ACEs,
535 * calls ->set_acl with a NULL ACL structure.
537 if (state->empty && (flags & NFS4_ACL_TYPE_DEFAULT))
541 * When there are no effective ACEs, the following will end
542 * up setting a 3-element effective posix ACL with all
545 if (!state->users->n && !state->groups->n)
547 else /* Note we also include a MASK ACE in this case: */
548 nace = 4 + state->users->n + state->groups->n;
549 pacl = posix_acl_alloc(nace, GFP_KERNEL);
551 return ERR_PTR(-ENOMEM);
553 pace = pacl->a_entries;
554 pace->e_tag = ACL_USER_OBJ;
555 error = check_deny(state->owner.deny, 1);
558 low_mode_from_nfs4(state->owner.allow, &pace->e_perm, flags);
560 for (i=0; i < state->users->n; i++) {
562 pace->e_tag = ACL_USER;
563 error = check_deny(state->users->aces[i].perms.deny, 0);
566 low_mode_from_nfs4(state->users->aces[i].perms.allow,
567 &pace->e_perm, flags);
568 pace->e_uid = state->users->aces[i].uid;
569 add_to_mask(state, &state->users->aces[i].perms);
573 pace->e_tag = ACL_GROUP_OBJ;
574 error = check_deny(state->group.deny, 0);
577 low_mode_from_nfs4(state->group.allow, &pace->e_perm, flags);
578 add_to_mask(state, &state->group);
580 for (i=0; i < state->groups->n; i++) {
582 pace->e_tag = ACL_GROUP;
583 error = check_deny(state->groups->aces[i].perms.deny, 0);
586 low_mode_from_nfs4(state->groups->aces[i].perms.allow,
587 &pace->e_perm, flags);
588 pace->e_gid = state->groups->aces[i].gid;
589 add_to_mask(state, &state->groups->aces[i].perms);
592 if (state->users->n || state->groups->n) {
594 pace->e_tag = ACL_MASK;
595 low_mode_from_nfs4(state->mask.allow, &pace->e_perm, flags);
599 pace->e_tag = ACL_OTHER;
600 error = check_deny(state->other.deny, 0);
603 low_mode_from_nfs4(state->other.allow, &pace->e_perm, flags);
607 posix_acl_release(pacl);
608 return ERR_PTR(error);
611 static inline void allow_bits(struct posix_ace_state *astate, u32 mask)
613 /* Allow all bits in the mask not already denied: */
614 astate->allow |= mask & ~astate->deny;
617 static inline void deny_bits(struct posix_ace_state *astate, u32 mask)
619 /* Deny all bits in the mask not already allowed: */
620 astate->deny |= mask & ~astate->allow;
623 static int find_uid(struct posix_acl_state *state, kuid_t uid)
625 struct posix_ace_state_array *a = state->users;
628 for (i = 0; i < a->n; i++)
629 if (uid_eq(a->aces[i].uid, uid))
633 a->aces[i].uid = uid;
634 a->aces[i].perms.allow = state->everyone.allow;
635 a->aces[i].perms.deny = state->everyone.deny;
640 static int find_gid(struct posix_acl_state *state, kgid_t gid)
642 struct posix_ace_state_array *a = state->groups;
645 for (i = 0; i < a->n; i++)
646 if (gid_eq(a->aces[i].gid, gid))
650 a->aces[i].gid = gid;
651 a->aces[i].perms.allow = state->everyone.allow;
652 a->aces[i].perms.deny = state->everyone.deny;
657 static void deny_bits_array(struct posix_ace_state_array *a, u32 mask)
661 for (i=0; i < a->n; i++)
662 deny_bits(&a->aces[i].perms, mask);
665 static void allow_bits_array(struct posix_ace_state_array *a, u32 mask)
669 for (i=0; i < a->n; i++)
670 allow_bits(&a->aces[i].perms, mask);
673 static void process_one_v4_ace(struct posix_acl_state *state,
674 struct nfs4_ace *ace)
676 u32 mask = ace->access_mask;
681 switch (ace2type(ace)) {
683 if (ace->type == NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE) {
684 allow_bits(&state->owner, mask);
686 deny_bits(&state->owner, mask);
690 i = find_uid(state, ace->who_uid);
691 if (ace->type == NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE) {
692 allow_bits(&state->users->aces[i].perms, mask);
694 deny_bits(&state->users->aces[i].perms, mask);
695 mask = state->users->aces[i].perms.deny;
696 deny_bits(&state->owner, mask);
700 if (ace->type == NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE) {
701 allow_bits(&state->group, mask);
703 deny_bits(&state->group, mask);
704 mask = state->group.deny;
705 deny_bits(&state->owner, mask);
706 deny_bits(&state->everyone, mask);
707 deny_bits_array(state->users, mask);
708 deny_bits_array(state->groups, mask);
712 i = find_gid(state, ace->who_gid);
713 if (ace->type == NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE) {
714 allow_bits(&state->groups->aces[i].perms, mask);
716 deny_bits(&state->groups->aces[i].perms, mask);
717 mask = state->groups->aces[i].perms.deny;
718 deny_bits(&state->owner, mask);
719 deny_bits(&state->group, mask);
720 deny_bits(&state->everyone, mask);
721 deny_bits_array(state->users, mask);
722 deny_bits_array(state->groups, mask);
726 if (ace->type == NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE) {
727 allow_bits(&state->owner, mask);
728 allow_bits(&state->group, mask);
729 allow_bits(&state->other, mask);
730 allow_bits(&state->everyone, mask);
731 allow_bits_array(state->users, mask);
732 allow_bits_array(state->groups, mask);
734 deny_bits(&state->owner, mask);
735 deny_bits(&state->group, mask);
736 deny_bits(&state->other, mask);
737 deny_bits(&state->everyone, mask);
738 deny_bits_array(state->users, mask);
739 deny_bits_array(state->groups, mask);
744 static int nfs4_acl_nfsv4_to_posix(struct nfs4_acl *acl,
745 struct posix_acl **pacl, struct posix_acl **dpacl,
748 struct posix_acl_state effective_acl_state, default_acl_state;
749 struct nfs4_ace *ace;
752 ret = init_state(&effective_acl_state, acl->naces);
755 ret = init_state(&default_acl_state, acl->naces);
759 for (ace = acl->aces; ace < acl->aces + acl->naces; ace++) {
760 if (ace->type != NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE &&
761 ace->type != NFS4_ACE_ACCESS_DENIED_ACE_TYPE)
763 if (ace->flag & ~NFS4_SUPPORTED_FLAGS)
765 if ((ace->flag & NFS4_INHERITANCE_FLAGS) == 0) {
766 process_one_v4_ace(&effective_acl_state, ace);
769 if (!(flags & NFS4_ACL_DIR))
772 * Note that when only one of FILE_INHERIT or DIRECTORY_INHERIT
773 * is set, we're effectively turning on the other. That's OK,
774 * according to rfc 3530.
776 process_one_v4_ace(&default_acl_state, ace);
778 if (!(ace->flag & NFS4_ACE_INHERIT_ONLY_ACE))
779 process_one_v4_ace(&effective_acl_state, ace);
781 *pacl = posix_state_to_acl(&effective_acl_state, flags);
783 ret = PTR_ERR(*pacl);
787 *dpacl = posix_state_to_acl(&default_acl_state,
788 flags | NFS4_ACL_TYPE_DEFAULT);
789 if (IS_ERR(*dpacl)) {
790 ret = PTR_ERR(*dpacl);
792 posix_acl_release(*pacl);
800 free_state(&default_acl_state);
802 free_state(&effective_acl_state);
807 nfsd4_set_nfs4_acl(struct svc_rqst *rqstp, struct svc_fh *fhp,
808 struct nfs4_acl *acl)
812 struct dentry *dentry;
814 struct posix_acl *pacl = NULL, *dpacl = NULL;
815 unsigned int flags = 0;
818 error = fh_verify(rqstp, fhp, 0, NFSD_MAY_SATTR);
822 dentry = fhp->fh_dentry;
823 inode = dentry->d_inode;
825 if (!inode->i_op->set_acl || !IS_POSIXACL(inode))
826 return nfserr_attrnotsupp;
828 if (S_ISDIR(inode->i_mode))
829 flags = NFS4_ACL_DIR;
831 host_error = nfs4_acl_nfsv4_to_posix(acl, &pacl, &dpacl, flags);
832 if (host_error == -EINVAL)
833 return nfserr_attrnotsupp;
837 host_error = inode->i_op->set_acl(inode, pacl, ACL_TYPE_ACCESS);
841 if (S_ISDIR(inode->i_mode)) {
842 host_error = inode->i_op->set_acl(inode, dpacl,
847 posix_acl_release(pacl);
848 posix_acl_release(dpacl);
850 if (host_error == -EOPNOTSUPP)
851 return nfserr_attrnotsupp;
853 return nfserrno(host_error);
858 ace2type(struct nfs4_ace *ace)
860 switch (ace->whotype) {
861 case NFS4_ACL_WHO_NAMED:
862 return (ace->flag & NFS4_ACE_IDENTIFIER_GROUP ?
863 ACL_GROUP : ACL_USER);
864 case NFS4_ACL_WHO_OWNER:
866 case NFS4_ACL_WHO_GROUP:
867 return ACL_GROUP_OBJ;
868 case NFS4_ACL_WHO_EVERYONE:
878 struct nfs4_acl *acl;
880 acl = kmalloc(sizeof(*acl) + n*sizeof(struct nfs4_ace), GFP_KERNEL);
894 .stringlen = sizeof("OWNER@") - 1,
895 .type = NFS4_ACL_WHO_OWNER,
899 .stringlen = sizeof("GROUP@") - 1,
900 .type = NFS4_ACL_WHO_GROUP,
903 .string = "EVERYONE@",
904 .stringlen = sizeof("EVERYONE@") - 1,
905 .type = NFS4_ACL_WHO_EVERYONE,
910 nfs4_acl_get_whotype(char *p, u32 len)
914 for (i = 0; i < ARRAY_SIZE(s2t_map); i++) {
915 if (s2t_map[i].stringlen == len &&
916 0 == memcmp(s2t_map[i].string, p, len))
917 return s2t_map[i].type;
919 return NFS4_ACL_WHO_NAMED;
922 __be32 nfs4_acl_write_who(struct xdr_stream *xdr, int who)
927 for (i = 0; i < ARRAY_SIZE(s2t_map); i++) {
928 if (s2t_map[i].type != who)
930 p = xdr_reserve_space(xdr, s2t_map[i].stringlen + 4);
932 return nfserr_resource;
933 p = xdr_encode_opaque(p, s2t_map[i].string,
934 s2t_map[i].stringlen);