Rainbow: Difference between revisions

From OLPC
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 1: Line 1:
{{translations}}
{{translations}}

== Introduction ==


Rainbow implements the isolation shell implicitly described in the [[Bitfrost]] security specification. This means that it isolates activities (and eventually system services) that it is asked to run from one another and the rest of the system.
Rainbow implements the isolation shell implicitly described in the [[Bitfrost]] security specification. This means that it isolates activities (and eventually system services) that it is asked to run from one another and the rest of the system.
Line 5: Line 7:
Rainbow implements this isolation by generating a new uid (and perhaps a new gid) for each program it is asked to run. Running each activity as a separate user means that standard Unix access checks can be used as the primary 'gate' to control the visibility of activity-driven side-effects like reading from or writing to files or devices or signalling other processes.
Rainbow implements this isolation by generating a new uid (and perhaps a new gid) for each program it is asked to run. Running each activity as a separate user means that standard Unix access checks can be used as the primary 'gate' to control the visibility of activity-driven side-effects like reading from or writing to files or devices or signalling other processes.


== Resources ==
== Design ==

== Implementation ==

The implementation of rainbow can be found in the "rainbow/rainbow" subdirectory of [http://dev.laptop.org/git/security security git repo] and in its several forks.

== Next Steps ==

* P_NETWORK -- [[Isolation LSM]]
* cli interface: [http://dev.laptop.org/git?p=users/mstone/security;hb=cli;a=log]
* pristine root patches -- [http://dev.laptop.org/git/users/mstone/nss-rainbow nss-rainbow]
* P_DOCUMENT -- [[Olpcfs]]

== (Outdated) Resources ==


* [[Taste the Rainbow]]: A guided tour of the source code of the rainbow-0.7.8 release.
* [[Taste the Rainbow]]: A guided tour of the source code of the rainbow-0.7.8 release.
Line 13: Line 28:
* [[Rainbow/DataStore Access]]
* [[Rainbow/DataStore Access]]


== Next Steps ==

* P_NETWORK -- [[Isolation LSM]]


[[Category:Software]]
[[Category:Software]]

Revision as of 18:07, 18 September 2008

  english | español HowTo [ID# 164369]  +/-  


Introduction

Rainbow implements the isolation shell implicitly described in the Bitfrost security specification. This means that it isolates activities (and eventually system services) that it is asked to run from one another and the rest of the system.

Rainbow implements this isolation by generating a new uid (and perhaps a new gid) for each program it is asked to run. Running each activity as a separate user means that standard Unix access checks can be used as the primary 'gate' to control the visibility of activity-driven side-effects like reading from or writing to files or devices or signalling other processes.

Design

Implementation

The implementation of rainbow can be found in the "rainbow/rainbow" subdirectory of security git repo and in its several forks.

Next Steps

(Outdated) Resources