libcontainer: Don't use UsetCloseOnExec, it is racy

We can't keep file descriptors without close-on-exec except with
syscall.ForkLock held, as otherwise they could leak by accident into
other children from forks in other threads.

Instead we just use Cmd.ExtraFiles which handles all this for us.

This fixes https://github.com/dotcloud/docker/issues/4493

Docker-DCO-1.1-Signed-off-by: Alexander Larsson <alexl@redhat.com> (github: alexlarsson)
This commit is contained in:
Alexander Larsson 2014-03-06 14:10:32 +01:00
parent 9da8ea80c3
commit bbf833d96e
3 changed files with 5 additions and 7 deletions

View File

@ -1,7 +1,6 @@
package nsinit package nsinit
import ( import (
"fmt"
"github.com/dotcloud/docker/pkg/libcontainer" "github.com/dotcloud/docker/pkg/libcontainer"
"github.com/dotcloud/docker/pkg/system" "github.com/dotcloud/docker/pkg/system"
"os" "os"
@ -12,7 +11,7 @@ import (
// parent processes and creates an *exec.Cmd that will be used to fork/exec the // parent processes and creates an *exec.Cmd that will be used to fork/exec the
// namespaced init process // namespaced init process
type CommandFactory interface { type CommandFactory interface {
Create(container *libcontainer.Container, console string, syncFd uintptr, args []string) *exec.Cmd Create(container *libcontainer.Container, console string, syncFd *os.File, args []string) *exec.Cmd
} }
type DefaultCommandFactory struct { type DefaultCommandFactory struct {
@ -22,16 +21,17 @@ type DefaultCommandFactory struct {
// Create will return an exec.Cmd with the Cloneflags set to the proper namespaces // Create 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 // defined on the container's configuration and use the current binary as the init with the
// args provided // args provided
func (c *DefaultCommandFactory) Create(container *libcontainer.Container, console string, pipe uintptr, args []string) *exec.Cmd { func (c *DefaultCommandFactory) Create(container *libcontainer.Container, console string, pipe *os.File, args []string) *exec.Cmd {
// get our binary name from arg0 so we can always reexec ourself // get our binary name from arg0 so we can always reexec ourself
command := exec.Command(os.Args[0], append([]string{ command := exec.Command(os.Args[0], append([]string{
"-console", console, "-console", console,
"-pipe", fmt.Sprint(pipe), "-pipe", "3",
"-root", c.Root, "-root", c.Root,
"init"}, args...)...) "init"}, args...)...)
system.SetCloneFlags(command, uintptr(GetNamespaceFlags(container.Namespaces))) system.SetCloneFlags(command, uintptr(GetNamespaceFlags(container.Namespaces)))
command.Env = container.Env command.Env = container.Env
command.ExtraFiles = []*os.File{pipe}
return command return command
} }

View File

@ -35,7 +35,7 @@ func (ns *linuxNs) Exec(container *libcontainer.Container, term Terminal, args [
term.SetMaster(master) term.SetMaster(master)
} }
command := ns.commandFactory.Create(container, console, syncPipe.child.Fd(), args) command := ns.commandFactory.Create(container, console, syncPipe.child, args)
if err := term.Attach(command); err != nil { if err := term.Attach(command); err != nil {
return -1, err return -1, err
} }

View File

@ -4,7 +4,6 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
"github.com/dotcloud/docker/pkg/libcontainer" "github.com/dotcloud/docker/pkg/libcontainer"
"github.com/dotcloud/docker/pkg/system"
"io/ioutil" "io/ioutil"
"os" "os"
) )
@ -22,7 +21,6 @@ func NewSyncPipe() (s *SyncPipe, err error) {
if err != nil { if err != nil {
return nil, err return nil, err
} }
system.UsetCloseOnExec(s.child.Fd())
return s, nil return s, nil
} }