forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
credentials.go
130 lines (109 loc) · 4.11 KB
/
credentials.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
package importer
import (
"net/url"
"strings"
"sync"
"github.com/golang/glog"
kapiv1 "k8s.io/api/core/v1"
"k8s.io/kubernetes/pkg/credentialprovider"
credentialprovidersecrets "k8s.io/kubernetes/pkg/credentialprovider/secrets"
"github.com/openshift/origin/pkg/image/registryclient"
)
var (
emptyKeyring = &credentialprovider.BasicDockerKeyring{}
)
func NewCredentialsForSecrets(secrets []kapiv1.Secret) *SecretCredentialStore {
return &SecretCredentialStore{
secrets: secrets,
RefreshTokenStore: registryclient.NewRefreshTokenStore(),
}
}
func NewLazyCredentialsForSecrets(secretsFn func() ([]kapiv1.Secret, error)) *SecretCredentialStore {
return &SecretCredentialStore{
secretsFn: secretsFn,
RefreshTokenStore: registryclient.NewRefreshTokenStore(),
}
}
type SecretCredentialStore struct {
lock sync.Mutex
secrets []kapiv1.Secret
secretsFn func() ([]kapiv1.Secret, error)
err error
keyring credentialprovider.DockerKeyring
registryclient.RefreshTokenStore
}
func (s *SecretCredentialStore) Basic(url *url.URL) (string, string) {
return basicCredentialsFromKeyring(s.init(), url)
}
func (s *SecretCredentialStore) Err() error {
s.lock.Lock()
defer s.lock.Unlock()
return s.err
}
func (s *SecretCredentialStore) init() credentialprovider.DockerKeyring {
s.lock.Lock()
defer s.lock.Unlock()
if s.keyring != nil {
return s.keyring
}
// lazily load the secrets
if s.secrets == nil {
if s.secretsFn != nil {
s.secrets, s.err = s.secretsFn()
}
}
// TODO: need a version of this that is best effort secret - otherwise one error blocks all secrets
keyring, err := credentialprovidersecrets.MakeDockerKeyring(s.secrets, emptyKeyring)
if err != nil {
glog.V(5).Infof("Loading keyring failed for credential store: %v", err)
s.err = err
keyring = emptyKeyring
}
s.keyring = keyring
return keyring
}
func basicCredentialsFromKeyring(keyring credentialprovider.DockerKeyring, target *url.URL) (string, string) {
// TODO: compare this logic to Docker authConfig in v2 configuration
var value string
if len(target.Scheme) == 0 || target.Scheme == "https" {
value = target.Host + target.Path
} else {
// always require an explicit port to look up HTTP credentials
if !strings.Contains(target.Host, ":") {
value = target.Host + ":80" + target.Path
} else {
value = target.Host + target.Path
}
}
// Lookup(...) expects an image (not a URL path).
// The keyring strips /v1/ and /v2/ version prefixes,
// so we should also when selecting a valid auth for a URL.
pathWithSlash := target.Path + "/"
if strings.HasPrefix(pathWithSlash, "/v1/") || strings.HasPrefix(pathWithSlash, "/v2/") {
value = target.Host + target.Path[3:]
}
configs, found := keyring.Lookup(value)
if !found || len(configs) == 0 {
// do a special case check for docker.io to match historical lookups when we respond to a challenge
if value == "auth.docker.io/token" {
glog.V(5).Infof("Being asked for %s (%s), trying %s for legacy behavior", target, value, "index.docker.io/v1")
return basicCredentialsFromKeyring(keyring, &url.URL{Host: "index.docker.io", Path: "/v1"})
}
// docker 1.9 saves 'docker.io' in config in f23, see https://bugzilla.redhat.com/show_bug.cgi?id=1309739
if value == "index.docker.io" {
glog.V(5).Infof("Being asked for %s (%s), trying %s for legacy behavior", target, value, "docker.io")
return basicCredentialsFromKeyring(keyring, &url.URL{Host: "docker.io"})
}
// try removing the canonical ports for the given requests
if (strings.HasSuffix(target.Host, ":443") && target.Scheme == "https") ||
(strings.HasSuffix(target.Host, ":80") && target.Scheme == "http") {
host := strings.SplitN(target.Host, ":", 2)[0]
glog.V(5).Infof("Being asked for %s (%s), trying %s without port", target, value, host)
return basicCredentialsFromKeyring(keyring, &url.URL{Scheme: target.Scheme, Host: host, Path: target.Path})
}
glog.V(5).Infof("Unable to find a secret to match %s (%s)", target, value)
return "", ""
}
glog.V(5).Infof("Found secret to match %s (%s): %s", target, value, configs[0].ServerAddress)
return configs[0].Username, configs[0].Password
}