You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 13, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: acl-inheritance.md
+47-4Lines changed: 47 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,14 +21,14 @@ In `monotonic`, ACL permissions are cumulative (inherited from the ancestors) an
21
21
22
22
#### Pro
23
23
- Not as fast as defaultForNew but can be
24
-
- Simple hierarchical permission (e.g. everything in `/shared` is shared)
24
+
- Simple hierarchical permission (e.g. everything in `/shared` is shared) (bblfish: does that mean that a resource cannot unlink from a previous permission?)
25
25
- Can be fast as it only has to find one ACL file to give the permission it needs
26
26
- Monotonic: Once a user or any agent knows the ACL it can apply it as a rule. An ACL is a first class fact. It can be digitally signed, transported, and used to demand access at a later date, etc. Monotonicness is useful.
27
27
28
28
#### Cons
29
29
- It is slower than `defaultFor new`, but the search stops the moment it finds success.
30
30
- It can't have private subfolders within shared folders. Given that permissions cannot be reverted (with the current WAC specification), a subfolder cannot be private in a shared folder. This system is monotonic.
31
-
- User has to be aware of the permissions given to the parent folders
31
+
- User has to be aware of the permissions given to the parent folders (bblfish: why not use `wac:include`?)
32
32
33
33
((A possible solution is NOT include Windows' `DENY` or `DENY all` in the WAC specification, where these entries would take precedence to the other (_allow_) permissions) That would not be monotonic.
34
34
@@ -45,15 +45,58 @@ In `defaultLocal`, ACL permissions are inherited from the most local ACL file wh
45
45
46
46
### Strategy 3) `defaultForNew`
47
47
48
-
In `defaultForNew`, ACL permissions are inherited from the whole path as in 'momotonic', but done from the end of the path top the root. With this method, however, whenever a file dopes not have a local ACL, one is generated for it, so that in future the search will hit it immediately.
48
+
In `defaultForNew`, ACL permissions are inherited from the whole path as in 'monotonic', but done from the end of the path top the root. With this method, however, whenever a file does not have a local ACL, one is generated for it, so that in future the search will hit it immediately.
49
49
50
50
#### Pro
51
51
- Fast
52
52
53
53
#### Cons
54
-
- Generates a storage reuirement for all the ACL files, which is a pain, especialy in a fiel space shared with other systems.
54
+
- Generates a storage requirement for all the ACL files, which is a pain, especialy in a fiel space shared with other systems.
55
55
- Users may lose access to their resource by creating an ACL file that does not contain themselves.
56
56
- Changing permissions recursively to a folder will require changing permission on each subfolder's ACL
57
+
58
+
59
+
### Strategy 4) resource centric
60
+
61
+
Note by bblfish: this may be related to the previous points but I can't tell for sure, as there are a lot of words that are not defined clearly enough for me. Also see wiki page [regexes in ACLs](https://github.com/solid/solid/wiki/Regexes-in-ACLs)
62
+
63
+
[rww-play](https://github.com/read-write-web/rww-play) takes a resource centric view of acls. Any resource `<doc>`'s acl link relation (given by the http header `Link: <doc.acl>; rel="acl"`) specifies the acl starting point for that resource. This must be the case as that is the only way a client can find out about an acl for a resource. The client and the server must therefore start from that acl and follow any [wac:include](http://www.w3.org/ns/auth/acl#include) relations which should be logically mergeable monotonically to create the complete acl for that resource. Given that these mergers happen monotonically the server can stop at any moment it finds an acl that gives the user permission, in the knowledge that any other acl included cannot undo the statement added.
64
+
Note: if it can be shown that ACLs can be inconsistent, then a SoLiD server may want to check the consistency of these acls before allowing a write to succeed.
65
+
66
+
Given the above, here is one way for a container to deal with defaults for new resources that works by reference using a
67
+
relation `wac:defaultInclude` that points from an acl file to another one that will be included by default in any new resource created.
68
+
69
+
This would work like this. Consider an `ldp:Container` named `</container/>`'s whose acl file `</container/.acl>` includes the statement
70
+
71
+
```Turtle
72
+
<.> wac:defaultInclude <default.acl> .
73
+
```
74
+
75
+
On creation of a new resource eg, by `POST`ing some content to `</container/>` with Slug "cat", thereby creating a new resource `</container/cat>` and the associated `</container/cat.acl>` the server on finding the above wac:defaultInclude statement in the container's acl will add the statement:
76
+
77
+
```
78
+
<> wac:include <default.acl> .
79
+
```
80
+
81
+
in the created resource's acl.
82
+
83
+
#### Pro
84
+
* If somone wants to change the all the resources that have a certain default, they can do so just by changing `<default.acl>`.
85
+
* If someone wants a particular resource to not have the defaults, they can just remove the `wac:include` triple.
86
+
* Reduces storage requirements
87
+
* Is very maintainable
88
+
* Is monotonic
89
+
* client and server verification mechanisms follow the same discovery process
90
+
91
+
#### Cons
92
+
* verifying an ACL will often require fetching one new default acl, but that is local so it should be very fast.
93
+
* this does require some form of regular expression (e.g. a simple version based on globbing) as the `wac:include`ed `default.acl` needs to make statements about sets of resources such as
* it does mean that on a naive reading of `wac:regex` some acls will not actually be true of all files specified in the regular expression, as they are only valid if the resource's acl includes them using `wac:include`. Perhaps there is a way of thinking of the `acl:regex` relation in way that does not make this false. Perhaps it should be read as defining a subclass of resources that fit the given pattern.
0 commit comments