This repository has been archived by the owner on May 9, 2023. It is now read-only.
forked from seatgeek/docker-mirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mirror.go
555 lines (465 loc) · 14.5 KB
/
mirror.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
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
package main
import (
"bytes"
"context"
"encoding/json"
"fmt"
"net/http"
"os"
"sort"
"strconv"
"strings"
"time"
docker "github.com/fsouza/go-dockerclient"
"github.com/google/go-github/github"
"github.com/ryanuber/go-glob"
log "github.com/sirupsen/logrus"
)
const (
dockerHub = "hub.docker.com"
quay = "quay.io"
gcr = "gcr.io"
k8s = "k8s.gcr.io"
)
var (
PTransport = &http.Transport{Proxy: http.ProxyFromEnvironment}
httpClient = &http.Client{Timeout: 10 * time.Second, Transport: PTransport}
)
// DockerTagsResponse is Docker Registry v2 compatible struct
type DockerTagsResponse struct {
Count int `json:"count"`
Next *string `json:"next"`
Previous *string `json:"previous"`
Results []RepositoryTag `json:"results"`
}
// QuayTagsResponse is Quay API v1 compatible struct
type QuayTagsResponse struct {
HasAdditional bool `json:"has_additional"`
Page int `json:"page"`
Tags []RepositoryTag `json:"tags"`
}
// GCRTagsResponse is GCR API v2 compatible struct
type GCRTagsResponse struct {
Name string `json:"name"`
Tags []string `json:"tags"`
}
// RepositoryTag is Docker, Quay, GCR API compatible struct, holding the individual
// tags for the requested repository
type RepositoryTag struct {
Name string `json:"name"`
LastUpdated time.Time `json:"last_updated"`
LastModified time.Time `json:"last_modified"`
}
// logWriter is a io.Writer compatible wrapper, piping the output
// to a specific logrus entry
type logWriter struct {
logger *log.Entry
}
func (l logWriter) Write(p []byte) (n int, err error) {
l.logger.Debug(strings.Trim(string(p), "\n"))
return len(p), nil
}
type DockerClient interface {
Info() (*docker.DockerInfo, error)
TagImage(string, docker.TagImageOptions) error
PullImage(docker.PullImageOptions, docker.AuthConfiguration) error
PushImage(docker.PushImageOptions, docker.AuthConfiguration) error
RemoveImage(string) error
}
type mirror struct {
dockerClient *DockerClient // docker client used to pull, tag and push images
ecrManager ecrManager // ECR manager, used to ensure the ECR repository exist
log *log.Entry // logrus logger with the relevant custom fields
repo Repository // repository the mirror
remoteTags []RepositoryTag // list of remote repository tags (post filtering)
}
const defaultSleepDuration time.Duration = 60 * time.Second
func (m *mirror) setup(repo Repository) (err error) {
m.log = log.WithField("full_repo", repo.Name)
m.repo = repo
// specific tag to mirror
if strings.Contains(repo.Name, ":") {
chunk := strings.SplitN(repo.Name, ":", 2)
m.repo.Name = chunk[0]
m.repo.MatchTags = []string{chunk[1]}
}
// fetch remote tags
m.remoteTags, err = m.getRemoteTags()
if err != nil {
return err
}
m.filterTags()
m.log = m.log.WithField("repo", m.repo.Name)
m.log = m.log.WithField("num_tags", len(m.remoteTags))
return nil
}
// filter tags by
// - by matching tag name (with glob support)
// - by exluding tag name (with glob support)
// - by tag age
// - by max number of tags to process
func (m *mirror) filterTags() {
now := time.Now()
res := make([]RepositoryTag, 0)
for _, remoteTag := range m.remoteTags {
// match tags, with glob
if len(m.repo.MatchTags) > 0 {
keep := false
for _, tag := range m.repo.MatchTags {
if !glob.Glob(tag, remoteTag.Name) {
m.log.Debugf("Dropping tag '%s', it doesn't match glob pattern '%s'", remoteTag.Name, tag)
continue
}
keep = true
}
if !keep {
continue
}
}
// filter all tags what should be ignored, with glob
if len(m.repo.DropTags) > 0 {
keep := true
for _, tag := range m.repo.DropTags {
if glob.Glob(tag, remoteTag.Name) {
m.log.Debugf("Dropping tag '%s', its ignored by glob '%s'", remoteTag.Name, tag)
keep = false
break
}
}
if !keep {
continue
}
}
// filter on tag age
if m.repo.MaxTagAge != nil {
dur := time.Duration(*m.repo.MaxTagAge)
if now.Sub(remoteTag.LastUpdated) > dur {
m.log.Debugf("Dropping tag '%s', its older than %s", remoteTag.Name, m.repo.MaxTagAge.String())
continue
}
}
res = append(res, remoteTag)
}
// limit list of tags to $n newest (sorted by age by default)
if m.repo.MaxTags > 0 && len(res) > m.repo.MaxTags {
m.log.Debugf("Dropping %d tags, only need %d newest", len(res)-m.repo.MaxTags, m.repo.MaxTags)
res = res[:m.repo.MaxTags]
}
m.remoteTags = res
}
// return the name of repostiory, as it should be on the target
// this include any target repository prefix + the repository name in DockerHub
func (m *mirror) targetRepositoryName() string {
if m.repo.TargetPrefix != nil {
return fmt.Sprintf("%s%s", *m.repo.TargetPrefix, m.repo.Name)
}
// returns the target repository name minus farmersdog/ prefix
// if farmersdog/ is not present, it returns the full name
var repo_name string
if strings.Contains(m.repo.Name, "farmersdog/") {
repo_name = strings.Split(m.repo.Name, "/")[1]
} else {
repo_name = m.repo.Name
}
return fmt.Sprintf("%s%s", config.Target.Prefix, repo_name)
}
// pull the image from remote repository to local docker agent
func (m *mirror) pullImage(tag string) error {
m.log.Info("Starting docker pull")
defer m.timeTrack(time.Now(), "Completed docker pull")
pullOptions := docker.PullImageOptions{
Tag: tag,
InactivityTimeout: 1 * time.Minute,
OutputStream: &logWriter{logger: m.log.WithField("docker_action", "pull")},
}
authConfig := docker.AuthConfiguration{}
switch m.repo.Host {
case dockerHub:
pullOptions.Repository = m.repo.Name
if os.Getenv("DOCKERHUB_USER") != "" && os.Getenv("DOCKERHUB_PASSWORD") != "" {
m.log.Info("Using docker hub credentials from environment")
authConfig.Username = os.Getenv("DOCKERHUB_USER")
authConfig.Password = os.Getenv("DOCKERHUB_PASSWORD")
}
if m.repo.PrivateRegistry != "" {
pullOptions.Repository = m.repo.PrivateRegistry + "/" + m.repo.Name
return (*m.dockerClient).PullImage(pullOptions, authConfig)
}
case quay:
pullOptions.Repository = quay + "/" + m.repo.Name
case gcr:
pullOptions.Repository = gcr + "/" + m.repo.Name
case k8s:
pullOptions.Repository = k8s + "/" + m.repo.Name
}
return (*m.dockerClient).PullImage(pullOptions, authConfig)
}
// (re)tag the (local) docker image with the target repository name
func (m *mirror) tagImage(tag string) error {
m.log.Info("Starting docker tag")
defer m.timeTrack(time.Now(), "Completed docker tag")
tagOptions := docker.TagImageOptions{
Repo: fmt.Sprintf("%s/%s", config.Target.Registry, m.targetRepositoryName()),
Tag: tag,
Force: true,
}
switch m.repo.Host {
case dockerHub:
return (*m.dockerClient).TagImage(fmt.Sprintf("%s:%s", m.repo.Name, tag), tagOptions)
case quay:
return (*m.dockerClient).TagImage(fmt.Sprintf("%s/%s:%s", quay, m.repo.Name, tag), tagOptions)
case gcr:
return (*m.dockerClient).TagImage(fmt.Sprintf("%s/%s:%s", gcr, m.repo.Name, tag), tagOptions)
case k8s:
return (*m.dockerClient).TagImage(fmt.Sprintf("%s/%s:%s", k8s, m.repo.Name, tag), tagOptions)
}
return nil
}
// push the local (re)tagged image to the target docker registry
func (m *mirror) pushImage(tag string) error {
m.log.Info("Starting docker push")
defer m.timeTrack(time.Now(), "Completed docker push")
pushOptions := docker.PushImageOptions{
Name: fmt.Sprintf("%s/%s", config.Target.Registry, m.targetRepositoryName()),
Registry: config.Target.Registry,
Tag: tag,
OutputStream: &logWriter{logger: m.log.WithField("docker_action", "push")},
InactivityTimeout: 1 * time.Minute,
}
var (
creds *docker.AuthConfiguration
err error
)
if !isPrivateECR {
creds, err = getDockerCredentials(ecrPublicRegistryPrefix)
} else {
creds, err = getDockerCredentials(config.Target.Registry)
}
if err != nil {
return err
}
return (*m.dockerClient).PushImage(pushOptions, *creds)
}
func (m *mirror) deleteImage(tag string) error {
var repository string
switch m.repo.Host {
case dockerHub:
repository = fmt.Sprintf("%s:%s", m.repo.Name, tag)
case quay:
repository = fmt.Sprintf("%s/%s:%s", quay, m.repo.Name, tag)
case gcr:
repository = fmt.Sprintf("%s/%s:%s", gcr, m.repo.Name, tag)
case k8s:
repository = fmt.Sprintf("%s/%s:%s", k8s, m.repo.Name, tag)
}
m.log.Info("Cleaning images: " + repository)
err := (*m.dockerClient).RemoveImage(repository)
if err != nil {
return err
}
target := fmt.Sprintf("%s/%s:%s", config.Target.Registry, m.targetRepositoryName(), tag)
m.log.Info("Cleaning images: " + target)
err = (*m.dockerClient).RemoveImage(target)
if err != nil {
return err
}
return nil
}
func (m *mirror) work() {
m.log.Debugf("Starting work")
if err := m.ecrManager.ensure(m.targetRepositoryName()); err != nil {
log.Errorf("Failed to create ECR repo %s: %s", m.targetRepositoryName(), err)
return
}
for _, tag := range m.remoteTags {
m.log = m.log.WithField("tag", tag.Name)
m.log.Info("Start mirror tag")
if err := m.pullImage(tag.Name); err != nil {
m.log.Errorf("Failed to pull docker image: %s", err)
continue
}
if err := m.tagImage(tag.Name); err != nil {
m.log.Errorf("Failed to (re)tag docker image: %s", err)
continue
}
if err := m.pushImage(tag.Name); err != nil {
m.log.Errorf("Failed to push (re)tagged image: %s", err)
continue
}
if config.Cleanup == true {
if err := m.deleteImage(tag.Name); err != nil {
m.log.Errorf("Failed to clean image: %s", err)
continue
}
}
m.log.Info("Successfully pushed (re)tagged image")
}
m.log.WithField("tag", "")
m.log.Info("Repository mirror completed")
}
// get the remote tags from the remote compatible registry.
// read out the image tag and when it was updated, and sort by the updated time if applicable
func (m *mirror) getRemoteTags() ([]RepositoryTag, error) {
if m.repo.RemoteTagSource == "github" {
client := github.NewClient(nil)
limit, err := strconv.Atoi(m.repo.RemoteTagConfig["num_releases"])
if err != nil {
return nil, fmt.Errorf("Invalid/missing int value for remote_tag_config -> num_releases")
}
remoteTags, _, err := client.Repositories.ListTags(context.Background(), m.repo.RemoteTagConfig["owner"], m.repo.RemoteTagConfig["repo"], &github.ListOptions{PerPage: limit})
if err != nil {
return nil, err
}
var allTags []RepositoryTag
for _, tag := range remoteTags {
allTags = append(allTags, RepositoryTag{
Name: strings.TrimPrefix(*tag.Name, "v"),
})
}
return allTags, nil
}
// Get tags information from Docker Hub, Quay, GCR or k8s.gcr.io.
var url string
fullRepoName := m.repo.Name
token := ""
switch m.repo.Host {
case dockerHub:
if !strings.Contains(fullRepoName, "/") {
fullRepoName = "library/" + m.repo.Name
}
if os.Getenv("DOCKERHUB_USER") != "" && os.Getenv("DOCKERHUB_PASSWORD") != "" {
m.log.Info("Getting tags using docker hub credentials from environment")
message, err := json.Marshal(map[string]string{
"username": os.Getenv("DOCKERHUB_USER"),
"password": os.Getenv("DOCKERHUB_PASSWORD"),
})
if err != nil {
return nil, err
}
resp, err := http.Post("https://hub.docker.com/v2/users/login/", "application/json", bytes.NewBuffer(message))
if err != nil {
return nil, err
}
var result map[string]interface{}
json.NewDecoder(resp.Body).Decode(&result)
token = result["token"].(string)
}
url = fmt.Sprintf("https://registry.hub.docker.com/v2/repositories/%s/tags/?page_size=2048", fullRepoName)
case quay:
url = fmt.Sprintf("https://quay.io/api/v1/repository/%s/tag", fullRepoName)
case gcr:
url = fmt.Sprintf("https://gcr.io/v2/%s/tags/list", fullRepoName)
case k8s:
url = fmt.Sprintf("https://k8s.gcr.io/v2/%s/tags/list", fullRepoName)
}
var allTags []RepositoryTag
search:
for {
var (
err error
res *http.Response
req *http.Request
retries int = 5
)
for retries > 0 {
req, err = http.NewRequest("GET", url, nil)
if err != nil {
return nil, err
}
if token != "" {
req.Header.Set("Authorization", fmt.Sprintf("JWT %s", token))
}
res, err = httpClient.Do(req)
if err != nil {
m.log.Warningf(err.Error())
m.log.Warningf("Failed to get %s, retrying", url)
retries--
} else if res.StatusCode == 429 {
sleepTime := getSleepTime(res.Header.Get("X-RateLimit-Reset"), time.Now())
m.log.Infof("Rate limited on %s, sleeping for %s", url, sleepTime)
time.Sleep(sleepTime)
retries--
} else if res.StatusCode < 200 || res.StatusCode >= 300 {
m.log.Warningf("Get %s failed with %d, retrying", url, res.StatusCode)
retries--
} else {
break
}
}
if err != nil {
return nil, err
}
defer res.Body.Close()
dc := json.NewDecoder(res.Body)
switch m.repo.Host {
case dockerHub:
var tags DockerTagsResponse
if err = dc.Decode(&tags); err != nil {
return nil, err
}
allTags = append(allTags, tags.Results...)
if tags.Next == nil {
break search
}
url = *tags.Next
case quay:
var tags QuayTagsResponse
if err := dc.Decode(&tags); err != nil {
return nil, err
}
allTags = append(allTags, tags.Tags...)
break search
case gcr:
var tags GCRTagsResponse
if err := dc.Decode(&tags); err != nil {
return nil, err
}
for _, tag := range tags.Tags {
allTags = append(allTags, RepositoryTag{
Name: tag,
})
}
break search
case k8s:
var tags GCRTagsResponse
if err := dc.Decode(&tags); err != nil {
return nil, err
}
for _, tag := range tags.Tags {
allTags = append(allTags, RepositoryTag{
Name: tag,
})
}
break search
}
}
// sort the tags by updated/modified time if applicable, newest first
switch m.repo.Host {
case dockerHub:
sort.Slice(allTags, func(i, j int) bool {
return allTags[i].LastUpdated.After(allTags[j].LastUpdated)
})
case quay:
sort.Slice(allTags, func(i, j int) bool {
return allTags[i].LastModified.After(allTags[j].LastModified)
})
}
return allTags, nil
}
// will help output how long time a function took to do its work
func (m *mirror) timeTrack(start time.Time, name string) {
elapsed := time.Since(start)
m.log.Infof("%s in %s", name, elapsed)
}
func getSleepTime(rateLimitReset string, now time.Time) time.Duration {
rateLimitResetInt, err := strconv.ParseInt(rateLimitReset, 10, 64)
if err != nil {
return defaultSleepDuration
}
sleepTime := time.Unix(rateLimitResetInt, 0)
calculatedSleepTime := sleepTime.Sub(now)
if calculatedSleepTime < (0 * time.Second) {
return 0 * time.Second
}
return calculatedSleepTime
}