2018-02-05 16:05:59 -05:00
|
|
|
package daemon // import "github.com/docker/docker/daemon"
|
2014-05-05 19:48:56 -04:00
|
|
|
|
|
|
|
import (
|
2017-03-30 16:52:40 -04:00
|
|
|
"context"
|
2015-12-16 01:41:46 -05:00
|
|
|
"fmt"
|
2014-05-05 19:48:56 -04:00
|
|
|
"io"
|
|
|
|
|
2016-01-27 17:09:42 -05:00
|
|
|
"github.com/docker/docker/api/types/backend"
|
2015-11-12 14:55:17 -05:00
|
|
|
"github.com/docker/docker/container"
|
2017-01-19 11:02:51 -05:00
|
|
|
"github.com/docker/docker/container/stream"
|
2015-11-03 12:33:13 -05:00
|
|
|
"github.com/docker/docker/daemon/logger"
|
2018-01-11 14:53:06 -05:00
|
|
|
"github.com/docker/docker/errdefs"
|
2015-05-05 16:25:05 -04:00
|
|
|
"github.com/docker/docker/pkg/stdcopy"
|
2016-03-23 07:34:47 -04:00
|
|
|
"github.com/docker/docker/pkg/term"
|
2017-07-19 10:20:13 -04:00
|
|
|
"github.com/pkg/errors"
|
2017-07-26 17:42:13 -04:00
|
|
|
"github.com/sirupsen/logrus"
|
2014-05-05 19:48:56 -04:00
|
|
|
)
|
|
|
|
|
2016-01-05 16:23:24 -05:00
|
|
|
// ContainerAttach attaches to logs according to the config passed in. See ContainerAttachConfig.
|
|
|
|
func (daemon *Daemon) ContainerAttach(prefixOrName string, c *backend.ContainerAttachConfig) error {
|
2016-03-23 07:34:47 -04:00
|
|
|
keys := []byte{}
|
|
|
|
var err error
|
|
|
|
if c.DetachKeys != "" {
|
|
|
|
keys, err = term.ToBytes(c.DetachKeys)
|
|
|
|
if err != nil {
|
2017-11-28 23:09:37 -05:00
|
|
|
return errdefs.InvalidParameter(errors.Errorf("Invalid detach keys (%s) provided", c.DetachKeys))
|
2016-03-23 07:34:47 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-11 12:39:28 -05:00
|
|
|
container, err := daemon.GetContainer(prefixOrName)
|
2015-12-16 01:41:46 -05:00
|
|
|
if err != nil {
|
Remove static errors from errors package.
Moving all strings to the errors package wasn't a good idea after all.
Our custom implementation of Go errors predates everything that's nice
and good about working with errors in Go. Take as an example what we
have to do to get an error message:
```go
func GetErrorMessage(err error) string {
switch err.(type) {
case errcode.Error:
e, _ := err.(errcode.Error)
return e.Message
case errcode.ErrorCode:
ec, _ := err.(errcode.ErrorCode)
return ec.Message()
default:
return err.Error()
}
}
```
This goes against every good practice for Go development. The language already provides a simple, intuitive and standard way to get error messages, that is calling the `Error()` method from an error. Reinventing the error interface is a mistake.
Our custom implementation also makes very hard to reason about errors, another nice thing about Go. I found several (>10) error declarations that we don't use anywhere. This is a clear sign about how little we know about the errors we return. I also found several error usages where the number of arguments was different than the parameters declared in the error, another clear example of how difficult is to reason about errors.
Moreover, our custom implementation didn't really make easier for people to return custom HTTP status code depending on the errors. Again, it's hard to reason about when to set custom codes and how. Take an example what we have to do to extract the message and status code from an error before returning a response from the API:
```go
switch err.(type) {
case errcode.ErrorCode:
daError, _ := err.(errcode.ErrorCode)
statusCode = daError.Descriptor().HTTPStatusCode
errMsg = daError.Message()
case errcode.Error:
// For reference, if you're looking for a particular error
// then you can do something like :
// import ( derr "github.com/docker/docker/errors" )
// if daError.ErrorCode() == derr.ErrorCodeNoSuchContainer { ... }
daError, _ := err.(errcode.Error)
statusCode = daError.ErrorCode().Descriptor().HTTPStatusCode
errMsg = daError.Message
default:
// This part of will be removed once we've
// converted everything over to use the errcode package
// FIXME: this is brittle and should not be necessary.
// If we need to differentiate between different possible error types,
// we should create appropriate error types with clearly defined meaning
errStr := strings.ToLower(err.Error())
for keyword, status := range map[string]int{
"not found": http.StatusNotFound,
"no such": http.StatusNotFound,
"bad parameter": http.StatusBadRequest,
"conflict": http.StatusConflict,
"impossible": http.StatusNotAcceptable,
"wrong login/password": http.StatusUnauthorized,
"hasn't been activated": http.StatusForbidden,
} {
if strings.Contains(errStr, keyword) {
statusCode = status
break
}
}
}
```
You can notice two things in that code:
1. We have to explain how errors work, because our implementation goes against how easy to use Go errors are.
2. At no moment we arrived to remove that `switch` statement that was the original reason to use our custom implementation.
This change removes all our status errors from the errors package and puts them back in their specific contexts.
IT puts the messages back with their contexts. That way, we know right away when errors used and how to generate their messages.
It uses custom interfaces to reason about errors. Errors that need to response with a custom status code MUST implementent this simple interface:
```go
type errorWithStatus interface {
HTTPErrorStatusCode() int
}
```
This interface is very straightforward to implement. It also preserves Go errors real behavior, getting the message is as simple as using the `Error()` method.
I included helper functions to generate errors that use custom status code in `errors/errors.go`.
By doing this, we remove the hard dependency we have eeverywhere to our custom errors package. Yes, you can use it as a helper to generate error, but it's still very easy to generate errors without it.
Please, read this fantastic blog post about errors in Go: http://dave.cheney.net/2014/12/24/inspecting-errors
Signed-off-by: David Calavera <david.calavera@gmail.com>
2016-02-25 10:53:35 -05:00
|
|
|
return err
|
2015-12-16 01:41:46 -05:00
|
|
|
}
|
|
|
|
if container.IsPaused() {
|
2017-08-17 15:16:30 -04:00
|
|
|
err := fmt.Errorf("container %s is paused, unpause the container before attach", prefixOrName)
|
2017-11-28 23:09:37 -05:00
|
|
|
return errdefs.Conflict(err)
|
2017-05-19 23:27:45 -04:00
|
|
|
}
|
|
|
|
if container.IsRestarting() {
|
2017-08-17 15:16:30 -04:00
|
|
|
err := fmt.Errorf("container %s is restarting, wait until the container is running", prefixOrName)
|
2017-11-28 23:09:37 -05:00
|
|
|
return errdefs.Conflict(err)
|
2015-12-16 01:41:46 -05:00
|
|
|
}
|
|
|
|
|
2017-01-30 07:49:22 -05:00
|
|
|
cfg := stream.AttachConfig{
|
2017-03-15 05:36:44 -04:00
|
|
|
UseStdin: c.UseStdin,
|
2017-01-30 07:49:22 -05:00
|
|
|
UseStdout: c.UseStdout,
|
|
|
|
UseStderr: c.UseStderr,
|
|
|
|
TTY: container.Config.Tty,
|
|
|
|
CloseStdin: container.Config.StdinOnce,
|
|
|
|
DetachKeys: keys,
|
|
|
|
}
|
|
|
|
container.StreamConfig.AttachStreams(&cfg)
|
|
|
|
|
2016-01-05 16:23:24 -05:00
|
|
|
inStream, outStream, errStream, err := c.GetStreams()
|
2015-09-17 15:57:57 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-01-05 16:23:24 -05:00
|
|
|
defer inStream.Close()
|
2015-09-17 15:57:57 -04:00
|
|
|
|
2016-01-05 16:23:24 -05:00
|
|
|
if !container.Config.Tty && c.MuxStreams {
|
|
|
|
errStream = stdcopy.NewStdWriter(errStream, stdcopy.Stderr)
|
2015-12-16 01:41:46 -05:00
|
|
|
outStream = stdcopy.NewStdWriter(outStream, stdcopy.Stdout)
|
2014-12-04 16:12:29 -05:00
|
|
|
}
|
|
|
|
|
2017-01-30 07:49:22 -05:00
|
|
|
if cfg.UseStdin {
|
|
|
|
cfg.Stdin = inStream
|
2015-05-05 16:25:05 -04:00
|
|
|
}
|
2017-01-30 07:49:22 -05:00
|
|
|
if cfg.UseStdout {
|
|
|
|
cfg.Stdout = outStream
|
2015-05-05 16:25:05 -04:00
|
|
|
}
|
2017-01-30 07:49:22 -05:00
|
|
|
if cfg.UseStderr {
|
|
|
|
cfg.Stderr = errStream
|
2014-12-04 16:12:29 -05:00
|
|
|
}
|
|
|
|
|
2017-01-30 07:49:22 -05:00
|
|
|
if err := daemon.containerAttach(container, &cfg, c.Logs, c.Stream); err != nil {
|
2015-12-16 01:41:46 -05:00
|
|
|
fmt.Fprintf(outStream, "Error attaching: %s\n", err)
|
|
|
|
}
|
|
|
|
return nil
|
2015-05-05 16:25:05 -04:00
|
|
|
}
|
2014-12-04 16:12:29 -05:00
|
|
|
|
2016-01-05 16:23:24 -05:00
|
|
|
// ContainerAttachRaw attaches the provided streams to the container's stdio
|
2017-03-15 07:33:04 -04:00
|
|
|
func (daemon *Daemon) ContainerAttachRaw(prefixOrName string, stdin io.ReadCloser, stdout, stderr io.Writer, doStream bool, attached chan struct{}) error {
|
2015-12-11 12:39:28 -05:00
|
|
|
container, err := daemon.GetContainer(prefixOrName)
|
2015-09-17 15:57:57 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-01-30 07:49:22 -05:00
|
|
|
cfg := stream.AttachConfig{
|
2017-03-15 05:36:44 -04:00
|
|
|
UseStdin: stdin != nil,
|
2017-01-30 07:49:22 -05:00
|
|
|
UseStdout: stdout != nil,
|
|
|
|
UseStderr: stderr != nil,
|
|
|
|
TTY: container.Config.Tty,
|
|
|
|
CloseStdin: container.Config.StdinOnce,
|
|
|
|
}
|
|
|
|
container.StreamConfig.AttachStreams(&cfg)
|
2017-03-15 07:33:04 -04:00
|
|
|
close(attached)
|
2017-01-30 07:49:22 -05:00
|
|
|
if cfg.UseStdin {
|
|
|
|
cfg.Stdin = stdin
|
2017-01-19 11:02:51 -05:00
|
|
|
}
|
2017-01-30 07:49:22 -05:00
|
|
|
if cfg.UseStdout {
|
|
|
|
cfg.Stdout = stdout
|
|
|
|
}
|
|
|
|
if cfg.UseStderr {
|
|
|
|
cfg.Stderr = stderr
|
|
|
|
}
|
|
|
|
|
|
|
|
return daemon.containerAttach(container, &cfg, false, doStream)
|
2016-01-20 18:32:02 -05:00
|
|
|
}
|
|
|
|
|
2017-01-30 07:49:22 -05:00
|
|
|
func (daemon *Daemon) containerAttach(c *container.Container, cfg *stream.AttachConfig, logs, doStream bool) error {
|
|
|
|
if logs {
|
2017-04-20 06:17:06 -04:00
|
|
|
logDriver, logCreated, err := daemon.getLogger(c)
|
2015-11-03 12:33:13 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-04-20 06:17:06 -04:00
|
|
|
if logCreated {
|
|
|
|
defer func() {
|
|
|
|
if err = logDriver.Close(); err != nil {
|
|
|
|
logrus.Errorf("Error closing logger: %v", err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
2015-11-03 12:33:13 -05:00
|
|
|
cLog, ok := logDriver.(logger.LogReader)
|
|
|
|
if !ok {
|
2017-07-19 10:20:13 -04:00
|
|
|
return logger.ErrReadLogsNotSupported{}
|
2015-11-03 12:33:13 -05:00
|
|
|
}
|
|
|
|
logs := cLog.ReadLogs(logger.ReadConfig{Tail: -1})
|
daemon.ContainerLogs(): fix resource leak on follow
When daemon.ContainerLogs() is called with options.follow=true
(as in "docker logs --follow"), the "loggerutils.followLogs()"
function never returns (even then the logs consumer is gone).
As a result, all the resources associated with it (including
an opened file descriptor for the log file being read, two FDs
for a pipe, and two FDs for inotify watch) are never released.
If this is repeated (such as by running "docker logs --follow"
and pressing Ctrl-C a few times), this results in DoS caused by
either hitting the limit of inotify watches, or the limit of
opened files. The only cure is daemon restart.
Apparently, what happens is:
1. logs producer (a container) is gone, calling (*LogWatcher).Close()
for all its readers (daemon/logger/jsonfilelog/jsonfilelog.go:175).
2. WatchClose() is properly handled by a dedicated goroutine in
followLogs(), cancelling the context.
3. Upon receiving the ctx.Done(), the code in followLogs()
(daemon/logger/loggerutils/logfile.go#L626-L638) keeps to
send messages _synchronously_ (which is OK for now).
4. Logs consumer is gone (Ctrl-C is pressed on a terminal running
"docker logs --follow"). Method (*LogWatcher).Close() is properly
called (see daemon/logs.go:114). Since it was called before and
due to to once.Do(), nothing happens (which is kinda good, as
otherwise it will panic on closing a closed channel).
5. A goroutine (see item 3 above) keeps sending log messages
synchronously to the logWatcher.Msg channel. Since the
channel reader is gone, the channel send operation blocks forever,
and resource cleanup set up in defer statements at the beginning
of followLogs() never happens.
Alas, the fix is somewhat complicated:
1. Distinguish between close from logs producer and logs consumer.
To that effect,
- yet another channel is added to LogWatcher();
- {Watch,}Close() are renamed to {Watch,}ProducerGone();
- {Watch,}ConsumerGone() are added;
*NOTE* that ProducerGone()/WatchProducerGone() pair is ONLY needed
in order to stop ConsumerLogs(follow=true) when a container is stopped;
otherwise we're not interested in it. In other words, we're only
using it in followLogs().
2. Code that was doing (logWatcher*).Close() is modified to either call
ProducerGone() or ConsumerGone(), depending on the context.
3. Code that was waiting for WatchClose() is modified to wait for
either ConsumerGone() or ProducerGone(), or both, depending on the
context.
4. followLogs() are modified accordingly:
- context cancellation is happening on WatchProducerGone(),
and once it's received the FileWatcher is closed and waitRead()
returns errDone on EOF (i.e. log rotation handling logic is disabled);
- due to this, code that was writing synchronously to logWatcher.Msg
can be and is removed as the code above it handles this case;
- function returns once ConsumerGone is received, freeing all the
resources -- this is the bugfix itself.
While at it,
1. Let's also remove the ctx usage to simplify the code a bit.
It was introduced by commit a69a59ffc7e3d ("Decouple removing the
fileWatcher from reading") in order to fix a bug. The bug was actually
a deadlock in fsnotify, and the fix was just a workaround. Since then
the fsnofify bug has been fixed, and a new fsnotify was vendored in.
For more details, please see
https://github.com/moby/moby/pull/27782#issuecomment-416794490
2. Since `(*filePoller).Close()` is fixed to remove all the files
being watched, there is no need to explicitly call
fileWatcher.Remove(name) anymore, so get rid of the extra code.
Should fix https://github.com/moby/moby/issues/37391
Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
2018-08-01 00:03:55 -04:00
|
|
|
defer logs.ConsumerGone()
|
2015-11-03 12:33:13 -05:00
|
|
|
|
|
|
|
LogLoop:
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case msg, ok := <-logs.Msg:
|
|
|
|
if !ok {
|
|
|
|
break LogLoop
|
|
|
|
}
|
2017-01-30 07:49:22 -05:00
|
|
|
if msg.Source == "stdout" && cfg.Stdout != nil {
|
|
|
|
cfg.Stdout.Write(msg.Line)
|
2015-11-03 12:33:13 -05:00
|
|
|
}
|
2017-01-30 07:49:22 -05:00
|
|
|
if msg.Source == "stderr" && cfg.Stderr != nil {
|
|
|
|
cfg.Stderr.Write(msg.Line)
|
2015-11-03 12:33:13 -05:00
|
|
|
}
|
|
|
|
case err := <-logs.Err:
|
|
|
|
logrus.Errorf("Error streaming logs: %v", err)
|
|
|
|
break LogLoop
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-22 10:04:39 -04:00
|
|
|
daemon.LogContainerEvent(c, "attach")
|
2015-11-03 12:33:13 -05:00
|
|
|
|
2017-01-30 07:49:22 -05:00
|
|
|
if !doStream {
|
2017-01-19 11:02:51 -05:00
|
|
|
return nil
|
|
|
|
}
|
2016-05-16 22:30:06 -04:00
|
|
|
|
2017-01-30 07:49:22 -05:00
|
|
|
if cfg.Stdin != nil {
|
2017-01-19 11:02:51 -05:00
|
|
|
r, w := io.Pipe()
|
2017-01-30 07:49:22 -05:00
|
|
|
go func(stdin io.ReadCloser) {
|
2017-01-19 11:02:51 -05:00
|
|
|
defer w.Close()
|
|
|
|
defer logrus.Debug("Closing buffered stdin pipe")
|
|
|
|
io.Copy(w, stdin)
|
2017-01-30 07:49:22 -05:00
|
|
|
}(cfg.Stdin)
|
|
|
|
cfg.Stdin = r
|
2017-01-19 11:02:51 -05:00
|
|
|
}
|
2016-05-22 10:04:39 -04:00
|
|
|
|
2017-03-15 05:36:44 -04:00
|
|
|
if !c.Config.OpenStdin {
|
|
|
|
cfg.Stdin = nil
|
|
|
|
}
|
|
|
|
|
2017-01-19 11:02:51 -05:00
|
|
|
if c.Config.StdinOnce && !c.Config.Tty {
|
2017-03-30 16:52:40 -04:00
|
|
|
// Wait for the container to stop before returning.
|
2017-03-30 23:01:41 -04:00
|
|
|
waitChan := c.Wait(context.Background(), container.WaitConditionNotRunning)
|
2017-01-19 11:02:51 -05:00
|
|
|
defer func() {
|
2017-09-06 04:54:24 -04:00
|
|
|
<-waitChan // Ignore returned exit code.
|
2017-01-19 11:02:51 -05:00
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2017-01-30 07:49:22 -05:00
|
|
|
ctx := c.InitAttachContext()
|
|
|
|
err := <-c.StreamConfig.CopyStreams(ctx, cfg)
|
2017-01-19 11:02:51 -05:00
|
|
|
if err != nil {
|
2018-05-31 10:01:27 -04:00
|
|
|
if _, ok := errors.Cause(err).(term.EscapeError); ok || err == context.Canceled {
|
2017-01-19 11:02:51 -05:00
|
|
|
daemon.LogContainerEvent(c, "detach")
|
|
|
|
} else {
|
|
|
|
logrus.Errorf("attach failed with error: %v", err)
|
2015-11-03 12:33:13 -05:00
|
|
|
}
|
|
|
|
}
|
2017-01-19 11:02:51 -05:00
|
|
|
|
2015-11-03 12:33:13 -05:00
|
|
|
return nil
|
2015-03-29 17:17:23 -04:00
|
|
|
}
|