2015-02-12 09:26:29 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"io"
|
2015-02-14 08:50:00 +08:00
|
|
|
"math"
|
2015-02-12 09:26:29 +08:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2015-02-18 13:37:02 +08:00
|
|
|
"strings"
|
2015-02-12 09:26:29 +08:00
|
|
|
"syscall"
|
|
|
|
|
2015-02-18 13:37:02 +08:00
|
|
|
"github.com/Sirupsen/logrus"
|
2015-02-12 09:26:29 +08:00
|
|
|
"github.com/codegangsta/cli"
|
|
|
|
"github.com/docker/libcontainer/configs"
|
2015-02-18 13:37:02 +08:00
|
|
|
"github.com/docker/libcontainer/utils"
|
2015-02-12 09:26:29 +08:00
|
|
|
)
|
|
|
|
|
2015-02-13 08:23:05 +08:00
|
|
|
const defaultMountFlags = syscall.MS_NOEXEC | syscall.MS_NOSUID | syscall.MS_NODEV
|
|
|
|
|
2015-02-12 09:42:58 +08:00
|
|
|
var createFlags = []cli.Flag{
|
2015-02-13 02:38:43 +08:00
|
|
|
cli.IntFlag{Name: "parent-death-signal", Usage: "set the signal that will be delivered to the process in case the parent dies"},
|
2015-02-12 09:42:58 +08:00
|
|
|
cli.BoolFlag{Name: "read-only", Usage: "set the container's rootfs as read-only"},
|
|
|
|
cli.StringSliceFlag{Name: "bind", Value: &cli.StringSlice{}, Usage: "add bind mounts to the container"},
|
|
|
|
cli.StringSliceFlag{Name: "tmpfs", Value: &cli.StringSlice{}, Usage: "add tmpfs mounts to the container"},
|
|
|
|
cli.IntFlag{Name: "cpushares", Usage: "set the cpushares for the container"},
|
|
|
|
cli.IntFlag{Name: "memory-limit", Usage: "set the memory limit for the container"},
|
|
|
|
cli.IntFlag{Name: "memory-swap", Usage: "set the memory swap limit for the container"},
|
|
|
|
cli.StringFlag{Name: "cpuset-cpus", Usage: "set the cpuset cpus"},
|
|
|
|
cli.StringFlag{Name: "cpuset-mems", Usage: "set the cpuset mems"},
|
|
|
|
cli.StringFlag{Name: "apparmor-profile", Usage: "set the apparmor profile"},
|
|
|
|
cli.StringFlag{Name: "process-label", Usage: "set the process label"},
|
|
|
|
cli.StringFlag{Name: "mount-label", Usage: "set the mount label"},
|
2015-02-18 13:37:02 +08:00
|
|
|
cli.StringFlag{Name: "rootfs", Usage: "set the rootfs"},
|
2015-02-14 08:50:00 +08:00
|
|
|
cli.IntFlag{Name: "userns-root-uid", Usage: "set the user namespace root uid"},
|
2015-02-18 13:50:43 +08:00
|
|
|
cli.StringFlag{Name: "hostname", Value: "nsinit", Usage: "hostname value for the container"},
|
2015-02-18 13:37:02 +08:00
|
|
|
cli.StringFlag{Name: "net", Value: "", Usage: "network namespace"},
|
|
|
|
cli.StringFlag{Name: "ipc", Value: "", Usage: "ipc namespace"},
|
|
|
|
cli.StringFlag{Name: "pid", Value: "", Usage: "pid namespace"},
|
|
|
|
cli.StringFlag{Name: "uts", Value: "", Usage: "uts namespace"},
|
|
|
|
cli.StringFlag{Name: "mnt", Value: "", Usage: "mount namespace"},
|
|
|
|
cli.StringFlag{Name: "veth-bridge", Usage: "veth bridge"},
|
|
|
|
cli.StringFlag{Name: "veth-address", Usage: "veth ip address"},
|
|
|
|
cli.StringFlag{Name: "veth-gateway", Usage: "veth gateway address"},
|
|
|
|
cli.IntFlag{Name: "veth-mtu", Usage: "veth mtu"},
|
2015-02-12 09:42:58 +08:00
|
|
|
}
|
|
|
|
|
2015-02-12 09:26:29 +08:00
|
|
|
var configCommand = cli.Command{
|
|
|
|
Name: "config",
|
|
|
|
Usage: "generate a standard configuration file for a container",
|
2015-02-12 09:42:58 +08:00
|
|
|
Flags: append([]cli.Flag{
|
2015-02-12 09:26:29 +08:00
|
|
|
cli.StringFlag{Name: "file,f", Value: "stdout", Usage: "write the configuration to the specified file"},
|
2015-02-12 09:42:58 +08:00
|
|
|
}, createFlags...),
|
2015-02-12 09:26:29 +08:00
|
|
|
Action: func(context *cli.Context) {
|
|
|
|
template := getTemplate()
|
2015-02-12 09:42:58 +08:00
|
|
|
modify(template, context)
|
2015-02-12 09:26:29 +08:00
|
|
|
data, err := json.MarshalIndent(template, "", "\t")
|
|
|
|
if err != nil {
|
|
|
|
fatal(err)
|
|
|
|
}
|
|
|
|
var f *os.File
|
|
|
|
filePath := context.String("file")
|
|
|
|
switch filePath {
|
|
|
|
case "stdout", "":
|
|
|
|
f = os.Stdout
|
|
|
|
default:
|
|
|
|
if f, err = os.Create(filePath); err != nil {
|
|
|
|
fatal(err)
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
}
|
|
|
|
if _, err := io.Copy(f, bytes.NewBuffer(data)); err != nil {
|
|
|
|
fatal(err)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-02-12 09:42:58 +08:00
|
|
|
func modify(config *configs.Config, context *cli.Context) {
|
|
|
|
config.ParentDeathSignal = context.Int("parent-death-signal")
|
|
|
|
config.Readonlyfs = context.Bool("read-only")
|
|
|
|
config.Cgroups.CpusetCpus = context.String("cpuset-cpus")
|
|
|
|
config.Cgroups.CpusetMems = context.String("cpuset-mems")
|
|
|
|
config.Cgroups.CpuShares = int64(context.Int("cpushares"))
|
|
|
|
config.Cgroups.Memory = int64(context.Int("memory-limit"))
|
|
|
|
config.Cgroups.MemorySwap = int64(context.Int("memory-swap"))
|
|
|
|
config.AppArmorProfile = context.String("apparmor-profile")
|
|
|
|
config.ProcessLabel = context.String("process-label")
|
|
|
|
config.MountLabel = context.String("mount-label")
|
2015-02-19 13:36:04 +08:00
|
|
|
|
|
|
|
rootfs := context.String("rootfs")
|
|
|
|
if rootfs != "" {
|
|
|
|
config.Rootfs = rootfs
|
|
|
|
}
|
2015-02-14 08:50:00 +08:00
|
|
|
|
|
|
|
userns_uid := context.Int("userns-root-uid")
|
|
|
|
if userns_uid != 0 {
|
2015-02-18 13:37:02 +08:00
|
|
|
config.Namespaces.Add(configs.NEWUSER, "")
|
2015-02-14 08:50:00 +08:00
|
|
|
config.UidMappings = []configs.IDMap{
|
|
|
|
{ContainerID: 0, HostID: userns_uid, Size: 1},
|
|
|
|
{ContainerID: 1, HostID: 1, Size: userns_uid - 1},
|
|
|
|
{ContainerID: userns_uid + 1, HostID: userns_uid + 1, Size: math.MaxInt32 - userns_uid},
|
|
|
|
}
|
|
|
|
config.GidMappings = []configs.IDMap{
|
|
|
|
{ContainerID: 0, HostID: userns_uid, Size: 1},
|
|
|
|
{ContainerID: 1, HostID: 1, Size: userns_uid - 1},
|
|
|
|
{ContainerID: userns_uid + 1, HostID: userns_uid + 1, Size: math.MaxInt32 - userns_uid},
|
|
|
|
}
|
2015-02-18 13:37:02 +08:00
|
|
|
for _, node := range config.Devices {
|
|
|
|
node.Uid = uint32(userns_uid)
|
|
|
|
node.Gid = uint32(userns_uid)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, rawBind := range context.StringSlice("bind") {
|
|
|
|
mount := &configs.Mount{
|
|
|
|
Device: "bind",
|
|
|
|
Flags: syscall.MS_BIND | syscall.MS_REC,
|
|
|
|
}
|
|
|
|
parts := strings.SplitN(rawBind, ":", 3)
|
|
|
|
switch len(parts) {
|
|
|
|
default:
|
|
|
|
logrus.Fatalf("invalid bind mount %s", rawBind)
|
|
|
|
case 2:
|
|
|
|
mount.Source, mount.Destination = parts[0], parts[1]
|
|
|
|
case 3:
|
|
|
|
mount.Source, mount.Destination = parts[0], parts[1]
|
|
|
|
switch parts[2] {
|
|
|
|
case "ro":
|
|
|
|
mount.Flags |= syscall.MS_RDONLY
|
|
|
|
case "rw":
|
|
|
|
default:
|
|
|
|
logrus.Fatalf("invalid bind mount mode %s", parts[2])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
config.Mounts = append(config.Mounts, mount)
|
|
|
|
}
|
|
|
|
for _, tmpfs := range context.StringSlice("tmpfs") {
|
|
|
|
config.Mounts = append(config.Mounts, &configs.Mount{
|
|
|
|
Device: "tmpfs",
|
|
|
|
Destination: tmpfs,
|
|
|
|
Flags: syscall.MS_NOEXEC | syscall.MS_NOSUID | syscall.MS_NODEV,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
for flag, value := range map[string]configs.NamespaceType{
|
|
|
|
"net": configs.NEWNET,
|
|
|
|
"mnt": configs.NEWNS,
|
|
|
|
"pid": configs.NEWPID,
|
|
|
|
"ipc": configs.NEWIPC,
|
|
|
|
"uts": configs.NEWUTS,
|
|
|
|
} {
|
|
|
|
switch v := context.String(flag); v {
|
|
|
|
case "host":
|
|
|
|
config.Namespaces.Remove(value)
|
|
|
|
case "", "private":
|
|
|
|
if !config.Namespaces.Contains(value) {
|
|
|
|
config.Namespaces.Add(value, "")
|
|
|
|
}
|
2015-02-18 13:50:43 +08:00
|
|
|
if flag == "net" {
|
2015-02-18 13:37:02 +08:00
|
|
|
config.Networks = []*configs.Network{
|
|
|
|
{
|
|
|
|
Type: "loopback",
|
|
|
|
Address: "127.0.0.1/0",
|
|
|
|
Gateway: "localhost",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2015-02-18 13:50:43 +08:00
|
|
|
if flag == "uts" {
|
|
|
|
config.Hostname = context.String("hostname")
|
|
|
|
}
|
2015-02-18 13:37:02 +08:00
|
|
|
default:
|
|
|
|
config.Namespaces.Remove(value)
|
|
|
|
config.Namespaces.Add(value, v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if bridge := context.String("veth-bridge"); bridge != "" {
|
|
|
|
hostName, err := utils.GenerateRandomName("veth", 7)
|
|
|
|
if err != nil {
|
|
|
|
logrus.Fatal(err)
|
|
|
|
}
|
|
|
|
network := &configs.Network{
|
|
|
|
Type: "veth",
|
|
|
|
Name: "eth0",
|
|
|
|
Bridge: bridge,
|
|
|
|
Address: context.String("veth-address"),
|
|
|
|
Gateway: context.String("veth-gateway"),
|
|
|
|
Mtu: context.Int("veth-mtu"),
|
|
|
|
HostInterfaceName: hostName,
|
|
|
|
}
|
|
|
|
config.Networks = append(config.Networks, network)
|
2015-02-14 08:50:00 +08:00
|
|
|
}
|
2015-02-12 09:42:58 +08:00
|
|
|
}
|
|
|
|
|
2015-02-12 09:26:29 +08:00
|
|
|
func getTemplate() *configs.Config {
|
|
|
|
cwd, err := os.Getwd()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return &configs.Config{
|
|
|
|
Rootfs: cwd,
|
|
|
|
ParentDeathSignal: int(syscall.SIGKILL),
|
|
|
|
Capabilities: []string{
|
|
|
|
"CHOWN",
|
|
|
|
"DAC_OVERRIDE",
|
|
|
|
"FSETID",
|
|
|
|
"FOWNER",
|
|
|
|
"MKNOD",
|
|
|
|
"NET_RAW",
|
|
|
|
"SETGID",
|
|
|
|
"SETUID",
|
|
|
|
"SETFCAP",
|
|
|
|
"SETPCAP",
|
|
|
|
"NET_BIND_SERVICE",
|
|
|
|
"SYS_CHROOT",
|
|
|
|
"KILL",
|
|
|
|
"AUDIT_WRITE",
|
|
|
|
},
|
|
|
|
Namespaces: configs.Namespaces([]configs.Namespace{
|
|
|
|
{Type: configs.NEWNS},
|
|
|
|
{Type: configs.NEWUTS},
|
|
|
|
{Type: configs.NEWIPC},
|
|
|
|
{Type: configs.NEWPID},
|
|
|
|
{Type: configs.NEWNET},
|
|
|
|
}),
|
|
|
|
Cgroups: &configs.Cgroup{
|
|
|
|
Name: filepath.Base(cwd),
|
|
|
|
Parent: "nsinit",
|
|
|
|
AllowAllDevices: false,
|
|
|
|
AllowedDevices: configs.DefaultAllowedDevices,
|
|
|
|
},
|
2015-02-18 13:50:43 +08:00
|
|
|
Devices: configs.DefaultAutoCreatedDevices,
|
2015-02-13 08:23:05 +08:00
|
|
|
MaskPaths: []string{
|
|
|
|
"/proc/kcore",
|
|
|
|
},
|
|
|
|
ReadonlyPaths: []string{
|
|
|
|
"/proc/sys", "/proc/sysrq-trigger", "/proc/irq", "/proc/bus",
|
|
|
|
},
|
|
|
|
Mounts: []*configs.Mount{
|
2015-03-18 02:03:28 +08:00
|
|
|
{
|
|
|
|
Source: "proc",
|
|
|
|
Destination: "/proc",
|
|
|
|
Device: "proc",
|
|
|
|
Flags: defaultMountFlags,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Source: "tmpfs",
|
|
|
|
Destination: "/dev",
|
|
|
|
Device: "tmpfs",
|
|
|
|
Flags: syscall.MS_NOSUID | syscall.MS_STRICTATIME,
|
|
|
|
Data: "mode=755",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Source: "devpts",
|
|
|
|
Destination: "/dev/pts",
|
|
|
|
Device: "devpts",
|
|
|
|
Flags: syscall.MS_NOSUID | syscall.MS_NOEXEC,
|
|
|
|
Data: "newinstance,ptmxmode=0666,mode=0620,gid=5",
|
|
|
|
},
|
2015-02-13 08:23:05 +08:00
|
|
|
{
|
|
|
|
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",
|
|
|
|
Flags: defaultMountFlags | syscall.MS_RDONLY,
|
|
|
|
},
|
|
|
|
},
|
2015-02-12 09:26:29 +08:00
|
|
|
Rlimits: []configs.Rlimit{
|
|
|
|
{
|
|
|
|
Type: syscall.RLIMIT_NOFILE,
|
2015-02-12 09:42:58 +08:00
|
|
|
Hard: 1024,
|
|
|
|
Soft: 1024,
|
2015-02-12 09:26:29 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|