2014-04-27 18:06:09 -04:00
|
|
|
package registry
|
|
|
|
|
2015-05-15 21:35:04 -04:00
|
|
|
import (
|
2015-02-12 13:23:22 -05:00
|
|
|
"crypto/tls"
|
2015-05-15 21:35:04 -04:00
|
|
|
"net/http"
|
2015-07-21 17:10:34 -04:00
|
|
|
"net/url"
|
2015-11-18 17:20:54 -05:00
|
|
|
"strings"
|
2015-05-15 21:35:04 -04:00
|
|
|
|
2015-12-04 16:55:15 -05:00
|
|
|
"github.com/docker/docker/reference"
|
2016-01-04 19:05:26 -05:00
|
|
|
"github.com/docker/engine-api/types"
|
|
|
|
registrytypes "github.com/docker/engine-api/types/registry"
|
2015-05-15 21:35:04 -04:00
|
|
|
)
|
2015-04-22 08:06:58 -04:00
|
|
|
|
2015-07-21 15:40:36 -04:00
|
|
|
// Service is a registry service. It tracks configuration data such as a list
|
|
|
|
// of mirrors.
|
2014-04-27 18:06:09 -04:00
|
|
|
type Service struct {
|
2015-12-11 21:14:52 -05:00
|
|
|
Config *registrytypes.ServiceConfig
|
2014-04-27 18:06:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewService returns a new instance of Service ready to be
|
2015-07-21 15:40:36 -04:00
|
|
|
// installed into an engine.
|
2014-10-06 21:54:52 -04:00
|
|
|
func NewService(options *Options) *Service {
|
2014-08-20 11:31:24 -04:00
|
|
|
return &Service{
|
2014-10-06 21:54:52 -04:00
|
|
|
Config: NewServiceConfig(options),
|
2014-08-20 11:31:24 -04:00
|
|
|
}
|
2014-04-27 18:06:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Auth contacts the public registry with the provided credentials,
|
2015-08-07 18:24:18 -04:00
|
|
|
// and returns OK if authentication was successful.
|
2014-04-27 18:06:09 -04:00
|
|
|
// It can be used to verify the validity of a client's credentials.
|
2016-01-04 13:36:01 -05:00
|
|
|
func (s *Service) Auth(authConfig *types.AuthConfig, userAgent string) (string, error) {
|
2014-12-11 20:55:15 -05:00
|
|
|
addr := authConfig.ServerAddress
|
|
|
|
if addr == "" {
|
|
|
|
// Use the official registry address if not specified.
|
2015-07-21 15:40:36 -04:00
|
|
|
addr = IndexServer
|
2014-04-27 18:06:09 -04:00
|
|
|
}
|
2015-03-31 19:21:37 -04:00
|
|
|
index, err := s.ResolveIndex(addr)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
2014-04-27 18:06:09 -04:00
|
|
|
}
|
2015-09-16 13:42:17 -04:00
|
|
|
|
|
|
|
endpointVersion := APIVersion(APIVersionUnknown)
|
|
|
|
if V2Only {
|
|
|
|
// Override the endpoint to only attempt a v2 ping
|
|
|
|
endpointVersion = APIVersion2
|
|
|
|
}
|
|
|
|
|
2016-01-04 13:36:01 -05:00
|
|
|
endpoint, err := NewEndpoint(index, userAgent, nil, endpointVersion)
|
2015-03-31 19:21:37 -04:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
2014-12-11 20:55:15 -05:00
|
|
|
}
|
|
|
|
authConfig.ServerAddress = endpoint.String()
|
2015-05-14 10:12:54 -04:00
|
|
|
return Login(authConfig, endpoint)
|
2014-04-27 18:06:09 -04:00
|
|
|
}
|
2014-04-27 18:21:42 -04:00
|
|
|
|
2015-11-18 17:20:54 -05:00
|
|
|
// splitReposSearchTerm breaks a search term into an index name and remote name
|
|
|
|
func splitReposSearchTerm(reposName string) (string, string) {
|
|
|
|
nameParts := strings.SplitN(reposName, "/", 2)
|
|
|
|
var indexName, remoteName string
|
|
|
|
if len(nameParts) == 1 || (!strings.Contains(nameParts[0], ".") &&
|
|
|
|
!strings.Contains(nameParts[0], ":") && nameParts[0] != "localhost") {
|
|
|
|
// This is a Docker Index repos (ex: samalba/hipache or ubuntu)
|
|
|
|
// 'docker.io'
|
|
|
|
indexName = IndexName
|
|
|
|
remoteName = reposName
|
|
|
|
} else {
|
|
|
|
indexName = nameParts[0]
|
|
|
|
remoteName = nameParts[1]
|
|
|
|
}
|
|
|
|
return indexName, remoteName
|
|
|
|
}
|
|
|
|
|
2014-04-27 18:21:42 -04:00
|
|
|
// Search queries the public registry for images matching the specified
|
|
|
|
// search terms, and returns the results.
|
2016-01-04 13:36:01 -05:00
|
|
|
func (s *Service) Search(term string, authConfig *types.AuthConfig, userAgent string, headers map[string][]string) (*registrytypes.SearchResults, error) {
|
2015-11-18 17:20:54 -05:00
|
|
|
if err := validateNoSchema(term); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
indexName, remoteName := splitReposSearchTerm(term)
|
2015-09-22 07:44:40 -04:00
|
|
|
|
2015-12-11 21:14:52 -05:00
|
|
|
index, err := newIndexInfo(s.Config, indexName)
|
2014-08-09 03:16:54 -04:00
|
|
|
if err != nil {
|
2015-03-31 19:21:37 -04:00
|
|
|
return nil, err
|
2014-08-09 03:16:54 -04:00
|
|
|
}
|
2015-05-14 10:12:54 -04:00
|
|
|
|
2014-10-06 21:54:52 -04:00
|
|
|
// *TODO: Search multiple indexes.
|
2016-01-04 13:36:01 -05:00
|
|
|
endpoint, err := NewEndpoint(index, userAgent, http.Header(headers), APIVersionUnknown)
|
2014-08-09 03:16:54 -04:00
|
|
|
if err != nil {
|
2015-03-31 19:21:37 -04:00
|
|
|
return nil, err
|
2014-04-27 18:21:42 -04:00
|
|
|
}
|
2015-09-16 13:42:17 -04:00
|
|
|
|
2015-05-15 21:35:04 -04:00
|
|
|
r, err := NewSession(endpoint.client, authConfig, endpoint)
|
2014-04-27 18:21:42 -04:00
|
|
|
if err != nil {
|
2015-03-31 19:21:37 -04:00
|
|
|
return nil, err
|
2014-04-27 18:21:42 -04:00
|
|
|
}
|
2014-10-06 21:54:52 -04:00
|
|
|
|
2015-11-18 17:20:54 -05:00
|
|
|
if index.Official {
|
|
|
|
localName := remoteName
|
|
|
|
if strings.HasPrefix(localName, "library/") {
|
|
|
|
// If pull "library/foo", it's stored locally under "foo"
|
|
|
|
localName = strings.SplitN(localName, "/", 2)[1]
|
|
|
|
}
|
|
|
|
|
|
|
|
return r.SearchRepositories(localName)
|
|
|
|
}
|
|
|
|
return r.SearchRepositories(remoteName)
|
2015-09-22 07:44:40 -04:00
|
|
|
}
|
|
|
|
|
2015-11-18 17:20:54 -05:00
|
|
|
// ResolveRepository splits a repository name into its components
|
2015-09-22 07:44:40 -04:00
|
|
|
// and configuration of the associated registry.
|
2015-11-18 17:20:54 -05:00
|
|
|
func (s *Service) ResolveRepository(name reference.Named) (*RepositoryInfo, error) {
|
2015-12-11 21:14:52 -05:00
|
|
|
return newRepositoryInfo(s.Config, name)
|
2014-10-06 21:54:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// ResolveIndex takes indexName and returns index info
|
2015-12-11 21:14:52 -05:00
|
|
|
func (s *Service) ResolveIndex(name string) (*registrytypes.IndexInfo, error) {
|
|
|
|
return newIndexInfo(s.Config, name)
|
2014-10-06 21:54:52 -04:00
|
|
|
}
|
2015-02-12 13:23:22 -05:00
|
|
|
|
2015-07-21 15:40:36 -04:00
|
|
|
// APIEndpoint represents a remote API endpoint
|
2015-02-12 13:23:22 -05:00
|
|
|
type APIEndpoint struct {
|
2015-12-04 16:42:33 -05:00
|
|
|
Mirror bool
|
|
|
|
URL string
|
|
|
|
Version APIVersion
|
|
|
|
Official bool
|
|
|
|
TrimHostname bool
|
|
|
|
TLSConfig *tls.Config
|
2015-02-12 13:23:22 -05:00
|
|
|
}
|
|
|
|
|
2015-07-21 15:40:36 -04:00
|
|
|
// ToV1Endpoint returns a V1 API endpoint based on the APIEndpoint
|
2016-01-04 13:36:01 -05:00
|
|
|
func (e APIEndpoint) ToV1Endpoint(userAgent string, metaHeaders http.Header) (*Endpoint, error) {
|
|
|
|
return newEndpoint(e.URL, e.TLSConfig, userAgent, metaHeaders)
|
2015-02-12 13:23:22 -05:00
|
|
|
}
|
|
|
|
|
2015-07-21 15:40:36 -04:00
|
|
|
// TLSConfig constructs a client TLS configuration based on server defaults
|
|
|
|
func (s *Service) TLSConfig(hostname string) (*tls.Config, error) {
|
2015-12-11 21:14:52 -05:00
|
|
|
return newTLSConfig(hostname, isSecureIndex(s.Config, hostname))
|
2015-02-12 13:23:22 -05:00
|
|
|
}
|
|
|
|
|
2015-07-21 17:10:34 -04:00
|
|
|
func (s *Service) tlsConfigForMirror(mirror string) (*tls.Config, error) {
|
2015-07-21 15:40:36 -04:00
|
|
|
mirrorURL, err := url.Parse(mirror)
|
2015-07-21 17:10:34 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-07-21 15:40:36 -04:00
|
|
|
return s.TLSConfig(mirrorURL.Host)
|
2015-07-21 17:10:34 -04:00
|
|
|
}
|
|
|
|
|
2015-08-06 17:41:59 -04:00
|
|
|
// LookupPullEndpoints creates an list of endpoints to try to pull from, in order of preference.
|
2015-07-21 15:40:36 -04:00
|
|
|
// It gives preference to v2 endpoints over v1, mirrors over the actual
|
|
|
|
// registry, and HTTPS over plain HTTP.
|
2015-11-18 17:20:54 -05:00
|
|
|
func (s *Service) LookupPullEndpoints(repoName reference.Named) (endpoints []APIEndpoint, err error) {
|
2015-08-06 21:21:02 -04:00
|
|
|
return s.lookupEndpoints(repoName)
|
2015-08-06 17:41:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// LookupPushEndpoints creates an list of endpoints to try to push to, in order of preference.
|
|
|
|
// It gives preference to v2 endpoints over v1, and HTTPS over plain HTTP.
|
|
|
|
// Mirrors are not included.
|
2015-11-18 17:20:54 -05:00
|
|
|
func (s *Service) LookupPushEndpoints(repoName reference.Named) (endpoints []APIEndpoint, err error) {
|
2015-08-06 21:21:02 -04:00
|
|
|
allEndpoints, err := s.lookupEndpoints(repoName)
|
|
|
|
if err == nil {
|
|
|
|
for _, endpoint := range allEndpoints {
|
|
|
|
if !endpoint.Mirror {
|
|
|
|
endpoints = append(endpoints, endpoint)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return endpoints, err
|
2015-08-06 17:41:59 -04:00
|
|
|
}
|
|
|
|
|
2015-11-18 17:20:54 -05:00
|
|
|
func (s *Service) lookupEndpoints(repoName reference.Named) (endpoints []APIEndpoint, err error) {
|
2015-09-16 13:42:17 -04:00
|
|
|
endpoints, err = s.lookupV2Endpoints(repoName)
|
2015-02-12 13:23:22 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-09-16 13:42:17 -04:00
|
|
|
if V2Only {
|
|
|
|
return endpoints, nil
|
2015-02-12 13:23:22 -05:00
|
|
|
}
|
|
|
|
|
2015-09-16 13:42:17 -04:00
|
|
|
legacyEndpoints, err := s.lookupV1Endpoints(repoName)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2015-02-12 13:23:22 -05:00
|
|
|
}
|
2015-09-16 13:42:17 -04:00
|
|
|
endpoints = append(endpoints, legacyEndpoints...)
|
2015-02-12 13:23:22 -05:00
|
|
|
|
|
|
|
return endpoints, nil
|
|
|
|
}
|