123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- // +build !windows
- package main
- import (
- "fmt"
- "net"
- "os"
- "os/signal"
- "path/filepath"
- "strconv"
- "github.com/containerd/containerd/linux"
- "github.com/docker/docker/cmd/dockerd/hack"
- "github.com/docker/docker/daemon"
- "github.com/docker/docker/libcontainerd"
- "github.com/docker/docker/pkg/parsers/kernel"
- "github.com/docker/libnetwork/portallocator"
- "golang.org/x/sys/unix"
- )
- const defaultDaemonConfigFile = "/etc/docker/daemon.json"
- // setDefaultUmask sets the umask to 0022 to avoid problems
- // caused by custom umask
- func setDefaultUmask() error {
- desiredUmask := 0022
- unix.Umask(desiredUmask)
- if umask := unix.Umask(desiredUmask); umask != desiredUmask {
- return fmt.Errorf("failed to set umask: expected %#o, got %#o", desiredUmask, umask)
- }
- return nil
- }
- func getDaemonConfDir(_ string) string {
- return "/etc/docker"
- }
- func (cli *DaemonCli) getPlatformRemoteOptions() ([]libcontainerd.RemoteOption, error) {
- // On older kernel, letting putting the containerd-shim in its own
- // namespace will effectively prevent operations such as unlink, rename
- // and remove on mountpoints that were present at the time the shim
- // namespace was created. This would led to a famous EBUSY will trying to
- // remove shm mounts.
- var noNewNS bool
- if !kernel.CheckKernelVersion(3, 18, 0) {
- noNewNS = true
- }
- opts := []libcontainerd.RemoteOption{
- libcontainerd.WithOOMScore(cli.Config.OOMScoreAdjust),
- libcontainerd.WithPlugin("linux", &linux.Config{
- Shim: daemon.DefaultShimBinary,
- Runtime: daemon.DefaultRuntimeBinary,
- RuntimeRoot: filepath.Join(cli.Config.Root, "runc"),
- ShimDebug: cli.Config.Debug,
- ShimNoMountNS: noNewNS,
- }),
- }
- if cli.Config.Debug {
- opts = append(opts, libcontainerd.WithLogLevel("debug"))
- }
- if cli.Config.ContainerdAddr != "" {
- opts = append(opts, libcontainerd.WithRemoteAddr(cli.Config.ContainerdAddr))
- } else {
- opts = append(opts, libcontainerd.WithStartDaemon(true))
- }
- return opts, nil
- }
- // setupConfigReloadTrap configures the USR2 signal to reload the configuration.
- func (cli *DaemonCli) setupConfigReloadTrap() {
- c := make(chan os.Signal, 1)
- signal.Notify(c, unix.SIGHUP)
- go func() {
- for range c {
- cli.reloadConfig()
- }
- }()
- }
- // getSwarmRunRoot gets the root directory for swarm to store runtime state
- // For example, the control socket
- func (cli *DaemonCli) getSwarmRunRoot() string {
- return filepath.Join(cli.Config.ExecRoot, "swarm")
- }
- // allocateDaemonPort ensures that there are no containers
- // that try to use any port allocated for the docker server.
- func allocateDaemonPort(addr string) error {
- host, port, err := net.SplitHostPort(addr)
- if err != nil {
- return err
- }
- intPort, err := strconv.Atoi(port)
- if err != nil {
- return err
- }
- var hostIPs []net.IP
- if parsedIP := net.ParseIP(host); parsedIP != nil {
- hostIPs = append(hostIPs, parsedIP)
- } else if hostIPs, err = net.LookupIP(host); err != nil {
- return fmt.Errorf("failed to lookup %s address in host specification", host)
- }
- pa := portallocator.Get()
- for _, hostIP := range hostIPs {
- if _, err := pa.RequestPort(hostIP, "tcp", intPort); err != nil {
- return fmt.Errorf("failed to allocate daemon listening port %d (err: %v)", intPort, err)
- }
- }
- return nil
- }
- // notifyShutdown is called after the daemon shuts down but before the process exits.
- func notifyShutdown(err error) {
- }
- func wrapListeners(proto string, ls []net.Listener) []net.Listener {
- switch proto {
- case "unix":
- ls[0] = &hack.MalformedHostHeaderOverride{ls[0]}
- case "fd":
- for i := range ls {
- ls[i] = &hack.MalformedHostHeaderOverride{ls[i]}
- }
- }
- return ls
- }
|