123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311 |
- package namespaces
- import (
- "encoding/json"
- "errors"
- "fmt"
- "github.com/dotcloud/docker/execdriver"
- "github.com/dotcloud/docker/execdriver/lxc"
- "github.com/dotcloud/docker/pkg/cgroups"
- "github.com/dotcloud/docker/pkg/libcontainer"
- "github.com/dotcloud/docker/pkg/libcontainer/nsinit"
- "io"
- "io/ioutil"
- "os"
- "os/exec"
- "path/filepath"
- "strconv"
- "strings"
- "syscall"
- )
- const (
- DriverName = "namespaces"
- Version = "0.1"
- )
- var (
- ErrNotSupported = errors.New("not supported")
- )
- func init() {
- execdriver.RegisterInitFunc(DriverName, func(args *execdriver.InitArgs) error {
- var container *libcontainer.Container
- f, err := os.Open("container.json")
- if err != nil {
- return err
- }
- if err := json.NewDecoder(f).Decode(&container); err != nil {
- f.Close()
- return err
- }
- f.Close()
- cwd, err := os.Getwd()
- if err != nil {
- return err
- }
- syncPipe, err := nsinit.NewSyncPipeFromFd(0, uintptr(args.Pipe))
- if err != nil {
- return err
- }
- if err := nsinit.Init(container, cwd, args.Console, syncPipe, args.Args); err != nil {
- return err
- }
- return nil
- })
- }
- type driver struct {
- root string
- }
- type info struct {
- ID string
- driver *driver
- }
- func (i *info) IsRunning() bool {
- p := filepath.Join(i.driver.root, "containers", i.ID, "root", ".nspid")
- if _, err := os.Stat(p); err == nil {
- return true
- }
- return false
- }
- func NewDriver(root string) (*driver, error) {
- return &driver{
- root: root,
- }, nil
- }
- func (d *driver) Run(c *execdriver.Command, pipes *execdriver.Pipes, startCallback execdriver.StartCallback) (int, error) {
- var (
- term nsinit.Terminal
- container = createContainer(c)
- factory = &dockerCommandFactory{c}
- stateWriter = &dockerStateWriter{
- callback: startCallback,
- c: c,
- dsw: &nsinit.DefaultStateWriter{c.Rootfs},
- }
- )
- if c.Tty {
- term = &dockerTtyTerm{
- pipes: pipes,
- }
- } else {
- term = &dockerStdTerm{
- pipes: pipes,
- }
- }
- c.Terminal = term
- if err := writeContainerFile(container, c.Rootfs); err != nil {
- return -1, err
- }
- args := append([]string{c.Entrypoint}, c.Arguments...)
- return nsinit.Exec(container, factory, stateWriter, term, "", args)
- }
- func (d *driver) Kill(p *execdriver.Command, sig int) error {
- return syscall.Kill(p.Process.Pid, syscall.Signal(sig))
- }
- func (d *driver) Restore(c *execdriver.Command) error {
- var (
- nspid int
- p = filepath.Join(d.root, "containers", c.ID, "root", ".nspid")
- )
- f, err := os.Open(p)
- if err != nil {
- return err
- }
- defer f.Close()
- if _, err := fmt.Fscanf(f, "%d", &nspid); err != nil {
- return err
- }
- proc, err := os.FindProcess(nspid)
- if err != nil {
- return err
- }
- _, err = proc.Wait()
- return err
- }
- func (d *driver) Info(id string) execdriver.Info {
- return &info{
- ID: id,
- driver: d,
- }
- }
- func (d *driver) Name() string {
- return fmt.Sprintf("%s-%s", DriverName, Version)
- }
- func (d *driver) GetPidsForContainer(id string) ([]int, error) {
- pids := []int{}
- subsystem := "devices"
- cgroupRoot, err := cgroups.FindCgroupMountpoint(subsystem)
- if err != nil {
- return pids, err
- }
- cgroupDir, err := cgroups.GetThisCgroupDir(subsystem)
- if err != nil {
- return pids, err
- }
- filename := filepath.Join(cgroupRoot, cgroupDir, id, "tasks")
- if _, err := os.Stat(filename); os.IsNotExist(err) {
- filename = filepath.Join(cgroupRoot, cgroupDir, "docker", id, "tasks")
- }
- output, err := ioutil.ReadFile(filename)
- if err != nil {
- return pids, err
- }
- for _, p := range strings.Split(string(output), "\n") {
- if len(p) == 0 {
- continue
- }
- pid, err := strconv.Atoi(p)
- if err != nil {
- return pids, fmt.Errorf("Invalid pid '%s': %s", p, err)
- }
- pids = append(pids, pid)
- }
- return pids, nil
- }
- func writeContainerFile(container *libcontainer.Container, rootfs string) error {
- data, err := json.Marshal(container)
- if err != nil {
- return err
- }
- return ioutil.WriteFile(filepath.Join(rootfs, "container.json"), data, 0755)
- }
- func getEnv(key string, env []string) string {
- for _, pair := range env {
- parts := strings.Split(pair, "=")
- if parts[0] == key {
- return parts[1]
- }
- }
- return ""
- }
- type dockerCommandFactory struct {
- c *execdriver.Command
- }
- // createCommand will return an exec.Cmd with the Cloneflags set to the proper namespaces
- // defined on the container's configuration and use the current binary as the init with the
- // args provided
- func (d *dockerCommandFactory) Create(container *libcontainer.Container,
- console, logFile string, syncFd uintptr, args []string) *exec.Cmd {
- c := d.c
- // we need to join the rootfs because nsinit will setup the rootfs and chroot
- initPath := filepath.Join(c.Rootfs, c.InitPath)
- c.Path = initPath
- c.Args = append([]string{
- initPath,
- "-driver", DriverName,
- "-console", console,
- "-pipe", fmt.Sprint(syncFd),
- "-log", logFile,
- }, args...)
- c.SysProcAttr = &syscall.SysProcAttr{
- Cloneflags: uintptr(nsinit.GetNamespaceFlags(container.Namespaces)),
- }
- c.Env = container.Env
- c.Dir = c.Rootfs
- return &c.Cmd
- }
- type dockerStateWriter struct {
- dsw nsinit.StateWriter
- c *execdriver.Command
- callback execdriver.StartCallback
- }
- func (d *dockerStateWriter) WritePid(pid int) error {
- err := d.dsw.WritePid(pid)
- if d.callback != nil {
- d.callback(d.c)
- }
- return err
- }
- func (d *dockerStateWriter) DeletePid() error {
- return d.dsw.DeletePid()
- }
- func createContainer(c *execdriver.Command) *libcontainer.Container {
- container := getDefaultTemplate()
- container.Hostname = getEnv("HOSTNAME", c.Env)
- container.Tty = c.Tty
- container.User = c.User
- container.WorkingDir = c.WorkingDir
- container.Env = c.Env
- container.Env = append(container.Env, "container=docker")
- if c.Network != nil {
- container.Network = &libcontainer.Network{
- Mtu: c.Network.Mtu,
- Address: fmt.Sprintf("%s/%d", c.Network.IPAddress, c.Network.IPPrefixLen),
- Gateway: c.Network.Gateway,
- Type: "veth",
- Context: libcontainer.Context{
- "prefix": "dock",
- "bridge": c.Network.Bridge,
- },
- }
- }
- container.Cgroups.Name = c.ID
- if c.Privileged {
- container.Capabilities = nil
- container.Cgroups.DeviceAccess = true
- }
- if c.Resources != nil {
- container.Cgroups.CpuShares = c.Resources.CpuShares
- container.Cgroups.Memory = c.Resources.Memory
- container.Cgroups.MemorySwap = c.Resources.MemorySwap
- }
- return container
- }
- type dockerStdTerm struct {
- lxc.StdConsole
- pipes *execdriver.Pipes
- }
- func (d *dockerStdTerm) Attach(cmd *exec.Cmd) error {
- return d.AttachPipes(cmd, d.pipes)
- }
- func (d *dockerStdTerm) SetMaster(master *os.File) {
- // do nothing
- }
- type dockerTtyTerm struct {
- lxc.TtyConsole
- pipes *execdriver.Pipes
- }
- func (t *dockerTtyTerm) Attach(cmd *exec.Cmd) error {
- go io.Copy(t.pipes.Stdout, t.MasterPty)
- if t.pipes.Stdin != nil {
- go io.Copy(t.MasterPty, t.pipes.Stdin)
- }
- return nil
- }
- func (t *dockerTtyTerm) SetMaster(master *os.File) {
- t.MasterPty = master
- }
|