2017-03-03 03:00:53 +08:00
# <a name="runtimeAndLifecycle" />Runtime and Lifecycle
2015-06-06 08:39:27 +08:00
2017-03-03 03:00:53 +08:00
## <a name="runtimeScopeContainer" />Scope of a Container
2015-10-14 01:31:03 +08:00
Barring access control concerns, the entity using a runtime to create a container MUST be able to use the operations defined in this specification against that same container.
Whether other entities using the same, or other, instance of the runtime can see that container is out of scope of this specification.
2015-07-30 05:09:30 +08:00
2017-03-03 03:00:53 +08:00
## <a name="runtimeState" />State
2015-10-03 04:21:31 +08:00
2016-06-24 05:29:30 +08:00
The state of a container includes the following properties:
2015-10-03 04:21:31 +08:00
2016-06-24 05:29:30 +08:00
* **`ociVersion`** (string, REQUIRED) is the OCI specification version used when creating the container.
* **`id`** (string, REQUIRED) is the container's ID.
2015-10-03 04:21:31 +08:00
This MUST be unique across all containers on this host.
There is no requirement that it be unique across hosts.
2016-06-24 05:29:30 +08:00
* **`status`** (string, REQUIRED) is the runtime state of the container.
2016-05-27 05:20:00 +08:00
The value MAY be one of:
runtime: Replace "process is stopped" with "process exits"
proc(5) describes the following state entries in proc/[pid]/stat [1]
(for modern kernels):
* R Running
* S Sleeping in an interruptible wait
* D Waiting in uninterruptible disk sleep
* Z Zombie
* T Stopped (on a signal)
* t Tracing stop
* X Dead
and ps(1) has a bit more context [2] (for modern kernels):
* D uninterruptible sleep (usually IO)
* R running or runnable (on run queue)
* S interruptible sleep (waiting for an event to complete)
* T stopped by job control signal
* t stopped by debugger during the tracing
* X dead (should never be seen)
* Z defunct ("zombie") process, terminated but not reaped by its
parent
So I expect "stopped" to mean "process still exists but is paused,
e.g. by SIGSTOP". And I expect "exited" to mean "process has finished
and is either a zombie or dead".
After this commit, 'git grep -i stop' only turns up the "stopped"
state (which I've left alone for backwards compat), some poststop-hook
stuff, a reference in principles.md, a "stoppage" in LICENSE, and some
ChangeLog entries.
Also replace "container's process" with "container process" to match
usage in the rest of the repository. After this commit:
$ git grep -i "container process" | wc -l
20
$ git grep -i "container's process" | wc -l
1
Also reword status entries to avoid "running", which is less precise
in our spec (e.g. it also includes "sleeping", "waiting", ...).
Also removes a "them" leftover from a partial plural -> singular
reroll of be594153 (Split create and start, 2016-04-01, #384).
[1]: http://man7.org/linux/man-pages/man5/proc.5.html
[2]: http://man7.org/linux/man-pages/man1/ps.1.html
Signed-off-by: W. Trevor King <wking@tremily.us>
2016-05-27 13:47:52 +08:00
2016-06-24 05:25:00 +08:00
* `creating` : the container is being created (step 2 in the [lifecycle ](#lifecycle ))
* `created` : the runtime has finished the [create operation ](#create ) (after step 2 in the [lifecycle ](#lifecycle )), and the container process has neither exited nor executed the user-specified program
* `running` : the container process has executed the user-specified program but has not exited (after step 4 in the [lifecycle ](#lifecycle ))
* `stopped` : the container process has exited (step 5 in the [lifecycle ](#lifecycle ))
2016-05-27 05:20:00 +08:00
2016-11-03 09:33:51 +08:00
Additional values MAY be defined by the runtime, however, they MUST be used to represent new runtime states not defined above.
2016-06-24 05:29:30 +08:00
* **`pid`** (int, REQUIRED when `status` is `created` or `running` ) is the ID of the container process, as seen by the host.
2017-02-03 03:50:24 +08:00
* **`bundle`** (string, REQUIRED) is the absolute path to the container's bundle directory.
2015-10-03 04:21:31 +08:00
This is provided so that consumers can find the container's configuration and root filesystem on the host.
2016-06-24 05:29:30 +08:00
* **`annotations`** (map, OPTIONAL) contains the list of annotations associated with the container.
2016-06-03 04:21:18 +08:00
If no annotations were provided then this property MAY either be absent or an empty map.
2015-07-30 05:09:30 +08:00
2016-06-24 05:29:30 +08:00
The state MAY include additional properties.
2015-10-14 01:31:03 +08:00
When serialized in JSON, the format MUST adhere to the following pattern:
2016-03-17 09:26:12 +08:00
2015-07-30 05:09:30 +08:00
```json
{
2015-10-14 01:31:03 +08:00
"ociVersion": "0.2.0",
"id": "oci-container1",
2016-05-27 05:20:00 +08:00
"status": "running",
2015-07-30 05:09:30 +08:00
"pid": 4422,
2017-02-03 03:50:24 +08:00
"bundle": "/containers/redis",
2016-06-03 04:21:18 +08:00
"annotations": {
"myKey": "myValue"
}
2015-07-30 05:09:30 +08:00
}
```
2015-10-14 01:31:03 +08:00
See [Query State ](#query-state ) for information on retrieving the state of a container.
2017-03-03 03:00:53 +08:00
## <a name="runtimeLifecycle" />Lifecycle
2015-10-23 03:50:40 +08:00
The lifecycle describes the timeline of events that happen from when a container is created to when it ceases to exist.
2016-05-27 14:08:11 +08:00
2016-10-25 20:08:22 +08:00
1. OCI compliant runtime's [`create` ](runtime.md#create ) command is invoked with a reference to the location of the bundle and a unique identifier.
2015-10-14 01:31:03 +08:00
2. The container's runtime environment MUST be created according to the configuration in [`config.json` ](config.md ).
2016-05-27 19:59:21 +08:00
If the runtime is unable to create the environment specified in the [`config.json` ](config.md ), it MUST generate an error.
*: Replace "user-specified code" with "user-specified program"
In [1], I'd proposed replacing our old "user-specified process" with
"user-specified code" to help distinguish between 'create' (cloning
the container process) and 'start' (signaling the container process to
execve or similar the user-specified $STUFF_FROM_THE_process_CONFIG).
That PR was rejected, although the renaming proposed there had already
landed via dd0cd210 (Add a 'status' field to our state struct,
2016-05-26, #462).
This PR attempts to find a common ground between "process" (preferred
by maintainers in #466 [2,3,4], but which I consider incorrect [5])
and "code" (which maintainers found confusing [3,4,6]). The Linux
execve(2) says "program" and unpacks that to "a binary executable, or
a script starting with a [shebang]" [7]. proc(5) documents
/proc/[pid]/exe by talking about "the executed command" [8]. The
POSIX exec docs call this the "process image" and talk about loading
it from the "new process image file" (although they also sprinkle in a
number of “program” references, apparently interchangeably with
“process image”) [9].
POSIX formally defines "command" [11], "executable file" [12], and
"program" [13]. The only reference to "process image" in the
definitions is in the "executable file" entry. The "command"
definition is focused on the shell, the "executable file" definition
is focused on files, and the "program" definition talks about a
"prepared sequence of instructions to the system", so "program" seems
like the best fit.
[1]: https://github.com/opencontainers/runtime-spec/pull/466
Subject: runtime: Replace "user-specified process" with "user-specified code" in 'create'
[2]: https://github.com/opencontainers/runtime-spec/pull/466#r64982402
[3]: https://github.com/opencontainers/runtime-spec/pull/466#issuecomment-223132793
[4]: https://github.com/opencontainers/runtime-spec/pull/466#issuecomment-258563220
[5]: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_295
[6]: https://github.com/opencontainers/runtime-spec/pull/466#r64982165
[7]: http://man7.org/linux/man-pages/man2/execve.2.html
[8]: http://man7.org/linux/man-pages/man5/proc.5.html
[9]: http://pubs.opengroup.org/onlinepubs/9699919799/functions/exec.html
[10]: https://git.kernel.org/cgit/docs/man-pages/man-pages.git/
[11]: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_104
[12]: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_154
[13]: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_306
Signed-off-by: W. Trevor King <wking@tremily.us>
2016-11-18 18:51:51 +08:00
While the resources requested in the [`config.json` ](config.md ) MUST be created, the user-specified program (from [`process` ](config.md#process )) MUST NOT be run at this time.
2016-10-25 20:08:22 +08:00
Any updates to [`config.json` ](config.md ) after this step MUST NOT affect the container.
2016-04-01 23:42:13 +08:00
3. Once the container is created additional actions MAY be performed based on the features the runtime chooses to support.
2016-05-27 13:43:03 +08:00
However, some actions might only be available based on the current state of the container (e.g. only available while it is started).
2016-10-25 20:08:22 +08:00
4. Runtime's [`start` ](runtime.md#start ) command is invoked with the unique identifier of the container.
*: Replace "user-specified code" with "user-specified program"
In [1], I'd proposed replacing our old "user-specified process" with
"user-specified code" to help distinguish between 'create' (cloning
the container process) and 'start' (signaling the container process to
execve or similar the user-specified $STUFF_FROM_THE_process_CONFIG).
That PR was rejected, although the renaming proposed there had already
landed via dd0cd210 (Add a 'status' field to our state struct,
2016-05-26, #462).
This PR attempts to find a common ground between "process" (preferred
by maintainers in #466 [2,3,4], but which I consider incorrect [5])
and "code" (which maintainers found confusing [3,4,6]). The Linux
execve(2) says "program" and unpacks that to "a binary executable, or
a script starting with a [shebang]" [7]. proc(5) documents
/proc/[pid]/exe by talking about "the executed command" [8]. The
POSIX exec docs call this the "process image" and talk about loading
it from the "new process image file" (although they also sprinkle in a
number of “program” references, apparently interchangeably with
“process image”) [9].
POSIX formally defines "command" [11], "executable file" [12], and
"program" [13]. The only reference to "process image" in the
definitions is in the "executable file" entry. The "command"
definition is focused on the shell, the "executable file" definition
is focused on files, and the "program" definition talks about a
"prepared sequence of instructions to the system", so "program" seems
like the best fit.
[1]: https://github.com/opencontainers/runtime-spec/pull/466
Subject: runtime: Replace "user-specified process" with "user-specified code" in 'create'
[2]: https://github.com/opencontainers/runtime-spec/pull/466#r64982402
[3]: https://github.com/opencontainers/runtime-spec/pull/466#issuecomment-223132793
[4]: https://github.com/opencontainers/runtime-spec/pull/466#issuecomment-258563220
[5]: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_295
[6]: https://github.com/opencontainers/runtime-spec/pull/466#r64982165
[7]: http://man7.org/linux/man-pages/man2/execve.2.html
[8]: http://man7.org/linux/man-pages/man5/proc.5.html
[9]: http://pubs.opengroup.org/onlinepubs/9699919799/functions/exec.html
[10]: https://git.kernel.org/cgit/docs/man-pages/man-pages.git/
[11]: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_104
[12]: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_154
[13]: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_306
Signed-off-by: W. Trevor King <wking@tremily.us>
2016-11-18 18:51:51 +08:00
The runtime MUST run the user-specified program, as specified by [`process` ](config.md#process ).
runtime: Replace "process is stopped" with "process exits"
proc(5) describes the following state entries in proc/[pid]/stat [1]
(for modern kernels):
* R Running
* S Sleeping in an interruptible wait
* D Waiting in uninterruptible disk sleep
* Z Zombie
* T Stopped (on a signal)
* t Tracing stop
* X Dead
and ps(1) has a bit more context [2] (for modern kernels):
* D uninterruptible sleep (usually IO)
* R running or runnable (on run queue)
* S interruptible sleep (waiting for an event to complete)
* T stopped by job control signal
* t stopped by debugger during the tracing
* X dead (should never be seen)
* Z defunct ("zombie") process, terminated but not reaped by its
parent
So I expect "stopped" to mean "process still exists but is paused,
e.g. by SIGSTOP". And I expect "exited" to mean "process has finished
and is either a zombie or dead".
After this commit, 'git grep -i stop' only turns up the "stopped"
state (which I've left alone for backwards compat), some poststop-hook
stuff, a reference in principles.md, a "stoppage" in LICENSE, and some
ChangeLog entries.
Also replace "container's process" with "container process" to match
usage in the rest of the repository. After this commit:
$ git grep -i "container process" | wc -l
20
$ git grep -i "container's process" | wc -l
1
Also reword status entries to avoid "running", which is less precise
in our spec (e.g. it also includes "sleeping", "waiting", ...).
Also removes a "them" leftover from a partial plural -> singular
reroll of be594153 (Split create and start, 2016-04-01, #384).
[1]: http://man7.org/linux/man-pages/man5/proc.5.html
[2]: http://man7.org/linux/man-pages/man1/ps.1.html
Signed-off-by: W. Trevor King <wking@tremily.us>
2016-05-27 13:47:52 +08:00
5. The container process exits.
This MAY happen due to erroring out, exiting, crashing or the runtime's [`kill` ](runtime.md#kill ) operation being invoked.
2016-10-25 20:08:22 +08:00
6. Runtime's [`delete` ](runtime.md#delete ) command is invoked with the unique identifier of the container.
2016-04-01 23:42:13 +08:00
The container MUST be destroyed by undoing the steps performed during create phase (step 2).
2015-08-04 01:52:52 +08:00
2017-03-03 03:00:53 +08:00
## <a name="runtimeErrors" />Errors
2015-10-14 01:31:03 +08:00
In cases where the specified operation generates an error, this specification does not mandate how, or even if, that error is returned or exposed to the user of an implementation.
Unless otherwise stated, generating an error MUST leave the state of the environment as if the operation were never attempted - modulo any possible trivial ancillary changes such as logging.
2017-03-03 03:00:53 +08:00
## <a name="runtimeOperations" />Operations
2016-05-23 15:48:20 +08:00
OCI compliant runtimes MUST support the following operations, unless the operation is not supported by the base operating system.
2016-10-25 16:59:26 +08:00
Note: these operations are not specifying any command-line APIs, and the parameters are inputs for general operations.
2016-05-24 15:12:36 +08:00
2017-03-03 03:00:53 +08:00
### <a name="runtimeQueryState" />Query State
2015-10-14 01:31:03 +08:00
`state <container-id>`
This operation MUST generate an error if it is not provided the ID of a container.
2016-04-01 23:42:13 +08:00
Attempting to query a container that does not exist MUST generate an error.
2015-10-14 01:31:03 +08:00
This operation MUST return the state of a container as specified in the [State ](#state ) section.
2017-03-03 03:00:53 +08:00
### <a name="runtimeCreate" />Create
2015-10-14 01:31:03 +08:00
2016-04-01 23:42:13 +08:00
`create <container-id> <path-to-bundle>`
2015-10-14 01:31:03 +08:00
This operation MUST generate an error if it is not provided a path to the bundle and the container ID to associate with the container.
2016-09-09 05:56:08 +08:00
If the ID provided is not unique across all containers within the scope of the runtime, or is not valid in any other way, the implementation MUST generate an error and a new container MUST NOT be created.
2016-04-01 23:42:13 +08:00
Using the data in [`config.json` ](config.md ), this operation MUST create a new container.
*: Replace "user-specified code" with "user-specified program"
In [1], I'd proposed replacing our old "user-specified process" with
"user-specified code" to help distinguish between 'create' (cloning
the container process) and 'start' (signaling the container process to
execve or similar the user-specified $STUFF_FROM_THE_process_CONFIG).
That PR was rejected, although the renaming proposed there had already
landed via dd0cd210 (Add a 'status' field to our state struct,
2016-05-26, #462).
This PR attempts to find a common ground between "process" (preferred
by maintainers in #466 [2,3,4], but which I consider incorrect [5])
and "code" (which maintainers found confusing [3,4,6]). The Linux
execve(2) says "program" and unpacks that to "a binary executable, or
a script starting with a [shebang]" [7]. proc(5) documents
/proc/[pid]/exe by talking about "the executed command" [8]. The
POSIX exec docs call this the "process image" and talk about loading
it from the "new process image file" (although they also sprinkle in a
number of “program” references, apparently interchangeably with
“process image”) [9].
POSIX formally defines "command" [11], "executable file" [12], and
"program" [13]. The only reference to "process image" in the
definitions is in the "executable file" entry. The "command"
definition is focused on the shell, the "executable file" definition
is focused on files, and the "program" definition talks about a
"prepared sequence of instructions to the system", so "program" seems
like the best fit.
[1]: https://github.com/opencontainers/runtime-spec/pull/466
Subject: runtime: Replace "user-specified process" with "user-specified code" in 'create'
[2]: https://github.com/opencontainers/runtime-spec/pull/466#r64982402
[3]: https://github.com/opencontainers/runtime-spec/pull/466#issuecomment-223132793
[4]: https://github.com/opencontainers/runtime-spec/pull/466#issuecomment-258563220
[5]: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_295
[6]: https://github.com/opencontainers/runtime-spec/pull/466#r64982165
[7]: http://man7.org/linux/man-pages/man2/execve.2.html
[8]: http://man7.org/linux/man-pages/man5/proc.5.html
[9]: http://pubs.opengroup.org/onlinepubs/9699919799/functions/exec.html
[10]: https://git.kernel.org/cgit/docs/man-pages/man-pages.git/
[11]: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_104
[12]: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_154
[13]: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_306
Signed-off-by: W. Trevor King <wking@tremily.us>
2016-11-18 18:51:51 +08:00
This means that all of the resources associated with the container MUST be created, however, the user-specified program MUST NOT be run at this time.
2016-12-08 02:01:43 +08:00
If the runtime cannot create the container as specified in [`config.json` ](config.md ), it MUST generate an error and a new container MUST NOT be created.
2016-05-27 05:20:00 +08:00
Upon successful completion of this operation the `status` property of this container MUST be `created` .
2015-10-14 01:31:03 +08:00
2016-05-03 02:33:13 +08:00
The runtime MAY validate `config.json` against this spec, either generically or with respect to the local system capabilities, before creating the container ([step 2](#lifecycle)).
2016-04-01 23:42:13 +08:00
Runtime callers who are interested in pre-create validation can run [bundle-validation tools ](implementations.md#testing--tools ) before invoking the create operation.
Any changes made to the [`config.json` ](config.md ) file after this operation will not have an effect on the container.
2017-03-03 03:00:53 +08:00
### <a name="runtimeStart" />Start
2016-04-01 23:42:13 +08:00
`start <container-id>`
2016-05-03 02:33:13 +08:00
2016-04-01 23:42:13 +08:00
This operation MUST generate an error if it is not provided the container ID.
Attempting to start a container that does not exist MUST generate an error.
Attempting to start an already started container MUST have no effect on the container and MUST generate an error.
*: Replace "user-specified code" with "user-specified program"
In [1], I'd proposed replacing our old "user-specified process" with
"user-specified code" to help distinguish between 'create' (cloning
the container process) and 'start' (signaling the container process to
execve or similar the user-specified $STUFF_FROM_THE_process_CONFIG).
That PR was rejected, although the renaming proposed there had already
landed via dd0cd210 (Add a 'status' field to our state struct,
2016-05-26, #462).
This PR attempts to find a common ground between "process" (preferred
by maintainers in #466 [2,3,4], but which I consider incorrect [5])
and "code" (which maintainers found confusing [3,4,6]). The Linux
execve(2) says "program" and unpacks that to "a binary executable, or
a script starting with a [shebang]" [7]. proc(5) documents
/proc/[pid]/exe by talking about "the executed command" [8]. The
POSIX exec docs call this the "process image" and talk about loading
it from the "new process image file" (although they also sprinkle in a
number of “program” references, apparently interchangeably with
“process image”) [9].
POSIX formally defines "command" [11], "executable file" [12], and
"program" [13]. The only reference to "process image" in the
definitions is in the "executable file" entry. The "command"
definition is focused on the shell, the "executable file" definition
is focused on files, and the "program" definition talks about a
"prepared sequence of instructions to the system", so "program" seems
like the best fit.
[1]: https://github.com/opencontainers/runtime-spec/pull/466
Subject: runtime: Replace "user-specified process" with "user-specified code" in 'create'
[2]: https://github.com/opencontainers/runtime-spec/pull/466#r64982402
[3]: https://github.com/opencontainers/runtime-spec/pull/466#issuecomment-223132793
[4]: https://github.com/opencontainers/runtime-spec/pull/466#issuecomment-258563220
[5]: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_295
[6]: https://github.com/opencontainers/runtime-spec/pull/466#r64982165
[7]: http://man7.org/linux/man-pages/man2/execve.2.html
[8]: http://man7.org/linux/man-pages/man5/proc.5.html
[9]: http://pubs.opengroup.org/onlinepubs/9699919799/functions/exec.html
[10]: https://git.kernel.org/cgit/docs/man-pages/man-pages.git/
[11]: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_104
[12]: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_154
[13]: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_306
Signed-off-by: W. Trevor King <wking@tremily.us>
2016-11-18 18:51:51 +08:00
This operation MUST run the user-specified program as specified by [`process` ](config.md#process ).
2016-04-01 23:42:13 +08:00
2016-05-27 05:20:00 +08:00
Upon successful completion of this operation the `status` property of this container MUST be `running` .
2017-03-03 03:00:53 +08:00
### <a name="runtimeKill" />Kill
2016-04-01 23:42:13 +08:00
`kill <container-id> <signal>`
2015-10-14 01:31:03 +08:00
2016-04-01 23:42:13 +08:00
This operation MUST generate an error if it is not provided the container ID.
Attempting to send a signal to a container that is not running MUST have no effect on the container and MUST generate an error.
This operation MUST send the specified signal to the process in the container.
2015-10-14 01:31:03 +08:00
2016-05-27 05:20:00 +08:00
When the process in the container is stopped, irrespective of it being as a result of a `kill` operation or any other reason, the `status` property of this container MUST be `stopped` .
2017-03-03 03:00:53 +08:00
### <a name="runtimeDelete" />Delete
2016-04-01 23:42:13 +08:00
`delete <container-id>`
2015-10-14 01:31:03 +08:00
This operation MUST generate an error if it is not provided the container ID.
2016-04-01 23:42:13 +08:00
Attempting to delete a container that does not exist MUST generate an error.
Attempting to delete a container whose process is still running MUST generate an error.
Deleting a container MUST delete the resources that were created during the `create` step.
Note that resources associated with the container, but not created by this container, MUST NOT be deleted.
Once a container is deleted its ID MAY be used by a subsequent container.
2015-10-14 01:31:03 +08:00
2015-09-09 22:17:06 +08:00
2017-03-03 03:00:53 +08:00
## <a name="runtimeHooks" />Hooks
2015-10-14 01:31:03 +08:00
Many of the operations specified in this specification have "hooks" that allow for additional actions to be taken before or after each operation.
See [runtime configuration for hooks ](./config.md#hooks ) for more information.