2016-08-29 13:36:29 -04:00
|
|
|
package container
|
2014-05-01 20:40:13 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
2016-08-29 13:36:29 -04:00
|
|
|
"runtime"
|
2016-03-24 21:25:50 -04:00
|
|
|
"sync"
|
|
|
|
|
2015-03-26 18:22:04 -04:00
|
|
|
"github.com/Sirupsen/logrus"
|
2016-09-06 14:18:12 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
2016-09-08 15:11:38 -04:00
|
|
|
"github.com/docker/docker/cli/command"
|
2014-09-17 11:04:56 -04:00
|
|
|
"github.com/docker/docker/pkg/stdcopy"
|
2016-08-29 13:36:29 -04:00
|
|
|
"golang.org/x/net/context"
|
2014-05-01 20:40:13 -04:00
|
|
|
)
|
|
|
|
|
2016-08-29 13:36:29 -04:00
|
|
|
// holdHijackedConnection handles copying input to and output from streams to the
|
2016-06-01 01:19:13 -04:00
|
|
|
// connection
|
2016-08-29 14:45:29 -04:00
|
|
|
func holdHijackedConnection(ctx context.Context, streams command.Streams, tty bool, inputStream io.ReadCloser, outputStream, errorStream io.Writer, resp types.HijackedResponse) error {
|
2016-03-24 21:25:50 -04:00
|
|
|
var (
|
|
|
|
err error
|
|
|
|
restoreOnce sync.Once
|
|
|
|
)
|
|
|
|
if inputStream != nil && tty {
|
2016-08-29 13:36:29 -04:00
|
|
|
if err := setRawTerminal(streams); err != nil {
|
2016-03-24 21:25:50 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
restoreOnce.Do(func() {
|
2016-08-29 13:36:29 -04:00
|
|
|
restoreTerminal(streams, inputStream)
|
2016-03-24 21:25:50 -04:00
|
|
|
})
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2015-12-05 22:22:00 -05:00
|
|
|
receiveStdout := make(chan error, 1)
|
|
|
|
if outputStream != nil || errorStream != nil {
|
|
|
|
go func() {
|
|
|
|
// When TTY is ON, use regular copy
|
2016-01-20 16:18:36 -05:00
|
|
|
if tty && outputStream != nil {
|
2015-12-05 22:22:00 -05:00
|
|
|
_, err = io.Copy(outputStream, resp.Reader)
|
2016-03-24 21:25:50 -04:00
|
|
|
// we should restore the terminal as soon as possible once connection end
|
|
|
|
// so any following print messages will be in normal type.
|
|
|
|
if inputStream != nil {
|
|
|
|
restoreOnce.Do(func() {
|
2016-08-29 13:36:29 -04:00
|
|
|
restoreTerminal(streams, inputStream)
|
2016-03-24 21:25:50 -04:00
|
|
|
})
|
|
|
|
}
|
2015-12-05 22:22:00 -05:00
|
|
|
} else {
|
|
|
|
_, err = stdcopy.StdCopy(outputStream, errorStream, resp.Reader)
|
|
|
|
}
|
2016-03-24 21:25:50 -04:00
|
|
|
|
2016-06-11 16:16:55 -04:00
|
|
|
logrus.Debug("[hijack] End of stdout")
|
2015-12-05 22:22:00 -05:00
|
|
|
receiveStdout <- err
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
stdinDone := make(chan struct{})
|
|
|
|
go func() {
|
|
|
|
if inputStream != nil {
|
|
|
|
io.Copy(resp.Conn, inputStream)
|
2016-03-24 21:25:50 -04:00
|
|
|
// we should restore the terminal as soon as possible once connection end
|
|
|
|
// so any following print messages will be in normal type.
|
|
|
|
if tty {
|
|
|
|
restoreOnce.Do(func() {
|
2016-08-29 13:36:29 -04:00
|
|
|
restoreTerminal(streams, inputStream)
|
2016-03-24 21:25:50 -04:00
|
|
|
})
|
|
|
|
}
|
2016-06-11 16:16:55 -04:00
|
|
|
logrus.Debug("[hijack] End of stdin")
|
2015-12-05 22:22:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := resp.CloseWrite(); err != nil {
|
|
|
|
logrus.Debugf("Couldn't send EOF: %s", err)
|
|
|
|
}
|
|
|
|
close(stdinDone)
|
|
|
|
}()
|
|
|
|
|
|
|
|
select {
|
|
|
|
case err := <-receiveStdout:
|
|
|
|
if err != nil {
|
|
|
|
logrus.Debugf("Error receiveStdout: %s", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
case <-stdinDone:
|
|
|
|
if outputStream != nil || errorStream != nil {
|
2016-03-24 21:25:50 -04:00
|
|
|
select {
|
|
|
|
case err := <-receiveStdout:
|
|
|
|
if err != nil {
|
|
|
|
logrus.Debugf("Error receiveStdout: %s", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
case <-ctx.Done():
|
2015-12-05 22:22:00 -05:00
|
|
|
}
|
|
|
|
}
|
2016-03-24 21:25:50 -04:00
|
|
|
case <-ctx.Done():
|
2015-12-05 22:22:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2016-08-29 13:36:29 -04:00
|
|
|
|
2016-08-29 14:45:29 -04:00
|
|
|
func setRawTerminal(streams command.Streams) error {
|
2016-08-29 13:36:29 -04:00
|
|
|
if err := streams.In().SetRawTerminal(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return streams.Out().SetRawTerminal()
|
|
|
|
}
|
|
|
|
|
2016-08-29 14:45:29 -04:00
|
|
|
func restoreTerminal(streams command.Streams, in io.Closer) error {
|
2016-08-29 13:36:29 -04:00
|
|
|
streams.In().RestoreTerminal()
|
|
|
|
streams.Out().RestoreTerminal()
|
|
|
|
// WARNING: DO NOT REMOVE THE OS CHECK !!!
|
|
|
|
// For some reason this Close call blocks on darwin..
|
|
|
|
// As the client exists right after, simply discard the close
|
|
|
|
// until we find a better solution.
|
|
|
|
if in != nil && runtime.GOOS != "darwin" {
|
|
|
|
return in.Close()
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|