2013-05-14 21:41:39 -04:00
|
|
|
package registry
|
|
|
|
|
|
|
|
import (
|
2013-12-04 09:03:51 -05:00
|
|
|
"crypto/tls"
|
|
|
|
"crypto/x509"
|
2013-05-15 16:22:57 -04:00
|
|
|
"errors"
|
2013-05-14 21:41:39 -04:00
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
2013-08-04 20:42:24 -04:00
|
|
|
"net"
|
2013-05-14 21:41:39 -04:00
|
|
|
"net/http"
|
2013-12-04 09:03:51 -05:00
|
|
|
"os"
|
|
|
|
"path"
|
2013-07-05 15:20:58 -04:00
|
|
|
"regexp"
|
2013-05-14 21:41:39 -04:00
|
|
|
"strings"
|
2013-08-04 20:42:24 -04:00
|
|
|
"time"
|
2014-04-29 05:01:07 -04:00
|
|
|
|
2014-07-24 18:19:50 -04:00
|
|
|
"github.com/docker/docker/utils"
|
2013-05-14 21:41:39 -04:00
|
|
|
)
|
|
|
|
|
2013-07-22 17:50:32 -04:00
|
|
|
var (
|
|
|
|
ErrAlreadyExists = errors.New("Image already exists")
|
|
|
|
ErrInvalidRepositoryName = errors.New("Invalid repository name (ex: \"registry.domain.tld/myrepos\")")
|
2014-10-01 21:26:06 -04:00
|
|
|
ErrDoesNotExist = errors.New("Image does not exist")
|
2014-02-03 14:38:34 -05:00
|
|
|
errLoginRequired = errors.New("Authentication is required.")
|
2014-08-17 20:50:15 -04:00
|
|
|
validHex = regexp.MustCompile(`^([a-f0-9]{64})$`)
|
2014-09-15 23:30:10 -04:00
|
|
|
validNamespace = regexp.MustCompile(`^([a-z0-9_]{4,30})$`)
|
|
|
|
validRepo = regexp.MustCompile(`^([a-z0-9-_.]+)$`)
|
2013-07-22 17:50:32 -04:00
|
|
|
)
|
2013-05-15 16:22:57 -04:00
|
|
|
|
2013-12-04 09:03:51 -05:00
|
|
|
type TimeoutType uint32
|
|
|
|
|
|
|
|
const (
|
|
|
|
NoTimeout TimeoutType = iota
|
|
|
|
ReceiveTimeout
|
|
|
|
ConnectTimeout
|
|
|
|
)
|
|
|
|
|
|
|
|
func newClient(jar http.CookieJar, roots *x509.CertPool, cert *tls.Certificate, timeout TimeoutType) *http.Client {
|
|
|
|
tlsConfig := tls.Config{RootCAs: roots}
|
|
|
|
|
|
|
|
if cert != nil {
|
|
|
|
tlsConfig.Certificates = append(tlsConfig.Certificates, *cert)
|
|
|
|
}
|
|
|
|
|
|
|
|
httpTransport := &http.Transport{
|
|
|
|
DisableKeepAlives: true,
|
|
|
|
Proxy: http.ProxyFromEnvironment,
|
|
|
|
TLSClientConfig: &tlsConfig,
|
|
|
|
}
|
|
|
|
|
|
|
|
switch timeout {
|
|
|
|
case ConnectTimeout:
|
|
|
|
httpTransport.Dial = func(proto string, addr string) (net.Conn, error) {
|
|
|
|
// Set the connect timeout to 5 seconds
|
|
|
|
conn, err := net.DialTimeout(proto, addr, 5*time.Second)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// Set the recv timeout to 10 seconds
|
|
|
|
conn.SetDeadline(time.Now().Add(10 * time.Second))
|
|
|
|
return conn, nil
|
|
|
|
}
|
|
|
|
case ReceiveTimeout:
|
|
|
|
httpTransport.Dial = func(proto string, addr string) (net.Conn, error) {
|
|
|
|
conn, err := net.Dial(proto, addr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
conn = utils.NewTimeoutConn(conn, 1*time.Minute)
|
|
|
|
return conn, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &http.Client{
|
|
|
|
Transport: httpTransport,
|
|
|
|
CheckRedirect: AddRequiredHeadersToRedirectedRequests,
|
|
|
|
Jar: jar,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func doRequest(req *http.Request, jar http.CookieJar, timeout TimeoutType) (*http.Response, *http.Client, error) {
|
|
|
|
hasFile := func(files []os.FileInfo, name string) bool {
|
|
|
|
for _, f := range files {
|
|
|
|
if f.Name() == name {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
hostDir := path.Join("/etc/docker/certs.d", req.URL.Host)
|
|
|
|
fs, err := ioutil.ReadDir(hostDir)
|
|
|
|
if err != nil && !os.IsNotExist(err) {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
pool *x509.CertPool
|
|
|
|
certs []*tls.Certificate
|
|
|
|
)
|
|
|
|
|
|
|
|
for _, f := range fs {
|
|
|
|
if strings.HasSuffix(f.Name(), ".crt") {
|
|
|
|
if pool == nil {
|
|
|
|
pool = x509.NewCertPool()
|
|
|
|
}
|
|
|
|
data, err := ioutil.ReadFile(path.Join(hostDir, f.Name()))
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
2014-08-25 12:50:18 -04:00
|
|
|
pool.AppendCertsFromPEM(data)
|
2013-12-04 09:03:51 -05:00
|
|
|
}
|
|
|
|
if strings.HasSuffix(f.Name(), ".cert") {
|
|
|
|
certName := f.Name()
|
|
|
|
keyName := certName[:len(certName)-5] + ".key"
|
|
|
|
if !hasFile(fs, keyName) {
|
|
|
|
return nil, nil, fmt.Errorf("Missing key %s for certificate %s", keyName, certName)
|
|
|
|
}
|
2014-08-25 12:50:18 -04:00
|
|
|
cert, err := tls.LoadX509KeyPair(path.Join(hostDir, certName), path.Join(hostDir, keyName))
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
certs = append(certs, &cert)
|
2013-12-04 09:03:51 -05:00
|
|
|
}
|
|
|
|
if strings.HasSuffix(f.Name(), ".key") {
|
|
|
|
keyName := f.Name()
|
|
|
|
certName := keyName[:len(keyName)-4] + ".cert"
|
|
|
|
if !hasFile(fs, certName) {
|
|
|
|
return nil, nil, fmt.Errorf("Missing certificate %s for key %s", certName, keyName)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(certs) == 0 {
|
|
|
|
client := newClient(jar, pool, nil, timeout)
|
|
|
|
res, err := client.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
return res, client, nil
|
2014-08-25 12:50:18 -04:00
|
|
|
}
|
|
|
|
for i, cert := range certs {
|
|
|
|
client := newClient(jar, pool, cert, timeout)
|
|
|
|
res, err := client.Do(req)
|
|
|
|
// If this is the last cert, otherwise, continue to next cert if 403 or 5xx
|
|
|
|
if i == len(certs)-1 || err == nil && res.StatusCode != 403 && res.StatusCode < 500 {
|
|
|
|
return res, client, err
|
2013-12-04 09:03:51 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, nil, nil
|
|
|
|
}
|
|
|
|
|
2013-07-05 17:30:43 -04:00
|
|
|
func validateRepositoryName(repositoryName string) error {
|
|
|
|
var (
|
|
|
|
namespace string
|
|
|
|
name string
|
|
|
|
)
|
|
|
|
nameParts := strings.SplitN(repositoryName, "/", 2)
|
|
|
|
if len(nameParts) < 2 {
|
|
|
|
namespace = "library"
|
|
|
|
name = nameParts[0]
|
2014-08-17 20:50:15 -04:00
|
|
|
|
|
|
|
if validHex.MatchString(name) {
|
|
|
|
return fmt.Errorf("Invalid repository name (%s), cannot specify 64-byte hexadecimal strings", name)
|
|
|
|
}
|
2013-07-05 17:30:43 -04:00
|
|
|
} else {
|
|
|
|
namespace = nameParts[0]
|
|
|
|
name = nameParts[1]
|
|
|
|
}
|
2013-07-05 15:20:58 -04:00
|
|
|
if !validNamespace.MatchString(namespace) {
|
|
|
|
return fmt.Errorf("Invalid namespace name (%s), only [a-z0-9_] are allowed, size between 4 and 30", namespace)
|
|
|
|
}
|
|
|
|
if !validRepo.MatchString(name) {
|
2013-09-25 11:33:09 -04:00
|
|
|
return fmt.Errorf("Invalid repository name (%s), only [a-z0-9-_.] are allowed", name)
|
2013-07-05 15:20:58 -04:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-02-20 17:57:58 -05:00
|
|
|
// Resolves a repository name to a hostname + name
|
2013-07-05 15:20:58 -04:00
|
|
|
func ResolveRepositoryName(reposName string) (string, string, error) {
|
2013-07-09 14:30:12 -04:00
|
|
|
if strings.Contains(reposName, "://") {
|
|
|
|
// It cannot contain a scheme!
|
|
|
|
return "", "", ErrInvalidRepositoryName
|
|
|
|
}
|
2013-07-05 15:20:58 -04:00
|
|
|
nameParts := strings.SplitN(reposName, "/", 2)
|
2014-04-14 19:15:38 -04:00
|
|
|
if len(nameParts) == 1 || (!strings.Contains(nameParts[0], ".") && !strings.Contains(nameParts[0], ":") &&
|
|
|
|
nameParts[0] != "localhost") {
|
2013-07-05 15:20:58 -04:00
|
|
|
// This is a Docker Index repos (ex: samalba/hipache or ubuntu)
|
2013-07-05 17:30:43 -04:00
|
|
|
err := validateRepositoryName(reposName)
|
2014-03-10 20:16:58 -04:00
|
|
|
return IndexServerAddress(), reposName, err
|
2013-07-05 15:20:58 -04:00
|
|
|
}
|
|
|
|
hostname := nameParts[0]
|
2013-07-05 17:30:43 -04:00
|
|
|
reposName = nameParts[1]
|
2013-07-09 19:46:55 -04:00
|
|
|
if strings.Contains(hostname, "index.docker.io") {
|
|
|
|
return "", "", fmt.Errorf("Invalid repository name, try \"%s\" instead", reposName)
|
|
|
|
}
|
|
|
|
if err := validateRepositoryName(reposName); err != nil {
|
|
|
|
return "", "", err
|
|
|
|
}
|
2014-02-20 17:57:58 -05:00
|
|
|
|
|
|
|
return hostname, reposName, nil
|
2013-09-03 14:45:49 -04:00
|
|
|
}
|
|
|
|
|
2014-06-05 14:37:37 -04:00
|
|
|
func trustedLocation(req *http.Request) bool {
|
|
|
|
var (
|
|
|
|
trusteds = []string{"docker.com", "docker.io"}
|
|
|
|
hostname = strings.SplitN(req.Host, ":", 2)[0]
|
|
|
|
)
|
|
|
|
if req.URL.Scheme != "https" {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, trusted := range trusteds {
|
2014-06-07 17:17:56 -04:00
|
|
|
if hostname == trusted || strings.HasSuffix(hostname, "."+trusted) {
|
2014-06-05 14:37:37 -04:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2014-03-25 20:33:17 -04:00
|
|
|
func AddRequiredHeadersToRedirectedRequests(req *http.Request, via []*http.Request) error {
|
|
|
|
if via != nil && via[0] != nil {
|
2014-06-05 14:37:37 -04:00
|
|
|
if trustedLocation(req) && trustedLocation(via[0]) {
|
|
|
|
req.Header = via[0].Header
|
2014-08-25 12:50:18 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
for k, v := range via[0].Header {
|
|
|
|
if k != "Authorization" {
|
|
|
|
for _, vv := range v {
|
|
|
|
req.Header.Add(k, vv)
|
2014-06-05 14:37:37 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-03-25 20:33:17 -04:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|