2014-08-01 13:34:06 -04:00
package main
import (
2017-04-02 18:21:56 -04:00
"context"
2015-05-07 12:49:07 -04:00
"crypto/tls"
2015-01-21 19:55:05 -05:00
"fmt"
"os"
"path/filepath"
2017-12-08 18:13:43 -05:00
"runtime"
2015-05-05 00:18:28 -04:00
"strings"
2015-04-27 17:11:29 -04:00
"time"
2015-01-21 19:55:05 -05:00
2015-07-29 17:47:30 -04:00
"github.com/docker/distribution/uuid"
2016-04-08 19:22:39 -04:00
"github.com/docker/docker/api"
2015-04-16 15:48:04 -04:00
apiserver "github.com/docker/docker/api/server"
2017-04-13 14:37:32 -04:00
buildbackend "github.com/docker/docker/api/server/backend/build"
2016-04-08 19:22:39 -04:00
"github.com/docker/docker/api/server/middleware"
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
"github.com/docker/docker/api/server/router"
2016-02-10 15:16:59 -05:00
"github.com/docker/docker/api/server/router/build"
2016-11-16 20:58:06 -05:00
checkpointrouter "github.com/docker/docker/api/server/router/checkpoint"
2016-02-10 15:16:59 -05:00
"github.com/docker/docker/api/server/router/container"
2017-05-01 19:17:35 -04:00
distributionrouter "github.com/docker/docker/api/server/router/distribution"
2016-02-10 15:16:59 -05:00
"github.com/docker/docker/api/server/router/image"
"github.com/docker/docker/api/server/router/network"
2016-11-09 20:49:09 -05:00
pluginrouter "github.com/docker/docker/api/server/router/plugin"
2017-05-15 15:59:15 -04:00
sessionrouter "github.com/docker/docker/api/server/router/session"
2016-06-13 22:52:49 -04:00
swarmrouter "github.com/docker/docker/api/server/router/swarm"
2016-02-10 15:16:59 -05:00
systemrouter "github.com/docker/docker/api/server/router/system"
"github.com/docker/docker/api/server/router/volume"
2017-05-15 17:54:27 -04:00
"github.com/docker/docker/builder/dockerfile"
"github.com/docker/docker/builder/fscache"
2016-12-12 03:33:58 -05:00
"github.com/docker/docker/cli/debug"
2014-08-08 05:12:39 -04:00
"github.com/docker/docker/daemon"
2016-06-13 22:52:49 -04:00
"github.com/docker/docker/daemon/cluster"
2017-01-23 06:23:07 -05:00
"github.com/docker/docker/daemon/config"
2017-08-08 12:14:04 -04:00
"github.com/docker/docker/daemon/listeners"
2015-11-09 13:32:46 -05:00
"github.com/docker/docker/dockerversion"
2016-03-18 14:50:19 -04:00
"github.com/docker/docker/libcontainerd"
2016-06-21 16:42:47 -04:00
dopts "github.com/docker/docker/opts"
2016-04-08 19:22:39 -04:00
"github.com/docker/docker/pkg/authorization"
2017-09-22 14:40:10 -04:00
"github.com/docker/docker/pkg/jsonmessage"
2015-04-27 17:11:29 -04:00
"github.com/docker/docker/pkg/pidfile"
2016-10-31 16:14:00 -04:00
"github.com/docker/docker/pkg/plugingetter"
2014-08-06 04:12:22 -04:00
"github.com/docker/docker/pkg/signal"
2017-04-24 13:28:21 -04:00
"github.com/docker/docker/pkg/system"
2017-03-17 17:57:23 -04:00
"github.com/docker/docker/plugin"
2014-08-20 11:31:24 -04:00
"github.com/docker/docker/registry"
2016-03-28 14:22:23 -04:00
"github.com/docker/docker/runconfig"
2015-12-29 19:27:12 -05:00
"github.com/docker/go-connections/tlsconfig"
2017-04-02 18:21:56 -04:00
swarmapi "github.com/docker/swarmkit/api"
2017-07-28 19:04:34 -04:00
"github.com/moby/buildkit/session"
2017-05-15 15:59:15 -04:00
"github.com/pkg/errors"
2017-07-26 17:42:13 -04:00
"github.com/sirupsen/logrus"
2016-06-21 16:42:47 -04:00
"github.com/spf13/pflag"
2014-08-01 13:34:06 -04:00
)
2015-12-10 18:35:10 -05:00
// DaemonCli represents the daemon CLI.
type DaemonCli struct {
2017-01-23 06:23:07 -05:00
* config . Config
2016-06-21 16:42:47 -04:00
configFile * string
flags * pflag . FlagSet
2016-04-22 20:16:14 -04:00
2016-05-16 14:12:48 -04:00
api * apiserver . Server
d * daemon . Daemon
authzMiddleware * authorization . Middleware // authzMiddleware enables to dynamically reload the authorization plugins
2015-12-10 18:35:10 -05:00
}
2016-06-21 16:42:47 -04:00
// NewDaemonCli returns a daemon CLI
2015-05-05 00:18:28 -04:00
func NewDaemonCli ( ) * DaemonCli {
2016-06-21 16:42:47 -04:00
return & DaemonCli { }
2014-08-09 21:18:32 -04:00
}
2017-06-01 16:34:31 -04:00
func ( cli * DaemonCli ) start ( opts * daemonOptions ) ( err error ) {
2016-04-22 20:16:14 -04:00
stopc := make ( chan bool )
defer close ( stopc )
2015-07-29 17:47:30 -04:00
// warn from uuid package when running the daemon
uuid . Loggerf = logrus . Warnf
2017-06-01 16:34:31 -04:00
opts . SetDefaultOptions ( opts . flags )
2015-05-05 00:18:28 -04:00
2016-06-21 16:42:47 -04:00
if cli . Config , err = loadDaemonCliConfig ( opts ) ; err != nil {
2016-04-22 20:16:14 -04:00
return err
2015-12-10 18:35:10 -05:00
}
2016-06-21 16:42:47 -04:00
cli . configFile = & opts . configFile
cli . flags = opts . flags
2015-12-10 18:35:10 -05:00
if cli . Config . Debug {
2016-12-12 03:33:58 -05:00
debug . Enable ( )
2015-12-10 18:35:10 -05:00
}
2015-05-21 13:48:36 -04:00
2016-10-06 10:09:54 -04:00
if cli . Config . Experimental {
2015-05-05 00:18:28 -04:00
logrus . Warn ( "Running experimental build" )
2014-08-01 13:34:06 -04:00
}
2015-03-27 21:38:00 -04:00
2015-12-13 05:10:41 -05:00
logrus . SetFormatter ( & logrus . TextFormatter {
2017-09-22 14:40:10 -04:00
TimestampFormat : jsonmessage . RFC3339NanoFixed ,
2015-12-13 05:10:41 -05:00
DisableColors : cli . Config . RawLogs ,
2017-08-02 13:29:46 -04:00
FullTimestamp : true ,
2015-12-13 05:10:41 -05:00
} )
2015-03-27 21:38:00 -04:00
2017-09-14 15:29:42 -04:00
system . InitLCOW ( cli . Config . Experimental )
2015-06-15 09:36:19 -04:00
if err := setDefaultUmask ( ) ; err != nil {
2016-04-22 20:16:14 -04:00
return fmt . Errorf ( "Failed to set umask: %v" , err )
2015-06-15 09:36:19 -04:00
}
2016-11-04 15:42:21 -04:00
// Create the daemon root before we create ANY other files (PID, or migrate keys)
// to ensure the appropriate ACL is set (particularly relevant on Windows)
if err := daemon . CreateDaemonRoot ( cli . Config ) ; err != nil {
return err
}
2015-05-05 00:18:28 -04:00
if cli . Pidfile != "" {
pf , err := pidfile . New ( cli . Pidfile )
2015-04-27 17:11:29 -04:00
if err != nil {
2016-04-22 20:16:14 -04:00
return fmt . Errorf ( "Error starting daemon: %v" , err )
2015-04-27 17:11:29 -04:00
}
defer func ( ) {
2016-04-22 20:16:14 -04:00
if err := pf . Remove ( ) ; err != nil {
2015-04-27 17:11:29 -04:00
logrus . Error ( err )
}
} ( )
}
2014-08-20 11:31:24 -04:00
2018-04-12 14:44:20 -04:00
serverConfig , err := newAPIServerConfig ( cli )
if err != nil {
return fmt . Errorf ( "Failed to create API server: %v" , err )
2015-10-12 04:49:25 -04:00
}
2017-06-12 17:50:29 -04:00
cli . api = apiserver . New ( serverConfig )
2016-02-11 13:30:23 -05:00
2018-04-12 14:44:20 -04:00
hosts , err := loadListeners ( cli , serverConfig )
if err != nil {
return fmt . Errorf ( "Failed to load listeners: %v" , err )
2015-10-05 12:32:08 -04:00
}
2015-04-16 15:48:04 -04:00
2017-09-01 10:35:04 -04:00
registryService , err := registry . NewService ( cli . Config . ServiceOptions )
if err != nil {
return err
}
2017-09-22 09:52:41 -04:00
rOpts , err := cli . getRemoteOptions ( )
if err != nil {
2018-04-12 14:44:20 -04:00
return fmt . Errorf ( "Failed to generate containerd options: %v" , err )
2017-09-22 09:52:41 -04:00
}
containerdRemote , err := libcontainerd . New ( filepath . Join ( cli . Config . Root , "containerd" ) , filepath . Join ( cli . Config . ExecRoot , "containerd" ) , rOpts ... )
2016-03-18 14:50:19 -04:00
if err != nil {
2016-04-22 20:16:14 -04:00
return err
2016-03-18 14:50:19 -04:00
}
2016-06-13 02:10:37 -04:00
signal . Trap ( func ( ) {
cli . stop ( )
<- stopc // wait for daemonCli.start() to return
2017-07-31 23:32:57 -04:00
} , logrus . StandardLogger ( ) )
2016-03-18 14:50:19 -04:00
2017-02-01 13:52:16 -05:00
// Notify that the API is active, but before daemon is set up.
preNotifySystem ( )
2017-03-17 17:57:23 -04:00
pluginStore := plugin . NewStore ( )
2017-06-12 17:50:29 -04:00
if err := cli . initMiddlewares ( cli . api , serverConfig , pluginStore ) ; err != nil {
2017-03-17 17:57:23 -04:00
logrus . Fatalf ( "Error creating middlewares: %v" , err )
}
d , err := daemon . NewDaemon ( cli . Config , registryService , containerdRemote , pluginStore )
2015-05-07 18:35:12 -04:00
if err != nil {
2016-04-22 20:16:14 -04:00
return fmt . Errorf ( "Error starting daemon: %v" , err )
2015-05-07 18:35:12 -04:00
}
Don't create source directory while the daemon is being shutdown, fix #30348
If a container mount the socket the daemon is listening on into
container while the daemon is being shutdown, the socket will
not exist on the host, then daemon will assume it's a directory
and create it on the host, this will cause the daemon can't start
next time.
fix issue https://github.com/moby/moby/issues/30348
To reproduce this issue, you can add following code
```
--- a/daemon/oci_linux.go
+++ b/daemon/oci_linux.go
@@ -8,6 +8,7 @@ import (
"sort"
"strconv"
"strings"
+ "time"
"github.com/Sirupsen/logrus"
"github.com/docker/docker/container"
@@ -666,7 +667,8 @@ func (daemon *Daemon) createSpec(c *container.Container) (*libcontainerd.Spec, e
if err := daemon.setupIpcDirs(c); err != nil {
return nil, err
}
-
+ fmt.Printf("===please stop the daemon===\n")
+ time.Sleep(time.Second * 2)
ms, err := daemon.setupMounts(c)
if err != nil {
return nil, err
```
step1 run a container which has `--restart always` and `-v /var/run/docker.sock:/sock`
```
$ docker run -ti --restart always -v /var/run/docker.sock:/sock busybox
/ #
```
step2 exit the the container
```
/ # exit
```
and kill the daemon when you see
```
===please stop the daemon===
```
in the daemon log
The daemon can't restart again and fail with `can't create unix socket /var/run/docker.sock: is a directory`.
Signed-off-by: Lei Jitang <leijitang@huawei.com>
2017-05-22 03:44:01 -04:00
d . StoreHosts ( hosts )
2017-03-17 17:57:23 -04:00
// validate after NewDaemon has restored enabled plugins. Dont change order.
if err := validateAuthzPlugins ( cli . Config . AuthorizationPlugins , pluginStore ) ; err != nil {
return fmt . Errorf ( "Error validating authorization plugin: %v" , err )
}
2017-06-12 17:50:29 -04:00
// TODO: move into startMetricsServer()
2016-07-20 19:11:28 -04:00
if cli . Config . MetricsAddress != "" {
if ! d . HasExperimental ( ) {
return fmt . Errorf ( "metrics-addr is only supported when experimental is enabled" )
}
if err := startMetricsServer ( cli . Config . MetricsAddress ) ; err != nil {
return err
}
}
2018-04-12 14:44:20 -04:00
c , err := createAndStartCluster ( cli , d )
2017-04-30 17:51:43 -04:00
if err != nil {
logrus . Fatalf ( "Error starting cluster component: %v" , err )
}
2016-06-13 22:52:49 -04:00
2016-09-09 12:55:57 -04:00
// Restart all autostart containers which has a swarm endpoint
// and is not yet running now that we have successfully
// initialized the cluster.
d . RestartSwarmContainers ( )
2015-05-07 18:35:12 -04:00
logrus . Info ( "Daemon has completed initialization" )
2016-10-07 17:53:17 -04:00
cli . d = d
2017-06-12 17:50:29 -04:00
routerOptions , err := newRouterOptions ( cli . Config , d )
if err != nil {
return err
}
routerOptions . api = cli . api
routerOptions . cluster = c
initRouter ( routerOptions )
2015-09-23 19:42:08 -04:00
2017-04-02 18:21:56 -04:00
// process cluster change notifications
watchCtx , cancel := context . WithCancel ( context . Background ( ) )
defer cancel ( )
2018-04-12 14:44:20 -04:00
go d . ProcessClusterNotifications ( watchCtx , c . GetWatchStream ( ) )
2017-04-02 18:21:56 -04:00
2016-04-22 20:16:14 -04:00
cli . setupConfigReloadTrap ( )
2015-12-10 18:35:10 -05:00
2015-11-24 21:17:37 -05:00
// The serve API routine never exits unless an error occurs
// We need to start it as a goroutine and wait on it so
// daemon doesn't exit
serveAPIWait := make ( chan error )
2017-06-12 17:50:29 -04:00
go cli . api . Wait ( serveAPIWait )
2015-11-24 21:17:37 -05:00
2015-11-25 14:05:31 -05:00
// after the daemon is done setting up we can notify systemd api
2015-09-23 19:42:08 -04:00
notifySystem ( )
2015-04-17 15:03:11 -04:00
2015-03-11 10:33:06 -04:00
// Daemon is fully initialized and handling API traffic
2015-04-27 17:11:29 -04:00
// Wait for serve API to complete
2015-03-11 10:33:06 -04:00
errAPI := <- serveAPIWait
2016-06-13 22:52:49 -04:00
c . Cleanup ( )
2016-06-06 23:29:05 -04:00
shutdownDaemon ( d )
2016-03-18 14:50:19 -04:00
containerdRemote . Cleanup ( )
2015-03-11 10:33:06 -04:00
if errAPI != nil {
2016-04-22 20:16:14 -04:00
return fmt . Errorf ( "Shutting down due to ServeAPI error: %v" , errAPI )
}
return nil
}
2017-06-12 17:50:29 -04:00
type routerOptions struct {
sessionManager * session . Manager
buildBackend * buildbackend . Backend
buildCache * fscache . FSCache
daemon * daemon . Daemon
api * apiserver . Server
cluster * cluster . Cluster
}
func newRouterOptions ( config * config . Config , daemon * daemon . Daemon ) ( routerOptions , error ) {
opts := routerOptions { }
sm , err := session . NewManager ( )
if err != nil {
return opts , errors . Wrap ( err , "failed to create sessionmanager" )
}
builderStateDir := filepath . Join ( config . Root , "builder" )
buildCache , err := fscache . NewFSCache ( fscache . Opt {
Backend : fscache . NewNaiveCacheBackend ( builderStateDir ) ,
Root : builderStateDir ,
GCPolicy : fscache . GCPolicy { // TODO: expose this in config
MaxSize : 1024 * 1024 * 512 , // 512MB
MaxKeepDuration : 7 * 24 * time . Hour , // 1 week
} ,
} )
if err != nil {
return opts , errors . Wrap ( err , "failed to create fscache" )
}
2018-02-02 17:18:46 -05:00
manager , err := dockerfile . NewBuildManager ( daemon . BuilderBackend ( ) , sm , buildCache , daemon . IDMappings ( ) )
2017-06-12 17:50:29 -04:00
if err != nil {
return opts , err
}
2018-02-02 17:18:46 -05:00
bb , err := buildbackend . NewBackend ( daemon . ImageService ( ) , manager , buildCache )
2017-06-12 17:50:29 -04:00
if err != nil {
return opts , errors . Wrap ( err , "failed to create buildmanager" )
}
return routerOptions {
sessionManager : sm ,
buildBackend : bb ,
buildCache : buildCache ,
daemon : daemon ,
} , nil
}
2016-04-22 20:16:14 -04:00
func ( cli * DaemonCli ) reloadConfig ( ) {
2018-04-23 15:24:01 -04:00
reload := func ( c * config . Config ) {
2016-05-16 14:12:48 -04:00
2016-10-31 16:14:00 -04:00
// Revalidate and reload the authorization plugins
2018-04-23 15:24:01 -04:00
if err := validateAuthzPlugins ( c . AuthorizationPlugins , cli . d . PluginStore ) ; err != nil {
2016-10-31 16:14:00 -04:00
logrus . Fatalf ( "Error validating authorization plugin: %v" , err )
return
}
2018-04-23 15:24:01 -04:00
cli . authzMiddleware . SetPlugins ( c . AuthorizationPlugins )
// The namespaces com.docker.*, io.docker.*, org.dockerproject.* have been documented
// to be reserved for Docker's internal use, but this was never enforced. Allowing
// configured labels to use these namespaces are deprecated for 18.05.
//
// The following will check the usage of such labels, and report a warning for deprecation.
//
// TODO: At the next stable release, the validation should be folded into the other
// configuration validation functions and an error will be returned instead, and this
// block should be deleted.
if err := config . ValidateReservedNamespaceLabels ( c . Labels ) ; err != nil {
logrus . Warnf ( "Configured labels using reserved namespaces is deprecated: %s" , err )
}
2016-05-16 14:12:48 -04:00
2018-04-23 15:24:01 -04:00
if err := cli . d . Reload ( c ) ; err != nil {
2016-04-22 20:16:14 -04:00
logrus . Errorf ( "Error reconfiguring the daemon: %v" , err )
return
}
2016-05-16 14:12:48 -04:00
2018-04-23 15:24:01 -04:00
if c . IsValueSet ( "debug" ) {
2016-12-12 03:33:58 -05:00
debugEnabled := debug . IsEnabled ( )
2016-04-22 20:16:14 -04:00
switch {
2018-04-23 15:24:01 -04:00
case debugEnabled && ! c . Debug : // disable debug
2016-12-12 03:33:58 -05:00
debug . Disable ( )
2018-04-23 15:24:01 -04:00
case c . Debug && ! debugEnabled : // enable debug
2016-12-12 03:33:58 -05:00
debug . Enable ( )
2015-04-27 17:11:29 -04:00
}
}
2015-03-11 10:33:06 -04:00
}
2016-04-22 20:16:14 -04:00
2017-01-23 06:23:07 -05:00
if err := config . Reload ( * cli . configFile , cli . flags , reload ) ; err != nil {
2016-04-22 20:16:14 -04:00
logrus . Error ( err )
}
}
func ( cli * DaemonCli ) stop ( ) {
cli . api . Close ( )
2014-08-01 13:34:06 -04:00
}
2015-03-29 15:48:52 -04:00
2015-04-27 17:11:29 -04:00
// shutdownDaemon just wraps daemon.Shutdown() to handle a timeout in case
// d.Shutdown() is waiting too long to kill container or worst it's
// blocked there
2016-06-06 23:29:05 -04:00
func shutdownDaemon ( d * daemon . Daemon ) {
shutdownTimeout := d . ShutdownTimeout ( )
2015-04-27 17:11:29 -04:00
ch := make ( chan struct { } )
go func ( ) {
2015-09-29 13:51:40 -04:00
d . Shutdown ( )
2015-04-27 17:11:29 -04:00
close ( ch )
} ( )
2016-06-06 23:29:05 -04:00
if shutdownTimeout < 0 {
<- ch
logrus . Debug ( "Clean shutdown succeeded" )
return
}
2015-04-27 17:11:29 -04:00
select {
case <- ch :
2015-08-07 18:24:18 -04:00
logrus . Debug ( "Clean shutdown succeeded" )
2016-06-06 23:29:05 -04:00
case <- time . After ( time . Duration ( shutdownTimeout ) * time . Second ) :
2015-04-27 17:11:29 -04:00
logrus . Error ( "Force shutdown daemon" )
}
}
2015-12-10 18:35:10 -05:00
2017-06-01 16:34:31 -04:00
func loadDaemonCliConfig ( opts * daemonOptions ) ( * config . Config , error ) {
2017-01-23 06:23:07 -05:00
conf := opts . daemonConfig
2016-06-21 16:42:47 -04:00
flags := opts . flags
2017-06-01 16:34:31 -04:00
conf . Debug = opts . Debug
conf . Hosts = opts . Hosts
conf . LogLevel = opts . LogLevel
conf . TLS = opts . TLS
conf . TLSVerify = opts . TLSVerify
2017-01-23 06:23:07 -05:00
conf . CommonTLSOptions = config . CommonTLSOptions { }
2015-12-10 18:35:10 -05:00
2017-06-01 16:34:31 -04:00
if opts . TLSOptions != nil {
conf . CommonTLSOptions . CAFile = opts . TLSOptions . CAFile
conf . CommonTLSOptions . CertFile = opts . TLSOptions . CertFile
conf . CommonTLSOptions . KeyFile = opts . TLSOptions . KeyFile
2015-12-10 18:35:10 -05:00
}
2017-04-26 18:57:58 -04:00
if conf . TrustKeyPath == "" {
conf . TrustKeyPath = filepath . Join (
getDaemonConfDir ( conf . Root ) ,
defaultTrustKeyFile )
}
2017-03-28 10:19:35 -04:00
if flags . Changed ( "graph" ) && flags . Changed ( "data-root" ) {
return nil , fmt . Errorf ( ` cannot specify both "--graph" and "--data-root" option ` )
}
2016-06-21 16:42:47 -04:00
if opts . configFile != "" {
2017-01-23 06:23:07 -05:00
c , err := config . MergeDaemonConfigurations ( conf , flags , opts . configFile )
2015-12-10 18:35:10 -05:00
if err != nil {
2017-03-30 06:01:00 -04:00
if flags . Changed ( "config-file" ) || ! os . IsNotExist ( err ) {
2017-08-17 15:16:30 -04:00
return nil , fmt . Errorf ( "unable to configure the Docker daemon with file %s: %v" , opts . configFile , err )
2015-12-10 18:35:10 -05:00
}
}
// the merged configuration can be nil if the config file didn't exist.
// leave the current configuration as it is if when that happens.
if c != nil {
2017-01-23 06:23:07 -05:00
conf = c
2015-12-10 18:35:10 -05:00
}
}
2017-01-23 06:23:07 -05:00
if err := config . Validate ( conf ) ; err != nil {
2016-05-23 17:49:50 -04:00
return nil , err
}
2017-12-08 18:13:43 -05:00
if runtime . GOOS != "windows" {
if flags . Changed ( "disable-legacy-registry" ) {
// TODO: Remove this error after 3 release cycles (18.03)
return nil , errors . New ( "ERROR: The '--disable-legacy-registry' flag has been removed. Interacting with legacy (v1) registries is no longer supported" )
}
if ! conf . V2Only {
// TODO: Remove this error after 3 release cycles (18.03)
return nil , errors . New ( "ERROR: The 'disable-legacy-registry' configuration option has been removed. Interacting with legacy (v1) registries is no longer supported" )
}
2017-06-11 08:39:28 -04:00
}
2017-03-28 10:19:35 -04:00
if flags . Changed ( "graph" ) {
2017-06-11 08:39:28 -04:00
logrus . Warnf ( ` The "-g / --graph" flag is deprecated. Please use "--data-root" instead ` )
2017-03-28 10:19:35 -04:00
}
2017-11-11 21:09:28 -05:00
// Check if duplicate label-keys with different values are found
newLabels , err := config . GetConflictFreeLabels ( conf . Labels )
if err != nil {
return nil , err
2016-07-12 08:08:05 -04:00
}
2018-04-23 15:24:01 -04:00
// The namespaces com.docker.*, io.docker.*, org.dockerproject.* have been documented
// to be reserved for Docker's internal use, but this was never enforced. Allowing
// configured labels to use these namespaces are deprecated for 18.05.
//
// The following will check the usage of such labels, and report a warning for deprecation.
//
// TODO: At the next stable release, the validation should be folded into the other
// configuration validation functions and an error will be returned instead, and this
// block should be deleted.
if err := config . ValidateReservedNamespaceLabels ( newLabels ) ; err != nil {
logrus . Warnf ( "Configured labels using reserved namespaces is deprecated: %s" , err )
}
2017-11-11 21:09:28 -05:00
conf . Labels = newLabels
2016-07-12 08:08:05 -04:00
2016-01-19 14:16:07 -05:00
// Regardless of whether the user sets it to true or false, if they
// specify TLSVerify at all then we need to turn on TLS
2017-06-01 16:34:31 -04:00
if conf . IsValueSet ( FlagTLSVerify ) {
2017-01-23 06:23:07 -05:00
conf . TLS = true
2016-01-19 14:16:07 -05:00
}
// ensure that the log level is the one set after merging configurations
2017-06-01 16:34:31 -04:00
setLogLevel ( conf . LogLevel )
2016-01-19 14:16:07 -05:00
2017-01-23 06:23:07 -05:00
return conf , nil
2015-12-10 18:35:10 -05:00
}
2016-02-10 15:16:59 -05:00
2017-06-12 17:50:29 -04:00
func initRouter ( opts routerOptions ) {
2016-03-28 14:22:23 -04:00
decoder := runconfig . ContainerDecoder { }
2016-11-16 20:58:06 -05:00
routers := [ ] router . Router {
// we need to add the checkpoint router before the container router or the DELETE gets masked
2017-06-12 17:50:29 -04:00
checkpointrouter . NewRouter ( opts . daemon , decoder ) ,
container . NewRouter ( opts . daemon , decoder ) ,
2018-02-02 17:18:46 -05:00
image . NewRouter ( opts . daemon . ImageService ( ) ) ,
2017-06-12 17:50:29 -04:00
systemrouter . NewRouter ( opts . daemon , opts . cluster , opts . buildCache ) ,
volume . NewRouter ( opts . daemon ) ,
build . NewRouter ( opts . buildBackend , opts . daemon ) ,
sessionrouter . NewRouter ( opts . sessionManager ) ,
swarmrouter . NewRouter ( opts . cluster ) ,
pluginrouter . NewRouter ( opts . daemon . PluginManager ( ) ) ,
2018-02-02 17:18:46 -05:00
distributionrouter . NewRouter ( opts . daemon . ImageService ( ) ) ,
2016-11-16 20:58:06 -05:00
}
2016-08-30 10:10:44 -04:00
2017-06-12 17:50:29 -04:00
if opts . daemon . NetworkControllerEnabled ( ) {
routers = append ( routers , network . NewRouter ( opts . daemon , opts . cluster ) )
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
}
2017-06-12 17:50:29 -04:00
if opts . daemon . HasExperimental ( ) {
2016-11-16 20:58:06 -05:00
for _ , r := range routers {
for _ , route := range r . Routes ( ) {
if experimental , ok := route . ( router . ExperimentalRoute ) ; ok {
experimental . Enable ( )
}
}
}
}
2017-04-08 14:43:42 -04:00
opts . api . InitRouter ( routers ... )
2016-02-10 15:16:59 -05:00
}
2016-04-08 19:22:39 -04:00
2017-06-12 17:50:29 -04:00
// TODO: remove this from cli and return the authzMiddleware
2017-08-23 18:21:41 -04:00
func ( cli * DaemonCli ) initMiddlewares ( s * apiserver . Server , cfg * apiserver . Config , pluginStore plugingetter . PluginGetter ) error {
2016-04-19 10:56:54 -04:00
v := cfg . Version
2016-04-08 19:22:39 -04:00
2017-03-17 17:57:23 -04:00
exp := middleware . NewExperimentalMiddleware ( cli . Config . Experimental )
2016-10-06 10:09:54 -04:00
s . UseMiddleware ( exp )
2016-04-08 19:22:39 -04:00
vm := middleware . NewVersionMiddleware ( v , api . DefaultVersion , api . MinVersion )
s . UseMiddleware ( vm )
2017-09-12 06:43:34 -04:00
if cfg . CorsHeaders != "" {
2016-04-08 19:22:39 -04:00
c := middleware . NewCORSMiddleware ( cfg . CorsHeaders )
s . UseMiddleware ( c )
}
2017-03-17 17:57:23 -04:00
cli . authzMiddleware = authorization . NewMiddleware ( cli . Config . AuthorizationPlugins , pluginStore )
cli . Config . AuthzMiddleware = cli . authzMiddleware
2016-05-16 14:12:48 -04:00
s . UseMiddleware ( cli . authzMiddleware )
2016-10-31 16:14:00 -04:00
return nil
}
2017-09-22 09:52:41 -04:00
func ( cli * DaemonCli ) getRemoteOptions ( ) ( [ ] libcontainerd . RemoteOption , error ) {
opts := [ ] libcontainerd . RemoteOption { }
pOpts , err := cli . getPlatformRemoteOptions ( )
if err != nil {
return nil , err
}
opts = append ( opts , pOpts ... )
return opts , nil
}
2018-04-12 14:44:20 -04:00
func newAPIServerConfig ( cli * DaemonCli ) ( * apiserver . Config , error ) {
serverConfig := & apiserver . Config {
Logging : true ,
SocketGroup : cli . Config . SocketGroup ,
Version : dockerversion . Version ,
CorsHeaders : cli . Config . CorsHeaders ,
}
if cli . Config . TLS {
tlsOptions := tlsconfig . Options {
CAFile : cli . Config . CommonTLSOptions . CAFile ,
CertFile : cli . Config . CommonTLSOptions . CertFile ,
KeyFile : cli . Config . CommonTLSOptions . KeyFile ,
ExclusiveRootPools : true ,
}
if cli . Config . TLSVerify {
// server requires and verifies client's certificate
tlsOptions . ClientAuth = tls . RequireAndVerifyClientCert
}
tlsConfig , err := tlsconfig . Server ( tlsOptions )
if err != nil {
return nil , err
}
serverConfig . TLSConfig = tlsConfig
}
if len ( cli . Config . Hosts ) == 0 {
cli . Config . Hosts = make ( [ ] string , 1 )
}
return serverConfig , nil
}
func loadListeners ( cli * DaemonCli , serverConfig * apiserver . Config ) ( [ ] string , error ) {
var hosts [ ] string
for i := 0 ; i < len ( cli . Config . Hosts ) ; i ++ {
var err error
if cli . Config . Hosts [ i ] , err = dopts . ParseHost ( cli . Config . TLS , cli . Config . Hosts [ i ] ) ; err != nil {
return nil , fmt . Errorf ( "error parsing -H %s : %v" , cli . Config . Hosts [ i ] , err )
}
protoAddr := cli . Config . Hosts [ i ]
protoAddrParts := strings . SplitN ( protoAddr , "://" , 2 )
if len ( protoAddrParts ) != 2 {
return nil , fmt . Errorf ( "bad format %s, expected PROTO://ADDR" , protoAddr )
}
proto := protoAddrParts [ 0 ]
addr := protoAddrParts [ 1 ]
// It's a bad idea to bind to TCP without tlsverify.
if proto == "tcp" && ( serverConfig . TLSConfig == nil || serverConfig . TLSConfig . ClientAuth != tls . RequireAndVerifyClientCert ) {
logrus . Warn ( "[!] DON'T BIND ON ANY IP ADDRESS WITHOUT setting --tlsverify IF YOU DON'T KNOW WHAT YOU'RE DOING [!]" )
}
ls , err := listeners . Init ( proto , addr , serverConfig . SocketGroup , serverConfig . TLSConfig )
if err != nil {
return nil , err
}
ls = wrapListeners ( proto , ls )
// If we're binding to a TCP port, make sure that a container doesn't try to use it.
if proto == "tcp" {
if err := allocateDaemonPort ( addr ) ; err != nil {
return nil , err
}
}
logrus . Debugf ( "Listener created for HTTP on %s (%s)" , proto , addr )
hosts = append ( hosts , protoAddrParts [ 1 ] )
cli . api . Accept ( addr , ls ... )
}
return hosts , nil
}
func createAndStartCluster ( cli * DaemonCli , d * daemon . Daemon ) ( * cluster . Cluster , error ) {
name , _ := os . Hostname ( )
// Use a buffered channel to pass changes from store watch API to daemon
// A buffer allows store watch API and daemon processing to not wait for each other
watchStream := make ( chan * swarmapi . WatchMessage , 32 )
c , err := cluster . New ( cluster . Config {
Root : cli . Config . Root ,
Name : name ,
Backend : d ,
ImageBackend : d . ImageService ( ) ,
PluginBackend : d . PluginManager ( ) ,
NetworkSubnetsProvider : d ,
DefaultAdvertiseAddr : cli . Config . SwarmDefaultAdvertiseAddr ,
RaftHeartbeatTick : cli . Config . SwarmRaftHeartbeatTick ,
RaftElectionTick : cli . Config . SwarmRaftElectionTick ,
RuntimeRoot : cli . getSwarmRunRoot ( ) ,
WatchStream : watchStream ,
} )
if err != nil {
return nil , err
}
d . SetCluster ( c )
err = c . Start ( )
return c , err
}
2016-10-31 16:14:00 -04:00
// validates that the plugins requested with the --authorization-plugin flag are valid AuthzDriver
// plugins present on the host and available to the daemon
func validateAuthzPlugins ( requestedPlugins [ ] string , pg plugingetter . PluginGetter ) error {
for _ , reqPlugin := range requestedPlugins {
2016-12-19 21:18:43 -05:00
if _ , err := pg . Get ( reqPlugin , authorization . AuthZApiImplements , plugingetter . Lookup ) ; err != nil {
2016-10-31 16:14:00 -04:00
return err
}
}
return nil
2016-04-08 19:22:39 -04:00
}