mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
710e0664c4
Fix case sensitivity issue Update docker and runc vendors Signed-off-by: Derek McGowan <derek@mcgstyle.net>
176 lines
3.9 KiB
Go
176 lines
3.9 KiB
Go
// +build linux freebsd
|
|
|
|
package libnetwork
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"net"
|
|
"os"
|
|
|
|
"github.com/docker/libnetwork/types"
|
|
"github.com/opencontainers/runc/libcontainer/configs"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
const udsBase = "/run/docker/libnetwork/"
|
|
const success = "success"
|
|
|
|
// processSetKeyReexec is a private function that must be called only on an reexec path
|
|
// It expects 3 args { [0] = "libnetwork-setkey", [1] = <container-id>, [2] = <controller-id> }
|
|
// It also expects configs.HookState as a json string in <stdin>
|
|
// Refer to https://github.com/opencontainers/runc/pull/160/ for more information
|
|
func processSetKeyReexec() {
|
|
var err error
|
|
|
|
// Return a failure to the calling process via ExitCode
|
|
defer func() {
|
|
if err != nil {
|
|
logrus.Fatalf("%v", err)
|
|
}
|
|
}()
|
|
|
|
// expecting 3 args {[0]="libnetwork-setkey", [1]=<container-id>, [2]=<controller-id> }
|
|
if len(os.Args) < 3 {
|
|
err = fmt.Errorf("Re-exec expects 3 args, received : %d", len(os.Args))
|
|
return
|
|
}
|
|
containerID := os.Args[1]
|
|
|
|
// We expect configs.HookState as a json string in <stdin>
|
|
stateBuf, err := ioutil.ReadAll(os.Stdin)
|
|
if err != nil {
|
|
return
|
|
}
|
|
var state configs.HookState
|
|
if err = json.Unmarshal(stateBuf, &state); err != nil {
|
|
return
|
|
}
|
|
|
|
controllerID := os.Args[2]
|
|
|
|
err = SetExternalKey(controllerID, containerID, fmt.Sprintf("/proc/%d/ns/net", state.Pid))
|
|
}
|
|
|
|
// SetExternalKey provides a convenient way to set an External key to a sandbox
|
|
func SetExternalKey(controllerID string, containerID string, key string) error {
|
|
keyData := setKeyData{
|
|
ContainerID: containerID,
|
|
Key: key}
|
|
|
|
c, err := net.Dial("unix", udsBase+controllerID+".sock")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer c.Close()
|
|
|
|
if err = sendKey(c, keyData); err != nil {
|
|
return fmt.Errorf("sendKey failed with : %v", err)
|
|
}
|
|
return processReturn(c)
|
|
}
|
|
|
|
func sendKey(c net.Conn, data setKeyData) error {
|
|
var err error
|
|
defer func() {
|
|
if err != nil {
|
|
c.Close()
|
|
}
|
|
}()
|
|
|
|
var b []byte
|
|
if b, err = json.Marshal(data); err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = c.Write(b)
|
|
return err
|
|
}
|
|
|
|
func processReturn(r io.Reader) error {
|
|
buf := make([]byte, 1024)
|
|
n, err := r.Read(buf[:])
|
|
if err != nil {
|
|
return fmt.Errorf("failed to read buf in processReturn : %v", err)
|
|
}
|
|
if string(buf[0:n]) != success {
|
|
return fmt.Errorf(string(buf[0:n]))
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (c *controller) startExternalKeyListener() error {
|
|
if err := os.MkdirAll(udsBase, 0600); err != nil {
|
|
return err
|
|
}
|
|
uds := udsBase + c.id + ".sock"
|
|
l, err := net.Listen("unix", uds)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if err := os.Chmod(uds, 0600); err != nil {
|
|
l.Close()
|
|
return err
|
|
}
|
|
c.Lock()
|
|
c.extKeyListener = l
|
|
c.Unlock()
|
|
|
|
go c.acceptClientConnections(uds, l)
|
|
return nil
|
|
}
|
|
|
|
func (c *controller) acceptClientConnections(sock string, l net.Listener) {
|
|
for {
|
|
conn, err := l.Accept()
|
|
if err != nil {
|
|
if _, err1 := os.Stat(sock); os.IsNotExist(err1) {
|
|
logrus.Debugf("Unix socket %s doesn't exist. cannot accept client connections", sock)
|
|
return
|
|
}
|
|
logrus.Errorf("Error accepting connection %v", err)
|
|
continue
|
|
}
|
|
go func() {
|
|
defer conn.Close()
|
|
|
|
err := c.processExternalKey(conn)
|
|
ret := success
|
|
if err != nil {
|
|
ret = err.Error()
|
|
}
|
|
|
|
_, err = conn.Write([]byte(ret))
|
|
if err != nil {
|
|
logrus.Errorf("Error returning to the client %v", err)
|
|
}
|
|
}()
|
|
}
|
|
}
|
|
|
|
func (c *controller) processExternalKey(conn net.Conn) error {
|
|
buf := make([]byte, 1280)
|
|
nr, err := conn.Read(buf)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
var s setKeyData
|
|
if err = json.Unmarshal(buf[0:nr], &s); err != nil {
|
|
return err
|
|
}
|
|
|
|
var sandbox Sandbox
|
|
search := SandboxContainerWalker(&sandbox, s.ContainerID)
|
|
c.WalkSandboxes(search)
|
|
if sandbox == nil {
|
|
return types.BadRequestErrorf("no sandbox present for %s", s.ContainerID)
|
|
}
|
|
|
|
return sandbox.SetKey(s.Key)
|
|
}
|
|
|
|
func (c *controller) stopExternalKeyListener() {
|
|
c.extKeyListener.Close()
|
|
}
|