ACPI / debugger: Fix regression introduced by IS_ERR_VALUE() removal
[linux-2.6-block.git] / fs / nfsd / nfs4acl.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * Common NFSv4 ACL handling code.
3 *
4 * Copyright (c) 2002, 2003 The Regents of the University of Michigan.
5 * All rights reserved.
6 *
7 * Marius Aamodt Eriksen <marius@umich.edu>
8 * Jeff Sedlak <jsedlak@umich.edu>
9 * J. Bruce Fields <bfields@umich.edu>
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 *
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.
23 *
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.
35 */
36
faf996a6 37#include <linux/fs.h>
5a0e3ad6 38#include <linux/slab.h>
faf996a6
KM
39#include <linux/posix_acl.h>
40
4ac7249e 41#include "nfsfh.h"
3554116d 42#include "nfsd.h"
2ca72e17 43#include "acl.h"
4ac7249e 44#include "vfs.h"
1da177e4 45
4ac7249e
CH
46#define NFS4_ACL_TYPE_DEFAULT 0x01
47#define NFS4_ACL_DIR 0x02
48#define NFS4_ACL_OWNER 0x04
1da177e4
LT
49
50/* mode bit translations: */
51#define NFS4_READ_MODE (NFS4_ACE_READ_DATA)
52#define NFS4_WRITE_MODE (NFS4_ACE_WRITE_DATA | NFS4_ACE_APPEND_DATA)
53#define NFS4_EXECUTE_MODE NFS4_ACE_EXECUTE
54#define NFS4_ANYONE_MODE (NFS4_ACE_READ_ATTRIBUTES | NFS4_ACE_READ_ACL | NFS4_ACE_SYNCHRONIZE)
55#define NFS4_OWNER_MODE (NFS4_ACE_WRITE_ATTRIBUTES | NFS4_ACE_WRITE_ACL)
56
1da177e4
LT
57/* flags used to simulate posix default ACLs */
58#define NFS4_INHERITANCE_FLAGS (NFS4_ACE_FILE_INHERIT_ACE \
7bdfa68c 59 | NFS4_ACE_DIRECTORY_INHERIT_ACE)
1da177e4 60
7bdfa68c
BF
61#define NFS4_SUPPORTED_FLAGS (NFS4_INHERITANCE_FLAGS \
62 | NFS4_ACE_INHERIT_ONLY_ACE \
63 | NFS4_ACE_IDENTIFIER_GROUP)
b548edc2 64
1da177e4
LT
65static u32
66mask_from_posix(unsigned short perm, unsigned int flags)
67{
68 int mask = NFS4_ANYONE_MODE;
69
70 if (flags & NFS4_ACL_OWNER)
71 mask |= NFS4_OWNER_MODE;
72 if (perm & ACL_READ)
73 mask |= NFS4_READ_MODE;
74 if (perm & ACL_WRITE)
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;
80 return mask;
81}
82
83static u32
bec50c47 84deny_mask_from_posix(unsigned short perm, u32 flags)
1da177e4 85{
bec50c47
BF
86 u32 mask = 0;
87
88 if (perm & ACL_READ)
89 mask |= NFS4_READ_MODE;
90 if (perm & ACL_WRITE)
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;
96 return mask;
1da177e4
LT
97}
98
99/* XXX: modify functions to return NFS errors; they're only ever
100 * used by nfs code, after all.... */
101
09229edb
BF
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,
e5386747 105 * but we expect to coalesce all ALLOWs and DENYs before mapping to mode
09229edb
BF
106 * bits. */
107
108static void
109low_mode_from_nfs4(u32 perm, unsigned short *mode, unsigned int flags)
1da177e4 110{
09229edb 111 u32 write_mode = NFS4_WRITE_MODE;
1da177e4 112
09229edb
BF
113 if (flags & NFS4_ACL_DIR)
114 write_mode |= NFS4_ACE_DELETE_CHILD;
1da177e4
LT
115 *mode = 0;
116 if ((perm & NFS4_READ_MODE) == NFS4_READ_MODE)
117 *mode |= ACL_READ;
09229edb 118 if ((perm & write_mode) == write_mode)
1da177e4
LT
119 *mode |= ACL_WRITE;
120 if ((perm & NFS4_EXECUTE_MODE) == NFS4_EXECUTE_MODE)
121 *mode |= ACL_EXECUTE;
1da177e4
LT
122}
123
1da177e4 124static short ace2type(struct nfs4_ace *);
28e05dd8
BF
125static void _posix_to_nfsv4_one(struct posix_acl *, struct nfs4_acl *,
126 unsigned int);
1da177e4 127
4ac7249e
CH
128int
129nfsd4_get_nfs4_acl(struct svc_rqst *rqstp, struct dentry *dentry,
130 struct nfs4_acl **acl)
1da177e4 131{
2b0143b5 132 struct inode *inode = d_inode(dentry);
4ac7249e
CH
133 int error = 0;
134 struct posix_acl *pacl = NULL, *dpacl = NULL;
135 unsigned int flags = 0;
28e05dd8 136 int size = 0;
1da177e4 137
4ac7249e 138 pacl = get_acl(inode, ACL_TYPE_ACCESS);
35e634b8 139 if (!pacl)
4ac7249e 140 pacl = posix_acl_from_mode(inode->i_mode, GFP_KERNEL);
35e634b8
KM
141
142 if (IS_ERR(pacl))
143 return PTR_ERR(pacl);
144
09bdc2d7
BF
145 /* allocate for worst case: one (deny, allow) pair each: */
146 size += 2 * pacl->a_count;
4ac7249e
CH
147
148 if (S_ISDIR(inode->i_mode)) {
149 flags = NFS4_ACL_DIR;
150 dpacl = get_acl(inode, ACL_TYPE_DEFAULT);
35e634b8
KM
151 if (IS_ERR(dpacl)) {
152 error = PTR_ERR(dpacl);
153 goto rel_pacl;
154 }
155
4ac7249e
CH
156 if (dpacl)
157 size += 2 * dpacl->a_count;
1da177e4
LT
158 }
159
bcaab953 160 *acl = kmalloc(nfs4_acl_bytes(size), GFP_KERNEL);
4ac7249e
CH
161 if (*acl == NULL) {
162 error = -ENOMEM;
163 goto out;
164 }
bcaab953 165 (*acl)->naces = 0;
1da177e4 166
09bdc2d7 167 _posix_to_nfsv4_one(pacl, *acl, flags & ~NFS4_ACL_TYPE_DEFAULT);
1da177e4 168
28e05dd8 169 if (dpacl)
4ac7249e 170 _posix_to_nfsv4_one(dpacl, *acl, flags | NFS4_ACL_TYPE_DEFAULT);
1da177e4 171
35e634b8 172out:
4ac7249e 173 posix_acl_release(dpacl);
35e634b8
KM
174rel_pacl:
175 posix_acl_release(pacl);
4ac7249e 176 return error;
1da177e4
LT
177}
178
bec50c47
BF
179struct posix_acl_summary {
180 unsigned short owner;
181 unsigned short users;
182 unsigned short group;
183 unsigned short groups;
184 unsigned short other;
185 unsigned short mask;
186};
187
28e05dd8 188static void
bec50c47 189summarize_posix_acl(struct posix_acl *acl, struct posix_acl_summary *pas)
1da177e4 190{
bec50c47 191 struct posix_acl_entry *pa, *pe;
f7fede4b
BF
192
193 /*
194 * Only pas.users and pas.groups need initialization; previous
195 * posix_acl_valid() calls ensure that the other fields will be
196 * initialized in the following loop. But, just to placate gcc:
197 */
198 memset(pas, 0, sizeof(*pas));
bec50c47
BF
199 pas->mask = 07;
200
201 pe = acl->a_entries + acl->a_count;
202
203 FOREACH_ACL_ENTRY(pa, acl, pe) {
204 switch (pa->e_tag) {
205 case ACL_USER_OBJ:
206 pas->owner = pa->e_perm;
207 break;
208 case ACL_GROUP_OBJ:
209 pas->group = pa->e_perm;
210 break;
211 case ACL_USER:
212 pas->users |= pa->e_perm;
213 break;
214 case ACL_GROUP:
215 pas->groups |= pa->e_perm;
216 break;
217 case ACL_OTHER:
218 pas->other = pa->e_perm;
219 break;
220 case ACL_MASK:
221 pas->mask = pa->e_perm;
222 break;
223 }
224 }
225 /* We'll only care about effective permissions: */
226 pas->users &= pas->mask;
227 pas->group &= pas->mask;
228 pas->groups &= pas->mask;
1da177e4
LT
229}
230
231/* We assume the acl has been verified with posix_acl_valid. */
28e05dd8 232static void
1da177e4
LT
233_posix_to_nfsv4_one(struct posix_acl *pacl, struct nfs4_acl *acl,
234 unsigned int flags)
235{
bec50c47
BF
236 struct posix_acl_entry *pa, *group_owner_entry;
237 struct nfs4_ace *ace;
238 struct posix_acl_summary pas;
239 unsigned short deny;
1da177e4 240 int eflag = ((flags & NFS4_ACL_TYPE_DEFAULT) ?
54c04409 241 NFS4_INHERITANCE_FLAGS | NFS4_ACE_INHERIT_ONLY_ACE : 0);
1da177e4
LT
242
243 BUG_ON(pacl->a_count < 3);
bec50c47 244 summarize_posix_acl(pacl, &pas);
1da177e4
LT
245
246 pa = pacl->a_entries;
bec50c47
BF
247 ace = acl->aces + acl->naces;
248
249 /* We could deny everything not granted by the owner: */
250 deny = ~pas.owner;
251 /*
252 * but it is equivalent (and simpler) to deny only what is not
253 * granted by later entries:
254 */
255 deny &= pas.users | pas.group | pas.groups | pas.other;
256 if (deny) {
257 ace->type = NFS4_ACE_ACCESS_DENIED_ACE_TYPE;
258 ace->flag = eflag;
259 ace->access_mask = deny_mask_from_posix(deny, flags);
260 ace->whotype = NFS4_ACL_WHO_OWNER;
261 ace++;
262 acl->naces++;
263 }
264
265 ace->type = NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE;
266 ace->flag = eflag;
267 ace->access_mask = mask_from_posix(pa->e_perm, flags | NFS4_ACL_OWNER);
268 ace->whotype = NFS4_ACL_WHO_OWNER;
269 ace++;
270 acl->naces++;
1da177e4
LT
271 pa++;
272
273 while (pa->e_tag == ACL_USER) {
bec50c47
BF
274 deny = ~(pa->e_perm & pas.mask);
275 deny &= pas.groups | pas.group | pas.other;
276 if (deny) {
277 ace->type = NFS4_ACE_ACCESS_DENIED_ACE_TYPE;
278 ace->flag = eflag;
279 ace->access_mask = deny_mask_from_posix(deny, flags);
280 ace->whotype = NFS4_ACL_WHO_NAMED;
ab8e4aee 281 ace->who_uid = pa->e_uid;
bec50c47
BF
282 ace++;
283 acl->naces++;
284 }
285 ace->type = NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE;
286 ace->flag = eflag;
287 ace->access_mask = mask_from_posix(pa->e_perm & pas.mask,
288 flags);
289 ace->whotype = NFS4_ACL_WHO_NAMED;
ab8e4aee 290 ace->who_uid = pa->e_uid;
bec50c47
BF
291 ace++;
292 acl->naces++;
1da177e4
LT
293 pa++;
294 }
295
296 /* In the case of groups, we apply allow ACEs first, then deny ACEs,
297 * since a user can be in more than one group. */
298
299 /* allow ACEs */
300
1da177e4 301 group_owner_entry = pa;
bec50c47
BF
302
303 ace->type = NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE;
304 ace->flag = eflag;
305 ace->access_mask = mask_from_posix(pas.group, flags);
306 ace->whotype = NFS4_ACL_WHO_GROUP;
307 ace++;
308 acl->naces++;
1da177e4
LT
309 pa++;
310
311 while (pa->e_tag == ACL_GROUP) {
bec50c47
BF
312 ace->type = NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE;
313 ace->flag = eflag | NFS4_ACE_IDENTIFIER_GROUP;
314 ace->access_mask = mask_from_posix(pa->e_perm & pas.mask,
315 flags);
316 ace->whotype = NFS4_ACL_WHO_NAMED;
ab8e4aee 317 ace->who_gid = pa->e_gid;
bec50c47
BF
318 ace++;
319 acl->naces++;
1da177e4
LT
320 pa++;
321 }
322
323 /* deny ACEs */
324
325 pa = group_owner_entry;
bec50c47
BF
326
327 deny = ~pas.group & pas.other;
328 if (deny) {
329 ace->type = NFS4_ACE_ACCESS_DENIED_ACE_TYPE;
d8d0b85b 330 ace->flag = eflag;
bec50c47
BF
331 ace->access_mask = deny_mask_from_posix(deny, flags);
332 ace->whotype = NFS4_ACL_WHO_GROUP;
333 ace++;
334 acl->naces++;
335 }
1da177e4 336 pa++;
bec50c47 337
1da177e4 338 while (pa->e_tag == ACL_GROUP) {
bec50c47
BF
339 deny = ~(pa->e_perm & pas.mask);
340 deny &= pas.other;
341 if (deny) {
342 ace->type = NFS4_ACE_ACCESS_DENIED_ACE_TYPE;
343 ace->flag = eflag | NFS4_ACE_IDENTIFIER_GROUP;
55bb55dc 344 ace->access_mask = deny_mask_from_posix(deny, flags);
bec50c47 345 ace->whotype = NFS4_ACL_WHO_NAMED;
ab8e4aee 346 ace->who_gid = pa->e_gid;
bec50c47
BF
347 ace++;
348 acl->naces++;
349 }
1da177e4
LT
350 pa++;
351 }
352
353 if (pa->e_tag == ACL_MASK)
354 pa++;
bec50c47
BF
355 ace->type = NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE;
356 ace->flag = eflag;
357 ace->access_mask = mask_from_posix(pa->e_perm, flags);
358 ace->whotype = NFS4_ACL_WHO_EVERYONE;
359 acl->naces++;
1da177e4
LT
360}
361
ab8e4aee
EB
362static bool
363pace_gt(struct posix_acl_entry *pace1, struct posix_acl_entry *pace2)
364{
365 if (pace1->e_tag != pace2->e_tag)
366 return pace1->e_tag > pace2->e_tag;
367 if (pace1->e_tag == ACL_USER)
368 return uid_gt(pace1->e_uid, pace2->e_uid);
369 if (pace1->e_tag == ACL_GROUP)
370 return gid_gt(pace1->e_gid, pace2->e_gid);
371 return false;
372}
373
1da177e4
LT
374static void
375sort_pacl_range(struct posix_acl *pacl, int start, int end) {
376 int sorted = 0, i;
1da177e4
LT
377
378 /* We just do a bubble sort; easy to do in place, and we're not
379 * expecting acl's to be long enough to justify anything more. */
380 while (!sorted) {
381 sorted = 1;
382 for (i = start; i < end; i++) {
ab8e4aee
EB
383 if (pace_gt(&pacl->a_entries[i],
384 &pacl->a_entries[i+1])) {
1da177e4 385 sorted = 0;
97b1f9aa
FF
386 swap(pacl->a_entries[i],
387 pacl->a_entries[i + 1]);
1da177e4
LT
388 }
389 }
390 }
391}
392
393static void
394sort_pacl(struct posix_acl *pacl)
395{
396 /* posix_acl_valid requires that users and groups be in order
397 * by uid/gid. */
398 int i, j;
399
aa07c713
KM
400 /* no users or groups */
401 if (!pacl || pacl->a_count <= 4)
402 return;
403
1da177e4
LT
404 i = 1;
405 while (pacl->a_entries[i].e_tag == ACL_USER)
406 i++;
407 sort_pacl_range(pacl, 1, i-1);
408
409 BUG_ON(pacl->a_entries[i].e_tag != ACL_GROUP_OBJ);
aba24d71 410 j = ++i;
1da177e4
LT
411 while (pacl->a_entries[j].e_tag == ACL_GROUP)
412 j++;
413 sort_pacl_range(pacl, i, j-1);
414 return;
415}
416
09229edb
BF
417/*
418 * While processing the NFSv4 ACE, this maintains bitmasks representing
419 * which permission bits have been allowed and which denied to a given
420 * entity: */
421struct posix_ace_state {
422 u32 allow;
423 u32 deny;
424};
425
426struct posix_user_ace_state {
ab8e4aee
EB
427 union {
428 kuid_t uid;
429 kgid_t gid;
430 };
09229edb
BF
431 struct posix_ace_state perms;
432};
433
434struct posix_ace_state_array {
435 int n;
436 struct posix_user_ace_state aces[];
437};
438
439/*
440 * While processing the NFSv4 ACE, this maintains the partial permissions
441 * calculated so far: */
442
443struct posix_acl_state {
3160a711 444 int empty;
09229edb
BF
445 struct posix_ace_state owner;
446 struct posix_ace_state group;
447 struct posix_ace_state other;
448 struct posix_ace_state everyone;
449 struct posix_ace_state mask; /* Deny unused in this case */
450 struct posix_ace_state_array *users;
451 struct posix_ace_state_array *groups;
452};
453
1da177e4 454static int
09229edb 455init_state(struct posix_acl_state *state, int cnt)
1da177e4 456{
09229edb
BF
457 int alloc;
458
459 memset(state, 0, sizeof(struct posix_acl_state));
3160a711 460 state->empty = 1;
09229edb
BF
461 /*
462 * In the worst case, each individual acl could be for a distinct
e5386747 463 * named user or group, but we don't know which, so we allocate
09229edb
BF
464 * enough space for either:
465 */
466 alloc = sizeof(struct posix_ace_state_array)
91b80969 467 + cnt*sizeof(struct posix_user_ace_state);
09229edb
BF
468 state->users = kzalloc(alloc, GFP_KERNEL);
469 if (!state->users)
470 return -ENOMEM;
471 state->groups = kzalloc(alloc, GFP_KERNEL);
472 if (!state->groups) {
473 kfree(state->users);
474 return -ENOMEM;
475 }
476 return 0;
1da177e4
LT
477}
478
09229edb
BF
479static void
480free_state(struct posix_acl_state *state) {
481 kfree(state->users);
482 kfree(state->groups);
1da177e4
LT
483}
484
09229edb 485static inline void add_to_mask(struct posix_acl_state *state, struct posix_ace_state *astate)
1da177e4 486{
09229edb 487 state->mask.allow |= astate->allow;
1da177e4
LT
488}
489
09229edb
BF
490static struct posix_acl *
491posix_state_to_acl(struct posix_acl_state *state, unsigned int flags)
1da177e4 492{
09229edb
BF
493 struct posix_acl_entry *pace;
494 struct posix_acl *pacl;
495 int nace;
b14f4f7e 496 int i;
1da177e4 497
3160a711
BF
498 /*
499 * ACLs with no ACEs are treated differently in the inheritable
aa07c713
KM
500 * and effective cases: when there are no inheritable ACEs,
501 * calls ->set_acl with a NULL ACL structure.
3160a711 502 */
aa07c713
KM
503 if (state->empty && (flags & NFS4_ACL_TYPE_DEFAULT))
504 return NULL;
505
3160a711
BF
506 /*
507 * When there are no effective ACEs, the following will end
508 * up setting a 3-element effective posix ACL with all
509 * permissions zero.
510 */
06f9cc12
BF
511 if (!state->users->n && !state->groups->n)
512 nace = 3;
513 else /* Note we also include a MASK ACE in this case: */
514 nace = 4 + state->users->n + state->groups->n;
09229edb
BF
515 pacl = posix_acl_alloc(nace, GFP_KERNEL);
516 if (!pacl)
517 return ERR_PTR(-ENOMEM);
1da177e4 518
09229edb
BF
519 pace = pacl->a_entries;
520 pace->e_tag = ACL_USER_OBJ;
09229edb 521 low_mode_from_nfs4(state->owner.allow, &pace->e_perm, flags);
09229edb
BF
522
523 for (i=0; i < state->users->n; i++) {
524 pace++;
525 pace->e_tag = ACL_USER;
09229edb
BF
526 low_mode_from_nfs4(state->users->aces[i].perms.allow,
527 &pace->e_perm, flags);
ab8e4aee 528 pace->e_uid = state->users->aces[i].uid;
09229edb 529 add_to_mask(state, &state->users->aces[i].perms);
1da177e4
LT
530 }
531
09229edb
BF
532 pace++;
533 pace->e_tag = ACL_GROUP_OBJ;
09229edb 534 low_mode_from_nfs4(state->group.allow, &pace->e_perm, flags);
09229edb
BF
535 add_to_mask(state, &state->group);
536
537 for (i=0; i < state->groups->n; i++) {
538 pace++;
539 pace->e_tag = ACL_GROUP;
09229edb
BF
540 low_mode_from_nfs4(state->groups->aces[i].perms.allow,
541 &pace->e_perm, flags);
ab8e4aee 542 pace->e_gid = state->groups->aces[i].gid;
09229edb
BF
543 add_to_mask(state, &state->groups->aces[i].perms);
544 }
1da177e4 545
5513a510 546 if (state->users->n || state->groups->n) {
06f9cc12
BF
547 pace++;
548 pace->e_tag = ACL_MASK;
549 low_mode_from_nfs4(state->mask.allow, &pace->e_perm, flags);
550 }
1da177e4 551
09229edb
BF
552 pace++;
553 pace->e_tag = ACL_OTHER;
09229edb 554 low_mode_from_nfs4(state->other.allow, &pace->e_perm, flags);
1da177e4 555
09229edb 556 return pacl;
09229edb 557}
1da177e4 558
09229edb
BF
559static inline void allow_bits(struct posix_ace_state *astate, u32 mask)
560{
561 /* Allow all bits in the mask not already denied: */
562 astate->allow |= mask & ~astate->deny;
563}
1da177e4 564
09229edb
BF
565static inline void deny_bits(struct posix_ace_state *astate, u32 mask)
566{
567 /* Deny all bits in the mask not already allowed: */
568 astate->deny |= mask & ~astate->allow;
569}
1da177e4 570
ab8e4aee 571static int find_uid(struct posix_acl_state *state, kuid_t uid)
09229edb 572{
ab8e4aee 573 struct posix_ace_state_array *a = state->users;
09229edb 574 int i;
1da177e4 575
09229edb 576 for (i = 0; i < a->n; i++)
ab8e4aee 577 if (uid_eq(a->aces[i].uid, uid))
09229edb
BF
578 return i;
579 /* Not found: */
580 a->n++;
581 a->aces[i].uid = uid;
582 a->aces[i].perms.allow = state->everyone.allow;
583 a->aces[i].perms.deny = state->everyone.deny;
1da177e4 584
09229edb 585 return i;
1da177e4
LT
586}
587
ab8e4aee
EB
588static int find_gid(struct posix_acl_state *state, kgid_t gid)
589{
590 struct posix_ace_state_array *a = state->groups;
591 int i;
592
593 for (i = 0; i < a->n; i++)
594 if (gid_eq(a->aces[i].gid, gid))
595 return i;
596 /* Not found: */
597 a->n++;
598 a->aces[i].gid = gid;
599 a->aces[i].perms.allow = state->everyone.allow;
600 a->aces[i].perms.deny = state->everyone.deny;
601
602 return i;
603}
604
09229edb 605static void deny_bits_array(struct posix_ace_state_array *a, u32 mask)
1da177e4 606{
09229edb 607 int i;
1da177e4 608
09229edb
BF
609 for (i=0; i < a->n; i++)
610 deny_bits(&a->aces[i].perms, mask);
1da177e4
LT
611}
612
09229edb 613static void allow_bits_array(struct posix_ace_state_array *a, u32 mask)
1da177e4 614{
09229edb 615 int i;
1da177e4 616
09229edb
BF
617 for (i=0; i < a->n; i++)
618 allow_bits(&a->aces[i].perms, mask);
1da177e4
LT
619}
620
09229edb
BF
621static void process_one_v4_ace(struct posix_acl_state *state,
622 struct nfs4_ace *ace)
1da177e4 623{
09229edb
BF
624 u32 mask = ace->access_mask;
625 int i;
626
3160a711
BF
627 state->empty = 0;
628
09229edb
BF
629 switch (ace2type(ace)) {
630 case ACL_USER_OBJ:
631 if (ace->type == NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE) {
632 allow_bits(&state->owner, mask);
633 } else {
634 deny_bits(&state->owner, mask);
635 }
636 break;
637 case ACL_USER:
ab8e4aee 638 i = find_uid(state, ace->who_uid);
09229edb
BF
639 if (ace->type == NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE) {
640 allow_bits(&state->users->aces[i].perms, mask);
641 } else {
642 deny_bits(&state->users->aces[i].perms, mask);
643 mask = state->users->aces[i].perms.deny;
644 deny_bits(&state->owner, mask);
645 }
646 break;
647 case ACL_GROUP_OBJ:
648 if (ace->type == NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE) {
649 allow_bits(&state->group, mask);
650 } else {
651 deny_bits(&state->group, mask);
652 mask = state->group.deny;
653 deny_bits(&state->owner, mask);
654 deny_bits(&state->everyone, mask);
655 deny_bits_array(state->users, mask);
656 deny_bits_array(state->groups, mask);
657 }
658 break;
659 case ACL_GROUP:
ab8e4aee 660 i = find_gid(state, ace->who_gid);
09229edb
BF
661 if (ace->type == NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE) {
662 allow_bits(&state->groups->aces[i].perms, mask);
663 } else {
664 deny_bits(&state->groups->aces[i].perms, mask);
665 mask = state->groups->aces[i].perms.deny;
666 deny_bits(&state->owner, mask);
667 deny_bits(&state->group, mask);
668 deny_bits(&state->everyone, mask);
669 deny_bits_array(state->users, mask);
670 deny_bits_array(state->groups, mask);
671 }
672 break;
673 case ACL_OTHER:
674 if (ace->type == NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE) {
675 allow_bits(&state->owner, mask);
676 allow_bits(&state->group, mask);
677 allow_bits(&state->other, mask);
678 allow_bits(&state->everyone, mask);
679 allow_bits_array(state->users, mask);
680 allow_bits_array(state->groups, mask);
681 } else {
682 deny_bits(&state->owner, mask);
683 deny_bits(&state->group, mask);
684 deny_bits(&state->other, mask);
685 deny_bits(&state->everyone, mask);
686 deny_bits_array(state->users, mask);
687 deny_bits_array(state->groups, mask);
688 }
1da177e4
LT
689 }
690}
691
4ac7249e
CH
692static int nfs4_acl_nfsv4_to_posix(struct nfs4_acl *acl,
693 struct posix_acl **pacl, struct posix_acl **dpacl,
694 unsigned int flags)
1da177e4 695{
575a6290 696 struct posix_acl_state effective_acl_state, default_acl_state;
09229edb
BF
697 struct nfs4_ace *ace;
698 int ret;
1da177e4 699
575a6290 700 ret = init_state(&effective_acl_state, acl->naces);
09229edb 701 if (ret)
575a6290
BF
702 return ret;
703 ret = init_state(&default_acl_state, acl->naces);
704 if (ret)
705 goto out_estate;
706 ret = -EINVAL;
28e05dd8 707 for (ace = acl->aces; ace < acl->aces + acl->naces; ace++) {
09229edb
BF
708 if (ace->type != NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE &&
709 ace->type != NFS4_ACE_ACCESS_DENIED_ACE_TYPE)
575a6290 710 goto out_dstate;
b548edc2 711 if (ace->flag & ~NFS4_SUPPORTED_FLAGS)
575a6290 712 goto out_dstate;
7bdfa68c 713 if ((ace->flag & NFS4_INHERITANCE_FLAGS) == 0) {
575a6290 714 process_one_v4_ace(&effective_acl_state, ace);
b548edc2 715 continue;
7bdfa68c 716 }
575a6290
BF
717 if (!(flags & NFS4_ACL_DIR))
718 goto out_dstate;
7bdfa68c
BF
719 /*
720 * Note that when only one of FILE_INHERIT or DIRECTORY_INHERIT
721 * is set, we're effectively turning on the other. That's OK,
722 * according to rfc 3530.
723 */
575a6290
BF
724 process_one_v4_ace(&default_acl_state, ace);
725
726 if (!(ace->flag & NFS4_ACE_INHERIT_ONLY_ACE))
727 process_one_v4_ace(&effective_acl_state, ace);
1da177e4 728 }
575a6290
BF
729 *pacl = posix_state_to_acl(&effective_acl_state, flags);
730 if (IS_ERR(*pacl)) {
731 ret = PTR_ERR(*pacl);
4b2ca38a 732 *pacl = NULL;
575a6290
BF
733 goto out_dstate;
734 }
3160a711
BF
735 *dpacl = posix_state_to_acl(&default_acl_state,
736 flags | NFS4_ACL_TYPE_DEFAULT);
575a6290
BF
737 if (IS_ERR(*dpacl)) {
738 ret = PTR_ERR(*dpacl);
4b2ca38a 739 *dpacl = NULL;
575a6290 740 posix_acl_release(*pacl);
4b2ca38a 741 *pacl = NULL;
575a6290
BF
742 goto out_dstate;
743 }
744 sort_pacl(*pacl);
745 sort_pacl(*dpacl);
746 ret = 0;
747out_dstate:
748 free_state(&default_acl_state);
749out_estate:
750 free_state(&effective_acl_state);
751 return ret;
1da177e4
LT
752}
753
4ac7249e
CH
754__be32
755nfsd4_set_nfs4_acl(struct svc_rqst *rqstp, struct svc_fh *fhp,
756 struct nfs4_acl *acl)
757{
758 __be32 error;
759 int host_error;
760 struct dentry *dentry;
761 struct inode *inode;
762 struct posix_acl *pacl = NULL, *dpacl = NULL;
763 unsigned int flags = 0;
764
765 /* Get inode */
766 error = fh_verify(rqstp, fhp, 0, NFSD_MAY_SATTR);
767 if (error)
768 return error;
769
770 dentry = fhp->fh_dentry;
2b0143b5 771 inode = d_inode(dentry);
4ac7249e 772
4ac7249e
CH
773 if (S_ISDIR(inode->i_mode))
774 flags = NFS4_ACL_DIR;
775
776 host_error = nfs4_acl_nfsv4_to_posix(acl, &pacl, &dpacl, flags);
777 if (host_error == -EINVAL)
778 return nfserr_attrnotsupp;
779 if (host_error < 0)
780 goto out_nfserr;
781
99965378
BH
782 fh_lock(fhp);
783
784 host_error = set_posix_acl(inode, ACL_TYPE_ACCESS, pacl);
4ac7249e 785 if (host_error < 0)
99965378 786 goto out_drop_lock;
4ac7249e
CH
787
788 if (S_ISDIR(inode->i_mode)) {
99965378 789 host_error = set_posix_acl(inode, ACL_TYPE_DEFAULT, dpacl);
4ac7249e
CH
790 }
791
99965378
BH
792out_drop_lock:
793 fh_unlock(fhp);
794
4ac7249e
CH
795 posix_acl_release(pacl);
796 posix_acl_release(dpacl);
797out_nfserr:
798 if (host_error == -EOPNOTSUPP)
799 return nfserr_attrnotsupp;
800 else
801 return nfserrno(host_error);
802}
803
804
1da177e4
LT
805static short
806ace2type(struct nfs4_ace *ace)
807{
808 switch (ace->whotype) {
809 case NFS4_ACL_WHO_NAMED:
810 return (ace->flag & NFS4_ACE_IDENTIFIER_GROUP ?
811 ACL_GROUP : ACL_USER);
812 case NFS4_ACL_WHO_OWNER:
813 return ACL_USER_OBJ;
814 case NFS4_ACL_WHO_GROUP:
815 return ACL_GROUP_OBJ;
816 case NFS4_ACL_WHO_EVERYONE:
817 return ACL_OTHER;
818 }
819 BUG();
820 return -1;
821}
822
bcaab953
BF
823/*
824 * return the size of the struct nfs4_acl required to represent an acl
825 * with @entries entries.
826 */
827int nfs4_acl_bytes(int entries)
1da177e4 828{
bcaab953 829 return sizeof(struct nfs4_acl) + entries * sizeof(struct nfs4_ace);
1da177e4
LT
830}
831
1da177e4
LT
832static struct {
833 char *string;
834 int stringlen;
835 int type;
836} s2t_map[] = {
837 {
838 .string = "OWNER@",
839 .stringlen = sizeof("OWNER@") - 1,
840 .type = NFS4_ACL_WHO_OWNER,
841 },
842 {
843 .string = "GROUP@",
844 .stringlen = sizeof("GROUP@") - 1,
845 .type = NFS4_ACL_WHO_GROUP,
846 },
847 {
848 .string = "EVERYONE@",
849 .stringlen = sizeof("EVERYONE@") - 1,
850 .type = NFS4_ACL_WHO_EVERYONE,
851 },
852};
853
854int
855nfs4_acl_get_whotype(char *p, u32 len)
856{
857 int i;
858
e8c96f8c 859 for (i = 0; i < ARRAY_SIZE(s2t_map); i++) {
1da177e4
LT
860 if (s2t_map[i].stringlen == len &&
861 0 == memcmp(s2t_map[i].string, p, len))
862 return s2t_map[i].type;
863 }
864 return NFS4_ACL_WHO_NAMED;
865}
866
ddd1ea56 867__be32 nfs4_acl_write_who(struct xdr_stream *xdr, int who)
1da177e4 868{
ddd1ea56 869 __be32 *p;
1da177e4
LT
870 int i;
871
e8c96f8c 872 for (i = 0; i < ARRAY_SIZE(s2t_map); i++) {
3554116d
BF
873 if (s2t_map[i].type != who)
874 continue;
ddd1ea56
BF
875 p = xdr_reserve_space(xdr, s2t_map[i].stringlen + 4);
876 if (!p)
3554116d 877 return nfserr_resource;
ddd1ea56 878 p = xdr_encode_opaque(p, s2t_map[i].string,
3554116d 879 s2t_map[i].stringlen);
3554116d 880 return 0;
1da177e4 881 }
3554116d 882 WARN_ON_ONCE(1);
f7ce5d28 883 return nfserr_serverfault;
1da177e4 884}