blob: 59fdd9c1d3ee2c74638e449eab212c77afdf2c8a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/nfs4acl/acl.c
3 *
4 * Common NFSv4 ACL handling code.
5 *
6 * Copyright (c) 2002, 2003 The Regents of the University of Michigan.
7 * All rights reserved.
8 *
9 * Marius Aamodt Eriksen <marius@umich.edu>
10 * Jeff Sedlak <jsedlak@umich.edu>
11 * J. Bruce Fields <bfields@umich.edu>
12 *
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
15 * are met:
16 *
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.
25 *
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.
37 */
38
39#include <linux/string.h>
40#include <linux/slab.h>
41#include <linux/list.h>
42#include <linux/types.h>
43#include <linux/fs.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>
49
50
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)
57
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)
61
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)
65
J.Bruce Fieldsb548edc2006-10-04 02:16:12 -070066#define NFS4_SUPPORTED_FLAGS (NFS4_INHERITANCE_FLAGS | NFS4_ACE_IDENTIFIER_GROUP)
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#define MASK_EQUAL(mask1, mask2) \
69 ( ((mask1) & NFS4_ACE_MASK_ALL) == ((mask2) & NFS4_ACE_MASK_ALL) )
70
71static u32
72mask_from_posix(unsigned short perm, unsigned int flags)
73{
74 int mask = NFS4_ANYONE_MODE;
75
76 if (flags & NFS4_ACL_OWNER)
77 mask |= NFS4_OWNER_MODE;
78 if (perm & ACL_READ)
79 mask |= NFS4_READ_MODE;
80 if (perm & ACL_WRITE)
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;
86 return mask;
87}
88
89static u32
90deny_mask(u32 allow_mask, unsigned int flags)
91{
92 u32 ret = ~allow_mask & ~NFS4_MASK_UNSUPP;
93 if (!(flags & NFS4_ACL_DIR))
94 ret &= ~NFS4_ACE_DELETE_CHILD;
95 return ret;
96}
97
98/* XXX: modify functions to return NFS errors; they're only ever
99 * used by nfs code, after all.... */
100
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700101/* 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
105 * bits. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700107static void
108low_mode_from_nfs4(u32 perm, unsigned short *mode, unsigned int flags)
109{
110 u32 write_mode = NFS4_WRITE_MODE;
111
112 if (flags & NFS4_ACL_DIR)
113 write_mode |= NFS4_ACE_DELETE_CHILD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 *mode = 0;
115 if ((perm & NFS4_READ_MODE) == NFS4_READ_MODE)
116 *mode |= ACL_READ;
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700117 if ((perm & write_mode) == write_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 *mode |= ACL_WRITE;
119 if ((perm & NFS4_EXECUTE_MODE) == NFS4_EXECUTE_MODE)
120 *mode |= ACL_EXECUTE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
123struct ace_container {
124 struct nfs4_ace *ace;
125 struct list_head ace_l;
126};
127
128static short ace2type(struct nfs4_ace *);
129static int _posix_to_nfsv4_one(struct posix_acl *, struct nfs4_acl *, unsigned int);
130static struct posix_acl *_nfsv4_to_posix_one(struct nfs4_acl *, unsigned int);
131int nfs4_acl_add_ace(struct nfs4_acl *, u32, u32, u32, int, uid_t);
NeilBrownfd39ca92005-06-23 22:04:03 -0700132static int nfs4_acl_split(struct nfs4_acl *, struct nfs4_acl *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134struct nfs4_acl *
135nfs4_acl_posix_to_nfsv4(struct posix_acl *pacl, struct posix_acl *dpacl,
136 unsigned int flags)
137{
138 struct nfs4_acl *acl;
139 int error = -EINVAL;
140
141 if ((pacl != NULL &&
142 (posix_acl_valid(pacl) < 0 || pacl->a_count == 0)) ||
143 (dpacl != NULL &&
144 (posix_acl_valid(dpacl) < 0 || dpacl->a_count == 0)))
145 goto out_err;
146
147 acl = nfs4_acl_new();
148 if (acl == NULL) {
149 error = -ENOMEM;
150 goto out_err;
151 }
152
153 if (pacl != NULL) {
154 error = _posix_to_nfsv4_one(pacl, acl,
155 flags & ~NFS4_ACL_TYPE_DEFAULT);
156 if (error < 0)
157 goto out_acl;
158 }
159
160 if (dpacl != NULL) {
161 error = _posix_to_nfsv4_one(dpacl, acl,
162 flags | NFS4_ACL_TYPE_DEFAULT);
163 if (error < 0)
164 goto out_acl;
165 }
166
167 return acl;
168
169out_acl:
170 nfs4_acl_free(acl);
171out_err:
172 acl = ERR_PTR(error);
173
174 return acl;
175}
176
177static int
178nfs4_acl_add_pair(struct nfs4_acl *acl, int eflag, u32 mask, int whotype,
179 uid_t owner, unsigned int flags)
180{
181 int error;
182
183 error = nfs4_acl_add_ace(acl, NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE,
184 eflag, mask, whotype, owner);
185 if (error < 0)
186 return error;
187 error = nfs4_acl_add_ace(acl, NFS4_ACE_ACCESS_DENIED_ACE_TYPE,
188 eflag, deny_mask(mask, flags), whotype, owner);
189 return error;
190}
191
192/* We assume the acl has been verified with posix_acl_valid. */
193static int
194_posix_to_nfsv4_one(struct posix_acl *pacl, struct nfs4_acl *acl,
195 unsigned int flags)
196{
197 struct posix_acl_entry *pa, *pe, *group_owner_entry;
198 int error = -EINVAL;
199 u32 mask, mask_mask;
200 int eflag = ((flags & NFS4_ACL_TYPE_DEFAULT) ?
201 NFS4_INHERITANCE_FLAGS : 0);
202
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);
208 else
209 mask_mask = 0;
210
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);
215 if (error < 0)
216 goto out;
217 pa++;
218
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);
223 if (error < 0)
224 goto out;
225
226
227 error = nfs4_acl_add_pair(acl, eflag, mask,
228 NFS4_ACL_WHO_NAMED, pa->e_id, flags);
229 if (error < 0)
230 goto out;
231 pa++;
232 }
233
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. */
236
237 /* allow ACEs */
238
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);
244 if (error < 0)
245 goto out;
246 }
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);
252 if (error < 0)
253 goto out;
254 pa++;
255
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);
261 if (error < 0)
262 goto out;
263
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);
267 if (error < 0)
268 goto out;
269 pa++;
270 }
271
272 /* deny ACEs */
273
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);
279 if (error < 0)
280 goto out;
281 pa++;
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);
287 if (error < 0)
288 goto out;
289 pa++;
290 }
291
292 if (pa->e_tag == ACL_MASK)
293 pa++;
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);
297
298out:
299 return error;
300}
301
302static void
303sort_pacl_range(struct posix_acl *pacl, int start, int end) {
304 int sorted = 0, i;
305 struct posix_acl_entry tmp;
306
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. */
309 while (!sorted) {
310 sorted = 1;
311 for (i = start; i < end; i++) {
312 if (pacl->a_entries[i].e_id
313 > pacl->a_entries[i+1].e_id) {
314 sorted = 0;
315 tmp = pacl->a_entries[i];
316 pacl->a_entries[i] = pacl->a_entries[i+1];
317 pacl->a_entries[i+1] = tmp;
318 }
319 }
320 }
321}
322
323static void
324sort_pacl(struct posix_acl *pacl)
325{
326 /* posix_acl_valid requires that users and groups be in order
327 * by uid/gid. */
328 int i, j;
329
330 if (pacl->a_count <= 4)
331 return; /* no users or groups */
332 i = 1;
333 while (pacl->a_entries[i].e_tag == ACL_USER)
334 i++;
335 sort_pacl_range(pacl, 1, i-1);
336
337 BUG_ON(pacl->a_entries[i].e_tag != ACL_GROUP_OBJ);
338 j = i++;
339 while (pacl->a_entries[j].e_tag == ACL_GROUP)
340 j++;
341 sort_pacl_range(pacl, i, j-1);
342 return;
343}
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345int
346nfs4_acl_nfsv4_to_posix(struct nfs4_acl *acl, struct posix_acl **pacl,
347 struct posix_acl **dpacl, unsigned int flags)
348{
349 struct nfs4_acl *dacl;
350 int error = -ENOMEM;
351
352 *pacl = NULL;
353 *dpacl = NULL;
354
355 dacl = nfs4_acl_new();
356 if (dacl == NULL)
357 goto out;
358
359 error = nfs4_acl_split(acl, dacl);
360 if (error < 0)
361 goto out_acl;
362
363 if (pacl != NULL) {
364 if (acl->naces == 0) {
365 error = -ENODATA;
366 goto try_dpacl;
367 }
368
369 *pacl = _nfsv4_to_posix_one(acl, flags);
370 if (IS_ERR(*pacl)) {
371 error = PTR_ERR(*pacl);
372 *pacl = NULL;
373 goto out_acl;
374 }
375 }
376
377try_dpacl:
378 if (dpacl != NULL) {
379 if (dacl->naces == 0) {
380 if (pacl == NULL || *pacl == NULL)
381 error = -ENODATA;
382 goto out_acl;
383 }
384
385 error = 0;
386 *dpacl = _nfsv4_to_posix_one(dacl, flags);
387 if (IS_ERR(*dpacl)) {
388 error = PTR_ERR(*dpacl);
389 *dpacl = NULL;
390 goto out_acl;
391 }
392 }
393
394out_acl:
395 if (error && pacl) {
396 posix_acl_release(*pacl);
397 *pacl = NULL;
398 }
399 nfs4_acl_free(dacl);
400out:
401 return error;
402}
403
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700404/*
405 * While processing the NFSv4 ACE, this maintains bitmasks representing
406 * which permission bits have been allowed and which denied to a given
407 * entity: */
408struct posix_ace_state {
409 u32 allow;
410 u32 deny;
411};
412
413struct posix_user_ace_state {
414 uid_t uid;
415 struct posix_ace_state perms;
416};
417
418struct posix_ace_state_array {
419 int n;
420 struct posix_user_ace_state aces[];
421};
422
423/*
424 * While processing the NFSv4 ACE, this maintains the partial permissions
425 * calculated so far: */
426
427struct posix_acl_state {
428 struct posix_ace_state owner;
429 struct posix_ace_state group;
430 struct posix_ace_state other;
431 struct posix_ace_state everyone;
432 struct posix_ace_state mask; /* Deny unused in this case */
433 struct posix_ace_state_array *users;
434 struct posix_ace_state_array *groups;
435};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437static int
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700438init_state(struct posix_acl_state *state, int cnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700440 int alloc;
441
442 memset(state, 0, sizeof(struct posix_acl_state));
443 /*
444 * In the worst case, each individual acl could be for a distinct
445 * named user or group, but we don't no which, so we allocate
446 * enough space for either:
447 */
448 alloc = sizeof(struct posix_ace_state_array)
449 + cnt*sizeof(struct posix_ace_state);
450 state->users = kzalloc(alloc, GFP_KERNEL);
451 if (!state->users)
452 return -ENOMEM;
453 state->groups = kzalloc(alloc, GFP_KERNEL);
454 if (!state->groups) {
455 kfree(state->users);
456 return -ENOMEM;
457 }
458 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459}
460
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700461static void
462free_state(struct posix_acl_state *state) {
463 kfree(state->users);
464 kfree(state->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700467static inline void add_to_mask(struct posix_acl_state *state, struct posix_ace_state *astate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700469 state->mask.allow |= astate->allow;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700472/*
473 * Certain bits (SYNCHRONIZE, DELETE, WRITE_OWNER, READ/WRITE_NAMED_ATTRS,
474 * READ_ATTRIBUTES, READ_ACL) are currently unenforceable and don't translate
475 * to traditional read/write/execute permissions.
476 *
477 * It's problematic to reject acls that use certain mode bits, because it
478 * places the burden on users to learn the rules about which bits one
479 * particular server sets, without giving the user a lot of help--we return an
480 * error that could mean any number of different things. To make matters
481 * worse, the problematic bits might be introduced by some application that's
482 * automatically mapping from some other acl model.
483 *
484 * So wherever possible we accept anything, possibly erring on the side of
485 * denying more permissions than necessary.
486 *
487 * However we do reject *explicit* DENY's of a few bits representing
488 * permissions we could never deny:
489 */
490
491static inline int check_deny(u32 mask, int isowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700493 if (mask & (NFS4_ACE_READ_ATTRIBUTES | NFS4_ACE_READ_ACL))
494 return -EINVAL;
495 if (!isowner)
496 return 0;
497 if (mask & (NFS4_ACE_WRITE_ATTRIBUTES | NFS4_ACE_WRITE_ACL))
498 return -EINVAL;
499 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700502static struct posix_acl *
503posix_state_to_acl(struct posix_acl_state *state, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700505 struct posix_acl_entry *pace;
506 struct posix_acl *pacl;
507 int nace;
508 int i, error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700510 nace = 4 + state->users->n + state->groups->n;
511 pacl = posix_acl_alloc(nace, GFP_KERNEL);
512 if (!pacl)
513 return ERR_PTR(-ENOMEM);
514
515 pace = pacl->a_entries;
516 pace->e_tag = ACL_USER_OBJ;
517 error = check_deny(state->owner.deny, 1);
518 if (error)
519 goto out_err;
520 low_mode_from_nfs4(state->owner.allow, &pace->e_perm, flags);
521 pace->e_id = ACL_UNDEFINED_ID;
522
523 for (i=0; i < state->users->n; i++) {
524 pace++;
525 pace->e_tag = ACL_USER;
526 error = check_deny(state->users->aces[i].perms.deny, 0);
527 if (error)
528 goto out_err;
529 low_mode_from_nfs4(state->users->aces[i].perms.allow,
530 &pace->e_perm, flags);
531 pace->e_id = state->users->aces[i].uid;
532 add_to_mask(state, &state->users->aces[i].perms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700534
535 pace++;
536 pace->e_tag = ACL_GROUP_OBJ;
537 error = check_deny(state->group.deny, 0);
538 if (error)
539 goto out_err;
540 low_mode_from_nfs4(state->group.allow, &pace->e_perm, flags);
541 pace->e_id = ACL_UNDEFINED_ID;
542 add_to_mask(state, &state->group);
543
544 for (i=0; i < state->groups->n; i++) {
545 pace++;
546 pace->e_tag = ACL_GROUP;
547 error = check_deny(state->groups->aces[i].perms.deny, 0);
548 if (error)
549 goto out_err;
550 low_mode_from_nfs4(state->groups->aces[i].perms.allow,
551 &pace->e_perm, flags);
552 pace->e_id = state->groups->aces[i].uid;
553 add_to_mask(state, &state->groups->aces[i].perms);
554 }
555
556 pace++;
557 pace->e_tag = ACL_MASK;
558 low_mode_from_nfs4(state->mask.allow, &pace->e_perm, flags);
559 pace->e_id = ACL_UNDEFINED_ID;
560
561 pace++;
562 pace->e_tag = ACL_OTHER;
563 error = check_deny(state->other.deny, 0);
564 if (error)
565 goto out_err;
566 low_mode_from_nfs4(state->other.allow, &pace->e_perm, flags);
567 pace->e_id = ACL_UNDEFINED_ID;
568
569 return pacl;
570out_err:
571 posix_acl_release(pacl);
572 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700575static inline void allow_bits(struct posix_ace_state *astate, u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700577 /* Allow all bits in the mask not already denied: */
578 astate->allow |= mask & ~astate->deny;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579}
580
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700581static inline void deny_bits(struct posix_ace_state *astate, u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700583 /* Deny all bits in the mask not already allowed: */
584 astate->deny |= mask & ~astate->allow;
585}
586
587static int find_uid(struct posix_acl_state *state, struct posix_ace_state_array *a, uid_t uid)
588{
589 int i;
590
591 for (i = 0; i < a->n; i++)
592 if (a->aces[i].uid == uid)
593 return i;
594 /* Not found: */
595 a->n++;
596 a->aces[i].uid = uid;
597 a->aces[i].perms.allow = state->everyone.allow;
598 a->aces[i].perms.deny = state->everyone.deny;
599
600 return i;
601}
602
603static void deny_bits_array(struct posix_ace_state_array *a, u32 mask)
604{
605 int i;
606
607 for (i=0; i < a->n; i++)
608 deny_bits(&a->aces[i].perms, mask);
609}
610
611static void allow_bits_array(struct posix_ace_state_array *a, u32 mask)
612{
613 int i;
614
615 for (i=0; i < a->n; i++)
616 allow_bits(&a->aces[i].perms, mask);
617}
618
619static void process_one_v4_ace(struct posix_acl_state *state,
620 struct nfs4_ace *ace)
621{
622 u32 mask = ace->access_mask;
623 int i;
624
625 switch (ace2type(ace)) {
626 case ACL_USER_OBJ:
627 if (ace->type == NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE) {
628 allow_bits(&state->owner, mask);
629 } else {
630 deny_bits(&state->owner, mask);
631 }
632 break;
633 case ACL_USER:
634 i = find_uid(state, state->users, ace->who);
635 if (ace->type == NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE) {
636 allow_bits(&state->users->aces[i].perms, mask);
637 } else {
638 deny_bits(&state->users->aces[i].perms, mask);
639 mask = state->users->aces[i].perms.deny;
640 deny_bits(&state->owner, mask);
641 }
642 break;
643 case ACL_GROUP_OBJ:
644 if (ace->type == NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE) {
645 allow_bits(&state->group, mask);
646 } else {
647 deny_bits(&state->group, mask);
648 mask = state->group.deny;
649 deny_bits(&state->owner, mask);
650 deny_bits(&state->everyone, mask);
651 deny_bits_array(state->users, mask);
652 deny_bits_array(state->groups, mask);
653 }
654 break;
655 case ACL_GROUP:
656 i = find_uid(state, state->groups, ace->who);
657 if (ace->type == NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE) {
658 allow_bits(&state->groups->aces[i].perms, mask);
659 } else {
660 deny_bits(&state->groups->aces[i].perms, mask);
661 mask = state->groups->aces[i].perms.deny;
662 deny_bits(&state->owner, mask);
663 deny_bits(&state->group, mask);
664 deny_bits(&state->everyone, mask);
665 deny_bits_array(state->users, mask);
666 deny_bits_array(state->groups, mask);
667 }
668 break;
669 case ACL_OTHER:
670 if (ace->type == NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE) {
671 allow_bits(&state->owner, mask);
672 allow_bits(&state->group, mask);
673 allow_bits(&state->other, mask);
674 allow_bits(&state->everyone, mask);
675 allow_bits_array(state->users, mask);
676 allow_bits_array(state->groups, mask);
677 } else {
678 deny_bits(&state->owner, mask);
679 deny_bits(&state->group, mask);
680 deny_bits(&state->other, mask);
681 deny_bits(&state->everyone, mask);
682 deny_bits_array(state->users, mask);
683 deny_bits_array(state->groups, mask);
684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
686}
687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688static struct posix_acl *
689_nfsv4_to_posix_one(struct nfs4_acl *n4acl, unsigned int flags)
690{
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700691 struct posix_acl_state state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 struct posix_acl *pacl;
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700693 struct nfs4_ace *ace;
694 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700696 ret = init_state(&state, n4acl->naces);
697 if (ret)
698 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700700 list_for_each_entry(ace, &n4acl->ace_head, l_ace)
701 process_one_v4_ace(&state, ace);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700703 pacl = posix_state_to_acl(&state, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700705 free_state(&state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700707 if (!IS_ERR(pacl))
708 sort_pacl(pacl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 return pacl;
710}
711
NeilBrownfd39ca92005-06-23 22:04:03 -0700712static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713nfs4_acl_split(struct nfs4_acl *acl, struct nfs4_acl *dacl)
714{
715 struct list_head *h, *n;
716 struct nfs4_ace *ace;
717 int error = 0;
718
719 list_for_each_safe(h, n, &acl->ace_head) {
720 ace = list_entry(h, struct nfs4_ace, l_ace);
721
J.Bruce Fields09229ed2006-10-04 02:16:11 -0700722 if (ace->type != NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE &&
723 ace->type != NFS4_ACE_ACCESS_DENIED_ACE_TYPE)
724 return -EINVAL;
725
J.Bruce Fieldsb548edc2006-10-04 02:16:12 -0700726 if (ace->flag & ~NFS4_SUPPORTED_FLAGS)
727 return -EINVAL;
728
729 switch (ace->flag & NFS4_INHERITANCE_FLAGS) {
730 case 0:
731 /* Leave this ace in the effective acl: */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 continue;
J.Bruce Fieldsb548edc2006-10-04 02:16:12 -0700733 case NFS4_INHERITANCE_FLAGS:
734 /* Add this ace to the default acl and remove it
735 * from the effective acl: */
736 error = nfs4_acl_add_ace(dacl, ace->type, ace->flag,
NeilBrown24992052006-04-10 22:55:24 -0700737 ace->access_mask, ace->whotype, ace->who);
J.Bruce Fieldsb548edc2006-10-04 02:16:12 -0700738 if (error)
739 return error;
740 list_del(h);
741 kfree(ace);
742 acl->naces--;
743 break;
744 case NFS4_INHERITANCE_FLAGS & ~NFS4_ACE_INHERIT_ONLY_ACE:
745 /* Add this ace to the default, but leave it in
746 * the effective acl as well: */
747 error = nfs4_acl_add_ace(dacl, ace->type, ace->flag,
748 ace->access_mask, ace->whotype, ace->who);
749 if (error)
750 return error;
751 break;
752 default:
753 return -EINVAL;
754 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
J.Bruce Fieldsb548edc2006-10-04 02:16:12 -0700756 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
759static short
760ace2type(struct nfs4_ace *ace)
761{
762 switch (ace->whotype) {
763 case NFS4_ACL_WHO_NAMED:
764 return (ace->flag & NFS4_ACE_IDENTIFIER_GROUP ?
765 ACL_GROUP : ACL_USER);
766 case NFS4_ACL_WHO_OWNER:
767 return ACL_USER_OBJ;
768 case NFS4_ACL_WHO_GROUP:
769 return ACL_GROUP_OBJ;
770 case NFS4_ACL_WHO_EVERYONE:
771 return ACL_OTHER;
772 }
773 BUG();
774 return -1;
775}
776
777EXPORT_SYMBOL(nfs4_acl_posix_to_nfsv4);
778EXPORT_SYMBOL(nfs4_acl_nfsv4_to_posix);
779
780struct nfs4_acl *
781nfs4_acl_new(void)
782{
783 struct nfs4_acl *acl;
784
785 if ((acl = kmalloc(sizeof(*acl), GFP_KERNEL)) == NULL)
786 return NULL;
787
788 acl->naces = 0;
789 INIT_LIST_HEAD(&acl->ace_head);
790
791 return acl;
792}
793
794void
795nfs4_acl_free(struct nfs4_acl *acl)
796{
797 struct list_head *h;
798 struct nfs4_ace *ace;
799
800 if (!acl)
801 return;
802
803 while (!list_empty(&acl->ace_head)) {
804 h = acl->ace_head.next;
805 list_del(h);
806 ace = list_entry(h, struct nfs4_ace, l_ace);
807 kfree(ace);
808 }
809
810 kfree(acl);
811
812 return;
813}
814
815int
816nfs4_acl_add_ace(struct nfs4_acl *acl, u32 type, u32 flag, u32 access_mask,
817 int whotype, uid_t who)
818{
819 struct nfs4_ace *ace;
820
821 if ((ace = kmalloc(sizeof(*ace), GFP_KERNEL)) == NULL)
NeilBrownb905b7b2006-04-10 22:55:25 -0700822 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 ace->type = type;
825 ace->flag = flag;
826 ace->access_mask = access_mask;
827 ace->whotype = whotype;
828 ace->who = who;
829
830 list_add_tail(&ace->l_ace, &acl->ace_head);
831 acl->naces++;
832
833 return 0;
834}
835
836static struct {
837 char *string;
838 int stringlen;
839 int type;
840} s2t_map[] = {
841 {
842 .string = "OWNER@",
843 .stringlen = sizeof("OWNER@") - 1,
844 .type = NFS4_ACL_WHO_OWNER,
845 },
846 {
847 .string = "GROUP@",
848 .stringlen = sizeof("GROUP@") - 1,
849 .type = NFS4_ACL_WHO_GROUP,
850 },
851 {
852 .string = "EVERYONE@",
853 .stringlen = sizeof("EVERYONE@") - 1,
854 .type = NFS4_ACL_WHO_EVERYONE,
855 },
856};
857
858int
859nfs4_acl_get_whotype(char *p, u32 len)
860{
861 int i;
862
Tobias Klausere8c96f82006-03-24 03:15:34 -0800863 for (i = 0; i < ARRAY_SIZE(s2t_map); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if (s2t_map[i].stringlen == len &&
865 0 == memcmp(s2t_map[i].string, p, len))
866 return s2t_map[i].type;
867 }
868 return NFS4_ACL_WHO_NAMED;
869}
870
871int
872nfs4_acl_write_who(int who, char *p)
873{
874 int i;
875
Tobias Klausere8c96f82006-03-24 03:15:34 -0800876 for (i = 0; i < ARRAY_SIZE(s2t_map); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 if (s2t_map[i].type == who) {
878 memcpy(p, s2t_map[i].string, s2t_map[i].stringlen);
879 return s2t_map[i].stringlen;
880 }
881 }
882 BUG();
883 return -1;
884}
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886EXPORT_SYMBOL(nfs4_acl_new);
887EXPORT_SYMBOL(nfs4_acl_free);
888EXPORT_SYMBOL(nfs4_acl_add_ace);
889EXPORT_SYMBOL(nfs4_acl_get_whotype);
890EXPORT_SYMBOL(nfs4_acl_write_who);