2014-02-20 00:50:10 +00:00
|
|
|
// +build linux
|
|
|
|
|
2014-02-21 02:27:42 +00:00
|
|
|
package nsinit
|
2014-02-19 01:52:06 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/dotcloud/docker/pkg/libcontainer"
|
|
|
|
"github.com/dotcloud/docker/pkg/libcontainer/capabilities"
|
2014-02-19 23:33:44 +00:00
|
|
|
"github.com/dotcloud/docker/pkg/libcontainer/network"
|
2014-02-19 07:13:36 +00:00
|
|
|
"github.com/dotcloud/docker/pkg/system"
|
2014-02-21 01:58:13 +00:00
|
|
|
"io"
|
2014-02-19 23:33:44 +00:00
|
|
|
"io/ioutil"
|
2014-02-19 01:52:06 +00:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"syscall"
|
|
|
|
)
|
|
|
|
|
2014-02-21 02:27:42 +00:00
|
|
|
// Init is the init process that first runs inside a new namespace to setup mounts, users, networking,
|
|
|
|
// and other options required for the new container.
|
|
|
|
func Init(container *libcontainer.Container, console string, pipe io.ReadCloser, args []string) error {
|
2014-02-19 22:33:25 +00:00
|
|
|
rootfs, err := resolveRootfs()
|
|
|
|
if err != nil {
|
2014-02-20 00:40:36 +00:00
|
|
|
return err
|
2014-02-19 22:33:25 +00:00
|
|
|
}
|
|
|
|
|
2014-02-20 22:12:08 +00:00
|
|
|
// We always read this as it is a way to sync with the parent as well
|
2014-02-21 01:58:13 +00:00
|
|
|
tempVethName, err := getVethName(pipe)
|
2014-02-20 22:12:08 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2014-02-19 23:33:44 +00:00
|
|
|
}
|
|
|
|
|
2014-02-21 02:05:40 +00:00
|
|
|
if console != "" {
|
|
|
|
// close pipes so that we can replace it with the pty
|
|
|
|
os.Stdin.Close()
|
|
|
|
os.Stdout.Close()
|
|
|
|
os.Stderr.Close()
|
|
|
|
slave, err := openTerminal(console, syscall.O_RDWR)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("open terminal %s", err)
|
|
|
|
}
|
|
|
|
if err := dupSlave(slave); err != nil {
|
|
|
|
return fmt.Errorf("dup2 slave %s", err)
|
|
|
|
}
|
2014-02-19 01:52:06 +00:00
|
|
|
}
|
2014-02-21 02:05:40 +00:00
|
|
|
|
2014-02-19 07:13:36 +00:00
|
|
|
if _, err := system.Setsid(); err != nil {
|
2014-02-20 00:40:36 +00:00
|
|
|
return fmt.Errorf("setsid %s", err)
|
2014-02-19 01:52:06 +00:00
|
|
|
}
|
2014-02-21 02:05:40 +00:00
|
|
|
if console != "" {
|
|
|
|
if err := system.Setctty(); err != nil {
|
|
|
|
return fmt.Errorf("setctty %s", err)
|
|
|
|
}
|
2014-02-19 01:52:06 +00:00
|
|
|
}
|
2014-02-19 07:13:36 +00:00
|
|
|
if err := system.ParentDeathSignal(); err != nil {
|
2014-02-20 00:40:36 +00:00
|
|
|
return fmt.Errorf("parent deth signal %s", err)
|
2014-02-19 01:52:06 +00:00
|
|
|
}
|
2014-02-19 22:33:25 +00:00
|
|
|
if err := setupNewMountNamespace(rootfs, console, container.ReadonlyFs); err != nil {
|
2014-02-20 00:40:36 +00:00
|
|
|
return fmt.Errorf("setup mount namespace %s", err)
|
2014-02-19 01:52:06 +00:00
|
|
|
}
|
2014-02-20 06:43:40 +00:00
|
|
|
if err := setupVethNetwork(container.Network, tempVethName); err != nil {
|
2014-02-20 03:14:31 +00:00
|
|
|
return fmt.Errorf("setup networking %s", err)
|
2014-02-19 22:33:25 +00:00
|
|
|
}
|
2014-02-20 03:14:31 +00:00
|
|
|
if err := system.Sethostname(container.Hostname); err != nil {
|
2014-02-20 00:40:36 +00:00
|
|
|
return fmt.Errorf("sethostname %s", err)
|
2014-02-19 01:52:06 +00:00
|
|
|
}
|
|
|
|
if err := capabilities.DropCapabilities(container); err != nil {
|
2014-02-20 00:40:36 +00:00
|
|
|
return fmt.Errorf("drop capabilities %s", err)
|
2014-02-19 01:52:06 +00:00
|
|
|
}
|
|
|
|
if err := setupUser(container); err != nil {
|
2014-02-20 00:40:36 +00:00
|
|
|
return fmt.Errorf("setup user %s", err)
|
2014-02-19 01:52:06 +00:00
|
|
|
}
|
|
|
|
if container.WorkingDir != "" {
|
2014-02-19 07:13:36 +00:00
|
|
|
if err := system.Chdir(container.WorkingDir); err != nil {
|
2014-02-20 00:40:36 +00:00
|
|
|
return fmt.Errorf("chdir to %s %s", container.WorkingDir, err)
|
2014-02-19 01:52:06 +00:00
|
|
|
}
|
|
|
|
}
|
2014-02-20 04:35:04 +00:00
|
|
|
if err := system.Exec(args[0], args[0:], container.Env); err != nil {
|
2014-02-20 00:40:36 +00:00
|
|
|
return fmt.Errorf("exec %s", err)
|
2014-02-19 01:52:06 +00:00
|
|
|
}
|
|
|
|
panic("unreachable")
|
|
|
|
}
|
|
|
|
|
2014-02-20 06:43:40 +00:00
|
|
|
// resolveRootfs ensures that the current working directory is
|
|
|
|
// not a symlink and returns the absolute path to the rootfs
|
2014-02-19 22:33:25 +00:00
|
|
|
func resolveRootfs() (string, error) {
|
|
|
|
cwd, err := os.Getwd()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
rootfs, err := filepath.Abs(cwd)
|
2014-02-19 01:52:06 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return filepath.EvalSymlinks(rootfs)
|
|
|
|
}
|
|
|
|
|
|
|
|
func setupUser(container *libcontainer.Container) error {
|
|
|
|
// TODO: honor user passed on container
|
2014-02-19 07:13:36 +00:00
|
|
|
if err := system.Setgroups(nil); err != nil {
|
2014-02-19 01:52:06 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-02-19 07:13:36 +00:00
|
|
|
if err := system.Setresgid(0, 0, 0); err != nil {
|
2014-02-19 01:52:06 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-02-19 07:13:36 +00:00
|
|
|
if err := system.Setresuid(0, 0, 0); err != nil {
|
2014-02-19 01:52:06 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-02-20 06:43:40 +00:00
|
|
|
// dupSlave dup2 the pty slave's fd into stdout and stdin and ensures that
|
|
|
|
// the slave's fd is 0, or stdin
|
2014-02-19 01:52:06 +00:00
|
|
|
func dupSlave(slave *os.File) error {
|
|
|
|
if slave.Fd() != 0 {
|
|
|
|
return fmt.Errorf("slave fd not 0 %d", slave.Fd())
|
|
|
|
}
|
2014-02-19 07:13:36 +00:00
|
|
|
if err := system.Dup2(slave.Fd(), 1); err != nil {
|
2014-02-19 01:52:06 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-02-19 07:13:36 +00:00
|
|
|
if err := system.Dup2(slave.Fd(), 2); err != nil {
|
2014-02-19 01:52:06 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-02-20 06:43:40 +00:00
|
|
|
// openTerminal is a clone of os.OpenFile without the O_CLOEXEC
|
|
|
|
// used to open the pty slave inside the container namespace
|
2014-02-19 01:52:06 +00:00
|
|
|
func openTerminal(name string, flag int) (*os.File, error) {
|
|
|
|
r, e := syscall.Open(name, flag, 0)
|
|
|
|
if e != nil {
|
|
|
|
return nil, &os.PathError{"open", name, e}
|
|
|
|
}
|
|
|
|
return os.NewFile(uintptr(r), name), nil
|
|
|
|
}
|
2014-02-19 18:44:29 +00:00
|
|
|
|
2014-02-20 06:43:40 +00:00
|
|
|
// setupVethNetwork uses the Network config if it is not nil to initialize
|
|
|
|
// the new veth interface inside the container for use by changing the name to eth0
|
|
|
|
// setting the MTU and IP address along with the default gateway
|
|
|
|
func setupVethNetwork(config *libcontainer.Network, tempVethName string) error {
|
2014-02-20 03:14:31 +00:00
|
|
|
if config != nil {
|
|
|
|
if err := network.InterfaceDown(tempVethName); err != nil {
|
|
|
|
return fmt.Errorf("interface down %s %s", tempVethName, err)
|
|
|
|
}
|
|
|
|
if err := network.ChangeInterfaceName(tempVethName, "eth0"); err != nil {
|
|
|
|
return fmt.Errorf("change %s to eth0 %s", tempVethName, err)
|
|
|
|
}
|
2014-02-20 23:50:55 +00:00
|
|
|
if err := network.SetInterfaceIp("eth0", config.Address); err != nil {
|
2014-02-20 03:14:31 +00:00
|
|
|
return fmt.Errorf("set eth0 ip %s", err)
|
|
|
|
}
|
|
|
|
if err := network.SetMtu("eth0", config.Mtu); err != nil {
|
|
|
|
return fmt.Errorf("set eth0 mtu to %d %s", config.Mtu, err)
|
|
|
|
}
|
|
|
|
if err := network.InterfaceUp("eth0"); err != nil {
|
|
|
|
return fmt.Errorf("eth0 up %s", err)
|
|
|
|
}
|
|
|
|
if err := network.SetMtu("lo", config.Mtu); err != nil {
|
|
|
|
return fmt.Errorf("set lo mtu to %d %s", config.Mtu, err)
|
|
|
|
}
|
|
|
|
if err := network.InterfaceUp("lo"); err != nil {
|
|
|
|
return fmt.Errorf("lo up %s", err)
|
|
|
|
}
|
|
|
|
if config.Gateway != "" {
|
|
|
|
if err := network.SetDefaultGateway(config.Gateway); err != nil {
|
|
|
|
return fmt.Errorf("set gateway to %s %s", config.Gateway, err)
|
|
|
|
}
|
2014-02-19 22:55:34 +00:00
|
|
|
}
|
2014-02-19 18:44:29 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2014-02-19 22:33:25 +00:00
|
|
|
|
2014-02-20 03:14:31 +00:00
|
|
|
// getVethName reads from Stdin the temp veth name
|
|
|
|
// sent by the parent processes after the veth pair
|
|
|
|
// has been created and setup
|
2014-02-21 01:58:13 +00:00
|
|
|
func getVethName(pipe io.ReadCloser) (string, error) {
|
|
|
|
defer pipe.Close()
|
|
|
|
data, err := ioutil.ReadAll(pipe)
|
2014-02-20 03:14:31 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", fmt.Errorf("error reading from stdin %s", err)
|
2014-02-19 23:54:53 +00:00
|
|
|
}
|
2014-02-20 03:14:31 +00:00
|
|
|
return string(data), nil
|
2014-02-19 22:33:25 +00:00
|
|
|
}
|