2014-02-25 23:19:13 +00:00
|
|
|
// +build linux
|
|
|
|
|
2014-02-21 02:27:42 +00:00
|
|
|
package nsinit
|
2014-02-20 03:53:25 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/dotcloud/docker/pkg/libcontainer"
|
|
|
|
"github.com/dotcloud/docker/pkg/system"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"strconv"
|
|
|
|
"syscall"
|
|
|
|
)
|
|
|
|
|
2014-02-21 02:27:42 +00:00
|
|
|
// ExecIn uses an existing pid and joins the pid's namespaces with the new command.
|
2014-02-25 02:38:24 +00:00
|
|
|
func (ns *linuxNs) ExecIn(container *libcontainer.Container, nspid int, args []string) (int, error) {
|
2014-03-13 17:35:16 +00:00
|
|
|
ns.logger.Println("unshare namespaces")
|
2014-02-20 03:53:25 +00:00
|
|
|
for _, ns := range container.Namespaces {
|
2014-02-25 05:52:29 +00:00
|
|
|
if err := system.Unshare(ns.Value); err != nil {
|
2014-02-20 03:53:25 +00:00
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
}
|
2014-02-25 05:11:52 +00:00
|
|
|
fds, err := ns.getNsFds(nspid, container)
|
2014-02-20 03:53:25 +00:00
|
|
|
closeFds := func() {
|
|
|
|
for _, f := range fds {
|
|
|
|
system.Closefd(f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
closeFds()
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
|
2014-02-20 06:43:40 +00:00
|
|
|
// foreach namespace fd, use setns to join an existing container's namespaces
|
2014-02-20 03:53:25 +00:00
|
|
|
for _, fd := range fds {
|
|
|
|
if fd > 0 {
|
2014-03-13 17:35:16 +00:00
|
|
|
ns.logger.Printf("setns on %d\n", fd)
|
2014-02-20 03:53:25 +00:00
|
|
|
if err := system.Setns(fd, 0); err != nil {
|
|
|
|
closeFds()
|
|
|
|
return -1, fmt.Errorf("setns %s", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
system.Closefd(fd)
|
|
|
|
}
|
|
|
|
|
|
|
|
// if the container has a new pid and mount namespace we need to
|
|
|
|
// remount proc and sys to pick up the changes
|
2014-02-25 20:41:31 +00:00
|
|
|
if container.Namespaces.Contains("NEWNS") && container.Namespaces.Contains("NEWPID") {
|
2014-03-13 17:35:16 +00:00
|
|
|
ns.logger.Println("forking to remount /proc and /sys")
|
2014-02-20 03:53:25 +00:00
|
|
|
pid, err := system.Fork()
|
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
if pid == 0 {
|
|
|
|
// TODO: make all raw syscalls to be fork safe
|
|
|
|
if err := system.Unshare(syscall.CLONE_NEWNS); err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
if err := remountProc(); err != nil {
|
|
|
|
return -1, fmt.Errorf("remount proc %s", err)
|
|
|
|
}
|
|
|
|
if err := remountSys(); err != nil {
|
|
|
|
return -1, fmt.Errorf("remount sys %s", err)
|
|
|
|
}
|
2014-02-20 06:43:40 +00:00
|
|
|
goto dropAndExec
|
2014-02-20 03:53:25 +00:00
|
|
|
}
|
|
|
|
proc, err := os.FindProcess(pid)
|
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
state, err := proc.Wait()
|
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
os.Exit(state.Sys().(syscall.WaitStatus).ExitStatus())
|
|
|
|
}
|
2014-02-20 06:43:40 +00:00
|
|
|
dropAndExec:
|
2014-03-03 20:15:47 +00:00
|
|
|
if err := finalizeNamespace(container); err != nil {
|
|
|
|
return -1, err
|
2014-02-20 03:53:25 +00:00
|
|
|
}
|
2014-02-25 05:11:52 +00:00
|
|
|
if err := system.Execv(args[0], args[0:], container.Env); err != nil {
|
2014-02-20 03:53:25 +00:00
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
panic("unreachable")
|
|
|
|
}
|
|
|
|
|
2014-02-25 05:11:52 +00:00
|
|
|
func (ns *linuxNs) getNsFds(pid int, container *libcontainer.Container) ([]uintptr, error) {
|
2014-02-20 03:53:25 +00:00
|
|
|
fds := make([]uintptr, len(container.Namespaces))
|
|
|
|
for i, ns := range container.Namespaces {
|
2014-02-25 05:52:29 +00:00
|
|
|
f, err := os.OpenFile(filepath.Join("/proc/", strconv.Itoa(pid), "ns", ns.File), os.O_RDONLY, 0)
|
2014-02-20 03:53:25 +00:00
|
|
|
if err != nil {
|
|
|
|
return fds, err
|
|
|
|
}
|
|
|
|
fds[i] = f.Fd()
|
|
|
|
}
|
|
|
|
return fds, nil
|
|
|
|
}
|