forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
client.go
456 lines (400 loc) · 12 KB
/
client.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
package importer
import (
"encoding/json"
"fmt"
"net"
"net/http"
"net/url"
"path"
"time"
"github.com/golang/glog"
gocontext "golang.org/x/net/context"
"github.com/docker/distribution"
"github.com/docker/distribution/context"
"github.com/docker/distribution/digest"
"github.com/docker/distribution/manifest/schema1"
"github.com/docker/distribution/manifest/schema2"
"github.com/docker/distribution/reference"
"github.com/docker/distribution/registry/api/errcode"
registryclient "github.com/docker/distribution/registry/client"
"github.com/docker/distribution/registry/client/auth"
"github.com/docker/distribution/registry/client/transport"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
kapi "k8s.io/kubernetes/pkg/api"
"github.com/openshift/origin/pkg/dockerregistry"
"github.com/openshift/origin/pkg/image/api"
"github.com/openshift/origin/pkg/image/api/dockerpre012"
)
// ErrNotV2Registry is returned when the server does not report itself as a V2 Docker registry
type ErrNotV2Registry struct {
Registry string
}
func (e *ErrNotV2Registry) Error() string {
return fmt.Sprintf("endpoint %q does not support v2 API", e.Registry)
}
// NewContext is capable of creating RepositoryRetrievers.
func NewContext(transport, insecureTransport http.RoundTripper) Context {
return Context{
Transport: transport,
InsecureTransport: insecureTransport,
Challenges: auth.NewSimpleChallengeManager(),
}
}
type Context struct {
Transport http.RoundTripper
InsecureTransport http.RoundTripper
Challenges auth.ChallengeManager
}
func (c Context) WithCredentials(credentials auth.CredentialStore) RepositoryRetriever {
return &repositoryRetriever{
context: c,
credentials: credentials,
pings: make(map[url.URL]error),
redirect: make(map[url.URL]*url.URL),
}
}
type repositoryRetriever struct {
context Context
credentials auth.CredentialStore
pings map[url.URL]error
redirect map[url.URL]*url.URL
}
func (r *repositoryRetriever) Repository(ctx gocontext.Context, registry *url.URL, repoName string, insecure bool) (distribution.Repository, error) {
named, err := reference.ParseNamed(repoName)
if err != nil {
return nil, err
}
t := r.context.Transport
if insecure && r.context.InsecureTransport != nil {
t = r.context.InsecureTransport
}
src := *registry
// ping the registry to get challenge headers
if err, ok := r.pings[src]; ok {
if err != nil {
return nil, err
}
if redirect, ok := r.redirect[src]; ok {
src = *redirect
}
} else {
redirect, err := r.ping(src, insecure, t)
r.pings[src] = err
if err != nil {
return nil, err
}
if redirect != nil {
r.redirect[src] = redirect
src = *redirect
}
}
rt := transport.NewTransport(
t,
// TODO: slightly smarter authorizer that retries unauthenticated requests
// TODO: make multiple attempts if the first credential fails
auth.NewAuthorizer(
r.context.Challenges,
auth.NewTokenHandler(t, r.credentials, repoName, "pull"),
auth.NewBasicHandler(r.credentials),
),
)
repo, err := registryclient.NewRepository(context.Context(ctx), named, src.String(), rt)
if err != nil {
return nil, err
}
return NewRetryRepository(repo, 2, 3/2*time.Second), nil
}
func (r *repositoryRetriever) ping(registry url.URL, insecure bool, transport http.RoundTripper) (*url.URL, error) {
pingClient := &http.Client{
Transport: transport,
Timeout: 15 * time.Second,
}
target := registry
target.Path = path.Join(target.Path, "v2") + "/"
req, err := http.NewRequest("GET", target.String(), nil)
if err != nil {
return nil, err
}
resp, err := pingClient.Do(req)
if err != nil {
if insecure && registry.Scheme == "https" {
glog.V(5).Infof("Falling back to an HTTP check for an insecure registry %s: %v", registry, err)
registry.Scheme = "http"
_, nErr := r.ping(registry, true, transport)
if nErr != nil {
return nil, nErr
}
return ®istry, nil
}
return nil, err
}
defer resp.Body.Close()
versions := auth.APIVersions(resp, "Docker-Distribution-API-Version")
if len(versions) == 0 {
glog.V(5).Infof("Registry responded to v2 Docker endpoint, but has no header for Docker Distribution %s: %d, %#v", req.URL, resp.StatusCode, resp.Header)
return nil, &ErrNotV2Registry{Registry: registry.String()}
}
r.context.Challenges.AddResponse(resp)
return nil, nil
}
func schema1ToImage(manifest *schema1.SignedManifest, d digest.Digest) (*api.Image, error) {
if len(manifest.History) == 0 {
return nil, fmt.Errorf("image has no v1Compatibility history and cannot be used")
}
dockerImage, err := unmarshalDockerImage([]byte(manifest.History[0].V1Compatibility))
if err != nil {
return nil, err
}
mediatype, payload, err := manifest.Payload()
if err != nil {
return nil, err
}
if len(d) > 0 {
dockerImage.ID = d.String()
} else {
dockerImage.ID = digest.FromBytes(manifest.Canonical).String()
}
image := &api.Image{
ObjectMeta: metav1.ObjectMeta{
Name: dockerImage.ID,
},
DockerImageMetadata: *dockerImage,
DockerImageManifest: string(payload),
DockerImageManifestMediaType: mediatype,
DockerImageMetadataVersion: "1.0",
}
return image, nil
}
func schema2ToImage(manifest *schema2.DeserializedManifest, imageConfig []byte, d digest.Digest) (*api.Image, error) {
mediatype, payload, err := manifest.Payload()
if err != nil {
return nil, err
}
dockerImage, err := unmarshalDockerImage(imageConfig)
if err != nil {
return nil, err
}
if len(d) > 0 {
dockerImage.ID = d.String()
} else {
dockerImage.ID = digest.FromBytes(payload).String()
}
image := &api.Image{
ObjectMeta: metav1.ObjectMeta{
Name: dockerImage.ID,
},
DockerImageMetadata: *dockerImage,
DockerImageManifest: string(payload),
DockerImageConfig: string(imageConfig),
DockerImageManifestMediaType: mediatype,
DockerImageMetadataVersion: "1.0",
}
return image, nil
}
func schema0ToImage(dockerImage *dockerregistry.Image) (*api.Image, error) {
var baseImage api.DockerImage
if err := kapi.Scheme.Convert(&dockerImage.Image, &baseImage, nil); err != nil {
return nil, fmt.Errorf("could not convert image: %#v", err)
}
image := &api.Image{
ObjectMeta: metav1.ObjectMeta{
Name: dockerImage.ID,
},
DockerImageMetadata: baseImage,
DockerImageMetadataVersion: "1.0",
}
return image, nil
}
func unmarshalDockerImage(body []byte) (*api.DockerImage, error) {
var image dockerpre012.DockerImage
if err := json.Unmarshal(body, &image); err != nil {
return nil, err
}
dockerImage := &api.DockerImage{}
if err := kapi.Scheme.Convert(&image, dockerImage, nil); err != nil {
return nil, err
}
return dockerImage, nil
}
func isDockerError(err error, code errcode.ErrorCode) bool {
switch t := err.(type) {
case errcode.Errors:
for _, err := range t {
if isDockerError(err, code) {
return true
}
}
case errcode.ErrorCode:
if code == t {
return true
}
case errcode.Error:
if t.ErrorCode() == code {
return true
}
}
return false
}
var nowFn = time.Now
type retryRepository struct {
distribution.Repository
retries int
initial *time.Time
wait time.Duration
limit time.Duration
}
// NewRetryRepository wraps a distribution.Repository with helpers that will retry authentication failures
// over a limited time window and duration. This primarily avoids a DockerHub issue where public images
// unexpectedly return a 401 error due to the JWT token created by the hub being created at the same second,
// but another server being in the previous second.
func NewRetryRepository(repo distribution.Repository, retries int, interval time.Duration) distribution.Repository {
var wait time.Duration
if retries > 1 {
wait = interval / time.Duration(retries-1)
}
return &retryRepository{
Repository: repo,
retries: retries,
wait: wait,
limit: interval,
}
}
// isTemporaryHTTPError returns true if the error indicates a temporary or partial HTTP faliure
func isTemporaryHTTPError(err error) bool {
if e, ok := err.(net.Error); ok && e != nil {
return e.Temporary() || e.Timeout()
}
return false
}
// shouldRetry returns true if the error is not an unauthorized error, if there are no retries left, or if
// we have already retried once and it has been longer than r.limit since we retried the first time.
func (r *retryRepository) shouldRetry(err error) bool {
if err == nil {
return false
}
if !isDockerError(err, errcode.ErrorCodeUnauthorized) && !isTemporaryHTTPError(err) {
return false
}
if r.retries <= 0 {
return false
}
r.retries--
now := nowFn()
switch {
case r.initial == nil:
// always retry the first time immediately
r.initial = &now
case r.limit != 0 && now.Sub(*r.initial) > r.limit:
// give up retrying after the window
r.retries = 0
default:
// don't hot loop
time.Sleep(r.wait)
}
glog.V(4).Infof("Retrying request to a v2 Docker registry after encountering error (%d attempts remaining): %v", r.retries, err)
return true
}
// Manifests wraps the manifest service in a retryManifest for shared retries.
func (r *retryRepository) Manifests(ctx context.Context, options ...distribution.ManifestServiceOption) (distribution.ManifestService, error) {
s, err := r.Repository.Manifests(ctx, options...)
if err != nil {
return nil, err
}
return retryManifest{ManifestService: s, repo: r}, nil
}
// Blobs wraps the blob service in a retryBlobStore for shared retries.
func (r *retryRepository) Blobs(ctx context.Context) distribution.BlobStore {
return retryBlobStore{BlobStore: r.Repository.Blobs(ctx), repo: r}
}
// Tags lists the tags under the named repository.
func (r *retryRepository) Tags(ctx context.Context) distribution.TagService {
return &retryTags{TagService: r.Repository.Tags(ctx), repo: r}
}
// retryManifest wraps the manifest service and invokes retries on the repo.
type retryManifest struct {
distribution.ManifestService
repo *retryRepository
}
// Exists returns true if the manifest exists.
func (r retryManifest) Exists(ctx context.Context, dgst digest.Digest) (bool, error) {
for {
if exists, err := r.ManifestService.Exists(ctx, dgst); r.repo.shouldRetry(err) {
continue
} else {
return exists, err
}
}
}
// Get retrieves the manifest identified by the digest, if it exists.
func (r retryManifest) Get(ctx context.Context, dgst digest.Digest, options ...distribution.ManifestServiceOption) (distribution.Manifest, error) {
for {
if m, err := r.ManifestService.Get(ctx, dgst, options...); r.repo.shouldRetry(err) {
continue
} else {
return m, err
}
}
}
// retryBlobStore wraps the blob store and invokes retries on the repo.
type retryBlobStore struct {
distribution.BlobStore
repo *retryRepository
}
func (r retryBlobStore) Stat(ctx context.Context, dgst digest.Digest) (distribution.Descriptor, error) {
for {
if d, err := r.BlobStore.Stat(ctx, dgst); r.repo.shouldRetry(err) {
continue
} else {
return d, err
}
}
}
func (r retryBlobStore) ServeBlob(ctx context.Context, w http.ResponseWriter, req *http.Request, dgst digest.Digest) error {
for {
if err := r.BlobStore.ServeBlob(ctx, w, req, dgst); r.repo.shouldRetry(err) {
continue
} else {
return err
}
}
}
func (r retryBlobStore) Open(ctx context.Context, dgst digest.Digest) (distribution.ReadSeekCloser, error) {
for {
if rsc, err := r.BlobStore.Open(ctx, dgst); r.repo.shouldRetry(err) {
continue
} else {
return rsc, err
}
}
}
type retryTags struct {
distribution.TagService
repo *retryRepository
}
func (r *retryTags) Get(ctx context.Context, tag string) (distribution.Descriptor, error) {
for {
if t, err := r.TagService.Get(ctx, tag); r.repo.shouldRetry(err) {
continue
} else {
return t, err
}
}
}
func (r *retryTags) All(ctx context.Context) ([]string, error) {
for {
if t, err := r.TagService.All(ctx); r.repo.shouldRetry(err) {
continue
} else {
return t, err
}
}
}
func (r *retryTags) Lookup(ctx context.Context, digest distribution.Descriptor) ([]string, error) {
for {
if t, err := r.TagService.Lookup(ctx, digest); r.repo.shouldRetry(err) {
continue
} else {
return t, err
}
}
}