2015-02-07 04:48:57 +08:00
|
|
|
// +build linux
|
|
|
|
|
|
|
|
package libcontainer
|
|
|
|
|
|
|
|
import (
|
|
|
|
"syscall"
|
|
|
|
|
|
|
|
"github.com/docker/libcontainer/apparmor"
|
|
|
|
"github.com/docker/libcontainer/configs"
|
|
|
|
"github.com/docker/libcontainer/label"
|
|
|
|
"github.com/docker/libcontainer/system"
|
|
|
|
)
|
|
|
|
|
|
|
|
type linuxStandardInit struct {
|
|
|
|
config *initConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *linuxStandardInit) Init() error {
|
|
|
|
// join any namespaces via a path to the namespace fd if provided
|
|
|
|
if err := joinExistingNamespaces(l.config.Config.Namespaces); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-02-10 06:07:18 +08:00
|
|
|
consolePath := l.config.Config.Console
|
|
|
|
if consolePath != "" {
|
|
|
|
console := newConsoleFromPath(consolePath)
|
|
|
|
if err := console.dupStdio(); err != nil {
|
2015-02-07 04:48:57 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if _, err := syscall.Setsid(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-02-10 06:07:18 +08:00
|
|
|
if consolePath != "" {
|
2015-02-07 04:48:57 +08:00
|
|
|
if err := system.Setctty(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2015-02-11 03:51:45 +08:00
|
|
|
if err := setupNetwork(l.config); err != nil {
|
2015-02-07 04:48:57 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := setupRoute(l.config.Config); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := setupRlimits(l.config.Config); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
label.Init()
|
|
|
|
// InitializeMountNamespace() can be executed only for a new mount namespace
|
|
|
|
if l.config.Config.Namespaces.Contains(configs.NEWNS) {
|
2015-02-10 05:16:43 +08:00
|
|
|
if err := setupRootfs(l.config.Config); err != nil {
|
2015-02-07 04:48:57 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if hostname := l.config.Config.Hostname; hostname != "" {
|
|
|
|
if err := syscall.Sethostname([]byte(hostname)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err := apparmor.ApplyProfile(l.config.Config.AppArmorProfile); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := label.SetProcessLabel(l.config.Config.ProcessLabel); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-02-13 08:23:05 +08:00
|
|
|
for _, path := range l.config.Config.ReadonlyPaths {
|
|
|
|
if err := remountReadonly(path); err != nil {
|
|
|
|
return err
|
2015-02-10 06:42:21 +08:00
|
|
|
}
|
2015-02-13 08:23:05 +08:00
|
|
|
}
|
|
|
|
for _, path := range l.config.Config.MaskPaths {
|
|
|
|
if err := maskFile(path); err != nil {
|
2015-02-07 04:48:57 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pdeath, err := system.GetParentDeathSignal()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-02-10 05:11:57 +08:00
|
|
|
if err := finalizeNamespace(l.config); err != nil {
|
2015-02-07 04:48:57 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// finalizeNamespace can change user/group which clears the parent death
|
|
|
|
// signal, so we restore it here.
|
|
|
|
if err := pdeath.Restore(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Signal self if parent is already dead. Does nothing if running in a new
|
|
|
|
// PID namespace, as Getppid will always return 0.
|
|
|
|
if syscall.Getppid() == 1 {
|
|
|
|
return syscall.Kill(syscall.Getpid(), syscall.SIGKILL)
|
|
|
|
}
|
2015-02-10 05:11:57 +08:00
|
|
|
return system.Execv(l.config.Args[0], l.config.Args[0:], l.config.Env)
|
2015-02-07 04:48:57 +08:00
|
|
|
}
|