mirror of
https://github.com/containers/podman.git
synced 2025-05-20 00:27:03 +08:00

Before, we were getting the exit code from the file, in which we waited an arbitrary amount of time (5 seconds) for the file, and segfaulted if we didn't find it. instead, we should be a bit more certain conmon has sent the exit code. Luckily, it sends the exit code along the sync pipe fd, so we can read it from there Adapt the ExecContainer interface to pass along a channel to get the pid and exit code from conmon, to be able to read both from the pipe Signed-off-by: Peter Hunt <pehunt@redhat.com>
272 lines
8.2 KiB
Go
272 lines
8.2 KiB
Go
//+build linux
|
|
|
|
package libpod
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"net"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/containers/libpod/libpod/define"
|
|
"github.com/containers/libpod/pkg/errorhandling"
|
|
"github.com/containers/libpod/pkg/kubeutils"
|
|
"github.com/containers/libpod/utils"
|
|
"github.com/docker/docker/pkg/term"
|
|
"github.com/pkg/errors"
|
|
"github.com/sirupsen/logrus"
|
|
"golang.org/x/sys/unix"
|
|
"k8s.io/client-go/tools/remotecommand"
|
|
)
|
|
|
|
/* Sync with stdpipe_t in conmon.c */
|
|
const (
|
|
AttachPipeStdin = 1
|
|
AttachPipeStdout = 2
|
|
AttachPipeStderr = 3
|
|
)
|
|
|
|
// Attach to the given container
|
|
// Does not check if state is appropriate
|
|
// started is only required if startContainer is true
|
|
func (c *Container) attach(streams *AttachStreams, keys string, resize <-chan remotecommand.TerminalSize, startContainer bool, started chan bool) error {
|
|
if !streams.AttachOutput && !streams.AttachError && !streams.AttachInput {
|
|
return errors.Wrapf(define.ErrInvalidArg, "must provide at least one stream to attach to")
|
|
}
|
|
if startContainer && started == nil {
|
|
return errors.Wrapf(define.ErrInternal, "started chan not passed when startContainer set")
|
|
}
|
|
|
|
detachKeys, err := processDetachKeys(keys)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
logrus.Debugf("Attaching to container %s", c.ID())
|
|
|
|
registerResizeFunc(resize, c.bundlePath())
|
|
|
|
attachSock, err := c.AttachSocketPath()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
socketPath := buildSocketPath(attachSock)
|
|
|
|
conn, err := net.DialUnix("unixpacket", nil, &net.UnixAddr{Name: socketPath, Net: "unixpacket"})
|
|
if err != nil {
|
|
return errors.Wrapf(err, "failed to connect to container's attach socket: %v", socketPath)
|
|
}
|
|
defer func() {
|
|
if err := conn.Close(); err != nil {
|
|
logrus.Errorf("unable to close socket: %q", err)
|
|
}
|
|
}()
|
|
|
|
// If starting was requested, start the container and notify when that's
|
|
// done.
|
|
if startContainer {
|
|
if err := c.start(); err != nil {
|
|
return err
|
|
}
|
|
started <- true
|
|
}
|
|
|
|
receiveStdoutError, stdinDone := setupStdioChannels(streams, conn, detachKeys)
|
|
return readStdio(streams, receiveStdoutError, stdinDone)
|
|
}
|
|
|
|
// Attach to the given container's exec session
|
|
// attachFd and startFd must be open file descriptors
|
|
// attachFd must be the output side of the fd. attachFd is used for two things:
|
|
// conmon will first send a nonse value across the pipe indicating it has set up its side of the console socket
|
|
// this ensures attachToExec gets all of the output of the called process
|
|
// conmon will then send the exit code of the exec process, or an error in the exec session
|
|
// startFd must be the input side of the fd.
|
|
// conmon will wait to start the exec session until the parent process has setup the console socket.
|
|
// Once attachToExec successfully attaches to the console socket, the child conmon process responsible for calling runtime exec
|
|
// will read from the output side of start fd, thus learning to start the child process.
|
|
// Thus, the order goes as follow:
|
|
// 1. conmon parent process sets up its console socket. sends on attachFd
|
|
// 2. attachToExec attaches to the console socket after reading on attachFd
|
|
// 3. child waits on startFd for attachToExec to attach to said console socket
|
|
// 4. attachToExec sends on startFd, signalling it has attached to the socket and child is ready to go
|
|
// 5. child receives on startFd, runs the runtime exec command
|
|
// attachToExec is responsible for closing startFd and attachFd
|
|
func (c *Container) attachToExec(streams *AttachStreams, keys string, resize <-chan remotecommand.TerminalSize, sessionID string, startFd, attachFd *os.File) error {
|
|
if !streams.AttachOutput && !streams.AttachError && !streams.AttachInput {
|
|
return errors.Wrapf(define.ErrInvalidArg, "must provide at least one stream to attach to")
|
|
}
|
|
if startFd == nil || attachFd == nil {
|
|
return errors.Wrapf(define.ErrInvalidArg, "start sync pipe and attach sync pipe must be defined for exec attach")
|
|
}
|
|
|
|
defer errorhandling.CloseQuiet(startFd)
|
|
defer errorhandling.CloseQuiet(attachFd)
|
|
|
|
detachKeys, err := processDetachKeys(keys)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
logrus.Debugf("Attaching to container %s exec session %s", c.ID(), sessionID)
|
|
|
|
// set up the socket path, such that it is the correct length and location for exec
|
|
sockPath, err := c.execAttachSocketPath(sessionID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
socketPath := buildSocketPath(sockPath)
|
|
|
|
// 2: read from attachFd that the parent process has set up the console socket
|
|
if pipeData := readConmonPipeData(attachFd, ""); pipeData.err != nil {
|
|
return pipeData.err
|
|
}
|
|
|
|
// 2: then attach
|
|
conn, err := net.DialUnix("unixpacket", nil, &net.UnixAddr{Name: socketPath, Net: "unixpacket"})
|
|
if err != nil {
|
|
return errors.Wrapf(err, "failed to connect to container's attach socket: %v", socketPath)
|
|
}
|
|
defer func() {
|
|
if err := conn.Close(); err != nil {
|
|
logrus.Errorf("unable to close socket: %q", err)
|
|
}
|
|
}()
|
|
|
|
// Register the resize func after we've read the attach socket, as we know at this point the
|
|
// 'ctl' file has been created in conmon
|
|
registerResizeFunc(resize, c.execBundlePath(sessionID))
|
|
|
|
// start listening on stdio of the process
|
|
receiveStdoutError, stdinDone := setupStdioChannels(streams, conn, detachKeys)
|
|
|
|
// 4: send start message to child
|
|
if err := writeConmonPipeData(startFd); err != nil {
|
|
return err
|
|
}
|
|
|
|
return readStdio(streams, receiveStdoutError, stdinDone)
|
|
}
|
|
|
|
func processDetachKeys(keys string) ([]byte, error) {
|
|
// Check the validity of the provided keys first
|
|
if len(keys) == 0 {
|
|
return []byte{}, nil
|
|
}
|
|
detachKeys, err := term.ToBytes(keys)
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "invalid detach keys")
|
|
}
|
|
return detachKeys, nil
|
|
}
|
|
|
|
func registerResizeFunc(resize <-chan remotecommand.TerminalSize, bundlePath string) {
|
|
kubeutils.HandleResizing(resize, func(size remotecommand.TerminalSize) {
|
|
controlPath := filepath.Join(bundlePath, "ctl")
|
|
controlFile, err := os.OpenFile(controlPath, unix.O_WRONLY, 0)
|
|
if err != nil {
|
|
logrus.Debugf("Could not open ctl file: %v", err)
|
|
return
|
|
}
|
|
defer controlFile.Close()
|
|
|
|
logrus.Debugf("Received a resize event: %+v", size)
|
|
if _, err = fmt.Fprintf(controlFile, "%d %d %d\n", 1, size.Height, size.Width); err != nil {
|
|
logrus.Warnf("Failed to write to control file to resize terminal: %v", err)
|
|
}
|
|
})
|
|
}
|
|
|
|
func buildSocketPath(socketPath string) string {
|
|
maxUnixLength := unixPathLength()
|
|
if maxUnixLength < len(socketPath) {
|
|
socketPath = socketPath[0:maxUnixLength]
|
|
}
|
|
|
|
logrus.Debug("connecting to socket ", socketPath)
|
|
return socketPath
|
|
}
|
|
|
|
func setupStdioChannels(streams *AttachStreams, conn *net.UnixConn, detachKeys []byte) (chan error, chan error) {
|
|
receiveStdoutError := make(chan error)
|
|
go func() {
|
|
receiveStdoutError <- redirectResponseToOutputStreams(streams.OutputStream, streams.ErrorStream, streams.AttachOutput, streams.AttachError, conn)
|
|
}()
|
|
|
|
stdinDone := make(chan error)
|
|
go func() {
|
|
var err error
|
|
if streams.AttachInput {
|
|
_, err = utils.CopyDetachable(conn, streams.InputStream, detachKeys)
|
|
if connErr := conn.CloseWrite(); connErr != nil {
|
|
logrus.Errorf("unable to close conn: %q", connErr)
|
|
}
|
|
}
|
|
stdinDone <- err
|
|
}()
|
|
|
|
return receiveStdoutError, stdinDone
|
|
}
|
|
|
|
func redirectResponseToOutputStreams(outputStream, errorStream io.Writer, writeOutput, writeError bool, conn io.Reader) error {
|
|
var err error
|
|
buf := make([]byte, 8192+1) /* Sync with conmon STDIO_BUF_SIZE */
|
|
for {
|
|
nr, er := conn.Read(buf)
|
|
if nr > 0 {
|
|
var dst io.Writer
|
|
var doWrite bool
|
|
switch buf[0] {
|
|
case AttachPipeStdout:
|
|
dst = outputStream
|
|
doWrite = writeOutput
|
|
case AttachPipeStderr:
|
|
dst = errorStream
|
|
doWrite = writeError
|
|
default:
|
|
logrus.Infof("Received unexpected attach type %+d", buf[0])
|
|
}
|
|
if dst == nil {
|
|
return errors.New("output destination cannot be nil")
|
|
}
|
|
|
|
if doWrite {
|
|
nw, ew := dst.Write(buf[1:nr])
|
|
if ew != nil {
|
|
err = ew
|
|
break
|
|
}
|
|
if nr != nw+1 {
|
|
err = io.ErrShortWrite
|
|
break
|
|
}
|
|
}
|
|
}
|
|
if er == io.EOF {
|
|
break
|
|
}
|
|
if er != nil {
|
|
err = er
|
|
break
|
|
}
|
|
}
|
|
return err
|
|
}
|
|
|
|
func readStdio(streams *AttachStreams, receiveStdoutError, stdinDone chan error) error {
|
|
var err error
|
|
select {
|
|
case err = <-receiveStdoutError:
|
|
return err
|
|
case err = <-stdinDone:
|
|
if err == define.ErrDetach {
|
|
return err
|
|
}
|
|
if streams.AttachOutput || streams.AttachError {
|
|
return <-receiveStdoutError
|
|
}
|
|
}
|
|
return nil
|
|
}
|