2017-02-06 20:16:36 +00:00
|
|
|
# libcontainer
|
|
|
|
|
|
|
|
[![GoDoc](https://godoc.org/github.com/opencontainers/runc/libcontainer?status.svg)](https://godoc.org/github.com/opencontainers/runc/libcontainer)
|
|
|
|
|
2017-02-01 00:45:59 +00:00
|
|
|
Libcontainer provides a native Go implementation for creating containers
|
|
|
|
with namespaces, cgroups, capabilities, and filesystem access controls.
|
|
|
|
It allows you to manage the lifecycle of the container performing additional operations
|
|
|
|
after the container is created.
|
|
|
|
|
|
|
|
|
|
|
|
#### Container
|
|
|
|
A container is a self contained execution environment that shares the kernel of the
|
|
|
|
host system and which is (optionally) isolated from other containers in the system.
|
|
|
|
|
|
|
|
#### Using libcontainer
|
|
|
|
|
|
|
|
Because containers are spawned in a two step process you will need a binary that
|
|
|
|
will be executed as the init process for the container. In libcontainer, we use
|
|
|
|
the current binary (/proc/self/exe) to be executed as the init process, and use
|
|
|
|
arg "init", we call the first step process "bootstrap", so you always need a "init"
|
|
|
|
function as the entry of "bootstrap".
|
|
|
|
|
2017-02-06 20:16:36 +00:00
|
|
|
In addition to the go init function the early stage bootstrap is handled by importing
|
|
|
|
[nsenter](https://github.com/opencontainers/runc/blob/master/libcontainer/nsenter/README.md).
|
|
|
|
|
2017-02-01 00:45:59 +00:00
|
|
|
```go
|
2017-02-06 20:16:36 +00:00
|
|
|
import (
|
|
|
|
_ "github.com/opencontainers/runc/libcontainer/nsenter"
|
|
|
|
)
|
|
|
|
|
2017-02-01 00:45:59 +00:00
|
|
|
func init() {
|
|
|
|
if len(os.Args) > 1 && os.Args[1] == "init" {
|
|
|
|
runtime.GOMAXPROCS(1)
|
|
|
|
runtime.LockOSThread()
|
|
|
|
factory, _ := libcontainer.New("")
|
|
|
|
if err := factory.StartInitialization(); err != nil {
|
|
|
|
logrus.Fatal(err)
|
|
|
|
}
|
|
|
|
panic("--this line should have never been executed, congratulations--")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Then to create a container you first have to initialize an instance of a factory
|
|
|
|
that will handle the creation and initialization for a container.
|
|
|
|
|
|
|
|
```go
|
|
|
|
factory, err := libcontainer.New("/var/lib/container", libcontainer.Cgroupfs, libcontainer.InitArgs(os.Args[0], "init"))
|
|
|
|
if err != nil {
|
|
|
|
logrus.Fatal(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Once you have an instance of the factory created we can create a configuration
|
|
|
|
struct describing how the container is to be created. A sample would look similar to this:
|
|
|
|
|
|
|
|
```go
|
2017-07-20 04:07:01 +00:00
|
|
|
defaultMountFlags := unix.MS_NOEXEC | unix.MS_NOSUID | unix.MS_NODEV
|
2017-02-01 00:45:59 +00:00
|
|
|
config := &configs.Config{
|
|
|
|
Rootfs: "/your/path/to/rootfs",
|
2017-07-20 04:07:01 +00:00
|
|
|
Capabilities: &configs.Capabilities{
|
|
|
|
Bounding: []string{
|
|
|
|
"CAP_CHOWN",
|
|
|
|
"CAP_DAC_OVERRIDE",
|
|
|
|
"CAP_FSETID",
|
|
|
|
"CAP_FOWNER",
|
|
|
|
"CAP_MKNOD",
|
|
|
|
"CAP_NET_RAW",
|
|
|
|
"CAP_SETGID",
|
|
|
|
"CAP_SETUID",
|
|
|
|
"CAP_SETFCAP",
|
|
|
|
"CAP_SETPCAP",
|
|
|
|
"CAP_NET_BIND_SERVICE",
|
|
|
|
"CAP_SYS_CHROOT",
|
|
|
|
"CAP_KILL",
|
|
|
|
"CAP_AUDIT_WRITE",
|
|
|
|
},
|
|
|
|
Effective: []string{
|
|
|
|
"CAP_CHOWN",
|
|
|
|
"CAP_DAC_OVERRIDE",
|
|
|
|
"CAP_FSETID",
|
|
|
|
"CAP_FOWNER",
|
|
|
|
"CAP_MKNOD",
|
|
|
|
"CAP_NET_RAW",
|
|
|
|
"CAP_SETGID",
|
|
|
|
"CAP_SETUID",
|
|
|
|
"CAP_SETFCAP",
|
|
|
|
"CAP_SETPCAP",
|
|
|
|
"CAP_NET_BIND_SERVICE",
|
|
|
|
"CAP_SYS_CHROOT",
|
|
|
|
"CAP_KILL",
|
|
|
|
"CAP_AUDIT_WRITE",
|
|
|
|
},
|
|
|
|
Inheritable: []string{
|
|
|
|
"CAP_CHOWN",
|
|
|
|
"CAP_DAC_OVERRIDE",
|
|
|
|
"CAP_FSETID",
|
|
|
|
"CAP_FOWNER",
|
|
|
|
"CAP_MKNOD",
|
|
|
|
"CAP_NET_RAW",
|
|
|
|
"CAP_SETGID",
|
|
|
|
"CAP_SETUID",
|
|
|
|
"CAP_SETFCAP",
|
|
|
|
"CAP_SETPCAP",
|
|
|
|
"CAP_NET_BIND_SERVICE",
|
|
|
|
"CAP_SYS_CHROOT",
|
|
|
|
"CAP_KILL",
|
|
|
|
"CAP_AUDIT_WRITE",
|
|
|
|
},
|
|
|
|
Permitted: []string{
|
|
|
|
"CAP_CHOWN",
|
|
|
|
"CAP_DAC_OVERRIDE",
|
|
|
|
"CAP_FSETID",
|
|
|
|
"CAP_FOWNER",
|
|
|
|
"CAP_MKNOD",
|
|
|
|
"CAP_NET_RAW",
|
|
|
|
"CAP_SETGID",
|
|
|
|
"CAP_SETUID",
|
|
|
|
"CAP_SETFCAP",
|
|
|
|
"CAP_SETPCAP",
|
|
|
|
"CAP_NET_BIND_SERVICE",
|
|
|
|
"CAP_SYS_CHROOT",
|
|
|
|
"CAP_KILL",
|
|
|
|
"CAP_AUDIT_WRITE",
|
|
|
|
},
|
|
|
|
Ambient: []string{
|
|
|
|
"CAP_CHOWN",
|
|
|
|
"CAP_DAC_OVERRIDE",
|
|
|
|
"CAP_FSETID",
|
|
|
|
"CAP_FOWNER",
|
|
|
|
"CAP_MKNOD",
|
|
|
|
"CAP_NET_RAW",
|
|
|
|
"CAP_SETGID",
|
|
|
|
"CAP_SETUID",
|
|
|
|
"CAP_SETFCAP",
|
|
|
|
"CAP_SETPCAP",
|
|
|
|
"CAP_NET_BIND_SERVICE",
|
|
|
|
"CAP_SYS_CHROOT",
|
|
|
|
"CAP_KILL",
|
|
|
|
"CAP_AUDIT_WRITE",
|
|
|
|
},
|
|
|
|
},
|
2017-02-01 00:45:59 +00:00
|
|
|
Namespaces: configs.Namespaces([]configs.Namespace{
|
|
|
|
{Type: configs.NEWNS},
|
|
|
|
{Type: configs.NEWUTS},
|
|
|
|
{Type: configs.NEWIPC},
|
|
|
|
{Type: configs.NEWPID},
|
|
|
|
{Type: configs.NEWUSER},
|
|
|
|
{Type: configs.NEWNET},
|
|
|
|
}),
|
|
|
|
Cgroups: &configs.Cgroup{
|
|
|
|
Name: "test-container",
|
|
|
|
Parent: "system",
|
|
|
|
Resources: &configs.Resources{
|
|
|
|
MemorySwappiness: nil,
|
2017-02-06 20:16:36 +00:00
|
|
|
AllowAllDevices: nil,
|
2017-02-01 00:45:59 +00:00
|
|
|
AllowedDevices: configs.DefaultAllowedDevices,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
MaskPaths: []string{
|
|
|
|
"/proc/kcore",
|
2017-02-06 20:16:36 +00:00
|
|
|
"/sys/firmware",
|
2017-02-01 00:45:59 +00:00
|
|
|
},
|
|
|
|
ReadonlyPaths: []string{
|
|
|
|
"/proc/sys", "/proc/sysrq-trigger", "/proc/irq", "/proc/bus",
|
|
|
|
},
|
|
|
|
Devices: configs.DefaultAutoCreatedDevices,
|
|
|
|
Hostname: "testing",
|
|
|
|
Mounts: []*configs.Mount{
|
|
|
|
{
|
|
|
|
Source: "proc",
|
|
|
|
Destination: "/proc",
|
|
|
|
Device: "proc",
|
|
|
|
Flags: defaultMountFlags,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Source: "tmpfs",
|
|
|
|
Destination: "/dev",
|
|
|
|
Device: "tmpfs",
|
2017-07-20 04:07:01 +00:00
|
|
|
Flags: unix.MS_NOSUID | unix.MS_STRICTATIME,
|
2017-02-01 00:45:59 +00:00
|
|
|
Data: "mode=755",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Source: "devpts",
|
|
|
|
Destination: "/dev/pts",
|
|
|
|
Device: "devpts",
|
2017-07-20 04:07:01 +00:00
|
|
|
Flags: unix.MS_NOSUID | unix.MS_NOEXEC,
|
2017-02-01 00:45:59 +00:00
|
|
|
Data: "newinstance,ptmxmode=0666,mode=0620,gid=5",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Device: "tmpfs",
|
|
|
|
Source: "shm",
|
|
|
|
Destination: "/dev/shm",
|
|
|
|
Data: "mode=1777,size=65536k",
|
|
|
|
Flags: defaultMountFlags,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Source: "mqueue",
|
|
|
|
Destination: "/dev/mqueue",
|
|
|
|
Device: "mqueue",
|
|
|
|
Flags: defaultMountFlags,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Source: "sysfs",
|
|
|
|
Destination: "/sys",
|
|
|
|
Device: "sysfs",
|
2017-07-20 04:07:01 +00:00
|
|
|
Flags: defaultMountFlags | unix.MS_RDONLY,
|
2017-02-01 00:45:59 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
UidMappings: []configs.IDMap{
|
|
|
|
{
|
|
|
|
ContainerID: 0,
|
|
|
|
HostID: 1000,
|
|
|
|
Size: 65536,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
GidMappings: []configs.IDMap{
|
|
|
|
{
|
|
|
|
ContainerID: 0,
|
|
|
|
HostID: 1000,
|
|
|
|
Size: 65536,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Networks: []*configs.Network{
|
|
|
|
{
|
|
|
|
Type: "loopback",
|
|
|
|
Address: "127.0.0.1/0",
|
|
|
|
Gateway: "localhost",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Rlimits: []configs.Rlimit{
|
|
|
|
{
|
2017-07-20 04:07:01 +00:00
|
|
|
Type: unix.RLIMIT_NOFILE,
|
2017-02-01 00:45:59 +00:00
|
|
|
Hard: uint64(1025),
|
|
|
|
Soft: uint64(1025),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Once you have the configuration populated you can create a container:
|
|
|
|
|
|
|
|
```go
|
|
|
|
container, err := factory.Create("container-id", config)
|
|
|
|
if err != nil {
|
|
|
|
logrus.Fatal(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
To spawn bash as the initial process inside the container and have the
|
|
|
|
processes pid returned in order to wait, signal, or kill the process:
|
|
|
|
|
|
|
|
```go
|
|
|
|
process := &libcontainer.Process{
|
|
|
|
Args: []string{"/bin/bash"},
|
|
|
|
Env: []string{"PATH=/bin"},
|
|
|
|
User: "daemon",
|
|
|
|
Stdin: os.Stdin,
|
|
|
|
Stdout: os.Stdout,
|
|
|
|
Stderr: os.Stderr,
|
|
|
|
}
|
|
|
|
|
2017-02-06 20:16:36 +00:00
|
|
|
err := container.Run(process)
|
2017-02-01 00:45:59 +00:00
|
|
|
if err != nil {
|
|
|
|
container.Destroy()
|
2017-02-06 20:16:36 +00:00
|
|
|
logrus.Fatal(err)
|
2017-02-01 00:45:59 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// wait for the process to finish.
|
|
|
|
_, err := process.Wait()
|
|
|
|
if err != nil {
|
|
|
|
logrus.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// destroy the container.
|
|
|
|
container.Destroy()
|
|
|
|
```
|
|
|
|
|
|
|
|
Additional ways to interact with a running container are:
|
|
|
|
|
|
|
|
```go
|
|
|
|
// return all the pids for all processes running inside the container.
|
|
|
|
processes, err := container.Processes()
|
|
|
|
|
|
|
|
// get detailed cpu, memory, io, and network statistics for the container and
|
|
|
|
// it's processes.
|
|
|
|
stats, err := container.Stats()
|
|
|
|
|
|
|
|
// pause all processes inside the container.
|
|
|
|
container.Pause()
|
|
|
|
|
|
|
|
// resume all paused processes.
|
|
|
|
container.Resume()
|
|
|
|
|
|
|
|
// send signal to container's init process.
|
|
|
|
container.Signal(signal)
|
2017-02-06 20:16:36 +00:00
|
|
|
|
|
|
|
// update container resource constraints.
|
|
|
|
container.Set(config)
|
|
|
|
|
|
|
|
// get current status of the container.
|
|
|
|
status, err := container.Status()
|
|
|
|
|
|
|
|
// get current container's state information.
|
|
|
|
state, err := container.State()
|
2017-02-01 00:45:59 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
#### Checkpoint & Restore
|
|
|
|
|
|
|
|
libcontainer now integrates [CRIU](http://criu.org/) for checkpointing and restoring containers.
|
|
|
|
This let's you save the state of a process running inside a container to disk, and then restore
|
|
|
|
that state into a new process, on the same machine or on another machine.
|
|
|
|
|
|
|
|
`criu` version 1.5.2 or higher is required to use checkpoint and restore.
|
|
|
|
If you don't already have `criu` installed, you can build it from source, following the
|
|
|
|
[online instructions](http://criu.org/Installation). `criu` is also installed in the docker image
|
|
|
|
generated when building libcontainer with docker.
|
|
|
|
|
|
|
|
|
|
|
|
## Copyright and license
|
|
|
|
|
|
|
|
Code and documentation copyright 2014 Docker, inc. Code released under the Apache 2.0 license.
|
|
|
|
Docs released under Creative commons.
|
|
|
|
|