add //go:build directives to prevent downgrading to go1.16 language
This repository is not yet a module (i.e., does not have a `go.mod`). This
is not problematic when building the code in GOPATH or "vendor" mode, but
when using the code as a module-dependency (in module-mode), different semantics
are applied since Go1.21, which switches Go _language versions_ on a per-module,
per-package, or even per-file base.
A condensed summary of that logic [is as follows][1]:
- For modules that have a go.mod containing a go version directive; that
version is considered a minimum _required_ version (starting with the
go1.19.13 and go1.20.8 patch releases: before those, it was only a
recommendation).
- For dependencies that don't have a go.mod (not a module), go language
version go1.16 is assumed.
- Likewise, for modules that have a go.mod, but the file does not have a
go version directive, go language version go1.16 is assumed.
- If a go.work file is present, but does not have a go version directive,
language version go1.17 is assumed.
When switching language versions, Go _downgrades_ the language version,
which means that language features (such as generics, and `any`) are not
available, and compilation fails. For example:
# github.com/docker/cli/cli/context/store
/go/pkg/mod/github.com/docker/cli@v25.0.0-beta.2+incompatible/cli/context/store/storeconfig.go:6:24: predeclared any requires go1.18 or later (-lang was set to go1.16; check go.mod)
/go/pkg/mod/github.com/docker/cli@v25.0.0-beta.2+incompatible/cli/context/store/store.go:74:12: predeclared any requires go1.18 or later (-lang was set to go1.16; check go.mod)
Note that these fallbacks are per-module, per-package, and can even be
per-file, so _(indirect) dependencies_ can still use modern language
features, as long as their respective go.mod has a version specified.
Unfortunately, these failures do not occur when building locally (using
vendor / GOPATH mode), but will affect consumers of the module.
Obviously, this situation is not ideal, and the ultimate solution is to
move to go modules (add a go.mod), but this comes with a non-insignificant
risk in other areas (due to our complex dependency tree).
We can revert to using go1.16 language features only, but this may be
limiting, and may still be problematic when (e.g.) matching signatures
of dependencies.
There is an escape hatch: adding a `//go:build` directive to files that
make use of go language features. From the [go toolchain docs][2]:
> The go line for each module sets the language version the compiler enforces
> when compiling packages in that module. The language version can be changed
> on a per-file basis by using a build constraint.
>
> For example, a module containing code that uses the Go 1.21 language version
> should have a `go.mod` file with a go line such as `go 1.21` or `go 1.21.3`.
> If a specific source file should be compiled only when using a newer Go
> toolchain, adding `//go:build go1.22` to that source file both ensures that
> only Go 1.22 and newer toolchains will compile the file and also changes
> the language version in that file to Go 1.22.
This patch adds `//go:build` directives to those files using recent additions
to the language. It's currently using go1.19 as version to match the version
in our "vendor.mod", but we can consider being more permissive ("any" requires
go1.18 or up), or more "optimistic" (force go1.21, which is the version we
currently use to build).
For completeness sake, note that any file _without_ a `//go:build` directive
will continue to use go1.16 language version when used as a module.
[1]: https://github.com/golang/go/blob/58c28ba286dd0e98fe4cca80f5d64bbcb824a685/src/cmd/go/internal/gover/version.go#L9-L56
[2]: https://go.dev/doc/toolchain
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2023-12-15 13:26:31 +00:00
// FIXME(thaJeztah): remove once we are a module; the go:build directive prevents go from downgrading language version to go1.16:
//go:build go1.19
2018-02-05 21:05:59 +00:00
package daemon // import "github.com/docker/docker/daemon"
2014-08-08 03:01:55 +00:00
import (
2023-06-23 00:33:17 +00:00
"context"
2016-11-16 21:30:29 +00:00
"fmt"
2014-08-08 03:01:55 +00:00
"os"
"runtime"
2017-05-16 23:56:56 +00:00
"strings"
2015-03-10 18:25:47 +00:00
"time"
2014-08-08 03:01:55 +00:00
2023-09-10 00:05:05 +00:00
"github.com/containerd/containerd/tracing"
2023-09-13 15:41:45 +00:00
"github.com/containerd/log"
2016-11-02 17:04:39 +00:00
"github.com/docker/docker/api"
2016-09-06 18:18:12 +00:00
"github.com/docker/docker/api/types"
2023-07-03 11:14:14 +00:00
"github.com/docker/docker/api/types/system"
2016-12-12 08:33:58 +00:00
"github.com/docker/docker/cli/debug"
2020-07-07 20:33:46 +00:00
"github.com/docker/docker/daemon/config"
2017-04-11 21:21:21 +00:00
"github.com/docker/docker/daemon/logger"
2015-11-09 18:32:46 +00:00
"github.com/docker/docker/dockerversion"
2015-03-29 21:17:23 +00:00
"github.com/docker/docker/pkg/fileutils"
2023-03-14 22:21:27 +00:00
"github.com/docker/docker/pkg/meminfo"
2014-08-08 03:01:55 +00:00
"github.com/docker/docker/pkg/parsers/kernel"
"github.com/docker/docker/pkg/parsers/operatingsystem"
2015-11-14 22:03:02 +00:00
"github.com/docker/docker/pkg/platform"
2015-08-06 11:54:48 +00:00
"github.com/docker/docker/pkg/sysinfo"
2014-08-08 03:01:55 +00:00
"github.com/docker/docker/registry"
2019-08-05 14:37:47 +00:00
metrics "github.com/docker/go-metrics"
2020-12-14 10:46:58 +00:00
"github.com/opencontainers/selinux/go-selinux"
2014-08-08 03:01:55 +00:00
)
2023-09-10 00:05:05 +00:00
func doWithTrace [ T any ] ( ctx context . Context , name string , f func ( ) T ) T {
_ , span := tracing . StartSpan ( ctx , name )
defer span . End ( )
return f ( )
}
2015-07-30 21:01:53 +00:00
// SystemInfo returns information about the host server the daemon is running on.
2023-09-10 00:05:05 +00:00
//
// The only error this should return is due to context cancellation/deadline.
// Anything else should be logged and ignored because this is looking up
// multiple things and is often used for debugging.
// The only case valid early return is when the caller doesn't want the result anymore (ie context cancelled).
func ( daemon * Daemon ) SystemInfo ( ctx context . Context ) ( * system . Info , error ) {
2019-05-30 16:51:41 +00:00
defer metrics . StartTimer ( hostInfoFunctions . WithValues ( "system_info" ) ) ( )
2021-07-14 14:45:02 +00:00
sysInfo := daemon . RawSysInfo ( )
2022-08-17 21:13:49 +00:00
cfg := daemon . config ( )
2015-10-27 20:12:33 +00:00
2023-07-03 11:14:14 +00:00
v := & system . Info {
2022-03-02 10:43:33 +00:00
ID : daemon . id ,
2023-09-10 00:05:05 +00:00
Images : daemon . imageService . CountImages ( ctx ) ,
2015-08-06 11:54:48 +00:00
IPv4Forwarding : ! sysInfo . IPv4ForwardingDisabled ,
2016-02-26 18:47:43 +00:00
BridgeNfIptables : ! sysInfo . BridgeNFCallIPTablesDisabled ,
BridgeNfIP6tables : ! sysInfo . BridgeNFCallIP6TablesDisabled ,
2023-09-10 00:05:05 +00:00
Name : hostName ( ctx ) ,
2015-04-10 17:26:30 +00:00
SystemTime : time . Now ( ) . Format ( time . RFC3339Nano ) ,
LoggingDriver : daemon . defaultLogConfig . Type ,
2023-09-10 00:05:05 +00:00
KernelVersion : kernelVersion ( ctx ) ,
OperatingSystem : operatingSystem ( ctx ) ,
OSVersion : osVersion ( ctx ) ,
2015-07-21 19:40:36 +00:00
IndexServerAddress : registry . IndexServer ,
2023-04-08 12:40:57 +00:00
OSType : runtime . GOOS ,
2015-11-14 22:03:02 +00:00
Architecture : platform . Architecture ,
2023-09-10 00:05:05 +00:00
RegistryConfig : doWithTrace ( ctx , "registry.ServiceConfig" , daemon . registryService . ServiceConfig ) ,
NCPU : doWithTrace ( ctx , "sysinfo.NumCPU" , sysinfo . NumCPU ) ,
MemTotal : memInfo ( ctx ) . MemTotal ,
2017-05-31 00:02:11 +00:00
GenericResources : daemon . genericResources ,
2022-08-17 21:13:49 +00:00
DockerRootDir : cfg . Root ,
Labels : cfg . Labels ,
ExperimentalBuild : cfg . Experimental ,
2015-11-09 18:32:46 +00:00
ServerVersion : dockerversion . Version ,
2022-08-17 21:13:49 +00:00
HTTPProxy : config . MaskCredentials ( getConfigOrEnv ( cfg . HTTPProxy , "HTTP_PROXY" , "http_proxy" ) ) ,
HTTPSProxy : config . MaskCredentials ( getConfigOrEnv ( cfg . HTTPSProxy , "HTTPS_PROXY" , "https_proxy" ) ) ,
NoProxy : getConfigOrEnv ( cfg . NoProxy , "NO_PROXY" , "no_proxy" ) ,
LiveRestoreEnabled : cfg . LiveRestoreEnabled ,
2016-09-07 22:10:00 +00:00
Isolation : daemon . defaultIsolation ,
2023-07-17 23:50:08 +00:00
CDISpecDirs : promoteNil ( cfg . CDISpecDirs ) ,
2015-04-10 17:26:30 +00:00
}
2022-02-15 18:19:30 +00:00
daemon . fillContainerStates ( v )
2023-09-10 00:05:05 +00:00
daemon . fillDebugInfo ( ctx , v )
2022-08-31 20:12:30 +00:00
daemon . fillAPIInfo ( v , & cfg . Config )
2016-11-11 16:02:23 +00:00
// Retrieve platform specific info
2023-09-10 00:05:05 +00:00
if err := daemon . fillPlatformInfo ( ctx , v , sysInfo , cfg ) ; err != nil {
return nil , err
}
2018-07-13 10:55:59 +00:00
daemon . fillDriverInfo ( v )
2023-09-10 00:05:05 +00:00
daemon . fillPluginsInfo ( ctx , v , & cfg . Config )
2022-08-31 20:12:30 +00:00
daemon . fillSecurityOptions ( v , sysInfo , & cfg . Config )
2018-08-18 00:05:21 +00:00
daemon . fillLicense ( v )
2023-09-10 00:05:05 +00:00
daemon . fillDefaultAddressPools ( ctx , v , & cfg . Config )
2015-04-10 17:26:30 +00:00
2023-09-10 00:05:05 +00:00
return v , nil
2014-08-08 03:01:55 +00:00
}
2015-10-23 06:08:26 +00:00
2015-12-03 18:11:19 +00:00
// SystemVersion returns version information about the daemon.
2023-09-10 00:05:05 +00:00
//
// The only error this should return is due to context cancellation/deadline.
// Anything else should be logged and ignored because this is looking up
// multiple things and is often used for debugging.
// The only case valid early return is when the caller doesn't want the result anymore (ie context cancelled).
func ( daemon * Daemon ) SystemVersion ( ctx context . Context ) ( types . Version , error ) {
2019-05-30 16:51:41 +00:00
defer metrics . StartTimer ( hostInfoFunctions . WithValues ( "system_version" ) ) ( )
2023-09-10 00:05:05 +00:00
kernelVersion := kernelVersion ( ctx )
2022-08-17 21:13:49 +00:00
cfg := daemon . config ( )
2017-12-05 14:29:37 +00:00
2015-12-03 18:11:19 +00:00
v := types . Version {
2017-12-05 14:29:37 +00:00
Components : [ ] types . ComponentVersion {
{
Name : "Engine" ,
Version : dockerversion . Version ,
Details : map [ string ] string {
"GitCommit" : dockerversion . GitCommit ,
"ApiVersion" : api . DefaultVersion ,
daemon: raise default minimum API version to v1.24
The daemon currently provides support for API versions all the way back
to v1.12, which is the version of the API that shipped with docker 1.0. On
Windows, the minimum supported version is v1.24.
Such old versions of the client are rare, and supporting older API versions
has accumulated significant amounts of code to remain backward-compatible
(which is largely untested, and a "best-effort" at most).
This patch updates the minimum API version to v1.24, which is the fallback
API version used when API-version negotiation fails. The intent is to start
deprecating older API versions, but no code is removed yet as part of this
patch, and a DOCKER_MIN_API_VERSION environment variable is added, which
allows overriding the minimum version (to allow restoring the behavior from
before this patch).
With this patch the daemon defaults to API v1.24 as minimum:
docker version
Client:
Version: 24.0.2
API version: 1.43
Go version: go1.20.4
Git commit: cb74dfc
Built: Thu May 25 21:50:49 2023
OS/Arch: linux/arm64
Context: default
Server:
Engine:
Version: dev
API version: 1.44 (minimum version 1.24)
Go version: go1.21.3
Git commit: 0322a29b9ef8806aaa4b45dc9d9a2ebcf0244bf4
Built: Mon Dec 4 15:22:17 2023
OS/Arch: linux/arm64
Experimental: false
containerd:
Version: v1.7.9
GitCommit: 4f03e100cb967922bec7459a78d16ccbac9bb81d
runc:
Version: 1.1.10
GitCommit: v1.1.10-0-g18a0cb0
docker-init:
Version: 0.19.0
GitCommit: de40ad0
Trying to use an older version of the API produces an error:
DOCKER_API_VERSION=1.23 docker version
Client:
Version: 24.0.2
API version: 1.23 (downgraded from 1.43)
Go version: go1.20.4
Git commit: cb74dfc
Built: Thu May 25 21:50:49 2023
OS/Arch: linux/arm64
Context: default
Error response from daemon: client version 1.23 is too old. Minimum supported API version is 1.24, please upgrade your client to a newer version
To restore the previous minimum, users can start the daemon with the
DOCKER_MIN_API_VERSION environment variable set:
DOCKER_MIN_API_VERSION=1.12 dockerd
API 1.12 is the oldest supported API version on Linux;
docker version
Client:
Version: 24.0.2
API version: 1.43
Go version: go1.20.4
Git commit: cb74dfc
Built: Thu May 25 21:50:49 2023
OS/Arch: linux/arm64
Context: default
Server:
Engine:
Version: dev
API version: 1.44 (minimum version 1.12)
Go version: go1.21.3
Git commit: 0322a29b9ef8806aaa4b45dc9d9a2ebcf0244bf4
Built: Mon Dec 4 15:22:17 2023
OS/Arch: linux/arm64
Experimental: false
containerd:
Version: v1.7.9
GitCommit: 4f03e100cb967922bec7459a78d16ccbac9bb81d
runc:
Version: 1.1.10
GitCommit: v1.1.10-0-g18a0cb0
docker-init:
Version: 0.19.0
GitCommit: de40ad0
When using the `DOCKER_MIN_API_VERSION` with a version of the API that
is not supported, an error is produced when starting the daemon;
DOCKER_MIN_API_VERSION=1.11 dockerd --validate
invalid DOCKER_MIN_API_VERSION: minimum supported API version is 1.12: 1.11
DOCKER_MIN_API_VERSION=1.45 dockerd --validate
invalid DOCKER_MIN_API_VERSION: maximum supported API version is 1.44: 1.45
Specifying a malformed API version also produces the same error;
DOCKER_MIN_API_VERSION=hello dockerd --validate
invalid DOCKER_MIN_API_VERSION: minimum supported API version is 1.12: hello
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2023-12-04 12:44:21 +00:00
"MinAPIVersion" : cfg . MinAPIVersion ,
2017-12-05 14:29:37 +00:00
"GoVersion" : runtime . Version ( ) ,
"Os" : runtime . GOOS ,
"Arch" : runtime . GOARCH ,
"BuildTime" : dockerversion . BuildTime ,
"KernelVersion" : kernelVersion ,
2022-08-17 21:13:49 +00:00
"Experimental" : fmt . Sprintf ( "%t" , cfg . Experimental ) ,
2017-12-05 14:29:37 +00:00
} ,
} ,
} ,
// Populate deprecated fields for older clients
2016-11-02 17:04:39 +00:00
Version : dockerversion . Version ,
GitCommit : dockerversion . GitCommit ,
2017-12-05 14:29:37 +00:00
APIVersion : api . DefaultVersion ,
daemon: raise default minimum API version to v1.24
The daemon currently provides support for API versions all the way back
to v1.12, which is the version of the API that shipped with docker 1.0. On
Windows, the minimum supported version is v1.24.
Such old versions of the client are rare, and supporting older API versions
has accumulated significant amounts of code to remain backward-compatible
(which is largely untested, and a "best-effort" at most).
This patch updates the minimum API version to v1.24, which is the fallback
API version used when API-version negotiation fails. The intent is to start
deprecating older API versions, but no code is removed yet as part of this
patch, and a DOCKER_MIN_API_VERSION environment variable is added, which
allows overriding the minimum version (to allow restoring the behavior from
before this patch).
With this patch the daemon defaults to API v1.24 as minimum:
docker version
Client:
Version: 24.0.2
API version: 1.43
Go version: go1.20.4
Git commit: cb74dfc
Built: Thu May 25 21:50:49 2023
OS/Arch: linux/arm64
Context: default
Server:
Engine:
Version: dev
API version: 1.44 (minimum version 1.24)
Go version: go1.21.3
Git commit: 0322a29b9ef8806aaa4b45dc9d9a2ebcf0244bf4
Built: Mon Dec 4 15:22:17 2023
OS/Arch: linux/arm64
Experimental: false
containerd:
Version: v1.7.9
GitCommit: 4f03e100cb967922bec7459a78d16ccbac9bb81d
runc:
Version: 1.1.10
GitCommit: v1.1.10-0-g18a0cb0
docker-init:
Version: 0.19.0
GitCommit: de40ad0
Trying to use an older version of the API produces an error:
DOCKER_API_VERSION=1.23 docker version
Client:
Version: 24.0.2
API version: 1.23 (downgraded from 1.43)
Go version: go1.20.4
Git commit: cb74dfc
Built: Thu May 25 21:50:49 2023
OS/Arch: linux/arm64
Context: default
Error response from daemon: client version 1.23 is too old. Minimum supported API version is 1.24, please upgrade your client to a newer version
To restore the previous minimum, users can start the daemon with the
DOCKER_MIN_API_VERSION environment variable set:
DOCKER_MIN_API_VERSION=1.12 dockerd
API 1.12 is the oldest supported API version on Linux;
docker version
Client:
Version: 24.0.2
API version: 1.43
Go version: go1.20.4
Git commit: cb74dfc
Built: Thu May 25 21:50:49 2023
OS/Arch: linux/arm64
Context: default
Server:
Engine:
Version: dev
API version: 1.44 (minimum version 1.12)
Go version: go1.21.3
Git commit: 0322a29b9ef8806aaa4b45dc9d9a2ebcf0244bf4
Built: Mon Dec 4 15:22:17 2023
OS/Arch: linux/arm64
Experimental: false
containerd:
Version: v1.7.9
GitCommit: 4f03e100cb967922bec7459a78d16ccbac9bb81d
runc:
Version: 1.1.10
GitCommit: v1.1.10-0-g18a0cb0
docker-init:
Version: 0.19.0
GitCommit: de40ad0
When using the `DOCKER_MIN_API_VERSION` with a version of the API that
is not supported, an error is produced when starting the daemon;
DOCKER_MIN_API_VERSION=1.11 dockerd --validate
invalid DOCKER_MIN_API_VERSION: minimum supported API version is 1.12: 1.11
DOCKER_MIN_API_VERSION=1.45 dockerd --validate
invalid DOCKER_MIN_API_VERSION: maximum supported API version is 1.44: 1.45
Specifying a malformed API version also produces the same error;
DOCKER_MIN_API_VERSION=hello dockerd --validate
invalid DOCKER_MIN_API_VERSION: minimum supported API version is 1.12: hello
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2023-12-04 12:44:21 +00:00
MinAPIVersion : cfg . MinAPIVersion ,
2016-11-02 17:04:39 +00:00
GoVersion : runtime . Version ( ) ,
Os : runtime . GOOS ,
Arch : runtime . GOARCH ,
BuildTime : dockerversion . BuildTime ,
2017-12-05 14:29:37 +00:00
KernelVersion : kernelVersion ,
2022-08-17 21:13:49 +00:00
Experimental : cfg . Experimental ,
2015-12-03 18:11:19 +00:00
}
2017-12-05 14:29:37 +00:00
v . Platform . Name = dockerversion . PlatformName
2015-12-03 18:11:19 +00:00
2023-09-10 00:05:05 +00:00
if err := daemon . fillPlatformVersion ( ctx , & v , cfg ) ; err != nil {
return v , err
}
return v , nil
2015-12-03 18:11:19 +00:00
}
2023-07-03 11:14:14 +00:00
func ( daemon * Daemon ) fillDriverInfo ( v * system . Info ) {
2022-08-09 09:04:47 +00:00
v . Driver = daemon . imageService . StorageDriver ( )
v . DriverStatus = daemon . imageService . LayerStoreStatus ( )
daemon: require storage-driver to be set if the driver is deprecated
Previously, we only printed a warning if a storage driver was deprecated. The
intent was to continue supporting these drivers, to allow users to migrate
to a different storage driver.
This patch changes the behavior; if the user has no storage driver specified
in the daemon configuration (so if we try to detect the previous storage
driver based on what's present in /var/lib/docker), we now produce an error,
informing the user that the storage driver is deprecated (and to be removed),
as well as instructing them to change the daemon configuration to explicitly
select the storage driver (to allow them to migrate).
This should make the deprecation more visible; this will be disruptive, but
it's better to have the failure happening *now* (while the drivers are still
there), than for users to discover the storage driver is no longer there
(which would require them to *downgrade* the daemon in order to migrate
to a different driver).
With this change, `docker info` includes a link in the warnings that:
/ # docker info
Client:
Context: default
Debug Mode: false
Server:
...
Live Restore Enabled: false
WARNING: The overlay storage-driver is deprecated, and will be removed in a future release.
Refer to the documentation for more information: https://docs.docker.com/go/storage-driver/
When starting the daemon without a storage driver configured explicitly, but
previous state was using a deprecated driver, the error is both logged and
printed:
...
ERRO[2022-03-25T14:14:06.032014013Z] [graphdriver] prior storage driver overlay is deprecated and will be removed in a future release; update the the daemon configuration and explicitly choose this storage driver to continue using it; visit https://docs.docker.com/go/storage-driver/ for more information
...
failed to start daemon: error initializing graphdriver: prior storage driver overlay is deprecated and will be removed in a future release; update the the daemon configuration and explicitly choose this storage driver to continue using it; visit https://docs.docker.com/go/storage-driver/ for more information
When starting the daemon and explicitly configuring it with a deprecated storage
driver:
WARN[2022-03-25T14:15:59.042335412Z] [graphdriver] WARNING: the overlay storage-driver is deprecated and will be removed in a future release; visit https://docs.docker.com/go/storage-driver/ for more information
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-03-11 16:51:12 +00:00
const warnMsg = `
WARNING : The % s storage - driver is deprecated , and will be removed in a future release .
Refer to the documentation for more information : https : //docs.docker.com/go/storage-driver/`
2022-08-09 09:04:47 +00:00
switch v . Driver {
2022-05-24 15:17:08 +00:00
case "overlay" :
2022-08-09 09:04:47 +00:00
v . Warnings = append ( v . Warnings , fmt . Sprintf ( warnMsg , v . Driver ) )
2018-07-13 10:55:59 +00:00
}
2015-10-23 06:08:26 +00:00
2018-07-19 11:45:32 +00:00
fillDriverWarnings ( v )
2018-07-13 10:55:59 +00:00
}
2015-12-29 21:10:23 +00:00
2023-09-10 00:05:05 +00:00
func ( daemon * Daemon ) fillPluginsInfo ( ctx context . Context , v * system . Info , cfg * config . Config ) {
2023-07-03 11:14:14 +00:00
v . Plugins = system . PluginsInfo {
2018-07-13 10:55:59 +00:00
Volume : daemon . volumes . GetDriverList ( ) ,
2023-09-10 00:05:05 +00:00
Network : daemon . GetNetworkDriverList ( ctx ) ,
2018-07-13 10:55:59 +00:00
// The authorization plugins are returned in the order they are
// used as they constitute a request/response modification chain.
2022-08-17 21:13:49 +00:00
Authorization : cfg . AuthorizationPlugins ,
2018-07-13 10:55:59 +00:00
Log : logger . ListDrivers ( ) ,
}
}
2023-07-03 11:14:14 +00:00
func ( daemon * Daemon ) fillSecurityOptions ( v * system . Info , sysInfo * sysinfo . SysInfo , cfg * config . Config ) {
2018-07-13 10:55:59 +00:00
var securityOptions [ ] string
if sysInfo . AppArmor {
securityOptions = append ( securityOptions , "name=apparmor" )
}
if sysInfo . Seccomp && supportsSeccomp {
2021-07-07 11:09:54 +00:00
if daemon . seccompProfilePath != config . SeccompProfileDefault {
2021-06-07 16:41:21 +00:00
v . Warnings = append ( v . Warnings , "WARNING: daemon is not using the default seccomp profile" )
}
2021-07-07 11:09:54 +00:00
securityOptions = append ( securityOptions , "name=seccomp,profile=" + daemon . seccompProfilePath )
2018-07-13 10:55:59 +00:00
}
2020-12-14 10:46:58 +00:00
if selinux . GetEnabled ( ) {
2018-07-13 10:55:59 +00:00
securityOptions = append ( securityOptions , "name=selinux" )
}
2017-11-16 06:20:33 +00:00
if rootIDs := daemon . idMapping . RootPair ( ) ; rootIDs . UID != 0 || rootIDs . GID != 0 {
2018-07-13 10:55:59 +00:00
securityOptions = append ( securityOptions , "name=userns" )
}
2022-08-17 21:13:49 +00:00
if Rootless ( cfg ) {
2018-10-15 07:52:53 +00:00
securityOptions = append ( securityOptions , "name=rootless" )
}
2022-08-17 21:13:49 +00:00
if cgroupNamespacesEnabled ( sysInfo , cfg ) {
2019-03-15 03:44:18 +00:00
securityOptions = append ( securityOptions , "name=cgroupns" )
}
2022-08-17 21:13:49 +00:00
if noNewPrivileges ( cfg ) {
2023-04-13 11:27:59 +00:00
securityOptions = append ( securityOptions , "name=no-new-privileges" )
}
2019-03-15 03:44:18 +00:00
2018-07-13 10:55:59 +00:00
v . SecurityOptions = securityOptions
}
2023-07-03 11:14:14 +00:00
func ( daemon * Daemon ) fillContainerStates ( v * system . Info ) {
2022-02-15 18:19:30 +00:00
cRunning , cPaused , cStopped := stateCtr . get ( )
v . Containers = cRunning + cPaused + cStopped
v . ContainersPaused = cPaused
v . ContainersRunning = cRunning
v . ContainersStopped = cStopped
}
2022-03-02 11:52:29 +00:00
// fillDebugInfo sets the current debugging state of the daemon, and additional
// debugging information, such as the number of Go-routines, and file descriptors.
//
// Note that this currently always collects the information, but the CLI only
// prints it if the daemon has debug enabled. We should consider to either make
// this information optional (cli to request "with debugging information"), or
// only collect it if the daemon has debug enabled. For the CLI code, see
// https://github.com/docker/cli/blob/v20.10.12/cli/command/system/info.go#L239-L244
2023-09-10 00:05:05 +00:00
func ( daemon * Daemon ) fillDebugInfo ( ctx context . Context , v * system . Info ) {
2022-03-02 11:52:29 +00:00
v . Debug = debug . IsEnabled ( )
2023-09-10 00:05:05 +00:00
v . NFd = fileutils . GetTotalUsedFds ( ctx )
2022-03-02 11:52:29 +00:00
v . NGoroutines = runtime . NumGoroutine ( )
v . NEventsListener = daemon . EventsService . SubscribersCount ( )
}
2023-07-03 11:14:14 +00:00
func ( daemon * Daemon ) fillAPIInfo ( v * system . Info , cfg * config . Config ) {
2018-08-21 12:06:06 +00:00
const warn string = `
Access to the remote API is equivalent to root access on the host . Refer
to the ' Docker daemon attack surface ' section in the documentation for
2021-02-25 11:11:50 +00:00
more information : https : //docs.docker.com/go/attack-surface/`
2018-08-21 12:06:06 +00:00
for _ , host := range cfg . Hosts {
// cnf.Hosts is normalized during startup, so should always have a scheme/proto
2022-11-01 11:52:44 +00:00
proto , addr , _ := strings . Cut ( host , "://" )
2018-08-21 12:06:06 +00:00
if proto != "tcp" {
continue
}
2024-03-13 11:17:37 +00:00
const removal = "In future versions this will be a hard failure preventing the daemon from starting! Learn more at: https://docs.docker.com/go/api-security/"
2020-07-28 23:01:08 +00:00
if cfg . TLS == nil || ! * cfg . TLS {
2024-03-13 11:17:37 +00:00
v . Warnings = append ( v . Warnings , fmt . Sprintf ( "[DEPRECATION NOTICE]: API is accessible on http://%s without encryption.%s\n%s" , addr , warn , removal ) )
2018-08-21 12:06:06 +00:00
continue
}
2020-07-28 23:01:08 +00:00
if cfg . TLSVerify == nil || ! * cfg . TLSVerify {
2024-03-13 11:17:37 +00:00
v . Warnings = append ( v . Warnings , fmt . Sprintf ( "[DEPRECATION NOTICE]: API is accessible on https://%s without TLS client verification.%s\n%s" , addr , warn , removal ) )
2018-08-21 12:06:06 +00:00
continue
}
}
}
2023-09-10 00:05:05 +00:00
func ( daemon * Daemon ) fillDefaultAddressPools ( ctx context . Context , v * system . Info , cfg * config . Config ) {
_ , span := tracing . StartSpan ( ctx , "fillDefaultAddressPools" )
defer span . End ( )
2022-08-17 21:13:49 +00:00
for _ , pool := range cfg . DefaultAddressPools . Value ( ) {
2023-07-03 11:14:14 +00:00
v . DefaultAddressPools = append ( v . DefaultAddressPools , system . NetworkAddressPool {
2020-07-07 03:17:51 +00:00
Base : pool . Base ,
Size : pool . Size ,
} )
}
}
2023-09-10 00:05:05 +00:00
func hostName ( ctx context . Context ) string {
ctx , span := tracing . StartSpan ( ctx , "hostName" )
defer span . End ( )
2018-07-13 10:55:59 +00:00
hostname := ""
if hn , err := os . Hostname ( ) ; err != nil {
2023-09-10 00:05:05 +00:00
log . G ( ctx ) . Warnf ( "Could not get hostname: %v" , err )
2018-07-13 10:55:59 +00:00
} else {
hostname = hn
}
return hostname
}
2023-09-10 00:05:05 +00:00
func kernelVersion ( ctx context . Context ) string {
ctx , span := tracing . StartSpan ( ctx , "kernelVersion" )
defer span . End ( )
2018-07-16 14:07:47 +00:00
var kernelVersion string
2018-07-13 10:55:59 +00:00
if kv , err := kernel . GetKernelVersion ( ) ; err != nil {
2023-09-10 00:05:05 +00:00
log . G ( ctx ) . Warnf ( "Could not get kernel version: %v" , err )
2018-07-13 10:55:59 +00:00
} else {
kernelVersion = kv . String ( )
}
return kernelVersion
}
2023-09-10 00:05:05 +00:00
func memInfo ( ctx context . Context ) * meminfo . Memory {
ctx , span := tracing . StartSpan ( ctx , "memInfo" )
defer span . End ( )
2023-03-14 22:21:27 +00:00
memInfo , err := meminfo . Read ( )
2018-07-13 10:55:59 +00:00
if err != nil {
2023-09-10 00:05:05 +00:00
log . G ( ctx ) . Errorf ( "Could not read system memory info: %v" , err )
2023-03-14 22:21:27 +00:00
memInfo = & meminfo . Memory { }
2018-07-13 10:55:59 +00:00
}
return memInfo
}
2023-09-10 00:05:05 +00:00
func operatingSystem ( ctx context . Context ) ( operatingSystem string ) {
ctx , span := tracing . StartSpan ( ctx , "operatingSystem" )
defer span . End ( )
2019-05-30 16:51:41 +00:00
defer metrics . StartTimer ( hostInfoFunctions . WithValues ( "operating_system" ) ) ( )
2018-07-13 10:55:59 +00:00
if s , err := operatingsystem . GetOperatingSystem ( ) ; err != nil {
2023-09-10 00:05:05 +00:00
log . G ( ctx ) . Warnf ( "Could not get operating system name: %v" , err )
2018-07-13 10:55:59 +00:00
} else {
operatingSystem = s
}
2022-02-17 17:25:38 +00:00
if inContainer , err := operatingsystem . IsContainerized ( ) ; err != nil {
2023-09-10 00:05:05 +00:00
log . G ( ctx ) . Errorf ( "Could not determine if daemon is containerized: %v" , err )
2022-02-17 17:25:38 +00:00
operatingSystem += " (error determining if containerized)"
} else if inContainer {
operatingSystem += " (containerized)"
2018-07-13 10:55:59 +00:00
}
2019-05-30 16:51:41 +00:00
2018-07-13 10:55:59 +00:00
return operatingSystem
2015-10-23 06:08:26 +00:00
}
2018-09-27 02:43:26 +00:00
2023-09-10 00:05:05 +00:00
func osVersion ( ctx context . Context ) ( version string ) {
ctx , span := tracing . StartSpan ( ctx , "osVersion" )
defer span . End ( )
2019-05-30 16:51:41 +00:00
defer metrics . StartTimer ( hostInfoFunctions . WithValues ( "os_version" ) ) ( )
version , err := operatingsystem . GetOperatingSystemVersion ( )
if err != nil {
2023-09-10 00:05:05 +00:00
log . G ( ctx ) . Warnf ( "Could not get operating system version: %v" , err )
2019-05-30 16:51:41 +00:00
}
return version
}
2019-09-25 08:56:41 +00:00
func getEnvAny ( names ... string ) string {
for _ , n := range names {
if val := os . Getenv ( n ) ; val != "" {
return val
}
}
return ""
}
2021-07-16 07:33:00 +00:00
func getConfigOrEnv ( config string , env ... string ) string {
if config != "" {
return config
}
return getEnvAny ( env ... )
}
2023-07-17 23:50:08 +00:00
2023-12-21 21:07:38 +00:00
// promoteNil converts a nil slice to an empty slice.
2023-07-17 23:50:08 +00:00
// A non-nil slice is returned as is.
2023-12-21 21:07:38 +00:00
//
// TODO: make generic again once we are a go module,
// go.dev/issue/64759 is fixed, or we drop support for Go 1.21.
func promoteNil ( s [ ] string ) [ ] string {
2023-07-17 23:50:08 +00:00
if s == nil {
2023-12-21 21:07:38 +00:00
return [ ] string { }
2023-07-17 23:50:08 +00:00
}
return s
}