]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/acls.c
b14beb6fa42ea23d05668f7a09e92e911d4054d9
[netatalk.git] / etc / afpd / acls.c
1 /*
2   Copyright (c) 2008, 2009, 2010 Frank Lahm <franklahm@gmail.com>
3   Copyright (c) 2011 Laura Mueller <laura-mueller@uni-duesseldorf.de>
4
5   This program is free software; you can redistribute it and/or modify
6   it under the terms of the GNU General Public License as published by
7   the Free Software Foundation; either version 2 of the License, or
8   (at your option) any later version.
9
10   This program is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   GNU General Public License for more details.
14 */
15
16 #ifdef HAVE_CONFIG_H
17 #include "config.h"
18 #endif /* HAVE_CONFIG_H */
19
20 #include <string.h>
21 #include <strings.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <grp.h>
25 #include <pwd.h>
26 #include <errno.h>
27 #ifdef HAVE_SOLARIS_ACLS
28 #include <sys/acl.h>
29 #endif
30 #ifdef HAVE_POSIX_ACLS
31 #include <sys/acl.h>
32 #endif
33 #ifdef HAVE_ACL_LIBACL_H
34 #include <acl/libacl.h>
35 #endif
36
37 #include <atalk/errchk.h>
38 #include <atalk/adouble.h>
39 #include <atalk/vfs.h>
40 #include <atalk/afp.h>
41 #include <atalk/util.h>
42 #include <atalk/cnid.h>
43 #include <atalk/logger.h>
44 #include <atalk/uuid.h>
45 #include <atalk/acl.h>
46 #include <atalk/bstrlib.h>
47 #include <atalk/bstradd.h>
48 #include <atalk/unix.h>
49 #include <atalk/netatalk_conf.h>
50
51 #include "directory.h"
52 #include "desktop.h"
53 #include "volume.h"
54 #include "fork.h"
55 #include "unix.h"
56 #include "acls.h"
57 #include "acl_mappings.h"
58 #include "auth.h"
59
60 /* for map_acl() */
61 #define SOLARIS_2_DARWIN       1
62 #define DARWIN_2_SOLARIS       2
63 #define POSIX_DEFAULT_2_DARWIN 3
64 #define POSIX_ACCESS_2_DARWIN  4
65 #define DARWIN_2_POSIX_DEFAULT 5
66 #define DARWIN_2_POSIX_ACCESS  6
67
68 #define MAP_MASK               31
69 #define IS_DIR                 32
70
71 /* bit flags for set_acl() and map_aces_darwin_to_posix() */
72 #define HAS_DEFAULT_ACL 0x01
73 #define HAS_EXT_DEFAULT_ACL 0x02
74
75 /********************************************************
76  * Solaris funcs
77  ********************************************************/
78
79 #ifdef HAVE_SOLARIS_ACLS
80
81 /*! 
82  * Compile access rights for a user to one file-system object
83  *
84  * This combines combines all access rights for a user to one fs-object and
85  * returns the result as a Darwin allowed rights ACE.
86  * This must honor trivial ACEs which are a mode_t mapping.
87  *
88  * @param obj            (r) handle
89  * @param path           (r) path to filesystem object
90  * @param sb             (r) struct stat of path
91  * @param result         (w) resulting Darwin allow ACE
92  *
93  * @returns                  0 or -1 on error
94  */
95 static int solaris_acl_rights(const AFPObj *obj,
96                               const char *path,
97                               const struct stat *sb,
98                               uint32_t *result)
99 {
100     EC_INIT;
101     int      i, ace_count, checkgroup;
102     ace_t    *aces = NULL;
103     uid_t    who;
104     uint16_t flags, type;
105     uint32_t rights, allowed_rights = 0, denied_rights = 0, darwin_rights;
106
107     /* Get ACL from file/dir */
108     EC_NEG1_LOG(ace_count = get_nfsv4_acl(path, &aces));
109
110     if (ace_count == 0)
111         goto EC_CLEANUP;
112
113     /* Now check requested rights */
114     i = 0;
115     do { /* Loop through ACEs */
116         who = aces[i].a_who;
117         flags = aces[i].a_flags;
118         type = aces[i].a_type;
119         rights = aces[i].a_access_mask;
120
121         if (flags & ACE_INHERIT_ONLY_ACE)
122             continue;
123
124         /* Now the tricky part: decide if ACE effects our user. I'll explain:
125            if its a dedicated (non trivial) ACE for the user
126            OR
127            if its a ACE for a group we're member of
128            OR
129            if its a trivial ACE_OWNER ACE and requested UUID is the owner
130            OR
131            if its a trivial ACE_GROUP ACE and requested UUID is group
132            OR
133            if its a trivial ACE_EVERYONE ACE
134            THEN
135            process ACE */
136         if (((who == obj->uid) && !(flags & (ACE_TRIVIAL|ACE_IDENTIFIER_GROUP)))
137             ||
138             ((flags & ACE_IDENTIFIER_GROUP) && !(flags & ACE_GROUP) && gmem(who, obj->ngroups, obj->groups))
139             ||
140             ((flags & ACE_OWNER) && (obj->uid == sb->st_uid))
141             ||
142             ((flags & ACE_GROUP) && !(obj->uid == sb->st_uid) && gmem(sb->st_gid, obj->ngroups, obj->groups))
143             ||
144             (flags & ACE_EVERYONE && !(obj->uid == sb->st_uid) && !gmem(sb->st_gid, obj->ngroups, obj->groups))
145             ) {
146             /* Found an applicable ACE */
147             if (type == ACE_ACCESS_ALLOWED_ACE_TYPE)
148                 allowed_rights |= rights;
149             else if (type == ACE_ACCESS_DENIED_ACE_TYPE)
150                 /* Only or to denied rights if not previously allowed !! */
151                 denied_rights |= ((!allowed_rights) & rights);
152         }
153     } while (++i < ace_count);
154
155
156     /* Darwin likes to ask for "delete_child" on dir,
157        "write_data" is actually the same, so we add that for dirs */
158     if (S_ISDIR(sb->st_mode) && (allowed_rights & ACE_WRITE_DATA))
159         allowed_rights |= ACE_DELETE_CHILD;
160
161     /* Remove denied from allowed rights */
162     allowed_rights &= ~denied_rights;
163
164     /* map rights */
165     darwin_rights = 0;
166     for (i=0; nfsv4_to_darwin_rights[i].from != 0; i++) {
167         if (allowed_rights & nfsv4_to_darwin_rights[i].from)
168             darwin_rights |= nfsv4_to_darwin_rights[i].to;
169     }
170
171     *result |= darwin_rights;
172
173 EC_CLEANUP:
174     if (aces) free(aces);
175
176     EC_EXIT;
177 }
178
179 /*
180   Maps ACE array from Solaris to Darwin. Darwin ACEs are stored in network byte order.
181   Return numer of mapped ACEs or -1 on error.
182   All errors while mapping (e.g. getting UUIDs from LDAP) are fatal.
183 */
184 static int map_aces_solaris_to_darwin(const ace_t *aces,
185                                       darwin_ace_t *darwin_aces,
186                                       int ace_count)
187 {
188     EC_INIT;
189     int i, count = 0;
190     uint32_t flags;
191     uint32_t rights;
192     struct passwd *pwd = NULL;
193     struct group *grp = NULL;
194
195     LOG(log_maxdebug, logtype_afpd, "map_aces_solaris_to_darwin: parsing %d ACES", ace_count);
196
197     while(ace_count--) {
198         LOG(log_maxdebug, logtype_afpd, "ACE No. %d", ace_count + 1);
199         /* if its a ACE resulting from nfsv4 mode mapping, discard it */
200         if (aces->a_flags & (ACE_OWNER | ACE_GROUP | ACE_EVERYONE)) {
201             LOG(log_debug, logtype_afpd, "trivial ACE");
202             aces++;
203             continue;
204         }
205
206         if ( ! (aces->a_flags & ACE_IDENTIFIER_GROUP) ) { /* user ace */
207             LOG(log_debug, logtype_afpd, "uid: %d", aces->a_who);
208             EC_NULL_LOG(pwd = getpwuid(aces->a_who));
209             LOG(log_debug, logtype_afpd, "uid: %d -> name: %s", aces->a_who, pwd->pw_name);
210             EC_ZERO_LOG(getuuidfromname(pwd->pw_name,
211                                         UUID_USER,
212                                         darwin_aces->darwin_ace_uuid));
213         } else { /* group ace */
214             LOG(log_debug, logtype_afpd, "gid: %d", aces->a_who);
215             EC_NULL_LOG(grp = getgrgid(aces->a_who));
216             LOG(log_debug, logtype_afpd, "gid: %d -> name: %s", aces->a_who, grp->gr_name);
217             EC_ZERO_LOG(getuuidfromname(grp->gr_name,
218                                         UUID_GROUP,
219                                         darwin_aces->darwin_ace_uuid));
220         }
221
222         /* map flags */
223         if (aces->a_type == ACE_ACCESS_ALLOWED_ACE_TYPE)
224             flags = DARWIN_ACE_FLAGS_PERMIT;
225         else if (aces->a_type == ACE_ACCESS_DENIED_ACE_TYPE)
226             flags = DARWIN_ACE_FLAGS_DENY;
227         else {          /* unsupported type */
228             aces++;
229             continue;
230         }
231         for(i=0; nfsv4_to_darwin_flags[i].from != 0; i++) {
232             if (aces->a_flags & nfsv4_to_darwin_flags[i].from)
233                 flags |= nfsv4_to_darwin_flags[i].to;
234         }
235         darwin_aces->darwin_ace_flags = htonl(flags);
236
237         /* map rights */
238         rights = 0;
239         for (i=0; nfsv4_to_darwin_rights[i].from != 0; i++) {
240             if (aces->a_access_mask & nfsv4_to_darwin_rights[i].from)
241                 rights |= nfsv4_to_darwin_rights[i].to;
242         }
243         darwin_aces->darwin_ace_rights = htonl(rights);
244
245         count++;
246         aces++;
247         darwin_aces++;
248     }
249
250     return count;
251 EC_CLEANUP:
252     EC_EXIT;
253 }
254
255 /*
256   Maps ACE array from Darwin to Solaris. Darwin ACEs are expected in network byte order.
257   Return numer of mapped ACEs or -1 on error.
258   All errors while mapping (e.g. getting UUIDs from LDAP) are fatal.
259 */
260 static int map_aces_darwin_to_solaris(darwin_ace_t *darwin_aces,
261                                       ace_t *nfsv4_aces,
262                                       int ace_count)
263 {
264     EC_INIT;
265     int i, mapped_aces = 0;
266     uint32_t darwin_ace_flags;
267     uint32_t darwin_ace_rights;
268     uint16_t nfsv4_ace_flags;
269     uint32_t nfsv4_ace_rights;
270     char *name = NULL;
271     uuidtype_t uuidtype;
272     struct passwd *pwd;
273     struct group *grp;
274
275     while(ace_count--) {
276         nfsv4_ace_flags = 0;
277         nfsv4_ace_rights = 0;
278
279         /* uid/gid first */
280         EC_ZERO(getnamefromuuid(darwin_aces->darwin_ace_uuid, &name, &uuidtype));
281         switch (uuidtype) {
282         case UUID_USER:
283             EC_NULL_LOG(pwd = getpwnam(name));
284             nfsv4_aces->a_who = pwd->pw_uid;
285             break;
286         case UUID_GROUP:
287             EC_NULL_LOG(grp = getgrnam(name));
288             nfsv4_aces->a_who = (uid_t)(grp->gr_gid);
289             nfsv4_ace_flags |= ACE_IDENTIFIER_GROUP;
290             break;
291         default:
292             LOG(log_error, logtype_afpd, "map_aces_darwin_to_solaris: unkown uuidtype");
293             EC_FAIL;
294         }
295         free(name);
296         name = NULL;
297
298         /* now type: allow/deny */
299         darwin_ace_flags = ntohl(darwin_aces->darwin_ace_flags);
300         if (darwin_ace_flags & DARWIN_ACE_FLAGS_PERMIT)
301             nfsv4_aces->a_type = ACE_ACCESS_ALLOWED_ACE_TYPE;
302         else if (darwin_ace_flags & DARWIN_ACE_FLAGS_DENY)
303             nfsv4_aces->a_type = ACE_ACCESS_DENIED_ACE_TYPE;
304         else { /* unsupported type */
305             darwin_aces++;
306             continue;
307         }
308         /* map flags */
309         for(i=0; darwin_to_nfsv4_flags[i].from != 0; i++) {
310             if (darwin_ace_flags & darwin_to_nfsv4_flags[i].from)
311                 nfsv4_ace_flags |= darwin_to_nfsv4_flags[i].to;
312         }
313
314         /* map rights */
315         darwin_ace_rights = ntohl(darwin_aces->darwin_ace_rights);
316         for (i=0; darwin_to_nfsv4_rights[i].from != 0; i++) {
317             if (darwin_ace_rights & darwin_to_nfsv4_rights[i].from)
318                 nfsv4_ace_rights |= darwin_to_nfsv4_rights[i].to;
319         }
320
321         LOG(log_debug9, logtype_afpd,
322             "map_aces_darwin_to_solaris: ACE flags: Darwin:%08x -> NFSv4:%04x",
323             darwin_ace_flags, nfsv4_ace_flags);
324         LOG(log_debug9, logtype_afpd,
325             "map_aces_darwin_to_solaris: ACE rights: Darwin:%08x -> NFSv4:%08x",
326             darwin_ace_rights, nfsv4_ace_rights);
327
328         nfsv4_aces->a_flags = nfsv4_ace_flags;
329         nfsv4_aces->a_access_mask = nfsv4_ace_rights;
330
331         mapped_aces++;
332         darwin_aces++;
333         nfsv4_aces++;
334     }
335
336     return mapped_aces;
337 EC_CLEANUP:
338     if (name)
339         free(name);
340     EC_EXIT;
341 }
342 #endif /* HAVE_SOLARIS_ACLS */
343
344 /********************************************************
345  * POSIX 1e funcs
346  ********************************************************/
347
348 #ifdef HAVE_POSIX_ACLS
349
350 static uint32_t posix_permset_to_darwin_rights(acl_entry_t e, int is_dir)
351 {
352     EC_INIT;
353     uint32_t rights = 0;
354     acl_permset_t permset;
355
356     EC_ZERO_LOG(acl_get_permset(e, &permset));
357
358 #ifdef HAVE_ACL_GET_PERM_NP
359     if (acl_get_perm_np(permset, ACL_READ))
360 #else
361     if (acl_get_perm(permset, ACL_READ))
362 #endif
363         rights = DARWIN_ACE_READ_DATA
364             | DARWIN_ACE_READ_EXTATTRIBUTES
365             | DARWIN_ACE_READ_ATTRIBUTES
366             | DARWIN_ACE_READ_SECURITY;
367 #ifdef HAVE_ACL_GET_PERM_NP
368     if (acl_get_perm_np(permset, ACL_WRITE)) {
369 #else
370     if (acl_get_perm(permset, ACL_WRITE)) {
371 #endif
372         rights |= DARWIN_ACE_WRITE_DATA
373             | DARWIN_ACE_APPEND_DATA
374             | DARWIN_ACE_WRITE_EXTATTRIBUTES
375             | DARWIN_ACE_WRITE_ATTRIBUTES;
376         if (is_dir)
377             rights |= DARWIN_ACE_DELETE_CHILD;
378     }
379 #ifdef HAVE_ACL_GET_PERM_NP
380     if (acl_get_perm_np(permset, ACL_EXECUTE))
381 #else
382     if (acl_get_perm(permset, ACL_EXECUTE))
383 #endif
384         rights |= DARWIN_ACE_EXECUTE;
385
386 EC_CLEANUP:
387     LOG(log_maxdebug, logtype_afpd, "mapped rights: 0x%08x", rights);
388     return rights;
389 }
390
391 /*! 
392  * Compile access rights for a user to one file-system object
393  *
394  * This combines combines all access rights for a user to one fs-object and
395  * returns the result as a Darwin allowed rights ACE.
396  * This must honor trivial ACEs which are a mode_t mapping.
397  *
398  * @param path           (r) path to filesystem object
399  * @param sb             (r) struct stat of path
400  * @param result         (rw) resulting Darwin allow ACE
401  *
402  * @returns                  0 or -1 on error
403  */
404
405 static int posix_acl_rights(const AFPObj *obj,
406                             const char *path,
407                             const struct stat *sb,
408                             uint32_t *result)
409 {
410     EC_INIT;
411     int entry_id = ACL_FIRST_ENTRY;
412     uint32_t rights = 0; /* rights which do not depend on ACL_MASK */
413     uint32_t acl_rights = 0; /* rights which are subject to limitations imposed by ACL_MASK */
414     uint32_t mask_rights = 0xffffffff;
415     uid_t *uid = NULL;
416     gid_t *gid = NULL;
417     acl_t acl = NULL;
418     acl_entry_t e;
419     acl_tag_t tag;
420
421     EC_NULL_LOGSTR(acl = acl_get_file(path, ACL_TYPE_ACCESS),
422                    "acl_get_file(\"%s\"): %s", fullpathname(path), strerror(errno));
423
424     /* Iterate through all ACEs. If we apply mask_rights later there is no need to iterate twice. */
425     while (acl_get_entry(acl, entry_id, &e) == 1) {
426         entry_id = ACL_NEXT_ENTRY;
427         EC_ZERO_LOG(acl_get_tag_type(e, &tag));
428
429         switch (tag) {
430             case ACL_USER_OBJ:
431                 if (sb->st_uid == obj->uid) {
432                     LOG(log_maxdebug, logtype_afpd, "ACL_USER_OBJ: %u", sb->st_uid);
433                     rights |= posix_permset_to_darwin_rights(e, S_ISDIR(sb->st_mode));
434                 }
435                 break;
436
437             case ACL_USER:
438                 EC_NULL_LOG(uid = (uid_t *)acl_get_qualifier(e));
439
440                 if (*uid == obj->uid) {
441                     LOG(log_maxdebug, logtype_afpd, "ACL_USER: %u", *uid);
442                     acl_rights |= posix_permset_to_darwin_rights(e, S_ISDIR(sb->st_mode));
443                 }
444                 acl_free(uid);
445                 uid = NULL;
446                 break;
447
448             case ACL_GROUP_OBJ:
449                 if (!(sb->st_uid == obj->uid) && gmem(sb->st_gid, obj->ngroups, obj->groups)) {
450                     LOG(log_maxdebug, logtype_afpd, "ACL_GROUP_OBJ: %u", sb->st_gid);
451                     acl_rights |= posix_permset_to_darwin_rights(e, S_ISDIR(sb->st_mode));
452                 }
453                 break;
454
455             case ACL_GROUP:
456                 EC_NULL_LOG(gid = (gid_t *)acl_get_qualifier(e));
457
458                 if (gmem(*gid, obj->ngroups, obj->groups)) {
459                     LOG(log_maxdebug, logtype_afpd, "ACL_GROUP: %u", *gid);
460                     acl_rights |= posix_permset_to_darwin_rights(e, S_ISDIR(sb->st_mode));
461                 }
462                 acl_free(gid);
463                 gid = NULL;
464                 break;
465
466             case ACL_MASK:
467                 mask_rights = posix_permset_to_darwin_rights(e, S_ISDIR(sb->st_mode));
468                 LOG(log_maxdebug, logtype_afpd, "maskrights: 0x%08x", mask_rights);
469                 break;
470
471             case ACL_OTHER:
472                 if (!(sb->st_uid == obj->uid) && !gmem(sb->st_gid, obj->ngroups, obj->groups)) {
473                     LOG(log_maxdebug, logtype_afpd, "ACL_OTHER");
474                     rights |= posix_permset_to_darwin_rights(e, S_ISDIR(sb->st_mode));
475                 }
476                 break;
477
478             default:
479                 continue;
480         }
481     } /* while */
482
483     /* apply the mask and collect the rights */
484     rights |= (acl_rights & mask_rights);
485
486     *result |= rights;
487
488 EC_CLEANUP:
489     if (acl) acl_free(acl);
490     if (uid) acl_free(uid);
491     if (gid) acl_free(gid);
492     EC_EXIT;
493 }
494
495 /*!
496  * Helper function for posix_acls_to_uaperms() to convert Posix ACL permissions
497  * into access rights needed to fill ua_permissions of a FPUnixPrivs structure.
498  *
499  * @param entry     (r) Posix ACL entry
500  *
501  * @returns         access rights
502  */
503 static u_char acl_permset_to_uarights(acl_entry_t entry) {
504     acl_permset_t permset;
505     u_char rights = 0;
506
507     if (acl_get_permset(entry, &permset) == -1)
508         return rights;
509
510 #ifdef HAVE_ACL_GET_PERM_NP
511     if (acl_get_perm_np(permset, ACL_READ))
512 #else
513     if (acl_get_perm(permset, ACL_READ))
514 #endif
515         rights |= AR_UREAD;
516
517 #ifdef HAVE_ACL_GET_PERM_NP
518     if (acl_get_perm_np(permset, ACL_WRITE))
519 #else
520     if (acl_get_perm(permset, ACL_WRITE))
521 #endif
522         rights |= AR_UWRITE;
523
524 #ifdef HAVE_ACL_GET_PERM_NP
525     if (acl_get_perm_np(permset, ACL_EXECUTE))
526 #else
527     if (acl_get_perm(permset, ACL_EXECUTE))
528 #endif
529         rights |= AR_USEARCH;
530
531     return rights;
532 }
533
534 /*!
535  * Update FPUnixPrivs for a file-system object on a volume supporting ACLs
536  *
537  * Checks permissions granted by ACLS for a user to one fs-object and
538  * updates user and group permissions in given struct maccess. As OS X
539  * doesn't conform to Posix 1003.1e Draft 17 it expects proper group
540  * permissions in st_mode of struct stat even if the fs-object has an
541  * ACL_MASK entry, st_mode gets modified to properly reflect group
542  * permissions.
543  *
544  * @param path           (r) path to filesystem object
545  * @param sb             (rw) struct stat of path
546  * @param maccess        (rw) struct maccess of path
547  *
548  * @returns                  0 or -1 on error
549  */
550 static int posix_acls_to_uaperms(const AFPObj *obj, const char *path, struct stat *sb, struct maccess *ma) {
551     EC_INIT;
552
553     int entry_id = ACL_FIRST_ENTRY;
554     acl_entry_t entry;
555     acl_tag_t tag;
556     acl_t acl = NULL;
557     uid_t *uid;
558     gid_t *gid;
559     uid_t whoami = geteuid();
560
561     u_char group_rights = 0x00;
562     u_char acl_rights = 0x00;
563     u_char mask = 0xff;
564
565     EC_NULL_LOG(acl = acl_get_file(path, ACL_TYPE_ACCESS));
566
567     /* iterate through all ACEs */
568     while (acl_get_entry(acl, entry_id, &entry) == 1) {
569         entry_id = ACL_NEXT_ENTRY;
570         EC_ZERO_LOG(acl_get_tag_type(entry, &tag));
571
572         switch (tag) {
573             case ACL_USER:
574                 EC_NULL_LOG(uid = (uid_t *)acl_get_qualifier(entry));
575
576                 if (*uid == obj->uid && !(whoami == sb->st_uid)) {
577                     LOG(log_maxdebug, logtype_afpd, "ACL_USER: %u", *uid);
578                     acl_rights |= acl_permset_to_uarights(entry);
579                 }
580                 acl_free(uid);
581                 break;
582
583             case ACL_GROUP_OBJ:
584                 group_rights = acl_permset_to_uarights(entry);
585                 LOG(log_maxdebug, logtype_afpd, "ACL_GROUP_OBJ: %u", sb->st_gid);
586
587                 if (gmem(sb->st_gid, obj->ngroups, obj->groups) && !(whoami == sb->st_uid))
588                     acl_rights |= group_rights;
589                 break;
590
591             case ACL_GROUP:
592                 EC_NULL_LOG(gid = (gid_t *)acl_get_qualifier(entry));
593
594                 if (gmem(*gid, obj->ngroups, obj->groups) && !(whoami == sb->st_uid)) {
595                     LOG(log_maxdebug, logtype_afpd, "ACL_GROUP: %u", *gid);
596                     acl_rights |= acl_permset_to_uarights(entry);
597                 }
598                 acl_free(gid);
599                 break;
600
601             case ACL_MASK:
602                 mask = acl_permset_to_uarights(entry);
603                 LOG(log_maxdebug, logtype_afpd, "ACL_MASK: 0x%02x", mask);
604                 break;
605
606             default:
607                 break;
608         }
609     }
610     /* apply the mask and adjust user and group permissions */
611     ma->ma_user |= (acl_rights & mask);
612     ma->ma_group = (group_rights & mask);
613
614     /* update st_mode to properly reflect group permissions */
615     sb->st_mode &= ~S_IRWXG;
616
617     if (ma->ma_group & AR_USEARCH)
618         sb->st_mode |= S_IXGRP;
619
620     if (ma->ma_group & AR_UWRITE)
621         sb->st_mode |= S_IWGRP;
622
623     if (ma->ma_group & AR_UREAD)
624         sb->st_mode |= S_IRGRP;
625
626 EC_CLEANUP:
627     if (acl) acl_free(acl);
628
629     EC_EXIT;
630 }
631
632 /*!
633  * Add entries of one acl to another acl
634  *
635  * @param aclp   (rw) destination acl where new aces will be added
636  * @param acl    (r)  source acl where aces will be copied from
637  *
638  * @returns 0 on success, -1 on error
639  */
640 static int acl_add_acl(acl_t *aclp, const acl_t acl)
641 {
642     EC_INIT;
643     int id;
644     acl_entry_t se, de;
645
646     for (id = ACL_FIRST_ENTRY; acl_get_entry(acl, id, &se) == 1; id = ACL_NEXT_ENTRY) {
647         EC_ZERO_LOG_ERR(acl_create_entry(aclp, &de), AFPERR_MISC);
648         EC_ZERO_LOG_ERR(acl_copy_entry(de, se), AFPERR_MISC);
649     }
650
651 EC_CLEANUP:
652     EC_EXIT;
653 }
654
655 /*!
656  * Map Darwin ACE rights to POSIX 1e perm
657  *
658  * We can only map few rights:
659  *   DARWIN_ACE_READ_DATA                    -> ACL_READ
660  *   DARWIN_ACE_WRITE_DATA                   -> ACL_WRITE
661  *   DARWIN_ACE_DELETE_CHILD & (is_dir == 1) -> ACL_WRITE
662  *   DARWIN_ACE_EXECUTE                      -> ACL_EXECUTE
663  *
664  * @param entry             (rw) result of the mapping
665  * @param is_dir            (r) 1 for dirs, 0 for files
666  *
667  * @returns mapping result as acl_perm_t, -1 on error
668  */
669 static acl_perm_t map_darwin_right_to_posix_permset(uint32_t darwin_ace_rights, int is_dir)
670 {
671     acl_perm_t perm = 0;
672
673     if (darwin_ace_rights & DARWIN_ACE_READ_DATA)
674         perm |= ACL_READ;
675
676     if (darwin_ace_rights & (DARWIN_ACE_WRITE_DATA | (is_dir ? DARWIN_ACE_DELETE_CHILD : 0)))
677         perm |= ACL_WRITE;
678
679     if (darwin_ace_rights & DARWIN_ACE_EXECUTE)
680         perm |= ACL_EXECUTE;
681
682     return perm;
683 }
684
685 /*!
686  * Add a ACL_USER or ACL_GROUP permission to an ACL, extending existing ACEs
687  *
688  * Add a permission of "type" for user or group "id" to an ACL. Scan the ACL
689  * for existing permissions for this type/id, if there is one add the perm,
690  * otherwise create a new ACL entry.
691  * perm can be or'ed ACL_READ, ACL_WRITE and ACL_EXECUTE.  
692  *
693  * @param aclp     (rw) pointer to ACL
694  * @param type     (r)  acl_tag_t of ACL_USER or ACL_GROUP
695  * @param id       (r)  uid_t uid for ACL_USER, or gid casted to uid_t for ACL_GROUP
696  * @param perm     (r)  acl_perm_t permissions to add
697  *
698  * @returns 0 on success, -1 on failure
699  */
700 static int posix_acl_add_perm(acl_t *aclp, acl_tag_t type, uid_t id, acl_perm_t perm)
701 {
702     EC_INIT;
703     uid_t *eid = NULL;
704     acl_entry_t e;
705     acl_tag_t tag;
706     int entry_id = ACL_FIRST_ENTRY;
707     acl_permset_t permset;
708
709     int found = 0;
710     for ( ; (! found) && acl_get_entry(*aclp, entry_id, &e) == 1; entry_id = ACL_NEXT_ENTRY) {
711         EC_ZERO_LOG(acl_get_tag_type(e, &tag));
712         if (tag != ACL_USER && tag != ACL_GROUP)
713             continue;
714         EC_NULL_LOG(eid = (uid_t *)acl_get_qualifier(e));
715         if ((*eid == id) && (type == tag)) {
716             /* found an ACE for this type/id */
717             found = 1;
718             EC_ZERO_LOG(acl_get_permset(e, &permset));
719             EC_ZERO_LOG(acl_add_perm(permset, perm));
720         }
721
722         acl_free(eid);
723         eid = NULL;
724     }
725
726     if ( ! found) {
727         /* there was no existing ACE for this type/id */
728         EC_ZERO_LOG(acl_create_entry(aclp, &e));
729         EC_ZERO_LOG(acl_set_tag_type(e, type));
730         EC_ZERO_LOG(acl_set_qualifier(e, &id));
731         EC_ZERO_LOG(acl_get_permset(e, &permset));
732         EC_ZERO_LOG(acl_clear_perms(permset));
733         EC_ZERO_LOG(acl_add_perm(permset, perm));
734         EC_ZERO_LOG(acl_set_permset(e, permset));
735     }
736
737 EC_CLEANUP:
738     if (eid) acl_free(eid);
739
740     EC_EXIT;
741 }
742
743 /*!
744  * Map Darwin ACL to POSIX ACL.
745  *
746  * aclp must point to a acl_init'ed acl_t or an acl_t that can eg contain default ACEs.
747  * Mapping pecularities:
748  * - we create a default ace (which inherits to files and dirs) if either
749      DARWIN_ACE_FLAGS_FILE_INHERIT or DARWIN_ACE_FLAGS_DIRECTORY_INHERIT is requested
750  * - we throw away DARWIN_ACE_FLAGS_LIMIT_INHERIT (can't be mapped), thus the ACL will
751  *   not be limited
752  *
753  * @param darwin_aces        (r)  pointer to darwin_aces buffer
754  * @param def_aclp           (rw) directories: pointer to an initialized acl_t with
755                                   the default acl files: *def_aclp will be NULL
756  * @param acc_aclp           (rw) pointer to an initialized acl_t with the access acl
757  * @param ace_count          (r)  number of ACEs in darwin_aces buffer
758  * @param default_acl_flags  (rw) flags to indicate if the object has a basic default
759  *                                acl or an extended default acl.
760  *
761  * @returns 0 on success storing the result in aclp, -1 on error. default_acl_flags
762  * is set to HAS_DEFAULT_ACL|HAS_EXT_DEFAULT_ACL in case there is at least one
763  * extended default ace. Otherwise default_acl_flags is left unchanged.
764  */
765 static int map_aces_darwin_to_posix(const darwin_ace_t *darwin_aces,
766                                     acl_t *def_aclp,
767                                     acl_t *acc_aclp,
768                                     int ace_count,
769                                     uint32_t *default_acl_flags)
770 {
771     EC_INIT;
772     char *name = NULL;
773     uuidtype_t uuidtype;
774     struct passwd *pwd;
775     struct group *grp;
776     uid_t id;
777     uint32_t darwin_ace_flags, darwin_ace_rights;
778     acl_tag_t tag;
779     acl_perm_t perm;
780
781     for ( ; ace_count != 0; ace_count--, darwin_aces++) {
782         /* type: allow/deny, posix only has allow */
783         darwin_ace_flags = ntohl(darwin_aces->darwin_ace_flags);
784         if ( ! (darwin_ace_flags & DARWIN_ACE_FLAGS_PERMIT))
785             continue;
786
787         darwin_ace_rights = ntohl(darwin_aces->darwin_ace_rights);
788         perm = map_darwin_right_to_posix_permset(darwin_ace_rights, (*def_aclp != NULL));
789         if (perm == 0)
790             continue;       /* dont add empty perm */
791
792         LOG(log_debug, logtype_afpd, "map_ace: no: %u, flags: %08x, darwin: %08x, posix: %02x",
793             ace_count, darwin_ace_flags, darwin_ace_rights, perm);
794
795          /* uid/gid */
796         EC_ZERO_LOG(getnamefromuuid(darwin_aces->darwin_ace_uuid, &name, &uuidtype));
797         switch (uuidtype) {
798         case UUID_USER:
799             EC_NULL_LOG(pwd = getpwnam(name));
800             tag = ACL_USER;
801             id = pwd->pw_uid;
802             LOG(log_debug, logtype_afpd, "map_ace: name: %s, uid: %u", name, id);
803             break;
804         case UUID_GROUP:
805             EC_NULL_LOG(grp = getgrnam(name));
806             tag = ACL_GROUP;
807             id = (uid_t)(grp->gr_gid);
808             LOG(log_debug, logtype_afpd, "map_ace: name: %s, gid: %u", name, id);
809             break;
810         default:
811             continue;
812         }
813         free(name);
814         name = NULL;
815
816         if (darwin_ace_flags & DARWIN_ACE_INHERIT_CONTROL_FLAGS) {
817             if (*def_aclp == NULL) {
818                 /* ace request inheritane but we haven't got a default acl pointer */
819                 LOG(log_warning, logtype_afpd, "map_acl: unexpected ACE, flags: 0x%04x",
820                     darwin_ace_flags);
821                 EC_FAIL;
822             }
823             /* add it as default ace */
824             EC_ZERO_LOG(posix_acl_add_perm(def_aclp, tag, id, perm));
825             *default_acl_flags = (HAS_DEFAULT_ACL|HAS_EXT_DEFAULT_ACL);
826
827             if (! (darwin_ace_flags & DARWIN_ACE_FLAGS_ONLY_INHERIT))
828                 /* if it not a "inherit only" ace, it must be added as access aces too */
829                 EC_ZERO_LOG(posix_acl_add_perm(acc_aclp, tag, id, perm));
830         } else {
831             EC_ZERO_LOG(posix_acl_add_perm(acc_aclp, tag, id, perm));
832         }
833     }
834
835 EC_CLEANUP:
836     if (name)
837         free(name);
838
839     EC_EXIT;
840 }
841
842 /*
843  * Map ACEs from POSIX to Darwin.
844  * type is either POSIX_DEFAULT_2_DARWIN or POSIX_ACCESS_2_DARWIN, cf. acl_get_file.
845  * Return number of mapped ACES, -1 on error.
846  */
847 static int map_acl_posix_to_darwin(int type, const acl_t acl, darwin_ace_t *darwin_aces)
848 {
849     EC_INIT;
850     int mapped_aces = 0;
851     int entry_id = ACL_FIRST_ENTRY;
852     acl_entry_t e;
853     acl_tag_t tag;
854     uid_t *uid = NULL;
855     gid_t *gid = NULL;
856     struct passwd *pwd = NULL;
857     struct group *grp = NULL;
858     uint32_t flags;
859     uint32_t rights, maskrights = 0;
860     darwin_ace_t *saved_darwin_aces = darwin_aces;
861
862     LOG(log_maxdebug, logtype_afpd, "map_aces_posix_to_darwin(%s)",
863         (type & MAP_MASK) == POSIX_DEFAULT_2_DARWIN ?
864         "POSIX_DEFAULT_2_DARWIN" : "POSIX_ACCESS_2_DARWIN");
865
866     /* itereate through all ACEs */
867     while (acl_get_entry(acl, entry_id, &e) == 1) {
868         entry_id = ACL_NEXT_ENTRY;
869
870         /* get ACE type */
871         EC_ZERO_LOG(acl_get_tag_type(e, &tag));
872
873         /* we return user and group ACE */
874         switch (tag) {
875         case ACL_USER:
876             EC_NULL_LOG(uid = (uid_t *)acl_get_qualifier(e));
877             EC_NULL_LOG(pwd = getpwuid(*uid));
878             LOG(log_debug, logtype_afpd, "map_aces_posix_to_darwin: uid: %d -> name: %s",
879                 *uid, pwd->pw_name);
880             EC_ZERO_LOG(getuuidfromname(pwd->pw_name, UUID_USER, darwin_aces->darwin_ace_uuid));
881             acl_free(uid);
882             uid = NULL;
883             break;
884
885         case ACL_GROUP:
886             EC_NULL_LOG(gid = (gid_t *)acl_get_qualifier(e));
887             EC_NULL_LOG(grp = getgrgid(*gid));
888             LOG(log_debug, logtype_afpd, "map_aces_posix_to_darwin: gid: %d -> name: %s",
889                 *gid, grp->gr_name);
890             EC_ZERO_LOG(getuuidfromname(grp->gr_name, UUID_GROUP, darwin_aces->darwin_ace_uuid));
891             acl_free(gid);
892             gid = NULL;
893             break;
894
895         case ACL_MASK:
896             maskrights = posix_permset_to_darwin_rights(e, type & IS_DIR);
897             continue;
898
899         default:
900             continue;
901         }
902
903         /* flags */
904         flags = DARWIN_ACE_FLAGS_PERMIT;
905         if ((type & MAP_MASK) == POSIX_DEFAULT_2_DARWIN)
906             flags |= DARWIN_ACE_FLAGS_FILE_INHERIT
907                 | DARWIN_ACE_FLAGS_DIRECTORY_INHERIT
908                 | DARWIN_ACE_FLAGS_ONLY_INHERIT;
909         darwin_aces->darwin_ace_flags = htonl(flags);
910
911         /* rights */
912         rights = posix_permset_to_darwin_rights(e, type & IS_DIR);
913         darwin_aces->darwin_ace_rights = htonl(rights);
914
915         darwin_aces++;
916         mapped_aces++;
917     } /* while */
918
919     /* Loop through the mapped ACE buffer once again, applying the mask */
920     for (int i = mapped_aces; i > 0; i--) {
921         saved_darwin_aces->darwin_ace_rights &= htonl(maskrights);
922         saved_darwin_aces++;
923     }
924
925     EC_STATUS(mapped_aces);
926
927 EC_CLEANUP:
928     if (uid) acl_free(uid);
929     if (gid) acl_free(gid);
930     EC_EXIT;
931 }
932 #endif
933
934 /*
935  * Multiplex ACL mapping (SOLARIS_2_DARWIN, DARWIN_2_SOLARIS, POSIX_2_DARWIN, DARWIN_2_POSIX).
936  * Reads from 'aces' buffer, writes to 'rbuf' buffer.
937  * Caller must provide buffer.
938  * Darwin ACEs are read and written in network byte order.
939  * Needs to know how many ACEs are in the ACL (ace_count) for Solaris ACLs.
940  * Ignores trivial ACEs.
941  * Return no of mapped ACEs or -1 on error.
942  */
943 static int map_acl(int type, void *acl, darwin_ace_t *buf, int ace_count)
944 {
945     int mapped_aces;
946
947     LOG(log_debug9, logtype_afpd, "map_acl: BEGIN");
948
949     switch (type & MAP_MASK) {
950
951 #ifdef HAVE_SOLARIS_ACLS
952     case SOLARIS_2_DARWIN:
953         mapped_aces = map_aces_solaris_to_darwin( acl, buf, ace_count);
954         break;
955
956     case DARWIN_2_SOLARIS:
957         mapped_aces = map_aces_darwin_to_solaris( buf, acl, ace_count);
958         break;
959 #endif /* HAVE_SOLARIS_ACLS */
960
961 #ifdef HAVE_POSIX_ACLS
962     case POSIX_DEFAULT_2_DARWIN:
963         mapped_aces = map_acl_posix_to_darwin(type, (const acl_t)acl, buf);
964         break;
965
966     case POSIX_ACCESS_2_DARWIN:
967         mapped_aces = map_acl_posix_to_darwin(type, (const acl_t)acl, buf);
968         break;
969
970     case DARWIN_2_POSIX_DEFAULT:
971         break;
972
973     case DARWIN_2_POSIX_ACCESS:
974         break;
975 #endif /* HAVE_POSIX_ACLS */
976
977     default:
978         mapped_aces = -1;
979         break;
980     }
981
982     LOG(log_debug9, logtype_afpd, "map_acl: END");
983     return mapped_aces;
984 }
985
986 /* Get ACL from object omitting trivial ACEs. Map to Darwin ACL style and
987    store Darwin ACL at rbuf. Add length of ACL written to rbuf to *rbuflen.
988    Returns 0 on success, -1 on error. */
989 static int get_and_map_acl(char *name, char *rbuf, size_t *rbuflen)
990 {
991     EC_INIT;
992     int mapped_aces = 0;
993     int dirflag;
994     char *darwin_ace_count = rbuf;
995 #ifdef HAVE_SOLARIS_ACLS
996     int ace_count = 0;
997     ace_t *aces = NULL;
998 #endif
999 #ifdef HAVE_POSIX_ACLS
1000     struct stat st;
1001 #endif
1002     LOG(log_debug9, logtype_afpd, "get_and_map_acl: BEGIN");
1003
1004     /* Skip length and flags */
1005     rbuf += 4;
1006     *rbuf = 0;
1007     rbuf += 4;
1008
1009 #ifdef HAVE_SOLARIS_ACLS
1010     EC_NEG1(ace_count = get_nfsv4_acl(name, &aces));
1011     EC_NEG1(mapped_aces = map_acl(SOLARIS_2_DARWIN, aces, (darwin_ace_t *)rbuf, ace_count));
1012 #endif /* HAVE_SOLARIS_ACLS */
1013
1014 #ifdef HAVE_POSIX_ACLS
1015     acl_t defacl = NULL , accacl = NULL;
1016
1017     /* stat to check if its a dir */
1018     EC_ZERO_LOG(lstat(name, &st));
1019
1020     /* if its a dir, check for default acl too */
1021     dirflag = 0;
1022     if (S_ISDIR(st.st_mode)) {
1023         dirflag = IS_DIR;
1024         EC_NULL_LOG(defacl = acl_get_file(name, ACL_TYPE_DEFAULT));
1025         EC_NEG1(mapped_aces = map_acl(POSIX_DEFAULT_2_DARWIN | dirflag,
1026                                       defacl,
1027                                       (darwin_ace_t *)rbuf,
1028                                       0));
1029     }
1030
1031     EC_NULL_LOG(accacl = acl_get_file(name, ACL_TYPE_ACCESS));
1032
1033     int tmp;
1034     EC_NEG1(tmp = map_acl(POSIX_ACCESS_2_DARWIN | dirflag,
1035                           accacl,
1036                           (darwin_ace_t *)(rbuf + mapped_aces * sizeof(darwin_ace_t)),
1037                           0));
1038     mapped_aces += tmp;
1039 #endif /* HAVE_POSIX_ACLS */
1040
1041     LOG(log_debug, logtype_afpd, "get_and_map_acl: mapped %d ACEs", mapped_aces);
1042
1043     *rbuflen += sizeof(darwin_acl_header_t) + (mapped_aces * sizeof(darwin_ace_t));
1044     mapped_aces = htonl(mapped_aces);
1045     memcpy(darwin_ace_count, &mapped_aces, sizeof(uint32_t));
1046
1047     EC_STATUS(0);
1048
1049 EC_CLEANUP:
1050 #ifdef HAVE_SOLARIS_ACLS
1051     if (aces) free(aces);
1052 #endif
1053 #ifdef HAVE_POSIX_ACLS
1054     if (defacl) acl_free(defacl);
1055     if (accacl) acl_free(accacl);
1056 #endif /* HAVE_POSIX_ACLS */
1057
1058     LOG(log_debug9, logtype_afpd, "get_and_map_acl: END");
1059
1060     EC_EXIT;
1061 }
1062
1063 /* Removes all non-trivial ACLs from object. Returns full AFPERR code. */
1064 static int remove_acl(const struct vol *vol,const char *path, int dir)
1065 {
1066     int ret = AFP_OK;
1067
1068 #if (defined HAVE_SOLARIS_ACLS || defined HAVE_POSIX_ACLS)
1069     /* Ressource etc. first */
1070     if ((ret = vol->vfs->vfs_remove_acl(vol, path, dir)) != AFP_OK)
1071         return ret;
1072     /* now the data fork or dir */
1073     ret = remove_acl_vfs(path);
1074 #endif
1075     return ret;
1076 }
1077
1078 /*
1079   Set ACL. Subtleties:
1080   - the client sends a complete list of ACEs, not only new ones. So we dont need to do
1081   any combination business (one exception being 'kFileSec_Inherit': see next)
1082   - client might request that we add inherited ACEs via 'kFileSec_Inherit'.
1083   We will store inherited ACEs first, which is Darwins canonical order.
1084   - returns AFPerror code
1085 */
1086 #ifdef HAVE_SOLARIS_ACLS
1087 static int set_acl(const struct vol *vol,
1088                    char *name,
1089                    int inherit,
1090                    darwin_ace_t *daces,
1091                    uint32_t ace_count)
1092 {
1093     EC_INIT;
1094     int i, nfsv4_ace_count;
1095     int tocopy_aces_count = 0, new_aces_count = 0, trivial_ace_count = 0;
1096     ace_t *old_aces, *new_aces = NULL;
1097     uint16_t flags;
1098
1099     LOG(log_debug9, logtype_afpd, "set_acl: BEGIN");
1100
1101     if (inherit)
1102         /* inherited + trivial ACEs */
1103         flags = ACE_INHERITED_ACE | ACE_OWNER | ACE_GROUP | ACE_EVERYONE;
1104     else
1105         /* only trivial ACEs */
1106         flags = ACE_OWNER | ACE_GROUP | ACE_EVERYONE;
1107
1108     /* Get existing ACL and count ACEs which have to be copied */
1109     if ((nfsv4_ace_count = get_nfsv4_acl(name, &old_aces)) == -1)
1110         return AFPERR_MISC;
1111     for ( i=0; i < nfsv4_ace_count; i++) {
1112         if (old_aces[i].a_flags & flags)
1113             tocopy_aces_count++;
1114     }
1115
1116     /* Now malloc buffer exactly sized to fit all new ACEs */
1117     if ((new_aces = malloc((ace_count + tocopy_aces_count) * sizeof(ace_t))) == NULL) {
1118         LOG(log_error, logtype_afpd, "set_acl: malloc %s", strerror(errno));
1119         EC_STATUS(AFPERR_MISC);
1120         goto EC_CLEANUP;
1121     }
1122
1123     /* Start building new ACL */
1124
1125     /* Copy local inherited ACEs. Therefore we have 'Darwin canonical order' (see chmod there):
1126        inherited ACEs first. */
1127     if (inherit) {
1128         for (i=0; i < nfsv4_ace_count; i++) {
1129             if (old_aces[i].a_flags & ACE_INHERITED_ACE) {
1130                 memcpy(&new_aces[new_aces_count], &old_aces[i], sizeof(ace_t));
1131                 new_aces_count++;
1132             }
1133         }
1134     }
1135     LOG(log_debug7, logtype_afpd, "set_acl: copied %d inherited ACEs", new_aces_count);
1136
1137     /* Now the ACEs from the client */
1138     if ((ret = (map_acl(DARWIN_2_SOLARIS,
1139                         &new_aces[new_aces_count],
1140                         daces,
1141                         ace_count))) == -1) {
1142         EC_STATUS(AFPERR_PARAM);
1143         goto EC_CLEANUP;
1144     }
1145     new_aces_count += ret;
1146     LOG(log_debug7, logtype_afpd, "set_acl: mapped %d ACEs from client", ret);
1147
1148     /* Now copy the trivial ACEs */
1149     for (i=0; i < nfsv4_ace_count; i++) {
1150         if (old_aces[i].a_flags  & (ACE_OWNER | ACE_GROUP | ACE_EVERYONE)) {
1151             memcpy(&new_aces[new_aces_count], &old_aces[i], sizeof(ace_t));
1152             new_aces_count++;
1153             trivial_ace_count++;
1154         }
1155     }
1156     LOG(log_debug7, logtype_afpd, "set_acl: copied %d trivial ACEs", trivial_ace_count);
1157
1158     /* Ressourcefork first.
1159        Note: for dirs we set the same ACL on the .AppleDouble/.Parent _file_. This
1160        might be strange for ACE_DELETE_CHILD and for inheritance flags. */
1161     if ((ret = (vol->vfs->vfs_acl(vol, name, ACE_SETACL, new_aces_count, new_aces))) != 0) {
1162         LOG(log_error, logtype_afpd, "set_acl: error setting acl: %s", strerror(errno));
1163         if (errno == (EACCES | EPERM))
1164             EC_STATUS(AFPERR_ACCESS);
1165         else if (errno == ENOENT)
1166             EC_STATUS(AFPERR_NOITEM);
1167         else
1168             EC_STATUS(AFPERR_MISC);
1169         goto EC_CLEANUP;
1170     }
1171     if ((ret = (acl(name, ACE_SETACL, new_aces_count, new_aces))) != 0) {
1172         LOG(log_error, logtype_afpd, "set_acl: error setting acl: %s", strerror(errno));
1173         if (errno == (EACCES | EPERM))
1174             EC_STATUS(AFPERR_ACCESS);
1175         else if (errno == ENOENT)
1176             EC_STATUS(AFPERR_NOITEM);
1177         else
1178             EC_STATUS(AFPERR_MISC);
1179         goto EC_CLEANUP;
1180     }
1181
1182     EC_STATUS(AFP_OK);
1183
1184 EC_CLEANUP:
1185     if (old_aces) free(old_aces);
1186     if (new_aces) free(new_aces);
1187
1188     LOG(log_debug9, logtype_afpd, "set_acl: END");
1189     EC_EXIT;
1190 }
1191 #endif /* HAVE_SOLARIS_ACLS */
1192
1193 #ifdef HAVE_POSIX_ACLS
1194 #ifndef HAVE_ACL_FROM_MODE
1195 static acl_t acl_from_mode(mode_t mode)
1196 {
1197     acl_t acl;
1198     acl_entry_t entry;
1199     acl_permset_t permset;
1200
1201     if (!(acl = acl_init(3)))
1202         return NULL;
1203
1204     if (acl_create_entry(&acl, &entry) != 0)
1205         goto error;
1206     acl_set_tag_type(entry, ACL_USER_OBJ);
1207     acl_get_permset(entry, &permset);
1208     acl_clear_perms(permset);
1209     if (mode & S_IRUSR)
1210         acl_add_perm(permset, ACL_READ);
1211     if (mode & S_IWUSR)
1212         acl_add_perm(permset, ACL_WRITE);
1213     if (mode & S_IXUSR)
1214         acl_add_perm(permset, ACL_EXECUTE);
1215     acl_set_permset(entry, permset);
1216
1217     if (acl_create_entry(&acl, &entry) != 0)
1218         goto error;
1219     acl_set_tag_type(entry, ACL_GROUP_OBJ);
1220     acl_get_permset(entry, &permset);
1221     acl_clear_perms(permset);
1222     if (mode & S_IRGRP)
1223         acl_add_perm(permset, ACL_READ);
1224     if (mode & S_IWGRP)
1225         acl_add_perm(permset, ACL_WRITE);
1226     if (mode & S_IXGRP)
1227         acl_add_perm(permset, ACL_EXECUTE);
1228     acl_set_permset(entry, permset);
1229
1230     if (acl_create_entry(&acl, &entry) != 0)
1231         goto error;
1232     acl_set_tag_type(entry, ACL_OTHER);
1233     acl_get_permset(entry, &permset);
1234     acl_clear_perms(permset);
1235     if (mode & S_IROTH)
1236         acl_add_perm(permset, ACL_READ);
1237     if (mode & S_IWOTH)
1238         acl_add_perm(permset, ACL_WRITE);
1239     if (mode & S_IXOTH)
1240         acl_add_perm(permset, ACL_EXECUTE);
1241     acl_set_permset(entry, permset);
1242
1243     return acl;
1244
1245 error:
1246     acl_free(acl);
1247     return NULL;
1248 }
1249 #endif
1250
1251 static int set_acl(const struct vol *vol,
1252                    const char *name,
1253                    int inherit _U_,
1254                    darwin_ace_t *daces,
1255                    uint32_t ace_count)
1256 {
1257     EC_INIT;
1258     struct stat st;
1259     acl_t default_acl = NULL;
1260     acl_t access_acl = NULL;
1261     acl_entry_t entry;
1262     acl_tag_t tag;
1263     int entry_id = ACL_FIRST_ENTRY;
1264     int has_def_acl = 0;
1265     /* flags to indicate if the object has a minimal default acl and/or an extended
1266      * default acl.
1267      */
1268     uint32_t default_acl_flags = 0;
1269
1270     LOG(log_maxdebug, logtype_afpd, "set_acl: BEGIN");
1271
1272     EC_NULL_LOG_ERR(access_acl = acl_get_file(name, ACL_TYPE_ACCESS), AFPERR_MISC);
1273
1274     /* Iterate through acl and remove all extended acl entries. */
1275     while (acl_get_entry(access_acl, entry_id, &entry) == 1) {
1276         entry_id = ACL_NEXT_ENTRY;
1277         EC_ZERO_LOG(acl_get_tag_type(entry, &tag));
1278
1279         if ((tag == ACL_USER) || (tag == ACL_GROUP) || (tag == ACL_MASK)) {
1280             EC_ZERO_LOG_ERR(acl_delete_entry(access_acl, entry), AFPERR_MISC);
1281         }
1282     } /* while */
1283
1284    /* In case we are acting on a directory prepare a default acl. For files default_acl will be NULL.
1285     * If the directory already has a default acl it will be preserved.
1286     */
1287    EC_ZERO_LOG_ERR(lstat(name, &st), AFPERR_NOOBJ);
1288
1289    if (S_ISDIR(st.st_mode)) {
1290        default_acl = acl_get_file(name, ACL_TYPE_DEFAULT);
1291
1292        if (default_acl) {
1293            /* If default_acl is not empty then the dir has a default acl. */
1294            if (acl_get_entry(default_acl, ACL_FIRST_ENTRY, &entry) == 1)
1295                default_acl_flags = HAS_DEFAULT_ACL;
1296
1297            acl_free(default_acl);
1298        }
1299        default_acl = acl_dup(access_acl);
1300     }
1301     /* adds the clients aces */
1302     EC_ZERO_ERR(map_aces_darwin_to_posix(daces, &default_acl, &access_acl, ace_count, &default_acl_flags), AFPERR_MISC);
1303
1304     /* calcuate ACL mask */
1305     EC_ZERO_LOG_ERR(acl_calc_mask(&access_acl), AFPERR_MISC);
1306
1307     /* is it ok? */
1308     EC_ZERO_LOG_ERR(acl_valid(access_acl), AFPERR_MISC);
1309
1310     /* set it */
1311     EC_ZERO_LOG_ERR(acl_set_file(name, ACL_TYPE_ACCESS, access_acl), AFPERR_MISC);
1312     EC_ZERO_LOG_ERR(vol->vfs->vfs_acl(vol, name, ACL_TYPE_ACCESS, 0, access_acl), AFPERR_MISC);
1313
1314     if (default_acl) {
1315         /* If the dir has an extended default acl it's ACL_MASK must be updated.*/
1316         if (default_acl_flags & HAS_EXT_DEFAULT_ACL)
1317             EC_ZERO_LOG_ERR(acl_calc_mask(&default_acl), AFPERR_MISC);
1318
1319         if (default_acl_flags) {
1320             EC_ZERO_LOG_ERR(acl_valid(default_acl), AFPERR_MISC);
1321             EC_ZERO_LOG_ERR(acl_set_file(name, ACL_TYPE_DEFAULT, default_acl), AFPERR_MISC);
1322             EC_ZERO_LOG_ERR(vol->vfs->vfs_acl(vol, name, ACL_TYPE_DEFAULT, 0, default_acl), AFPERR_MISC);
1323         }
1324     }
1325
1326 EC_CLEANUP:
1327     if (access_acl) acl_free(access_acl);
1328     if (default_acl) acl_free(default_acl);
1329
1330     LOG(log_maxdebug, logtype_afpd, "set_acl: END");
1331     EC_EXIT;
1332 }
1333 #endif /* HAVE_POSIX_ACLS */
1334
1335 /*!
1336  * Checks if a given UUID has requested_rights(type darwin_ace_rights) for path.
1337  *
1338  * Note: this gets called frequently and is a good place for optimizations !
1339  *
1340  * @param vol              (r) volume
1341  * @param dir              (rw) directory
1342  * @param path             (r) path to filesystem object
1343  * @param uuid             (r) UUID of user
1344  * @param requested_rights (r) requested Darwin ACE
1345  *
1346  * @returns                    AFP result code
1347 */
1348 static int check_acl_access(const AFPObj *obj,
1349                             const struct vol *vol,
1350                             struct dir *dir,
1351                             const char *path,
1352                             const uuidp_t uuid,
1353                             uint32_t requested_rights)
1354 {
1355     int            ret;
1356     uint32_t       allowed_rights = 0;
1357     char           *username = NULL;
1358     uuidtype_t     uuidtype;
1359     struct stat    st;
1360     bstring        parent = NULL;
1361     int            is_dir;
1362
1363     LOG(log_maxdebug, logtype_afpd, "check_acl_access(dir: \"%s\", path: \"%s\", curdir: \"%s\", 0x%08x)",
1364         cfrombstr(dir->d_fullpath), path, getcwdpath(), requested_rights);
1365
1366     /* This check is not used anymore, as OS X Server seems to be ignoring too */
1367 #if 0
1368     /* Get uid or gid from UUID */
1369     EC_ZERO_ERR(getnamefromuuid(uuid, &username, &uuidtype), AFPERR_PARAM);
1370     switch (uuidtype) {
1371     case UUID_USER:
1372         break;
1373     case UUID_GROUP:
1374         LOG(log_warning, logtype_afpd, "check_acl_access: afp_access not supported for groups");
1375         EC_STATUS(AFPERR_MISC);
1376         goto EC_CLEANUP;
1377     default:
1378         EC_STATUS(AFPERR_MISC);
1379         goto EC_CLEANUP;
1380     }
1381 #endif
1382
1383     EC_ZERO_LOG_ERR(ostat(path, &st, vol_syml_opt(vol)), AFPERR_PARAM);
1384
1385     is_dir = !strcmp(path, ".");
1386
1387     if (is_dir && (curdir->d_rights_cache != 0xffffffff)) {
1388         /* its a dir and the cache value is valid */
1389         allowed_rights = curdir->d_rights_cache;
1390         LOG(log_debug, logtype_afpd, "check_access: allowed rights from dircache: 0x%08x", allowed_rights);
1391     } else {
1392 #ifdef HAVE_SOLARIS_ACLS
1393         EC_ZERO_LOG(solaris_acl_rights(obj, path, &st, &allowed_rights));
1394 #endif
1395 #ifdef HAVE_POSIX_ACLS
1396         EC_ZERO_LOG(posix_acl_rights(obj, path, &st, &allowed_rights));
1397 #endif
1398         /*
1399          * The DARWIN_ACE_DELETE right might implicitly result from write acces to the parent
1400          * directory. As it seems the 10.6 AFP client is puzzled when this right is not
1401          * allowed where a delete would succeed because the parent dir gives write perms.
1402          * So we check the parent dir for write access and set the right accordingly.
1403          * Currentyl acl2ownermode calls us with dir = NULL, because it doesn't make sense
1404          * there to do this extra check -- afaict.
1405          */
1406         if (vol && dir && (requested_rights & DARWIN_ACE_DELETE)) {
1407             int i;
1408             uint32_t parent_rights = 0;
1409
1410             if (curdir->d_did == DIRDID_ROOT_PARENT) {
1411                 /* use volume path */
1412                 EC_NULL_LOG_ERR(parent = bfromcstr(vol->v_path), AFPERR_MISC);
1413             } else {
1414                 /* build path for parent */
1415                 EC_NULL_LOG_ERR(parent = bstrcpy(curdir->d_fullpath), AFPERR_MISC);
1416                 EC_ZERO_LOG_ERR(bconchar(parent, '/'), AFPERR_MISC);
1417                 EC_ZERO_LOG_ERR(bcatcstr(parent, path), AFPERR_MISC);
1418                 EC_NEG1_LOG_ERR(i = bstrrchr(parent, '/'), AFPERR_MISC);
1419                 EC_ZERO_LOG_ERR(binsertch(parent, i, 1, 0), AFPERR_MISC);
1420             }
1421
1422             LOG(log_debug, logtype_afpd,"parent: %s", cfrombstr(parent));
1423             EC_ZERO_LOG_ERR(lstat(cfrombstr(parent), &st), AFPERR_MISC);
1424
1425 #ifdef HAVE_SOLARIS_ACLS
1426             EC_ZERO_LOG(solaris_acl_rights(obj, cfrombstr(parent), &st, &parent_rights));
1427 #endif
1428 #ifdef HAVE_POSIX_ACLS
1429             EC_ZERO_LOG(posix_acl_rights(obj, path, &st, &parent_rights));
1430 #endif
1431             if (parent_rights & (DARWIN_ACE_WRITE_DATA | DARWIN_ACE_DELETE_CHILD))
1432                 allowed_rights |= DARWIN_ACE_DELETE; /* man, that was a lot of work! */
1433         }
1434
1435         if (is_dir) {
1436             /* Without DARWIN_ACE_DELETE set OS X 10.6 refuses to rename subdirectories in a
1437              * directory.
1438              */
1439             if (allowed_rights & DARWIN_ACE_ADD_SUBDIRECTORY)
1440                 allowed_rights |= DARWIN_ACE_DELETE;
1441
1442             curdir->d_rights_cache = allowed_rights;
1443         }
1444         LOG(log_debug, logtype_afpd, "allowed rights: 0x%08x", allowed_rights);
1445     }
1446
1447     if ((requested_rights & allowed_rights) != requested_rights) {
1448         LOG(log_debug, logtype_afpd, "some requested right wasn't allowed: 0x%08x / 0x%08x",
1449             requested_rights, allowed_rights);
1450         EC_STATUS(AFPERR_ACCESS);
1451     } else {
1452         LOG(log_debug, logtype_afpd, "all requested rights are allowed: 0x%08x",
1453             requested_rights);
1454         EC_STATUS(AFP_OK);
1455     }
1456
1457 EC_CLEANUP:
1458     if (username) free(username);
1459     if (parent) bdestroy(parent);
1460
1461     EC_EXIT;
1462 }
1463
1464 /********************************************************
1465  * Interface
1466  ********************************************************/
1467
1468 int afp_access(AFPObj *obj, char *ibuf, size_t ibuflen _U_, char *rbuf _U_, size_t *rbuflen)
1469 {
1470     int         ret;
1471     struct vol      *vol;
1472     struct dir      *dir;
1473     uint32_t            did, darwin_ace_rights;
1474     uint16_t        vid;
1475     struct path         *s_path;
1476     uuidp_t             uuid;
1477
1478     *rbuflen = 0;
1479     ibuf += 2;
1480
1481     memcpy(&vid, ibuf, sizeof( vid ));
1482     ibuf += sizeof(vid);
1483     if (NULL == ( vol = getvolbyvid( vid ))) {
1484         LOG(log_error, logtype_afpd, "afp_access: error getting volid:%d", vid);
1485         return AFPERR_NOOBJ;
1486     }
1487
1488     memcpy(&did, ibuf, sizeof( did ));
1489     ibuf += sizeof( did );
1490     if (NULL == ( dir = dirlookup( vol, did ))) {
1491         LOG(log_error, logtype_afpd, "afp_access: error getting did:%d", did);
1492         return afp_errno;
1493     }
1494
1495     /* Skip bitmap */
1496     ibuf += 2;
1497
1498     /* Store UUID address */
1499     uuid = (uuidp_t)ibuf;
1500     ibuf += UUID_BINSIZE;
1501
1502     /* Store ACE rights */
1503     memcpy(&darwin_ace_rights, ibuf, 4);
1504     darwin_ace_rights = ntohl(darwin_ace_rights);
1505     ibuf += 4;
1506
1507     /* get full path and handle file/dir subtleties in netatalk code*/
1508     if (NULL == ( s_path = cname( vol, dir, &ibuf ))) {
1509         LOG(log_error, logtype_afpd, "afp_getacl: cname got an error!");
1510         return AFPERR_NOOBJ;
1511     }
1512     if (!s_path->st_valid)
1513         of_statdir(vol, s_path);
1514     if ( s_path->st_errno != 0 ) {
1515         LOG(log_error, logtype_afpd, "afp_getacl: cant stat");
1516         return AFPERR_NOOBJ;
1517     }
1518
1519     ret = check_acl_access(obj, vol, dir, s_path->u_name, uuid, darwin_ace_rights);
1520
1521     return ret;
1522 }
1523
1524 int afp_getacl(AFPObj *obj, char *ibuf, size_t ibuflen _U_, char *rbuf _U_, size_t *rbuflen)
1525 {
1526     struct vol      *vol;
1527     struct dir      *dir;
1528     int         ret;
1529     uint32_t           did;
1530     uint16_t        vid, bitmap;
1531     struct path         *s_path;
1532     struct passwd       *pw;
1533     struct group        *gr;
1534
1535     LOG(log_debug9, logtype_afpd, "afp_getacl: BEGIN");
1536     *rbuflen = 0;
1537     ibuf += 2;
1538
1539     memcpy(&vid, ibuf, sizeof( vid ));
1540     ibuf += sizeof(vid);
1541     if (NULL == ( vol = getvolbyvid( vid ))) {
1542         LOG(log_error, logtype_afpd, "afp_getacl: error getting volid:%d", vid);
1543         return AFPERR_NOOBJ;
1544     }
1545
1546     memcpy(&did, ibuf, sizeof( did ));
1547     ibuf += sizeof( did );
1548     if (NULL == ( dir = dirlookup( vol, did ))) {
1549         LOG(log_error, logtype_afpd, "afp_getacl: error getting did:%d", did);
1550         return afp_errno;
1551     }
1552
1553     memcpy(&bitmap, ibuf, sizeof( bitmap ));
1554     memcpy(rbuf, ibuf, sizeof( bitmap ));
1555     bitmap = ntohs( bitmap );
1556     ibuf += sizeof( bitmap );
1557     rbuf += sizeof( bitmap );
1558     *rbuflen += sizeof( bitmap );
1559
1560     /* skip maxreplysize */
1561     ibuf += 4;
1562
1563     /* get full path and handle file/dir subtleties in netatalk code*/
1564     if (NULL == ( s_path = cname( vol, dir, &ibuf ))) {
1565         LOG(log_error, logtype_afpd, "afp_getacl: cname got an error!");
1566         return AFPERR_NOOBJ;
1567     }
1568     if (!s_path->st_valid)
1569         of_statdir(vol, s_path);
1570     if ( s_path->st_errno != 0 ) {
1571         LOG(log_error, logtype_afpd, "afp_getacl: cant stat");
1572         return AFPERR_NOOBJ;
1573     }
1574
1575     /* Shall we return owner UUID ? */
1576     if (bitmap & kFileSec_UUID) {
1577         LOG(log_debug, logtype_afpd, "afp_getacl: client requested files owner user UUID");
1578         if (NULL == (pw = getpwuid(s_path->st.st_uid))) {
1579             LOG(log_debug, logtype_afpd, "afp_getacl: local uid: %u", s_path->st.st_uid);
1580             localuuid_from_id(rbuf, UUID_USER, s_path->st.st_uid);
1581         } else {
1582             LOG(log_debug, logtype_afpd, "afp_getacl: got uid: %d, name: %s", s_path->st.st_uid, pw->pw_name);
1583             if ((ret = getuuidfromname(pw->pw_name, UUID_USER, rbuf)) != 0)
1584                 return AFPERR_MISC;
1585         }
1586         rbuf += UUID_BINSIZE;
1587         *rbuflen += UUID_BINSIZE;
1588     }
1589
1590     /* Shall we return group UUID ? */
1591     if (bitmap & kFileSec_GRPUUID) {
1592         LOG(log_debug, logtype_afpd, "afp_getacl: client requested files owner group UUID");
1593         if (NULL == (gr = getgrgid(s_path->st.st_gid))) {
1594             LOG(log_debug, logtype_afpd, "afp_getacl: local gid: %u", s_path->st.st_gid);
1595             localuuid_from_id(rbuf, UUID_GROUP, s_path->st.st_gid);
1596         } else {
1597             LOG(log_debug, logtype_afpd, "afp_getacl: got gid: %d, name: %s", s_path->st.st_gid, gr->gr_name);
1598             if ((ret = getuuidfromname(gr->gr_name, UUID_GROUP, rbuf)) != 0)
1599                 return AFPERR_MISC;
1600         }
1601         rbuf += UUID_BINSIZE;
1602         *rbuflen += UUID_BINSIZE;
1603     }
1604
1605     /* Shall we return ACL ? */
1606     if (bitmap & kFileSec_ACL) {
1607         LOG(log_debug, logtype_afpd, "afp_getacl: client requested files ACL");
1608         if (get_and_map_acl(s_path->u_name, rbuf, rbuflen) != 0) {
1609             LOG(log_error, logtype_afpd, "afp_getacl(\"%s/%s\"): mapping error",
1610                 getcwdpath(), s_path->u_name);
1611             return AFPERR_MISC;
1612         }
1613     }
1614
1615     LOG(log_debug9, logtype_afpd, "afp_getacl: END");
1616     return AFP_OK;
1617 }
1618
1619 int afp_setacl(AFPObj *obj, char *ibuf, size_t ibuflen _U_, char *rbuf _U_, size_t *rbuflen)
1620 {
1621     struct vol      *vol;
1622     struct dir      *dir;
1623     int         ret;
1624     uint32_t            did;
1625     uint16_t        vid, bitmap;
1626     struct path         *s_path;
1627
1628     LOG(log_debug9, logtype_afpd, "afp_setacl: BEGIN");
1629     *rbuflen = 0;
1630     ibuf += 2;
1631
1632     memcpy(&vid, ibuf, sizeof( vid ));
1633     ibuf += sizeof(vid);
1634     if (NULL == ( vol = getvolbyvid( vid ))) {
1635         LOG(log_error, logtype_afpd, "afp_setacl: error getting volid:%d", vid);
1636         return AFPERR_NOOBJ;
1637     }
1638
1639     memcpy(&did, ibuf, sizeof( did ));
1640     ibuf += sizeof( did );
1641     if (NULL == ( dir = dirlookup( vol, did ))) {
1642         LOG(log_error, logtype_afpd, "afp_setacl: error getting did:%d", did);
1643         return afp_errno;
1644     }
1645
1646     memcpy(&bitmap, ibuf, sizeof( bitmap ));
1647     bitmap = ntohs( bitmap );
1648     ibuf += sizeof( bitmap );
1649
1650     /* get full path and handle file/dir subtleties in netatalk code*/
1651     if (NULL == ( s_path = cname( vol, dir, &ibuf ))) {
1652         LOG(log_error, logtype_afpd, "afp_setacl: cname got an error!");
1653         return AFPERR_NOOBJ;
1654     }
1655     if (!s_path->st_valid)
1656         of_statdir(vol, s_path);
1657     if ( s_path->st_errno != 0 ) {
1658         LOG(log_error, logtype_afpd, "afp_setacl: cant stat");
1659         return AFPERR_NOOBJ;
1660     }
1661     LOG(log_debug, logtype_afpd, "afp_setacl: unixname: %s", s_path->u_name);
1662
1663     /* Padding? */
1664     if ((unsigned long)ibuf & 1)
1665         ibuf++;
1666
1667     /* Start processing request */
1668
1669     /* Change owner: dont even try */
1670     if (bitmap & kFileSec_UUID) {
1671         LOG(log_note, logtype_afpd, "afp_setacl: change owner request, discarded");
1672         ret = AFPERR_ACCESS;
1673         ibuf += UUID_BINSIZE;
1674     }
1675
1676     /* Change group: certain changes might be allowed, so try it. FIXME: not implemented yet. */
1677     if (bitmap & kFileSec_UUID) {
1678         LOG(log_note, logtype_afpd, "afp_setacl: change group request, not supported");
1679         ret = AFPERR_PARAM;
1680         ibuf += UUID_BINSIZE;
1681     }
1682
1683     /* Remove ACL ? */
1684     if (bitmap & kFileSec_REMOVEACL) {
1685         LOG(log_debug, logtype_afpd, "afp_setacl: Remove ACL request.");
1686         if ((ret = remove_acl(vol, s_path->u_name, S_ISDIR(s_path->st.st_mode))) != AFP_OK)
1687             LOG(log_error, logtype_afpd, "afp_setacl: error from remove_acl");
1688     }
1689
1690     /* Change ACL ? */
1691     if (bitmap & kFileSec_ACL) {
1692         LOG(log_debug, logtype_afpd, "afp_setacl: Change ACL request.");
1693         /*  Get no of ACEs the client put on the wire */
1694         uint32_t ace_count;
1695         memcpy(&ace_count, ibuf, sizeof(uint32_t));
1696         ace_count = htonl(ace_count);
1697         ibuf += 8;      /* skip ACL flags (see acls.h) */
1698
1699         ret = set_acl(vol,
1700                       s_path->u_name,
1701                       (bitmap & kFileSec_Inherit),
1702                       (darwin_ace_t *)ibuf,
1703                       ace_count);
1704         if (ret == 0)
1705             ret = AFP_OK;
1706         else {
1707             LOG(log_warning, logtype_afpd, "afp_setacl(\"%s/%s\"): error",
1708                 getcwdpath(), s_path->u_name);
1709             ret = AFPERR_MISC;
1710         }
1711     }
1712
1713     LOG(log_debug9, logtype_afpd, "afp_setacl: END");
1714     return ret;
1715 }
1716
1717 /********************************************************************
1718  * ACL funcs interfacing with other parts
1719  ********************************************************************/
1720
1721 /*!
1722  * map ACL to user maccess
1723  *
1724  * This is the magic function that makes ACLs usable by calculating
1725  * the access granted by ACEs to the logged in user.
1726  */
1727 int acltoownermode(const AFPObj *obj, const struct vol *vol, char *path, struct stat *st, struct maccess *ma)
1728 {
1729     EC_INIT;
1730     uint32_t rights = 0;
1731
1732     if ( ! (obj->options.flags & OPTION_ACL2MACCESS)
1733          || ! (vol->v_flags & AFPVOL_ACLS))
1734          return 0;
1735
1736     LOG(log_maxdebug, logtype_afpd, "acltoownermode(\"%s/%s\", 0x%02x)",
1737         getcwdpath(), path, ma->ma_user);
1738
1739 #ifdef HAVE_SOLARIS_ACLS
1740     EC_ZERO_LOG(solaris_acl_rights(obj, path, st, &rights));
1741
1742     LOG(log_maxdebug, logtype_afpd, "rights: 0x%08x", rights);
1743
1744     if (rights & DARWIN_ACE_READ_DATA)
1745         ma->ma_user |= AR_UREAD;
1746     if (rights & DARWIN_ACE_WRITE_DATA)
1747         ma->ma_user |= AR_UWRITE;
1748     if (rights & (DARWIN_ACE_EXECUTE | DARWIN_ACE_SEARCH))
1749         ma->ma_user |= AR_USEARCH;
1750 #endif
1751
1752 #ifdef HAVE_POSIX_ACLS
1753     EC_ZERO_LOG(posix_acls_to_uaperms(obj, path, st, ma));
1754 #endif
1755
1756     LOG(log_maxdebug, logtype_afpd, "resulting user maccess: 0x%02x group maccess: 0x%02x", ma->ma_user, ma->ma_group);
1757
1758 EC_CLEANUP:
1759     EC_EXIT;
1760 }