2016-03-18 14:53:27 -04:00
|
|
|
package libcontainerd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
"strings"
|
|
|
|
"syscall"
|
2016-04-18 16:10:15 -04:00
|
|
|
"time"
|
2016-03-18 14:53:27 -04:00
|
|
|
|
|
|
|
"github.com/Microsoft/hcsshim"
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
|
|
|
type container struct {
|
|
|
|
containerCommon
|
|
|
|
|
|
|
|
// Platform specific fields are below here. There are none presently on Windows.
|
|
|
|
options []CreateOption
|
|
|
|
|
|
|
|
// The ociSpec is required, as client.Create() needs a spec,
|
|
|
|
// but can be called from the RestartManager context which does not
|
|
|
|
// otherwise have access to the Spec
|
|
|
|
ociSpec Spec
|
2016-05-10 19:02:44 -04:00
|
|
|
|
|
|
|
manualStopRequested bool
|
2016-05-23 19:12:06 -04:00
|
|
|
hcsContainer hcsshim.Container
|
2016-03-18 14:53:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (ctr *container) newProcess(friendlyName string) *process {
|
|
|
|
return &process{
|
|
|
|
processCommon: processCommon{
|
|
|
|
containerID: ctr.containerID,
|
|
|
|
friendlyName: friendlyName,
|
|
|
|
client: ctr.client,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ctr *container) start() error {
|
|
|
|
var err error
|
2016-06-08 21:57:25 -04:00
|
|
|
isServicing := false
|
|
|
|
|
|
|
|
for _, option := range ctr.options {
|
|
|
|
if s, ok := option.(*ServicingOption); ok && s.IsServicing {
|
|
|
|
isServicing = true
|
|
|
|
}
|
|
|
|
}
|
2016-03-18 14:53:27 -04:00
|
|
|
|
2016-04-13 16:34:07 -04:00
|
|
|
// Start the container. If this is a servicing container, this call will block
|
|
|
|
// until the container is done with the servicing execution.
|
2016-07-22 18:20:14 -04:00
|
|
|
logrus.Debugln("libcontainerd: starting container ", ctr.containerID)
|
2016-05-23 19:12:06 -04:00
|
|
|
if err = ctr.hcsContainer.Start(); err != nil {
|
2016-07-22 18:20:14 -04:00
|
|
|
logrus.Errorf("libcontainerd: failed to start container: %s", err)
|
2016-05-25 14:08:15 -04:00
|
|
|
if err := ctr.terminate(); err != nil {
|
2016-07-22 18:20:14 -04:00
|
|
|
logrus.Errorf("libcontainerd: failed to cleanup after a failed Start. %s", err)
|
2016-05-25 14:08:15 -04:00
|
|
|
} else {
|
2016-07-22 18:20:14 -04:00
|
|
|
logrus.Debugln("libcontainerd: cleaned up after failed Start by calling Terminate")
|
2016-05-25 14:08:15 -04:00
|
|
|
}
|
2016-03-18 14:53:27 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-05-23 19:12:06 -04:00
|
|
|
// Note we always tell HCS to
|
|
|
|
// create stdout as it's required regardless of '-i' or '-t' options, so that
|
|
|
|
// docker can always grab the output through logs. We also tell HCS to always
|
|
|
|
// create stdin, even if it's not used - it will be closed shortly. Stderr
|
|
|
|
// is only created if it we're not -t.
|
|
|
|
createProcessParms := &hcsshim.ProcessConfig{
|
2016-03-18 14:53:27 -04:00
|
|
|
EmulateConsole: ctr.ociSpec.Process.Terminal,
|
|
|
|
WorkingDirectory: ctr.ociSpec.Process.Cwd,
|
|
|
|
ConsoleSize: ctr.ociSpec.Process.InitialConsoleSize,
|
2016-06-08 21:57:25 -04:00
|
|
|
CreateStdInPipe: !isServicing,
|
|
|
|
CreateStdOutPipe: !isServicing,
|
|
|
|
CreateStdErrPipe: !ctr.ociSpec.Process.Terminal && !isServicing,
|
2016-03-18 14:53:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Configure the environment for the process
|
|
|
|
createProcessParms.Environment = setupEnvironmentVariables(ctr.ociSpec.Process.Env)
|
|
|
|
createProcessParms.CommandLine = strings.Join(ctr.ociSpec.Process.Args, " ")
|
|
|
|
|
2016-05-23 19:12:06 -04:00
|
|
|
// Start the command running in the container.
|
|
|
|
hcsProcess, err := ctr.hcsContainer.CreateProcess(createProcessParms)
|
2016-03-18 14:53:27 -04:00
|
|
|
if err != nil {
|
2016-07-22 18:20:14 -04:00
|
|
|
logrus.Errorf("libcontainerd: CreateProcess() failed %s", err)
|
2016-05-25 14:08:15 -04:00
|
|
|
if err := ctr.terminate(); err != nil {
|
2016-07-22 18:20:14 -04:00
|
|
|
logrus.Errorf("libcontainerd: failed to cleanup after a failed CreateProcess. %s", err)
|
2016-03-18 14:53:27 -04:00
|
|
|
} else {
|
2016-07-22 18:20:14 -04:00
|
|
|
logrus.Debugln("libcontainerd: cleaned up after failed CreateProcess by calling Terminate")
|
2016-03-18 14:53:27 -04:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
2016-04-18 16:10:15 -04:00
|
|
|
ctr.startedAt = time.Now()
|
2016-03-18 14:53:27 -04:00
|
|
|
|
2016-05-23 19:12:06 -04:00
|
|
|
// Save the hcs Process and PID
|
|
|
|
ctr.process.friendlyName = InitFriendlyName
|
|
|
|
pid := hcsProcess.Pid()
|
|
|
|
ctr.process.hcsProcess = hcsProcess
|
|
|
|
|
2016-06-08 21:57:25 -04:00
|
|
|
// If this is a servicing container, wait on the process synchronously here and
|
2016-08-15 17:30:08 -04:00
|
|
|
// if it succeeds, wait for it cleanly shutdown and merge into the parent container.
|
2016-06-08 21:57:25 -04:00
|
|
|
if isServicing {
|
|
|
|
exitCode := ctr.waitProcessExitCode(&ctr.process)
|
|
|
|
|
|
|
|
if exitCode != 0 {
|
2016-07-22 18:20:14 -04:00
|
|
|
logrus.Warnf("libcontainerd: servicing container %s returned non-zero exit code %d", ctr.containerID, exitCode)
|
2016-06-08 21:57:25 -04:00
|
|
|
return ctr.terminate()
|
|
|
|
}
|
|
|
|
|
2016-08-15 17:30:08 -04:00
|
|
|
return ctr.hcsContainer.WaitTimeout(time.Minute * 5)
|
2016-06-08 21:57:25 -04:00
|
|
|
}
|
|
|
|
|
2016-05-23 19:12:06 -04:00
|
|
|
var stdout, stderr io.ReadCloser
|
|
|
|
var stdin io.WriteCloser
|
|
|
|
stdin, stdout, stderr, err = hcsProcess.Stdio()
|
|
|
|
if err != nil {
|
2016-07-22 18:20:14 -04:00
|
|
|
logrus.Errorf("libcontainerd: failed to get stdio pipes: %s", err)
|
2016-05-23 19:12:06 -04:00
|
|
|
if err := ctr.terminate(); err != nil {
|
2016-07-22 18:20:14 -04:00
|
|
|
logrus.Errorf("libcontainerd: failed to cleanup after a failed Stdio. %s", err)
|
2016-05-23 19:12:06 -04:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
iopipe := &IOPipe{Terminal: ctr.ociSpec.Process.Terminal}
|
|
|
|
|
|
|
|
iopipe.Stdin = createStdInCloser(stdin, hcsProcess)
|
|
|
|
|
2016-05-20 22:04:20 -04:00
|
|
|
// TEMP: Work around Windows BS/DEL behavior.
|
2016-05-25 15:15:34 -04:00
|
|
|
iopipe.Stdin = fixStdinBackspaceBehavior(iopipe.Stdin, ctr.ociSpec.Platform.OSVersion, ctr.ociSpec.Process.Terminal)
|
2016-05-20 22:04:20 -04:00
|
|
|
|
2016-03-18 14:53:27 -04:00
|
|
|
// Convert io.ReadClosers to io.Readers
|
|
|
|
if stdout != nil {
|
|
|
|
iopipe.Stdout = openReaderFromPipe(stdout)
|
|
|
|
}
|
|
|
|
if stderr != nil {
|
|
|
|
iopipe.Stderr = openReaderFromPipe(stderr)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Save the PID
|
2016-07-22 18:20:14 -04:00
|
|
|
logrus.Debugf("libcontainerd: process started - PID %d", pid)
|
2016-03-18 14:53:27 -04:00
|
|
|
ctr.systemPid = uint32(pid)
|
|
|
|
|
|
|
|
// Spin up a go routine waiting for exit to handle cleanup
|
2016-05-23 19:12:06 -04:00
|
|
|
go ctr.waitExit(&ctr.process, true)
|
2016-03-18 14:53:27 -04:00
|
|
|
|
|
|
|
ctr.client.appendContainer(ctr)
|
|
|
|
|
|
|
|
if err := ctr.client.backend.AttachStreams(ctr.containerID, *iopipe); err != nil {
|
|
|
|
// OK to return the error here, as waitExit will handle tear-down in HCS
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tell the docker engine that the container has started.
|
|
|
|
si := StateInfo{
|
2016-04-01 20:02:38 -04:00
|
|
|
CommonStateInfo: CommonStateInfo{
|
|
|
|
State: StateStart,
|
|
|
|
Pid: ctr.systemPid, // Not sure this is needed? Double-check monitor.go in daemon BUGBUG @jhowardmsft
|
|
|
|
}}
|
2016-03-18 14:53:27 -04:00
|
|
|
return ctr.client.backend.StateChanged(ctr.containerID, si)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-06-08 21:57:25 -04:00
|
|
|
// waitProcessExitCode will wait for the given process to exit and return its error code.
|
|
|
|
func (ctr *container) waitProcessExitCode(process *process) int {
|
2016-03-18 14:53:27 -04:00
|
|
|
// Block indefinitely for the process to exit.
|
2016-05-23 19:12:06 -04:00
|
|
|
err := process.hcsProcess.Wait()
|
2016-03-18 14:53:27 -04:00
|
|
|
if err != nil {
|
2016-05-23 19:12:06 -04:00
|
|
|
if herr, ok := err.(*hcsshim.ProcessError); ok && herr.Err != syscall.ERROR_BROKEN_PIPE {
|
2016-07-22 18:20:14 -04:00
|
|
|
logrus.Warnf("libcontainerd: Wait() failed (container may have been killed): %s", err)
|
2016-03-18 14:53:27 -04:00
|
|
|
}
|
|
|
|
// Fall through here, do not return. This ensures we attempt to continue the
|
2016-05-23 19:12:06 -04:00
|
|
|
// shutdown in HCS and tell the docker engine that the process/container
|
|
|
|
// has exited to avoid a container being dropped on the floor.
|
|
|
|
}
|
|
|
|
|
|
|
|
exitCode, err := process.hcsProcess.ExitCode()
|
|
|
|
if err != nil {
|
|
|
|
if herr, ok := err.(*hcsshim.ProcessError); ok && herr.Err != syscall.ERROR_BROKEN_PIPE {
|
2016-07-22 18:20:14 -04:00
|
|
|
logrus.Warnf("libcontainerd: unable to get exit code from container %s", ctr.containerID)
|
2016-05-23 19:12:06 -04:00
|
|
|
}
|
2016-06-14 13:19:55 -04:00
|
|
|
// Since we got an error retrieving the exit code, make sure that the code we return
|
|
|
|
// doesn't incorrectly indicate success.
|
|
|
|
exitCode = -1
|
|
|
|
|
2016-05-23 19:12:06 -04:00
|
|
|
// Fall through here, do not return. This ensures we attempt to continue the
|
|
|
|
// shutdown in HCS and tell the docker engine that the process/container
|
2016-03-18 14:53:27 -04:00
|
|
|
// has exited to avoid a container being dropped on the floor.
|
|
|
|
}
|
|
|
|
|
2016-05-26 00:33:50 -04:00
|
|
|
if err := process.hcsProcess.Close(); err != nil {
|
2016-07-22 18:20:14 -04:00
|
|
|
logrus.Errorf("libcontainerd: hcsProcess.Close(): %v", err)
|
2016-05-26 00:33:50 -04:00
|
|
|
}
|
|
|
|
|
2016-06-08 21:57:25 -04:00
|
|
|
return exitCode
|
|
|
|
}
|
|
|
|
|
|
|
|
// waitExit runs as a goroutine waiting for the process to exit. It's
|
|
|
|
// equivalent to (in the linux containerd world) where events come in for
|
|
|
|
// state change notifications from containerd.
|
|
|
|
func (ctr *container) waitExit(process *process, isFirstProcessToStart bool) error {
|
2016-08-03 16:45:46 -04:00
|
|
|
var waitRestart chan error
|
2016-07-22 18:20:14 -04:00
|
|
|
logrus.Debugln("libcontainerd: waitExit() on pid", process.systemPid)
|
2016-06-08 21:57:25 -04:00
|
|
|
|
|
|
|
exitCode := ctr.waitProcessExitCode(process)
|
|
|
|
|
2016-03-18 14:53:27 -04:00
|
|
|
// Assume the container has exited
|
|
|
|
si := StateInfo{
|
2016-04-01 20:02:38 -04:00
|
|
|
CommonStateInfo: CommonStateInfo{
|
|
|
|
State: StateExit,
|
|
|
|
ExitCode: uint32(exitCode),
|
2016-05-23 19:12:06 -04:00
|
|
|
Pid: process.systemPid,
|
|
|
|
ProcessID: process.friendlyName,
|
2016-04-01 20:02:38 -04:00
|
|
|
},
|
|
|
|
UpdatePending: false,
|
2016-03-18 14:53:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// But it could have been an exec'd process which exited
|
|
|
|
if !isFirstProcessToStart {
|
|
|
|
si.State = StateExitProcess
|
2016-05-10 19:02:44 -04:00
|
|
|
} else {
|
2016-05-23 19:12:06 -04:00
|
|
|
updatePending, err := ctr.hcsContainer.HasPendingUpdates()
|
2016-04-13 16:34:07 -04:00
|
|
|
if err != nil {
|
2016-07-22 18:20:14 -04:00
|
|
|
logrus.Warnf("libcontainerd: HasPendingUpdates() failed (container may have been killed): %s", err)
|
2016-04-13 16:34:07 -04:00
|
|
|
} else {
|
2016-05-23 19:12:06 -04:00
|
|
|
si.UpdatePending = updatePending
|
2016-04-13 16:34:07 -04:00
|
|
|
}
|
2016-04-01 20:02:38 -04:00
|
|
|
|
2016-07-22 18:20:14 -04:00
|
|
|
logrus.Debugf("libcontainerd: shutting down container %s", ctr.containerID)
|
2016-05-23 19:12:06 -04:00
|
|
|
if err := ctr.shutdown(); err != nil {
|
2016-07-22 18:20:14 -04:00
|
|
|
logrus.Debugf("libcontainerd: failed to shutdown container %s", ctr.containerID)
|
2016-03-18 14:53:27 -04:00
|
|
|
} else {
|
2016-07-22 18:20:14 -04:00
|
|
|
logrus.Debugf("libcontainerd: completed shutting down container %s", ctr.containerID)
|
2016-03-18 14:53:27 -04:00
|
|
|
}
|
2016-05-23 19:12:06 -04:00
|
|
|
if err := ctr.hcsContainer.Close(); err != nil {
|
|
|
|
logrus.Error(err)
|
|
|
|
}
|
2016-03-18 14:53:27 -04:00
|
|
|
|
2016-05-10 19:02:44 -04:00
|
|
|
if !ctr.manualStopRequested && ctr.restartManager != nil {
|
2016-04-18 16:10:15 -04:00
|
|
|
restart, wait, err := ctr.restartManager.ShouldRestart(uint32(exitCode), false, time.Since(ctr.startedAt))
|
2016-03-18 14:53:27 -04:00
|
|
|
if err != nil {
|
|
|
|
logrus.Error(err)
|
|
|
|
} else if restart {
|
|
|
|
si.State = StateRestart
|
|
|
|
ctr.restarting = true
|
2016-08-03 16:45:46 -04:00
|
|
|
waitRestart = wait
|
2016-03-18 14:53:27 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove process from list if we have exited
|
|
|
|
// We need to do so here in case the Message Handler decides to restart it.
|
|
|
|
if si.State == StateExit {
|
|
|
|
ctr.client.deleteContainer(ctr.friendlyName)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Call into the backend to notify it of the state change.
|
2016-07-22 18:20:14 -04:00
|
|
|
logrus.Debugf("libcontainerd: waitExit() calling backend.StateChanged %+v", si)
|
2016-03-18 14:53:27 -04:00
|
|
|
if err := ctr.client.backend.StateChanged(ctr.containerID, si); err != nil {
|
|
|
|
logrus.Error(err)
|
|
|
|
}
|
2016-08-03 16:45:46 -04:00
|
|
|
if si.State == StateRestart {
|
|
|
|
go func() {
|
|
|
|
err := <-waitRestart
|
|
|
|
ctr.restarting = false
|
|
|
|
ctr.client.deleteContainer(ctr.friendlyName)
|
2016-08-03 18:28:52 -04:00
|
|
|
if err == nil {
|
|
|
|
if err = ctr.client.Create(ctr.containerID, ctr.ociSpec, ctr.options...); err != nil {
|
|
|
|
logrus.Errorf("libcontainerd: error restarting %v", err)
|
|
|
|
}
|
|
|
|
}
|
2016-08-03 16:45:46 -04:00
|
|
|
if err != nil {
|
|
|
|
si.State = StateExit
|
|
|
|
if err := ctr.client.backend.StateChanged(ctr.containerID, si); err != nil {
|
|
|
|
logrus.Error(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
2016-03-18 14:53:27 -04:00
|
|
|
|
2016-07-22 18:20:14 -04:00
|
|
|
logrus.Debugf("libcontainerd: waitExit() completed OK, %+v", si)
|
2016-03-18 14:53:27 -04:00
|
|
|
return nil
|
|
|
|
}
|
2016-05-23 19:12:06 -04:00
|
|
|
|
|
|
|
func (ctr *container) shutdown() error {
|
|
|
|
const shutdownTimeout = time.Minute * 5
|
|
|
|
err := ctr.hcsContainer.Shutdown()
|
2016-08-03 20:47:43 -04:00
|
|
|
if hcsshim.IsPending(err) {
|
2016-05-23 19:12:06 -04:00
|
|
|
// Explicit timeout to avoid a (remote) possibility that shutdown hangs indefinitely.
|
|
|
|
err = ctr.hcsContainer.WaitTimeout(shutdownTimeout)
|
2016-08-03 20:47:43 -04:00
|
|
|
} else if hcsshim.IsAlreadyStopped(err) {
|
2016-06-20 19:57:08 -04:00
|
|
|
err = nil
|
2016-05-23 19:12:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
2016-07-22 18:20:14 -04:00
|
|
|
logrus.Debugf("libcontainerd: error shutting down container %s %v calling terminate", ctr.containerID, err)
|
2016-05-23 19:12:06 -04:00
|
|
|
if err := ctr.terminate(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ctr *container) terminate() error {
|
|
|
|
const terminateTimeout = time.Minute * 5
|
|
|
|
err := ctr.hcsContainer.Terminate()
|
|
|
|
|
2016-08-03 20:47:43 -04:00
|
|
|
if hcsshim.IsPending(err) {
|
2016-05-23 19:12:06 -04:00
|
|
|
err = ctr.hcsContainer.WaitTimeout(terminateTimeout)
|
2016-08-03 20:47:43 -04:00
|
|
|
} else if hcsshim.IsAlreadyStopped(err) {
|
2016-06-20 19:57:08 -04:00
|
|
|
err = nil
|
2016-05-23 19:12:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
2016-07-22 18:20:14 -04:00
|
|
|
logrus.Debugf("libcontainerd: error terminating container %s %v", ctr.containerID, err)
|
2016-05-23 19:12:06 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|