]> arthur.barton.de Git - netatalk.git/blob - doc/README.ACLs
call readt with ONE_DELAY = 5 s
[netatalk.git] / doc / README.ACLs
1
2                  ACLs - Konfiguration and Infos vor Developpers
3                  ==============================================
4
5 ACL support for AFP is implemented with NFSv4 ACLs. Few filesystems and fewer OSes support
6 these. At the time of implementation its only provided with ZFS on Solaris, Opensolaris and
7 derived distributions.
8
9   Configuration
10   -------------
11
12 In order to be able to support ACLs, the following things have to be configured:
13
14 1. ZFS Volumes
15 2. Authentication Domain
16 3. Netatalk Volumes
17
18   1. ZFS Volumes:
19
20      You MUST configure one ACL parameter for any volume you want to use with Netatalk:
21
22         aclinherit = passthrough
23
24      For an explanation of what these parameters mean and how to apply them see, your hosts
25      ZFS documentation (e.g. man zfs).
26
27   2. Authentication Domain
28
29      Your server and the clients must be part of a security association where identity data
30      is coming from a common source. ACLs in Darwin are based on UUIDs and so is the ACL
31      specification in AFP 3.2. Therefor your source of identity data has to provide an
32      attribute for every user and group where a UUID is stored as a ASCII string.
33
34      In other words:
35       - you need an Open Directory Server or an LDAP server where you store UUIDs in some
36         attribute
37       - your clients must be configured to use this server 
38       - your server should be configured to use this server via nsswitch and PAM
39       - configure Netatalk via afp_ldap.conf so that Netatalk is able to retrieve the UUID
40         for users and groups via LDAP search queries
41
42   3. Netatalk Volumes
43
44      Finally you can add "options:acls" to your volume defintions to add ACL support.
45      In case your volume basedir doesn't grant read permissions via mode (like: 0700 root:adm)
46      but only via ACLs, you MUST add the "nostat" option to the volume defintion.
47
48   Implemantation Notes
49   --------------------
50
51 Some implementation details that are buried in the code are worthwhile to be documented.
52
53 1. Darwin ACEs vs NFSv4 ACEs
54 2. .AppleDouble VFS integration
55
56   1. Darwin ACEs vs NFSv4 ACEs
57
58      Basically as far as implementing AFP support is concerned they're equivalent.
59      Subtleties arise at other places:
60
61      FPAccess
62
63         The AFP client frequently checks the (DARWIN_)ACE_DELETE_CHILD right. This is most
64         often not explicitly granted via an ACE. Therefor the client would get an no access
65         error. The client in turn then declares the object in question read only.
66         Thus we have to the check the mode for every directory and add ACE_DELETE_CHILD if
67         the requestor has write permissions.
68
69      FPGetFileDirParms
70
71         10.5 does not only use unix mode and FPAccess for permission check, but also OS 9
72         access bits from FPGetFileDirParms. Thus we have to adjust the Access Rights bitmap
73         user bits by including any ACL rigths.
74
75   2. .AppleDouble VFS integration
76
77      FPSetACL sets ACLs on files and dirs. Our implementation also sets the same ACL on the
78      .AppleDouble file for files and on the .AppleDouble dir itself for dirs.
79
80      Thereafter ACLs for created files is taken care of by ACLs own inheritance rules.
81
82      For dirs on the other hand whe have to make sure that any ACL the dir inherits is
83      copied verbatim to its .AppleDouble dir. 
84
85
86                                                                     January 2009, Frank Lahm