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"
|
2015-05-14 10:12:54 -04:00
|
|
|
"net/http/httputil"
|
2013-12-04 09:03:51 -05:00
|
|
|
"os"
|
|
|
|
"path"
|
2015-05-19 13:58:45 -04:00
|
|
|
"path/filepath"
|
2015-05-14 10:12:54 -04:00
|
|
|
"runtime"
|
2013-05-14 21:41:39 -04:00
|
|
|
"strings"
|
2015-05-23 17:50:08 -04:00
|
|
|
"sync"
|
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-05-14 10:12:54 -04:00
|
|
|
"github.com/docker/docker/autogen/dockerversion"
|
|
|
|
"github.com/docker/docker/pkg/parsers/kernel"
|
2015-02-25 14:52:37 -05:00
|
|
|
"github.com/docker/docker/pkg/timeoutconn"
|
2015-05-15 21:35:04 -04:00
|
|
|
"github.com/docker/docker/pkg/transport"
|
2015-05-15 18:03:08 -04:00
|
|
|
"github.com/docker/docker/pkg/useragent"
|
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
|
|
|
|
)
|
|
|
|
|
2015-05-15 21:35:04 -04:00
|
|
|
// dockerUserAgent is the User-Agent the Docker client uses to identify itself.
|
|
|
|
// It is populated on init(), comprising version information of different components.
|
|
|
|
var dockerUserAgent string
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
httpVersion := make([]useragent.VersionInfo, 0, 6)
|
|
|
|
httpVersion = append(httpVersion, useragent.VersionInfo{"docker", dockerversion.VERSION})
|
|
|
|
httpVersion = append(httpVersion, useragent.VersionInfo{"go", runtime.Version()})
|
|
|
|
httpVersion = append(httpVersion, useragent.VersionInfo{"git-commit", dockerversion.GITCOMMIT})
|
|
|
|
if kernelVersion, err := kernel.GetKernelVersion(); err == nil {
|
|
|
|
httpVersion = append(httpVersion, useragent.VersionInfo{"kernel", kernelVersion.String()})
|
|
|
|
}
|
|
|
|
httpVersion = append(httpVersion, useragent.VersionInfo{"os", runtime.GOOS})
|
|
|
|
httpVersion = append(httpVersion, useragent.VersionInfo{"arch", runtime.GOARCH})
|
|
|
|
|
|
|
|
dockerUserAgent = useragent.AppendVersions("", httpVersion...)
|
2013-12-04 09:03:51 -05:00
|
|
|
}
|
|
|
|
|
2015-05-23 17:50:08 -04:00
|
|
|
type httpsRequestModifier struct {
|
|
|
|
mu sync.Mutex
|
|
|
|
tlsConfig *tls.Config
|
|
|
|
}
|
2015-05-15 21:35:04 -04:00
|
|
|
|
2015-05-14 10:12:54 -04:00
|
|
|
// DRAGONS(tiborvass): If someone wonders why do we set tlsconfig in a roundtrip,
|
|
|
|
// it's because it's so as to match the current behavior in master: we generate the
|
|
|
|
// certpool on every-goddam-request. It's not great, but it allows people to just put
|
|
|
|
// the certs in /etc/docker/certs.d/.../ and let docker "pick it up" immediately. Would
|
|
|
|
// prefer an fsnotify implementation, but that was out of scope of my refactoring.
|
2015-05-15 21:35:04 -04:00
|
|
|
func (m *httpsRequestModifier) ModifyRequest(req *http.Request) error {
|
2013-12-04 09:03:51 -05:00
|
|
|
var (
|
2015-05-19 13:58:45 -04:00
|
|
|
roots *x509.CertPool
|
|
|
|
certs []tls.Certificate
|
|
|
|
hostDir string
|
2013-12-04 09:03:51 -05:00
|
|
|
)
|
|
|
|
|
2015-05-14 10:12:54 -04:00
|
|
|
if req.URL.Scheme == "https" {
|
2014-10-10 23:22:12 -04:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2015-05-19 13:58:45 -04:00
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
hostDir = path.Join(os.TempDir(), "/docker/certs.d", req.URL.Host)
|
|
|
|
} else {
|
|
|
|
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) {
|
2015-05-15 21:35:04 -04:00
|
|
|
return nil
|
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") {
|
2015-05-14 10:12:54 -04:00
|
|
|
if roots == nil {
|
|
|
|
roots = x509.NewCertPool()
|
2014-10-10 23:22:12 -04:00
|
|
|
}
|
2015-03-26 18:22:04 -04:00
|
|
|
logrus.Debugf("crt: %s", hostDir+"/"+f.Name())
|
2015-05-19 13:58:45 -04:00
|
|
|
data, err := ioutil.ReadFile(filepath.Join(hostDir, f.Name()))
|
2014-10-10 23:22:12 -04:00
|
|
|
if err != nil {
|
2015-05-15 21:35:04 -04:00
|
|
|
return err
|
2014-10-10 23:22:12 -04:00
|
|
|
}
|
2015-05-14 10:12:54 -04:00
|
|
|
roots.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) {
|
2015-05-15 21:35:04 -04:00
|
|
|
return fmt.Errorf("Missing key %s for certificate %s", keyName, certName)
|
2014-10-10 23:22:12 -04:00
|
|
|
}
|
2015-05-19 13:58:45 -04:00
|
|
|
cert, err := tls.LoadX509KeyPair(filepath.Join(hostDir, certName), path.Join(hostDir, keyName))
|
2014-10-10 23:22:12 -04:00
|
|
|
if err != nil {
|
2015-05-15 21:35:04 -04:00
|
|
|
return err
|
2014-10-10 23:22:12 -04:00
|
|
|
}
|
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) {
|
2015-05-15 21:35:04 -04:00
|
|
|
return fmt.Errorf("Missing certificate %s for key %s", certName, keyName)
|
2014-10-10 23:22:12 -04:00
|
|
|
}
|
2013-12-04 09:03:51 -05:00
|
|
|
}
|
|
|
|
}
|
2015-05-23 17:50:08 -04:00
|
|
|
m.mu.Lock()
|
2015-05-15 21:35:04 -04:00
|
|
|
m.tlsConfig.RootCAs = roots
|
|
|
|
m.tlsConfig.Certificates = certs
|
2015-05-23 17:50:08 -04:00
|
|
|
m.mu.Unlock()
|
2015-05-14 10:12:54 -04:00
|
|
|
}
|
2015-05-15 21:35:04 -04:00
|
|
|
return nil
|
2015-05-14 10:12:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewTransport(timeout TimeoutType, secure bool) http.RoundTripper {
|
2015-05-15 21:35:04 -04:00
|
|
|
tlsConfig := &tls.Config{
|
2015-05-14 10:12:54 -04:00
|
|
|
// Avoid fallback to SSL protocols < TLS1.0
|
|
|
|
MinVersion: tls.VersionTLS10,
|
|
|
|
InsecureSkipVerify: !secure,
|
|
|
|
}
|
|
|
|
|
2015-05-15 21:35:04 -04:00
|
|
|
tr := &http.Transport{
|
2015-05-14 10:12:54 -04:00
|
|
|
DisableKeepAlives: true,
|
|
|
|
Proxy: http.ProxyFromEnvironment,
|
2015-05-15 21:35:04 -04:00
|
|
|
TLSClientConfig: tlsConfig,
|
2013-12-04 09:03:51 -05:00
|
|
|
}
|
|
|
|
|
2015-05-14 10:12:54 -04:00
|
|
|
switch timeout {
|
|
|
|
case ConnectTimeout:
|
2015-05-15 21:35:04 -04:00
|
|
|
tr.Dial = func(proto string, addr string) (net.Conn, error) {
|
2015-05-14 10:12:54 -04:00
|
|
|
// Set the connect timeout to 30 seconds to allow for slower connection
|
|
|
|
// times...
|
|
|
|
d := net.Dialer{Timeout: 30 * time.Second, DualStack: true}
|
|
|
|
|
|
|
|
conn, err := d.Dial(proto, addr)
|
|
|
|
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:
|
2015-05-15 21:35:04 -04:00
|
|
|
tr.Dial = func(proto string, addr string) (net.Conn, error) {
|
2015-05-14 10:12:54 -04:00
|
|
|
d := net.Dialer{DualStack: true}
|
|
|
|
|
|
|
|
conn, err := d.Dial(proto, addr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
conn = timeoutconn.New(conn, 1*time.Minute)
|
|
|
|
return conn, nil
|
2013-12-04 09:03:51 -05:00
|
|
|
}
|
2014-08-25 12:50:18 -04:00
|
|
|
}
|
2014-10-10 23:22:12 -04:00
|
|
|
|
2015-05-14 10:12:54 -04:00
|
|
|
if secure {
|
|
|
|
// note: httpsTransport also handles http transport
|
|
|
|
// but for HTTPS, it sets up the certs
|
2015-05-23 17:50:08 -04:00
|
|
|
return transport.NewTransport(tr, &httpsRequestModifier{tlsConfig: tlsConfig})
|
2015-05-14 10:12:54 -04:00
|
|
|
}
|
|
|
|
|
2015-05-15 21:35:04 -04:00
|
|
|
return tr
|
2015-05-14 10:12:54 -04:00
|
|
|
}
|
|
|
|
|
2015-05-15 21:35:04 -04:00
|
|
|
// DockerHeaders returns request modifiers that ensure requests have
|
|
|
|
// the User-Agent header set to dockerUserAgent and that metaHeaders
|
|
|
|
// are added.
|
|
|
|
func DockerHeaders(metaHeaders http.Header) []transport.RequestModifier {
|
|
|
|
modifiers := []transport.RequestModifier{
|
|
|
|
transport.NewHeaderRequestModifier(http.Header{"User-Agent": []string{dockerUserAgent}}),
|
2015-05-14 10:12:54 -04:00
|
|
|
}
|
2015-05-15 21:35:04 -04:00
|
|
|
if metaHeaders != nil {
|
|
|
|
modifiers = append(modifiers, transport.NewHeaderRequestModifier(metaHeaders))
|
2015-05-14 10:12:54 -04:00
|
|
|
}
|
2015-05-15 21:35:04 -04:00
|
|
|
return modifiers
|
2015-05-14 10:12:54 -04:00
|
|
|
}
|
|
|
|
|
2015-06-01 17:48:30 -04:00
|
|
|
type debugTransport struct {
|
|
|
|
http.RoundTripper
|
|
|
|
log func(...interface{})
|
|
|
|
}
|
2015-05-14 10:12:54 -04:00
|
|
|
|
|
|
|
func (tr debugTransport) RoundTrip(req *http.Request) (*http.Response, error) {
|
|
|
|
dump, err := httputil.DumpRequestOut(req, false)
|
|
|
|
if err != nil {
|
2015-06-01 17:48:30 -04:00
|
|
|
tr.log("could not dump request")
|
2015-05-14 10:12:54 -04:00
|
|
|
}
|
2015-06-01 17:48:30 -04:00
|
|
|
tr.log(string(dump))
|
2015-05-14 10:12:54 -04:00
|
|
|
resp, err := tr.RoundTripper.RoundTrip(req)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
dump, err = httputil.DumpResponse(resp, false)
|
|
|
|
if err != nil {
|
2015-06-01 17:48:30 -04:00
|
|
|
tr.log("could not dump response")
|
2015-05-14 10:12:54 -04:00
|
|
|
}
|
2015-06-01 17:48:30 -04:00
|
|
|
tr.log(string(dump))
|
2015-05-14 10:12:54 -04:00
|
|
|
return resp, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func HTTPClient(transport http.RoundTripper) *http.Client {
|
|
|
|
if transport == nil {
|
|
|
|
transport = NewTransport(ConnectTimeout, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &http.Client{
|
|
|
|
Transport: transport,
|
|
|
|
CheckRedirect: AddRequiredHeadersToRedirectedRequests,
|
|
|
|
}
|
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
|
|
|
|
}
|