| ▲ | btilly a day ago |
| The fact that we went with access control lists instead of true capabilities has long been a disappointment to me. For people who understand OO, capabilities are the simplest model in the world. You hand out objects. You can call methods on the object. What that method call has access to depends on the permissions on the object, not your permissions. Entire classes of security mistakes (most notably the "confused deputy" become impossible. The only commercial success that was a true capability system was the AS/400. Not coincidently, single stand alone machines averaged 99.99%-99.999% uptime. And it never had a significant security compromise. (Individual systems did, of course, have problems due to weak passwords and poor configuration. But they were still remarkably resistant. Capability systems work so well that when people wanted to improve security on Linux, they called it capabilities. Even though it wasn't. Unfortunately, the world went with ACLs. That's baked in to the design of things like Windows and POSIX. Which means that all of the consumer software out there expects ACLs. In order to get them to run on a pure capability system, you have to do things like create a POSIX subsystem. At which point, you've just thrown away the whole reason to use capabilities in the first place. |
|
| ▲ | Findecanor a day ago | parent | next [-] |
| The big problem is that you'd need to be able to change permissions over time.
With ACLs that is simple and direct: if you have the access right, you just change the ACL.
Traditional capabilities last forever, unless there is some sort of support for revoking already issued capabilities, and those mechanisms tend are far from straightforward. Some systems have revocation as a core feature, but a cascading revocation (every delegation as a branch in a tree, and revoke a whole subtree of delegated capabilities) is often complex and takes time, especially if they are on disk. There have also been protocols (for EROS-like OS:es) for setting up systems with additional capabilities to revoke individual capabilities but they are even more complex IMHO.
So, in most capability systems the only way to revoke capabilities to a resource is to remove the resource itself. In CHERI, where every pointer is a capability, revocation of capabilities into a memory object relies on what is effectively a parallel garbage collector process that finds all pointers to revoked objects and overwrites them with an invalid pointer that traps on use. [0] In the fantasy OS of my mind, ACLs have instead been promoted to "access-control trees" that include a "grant option", allowing a user to grant the permission she has to someone else.
But once the first user's permissions are revoked, the sub-tree of re-granted permissions get revoked as well. I think that could be achieved with existing file systems ACLs, with added topology info and enforcement by the OS.
Then actual capabilities would be created first when a file is opened, as file handles, but unlike Unix file handles they could be revoked, be revoked in a cascading manner, and revoked automatically if the underlying ACT gets changed. Authorization Certificates (as in X.509) are a type of distributed cryptographic capabilities, but require complex distribution of "revocation lists".
In recent years, there new types of distributed "authorization tokens" have been introduced such as e.g. "Biscuits" [1]. [0] https://www.semanticscholar.org/paper/Cornucopia-Reloaded%3A... [1] https://www.biscuitsec.org |
| |
| ▲ | naasking 19 hours ago | parent | next [-] | | > Traditional capabilities last forever, unless there is some sort of support for revoking already issued capabilities, and those mechanisms tend are far from straightforward. Revocation is very straightforward in EROS/CapROS and previous systems: it's just incrementing a version number on the capability target. Since the new version number doesn't match any existing capabilities, all of those capabilities are effectively revoked. Revocation is really a non-issue, it's been solved since the 1970s. | | |
| ▲ | Findecanor 16 hours ago | parent [-] | | You're missing the problem. With OS/object capabilities, you'd want to revoke only some (and those derived from them), and keep the rest in place. Otherwise they would not be a viable alternative to ACLs. For pointers-as-capabilities, and version counter as protection against use-after-free, you can't assign it or the object ID too many bits because you don't want to make the size of pointers unwieldy.
I've read articles of such systems that use random numbers or encrypted counters to get more randomness but at the end of the day, the safety is still only probabilistic. | | |
| ▲ | naasking 15 hours ago | parent [-] | | > Otherwise it would not be a viable alternative to ACLs. I just want to point out that this is vastly overblown IMO. Typical ACL systems are just organized differently than capability systems that follow POLA. In the former, permissions to a number of objects are widely shared across many different subjects, and so fine-grained grant and revocation for subjects seem natural. It thus also seems natural to think that you will need fine-grained revocation in a capability system, but that's typically not true, because there is virtually no system-wide sharing of any objects in comparable fashion to ACL systems. In POLA and capability systems, any given object is almost always only reachable by one or two other objects, and of course this must be the case because otherwise it wouldn't be POLA! The need for fine-grained revocation is thus practically nil, and for those rare occasions that you do want some kind of fine-grained revocation, proxy and membrane patterns enable this. > It is also not "solved" problem for capabilities-as-pointers. I'm not clear on what you think isn't solved exactly. KeyKOS solved this issue in the 1970s. > I've read articles of systems using random numbers or an encrypted counter to get more randomness but at the end of the day, the safety is still only probabilistic. To be clear, cryptographic capabilities are not the same as object capabilities. | | |
| ▲ | Findecanor 14 hours ago | parent [-] | | The counter in a pointer is still a kind of key, even if not cryptographic. What I mean is the risk of hitting the limit of number of available counter bits. Some approaches on this take the probabilistic route and reuse counter values. Others invalidate the object ID when the counter wraps.
I've myself designed a system that did the latter, but I think that was viable in that case only because the churn was expected to be extremely low. But for arbitrary pointers in arbitrary programs you can not make such an assumption. | | |
| ▲ | naasking 8 hours ago | parent [-] | | > What I mean is the risk of hitting the limit of number of available counter bits. I think this is vanishingly unlikely in a system like EROS/CapROS. As I said, revocations in such a system are very rare, and the version number is 32-bits. This system is checkpointed and so object IDs and their versions can be garbage collected during the checkpoint. |
|
|
|
| |
| ▲ | LoganDark a day ago | parent | prev [-] | | > Traditional capabilities last forever, unless there is some sort of support for revoking already issued capabilities, and those mechanisms tend are far from straightforward. Capabilities don't have to hold the actual permission to access the object. Capabilities can simply hold a provenance that can be used to verify the source of the access. If that access is then revoked from that source, the capability doesn't need to change at all. This is similar to how generational arenas work in some game engines, IMO. AFAIK Android performs something similar to this with the storage URLs that are provided to apps, which will be different depending on which picker provided the file/media, etc. Apple probably also does something similar, but I'd imagine with objects rather than strings. | | |
| ▲ | bheadmaster a day ago | parent | next [-] | | > Capabilities don't have to hold the actual permission to access the object. Capabilities can simply hold a provenance that can be used to verify the source of the access. If that access is then revoked from that source, the capability doesn't need to change at all. Which complicates the initial premise that > capabilities are the simplest model in the world. You hand out objects. You can call methods on the object. What that method call has access to depends on the permissions on the object, not your permissions. Which is exactly what the parent said. Capabilities sound simple at first, but require complex machinery to work. | |
| ▲ | naasking 19 hours ago | parent | prev [-] | | > Capabilities can simply hold a provenance that can be used to verify the source of the access. If that access is then revoked from that source, the capability doesn't need to change at all This is basically using access control lists to mimic a capability system [1]. The capability folks did something similar in "Polaris", their layer atop Windows XP that enforced principle of least authority by default. If only MS had taken that and run with it. [1] A Distributed Capability Computing System (DCCS), http://www.webstart.com/jed/papers/DCCS/ [2] Polaris: Virus-Safe Computing For Windows XP, https://cacm.acm.org/research/polaris-2/ | | |
| ▲ | btilly 19 hours ago | parent [-] | | How equivalent this is to ACLs depends on what "provenance" means here. One of the strategies with capabilities is that I do not hand you the capability that I own to X. Instead, I create a proxy Y that can make requests of X, and then hand you the capability to make requests of Y. If I later stop Y, you lose access. This can be viewed as a kind of provenance. The history of how the access came to be is reflected in the actual capability. The downside, obviously, is that we've added overhead. But this strategy can allow us to do a number of interesting things. Like split an existing capability into multiple finer grained ones. | | |
| ▲ | naasking 18 hours ago | parent [-] | | "Construct proxy" need not be a primitive in the core system though. If message passing is the only means of communication, then interposition to create facets or attenuate permissions naturally follows. This works with ACLs too. All you need to do is restrict the rights amplification authority to discriminate what a capability actually points to, but this is a rights amplification operation and so should itself be a capability that's closely held. DCCS did this right, IIRC. | | |
| ▲ | btilly 17 hours ago | parent [-] | | Yes. Just as we can build an ACL on a capability system, we can build a capability system on an ACL. But this approach is more natural in a capability system. You have to write software differently for dealing with "I got permission through an ACL" versus "I got information through a capability". So when the default expectation is, "I get a capability," the right abstraction is already there for "...and this capability has something more behind it." |
|
|
|
|
|
|
| ▲ | mikewarot 19 hours ago | parent | prev | next [-] |
| The thing that worries me about WASM is this exact conflict between compatibility with ACLs and security. It's like handing over your banking account authorization for every possible financial transaction, even if all you want to do is buy an ice cream cone. In the real world, capabilities based system, (aka a wallet with cash) you hand them a $5 bill, and wait for change. |
| |
| ▲ | btilly 19 hours ago | parent [-] | | You mean handing over everything needs to drain your bank account, like a check, instead of handing over a number that can be used to deposit money in your account, like the giro system that was developed in Amsterdam. After seeing the giro system in practice, I couldn't believe that we still use checks... |
|
|
| ▲ | ryanjshaw a day ago | parent | prev | next [-] |
| It’s bizarre to me that not one megawealthy tech nerd has thrown 8 figures at some smart people in an attempt to solve the capabilities-based OS UX problem. The payoff would be remarkable. |
| |
| ▲ | csrse a day ago | parent | next [-] | | I guess Fuchsia is an attempt at a capability-based OS with wider appeal. The architecture seems interesting, wish there was quicker progress on it. | | |
| ▲ | surajrmal 19 hours ago | parent [-] | | It's honestly moving fast. OS are just complicated these days and it takes a long time to get to parity on all fronts. |
| |
| ▲ | Jyaif a day ago | parent | prev [-] | | The tricky part is not doing the capability-based OS, it's getting adoption. Linux is good enough, so a slightly better OS is not going to cut it. |
|
|
| ▲ | EGreg a day ago | parent | prev [-] |
| I guess you must really love Capnproto then: https://github.com/iguazio/go-capnproto2 |
| |
| ▲ | btilly a day ago | parent | next [-] | | Not sure why you think that my opinions about operating systems would predict my opinions about an RPC system. | | |
| ▲ | kragen 4 hours ago | parent [-] | | Possibly because Cap'n Proto includes a capability system that's currently widely deployed. |
| |
| ▲ | ocdtrekkie a day ago | parent | prev [-] | | You may want to change this link, this is an extremely old fork of the Go capnp implementation. It's neither official nor current! I'd recommend just pointing to capnproto.org |
|