-
-
Save openfnord/5082f90f37fea164b99a2efbb294a155 to your computer and use it in GitHub Desktop.
use libcontainer to create container
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"github.com/opencontainers/runc/libcontainer" | |
"github.com/opencontainers/runc/libcontainer/configs" | |
_ "github.com/opencontainers/runc/libcontainer/nsenter" | |
"os" | |
"runtime" | |
"path/filepath" | |
"github.com/Sirupsen/logrus" | |
"golang.org/x/sys/unix" | |
) | |
//reference: https://github.com/opencontainers/runc/tree/master/libcontainer | |
//new definition for Capabilities: https://github.com/opencontainers/runc/blob/master/libcontainer/configs/config.go | |
//centos 7 default disable user namespace, so do not set it in config | |
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--") | |
} | |
} | |
func main() { | |
abs, _ := filepath.Abs("./") | |
//logrus.Info(abs) | |
factory, err := libcontainer.New(abs, libcontainer.Cgroupfs, libcontainer.InitArgs(os.Args[0], "init")) | |
if err != nil { | |
logrus.Fatal(err) | |
return | |
} | |
defaultMountFlags := unix.MS_NOEXEC | unix.MS_NOSUID | unix.MS_NODEV | |
config := &configs.Config{ | |
Rootfs: abs+"/rootfs", | |
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", | |
}, | |
}, | |
Namespaces: configs.Namespaces([]configs.Namespace{ | |
{Type: configs.NEWNS}, | |
{Type: configs.NEWUTS}, | |
{Type: configs.NEWIPC}, | |
{Type: configs.NEWPID}, | |
{Type: configs.NEWNET}, | |
}), | |
Cgroups: &configs.Cgroup{ | |
Name: "test-container", | |
Parent: "system", | |
Resources: &configs.Resources{ | |
MemorySwappiness: nil, | |
AllowAllDevices: nil, | |
AllowedDevices: configs.DefaultAllowedDevices, | |
}, | |
}, | |
MaskPaths: []string{ | |
"/proc/kcore", | |
"/sys/firmware", | |
}, | |
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", | |
Flags: unix.MS_NOSUID | unix.MS_STRICTATIME, | |
Data: "mode=755", | |
}, | |
{ | |
Source: "devpts", | |
Destination: "/dev/pts", | |
Device: "devpts", | |
Flags: unix.MS_NOSUID | unix.MS_NOEXEC, | |
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", | |
Flags: defaultMountFlags | unix.MS_RDONLY, | |
}, | |
}, | |
Networks: []*configs.Network{ | |
{ | |
Type: "loopback", | |
Address: "127.0.0.1/0", | |
Gateway: "localhost", | |
}, | |
}, | |
Rlimits: []configs.Rlimit{ | |
{ | |
Type: unix.RLIMIT_NOFILE, | |
Hard: uint64(1025), | |
Soft: uint64(1025), | |
}, | |
}, | |
} | |
container, err := factory.Create("test-libcontainer", config) | |
if err != nil { | |
logrus.Fatal(err) | |
return | |
} | |
process := &libcontainer.Process{ | |
Args: []string{"/bin/sh"}, | |
Env: []string{"PATH=/bin"}, | |
User: "root", | |
Stdin: os.Stdin, | |
Stdout: os.Stdout, | |
Stderr: os.Stderr, | |
} | |
err = container.Run(process) | |
if err != nil { | |
container.Destroy() | |
logrus.Fatal(err) | |
return | |
} | |
// wait for the process to finish. | |
_, err = process.Wait() | |
if err != nil { | |
logrus.Fatal(err) | |
} | |
// destroy the container. | |
container.Destroy() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment