forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
credentials.go
182 lines (146 loc) · 5.16 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
package importer
import (
"net/url"
"strings"
"sync"
"github.com/golang/glog"
"github.com/docker/distribution/registry/client/auth"
kapi "k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/credentialprovider"
)
var (
NoCredentials auth.CredentialStore = &noopCredentialStore{}
emptyKeyring = &credentialprovider.BasicDockerKeyring{}
)
type noopCredentialStore struct{}
func (s *noopCredentialStore) Basic(url *url.URL) (string, string) {
glog.Infof("asked to provide Basic credentials for %s", url)
return "", ""
}
func (s *noopCredentialStore) RefreshToken(url *url.URL, service string) string {
glog.Infof("asked to provide RefreshToken for %s", url)
return ""
}
func (s *noopCredentialStore) SetRefreshToken(url *url.URL, service string, token string) {
glog.Infof("asked to provide SetRefreshToken for %s", url)
}
func NewBasicCredentials() *BasicCredentials {
return &BasicCredentials{}
}
type basicForURL struct {
url url.URL
username, password string
}
type BasicCredentials struct {
creds []basicForURL
}
func (c *BasicCredentials) Add(url *url.URL, username, password string) {
c.creds = append(c.creds, basicForURL{*url, username, password})
}
func (c *BasicCredentials) Basic(url *url.URL) (string, string) {
for _, cred := range c.creds {
if len(cred.url.Host) != 0 && cred.url.Host != url.Host {
continue
}
if len(cred.url.Path) != 0 && cred.url.Path != url.Path {
continue
}
return cred.username, cred.password
}
return "", ""
}
func (c *BasicCredentials) RefreshToken(url *url.URL, service string) string {
return ""
}
func (c *BasicCredentials) SetRefreshToken(url *url.URL, service string, token string) {
}
func NewLocalCredentials() auth.CredentialStore {
return &keyringCredentialStore{credentialprovider.NewDockerKeyring()}
}
type keyringCredentialStore struct {
credentialprovider.DockerKeyring
}
func (s *keyringCredentialStore) Basic(url *url.URL) (string, string) {
return basicCredentialsFromKeyring(s.DockerKeyring, url)
}
func (s *keyringCredentialStore) RefreshToken(url *url.URL, service string) string {
return ""
}
func (s *keyringCredentialStore) SetRefreshToken(url *url.URL, service string, token string) {
}
func NewCredentialsForSecrets(secrets []kapi.Secret) *SecretCredentialStore {
return &SecretCredentialStore{secrets: secrets}
}
func NewLazyCredentialsForSecrets(secretsFn func() ([]kapi.Secret, error)) *SecretCredentialStore {
return &SecretCredentialStore{secretsFn: secretsFn}
}
type SecretCredentialStore struct {
lock sync.Mutex
secrets []kapi.Secret
secretsFn func() ([]kapi.Secret, error)
err error
keyring credentialprovider.DockerKeyring
}
func (s *SecretCredentialStore) Basic(url *url.URL) (string, string) {
return basicCredentialsFromKeyring(s.init(), url)
}
func (s *SecretCredentialStore) RefreshToken(url *url.URL, service string) string {
return ""
}
func (s *SecretCredentialStore) SetRefreshToken(url *url.URL, service string, token string) {
}
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 := credentialprovider.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
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, trying %s for legacy behavior", target, "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, trying %s for legacy behavior", target, "docker.io")
return basicCredentialsFromKeyring(keyring, &url.URL{Host: "docker.io"})
}
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
}