The object-capability model is a computer security model. A capability describes a transferable right to perform one (or more) operations on a given object. It can be obtained by the following combination:
Contents
- Loopholes in object oriented programming languages
- Advantages of object capabilities
- Glossary of related terms
- Implementations
- Languages that implement object capabilities
- Relationship of the object capability model and the Actor model
- References
The security model relies on not being able to forge references.
- initial conditions: In the initial state of the computational world being described, object A may already have a reference to object B.
- parenthood: If A creates B, at that moment A obtains the only reference to the newly created B.
- endowment: If A creates B, B is born with that subset of A's references with which A chose to endow it.
- introduction: If A has references to both B and C, A can send to B a message containing a reference to C. B can retain that reference for subsequent use.
In the Object-capability model, all computation is performed following the above rules.
Advantages that motivate object-oriented programming, such as encapsulation or information hiding, modularity, and separation of concerns, correspond to security goals such as least privilege and privilege separation in capability-based programming.
The object-capability model was first proposed by Jack Dennis and Earl C. Van Horn in 1966.
Loopholes in object-oriented programming languages
Some object-based programming languages (e.g. JavaScript, Java, and C#) provide ways to access resources in other ways than according to the rules above including the following:
Such use of undeniable authority effectively defeats the security benefits of the object-capability model. Caja and Joe-E are variants of JavaScript and Java, respectively, that impose restrictions to eliminate these loopholes.
Advantages of object capabilities
The structural properties of object capability systems favor modularity in code design and ensure reliable encapsulation in code implementation.
These structural properties facilitate the analysis of some security properties of an object-capability program or operating system. Some of these — in particular, information flow properties — can be analyzed at the level of object references and connectivity, independent of any knowledge or analysis of the code that determines the behavior of the objects. As a consequence, these security properties can be established and maintained in the presence of new objects that contain unknown and possibly malicious code.
These structural properties stem from the two rules governing access to existing objects:
1) An object A can send a message to B only if object A holds a reference to B.2) An object A can obtain a reference to C only if object A receives a message containing a reference to C.As a consequence of these two rules, an object can obtain a reference to another object only through a preexisting chain of references. In short, "Only connectivity begets connectivity."
Glossary of related terms
Implementations
Almost all historical systems that have been described as "capability systems" can be modeled as object-capability systems. (Note, however, that some uses of the term "capability" are not consistent with the model, such as POSIX "capabilities".)
KeyKOS, EROS, Integrity (operating system), CapROS, Coyotos, seL4, OKL4 and Fiasco.OC are secure operating systems that implement the object-capability model.
Languages that implement object capabilities
Relationship of the object-capability model and the Actor model
There are a few differences between the object-capability model and the Actor model.
Of course, some systems have all the properties required by both models, and so are both object-capability systems and Actor systems.