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-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
|
|
|
|
2015-03-26 18:22:04 -04:00
|
|
|
"github.com/Sirupsen/logrus"
|
2015-02-25 14:52:37 -05:00
|
|
|
"github.com/docker/docker/pkg/timeoutconn"
|
2013-05-14 21:41:39 -04:00
|
|
|
)
|
|
|
|
|
2013-07-22 17:50:32 -04:00
|
|
|
var (
|
2015-01-07 18:42:01 -05:00
|
|
|
ErrAlreadyExists = errors.New("Image already exists")
|
|
|
|
ErrDoesNotExist = errors.New("Image does not exist")
|
|
|
|
errLoginRequired = errors.New("Authentication is required.")
|
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
|
|
|
|
)
|
|
|
|
|
2014-10-09 13:52:30 -04:00
|
|
|
func newClient(jar http.CookieJar, roots *x509.CertPool, certs []tls.Certificate, timeout TimeoutType, secure bool) *http.Client {
|
2014-10-15 22:39:51 -04:00
|
|
|
tlsConfig := tls.Config{
|
|
|
|
RootCAs: roots,
|
|
|
|
// Avoid fallback to SSL protocols < TLS1.0
|
2014-10-09 13:52:30 -04:00
|
|
|
MinVersion: tls.VersionTLS10,
|
|
|
|
Certificates: certs,
|
2013-12-04 09:03:51 -05:00
|
|
|
}
|
|
|
|
|
2014-10-10 23:22:12 -04:00
|
|
|
if !secure {
|
|
|
|
tlsConfig.InsecureSkipVerify = true
|
|
|
|
}
|
|
|
|
|
2013-12-04 09:03:51 -05:00
|
|
|
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
|
2014-10-20 19:45:45 -04:00
|
|
|
d := net.Dialer{Timeout: 5 * time.Second, DualStack: true}
|
|
|
|
|
|
|
|
conn, err := d.Dial(proto, addr)
|
2013-12-04 09:03:51 -05:00
|
|
|
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) {
|
2014-10-20 19:45:45 -04:00
|
|
|
d := net.Dialer{DualStack: true}
|
|
|
|
|
|
|
|
conn, err := d.Dial(proto, addr)
|
2013-12-04 09:03:51 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-02-25 14:52:37 -05:00
|
|
|
conn = timeoutconn.New(conn, 1*time.Minute)
|
2013-12-04 09:03:51 -05:00
|
|
|
return conn, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &http.Client{
|
|
|
|
Transport: httpTransport,
|
|
|
|
CheckRedirect: AddRequiredHeadersToRedirectedRequests,
|
|
|
|
Jar: jar,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-10 23:22:12 -04:00
|
|
|
func doRequest(req *http.Request, jar http.CookieJar, timeout TimeoutType, secure bool) (*http.Response, *http.Client, error) {
|
2013-12-04 09:03:51 -05:00
|
|
|
var (
|
|
|
|
pool *x509.CertPool
|
2014-10-09 13:52:30 -04:00
|
|
|
certs []tls.Certificate
|
2013-12-04 09:03:51 -05:00
|
|
|
)
|
|
|
|
|
2014-10-10 23:22:12 -04:00
|
|
|
if secure && req.URL.Scheme == "https" {
|
|
|
|
hasFile := func(files []os.FileInfo, name string) bool {
|
|
|
|
for _, f := range files {
|
|
|
|
if f.Name() == name {
|
|
|
|
return true
|
|
|
|
}
|
2013-12-04 09:03:51 -05:00
|
|
|
}
|
2014-10-10 23:22:12 -04:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
hostDir := path.Join("/etc/docker/certs.d", req.URL.Host)
|
2015-03-26 18:22:04 -04:00
|
|
|
logrus.Debugf("hostDir: %s", hostDir)
|
2014-10-10 23:22:12 -04:00
|
|
|
fs, err := ioutil.ReadDir(hostDir)
|
|
|
|
if err != nil && !os.IsNotExist(err) {
|
|
|
|
return nil, nil, err
|
2013-12-04 09:03:51 -05:00
|
|
|
}
|
2014-10-10 23:22:12 -04:00
|
|
|
|
|
|
|
for _, f := range fs {
|
|
|
|
if strings.HasSuffix(f.Name(), ".crt") {
|
|
|
|
if pool == nil {
|
|
|
|
pool = x509.NewCertPool()
|
|
|
|
}
|
2015-03-26 18:22:04 -04:00
|
|
|
logrus.Debugf("crt: %s", hostDir+"/"+f.Name())
|
2014-10-10 23:22:12 -04:00
|
|
|
data, err := ioutil.ReadFile(path.Join(hostDir, f.Name()))
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
pool.AppendCertsFromPEM(data)
|
2013-12-04 09:03:51 -05:00
|
|
|
}
|
2014-10-10 23:22:12 -04:00
|
|
|
if strings.HasSuffix(f.Name(), ".cert") {
|
|
|
|
certName := f.Name()
|
|
|
|
keyName := certName[:len(certName)-5] + ".key"
|
2015-03-26 18:22:04 -04:00
|
|
|
logrus.Debugf("cert: %s", hostDir+"/"+f.Name())
|
2014-10-10 23:22:12 -04:00
|
|
|
if !hasFile(fs, keyName) {
|
|
|
|
return nil, nil, fmt.Errorf("Missing key %s for certificate %s", keyName, certName)
|
|
|
|
}
|
|
|
|
cert, err := tls.LoadX509KeyPair(path.Join(hostDir, certName), path.Join(hostDir, keyName))
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
2014-10-09 13:52:30 -04:00
|
|
|
certs = append(certs, cert)
|
2014-08-25 12:50:18 -04:00
|
|
|
}
|
2014-10-10 23:22:12 -04:00
|
|
|
if strings.HasSuffix(f.Name(), ".key") {
|
|
|
|
keyName := f.Name()
|
|
|
|
certName := keyName[:len(keyName)-4] + ".cert"
|
2015-03-26 18:22:04 -04:00
|
|
|
logrus.Debugf("key: %s", hostDir+"/"+f.Name())
|
2014-10-10 23:22:12 -04:00
|
|
|
if !hasFile(fs, certName) {
|
|
|
|
return nil, nil, fmt.Errorf("Missing certificate %s for key %s", certName, keyName)
|
|
|
|
}
|
2013-12-04 09:03:51 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(certs) == 0 {
|
2014-10-10 23:22:12 -04:00
|
|
|
client := newClient(jar, pool, nil, timeout, secure)
|
2013-12-04 09:03:51 -05:00
|
|
|
res, err := client.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
return res, client, nil
|
2014-08-25 12:50:18 -04:00
|
|
|
}
|
2014-10-10 23:22:12 -04:00
|
|
|
|
2014-10-09 13:52:30 -04:00
|
|
|
client := newClient(jar, pool, certs, timeout, secure)
|
|
|
|
res, err := client.Do(req)
|
|
|
|
return res, client, err
|
2013-12-04 09:03:51 -05: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
|
|
|
|
}
|