| package registry // import "github.com/docker/docker/registry" |
| |
| import ( |
| "context" |
| "net" |
| "net/url" |
| "os" |
| "path/filepath" |
| "strconv" |
| "strings" |
| "sync" |
| |
| "github.com/containerd/log" |
| "github.com/distribution/reference" |
| "github.com/docker/docker/api/types/registry" |
| "github.com/docker/docker/internal/lazyregexp" |
| "github.com/docker/docker/pkg/homedir" |
| ) |
| |
| // ServiceOptions holds command line options. |
| type ServiceOptions struct { |
| Mirrors []string `json:"registry-mirrors,omitempty"` |
| InsecureRegistries []string `json:"insecure-registries,omitempty"` |
| } |
| |
| // serviceConfig holds daemon configuration for the registry service. |
| type serviceConfig registry.ServiceConfig |
| |
| // TODO(thaJeztah) both the "index.docker.io" and "registry-1.docker.io" domains |
| // are here for historic reasons and backward-compatibility. These domains |
| // are still supported by Docker Hub (and will continue to be supported), but |
| // there are new domains already in use, and plans to consolidate all legacy |
| // domains to new "canonical" domains. Once those domains are decided on, we |
| // should update these consts (but making sure to preserve compatibility with |
| // existing installs, clients, and user configuration). |
| const ( |
| // DefaultNamespace is the default namespace |
| DefaultNamespace = "docker.io" |
| // DefaultRegistryHost is the hostname for the default (Docker Hub) registry |
| // used for pushing and pulling images. This hostname is hard-coded to handle |
| // the conversion from image references without registry name (e.g. "ubuntu", |
| // or "ubuntu:latest"), as well as references using the "docker.io" domain |
| // name, which is used as canonical reference for images on Docker Hub, but |
| // does not match the domain-name of Docker Hub's registry. |
| DefaultRegistryHost = "registry-1.docker.io" |
| // IndexHostname is the index hostname, used for authentication and image search. |
| IndexHostname = "index.docker.io" |
| // IndexServer is used for user auth and image search |
| IndexServer = "https://" + IndexHostname + "/v1/" |
| // IndexName is the name of the index |
| IndexName = "docker.io" |
| ) |
| |
| var ( |
| // DefaultV2Registry is the URI of the default (Docker Hub) registry. |
| DefaultV2Registry = &url.URL{ |
| Scheme: "https", |
| Host: DefaultRegistryHost, |
| } |
| |
| validHostPortRegex = lazyregexp.New(`^` + reference.DomainRegexp.String() + `$`) |
| |
| // certsDir is used to override defaultCertsDir when running with rootlessKit. |
| // |
| // TODO(thaJeztah): change to a sync.OnceValue once we remove [SetCertsDir] |
| // TODO(thaJeztah): certsDir should not be a package variable, but stored in our config, and passed when needed. |
| setCertsDirOnce sync.Once |
| certsDir string |
| ) |
| |
| func setCertsDir(dir string) string { |
| setCertsDirOnce.Do(func() { |
| if dir != "" { |
| certsDir = dir |
| return |
| } |
| if os.Getenv("ROOTLESSKIT_STATE_DIR") != "" { |
| // Configure registry.CertsDir() when running in rootless-mode |
| // This is the equivalent of [rootless.RunningWithRootlessKit], |
| // but inlining it to prevent adding that as a dependency |
| // for docker/cli. |
| // |
| // [rootless.RunningWithRootlessKit]: https://github.com/moby/moby/blob/b4bdf12daec84caaf809a639f923f7370d4926ad/pkg/rootless/rootless.go#L5-L8 |
| if configHome, _ := homedir.GetConfigHome(); configHome != "" { |
| certsDir = filepath.Join(configHome, "docker/certs.d") |
| return |
| } |
| } |
| certsDir = defaultCertsDir |
| }) |
| return certsDir |
| } |
| |
| // SetCertsDir allows the default certs directory to be changed. This function |
| // is used at daemon startup to set the correct location when running in |
| // rootless mode. |
| // |
| // Deprecated: the cert-directory is now automatically selected when running with rootlessKit, and should no longer be set manually. |
| func SetCertsDir(path string) { |
| setCertsDir(path) |
| } |
| |
| // CertsDir is the directory where certificates are stored. |
| func CertsDir() string { |
| // call setCertsDir with an empty path to synchronise with [SetCertsDir] |
| return setCertsDir("") |
| } |
| |
| // newServiceConfig returns a new instance of ServiceConfig |
| func newServiceConfig(options ServiceOptions) (*serviceConfig, error) { |
| config := &serviceConfig{} |
| if err := config.loadMirrors(options.Mirrors); err != nil { |
| return nil, err |
| } |
| if err := config.loadInsecureRegistries(options.InsecureRegistries); err != nil { |
| return nil, err |
| } |
| |
| return config, nil |
| } |
| |
| // copy constructs a new ServiceConfig with a copy of the configuration in config. |
| func (config *serviceConfig) copy() *registry.ServiceConfig { |
| ic := make(map[string]*registry.IndexInfo) |
| for key, value := range config.IndexConfigs { |
| ic[key] = value |
| } |
| return ®istry.ServiceConfig{ |
| InsecureRegistryCIDRs: append([]*registry.NetIPNet(nil), config.InsecureRegistryCIDRs...), |
| IndexConfigs: ic, |
| Mirrors: append([]string(nil), config.Mirrors...), |
| } |
| } |
| |
| // loadMirrors loads mirrors to config, after removing duplicates. |
| // Returns an error if mirrors contains an invalid mirror. |
| func (config *serviceConfig) loadMirrors(mirrors []string) error { |
| mMap := map[string]struct{}{} |
| unique := []string{} |
| |
| for _, mirror := range mirrors { |
| m, err := ValidateMirror(mirror) |
| if err != nil { |
| return err |
| } |
| if _, exist := mMap[m]; !exist { |
| mMap[m] = struct{}{} |
| unique = append(unique, m) |
| } |
| } |
| |
| config.Mirrors = unique |
| |
| // Configure public registry since mirrors may have changed. |
| config.IndexConfigs = map[string]*registry.IndexInfo{ |
| IndexName: { |
| Name: IndexName, |
| Mirrors: unique, |
| Secure: true, |
| Official: true, |
| }, |
| } |
| |
| return nil |
| } |
| |
| // loadInsecureRegistries loads insecure registries to config |
| func (config *serviceConfig) loadInsecureRegistries(registries []string) error { |
| // Localhost is by default considered as an insecure registry. This is a |
| // stop-gap for people who are running a private registry on localhost. |
| registries = append(registries, "::1/128", "127.0.0.0/8") |
| |
| var ( |
| insecureRegistryCIDRs = make([]*registry.NetIPNet, 0) |
| indexConfigs = make(map[string]*registry.IndexInfo) |
| ) |
| |
| skip: |
| for _, r := range registries { |
| // validate insecure registry |
| if _, err := ValidateIndexName(r); err != nil { |
| return err |
| } |
| if strings.HasPrefix(strings.ToLower(r), "http://") { |
| log.G(context.TODO()).Warnf("insecure registry %s should not contain 'http://' and 'http://' has been removed from the insecure registry config", r) |
| r = r[7:] |
| } else if strings.HasPrefix(strings.ToLower(r), "https://") { |
| log.G(context.TODO()).Warnf("insecure registry %s should not contain 'https://' and 'https://' has been removed from the insecure registry config", r) |
| r = r[8:] |
| } else if hasScheme(r) { |
| return invalidParamf("insecure registry %s should not contain '://'", r) |
| } |
| // Check if CIDR was passed to --insecure-registry |
| _, ipnet, err := net.ParseCIDR(r) |
| if err == nil { |
| // Valid CIDR. If ipnet is already in config.InsecureRegistryCIDRs, skip. |
| data := (*registry.NetIPNet)(ipnet) |
| for _, value := range insecureRegistryCIDRs { |
| if value.IP.String() == data.IP.String() && value.Mask.String() == data.Mask.String() { |
| continue skip |
| } |
| } |
| // ipnet is not found, add it in config.InsecureRegistryCIDRs |
| insecureRegistryCIDRs = append(insecureRegistryCIDRs, data) |
| } else { |
| if err := validateHostPort(r); err != nil { |
| return invalidParamWrapf(err, "insecure registry %s is not valid", r) |
| } |
| // Assume `host:port` if not CIDR. |
| indexConfigs[r] = ®istry.IndexInfo{ |
| Name: r, |
| Mirrors: []string{}, |
| Secure: false, |
| Official: false, |
| } |
| } |
| } |
| |
| // Configure public registry. |
| indexConfigs[IndexName] = ®istry.IndexInfo{ |
| Name: IndexName, |
| Mirrors: config.Mirrors, |
| Secure: true, |
| Official: true, |
| } |
| config.InsecureRegistryCIDRs = insecureRegistryCIDRs |
| config.IndexConfigs = indexConfigs |
| |
| return nil |
| } |
| |
| // isSecureIndex returns false if the provided indexName is part of the list of insecure registries |
| // Insecure registries accept HTTP and/or accept HTTPS with certificates from unknown CAs. |
| // |
| // The list of insecure registries can contain an element with CIDR notation to specify a whole subnet. |
| // If the subnet contains one of the IPs of the registry specified by indexName, the latter is considered |
| // insecure. |
| // |
| // indexName should be a URL.Host (`host:port` or `host`) where the `host` part can be either a domain name |
| // or an IP address. If it is a domain name, then it will be resolved in order to check if the IP is contained |
| // in a subnet. If the resolving is not successful, isSecureIndex will only try to match hostname to any element |
| // of insecureRegistries. |
| func (config *serviceConfig) isSecureIndex(indexName string) bool { |
| // Check for configured index, first. This is needed in case isSecureIndex |
| // is called from anything besides newIndexInfo, in order to honor per-index configurations. |
| if index, ok := config.IndexConfigs[indexName]; ok { |
| return index.Secure |
| } |
| |
| return !isCIDRMatch(config.InsecureRegistryCIDRs, indexName) |
| } |
| |
| // for mocking in unit tests. |
| var lookupIP = net.LookupIP |
| |
| // isCIDRMatch returns true if URLHost matches an element of cidrs. URLHost is a URL.Host (`host:port` or `host`) |
| // where the `host` part can be either a domain name or an IP address. If it is a domain name, then it will be |
| // resolved to IP addresses for matching. If resolution fails, false is returned. |
| func isCIDRMatch(cidrs []*registry.NetIPNet, URLHost string) bool { |
| if len(cidrs) == 0 { |
| return false |
| } |
| |
| host, _, err := net.SplitHostPort(URLHost) |
| if err != nil { |
| // Assume URLHost is a host without port and go on. |
| host = URLHost |
| } |
| |
| var addresses []net.IP |
| if ip := net.ParseIP(host); ip != nil { |
| // Host is an IP-address. |
| addresses = append(addresses, ip) |
| } else { |
| // Try to resolve the host's IP-address. |
| addresses, err = lookupIP(host) |
| if err != nil { |
| // We failed to resolve the host; assume there's no match. |
| return false |
| } |
| } |
| |
| for _, addr := range addresses { |
| for _, ipnet := range cidrs { |
| // check if the addr falls in the subnet |
| if (*net.IPNet)(ipnet).Contains(addr) { |
| return true |
| } |
| } |
| } |
| |
| return false |
| } |
| |
| // ValidateMirror validates and normalizes an HTTP(S) registry mirror. It |
| // returns an error if the given mirrorURL is invalid, or the normalized |
| // format for the URL otherwise. |
| // |
| // It is used by the daemon to validate the daemon configuration. |
| func ValidateMirror(mirrorURL string) (string, error) { |
| uri, err := url.Parse(mirrorURL) |
| if err != nil { |
| return "", invalidParamWrapf(err, "invalid mirror: %q is not a valid URI", mirrorURL) |
| } |
| if uri.Scheme != "http" && uri.Scheme != "https" { |
| return "", invalidParamf("invalid mirror: unsupported scheme %q in %q", uri.Scheme, uri) |
| } |
| if uri.RawQuery != "" || uri.Fragment != "" { |
| return "", invalidParamf("invalid mirror: query or fragment at end of the URI %q", uri) |
| } |
| if uri.User != nil { |
| // strip password from output |
| uri.User = url.UserPassword(uri.User.Username(), "xxxxx") |
| return "", invalidParamf("invalid mirror: username/password not allowed in URI %q", uri) |
| } |
| return strings.TrimSuffix(mirrorURL, "/") + "/", nil |
| } |
| |
| // ValidateIndexName validates an index name. It is used by the daemon to |
| // validate the daemon configuration. |
| func ValidateIndexName(val string) (string, error) { |
| val = normalizeIndexName(val) |
| if strings.HasPrefix(val, "-") || strings.HasSuffix(val, "-") { |
| return "", invalidParamf("invalid index name (%s). Cannot begin or end with a hyphen", val) |
| } |
| return val, nil |
| } |
| |
| func normalizeIndexName(val string) string { |
| // TODO(thaJeztah): consider normalizing other known options, such as "(https://)registry-1.docker.io", "https://index.docker.io/v1/". |
| // TODO: upstream this to check to reference package |
| if val == "index.docker.io" { |
| return "docker.io" |
| } |
| return val |
| } |
| |
| func hasScheme(reposName string) bool { |
| return strings.Contains(reposName, "://") |
| } |
| |
| func validateHostPort(s string) error { |
| // Split host and port, and in case s can not be split, assume host only |
| host, port, err := net.SplitHostPort(s) |
| if err != nil { |
| host = s |
| port = "" |
| } |
| // If match against the `host:port` pattern fails, |
| // it might be `IPv6:port`, which will be captured by net.ParseIP(host) |
| if !validHostPortRegex.MatchString(s) && net.ParseIP(host) == nil { |
| return invalidParamf("invalid host %q", host) |
| } |
| if port != "" { |
| v, err := strconv.Atoi(port) |
| if err != nil { |
| return err |
| } |
| if v < 0 || v > 65535 { |
| return invalidParamf("invalid port %q", port) |
| } |
| } |
| return nil |
| } |
| |
| // newIndexInfo returns IndexInfo configuration from indexName |
| func newIndexInfo(config *serviceConfig, indexName string) *registry.IndexInfo { |
| indexName = normalizeIndexName(indexName) |
| |
| // Return any configured index info, first. |
| if index, ok := config.IndexConfigs[indexName]; ok { |
| return index |
| } |
| |
| // Construct a non-configured index info. |
| return ®istry.IndexInfo{ |
| Name: indexName, |
| Mirrors: []string{}, |
| Secure: config.isSecureIndex(indexName), |
| } |
| } |
| |
| // GetAuthConfigKey special-cases using the full index address of the official |
| // index as the AuthConfig key, and uses the (host)name[:port] for private indexes. |
| func GetAuthConfigKey(index *registry.IndexInfo) string { |
| if index.Official { |
| return IndexServer |
| } |
| return index.Name |
| } |
| |
| // newRepositoryInfo validates and breaks down a repository name into a RepositoryInfo |
| func newRepositoryInfo(config *serviceConfig, name reference.Named) *RepositoryInfo { |
| index := newIndexInfo(config, reference.Domain(name)) |
| var officialRepo bool |
| if index.Official { |
| // RepositoryInfo.Official indicates whether the image repository |
| // is an official (docker library official images) repository. |
| // |
| // We only need to check this if the image-repository is on Docker Hub. |
| officialRepo = !strings.ContainsRune(reference.FamiliarName(name), '/') |
| } |
| |
| return &RepositoryInfo{ |
| Name: reference.TrimNamed(name), |
| Index: index, |
| Official: officialRepo, |
| } |
| } |
| |
| // ParseRepositoryInfo performs the breakdown of a repository name into a |
| // [RepositoryInfo], but lacks registry configuration. |
| // |
| // It is used by the Docker cli to interact with registry-related endpoints. |
| func ParseRepositoryInfo(reposName reference.Named) (*RepositoryInfo, error) { |
| indexName := normalizeIndexName(reference.Domain(reposName)) |
| if indexName == IndexName { |
| return &RepositoryInfo{ |
| Name: reference.TrimNamed(reposName), |
| Index: ®istry.IndexInfo{ |
| Name: IndexName, |
| Mirrors: []string{}, |
| Secure: true, |
| Official: true, |
| }, |
| Official: !strings.ContainsRune(reference.FamiliarName(reposName), '/'), |
| }, nil |
| } |
| |
| return &RepositoryInfo{ |
| Name: reference.TrimNamed(reposName), |
| Index: ®istry.IndexInfo{ |
| Name: indexName, |
| Mirrors: []string{}, |
| Secure: !isInsecure(indexName), |
| }, |
| }, nil |
| } |
| |
| // isInsecure is used to detect whether a registry domain or IP-address is allowed |
| // to use an insecure (non-TLS, or self-signed cert) connection according to the |
| // defaults, which allows for insecure connections with registries running on a |
| // loopback address ("localhost", "::1/128", "127.0.0.0/8"). |
| // |
| // It is used in situations where we don't have access to the daemon's configuration, |
| // for example, when used from the client / CLI. |
| func isInsecure(hostNameOrIP string) bool { |
| // Attempt to strip port if present; this also strips brackets for |
| // IPv6 addresses with a port (e.g. "[::1]:5000"). |
| // |
| // This is best-effort; we'll continue using the address as-is if it fails. |
| if host, _, err := net.SplitHostPort(hostNameOrIP); err == nil { |
| hostNameOrIP = host |
| } |
| if hostNameOrIP == "127.0.0.1" || hostNameOrIP == "::1" || strings.EqualFold(hostNameOrIP, "localhost") { |
| // Fast path; no need to resolve these, assuming nobody overrides |
| // "localhost" for anything else than a loopback address (sorry, not sorry). |
| return true |
| } |
| |
| var addresses []net.IP |
| if ip := net.ParseIP(hostNameOrIP); ip != nil { |
| addresses = append(addresses, ip) |
| } else { |
| // Try to resolve the host's IP-addresses. |
| addrs, _ := lookupIP(hostNameOrIP) |
| addresses = append(addresses, addrs...) |
| } |
| |
| for _, addr := range addresses { |
| if addr.IsLoopback() { |
| return true |
| } |
| } |
| return false |
| } |