ACL related changes
[zfs.git] / module / zfs / zfs_acl.c
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23  */
24
25
26 #include <sys/types.h>
27 #include <sys/param.h>
28 #include <sys/time.h>
29 #include <sys/systm.h>
30 #include <sys/sysmacros.h>
31 #include <sys/resource.h>
32 #include <sys/vfs.h>
33 #include <sys/vnode.h>
34 #include <sys/sid.h>
35 #include <sys/file.h>
36 #include <sys/stat.h>
37 #include <sys/kmem.h>
38 #include <sys/cmn_err.h>
39 #include <sys/errno.h>
40 #include <sys/unistd.h>
41 #include <sys/sdt.h>
42 #include <sys/fs/zfs.h>
43 #include <sys/mode.h>
44 #include <sys/policy.h>
45 #include <sys/zfs_znode.h>
46 #include <sys/zfs_fuid.h>
47 #include <sys/zfs_acl.h>
48 #include <sys/zfs_dir.h>
49 #include <sys/zfs_vfsops.h>
50 #include <sys/dmu.h>
51 #include <sys/dnode.h>
52 #include <sys/zap.h>
53 #include <sys/sa.h>
54 #include "fs/fs_subr.h"
55
56 #define ALLOW   ACE_ACCESS_ALLOWED_ACE_TYPE
57 #define DENY    ACE_ACCESS_DENIED_ACE_TYPE
58 #define MAX_ACE_TYPE    ACE_SYSTEM_ALARM_CALLBACK_OBJECT_ACE_TYPE
59 #define MIN_ACE_TYPE    ALLOW
60
61 #define OWNING_GROUP            (ACE_GROUP|ACE_IDENTIFIER_GROUP)
62 #define EVERYONE_ALLOW_MASK (ACE_READ_ACL|ACE_READ_ATTRIBUTES | \
63     ACE_READ_NAMED_ATTRS|ACE_SYNCHRONIZE)
64 #define EVERYONE_DENY_MASK (ACE_WRITE_ACL|ACE_WRITE_OWNER | \
65     ACE_WRITE_ATTRIBUTES|ACE_WRITE_NAMED_ATTRS)
66 #define OWNER_ALLOW_MASK (ACE_WRITE_ACL | ACE_WRITE_OWNER | \
67     ACE_WRITE_ATTRIBUTES|ACE_WRITE_NAMED_ATTRS)
68
69 #define ZFS_CHECKED_MASKS (ACE_READ_ACL|ACE_READ_ATTRIBUTES|ACE_READ_DATA| \
70     ACE_READ_NAMED_ATTRS|ACE_WRITE_DATA|ACE_WRITE_ATTRIBUTES| \
71     ACE_WRITE_NAMED_ATTRS|ACE_APPEND_DATA|ACE_EXECUTE|ACE_WRITE_OWNER| \
72     ACE_WRITE_ACL|ACE_DELETE|ACE_DELETE_CHILD|ACE_SYNCHRONIZE)
73
74 #define WRITE_MASK_DATA (ACE_WRITE_DATA|ACE_APPEND_DATA|ACE_WRITE_NAMED_ATTRS)
75 #define WRITE_MASK_ATTRS (ACE_WRITE_ACL|ACE_WRITE_OWNER|ACE_WRITE_ATTRIBUTES| \
76     ACE_DELETE|ACE_DELETE_CHILD)
77 #define WRITE_MASK (WRITE_MASK_DATA|WRITE_MASK_ATTRS)
78
79 #define OGE_CLEAR       (ACE_READ_DATA|ACE_LIST_DIRECTORY|ACE_WRITE_DATA| \
80     ACE_ADD_FILE|ACE_APPEND_DATA|ACE_ADD_SUBDIRECTORY|ACE_EXECUTE)
81
82 #define OKAY_MASK_BITS (ACE_READ_DATA|ACE_LIST_DIRECTORY|ACE_WRITE_DATA| \
83     ACE_ADD_FILE|ACE_APPEND_DATA|ACE_ADD_SUBDIRECTORY|ACE_EXECUTE)
84
85 #define ALL_INHERIT     (ACE_FILE_INHERIT_ACE|ACE_DIRECTORY_INHERIT_ACE | \
86     ACE_NO_PROPAGATE_INHERIT_ACE|ACE_INHERIT_ONLY_ACE|ACE_INHERITED_ACE)
87
88 #define RESTRICTED_CLEAR        (ACE_WRITE_ACL|ACE_WRITE_OWNER)
89
90 #define V4_ACL_WIDE_FLAGS (ZFS_ACL_AUTO_INHERIT|ZFS_ACL_DEFAULTED|\
91     ZFS_ACL_PROTECTED)
92
93 #define ZFS_ACL_WIDE_FLAGS (V4_ACL_WIDE_FLAGS|ZFS_ACL_TRIVIAL|ZFS_INHERIT_ACE|\
94     ZFS_ACL_OBJ_ACE)
95
96 #define ALL_MODE_EXECS (S_IXUSR | S_IXGRP | S_IXOTH)
97
98 static uint16_t
99 zfs_ace_v0_get_type(void *acep)
100 {
101         return (((zfs_oldace_t *)acep)->z_type);
102 }
103
104 static uint16_t
105 zfs_ace_v0_get_flags(void *acep)
106 {
107         return (((zfs_oldace_t *)acep)->z_flags);
108 }
109
110 static uint32_t
111 zfs_ace_v0_get_mask(void *acep)
112 {
113         return (((zfs_oldace_t *)acep)->z_access_mask);
114 }
115
116 static uint64_t
117 zfs_ace_v0_get_who(void *acep)
118 {
119         return (((zfs_oldace_t *)acep)->z_fuid);
120 }
121
122 static void
123 zfs_ace_v0_set_type(void *acep, uint16_t type)
124 {
125         ((zfs_oldace_t *)acep)->z_type = type;
126 }
127
128 static void
129 zfs_ace_v0_set_flags(void *acep, uint16_t flags)
130 {
131         ((zfs_oldace_t *)acep)->z_flags = flags;
132 }
133
134 static void
135 zfs_ace_v0_set_mask(void *acep, uint32_t mask)
136 {
137         ((zfs_oldace_t *)acep)->z_access_mask = mask;
138 }
139
140 static void
141 zfs_ace_v0_set_who(void *acep, uint64_t who)
142 {
143         ((zfs_oldace_t *)acep)->z_fuid = who;
144 }
145
146 /*ARGSUSED*/
147 static size_t
148 zfs_ace_v0_size(void *acep)
149 {
150         return (sizeof (zfs_oldace_t));
151 }
152
153 static size_t
154 zfs_ace_v0_abstract_size(void)
155 {
156         return (sizeof (zfs_oldace_t));
157 }
158
159 static int
160 zfs_ace_v0_mask_off(void)
161 {
162         return (offsetof(zfs_oldace_t, z_access_mask));
163 }
164
165 /*ARGSUSED*/
166 static int
167 zfs_ace_v0_data(void *acep, void **datap)
168 {
169         *datap = NULL;
170         return (0);
171 }
172
173 static acl_ops_t zfs_acl_v0_ops = {
174         zfs_ace_v0_get_mask,
175         zfs_ace_v0_set_mask,
176         zfs_ace_v0_get_flags,
177         zfs_ace_v0_set_flags,
178         zfs_ace_v0_get_type,
179         zfs_ace_v0_set_type,
180         zfs_ace_v0_get_who,
181         zfs_ace_v0_set_who,
182         zfs_ace_v0_size,
183         zfs_ace_v0_abstract_size,
184         zfs_ace_v0_mask_off,
185         zfs_ace_v0_data
186 };
187
188 static uint16_t
189 zfs_ace_fuid_get_type(void *acep)
190 {
191         return (((zfs_ace_hdr_t *)acep)->z_type);
192 }
193
194 static uint16_t
195 zfs_ace_fuid_get_flags(void *acep)
196 {
197         return (((zfs_ace_hdr_t *)acep)->z_flags);
198 }
199
200 static uint32_t
201 zfs_ace_fuid_get_mask(void *acep)
202 {
203         return (((zfs_ace_hdr_t *)acep)->z_access_mask);
204 }
205
206 static uint64_t
207 zfs_ace_fuid_get_who(void *args)
208 {
209         uint16_t entry_type;
210         zfs_ace_t *acep = args;
211
212         entry_type = acep->z_hdr.z_flags & ACE_TYPE_FLAGS;
213
214         if (entry_type == ACE_OWNER || entry_type == OWNING_GROUP ||
215             entry_type == ACE_EVERYONE)
216                 return (-1);
217         return (((zfs_ace_t *)acep)->z_fuid);
218 }
219
220 static void
221 zfs_ace_fuid_set_type(void *acep, uint16_t type)
222 {
223         ((zfs_ace_hdr_t *)acep)->z_type = type;
224 }
225
226 static void
227 zfs_ace_fuid_set_flags(void *acep, uint16_t flags)
228 {
229         ((zfs_ace_hdr_t *)acep)->z_flags = flags;
230 }
231
232 static void
233 zfs_ace_fuid_set_mask(void *acep, uint32_t mask)
234 {
235         ((zfs_ace_hdr_t *)acep)->z_access_mask = mask;
236 }
237
238 static void
239 zfs_ace_fuid_set_who(void *arg, uint64_t who)
240 {
241         zfs_ace_t *acep = arg;
242
243         uint16_t entry_type = acep->z_hdr.z_flags & ACE_TYPE_FLAGS;
244
245         if (entry_type == ACE_OWNER || entry_type == OWNING_GROUP ||
246             entry_type == ACE_EVERYONE)
247                 return;
248         acep->z_fuid = who;
249 }
250
251 static size_t
252 zfs_ace_fuid_size(void *acep)
253 {
254         zfs_ace_hdr_t *zacep = acep;
255         uint16_t entry_type;
256
257         switch (zacep->z_type) {
258         case ACE_ACCESS_ALLOWED_OBJECT_ACE_TYPE:
259         case ACE_ACCESS_DENIED_OBJECT_ACE_TYPE:
260         case ACE_SYSTEM_AUDIT_OBJECT_ACE_TYPE:
261         case ACE_SYSTEM_ALARM_OBJECT_ACE_TYPE:
262                 return (sizeof (zfs_object_ace_t));
263         case ALLOW:
264         case DENY:
265                 entry_type =
266                     (((zfs_ace_hdr_t *)acep)->z_flags & ACE_TYPE_FLAGS);
267                 if (entry_type == ACE_OWNER ||
268                     entry_type == OWNING_GROUP ||
269                     entry_type == ACE_EVERYONE)
270                         return (sizeof (zfs_ace_hdr_t));
271                 /*FALLTHROUGH*/
272         default:
273                 return (sizeof (zfs_ace_t));
274         }
275 }
276
277 static size_t
278 zfs_ace_fuid_abstract_size(void)
279 {
280         return (sizeof (zfs_ace_hdr_t));
281 }
282
283 static int
284 zfs_ace_fuid_mask_off(void)
285 {
286         return (offsetof(zfs_ace_hdr_t, z_access_mask));
287 }
288
289 static int
290 zfs_ace_fuid_data(void *acep, void **datap)
291 {
292         zfs_ace_t *zacep = acep;
293         zfs_object_ace_t *zobjp;
294
295         switch (zacep->z_hdr.z_type) {
296         case ACE_ACCESS_ALLOWED_OBJECT_ACE_TYPE:
297         case ACE_ACCESS_DENIED_OBJECT_ACE_TYPE:
298         case ACE_SYSTEM_AUDIT_OBJECT_ACE_TYPE:
299         case ACE_SYSTEM_ALARM_OBJECT_ACE_TYPE:
300                 zobjp = acep;
301                 *datap = (caddr_t)zobjp + sizeof (zfs_ace_t);
302                 return (sizeof (zfs_object_ace_t) - sizeof (zfs_ace_t));
303         default:
304                 *datap = NULL;
305                 return (0);
306         }
307 }
308
309 static acl_ops_t zfs_acl_fuid_ops = {
310         zfs_ace_fuid_get_mask,
311         zfs_ace_fuid_set_mask,
312         zfs_ace_fuid_get_flags,
313         zfs_ace_fuid_set_flags,
314         zfs_ace_fuid_get_type,
315         zfs_ace_fuid_set_type,
316         zfs_ace_fuid_get_who,
317         zfs_ace_fuid_set_who,
318         zfs_ace_fuid_size,
319         zfs_ace_fuid_abstract_size,
320         zfs_ace_fuid_mask_off,
321         zfs_ace_fuid_data
322 };
323
324 /*
325  * The following three functions are provided for compatibility with
326  * older ZPL version in order to determine if the file use to have
327  * an external ACL and what version of ACL previously existed on the
328  * file.  Would really be nice to not need this, sigh.
329  */
330 uint64_t
331 zfs_external_acl(znode_t *zp)
332 {
333         zfs_acl_phys_t acl_phys;
334         int error;
335
336         if (zp->z_is_sa)
337                 return (0);
338
339         /*
340          * Need to deal with a potential
341          * race where zfs_sa_upgrade could cause
342          * z_isa_sa to change.
343          *
344          * If the lookup fails then the state of z_is_sa should have
345          * changed.
346          */
347
348         if ((error = sa_lookup(zp->z_sa_hdl, SA_ZPL_ZNODE_ACL(zp->z_zfsvfs),
349             &acl_phys, sizeof (acl_phys))) == 0)
350                 return (acl_phys.z_acl_extern_obj);
351         else {
352                 /*
353                  * after upgrade the SA_ZPL_ZNODE_ACL should have been
354                  * removed
355                  */
356                 VERIFY(zp->z_is_sa && error == ENOENT);
357                 return (0);
358         }
359 }
360
361 /*
362  * Determine size of ACL in bytes
363  *
364  * This is more complicated than it should be since we have to deal
365  * with old external ACLs.
366  */
367 static int
368 zfs_acl_znode_info(znode_t *zp, int *aclsize, int *aclcount,
369     zfs_acl_phys_t *aclphys)
370 {
371         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
372         uint64_t acl_count;
373         int size;
374         int error;
375
376         ASSERT(MUTEX_HELD(&zp->z_acl_lock));
377         if (zp->z_is_sa) {
378                 if ((error = sa_size(zp->z_sa_hdl, SA_ZPL_DACL_ACES(zfsvfs),
379                     &size)) != 0)
380                         return (error);
381                 *aclsize = size;
382                 if ((error = sa_lookup(zp->z_sa_hdl, SA_ZPL_DACL_COUNT(zfsvfs),
383                     &acl_count, sizeof (acl_count))) != 0)
384                         return (error);
385                 *aclcount = acl_count;
386         } else {
387                 if ((error = sa_lookup(zp->z_sa_hdl, SA_ZPL_ZNODE_ACL(zfsvfs),
388                     aclphys, sizeof (*aclphys))) != 0)
389                         return (error);
390
391                 if (aclphys->z_acl_version == ZFS_ACL_VERSION_INITIAL) {
392                         *aclsize = ZFS_ACL_SIZE(aclphys->z_acl_size);
393                         *aclcount = aclphys->z_acl_size;
394                 } else {
395                         *aclsize = aclphys->z_acl_size;
396                         *aclcount = aclphys->z_acl_count;
397                 }
398         }
399         return (0);
400 }
401
402 int
403 zfs_znode_acl_version(znode_t *zp)
404 {
405         zfs_acl_phys_t acl_phys;
406
407         if (zp->z_is_sa)
408                 return (ZFS_ACL_VERSION_FUID);
409         else {
410                 int error;
411
412                 /*
413                  * Need to deal with a potential
414                  * race where zfs_sa_upgrade could cause
415                  * z_isa_sa to change.
416                  *
417                  * If the lookup fails then the state of z_is_sa should have
418                  * changed.
419                  */
420                 if ((error = sa_lookup(zp->z_sa_hdl,
421                     SA_ZPL_ZNODE_ACL(zp->z_zfsvfs),
422                     &acl_phys, sizeof (acl_phys))) == 0)
423                         return (acl_phys.z_acl_version);
424                 else {
425                         /*
426                          * After upgrade SA_ZPL_ZNODE_ACL should have
427                          * been removed.
428                          */
429                         VERIFY(zp->z_is_sa && error == ENOENT);
430                         return (ZFS_ACL_VERSION_FUID);
431                 }
432         }
433 }
434
435 static int
436 zfs_acl_version(int version)
437 {
438         if (version < ZPL_VERSION_FUID)
439                 return (ZFS_ACL_VERSION_INITIAL);
440         else
441                 return (ZFS_ACL_VERSION_FUID);
442 }
443
444 static int
445 zfs_acl_version_zp(znode_t *zp)
446 {
447         return (zfs_acl_version(zp->z_zfsvfs->z_version));
448 }
449
450 zfs_acl_t *
451 zfs_acl_alloc(int vers)
452 {
453         zfs_acl_t *aclp;
454
455         aclp = kmem_zalloc(sizeof (zfs_acl_t), KM_SLEEP);
456         list_create(&aclp->z_acl, sizeof (zfs_acl_node_t),
457             offsetof(zfs_acl_node_t, z_next));
458         aclp->z_version = vers;
459         if (vers == ZFS_ACL_VERSION_FUID)
460                 aclp->z_ops = zfs_acl_fuid_ops;
461         else
462                 aclp->z_ops = zfs_acl_v0_ops;
463         return (aclp);
464 }
465
466 zfs_acl_node_t *
467 zfs_acl_node_alloc(size_t bytes)
468 {
469         zfs_acl_node_t *aclnode;
470
471         aclnode = kmem_zalloc(sizeof (zfs_acl_node_t), KM_SLEEP);
472         if (bytes) {
473                 aclnode->z_acldata = kmem_alloc(bytes, KM_SLEEP);
474                 aclnode->z_allocdata = aclnode->z_acldata;
475                 aclnode->z_allocsize = bytes;
476                 aclnode->z_size = bytes;
477         }
478
479         return (aclnode);
480 }
481
482 static void
483 zfs_acl_node_free(zfs_acl_node_t *aclnode)
484 {
485         if (aclnode->z_allocsize)
486                 kmem_free(aclnode->z_allocdata, aclnode->z_allocsize);
487         kmem_free(aclnode, sizeof (zfs_acl_node_t));
488 }
489
490 static void
491 zfs_acl_release_nodes(zfs_acl_t *aclp)
492 {
493         zfs_acl_node_t *aclnode;
494
495         while ((aclnode = list_head(&aclp->z_acl))) {
496                 list_remove(&aclp->z_acl, aclnode);
497                 zfs_acl_node_free(aclnode);
498         }
499         aclp->z_acl_count = 0;
500         aclp->z_acl_bytes = 0;
501 }
502
503 void
504 zfs_acl_free(zfs_acl_t *aclp)
505 {
506         zfs_acl_release_nodes(aclp);
507         list_destroy(&aclp->z_acl);
508         kmem_free(aclp, sizeof (zfs_acl_t));
509 }
510
511 static boolean_t
512 zfs_acl_valid_ace_type(uint_t type, uint_t flags)
513 {
514         uint16_t entry_type;
515
516         switch (type) {
517         case ALLOW:
518         case DENY:
519         case ACE_SYSTEM_AUDIT_ACE_TYPE:
520         case ACE_SYSTEM_ALARM_ACE_TYPE:
521                 entry_type = flags & ACE_TYPE_FLAGS;
522                 return (entry_type == ACE_OWNER ||
523                     entry_type == OWNING_GROUP ||
524                     entry_type == ACE_EVERYONE || entry_type == 0 ||
525                     entry_type == ACE_IDENTIFIER_GROUP);
526         default:
527                 if (type >= MIN_ACE_TYPE && type <= MAX_ACE_TYPE)
528                         return (B_TRUE);
529         }
530         return (B_FALSE);
531 }
532
533 static boolean_t
534 zfs_ace_valid(vtype_t obj_type, zfs_acl_t *aclp, uint16_t type, uint16_t iflags)
535 {
536         /*
537          * first check type of entry
538          */
539
540         if (!zfs_acl_valid_ace_type(type, iflags))
541                 return (B_FALSE);
542
543         switch (type) {
544         case ACE_ACCESS_ALLOWED_OBJECT_ACE_TYPE:
545         case ACE_ACCESS_DENIED_OBJECT_ACE_TYPE:
546         case ACE_SYSTEM_AUDIT_OBJECT_ACE_TYPE:
547         case ACE_SYSTEM_ALARM_OBJECT_ACE_TYPE:
548                 if (aclp->z_version < ZFS_ACL_VERSION_FUID)
549                         return (B_FALSE);
550                 aclp->z_hints |= ZFS_ACL_OBJ_ACE;
551         }
552
553         /*
554          * next check inheritance level flags
555          */
556
557         if (obj_type == VDIR &&
558             (iflags & (ACE_FILE_INHERIT_ACE|ACE_DIRECTORY_INHERIT_ACE)))
559                 aclp->z_hints |= ZFS_INHERIT_ACE;
560
561         if (iflags & (ACE_INHERIT_ONLY_ACE|ACE_NO_PROPAGATE_INHERIT_ACE)) {
562                 if ((iflags & (ACE_FILE_INHERIT_ACE|
563                     ACE_DIRECTORY_INHERIT_ACE)) == 0) {
564                         return (B_FALSE);
565                 }
566         }
567
568         return (B_TRUE);
569 }
570
571 static void *
572 zfs_acl_next_ace(zfs_acl_t *aclp, void *start, uint64_t *who,
573     uint32_t *access_mask, uint16_t *iflags, uint16_t *type)
574 {
575         zfs_acl_node_t *aclnode;
576
577         ASSERT(aclp);
578
579         if (start == NULL) {
580                 aclnode = list_head(&aclp->z_acl);
581                 if (aclnode == NULL)
582                         return (NULL);
583
584                 aclp->z_next_ace = aclnode->z_acldata;
585                 aclp->z_curr_node = aclnode;
586                 aclnode->z_ace_idx = 0;
587         }
588
589         aclnode = aclp->z_curr_node;
590
591         if (aclnode == NULL)
592                 return (NULL);
593
594         if (aclnode->z_ace_idx >= aclnode->z_ace_count) {
595                 aclnode = list_next(&aclp->z_acl, aclnode);
596                 if (aclnode == NULL)
597                         return (NULL);
598                 else {
599                         aclp->z_curr_node = aclnode;
600                         aclnode->z_ace_idx = 0;
601                         aclp->z_next_ace = aclnode->z_acldata;
602                 }
603         }
604
605         if (aclnode->z_ace_idx < aclnode->z_ace_count) {
606                 void *acep = aclp->z_next_ace;
607                 size_t ace_size;
608
609                 /*
610                  * Make sure we don't overstep our bounds
611                  */
612                 ace_size = aclp->z_ops.ace_size(acep);
613
614                 if (((caddr_t)acep + ace_size) >
615                     ((caddr_t)aclnode->z_acldata + aclnode->z_size)) {
616                         return (NULL);
617                 }
618
619                 *iflags = aclp->z_ops.ace_flags_get(acep);
620                 *type = aclp->z_ops.ace_type_get(acep);
621                 *access_mask = aclp->z_ops.ace_mask_get(acep);
622                 *who = aclp->z_ops.ace_who_get(acep);
623                 aclp->z_next_ace = (caddr_t)aclp->z_next_ace + ace_size;
624                 aclnode->z_ace_idx++;
625
626                 return ((void *)acep);
627         }
628         return (NULL);
629 }
630
631 /*ARGSUSED*/
632 static uint64_t
633 zfs_ace_walk(void *datap, uint64_t cookie, int aclcnt,
634     uint16_t *flags, uint16_t *type, uint32_t *mask)
635 {
636         zfs_acl_t *aclp = datap;
637         zfs_ace_hdr_t *acep = (zfs_ace_hdr_t *)(uintptr_t)cookie;
638         uint64_t who;
639
640         acep = zfs_acl_next_ace(aclp, acep, &who, mask,
641             flags, type);
642         return ((uint64_t)(uintptr_t)acep);
643 }
644
645 /*
646  * Copy ACE to internal ZFS format.
647  * While processing the ACL each ACE will be validated for correctness.
648  * ACE FUIDs will be created later.
649  */
650 int
651 zfs_copy_ace_2_fuid(zfsvfs_t *zfsvfs, vtype_t obj_type, zfs_acl_t *aclp,
652     void *datap, zfs_ace_t *z_acl, uint64_t aclcnt, size_t *size,
653     zfs_fuid_info_t **fuidp, cred_t *cr)
654 {
655         int i;
656         uint16_t entry_type;
657         zfs_ace_t *aceptr = z_acl;
658         ace_t *acep = datap;
659         zfs_object_ace_t *zobjacep;
660         ace_object_t *aceobjp;
661
662         for (i = 0; i != aclcnt; i++) {
663                 aceptr->z_hdr.z_access_mask = acep->a_access_mask;
664                 aceptr->z_hdr.z_flags = acep->a_flags;
665                 aceptr->z_hdr.z_type = acep->a_type;
666                 entry_type = aceptr->z_hdr.z_flags & ACE_TYPE_FLAGS;
667                 if (entry_type != ACE_OWNER && entry_type != OWNING_GROUP &&
668                     entry_type != ACE_EVERYONE) {
669                         aceptr->z_fuid = zfs_fuid_create(zfsvfs, acep->a_who,
670                             cr, (entry_type == 0) ?
671                             ZFS_ACE_USER : ZFS_ACE_GROUP, fuidp);
672                 }
673
674                 /*
675                  * Make sure ACE is valid
676                  */
677                 if (zfs_ace_valid(obj_type, aclp, aceptr->z_hdr.z_type,
678                     aceptr->z_hdr.z_flags) != B_TRUE)
679                         return (EINVAL);
680
681                 switch (acep->a_type) {
682                 case ACE_ACCESS_ALLOWED_OBJECT_ACE_TYPE:
683                 case ACE_ACCESS_DENIED_OBJECT_ACE_TYPE:
684                 case ACE_SYSTEM_AUDIT_OBJECT_ACE_TYPE:
685                 case ACE_SYSTEM_ALARM_OBJECT_ACE_TYPE:
686                         zobjacep = (zfs_object_ace_t *)aceptr;
687                         aceobjp = (ace_object_t *)acep;
688
689                         bcopy(aceobjp->a_obj_type, zobjacep->z_object_type,
690                             sizeof (aceobjp->a_obj_type));
691                         bcopy(aceobjp->a_inherit_obj_type,
692                             zobjacep->z_inherit_type,
693                             sizeof (aceobjp->a_inherit_obj_type));
694                         acep = (ace_t *)((caddr_t)acep + sizeof (ace_object_t));
695                         break;
696                 default:
697                         acep = (ace_t *)((caddr_t)acep + sizeof (ace_t));
698                 }
699
700                 aceptr = (zfs_ace_t *)((caddr_t)aceptr +
701                     aclp->z_ops.ace_size(aceptr));
702         }
703
704         *size = (caddr_t)aceptr - (caddr_t)z_acl;
705
706         return (0);
707 }
708
709 /*
710  * Copy ZFS ACEs to fixed size ace_t layout
711  */
712 static void
713 zfs_copy_fuid_2_ace(zfsvfs_t *zfsvfs, zfs_acl_t *aclp, cred_t *cr,
714     void *datap, int filter)
715 {
716         uint64_t who;
717         uint32_t access_mask;
718         uint16_t iflags, type;
719         zfs_ace_hdr_t *zacep = NULL;
720         ace_t *acep = datap;
721         ace_object_t *objacep;
722         zfs_object_ace_t *zobjacep;
723         size_t ace_size;
724         uint16_t entry_type;
725
726         while ((zacep = zfs_acl_next_ace(aclp, zacep,
727             &who, &access_mask, &iflags, &type))) {
728
729                 switch (type) {
730                 case ACE_ACCESS_ALLOWED_OBJECT_ACE_TYPE:
731                 case ACE_ACCESS_DENIED_OBJECT_ACE_TYPE:
732                 case ACE_SYSTEM_AUDIT_OBJECT_ACE_TYPE:
733                 case ACE_SYSTEM_ALARM_OBJECT_ACE_TYPE:
734                         if (filter) {
735                                 continue;
736                         }
737                         zobjacep = (zfs_object_ace_t *)zacep;
738                         objacep = (ace_object_t *)acep;
739                         bcopy(zobjacep->z_object_type,
740                             objacep->a_obj_type,
741                             sizeof (zobjacep->z_object_type));
742                         bcopy(zobjacep->z_inherit_type,
743                             objacep->a_inherit_obj_type,
744                             sizeof (zobjacep->z_inherit_type));
745                         ace_size = sizeof (ace_object_t);
746                         break;
747                 default:
748                         ace_size = sizeof (ace_t);
749                         break;
750                 }
751
752                 entry_type = (iflags & ACE_TYPE_FLAGS);
753                 if ((entry_type != ACE_OWNER &&
754                     entry_type != OWNING_GROUP &&
755                     entry_type != ACE_EVERYONE)) {
756                         acep->a_who = zfs_fuid_map_id(zfsvfs, who,
757                             cr, (entry_type & ACE_IDENTIFIER_GROUP) ?
758                             ZFS_ACE_GROUP : ZFS_ACE_USER);
759                 } else {
760                         acep->a_who = (uid_t)(int64_t)who;
761                 }
762                 acep->a_access_mask = access_mask;
763                 acep->a_flags = iflags;
764                 acep->a_type = type;
765                 acep = (ace_t *)((caddr_t)acep + ace_size);
766         }
767 }
768
769 static int
770 zfs_copy_ace_2_oldace(vtype_t obj_type, zfs_acl_t *aclp, ace_t *acep,
771     zfs_oldace_t *z_acl, int aclcnt, size_t *size)
772 {
773         int i;
774         zfs_oldace_t *aceptr = z_acl;
775
776         for (i = 0; i != aclcnt; i++, aceptr++) {
777                 aceptr->z_access_mask = acep[i].a_access_mask;
778                 aceptr->z_type = acep[i].a_type;
779                 aceptr->z_flags = acep[i].a_flags;
780                 aceptr->z_fuid = acep[i].a_who;
781                 /*
782                  * Make sure ACE is valid
783                  */
784                 if (zfs_ace_valid(obj_type, aclp, aceptr->z_type,
785                     aceptr->z_flags) != B_TRUE)
786                         return (EINVAL);
787         }
788         *size = (caddr_t)aceptr - (caddr_t)z_acl;
789         return (0);
790 }
791
792 /*
793  * convert old ACL format to new
794  */
795 void
796 zfs_acl_xform(znode_t *zp, zfs_acl_t *aclp, cred_t *cr)
797 {
798         zfs_oldace_t *oldaclp;
799         int i;
800         uint16_t type, iflags;
801         uint32_t access_mask;
802         uint64_t who;
803         void *cookie = NULL;
804         zfs_acl_node_t *newaclnode;
805
806         ASSERT(aclp->z_version == ZFS_ACL_VERSION_INITIAL);
807         /*
808          * First create the ACE in a contiguous piece of memory
809          * for zfs_copy_ace_2_fuid().
810          *
811          * We only convert an ACL once, so this won't happen
812          * everytime.
813          */
814         oldaclp = kmem_alloc(sizeof (zfs_oldace_t) * aclp->z_acl_count,
815             KM_SLEEP);
816         i = 0;
817         while ((cookie = zfs_acl_next_ace(aclp, cookie, &who,
818             &access_mask, &iflags, &type))) {
819                 oldaclp[i].z_flags = iflags;
820                 oldaclp[i].z_type = type;
821                 oldaclp[i].z_fuid = who;
822                 oldaclp[i++].z_access_mask = access_mask;
823         }
824
825         newaclnode = zfs_acl_node_alloc(aclp->z_acl_count *
826             sizeof (zfs_object_ace_t));
827         aclp->z_ops = zfs_acl_fuid_ops;
828         VERIFY(zfs_copy_ace_2_fuid(zp->z_zfsvfs, ZTOV(zp)->v_type, aclp,
829             oldaclp, newaclnode->z_acldata, aclp->z_acl_count,
830             &newaclnode->z_size, NULL, cr) == 0);
831         newaclnode->z_ace_count = aclp->z_acl_count;
832         aclp->z_version = ZFS_ACL_VERSION;
833         kmem_free(oldaclp, aclp->z_acl_count * sizeof (zfs_oldace_t));
834
835         /*
836          * Release all previous ACL nodes
837          */
838
839         zfs_acl_release_nodes(aclp);
840
841         list_insert_head(&aclp->z_acl, newaclnode);
842
843         aclp->z_acl_bytes = newaclnode->z_size;
844         aclp->z_acl_count = newaclnode->z_ace_count;
845
846 }
847
848 /*
849  * Convert unix access mask to v4 access mask
850  */
851 static uint32_t
852 zfs_unix_to_v4(uint32_t access_mask)
853 {
854         uint32_t new_mask = 0;
855
856         if (access_mask & S_IXOTH)
857                 new_mask |= ACE_EXECUTE;
858         if (access_mask & S_IWOTH)
859                 new_mask |= ACE_WRITE_DATA;
860         if (access_mask & S_IROTH)
861                 new_mask |= ACE_READ_DATA;
862         return (new_mask);
863 }
864
865 static void
866 zfs_set_ace(zfs_acl_t *aclp, void *acep, uint32_t access_mask,
867     uint16_t access_type, uint64_t fuid, uint16_t entry_type)
868 {
869         uint16_t type = entry_type & ACE_TYPE_FLAGS;
870
871         aclp->z_ops.ace_mask_set(acep, access_mask);
872         aclp->z_ops.ace_type_set(acep, access_type);
873         aclp->z_ops.ace_flags_set(acep, entry_type);
874         if ((type != ACE_OWNER && type != OWNING_GROUP &&
875             type != ACE_EVERYONE))
876                 aclp->z_ops.ace_who_set(acep, fuid);
877 }
878
879 /*
880  * Determine mode of file based on ACL.
881  * Also, create FUIDs for any User/Group ACEs
882  */
883 uint64_t
884 zfs_mode_compute(uint64_t fmode, zfs_acl_t *aclp,
885     uint64_t *pflags, uint64_t fuid, uint64_t fgid)
886 {
887         int             entry_type;
888         mode_t          mode;
889         mode_t          seen = 0;
890         zfs_ace_hdr_t   *acep = NULL;
891         uint64_t        who;
892         uint16_t        iflags, type;
893         uint32_t        access_mask;
894         boolean_t       an_exec_denied = B_FALSE;
895
896         mode = (fmode & (S_IFMT | S_ISUID | S_ISGID | S_ISVTX));
897
898         while ((acep = zfs_acl_next_ace(aclp, acep, &who,
899             &access_mask, &iflags, &type))) {
900
901                 if (!zfs_acl_valid_ace_type(type, iflags))
902                         continue;
903
904                 entry_type = (iflags & ACE_TYPE_FLAGS);
905
906                 /*
907                  * Skip over owner@, group@ or everyone@ inherit only ACEs
908                  */
909                 if ((iflags & ACE_INHERIT_ONLY_ACE) &&
910                     (entry_type == ACE_OWNER || entry_type == ACE_EVERYONE ||
911                     entry_type == OWNING_GROUP))
912                         continue;
913
914                 if (entry_type == ACE_OWNER || (entry_type == 0 &&
915                     who == fuid)) {
916                         if ((access_mask & ACE_READ_DATA) &&
917                             (!(seen & S_IRUSR))) {
918                                 seen |= S_IRUSR;
919                                 if (type == ALLOW) {
920                                         mode |= S_IRUSR;
921                                 }
922                         }
923                         if ((access_mask & ACE_WRITE_DATA) &&
924                             (!(seen & S_IWUSR))) {
925                                 seen |= S_IWUSR;
926                                 if (type == ALLOW) {
927                                         mode |= S_IWUSR;
928                                 }
929                         }
930                         if ((access_mask & ACE_EXECUTE) &&
931                             (!(seen & S_IXUSR))) {
932                                 seen |= S_IXUSR;
933                                 if (type == ALLOW) {
934                                         mode |= S_IXUSR;
935                                 }
936                         }
937                 } else if (entry_type == OWNING_GROUP ||
938                     (entry_type == ACE_IDENTIFIER_GROUP && who == fgid)) {
939                         if ((access_mask & ACE_READ_DATA) &&
940                             (!(seen & S_IRGRP))) {
941                                 seen |= S_IRGRP;
942                                 if (type == ALLOW) {
943                                         mode |= S_IRGRP;
944                                 }
945                         }
946                         if ((access_mask & ACE_WRITE_DATA) &&
947                             (!(seen & S_IWGRP))) {
948                                 seen |= S_IWGRP;
949                                 if (type == ALLOW) {
950                                         mode |= S_IWGRP;
951                                 }
952                         }
953                         if ((access_mask & ACE_EXECUTE) &&
954                             (!(seen & S_IXGRP))) {
955                                 seen |= S_IXGRP;
956                                 if (type == ALLOW) {
957                                         mode |= S_IXGRP;
958                                 }
959                         }
960                 } else if (entry_type == ACE_EVERYONE) {
961                         if ((access_mask & ACE_READ_DATA)) {
962                                 if (!(seen & S_IRUSR)) {
963                                         seen |= S_IRUSR;
964                                         if (type == ALLOW) {
965                                                 mode |= S_IRUSR;
966                                         }
967                                 }
968                                 if (!(seen & S_IRGRP)) {
969                                         seen |= S_IRGRP;
970                                         if (type == ALLOW) {
971                                                 mode |= S_IRGRP;
972                                         }
973                                 }
974                                 if (!(seen & S_IROTH)) {
975                                         seen |= S_IROTH;
976                                         if (type == ALLOW) {
977                                                 mode |= S_IROTH;
978                                         }
979                                 }
980                         }
981                         if ((access_mask & ACE_WRITE_DATA)) {
982                                 if (!(seen & S_IWUSR)) {
983                                         seen |= S_IWUSR;
984                                         if (type == ALLOW) {
985                                                 mode |= S_IWUSR;
986                                         }
987                                 }
988                                 if (!(seen & S_IWGRP)) {
989                                         seen |= S_IWGRP;
990                                         if (type == ALLOW) {
991                                                 mode |= S_IWGRP;
992                                         }
993                                 }
994                                 if (!(seen & S_IWOTH)) {
995                                         seen |= S_IWOTH;
996                                         if (type == ALLOW) {
997                                                 mode |= S_IWOTH;
998                                         }
999                                 }
1000                         }
1001                         if ((access_mask & ACE_EXECUTE)) {
1002                                 if (!(seen & S_IXUSR)) {
1003                                         seen |= S_IXUSR;
1004                                         if (type == ALLOW) {
1005                                                 mode |= S_IXUSR;
1006                                         }
1007                                 }
1008                                 if (!(seen & S_IXGRP)) {
1009                                         seen |= S_IXGRP;
1010                                         if (type == ALLOW) {
1011                                                 mode |= S_IXGRP;
1012                                         }
1013                                 }
1014                                 if (!(seen & S_IXOTH)) {
1015                                         seen |= S_IXOTH;
1016                                         if (type == ALLOW) {
1017                                                 mode |= S_IXOTH;
1018                                         }
1019                                 }
1020                         }
1021                 } else {
1022                         /*
1023                          * Only care if this IDENTIFIER_GROUP or
1024                          * USER ACE denies execute access to someone,
1025                          * mode is not affected
1026                          */
1027                         if ((access_mask & ACE_EXECUTE) && type == DENY)
1028                                 an_exec_denied = B_TRUE;
1029                 }
1030         }
1031
1032         /*
1033          * Failure to allow is effectively a deny, so execute permission
1034          * is denied if it was never mentioned or if we explicitly
1035          * weren't allowed it.
1036          */
1037         if (!an_exec_denied &&
1038             ((seen & ALL_MODE_EXECS) != ALL_MODE_EXECS ||
1039             (mode & ALL_MODE_EXECS) != ALL_MODE_EXECS))
1040                 an_exec_denied = B_TRUE;
1041
1042         if (an_exec_denied)
1043                 *pflags &= ~ZFS_NO_EXECS_DENIED;
1044         else
1045                 *pflags |= ZFS_NO_EXECS_DENIED;
1046
1047         return (mode);
1048 }
1049
1050 /*
1051  * Read an external acl object.  If the intent is to modify, always
1052  * create a new acl and leave any cached acl in place.
1053  */
1054 static int
1055 zfs_acl_node_read(znode_t *zp, boolean_t have_lock, zfs_acl_t **aclpp,
1056     boolean_t will_modify)
1057 {
1058         zfs_acl_t       *aclp;
1059         int             aclsize;
1060         int             acl_count;
1061         zfs_acl_node_t  *aclnode;
1062         zfs_acl_phys_t  znode_acl;
1063         int             version;
1064         int             error;
1065         boolean_t       drop_lock = B_FALSE;
1066
1067         ASSERT(MUTEX_HELD(&zp->z_acl_lock));
1068
1069         if (zp->z_acl_cached && !will_modify) {
1070                 *aclpp = zp->z_acl_cached;
1071                 return (0);
1072         }
1073
1074         /*
1075          * close race where znode could be upgrade while trying to
1076          * read the znode attributes.
1077          *
1078          * But this could only happen if the file isn't already an SA
1079          * znode
1080          */
1081         if (!zp->z_is_sa && !have_lock) {
1082                 mutex_enter(&zp->z_lock);
1083                 drop_lock = B_TRUE;
1084         }
1085         version = zfs_znode_acl_version(zp);
1086
1087         if ((error = zfs_acl_znode_info(zp, &aclsize,
1088             &acl_count, &znode_acl)) != 0) {
1089                 goto done;
1090         }
1091
1092         aclp = zfs_acl_alloc(version);
1093
1094         aclp->z_acl_count = acl_count;
1095         aclp->z_acl_bytes = aclsize;
1096
1097         aclnode = zfs_acl_node_alloc(aclsize);
1098         aclnode->z_ace_count = aclp->z_acl_count;
1099         aclnode->z_size = aclsize;
1100
1101         if (!zp->z_is_sa) {
1102                 if (znode_acl.z_acl_extern_obj) {
1103                         error = dmu_read(zp->z_zfsvfs->z_os,
1104                             znode_acl.z_acl_extern_obj, 0, aclnode->z_size,
1105                             aclnode->z_acldata, DMU_READ_PREFETCH);
1106                 } else {
1107                         bcopy(znode_acl.z_ace_data, aclnode->z_acldata,
1108                             aclnode->z_size);
1109                 }
1110         } else {
1111                 error = sa_lookup(zp->z_sa_hdl, SA_ZPL_DACL_ACES(zp->z_zfsvfs),
1112                     aclnode->z_acldata, aclnode->z_size);
1113         }
1114
1115         if (error != 0) {
1116                 zfs_acl_free(aclp);
1117                 zfs_acl_node_free(aclnode);
1118                 /* convert checksum errors into IO errors */
1119                 if (error == ECKSUM)
1120                         error = EIO;
1121                 goto done;
1122         }
1123
1124         list_insert_head(&aclp->z_acl, aclnode);
1125
1126         *aclpp = aclp;
1127         if (!will_modify)
1128                 zp->z_acl_cached = aclp;
1129 done:
1130         if (drop_lock)
1131                 mutex_exit(&zp->z_lock);
1132         return (error);
1133 }
1134
1135 /*ARGSUSED*/
1136 void
1137 zfs_acl_data_locator(void **dataptr, uint32_t *length, uint32_t buflen,
1138     boolean_t start, void *userdata)
1139 {
1140         zfs_acl_locator_cb_t *cb = (zfs_acl_locator_cb_t *)userdata;
1141
1142         if (start) {
1143                 cb->cb_acl_node = list_head(&cb->cb_aclp->z_acl);
1144         } else {
1145                 cb->cb_acl_node = list_next(&cb->cb_aclp->z_acl,
1146                     cb->cb_acl_node);
1147         }
1148         *dataptr = cb->cb_acl_node->z_acldata;
1149         *length = cb->cb_acl_node->z_size;
1150 }
1151
1152 int
1153 zfs_acl_chown_setattr(znode_t *zp)
1154 {
1155         int error;
1156         zfs_acl_t *aclp;
1157
1158         ASSERT(MUTEX_HELD(&zp->z_lock));
1159         ASSERT(MUTEX_HELD(&zp->z_acl_lock));
1160
1161         if ((error = zfs_acl_node_read(zp, B_TRUE, &aclp, B_FALSE)) == 0)
1162                 zp->z_mode = zfs_mode_compute(zp->z_mode, aclp,
1163                     &zp->z_pflags, zp->z_uid, zp->z_gid);
1164         return (error);
1165 }
1166
1167 static void
1168 acl_trivial_access_masks(mode_t mode, uint32_t *allow0, uint32_t *deny1,
1169     uint32_t *deny2, uint32_t *owner, uint32_t *group, uint32_t *everyone)
1170 {
1171         *deny1 = *deny2 = *allow0 = *group = 0;
1172
1173         if (!(mode & S_IRUSR) && (mode & (S_IRGRP|S_IROTH)))
1174                 *deny1 |= ACE_READ_DATA;
1175         if (!(mode & S_IWUSR) && (mode & (S_IWGRP|S_IWOTH)))
1176                 *deny1 |= ACE_WRITE_DATA;
1177         if (!(mode & S_IXUSR) && (mode & (S_IXGRP|S_IXOTH)))
1178                 *deny1 |= ACE_EXECUTE;
1179
1180         if (!(mode & S_IRGRP) && (mode & S_IROTH))
1181                 *deny2 = ACE_READ_DATA;
1182         if (!(mode & S_IWGRP) && (mode & S_IWOTH))
1183                 *deny2 |= ACE_WRITE_DATA;
1184         if (!(mode & S_IXGRP) && (mode & S_IXOTH))
1185                 *deny2 |= ACE_EXECUTE;
1186
1187         if ((mode & S_IRUSR) && (!(mode & S_IRGRP) && (mode & S_IROTH)))
1188                 *allow0 |= ACE_READ_DATA;
1189         if ((mode & S_IWUSR) && (!(mode & S_IWGRP) && (mode & S_IWOTH)))
1190                 *allow0 |= ACE_WRITE_DATA;
1191         if ((mode & S_IXUSR) && (!(mode & S_IXGRP) && (mode & S_IXOTH)))
1192                 *allow0 |= ACE_EXECUTE;
1193
1194         *owner = ACE_WRITE_ATTRIBUTES|ACE_WRITE_OWNER|ACE_WRITE_ACL|
1195             ACE_WRITE_NAMED_ATTRS|ACE_READ_ACL|ACE_READ_ATTRIBUTES|
1196             ACE_READ_NAMED_ATTRS|ACE_SYNCHRONIZE;
1197         if (mode & S_IRUSR)
1198                 *owner |= ACE_READ_DATA;
1199         if (mode & S_IWUSR)
1200                 *owner |= ACE_WRITE_DATA|ACE_APPEND_DATA;
1201         if (mode & S_IXUSR)
1202                 *owner |= ACE_EXECUTE;
1203
1204         *group = ACE_READ_ACL|ACE_READ_ATTRIBUTES| ACE_READ_NAMED_ATTRS|
1205             ACE_SYNCHRONIZE;
1206         if (mode & S_IRGRP)
1207                 *group |= ACE_READ_DATA;
1208         if (mode & S_IWGRP)
1209                 *group |= ACE_WRITE_DATA|ACE_APPEND_DATA;
1210         if (mode & S_IXGRP)
1211                 *group |= ACE_EXECUTE;
1212
1213         *everyone = ACE_READ_ACL|ACE_READ_ATTRIBUTES| ACE_READ_NAMED_ATTRS|
1214             ACE_SYNCHRONIZE;
1215         if (mode & S_IROTH)
1216                 *everyone |= ACE_READ_DATA;
1217         if (mode & S_IWOTH)
1218                 *everyone |= ACE_WRITE_DATA|ACE_APPEND_DATA;
1219         if (mode & S_IXOTH)
1220                 *everyone |= ACE_EXECUTE;
1221 }
1222
1223 /*
1224  * ace_trivial:
1225  * determine whether an ace_t acl is trivial
1226  *
1227  * Trivialness implies that the acl is composed of only
1228  * owner, group, everyone entries.  ACL can't
1229  * have read_acl denied, and write_owner/write_acl/write_attributes
1230  * can only be owner@ entry.
1231  */
1232 static int
1233 ace_trivial_common(void *acep, int aclcnt,
1234     uint64_t (*walk)(void *, uint64_t, int aclcnt,
1235     uint16_t *, uint16_t *, uint32_t *))
1236 {
1237         uint16_t flags;
1238         uint32_t mask;
1239         uint16_t type;
1240         uint64_t cookie = 0;
1241
1242         while ((cookie = walk(acep, cookie, aclcnt, &flags, &type, &mask))) {
1243                 switch (flags & ACE_TYPE_FLAGS) {
1244                 case ACE_OWNER:
1245                 case ACE_GROUP|ACE_IDENTIFIER_GROUP:
1246                 case ACE_EVERYONE:
1247                         break;
1248                 default:
1249                         return (1);
1250                 }
1251
1252                 if (flags & (ACE_FILE_INHERIT_ACE|
1253                     ACE_DIRECTORY_INHERIT_ACE|ACE_NO_PROPAGATE_INHERIT_ACE|
1254                     ACE_INHERIT_ONLY_ACE))
1255                         return (1);
1256
1257                 /*
1258                  * Special check for some special bits
1259                  *
1260                  * Don't allow anybody to deny reading basic
1261                  * attributes or a files ACL.
1262                  */
1263                 if ((mask & (ACE_READ_ACL|ACE_READ_ATTRIBUTES)) &&
1264                     (type == ACE_ACCESS_DENIED_ACE_TYPE))
1265                         return (1);
1266
1267                 /*
1268                  * Delete permissions are never set by default
1269                  */
1270                 if (mask & (ACE_DELETE|ACE_DELETE_CHILD))
1271                         return (1);
1272                 /*
1273                  * only allow owner@ to have
1274                  * write_acl/write_owner/write_attributes/write_xattr/
1275                  */
1276                 if (type == ACE_ACCESS_ALLOWED_ACE_TYPE &&
1277                     (!(flags & ACE_OWNER) && (mask &
1278                     (ACE_WRITE_OWNER|ACE_WRITE_ACL| ACE_WRITE_ATTRIBUTES|
1279                     ACE_WRITE_NAMED_ATTRS))))
1280                         return (1);
1281
1282         }
1283
1284         return (0);
1285 }
1286
1287 /*
1288  * common code for setting ACLs.
1289  *
1290  * This function is called from zfs_mode_update, zfs_perm_init, and zfs_setacl.
1291  * zfs_setacl passes a non-NULL inherit pointer (ihp) to indicate that it's
1292  * already checked the acl and knows whether to inherit.
1293  */
1294 int
1295 zfs_aclset_common(znode_t *zp, zfs_acl_t *aclp, cred_t *cr, dmu_tx_t *tx)
1296 {
1297         int                     error;
1298         zfsvfs_t                *zfsvfs = zp->z_zfsvfs;
1299         dmu_object_type_t       otype;
1300         zfs_acl_locator_cb_t    locate = { 0 };
1301         uint64_t                mode;
1302         sa_bulk_attr_t          bulk[5];
1303         uint64_t                ctime[2];
1304         int                     count = 0;
1305
1306         mode = zp->z_mode;
1307
1308         mode = zfs_mode_compute(mode, aclp, &zp->z_pflags,
1309             zp->z_uid, zp->z_gid);
1310
1311         zp->z_mode = mode;
1312         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MODE(zfsvfs), NULL,
1313             &mode, sizeof (mode));
1314         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zfsvfs), NULL,
1315             &zp->z_pflags, sizeof (zp->z_pflags));
1316         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zfsvfs), NULL,
1317             &ctime, sizeof (ctime));
1318
1319         if (zp->z_acl_cached) {
1320                 zfs_acl_free(zp->z_acl_cached);
1321                 zp->z_acl_cached = NULL;
1322         }
1323
1324         /*
1325          * Upgrade needed?
1326          */
1327         if (!zfsvfs->z_use_fuids) {
1328                 otype = DMU_OT_OLDACL;
1329         } else {
1330                 if ((aclp->z_version == ZFS_ACL_VERSION_INITIAL) &&
1331                     (zfsvfs->z_version >= ZPL_VERSION_FUID))
1332                         zfs_acl_xform(zp, aclp, cr);
1333                 ASSERT(aclp->z_version >= ZFS_ACL_VERSION_FUID);
1334                 otype = DMU_OT_ACL;
1335         }
1336
1337         /*
1338          * Arrgh, we have to handle old on disk format
1339          * as well as newer (preferred) SA format.
1340          */
1341
1342         if (zp->z_is_sa) { /* the easy case, just update the ACL attribute */
1343                 locate.cb_aclp = aclp;
1344                 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_DACL_ACES(zfsvfs),
1345                     zfs_acl_data_locator, &locate, aclp->z_acl_bytes);
1346                 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_DACL_COUNT(zfsvfs),
1347                     NULL, &aclp->z_acl_count, sizeof (uint64_t));
1348         } else { /* Painful legacy way */
1349                 zfs_acl_node_t *aclnode;
1350                 uint64_t off = 0;
1351                 zfs_acl_phys_t acl_phys;
1352                 uint64_t aoid;
1353
1354                 if ((error = sa_lookup(zp->z_sa_hdl, SA_ZPL_ZNODE_ACL(zfsvfs),
1355                     &acl_phys, sizeof (acl_phys))) != 0)
1356                         return (error);
1357
1358                 aoid = acl_phys.z_acl_extern_obj;
1359
1360                 if (aclp->z_acl_bytes > ZFS_ACE_SPACE) {
1361                         /*
1362                          * If ACL was previously external and we are now
1363                          * converting to new ACL format then release old
1364                          * ACL object and create a new one.
1365                          */
1366                         if (aoid &&
1367                             aclp->z_version != acl_phys.z_acl_version) {
1368                                 error = dmu_object_free(zfsvfs->z_os, aoid, tx);
1369                                 if (error)
1370                                         return (error);
1371                                 aoid = 0;
1372                         }
1373                         if (aoid == 0) {
1374                                 aoid = dmu_object_alloc(zfsvfs->z_os,
1375                                     otype, aclp->z_acl_bytes,
1376                                     otype == DMU_OT_ACL ?
1377                                     DMU_OT_SYSACL : DMU_OT_NONE,
1378                                     otype == DMU_OT_ACL ?
1379                                     DN_MAX_BONUSLEN : 0, tx);
1380                         } else {
1381                                 (void) dmu_object_set_blocksize(zfsvfs->z_os,
1382                                     aoid, aclp->z_acl_bytes, 0, tx);
1383                         }
1384                         acl_phys.z_acl_extern_obj = aoid;
1385                         for (aclnode = list_head(&aclp->z_acl); aclnode;
1386                             aclnode = list_next(&aclp->z_acl, aclnode)) {
1387                                 if (aclnode->z_ace_count == 0)
1388                                         continue;
1389                                 dmu_write(zfsvfs->z_os, aoid, off,
1390                                     aclnode->z_size, aclnode->z_acldata, tx);
1391                                 off += aclnode->z_size;
1392                         }
1393                 } else {
1394                         void *start = acl_phys.z_ace_data;
1395                         /*
1396                          * Migrating back embedded?
1397                          */
1398                         if (acl_phys.z_acl_extern_obj) {
1399                                 error = dmu_object_free(zfsvfs->z_os,
1400                                     acl_phys.z_acl_extern_obj, tx);
1401                                 if (error)
1402                                         return (error);
1403                                 acl_phys.z_acl_extern_obj = 0;
1404                         }
1405
1406                         for (aclnode = list_head(&aclp->z_acl); aclnode;
1407                             aclnode = list_next(&aclp->z_acl, aclnode)) {
1408                                 if (aclnode->z_ace_count == 0)
1409                                         continue;
1410                                 bcopy(aclnode->z_acldata, start,
1411                                     aclnode->z_size);
1412                                 start = (caddr_t)start + aclnode->z_size;
1413                         }
1414                 }
1415                 /*
1416                  * If Old version then swap count/bytes to match old
1417                  * layout of znode_acl_phys_t.
1418                  */
1419                 if (aclp->z_version == ZFS_ACL_VERSION_INITIAL) {
1420                         acl_phys.z_acl_size = aclp->z_acl_count;
1421                         acl_phys.z_acl_count = aclp->z_acl_bytes;
1422                 } else {
1423                         acl_phys.z_acl_size = aclp->z_acl_bytes;
1424                         acl_phys.z_acl_count = aclp->z_acl_count;
1425                 }
1426                 acl_phys.z_acl_version = aclp->z_version;
1427
1428                 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_ZNODE_ACL(zfsvfs), NULL,
1429                     &acl_phys, sizeof (acl_phys));
1430         }
1431
1432         /*
1433          * Replace ACL wide bits, but first clear them.
1434          */
1435         zp->z_pflags &= ~ZFS_ACL_WIDE_FLAGS;
1436
1437         zp->z_pflags |= aclp->z_hints;
1438
1439         if (ace_trivial_common(aclp, 0, zfs_ace_walk) == 0)
1440                 zp->z_pflags |= ZFS_ACL_TRIVIAL;
1441
1442         zfs_tstamp_update_setup(zp, STATE_CHANGED, NULL, ctime, B_TRUE);
1443         return (sa_bulk_update(zp->z_sa_hdl, bulk, count, tx));
1444 }
1445
1446 static void
1447 zfs_acl_chmod(zfsvfs_t *zfsvfs, uint64_t mode, zfs_acl_t *aclp)
1448 {
1449         void            *acep = NULL;
1450         uint64_t        who;
1451         int             new_count, new_bytes;
1452         int             ace_size;
1453         int             entry_type;
1454         uint16_t        iflags, type;
1455         uint32_t        access_mask;
1456         zfs_acl_node_t  *newnode;
1457         size_t          abstract_size = aclp->z_ops.ace_abstract_size();
1458         void            *zacep;
1459         uint32_t        owner, group, everyone;
1460         uint32_t        deny1, deny2, allow0;
1461
1462         new_count = new_bytes = 0;
1463
1464         acl_trivial_access_masks((mode_t)mode, &allow0, &deny1, &deny2,
1465             &owner, &group, &everyone);
1466
1467         newnode = zfs_acl_node_alloc((abstract_size * 6) + aclp->z_acl_bytes);
1468
1469         zacep = newnode->z_acldata;
1470         if (allow0) {
1471                 zfs_set_ace(aclp, zacep, allow0, ALLOW, -1, ACE_OWNER);
1472                 zacep = (void *)((uintptr_t)zacep + abstract_size);
1473                 new_count++;
1474                 new_bytes += abstract_size;
1475         } if (deny1) {
1476                 zfs_set_ace(aclp, zacep, deny1, DENY, -1, ACE_OWNER);
1477                 zacep = (void *)((uintptr_t)zacep + abstract_size);
1478                 new_count++;
1479                 new_bytes += abstract_size;
1480         }
1481         if (deny2) {
1482                 zfs_set_ace(aclp, zacep, deny2, DENY, -1, OWNING_GROUP);
1483                 zacep = (void *)((uintptr_t)zacep + abstract_size);
1484                 new_count++;
1485                 new_bytes += abstract_size;
1486         }
1487
1488         while ((acep = zfs_acl_next_ace(aclp, acep, &who, &access_mask,
1489             &iflags, &type))) {
1490                 uint16_t inherit_flags;
1491
1492                 entry_type = (iflags & ACE_TYPE_FLAGS);
1493                 inherit_flags = (iflags & ALL_INHERIT);
1494
1495                 if ((entry_type == ACE_OWNER || entry_type == ACE_EVERYONE ||
1496                     (entry_type == OWNING_GROUP)) &&
1497                     ((inherit_flags & ACE_INHERIT_ONLY_ACE) == 0)) {
1498                         continue;
1499                 }
1500
1501                 if ((type != ALLOW && type != DENY) ||
1502                     (inherit_flags & ACE_INHERIT_ONLY_ACE)) {
1503                         if (inherit_flags)
1504                                 aclp->z_hints |= ZFS_INHERIT_ACE;
1505                         switch (type) {
1506                         case ACE_ACCESS_ALLOWED_OBJECT_ACE_TYPE:
1507                         case ACE_ACCESS_DENIED_OBJECT_ACE_TYPE:
1508                         case ACE_SYSTEM_AUDIT_OBJECT_ACE_TYPE:
1509                         case ACE_SYSTEM_ALARM_OBJECT_ACE_TYPE:
1510                                 aclp->z_hints |= ZFS_ACL_OBJ_ACE;
1511                                 break;
1512                         }
1513                 } else {
1514
1515                         /*
1516                          * Limit permissions to be no greater than
1517                          * group permissions
1518                          */
1519                         if (zfsvfs->z_acl_inherit == ZFS_ACL_RESTRICTED) {
1520                                 if (!(mode & S_IRGRP))
1521                                         access_mask &= ~ACE_READ_DATA;
1522                                 if (!(mode & S_IWGRP))
1523                                         access_mask &=
1524                                             ~(ACE_WRITE_DATA|ACE_APPEND_DATA);
1525                                 if (!(mode & S_IXGRP))
1526                                         access_mask &= ~ACE_EXECUTE;
1527                                 access_mask &=
1528                                     ~(ACE_WRITE_OWNER|ACE_WRITE_ACL|
1529                                     ACE_WRITE_ATTRIBUTES|ACE_WRITE_NAMED_ATTRS);
1530                         }
1531                 }
1532                 zfs_set_ace(aclp, zacep, access_mask, type, who, iflags);
1533                 ace_size = aclp->z_ops.ace_size(acep);
1534                 zacep = (void *)((uintptr_t)zacep + ace_size);
1535                 new_count++;
1536                 new_bytes += ace_size;
1537         }
1538         zfs_set_ace(aclp, zacep, owner, 0, -1, ACE_OWNER);
1539         zacep = (void *)((uintptr_t)zacep + abstract_size);
1540         zfs_set_ace(aclp, zacep, group, 0, -1, OWNING_GROUP);
1541         zacep = (void *)((uintptr_t)zacep + abstract_size);
1542         zfs_set_ace(aclp, zacep, everyone, 0, -1, ACE_EVERYONE);
1543
1544         new_count += 3;
1545         new_bytes += abstract_size * 3;
1546         zfs_acl_release_nodes(aclp);
1547         aclp->z_acl_count = new_count;
1548         aclp->z_acl_bytes = new_bytes;
1549         newnode->z_ace_count = new_count;
1550         newnode->z_size = new_bytes;
1551         list_insert_tail(&aclp->z_acl, newnode);
1552 }
1553
1554 void
1555 zfs_acl_chmod_setattr(znode_t *zp, zfs_acl_t **aclp, uint64_t mode)
1556 {
1557         mutex_enter(&zp->z_acl_lock);
1558         mutex_enter(&zp->z_lock);
1559         *aclp = zfs_acl_alloc(zfs_acl_version_zp(zp));
1560         (*aclp)->z_hints = zp->z_pflags & V4_ACL_WIDE_FLAGS;
1561         zfs_acl_chmod(zp->z_zfsvfs, mode, *aclp);
1562         mutex_exit(&zp->z_lock);
1563         mutex_exit(&zp->z_acl_lock);
1564         ASSERT(*aclp);
1565 }
1566
1567 /*
1568  * strip off write_owner and write_acl
1569  */
1570 static void
1571 zfs_restricted_update(zfsvfs_t *zfsvfs, zfs_acl_t *aclp, void *acep)
1572 {
1573         uint32_t mask = aclp->z_ops.ace_mask_get(acep);
1574
1575         if ((zfsvfs->z_acl_inherit == ZFS_ACL_RESTRICTED) &&
1576             (aclp->z_ops.ace_type_get(acep) == ALLOW)) {
1577                 mask &= ~RESTRICTED_CLEAR;
1578                 aclp->z_ops.ace_mask_set(acep, mask);
1579         }
1580 }
1581
1582 /*
1583  * Should ACE be inherited?
1584  */
1585 static int
1586 zfs_ace_can_use(vtype_t vtype, uint16_t acep_flags)
1587 {
1588         int     iflags = (acep_flags & 0xf);
1589
1590         if ((vtype == VDIR) && (iflags & ACE_DIRECTORY_INHERIT_ACE))
1591                 return (1);
1592         else if (iflags & ACE_FILE_INHERIT_ACE)
1593                 return (!((vtype == VDIR) &&
1594                     (iflags & ACE_NO_PROPAGATE_INHERIT_ACE)));
1595         return (0);
1596 }
1597
1598 /*
1599  * inherit inheritable ACEs from parent
1600  */
1601 static zfs_acl_t *
1602 zfs_acl_inherit(zfsvfs_t *zfsvfs, vtype_t vtype, zfs_acl_t *paclp,
1603     uint64_t mode, boolean_t *need_chmod)
1604 {
1605         void            *pacep;
1606         void            *acep;
1607         zfs_acl_node_t  *aclnode;
1608         zfs_acl_t       *aclp = NULL;
1609         uint64_t        who;
1610         uint32_t        access_mask;
1611         uint16_t        iflags, newflags, type;
1612         size_t          ace_size;
1613         void            *data1, *data2;
1614         size_t          data1sz, data2sz;
1615         boolean_t       vdir = vtype == VDIR;
1616         boolean_t       vreg = vtype == VREG;
1617         boolean_t       passthrough, passthrough_x, noallow;
1618
1619         passthrough_x =
1620             zfsvfs->z_acl_inherit == ZFS_ACL_PASSTHROUGH_X;
1621         passthrough = passthrough_x ||
1622             zfsvfs->z_acl_inherit == ZFS_ACL_PASSTHROUGH;
1623         noallow =
1624             zfsvfs->z_acl_inherit == ZFS_ACL_NOALLOW;
1625
1626         *need_chmod = B_TRUE;
1627         pacep = NULL;
1628         aclp = zfs_acl_alloc(paclp->z_version);
1629         if (zfsvfs->z_acl_inherit == ZFS_ACL_DISCARD || vtype == VLNK)
1630                 return (aclp);
1631         while ((pacep = zfs_acl_next_ace(paclp, pacep, &who,
1632             &access_mask, &iflags, &type))) {
1633
1634                 /*
1635                  * don't inherit bogus ACEs
1636                  */
1637                 if (!zfs_acl_valid_ace_type(type, iflags))
1638                         continue;
1639
1640                 if (noallow && type == ALLOW)
1641                         continue;
1642
1643                 ace_size = aclp->z_ops.ace_size(pacep);
1644
1645                 if (!zfs_ace_can_use(vtype, iflags))
1646                         continue;
1647
1648                 /*
1649                  * If owner@, group@, or everyone@ inheritable
1650                  * then zfs_acl_chmod() isn't needed.
1651                  */
1652                 if (passthrough &&
1653                     ((iflags & (ACE_OWNER|ACE_EVERYONE)) ||
1654                     ((iflags & OWNING_GROUP) ==
1655                     OWNING_GROUP)) && (vreg || (vdir && (iflags &
1656                     ACE_DIRECTORY_INHERIT_ACE)))) {
1657                         *need_chmod = B_FALSE;
1658                 }
1659
1660                 if (!vdir && passthrough_x &&
1661                     ((mode & (S_IXUSR | S_IXGRP | S_IXOTH)) == 0)) {
1662                         access_mask &= ~ACE_EXECUTE;
1663                 }
1664
1665                 aclnode = zfs_acl_node_alloc(ace_size);
1666                 list_insert_tail(&aclp->z_acl, aclnode);
1667                 acep = aclnode->z_acldata;
1668
1669                 zfs_set_ace(aclp, acep, access_mask, type,
1670                     who, iflags|ACE_INHERITED_ACE);
1671
1672                 /*
1673                  * Copy special opaque data if any
1674                  */
1675                 if ((data1sz = paclp->z_ops.ace_data(pacep, &data1)) != 0) {
1676                         VERIFY((data2sz = aclp->z_ops.ace_data(acep,
1677                             &data2)) == data1sz);
1678                         bcopy(data1, data2, data2sz);
1679                 }
1680
1681                 aclp->z_acl_count++;
1682                 aclnode->z_ace_count++;
1683                 aclp->z_acl_bytes += aclnode->z_size;
1684                 newflags = aclp->z_ops.ace_flags_get(acep);
1685
1686                 if (vdir)
1687                         aclp->z_hints |= ZFS_INHERIT_ACE;
1688
1689                 if ((iflags & ACE_NO_PROPAGATE_INHERIT_ACE) || !vdir) {
1690                         newflags &= ~ALL_INHERIT;
1691                         aclp->z_ops.ace_flags_set(acep,
1692                             newflags|ACE_INHERITED_ACE);
1693                         zfs_restricted_update(zfsvfs, aclp, acep);
1694                         continue;
1695                 }
1696
1697                 ASSERT(vdir);
1698
1699                 /*
1700                  * If only FILE_INHERIT is set then turn on
1701                  * inherit_only
1702                  */
1703                 if ((iflags & (ACE_FILE_INHERIT_ACE |
1704                     ACE_DIRECTORY_INHERIT_ACE)) == ACE_FILE_INHERIT_ACE) {
1705                         newflags |= ACE_INHERIT_ONLY_ACE;
1706                         aclp->z_ops.ace_flags_set(acep,
1707                             newflags|ACE_INHERITED_ACE);
1708                 } else {
1709                         newflags &= ~ACE_INHERIT_ONLY_ACE;
1710                         aclp->z_ops.ace_flags_set(acep,
1711                             newflags|ACE_INHERITED_ACE);
1712                 }
1713         }
1714         return (aclp);
1715 }
1716
1717 /*
1718  * Create file system object initial permissions
1719  * including inheritable ACEs.
1720  */
1721 int
1722 zfs_acl_ids_create(znode_t *dzp, int flag, vattr_t *vap, cred_t *cr,
1723     vsecattr_t *vsecp, zfs_acl_ids_t *acl_ids)
1724 {
1725         int             error;
1726         zfsvfs_t        *zfsvfs = dzp->z_zfsvfs;
1727         zfs_acl_t       *paclp;
1728 #ifdef HAVE_KSID
1729         gid_t           gid;
1730 #endif /* HAVE_KSID */
1731         boolean_t       need_chmod = B_TRUE;
1732         boolean_t       inherited = B_FALSE;
1733
1734         bzero(acl_ids, sizeof (zfs_acl_ids_t));
1735         acl_ids->z_mode = MAKEIMODE(vap->va_type, vap->va_mode);
1736
1737         if (vsecp)
1738                 if ((error = zfs_vsec_2_aclp(zfsvfs, vap->va_type, vsecp, cr,
1739                     &acl_ids->z_fuidp, &acl_ids->z_aclp)) != 0)
1740                         return (error);
1741
1742         acl_ids->z_fuid = vap->va_uid;
1743         acl_ids->z_fgid = vap->va_gid;
1744 #ifdef HAVE_KSID
1745         /*
1746          * Determine uid and gid.
1747          */
1748         if ((flag & IS_ROOT_NODE) || zfsvfs->z_replay ||
1749             ((flag & IS_XATTR) && (vap->va_type == VDIR))) {
1750                 acl_ids->z_fuid = zfs_fuid_create(zfsvfs,
1751                     (uint64_t)vap->va_uid, cr,
1752                     ZFS_OWNER, &acl_ids->z_fuidp);
1753                 acl_ids->z_fgid = zfs_fuid_create(zfsvfs,
1754                     (uint64_t)vap->va_gid, cr,
1755                     ZFS_GROUP, &acl_ids->z_fuidp);
1756                 gid = vap->va_gid;
1757         } else {
1758                 acl_ids->z_fuid = zfs_fuid_create_cred(zfsvfs, ZFS_OWNER,
1759                     cr, &acl_ids->z_fuidp);
1760                 acl_ids->z_fgid = 0;
1761                 if (vap->va_mask & AT_GID)  {
1762                         acl_ids->z_fgid = zfs_fuid_create(zfsvfs,
1763                             (uint64_t)vap->va_gid,
1764                             cr, ZFS_GROUP, &acl_ids->z_fuidp);
1765                         gid = vap->va_gid;
1766                         if (acl_ids->z_fgid != dzp->z_gid &&
1767                             !groupmember(vap->va_gid, cr) &&
1768                             secpolicy_vnode_create_gid(cr) != 0)
1769                                 acl_ids->z_fgid = 0;
1770                 }
1771                 if (acl_ids->z_fgid == 0) {
1772                         if (dzp->z_mode & S_ISGID) {
1773                                 char            *domain;
1774                                 uint32_t        rid;
1775
1776                                 acl_ids->z_fgid = dzp->z_gid;
1777                                 gid = zfs_fuid_map_id(zfsvfs, acl_ids->z_fgid,
1778                                     cr, ZFS_GROUP);
1779
1780                                 if (zfsvfs->z_use_fuids &&
1781                                     IS_EPHEMERAL(acl_ids->z_fgid)) {
1782                                         domain = zfs_fuid_idx_domain(
1783                                             &zfsvfs->z_fuid_idx,
1784                                             FUID_INDEX(acl_ids->z_fgid));
1785                                         rid = FUID_RID(acl_ids->z_fgid);
1786                                         zfs_fuid_node_add(&acl_ids->z_fuidp,
1787                                             domain, rid,
1788                                             FUID_INDEX(acl_ids->z_fgid),
1789                                             acl_ids->z_fgid, ZFS_GROUP);
1790                                 }
1791                         } else {
1792                                 acl_ids->z_fgid = zfs_fuid_create_cred(zfsvfs,
1793                                     ZFS_GROUP, cr, &acl_ids->z_fuidp);
1794                                 gid = crgetgid(cr);
1795                         }
1796                 }
1797         }
1798 #endif /* HAVE_KSID */
1799
1800         /*
1801          * If we're creating a directory, and the parent directory has the
1802          * set-GID bit set, set in on the new directory.
1803          * Otherwise, if the user is neither privileged nor a member of the
1804          * file's new group, clear the file's set-GID bit.
1805          */
1806
1807         if (!(flag & IS_ROOT_NODE) && (dzp->z_mode & S_ISGID) &&
1808             (vap->va_type == VDIR)) {
1809                 acl_ids->z_mode |= S_ISGID;
1810         } else {
1811                 if ((acl_ids->z_mode & S_ISGID) &&
1812                     secpolicy_vnode_setids_setgids(cr, gid) != 0)
1813                         acl_ids->z_mode &= ~S_ISGID;
1814         }
1815
1816         if (acl_ids->z_aclp == NULL) {
1817                 mutex_enter(&dzp->z_acl_lock);
1818                 mutex_enter(&dzp->z_lock);
1819                 if (!(flag & IS_ROOT_NODE) && (ZTOV(dzp)->v_type == VDIR &&
1820                     (dzp->z_pflags & ZFS_INHERIT_ACE)) &&
1821                     !(dzp->z_pflags & ZFS_XATTR)) {
1822                         VERIFY(0 == zfs_acl_node_read(dzp, B_TRUE,
1823                             &paclp, B_FALSE));
1824                         acl_ids->z_aclp = zfs_acl_inherit(zfsvfs,
1825                             vap->va_type, paclp, acl_ids->z_mode, &need_chmod);
1826                         inherited = B_TRUE;
1827                 } else {
1828                         acl_ids->z_aclp =
1829                             zfs_acl_alloc(zfs_acl_version_zp(dzp));
1830                         acl_ids->z_aclp->z_hints |= ZFS_ACL_TRIVIAL;
1831                 }
1832                 mutex_exit(&dzp->z_lock);
1833                 mutex_exit(&dzp->z_acl_lock);
1834                 if (need_chmod) {
1835                         acl_ids->z_aclp->z_hints |= (vap->va_type == VDIR) ?
1836                             ZFS_ACL_AUTO_INHERIT : 0;
1837                         zfs_acl_chmod(zfsvfs, acl_ids->z_mode, acl_ids->z_aclp);
1838                 }
1839         }
1840
1841         if (inherited || vsecp) {
1842                 acl_ids->z_mode = zfs_mode_compute(acl_ids->z_mode,
1843                     acl_ids->z_aclp, &acl_ids->z_aclp->z_hints,
1844                     acl_ids->z_fuid, acl_ids->z_fgid);
1845                 if (ace_trivial_common(acl_ids->z_aclp, 0, zfs_ace_walk) == 0)
1846                         acl_ids->z_aclp->z_hints |= ZFS_ACL_TRIVIAL;
1847         }
1848
1849         return (0);
1850 }
1851
1852 /*
1853  * Free ACL and fuid_infop, but not the acl_ids structure
1854  */
1855 void
1856 zfs_acl_ids_free(zfs_acl_ids_t *acl_ids)
1857 {
1858         if (acl_ids->z_aclp)
1859                 zfs_acl_free(acl_ids->z_aclp);
1860         if (acl_ids->z_fuidp)
1861                 zfs_fuid_info_free(acl_ids->z_fuidp);
1862         acl_ids->z_aclp = NULL;
1863         acl_ids->z_fuidp = NULL;
1864 }
1865
1866 boolean_t
1867 zfs_acl_ids_overquota(zfsvfs_t *zfsvfs, zfs_acl_ids_t *acl_ids)
1868 {
1869         return (zfs_fuid_overquota(zfsvfs, B_FALSE, acl_ids->z_fuid) ||
1870             zfs_fuid_overquota(zfsvfs, B_TRUE, acl_ids->z_fgid));
1871 }
1872
1873 /*
1874  * Retrieve a files ACL
1875  */
1876 int
1877 zfs_getacl(znode_t *zp, vsecattr_t *vsecp, boolean_t skipaclchk, cred_t *cr)
1878 {
1879         zfs_acl_t       *aclp;
1880         ulong_t         mask;
1881         int             error;
1882         int             count = 0;
1883         int             largeace = 0;
1884
1885         mask = vsecp->vsa_mask & (VSA_ACE | VSA_ACECNT |
1886             VSA_ACE_ACLFLAGS | VSA_ACE_ALLTYPES);
1887
1888         if (mask == 0)
1889                 return (ENOSYS);
1890
1891         if ((error = zfs_zaccess(zp, ACE_READ_ACL, 0, skipaclchk, cr)))
1892                 return (error);
1893
1894         mutex_enter(&zp->z_acl_lock);
1895
1896         error = zfs_acl_node_read(zp, B_FALSE, &aclp, B_FALSE);
1897         if (error != 0) {
1898                 mutex_exit(&zp->z_acl_lock);
1899                 return (error);
1900         }
1901
1902         /*
1903          * Scan ACL to determine number of ACEs
1904          */
1905         if ((zp->z_pflags & ZFS_ACL_OBJ_ACE) && !(mask & VSA_ACE_ALLTYPES)) {
1906                 void *zacep = NULL;
1907                 uint64_t who;
1908                 uint32_t access_mask;
1909                 uint16_t type, iflags;
1910
1911                 while ((zacep = zfs_acl_next_ace(aclp, zacep,
1912                     &who, &access_mask, &iflags, &type))) {
1913                         switch (type) {
1914                         case ACE_ACCESS_ALLOWED_OBJECT_ACE_TYPE:
1915                         case ACE_ACCESS_DENIED_OBJECT_ACE_TYPE:
1916                         case ACE_SYSTEM_AUDIT_OBJECT_ACE_TYPE:
1917                         case ACE_SYSTEM_ALARM_OBJECT_ACE_TYPE:
1918                                 largeace++;
1919                                 continue;
1920                         default:
1921                                 count++;
1922                         }
1923                 }
1924                 vsecp->vsa_aclcnt = count;
1925         } else
1926                 count = (int)aclp->z_acl_count;
1927
1928         if (mask & VSA_ACECNT) {
1929                 vsecp->vsa_aclcnt = count;
1930         }
1931
1932         if (mask & VSA_ACE) {
1933                 size_t aclsz;
1934
1935                 aclsz = count * sizeof (ace_t) +
1936                     sizeof (ace_object_t) * largeace;
1937
1938                 vsecp->vsa_aclentp = kmem_alloc(aclsz, KM_SLEEP);
1939                 vsecp->vsa_aclentsz = aclsz;
1940
1941                 if (aclp->z_version == ZFS_ACL_VERSION_FUID)
1942                         zfs_copy_fuid_2_ace(zp->z_zfsvfs, aclp, cr,
1943                             vsecp->vsa_aclentp, !(mask & VSA_ACE_ALLTYPES));
1944                 else {
1945                         zfs_acl_node_t *aclnode;
1946                         void *start = vsecp->vsa_aclentp;
1947
1948                         for (aclnode = list_head(&aclp->z_acl); aclnode;
1949                             aclnode = list_next(&aclp->z_acl, aclnode)) {
1950                                 bcopy(aclnode->z_acldata, start,
1951                                     aclnode->z_size);
1952                                 start = (caddr_t)start + aclnode->z_size;
1953                         }
1954                         ASSERT((caddr_t)start - (caddr_t)vsecp->vsa_aclentp ==
1955                             aclp->z_acl_bytes);
1956                 }
1957         }
1958         if (mask & VSA_ACE_ACLFLAGS) {
1959                 vsecp->vsa_aclflags = 0;
1960                 if (zp->z_pflags & ZFS_ACL_DEFAULTED)
1961                         vsecp->vsa_aclflags |= ACL_DEFAULTED;
1962                 if (zp->z_pflags & ZFS_ACL_PROTECTED)
1963                         vsecp->vsa_aclflags |= ACL_PROTECTED;
1964                 if (zp->z_pflags & ZFS_ACL_AUTO_INHERIT)
1965                         vsecp->vsa_aclflags |= ACL_AUTO_INHERIT;
1966         }
1967
1968         mutex_exit(&zp->z_acl_lock);
1969
1970         return (0);
1971 }
1972
1973 int
1974 zfs_vsec_2_aclp(zfsvfs_t *zfsvfs, vtype_t obj_type,
1975     vsecattr_t *vsecp, cred_t *cr, zfs_fuid_info_t **fuidp, zfs_acl_t **zaclp)
1976 {
1977         zfs_acl_t *aclp;
1978         zfs_acl_node_t *aclnode;
1979         int aclcnt = vsecp->vsa_aclcnt;
1980         int error;
1981
1982         if (vsecp->vsa_aclcnt > MAX_ACL_ENTRIES || vsecp->vsa_aclcnt <= 0)
1983                 return (EINVAL);
1984
1985         aclp = zfs_acl_alloc(zfs_acl_version(zfsvfs->z_version));
1986
1987         aclp->z_hints = 0;
1988         aclnode = zfs_acl_node_alloc(aclcnt * sizeof (zfs_object_ace_t));
1989         if (aclp->z_version == ZFS_ACL_VERSION_INITIAL) {
1990                 if ((error = zfs_copy_ace_2_oldace(obj_type, aclp,
1991                     (ace_t *)vsecp->vsa_aclentp, aclnode->z_acldata,
1992                     aclcnt, &aclnode->z_size)) != 0) {
1993                         zfs_acl_free(aclp);
1994                         zfs_acl_node_free(aclnode);
1995                         return (error);
1996                 }
1997         } else {
1998                 if ((error = zfs_copy_ace_2_fuid(zfsvfs, obj_type, aclp,
1999                     vsecp->vsa_aclentp, aclnode->z_acldata, aclcnt,
2000                     &aclnode->z_size, fuidp, cr)) != 0) {
2001                         zfs_acl_free(aclp);
2002                         zfs_acl_node_free(aclnode);
2003                         return (error);
2004                 }
2005         }
2006         aclp->z_acl_bytes = aclnode->z_size;
2007         aclnode->z_ace_count = aclcnt;
2008         aclp->z_acl_count = aclcnt;
2009         list_insert_head(&aclp->z_acl, aclnode);
2010
2011         /*
2012          * If flags are being set then add them to z_hints
2013          */
2014         if (vsecp->vsa_mask & VSA_ACE_ACLFLAGS) {
2015                 if (vsecp->vsa_aclflags & ACL_PROTECTED)
2016                         aclp->z_hints |= ZFS_ACL_PROTECTED;
2017                 if (vsecp->vsa_aclflags & ACL_DEFAULTED)
2018                         aclp->z_hints |= ZFS_ACL_DEFAULTED;
2019                 if (vsecp->vsa_aclflags & ACL_AUTO_INHERIT)
2020                         aclp->z_hints |= ZFS_ACL_AUTO_INHERIT;
2021         }
2022
2023         *zaclp = aclp;
2024
2025         return (0);
2026 }
2027
2028 /*
2029  * Set a files ACL
2030  */
2031 int
2032 zfs_setacl(znode_t *zp, vsecattr_t *vsecp, boolean_t skipaclchk, cred_t *cr)
2033 {
2034         zfsvfs_t        *zfsvfs = zp->z_zfsvfs;
2035         zilog_t         *zilog = zfsvfs->z_log;
2036         ulong_t         mask = vsecp->vsa_mask & (VSA_ACE | VSA_ACECNT);
2037         dmu_tx_t        *tx;
2038         int             error;
2039         zfs_acl_t       *aclp;
2040         zfs_fuid_info_t *fuidp = NULL;
2041         boolean_t       fuid_dirtied;
2042         uint64_t        acl_obj;
2043
2044         if (mask == 0)
2045                 return (ENOSYS);
2046
2047         if (zp->z_pflags & ZFS_IMMUTABLE)
2048                 return (EPERM);
2049
2050         if ((error = zfs_zaccess(zp, ACE_WRITE_ACL, 0, skipaclchk, cr)))
2051                 return (error);
2052
2053         error = zfs_vsec_2_aclp(zfsvfs, ZTOV(zp)->v_type, vsecp, cr, &fuidp,
2054             &aclp);
2055         if (error)
2056                 return (error);
2057
2058         /*
2059          * If ACL wide flags aren't being set then preserve any
2060          * existing flags.
2061          */
2062         if (!(vsecp->vsa_mask & VSA_ACE_ACLFLAGS)) {
2063                 aclp->z_hints |=
2064                     (zp->z_pflags & V4_ACL_WIDE_FLAGS);
2065         }
2066 top:
2067         mutex_enter(&zp->z_acl_lock);
2068         mutex_enter(&zp->z_lock);
2069
2070         tx = dmu_tx_create(zfsvfs->z_os);
2071
2072         dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_TRUE);
2073
2074         fuid_dirtied = zfsvfs->z_fuid_dirty;
2075         if (fuid_dirtied)
2076                 zfs_fuid_txhold(zfsvfs, tx);
2077
2078         /*
2079          * If old version and ACL won't fit in bonus and we aren't
2080          * upgrading then take out necessary DMU holds
2081          */
2082
2083         if ((acl_obj = zfs_external_acl(zp)) != 0) {
2084                 if (zfsvfs->z_version >= ZPL_VERSION_FUID &&
2085                     zfs_znode_acl_version(zp) <= ZFS_ACL_VERSION_INITIAL) {
2086                         dmu_tx_hold_free(tx, acl_obj, 0,
2087                             DMU_OBJECT_END);
2088                         dmu_tx_hold_write(tx, DMU_NEW_OBJECT, 0,
2089                             aclp->z_acl_bytes);
2090                 } else {
2091                         dmu_tx_hold_write(tx, acl_obj, 0, aclp->z_acl_bytes);
2092                 }
2093         } else if (!zp->z_is_sa && aclp->z_acl_bytes > ZFS_ACE_SPACE) {
2094                 dmu_tx_hold_write(tx, DMU_NEW_OBJECT, 0, aclp->z_acl_bytes);
2095         }
2096
2097         zfs_sa_upgrade_txholds(tx, zp);
2098         error = dmu_tx_assign(tx, TXG_NOWAIT);
2099         if (error) {
2100                 mutex_exit(&zp->z_acl_lock);
2101                 mutex_exit(&zp->z_lock);
2102
2103                 if (error == ERESTART) {
2104                         dmu_tx_wait(tx);
2105                         dmu_tx_abort(tx);
2106                         goto top;
2107                 }
2108                 dmu_tx_abort(tx);
2109                 zfs_acl_free(aclp);
2110                 return (error);
2111         }
2112
2113         error = zfs_aclset_common(zp, aclp, cr, tx);
2114         ASSERT(error == 0);
2115         ASSERT(zp->z_acl_cached == NULL);
2116         zp->z_acl_cached = aclp;
2117
2118         if (fuid_dirtied)
2119                 zfs_fuid_sync(zfsvfs, tx);
2120
2121         zfs_log_acl(zilog, tx, zp, vsecp, fuidp);
2122
2123         if (fuidp)
2124                 zfs_fuid_info_free(fuidp);
2125         dmu_tx_commit(tx);
2126
2127         mutex_exit(&zp->z_lock);
2128         mutex_exit(&zp->z_acl_lock);
2129
2130         return (error);
2131 }
2132
2133 /*
2134  * Check accesses of interest (AoI) against attributes of the dataset
2135  * such as read-only.  Returns zero if no AoI conflict with dataset
2136  * attributes, otherwise an appropriate errno is returned.
2137  */
2138 static int
2139 zfs_zaccess_dataset_check(znode_t *zp, uint32_t v4_mode)
2140 {
2141         if ((v4_mode & WRITE_MASK) &&
2142             (zp->z_zfsvfs->z_vfs->vfs_flag & VFS_RDONLY) &&
2143             (!IS_DEVVP(ZTOV(zp)) ||
2144             (IS_DEVVP(ZTOV(zp)) && (v4_mode & WRITE_MASK_ATTRS)))) {
2145                 return (EROFS);
2146         }
2147
2148         /*
2149          * Only check for READONLY on non-directories.
2150          */
2151         if ((v4_mode & WRITE_MASK_DATA) &&
2152             (((ZTOV(zp)->v_type != VDIR) &&
2153             (zp->z_pflags & (ZFS_READONLY | ZFS_IMMUTABLE))) ||
2154             (ZTOV(zp)->v_type == VDIR &&
2155             (zp->z_pflags & ZFS_IMMUTABLE)))) {
2156                 return (EPERM);
2157         }
2158
2159         if ((v4_mode & (ACE_DELETE | ACE_DELETE_CHILD)) &&
2160             (zp->z_pflags & ZFS_NOUNLINK)) {
2161                 return (EPERM);
2162         }
2163
2164         if (((v4_mode & (ACE_READ_DATA|ACE_EXECUTE)) &&
2165             (zp->z_pflags & ZFS_AV_QUARANTINED))) {
2166                 return (EACCES);
2167         }
2168
2169         return (0);
2170 }
2171
2172 /*
2173  * The primary usage of this function is to loop through all of the
2174  * ACEs in the znode, determining what accesses of interest (AoI) to
2175  * the caller are allowed or denied.  The AoI are expressed as bits in
2176  * the working_mode parameter.  As each ACE is processed, bits covered
2177  * by that ACE are removed from the working_mode.  This removal
2178  * facilitates two things.  The first is that when the working mode is
2179  * empty (= 0), we know we've looked at all the AoI. The second is
2180  * that the ACE interpretation rules don't allow a later ACE to undo
2181  * something granted or denied by an earlier ACE.  Removing the
2182  * discovered access or denial enforces this rule.  At the end of
2183  * processing the ACEs, all AoI that were found to be denied are
2184  * placed into the working_mode, giving the caller a mask of denied
2185  * accesses.  Returns:
2186  *      0               if all AoI granted
2187  *      EACCESS         if the denied mask is non-zero
2188  *      other error     if abnormal failure (e.g., IO error)
2189  *
2190  * A secondary usage of the function is to determine if any of the
2191  * AoI are granted.  If an ACE grants any access in
2192  * the working_mode, we immediately short circuit out of the function.
2193  * This mode is chosen by setting anyaccess to B_TRUE.  The
2194  * working_mode is not a denied access mask upon exit if the function
2195  * is used in this manner.
2196  */
2197 static int
2198 zfs_zaccess_aces_check(znode_t *zp, uint32_t *working_mode,
2199     boolean_t anyaccess, cred_t *cr)
2200 {
2201         zfsvfs_t        *zfsvfs = zp->z_zfsvfs;
2202         zfs_acl_t       *aclp;
2203         int             error;
2204         uid_t           uid = crgetuid(cr);
2205         uint64_t        who;
2206         uint16_t        type, iflags;
2207         uint16_t        entry_type;
2208         uint32_t        access_mask;
2209         uint32_t        deny_mask = 0;
2210         zfs_ace_hdr_t   *acep = NULL;
2211         boolean_t       checkit;
2212         uid_t           gowner;
2213         uid_t           fowner;
2214
2215         zfs_fuid_map_ids(zp, cr, &fowner, &gowner);
2216
2217         mutex_enter(&zp->z_acl_lock);
2218
2219         error = zfs_acl_node_read(zp, B_FALSE, &aclp, B_FALSE);
2220         if (error != 0) {
2221                 mutex_exit(&zp->z_acl_lock);
2222                 return (error);
2223         }
2224
2225         ASSERT(zp->z_acl_cached);
2226
2227         while ((acep = zfs_acl_next_ace(aclp, acep, &who, &access_mask,
2228             &iflags, &type))) {
2229                 uint32_t mask_matched;
2230
2231                 if (!zfs_acl_valid_ace_type(type, iflags))
2232                         continue;
2233
2234                 if (ZTOV(zp)->v_type == VDIR && (iflags & ACE_INHERIT_ONLY_ACE))
2235                         continue;
2236
2237                 /* Skip ACE if it does not affect any AoI */
2238                 mask_matched = (access_mask & *working_mode);
2239                 if (!mask_matched)
2240                         continue;
2241
2242                 entry_type = (iflags & ACE_TYPE_FLAGS);
2243
2244                 checkit = B_FALSE;
2245
2246                 switch (entry_type) {
2247                 case ACE_OWNER:
2248                         if (uid == fowner)
2249                                 checkit = B_TRUE;
2250                         break;
2251                 case OWNING_GROUP:
2252                         who = gowner;
2253                         /*FALLTHROUGH*/
2254                 case ACE_IDENTIFIER_GROUP:
2255                         checkit = zfs_groupmember(zfsvfs, who, cr);
2256                         break;
2257                 case ACE_EVERYONE:
2258                         checkit = B_TRUE;
2259                         break;
2260
2261                 /* USER Entry */
2262                 default:
2263                         if (entry_type == 0) {
2264                                 uid_t newid;
2265
2266                                 newid = zfs_fuid_map_id(zfsvfs, who, cr,
2267                                     ZFS_ACE_USER);
2268                                 if (newid != IDMAP_WK_CREATOR_OWNER_UID &&
2269                                     uid == newid)
2270                                         checkit = B_TRUE;
2271                                 break;
2272                         } else {
2273                                 mutex_exit(&zp->z_acl_lock);
2274                                 return (EIO);
2275                         }
2276                 }
2277
2278                 if (checkit) {
2279                         if (type == DENY) {
2280                                 DTRACE_PROBE3(zfs__ace__denies,
2281                                     znode_t *, zp,
2282                                     zfs_ace_hdr_t *, acep,
2283                                     uint32_t, mask_matched);
2284                                 deny_mask |= mask_matched;
2285                         } else {
2286                                 DTRACE_PROBE3(zfs__ace__allows,
2287                                     znode_t *, zp,
2288                                     zfs_ace_hdr_t *, acep,
2289                                     uint32_t, mask_matched);
2290                                 if (anyaccess) {
2291                                         mutex_exit(&zp->z_acl_lock);
2292                                         return (0);
2293                                 }
2294                         }
2295                         *working_mode &= ~mask_matched;
2296                 }
2297
2298                 /* Are we done? */
2299                 if (*working_mode == 0)
2300                         break;
2301         }
2302
2303         mutex_exit(&zp->z_acl_lock);
2304
2305         /* Put the found 'denies' back on the working mode */
2306         if (deny_mask) {
2307                 *working_mode |= deny_mask;
2308                 return (EACCES);
2309         } else if (*working_mode) {
2310                 return (-1);
2311         }
2312
2313         return (0);
2314 }
2315
2316 /*
2317  * Return true if any access whatsoever granted, we don't actually
2318  * care what access is granted.
2319  */
2320 boolean_t
2321 zfs_has_access(znode_t *zp, cred_t *cr)
2322 {
2323         uint32_t have = ACE_ALL_PERMS;
2324
2325         if (zfs_zaccess_aces_check(zp, &have, B_TRUE, cr) != 0) {
2326                 uid_t owner;
2327
2328                 owner = zfs_fuid_map_id(zp->z_zfsvfs, zp->z_uid, cr, ZFS_OWNER);
2329                 return (secpolicy_vnode_any_access(cr, ZTOV(zp), owner) == 0);
2330         }
2331         return (B_TRUE);
2332 }
2333
2334 static int
2335 zfs_zaccess_common(znode_t *zp, uint32_t v4_mode, uint32_t *working_mode,
2336     boolean_t *check_privs, boolean_t skipaclchk, cred_t *cr)
2337 {
2338         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
2339         int err;
2340
2341         *working_mode = v4_mode;
2342         *check_privs = B_TRUE;
2343
2344         /*
2345          * Short circuit empty requests
2346          */
2347         if (v4_mode == 0 || zfsvfs->z_replay) {
2348                 *working_mode = 0;
2349                 return (0);
2350         }
2351
2352         if ((err = zfs_zaccess_dataset_check(zp, v4_mode)) != 0) {
2353                 *check_privs = B_FALSE;
2354                 return (err);
2355         }
2356
2357         /*
2358          * The caller requested that the ACL check be skipped.  This
2359          * would only happen if the caller checked VOP_ACCESS() with a
2360          * 32 bit ACE mask and already had the appropriate permissions.
2361          */
2362         if (skipaclchk) {
2363                 *working_mode = 0;
2364                 return (0);
2365         }
2366
2367         return (zfs_zaccess_aces_check(zp, working_mode, B_FALSE, cr));
2368 }
2369
2370 static int
2371 zfs_zaccess_append(znode_t *zp, uint32_t *working_mode, boolean_t *check_privs,
2372     cred_t *cr)
2373 {
2374         if (*working_mode != ACE_WRITE_DATA)
2375                 return (EACCES);
2376
2377         return (zfs_zaccess_common(zp, ACE_APPEND_DATA, working_mode,
2378             check_privs, B_FALSE, cr));
2379 }
2380
2381 int
2382 zfs_fastaccesschk_execute(znode_t *zdp, cred_t *cr)
2383 {
2384         boolean_t owner = B_FALSE;
2385         boolean_t groupmbr = B_FALSE;
2386         boolean_t is_attr;
2387         uid_t uid = crgetuid(cr);
2388         int error;
2389
2390         if (zdp->z_pflags & ZFS_AV_QUARANTINED)
2391                 return (EACCES);
2392
2393         is_attr = ((zdp->z_pflags & ZFS_XATTR) &&
2394             (ZTOV(zdp)->v_type == VDIR));
2395         if (is_attr)
2396                 goto slow;
2397
2398
2399         mutex_enter(&zdp->z_acl_lock);
2400
2401         if (zdp->z_pflags & ZFS_NO_EXECS_DENIED) {
2402                 mutex_exit(&zdp->z_acl_lock);
2403                 return (0);
2404         }
2405
2406         if (FUID_INDEX(zdp->z_uid) != 0 || FUID_INDEX(zdp->z_gid) != 0) {
2407                 mutex_exit(&zdp->z_acl_lock);
2408                 goto slow;
2409         }
2410
2411         if (uid == zdp->z_uid) {
2412                 owner = B_TRUE;
2413                 if (zdp->z_mode & S_IXUSR) {
2414                         mutex_exit(&zdp->z_acl_lock);
2415                         return (0);
2416                 } else {
2417                         mutex_exit(&zdp->z_acl_lock);
2418                         goto slow;
2419                 }
2420         }
2421         if (groupmember(zdp->z_gid, cr)) {
2422                 groupmbr = B_TRUE;
2423                 if (zdp->z_mode & S_IXGRP) {
2424                         mutex_exit(&zdp->z_acl_lock);
2425                         return (0);
2426                 } else {
2427                         mutex_exit(&zdp->z_acl_lock);
2428                         goto slow;
2429                 }
2430         }
2431         if (!owner && !groupmbr) {
2432                 if (zdp->z_mode & S_IXOTH) {
2433                         mutex_exit(&zdp->z_acl_lock);
2434                         return (0);
2435                 }
2436         }
2437
2438         mutex_exit(&zdp->z_acl_lock);
2439
2440 slow:
2441         DTRACE_PROBE(zfs__fastpath__execute__access__miss);
2442         ZFS_ENTER(zdp->z_zfsvfs);
2443         error = zfs_zaccess(zdp, ACE_EXECUTE, 0, B_FALSE, cr);
2444         ZFS_EXIT(zdp->z_zfsvfs);
2445         return (error);
2446 }
2447
2448 /*
2449  * Determine whether Access should be granted/denied.
2450  * The least priv subsytem is always consulted as a basic privilege
2451  * can define any form of access.
2452  */
2453 int
2454 zfs_zaccess(znode_t *zp, int mode, int flags, boolean_t skipaclchk, cred_t *cr)
2455 {
2456         uint32_t        working_mode;
2457         int             error;
2458         int             is_attr;
2459         boolean_t       check_privs;
2460         znode_t         *xzp;
2461         znode_t         *check_zp = zp;
2462         mode_t          needed_bits;
2463         uid_t           owner;
2464
2465         is_attr = ((zp->z_pflags & ZFS_XATTR) && (ZTOV(zp)->v_type == VDIR));
2466
2467         /*
2468          * If attribute then validate against base file
2469          */
2470         if (is_attr) {
2471                 uint64_t        parent;
2472
2473                 if ((error = sa_lookup(zp->z_sa_hdl,
2474                     SA_ZPL_PARENT(zp->z_zfsvfs), &parent,
2475                     sizeof (parent))) != 0)
2476                         return (error);
2477
2478                 if ((error = zfs_zget(zp->z_zfsvfs,
2479                     parent, &xzp)) != 0)        {
2480                         return (error);
2481                 }
2482
2483                 check_zp = xzp;
2484
2485                 /*
2486                  * fixup mode to map to xattr perms
2487                  */
2488
2489                 if (mode & (ACE_WRITE_DATA|ACE_APPEND_DATA)) {
2490                         mode &= ~(ACE_WRITE_DATA|ACE_APPEND_DATA);
2491                         mode |= ACE_WRITE_NAMED_ATTRS;
2492                 }
2493
2494                 if (mode & (ACE_READ_DATA|ACE_EXECUTE)) {
2495                         mode &= ~(ACE_READ_DATA|ACE_EXECUTE);
2496                         mode |= ACE_READ_NAMED_ATTRS;
2497                 }
2498         }
2499
2500         owner = zfs_fuid_map_id(zp->z_zfsvfs, zp->z_uid, cr, ZFS_OWNER);
2501         /*
2502          * Map the bits required to the standard vnode flags VREAD|VWRITE|VEXEC
2503          * in needed_bits.  Map the bits mapped by working_mode (currently
2504          * missing) in missing_bits.
2505          * Call secpolicy_vnode_access2() with (needed_bits & ~checkmode),
2506          * needed_bits.
2507          */
2508         needed_bits = 0;
2509
2510         working_mode = mode;
2511         if ((working_mode & (ACE_READ_ACL|ACE_READ_ATTRIBUTES)) &&
2512             owner == crgetuid(cr))
2513                 working_mode &= ~(ACE_READ_ACL|ACE_READ_ATTRIBUTES);
2514
2515         if (working_mode & (ACE_READ_DATA|ACE_READ_NAMED_ATTRS|
2516             ACE_READ_ACL|ACE_READ_ATTRIBUTES|ACE_SYNCHRONIZE))
2517                 needed_bits |= VREAD;
2518         if (working_mode & (ACE_WRITE_DATA|ACE_WRITE_NAMED_ATTRS|
2519             ACE_APPEND_DATA|ACE_WRITE_ATTRIBUTES|ACE_SYNCHRONIZE))
2520                 needed_bits |= VWRITE;
2521         if (working_mode & ACE_EXECUTE)
2522                 needed_bits |= VEXEC;
2523
2524         if ((error = zfs_zaccess_common(check_zp, mode, &working_mode,
2525             &check_privs, skipaclchk, cr)) == 0) {
2526                 if (is_attr)
2527                         VN_RELE(ZTOV(xzp));
2528                 return (secpolicy_vnode_access2(cr, ZTOV(zp), owner,
2529                     needed_bits, needed_bits));
2530         }
2531
2532         if (error && !check_privs) {
2533                 if (is_attr)
2534                         VN_RELE(ZTOV(xzp));
2535                 return (error);
2536         }
2537
2538         if (error && (flags & V_APPEND)) {
2539                 error = zfs_zaccess_append(zp, &working_mode, &check_privs, cr);
2540         }
2541
2542         if (error && check_privs) {
2543                 mode_t          checkmode = 0;
2544
2545                 /*
2546                  * First check for implicit owner permission on
2547                  * read_acl/read_attributes
2548                  */
2549
2550                 error = 0;
2551                 ASSERT(working_mode != 0);
2552
2553                 if ((working_mode & (ACE_READ_ACL|ACE_READ_ATTRIBUTES) &&
2554                     owner == crgetuid(cr)))
2555                         working_mode &= ~(ACE_READ_ACL|ACE_READ_ATTRIBUTES);
2556
2557                 if (working_mode & (ACE_READ_DATA|ACE_READ_NAMED_ATTRS|
2558                     ACE_READ_ACL|ACE_READ_ATTRIBUTES|ACE_SYNCHRONIZE))
2559                         checkmode |= VREAD;
2560                 if (working_mode & (ACE_WRITE_DATA|ACE_WRITE_NAMED_ATTRS|
2561                     ACE_APPEND_DATA|ACE_WRITE_ATTRIBUTES|ACE_SYNCHRONIZE))
2562                         checkmode |= VWRITE;
2563                 if (working_mode & ACE_EXECUTE)
2564                         checkmode |= VEXEC;
2565
2566                 error = secpolicy_vnode_access2(cr, ZTOV(check_zp), owner,
2567                     needed_bits & ~checkmode, needed_bits);
2568
2569                 if (error == 0 && (working_mode & ACE_WRITE_OWNER))
2570                         error = secpolicy_vnode_chown(cr, owner);
2571                 if (error == 0 && (working_mode & ACE_WRITE_ACL))
2572                         error = secpolicy_vnode_setdac(cr, owner);
2573
2574                 if (error == 0 && (working_mode &
2575                     (ACE_DELETE|ACE_DELETE_CHILD)))
2576                         error = secpolicy_vnode_remove(cr);
2577
2578                 if (error == 0 && (working_mode & ACE_SYNCHRONIZE)) {
2579                         error = secpolicy_vnode_chown(cr, owner);
2580                 }
2581                 if (error == 0) {
2582                         /*
2583                          * See if any bits other than those already checked
2584                          * for are still present.  If so then return EACCES
2585                          */
2586                         if (working_mode & ~(ZFS_CHECKED_MASKS)) {
2587                                 error = EACCES;
2588                         }
2589                 }
2590         } else if (error == 0) {
2591                 error = secpolicy_vnode_access2(cr, ZTOV(zp), owner,
2592                     needed_bits, needed_bits);
2593         }
2594
2595
2596         if (is_attr)
2597                 VN_RELE(ZTOV(xzp));
2598
2599         return (error);
2600 }
2601
2602 /*
2603  * Translate traditional unix VREAD/VWRITE/VEXEC mode into
2604  * native ACL format and call zfs_zaccess()
2605  */
2606 int
2607 zfs_zaccess_rwx(znode_t *zp, mode_t mode, int flags, cred_t *cr)
2608 {
2609         return (zfs_zaccess(zp, zfs_unix_to_v4(mode >> 6), flags, B_FALSE, cr));
2610 }
2611
2612 /*
2613  * Access function for secpolicy_vnode_setattr
2614  */
2615 int
2616 zfs_zaccess_unix(znode_t *zp, mode_t mode, cred_t *cr)
2617 {
2618         int v4_mode = zfs_unix_to_v4(mode >> 6);
2619
2620         return (zfs_zaccess(zp, v4_mode, 0, B_FALSE, cr));
2621 }
2622
2623 static int
2624 zfs_delete_final_check(znode_t *zp, znode_t *dzp,
2625     mode_t available_perms, cred_t *cr)
2626 {
2627         int error;
2628         uid_t downer;
2629
2630         downer = zfs_fuid_map_id(dzp->z_zfsvfs, dzp->z_uid, cr, ZFS_OWNER);
2631
2632         error = secpolicy_vnode_access2(cr, ZTOV(dzp),
2633             downer, available_perms, VWRITE|VEXEC);
2634
2635         if (error == 0)
2636                 error = zfs_sticky_remove_access(dzp, zp, cr);
2637
2638         return (error);
2639 }
2640
2641 /*
2642  * Determine whether Access should be granted/deny, without
2643  * consulting least priv subsystem.
2644  *
2645  *
2646  * The following chart is the recommended NFSv4 enforcement for
2647  * ability to delete an object.
2648  *
2649  *      -------------------------------------------------------
2650  *      |   Parent Dir  |           Target Object Permissions |
2651  *      |  permissions  |                                     |
2652  *      -------------------------------------------------------
2653  *      |               | ACL Allows | ACL Denies| Delete     |
2654  *      |               |  Delete    |  Delete   | unspecified|
2655  *      -------------------------------------------------------
2656  *      |  ACL Allows   | Permit     | Permit    | Permit     |
2657  *      |  DELETE_CHILD |                                     |
2658  *      -------------------------------------------------------
2659  *      |  ACL Denies   | Permit     | Deny      | Deny       |
2660  *      |  DELETE_CHILD |            |           |            |
2661  *      -------------------------------------------------------
2662  *      | ACL specifies |            |           |            |
2663  *      | only allow    | Permit     | Permit    | Permit     |
2664  *      | write and     |            |           |            |
2665  *      | execute       |            |           |            |
2666  *      -------------------------------------------------------
2667  *      | ACL denies    |            |           |            |
2668  *      | write and     | Permit     | Deny      | Deny       |
2669  *      | execute       |            |           |            |
2670  *      -------------------------------------------------------
2671  *         ^
2672  *         |
2673  *         No search privilege, can't even look up file?
2674  *
2675  */
2676 int
2677 zfs_zaccess_delete(znode_t *dzp, znode_t *zp, cred_t *cr)
2678 {
2679         uint32_t dzp_working_mode = 0;
2680         uint32_t zp_working_mode = 0;
2681         int dzp_error, zp_error;
2682         mode_t available_perms;
2683         boolean_t dzpcheck_privs = B_TRUE;
2684         boolean_t zpcheck_privs = B_TRUE;
2685
2686         /*
2687          * We want specific DELETE permissions to
2688          * take precedence over WRITE/EXECUTE.  We don't
2689          * want an ACL such as this to mess us up.
2690          * user:joe:write_data:deny,user:joe:delete:allow
2691          *
2692          * However, deny permissions may ultimately be overridden
2693          * by secpolicy_vnode_access().
2694          *
2695          * We will ask for all of the necessary permissions and then
2696          * look at the working modes from the directory and target object
2697          * to determine what was found.
2698          */
2699
2700         if (zp->z_pflags & (ZFS_IMMUTABLE | ZFS_NOUNLINK))
2701                 return (EPERM);
2702
2703         /*
2704          * First row
2705          * If the directory permissions allow the delete, we are done.
2706          */
2707         if ((dzp_error = zfs_zaccess_common(dzp, ACE_DELETE_CHILD,
2708             &dzp_working_mode, &dzpcheck_privs, B_FALSE, cr)) == 0)
2709                 return (0);
2710
2711         /*
2712          * If target object has delete permission then we are done
2713          */
2714         if ((zp_error = zfs_zaccess_common(zp, ACE_DELETE, &zp_working_mode,
2715             &zpcheck_privs, B_FALSE, cr)) == 0)
2716                 return (0);
2717
2718         ASSERT(dzp_error && zp_error);
2719
2720         if (!dzpcheck_privs)
2721                 return (dzp_error);
2722         if (!zpcheck_privs)
2723                 return (zp_error);
2724
2725         /*
2726          * Second row
2727          *
2728          * If directory returns EACCES then delete_child was denied
2729          * due to deny delete_child.  In this case send the request through
2730          * secpolicy_vnode_remove().  We don't use zfs_delete_final_check()
2731          * since that *could* allow the delete based on write/execute permission
2732          * and we want delete permissions to override write/execute.
2733          */
2734
2735         if (dzp_error == EACCES)
2736                 return (secpolicy_vnode_remove(cr));
2737
2738         /*
2739          * Third Row
2740          * only need to see if we have write/execute on directory.
2741          */
2742
2743         dzp_error = zfs_zaccess_common(dzp, ACE_EXECUTE|ACE_WRITE_DATA,
2744             &dzp_working_mode, &dzpcheck_privs, B_FALSE, cr);
2745
2746         if (dzp_error != 0 && !dzpcheck_privs)
2747                 return (dzp_error);
2748
2749         /*
2750          * Fourth row
2751          */
2752
2753         available_perms = (dzp_working_mode & ACE_WRITE_DATA) ? 0 : VWRITE;
2754         available_perms |= (dzp_working_mode & ACE_EXECUTE) ? 0 : VEXEC;
2755
2756         return (zfs_delete_final_check(zp, dzp, available_perms, cr));
2757
2758 }
2759
2760 int
2761 zfs_zaccess_rename(znode_t *sdzp, znode_t *szp, znode_t *tdzp,
2762     znode_t *tzp, cred_t *cr)
2763 {
2764         int add_perm;
2765         int error;
2766
2767         if (szp->z_pflags & ZFS_AV_QUARANTINED)
2768                 return (EACCES);
2769
2770         add_perm = (ZTOV(szp)->v_type == VDIR) ?
2771             ACE_ADD_SUBDIRECTORY : ACE_ADD_FILE;
2772
2773         /*
2774          * Rename permissions are combination of delete permission +
2775          * add file/subdir permission.
2776          */
2777
2778         /*
2779          * first make sure we do the delete portion.
2780          *
2781          * If that succeeds then check for add_file/add_subdir permissions
2782          */
2783
2784         if ((error = zfs_zaccess_delete(sdzp, szp, cr)))
2785                 return (error);
2786
2787         /*
2788          * If we have a tzp, see if we can delete it?
2789          */
2790         if (tzp) {
2791                 if ((error = zfs_zaccess_delete(tdzp, tzp, cr)))
2792                         return (error);
2793         }
2794
2795         /*
2796          * Now check for add permissions
2797          */
2798         error = zfs_zaccess(tdzp, add_perm, 0, B_FALSE, cr);
2799
2800         return (error);
2801 }