-
Notifications
You must be signed in to change notification settings - Fork 387
/
Copy pathimage_mapper.go
572 lines (526 loc) · 17.5 KB
/
image_mapper.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
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
package release
import (
"bytes"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"regexp"
"sort"
"strings"
"github.com/blang/semver"
"github.com/ghodss/yaml"
imageapi "github.com/openshift/api/image/v1"
imagereference "github.com/openshift/library-go/pkg/image/reference"
"k8s.io/klog/v2"
)
type Payload struct {
path string
references *imageapi.ImageStream
}
func NewPayload(path string) *Payload {
return &Payload{path: path}
}
func (p *Payload) Path() string {
return p.path
}
// Rewrite updates the image stream to point to the locations described by the provided function.
// If a new ID appears in the returned reference, it will be used instead of the existing digest.
// All references in manifest files will be updated and then the image stream will be written to
// the correct location with any updated metadata.
func (p *Payload) Rewrite(allowTags bool, fn func(component string) imagereference.DockerImageReference) error {
is, err := p.References()
if err != nil {
return err
}
replacements, err := ReplacementsForImageStream(is, allowTags, fn)
if err != nil {
return err
}
mapper, err := NewExactMapper(replacements)
if err != nil {
return err
}
files, err := ioutil.ReadDir(p.path)
if err != nil {
return err
}
for _, file := range files {
if file.IsDir() {
continue
}
if filepath.Base(file.Name()) == "image-references" {
continue
}
path := filepath.Join(p.path, file.Name())
data, err := ioutil.ReadFile(path)
if err != nil {
return err
}
out, err := mapper(data)
if err != nil {
return fmt.Errorf("unable to rewrite the contents of %s: %v", path, err)
}
if bytes.Equal(data, out) {
continue
}
klog.V(6).Infof("Rewrote\n%s\n\nto\n\n%s\n", string(data), string(out))
if err := ioutil.WriteFile(path, out, file.Mode()); err != nil {
return err
}
}
return nil
}
func (p *Payload) References() (*imageapi.ImageStream, error) {
if p.references != nil {
return p.references, nil
}
is, err := parseImageStream(filepath.Join(p.path, "image-references"))
if err != nil {
return nil, err
}
p.references = is
return is, nil
}
func parseImageStream(path string) (*imageapi.ImageStream, error) {
data, err := ioutil.ReadFile(path)
if os.IsNotExist(err) {
return nil, err
}
if err != nil {
return nil, fmt.Errorf("unable to read release image info from release contents: %v", err)
}
return readReleaseImageReferences(data)
}
func readReleaseImageReferences(data []byte) (*imageapi.ImageStream, error) {
is := &imageapi.ImageStream{}
if err := yaml.Unmarshal(data, &is); err != nil {
return nil, fmt.Errorf("unable to load release image-references: %v", err)
}
if is.Kind != "ImageStream" || is.APIVersion != "image.openshift.io/v1" {
return nil, fmt.Errorf("unrecognized image-references in release payload")
}
return is, nil
}
type ManifestMapper func(data []byte) ([]byte, error)
func NewTransformFromImageStreamFile(path string, input *imageapi.ImageStream, allowMissingImages bool) (ManifestMapper, error) {
is, err := parseImageStream(path)
if err != nil {
return nil, err
}
versions, tagsByName, references, err := loadImageStreamTransforms(input, is, allowMissingImages, path)
if err != nil {
return nil, err
}
imageMapper, err := NewImageMapper(references)
if err != nil {
return nil, err
}
versionMapper := NewComponentVersionsMapper(input.Name, versions, tagsByName)
return func(data []byte) ([]byte, error) {
data, err := imageMapper(data)
if err != nil {
return nil, err
}
return versionMapper(data)
}, nil
}
func loadImageStreamTransforms(input, local *imageapi.ImageStream, allowMissingImages bool, src string) (ComponentVersions, map[string][]string, map[string]ImageReference, error) {
references := make(map[string]ImageReference)
for _, tag := range local.Spec.Tags {
if tag.From == nil || tag.From.Kind != "DockerImage" {
continue
}
if len(tag.From.Name) == 0 {
return nil, nil, nil, fmt.Errorf("no from.name for the tag %s", tag.Name)
}
ref := ImageReference{SourceRepository: tag.From.Name}
for _, inputTag := range input.Spec.Tags {
if inputTag.Name == tag.Name {
ref.TargetPullSpec = inputTag.From.Name
break
}
}
if len(ref.TargetPullSpec) == 0 {
if allowMissingImages {
klog.V(2).Infof("Image file %q referenced an image %q that is not part of the input images, skipping", src, tag.From.Name)
continue
}
return nil, nil, nil, fmt.Errorf("no input image tag named %q", tag.Name)
}
references[tag.Name] = ref
}
// load all version values from the input stream, including any defaults, to perform
// version substitution in the returned manifests.
versions := make(ComponentVersions)
tagsByName := make(map[string][]string)
for _, tag := range input.Spec.Tags {
if _, ok := references[tag.Name]; !ok {
continue
}
value, ok := tag.Annotations[annotationBuildVersions]
if !ok {
continue
}
displayNameValue := tag.Annotations[annotationBuildVersionsDisplayNames]
klog.V(4).Infof("Found build versions from %s: %s (%s)", tag.Name, value, displayNameValue)
items, err := parseComponentVersionsLabel(value, displayNameValue)
if err != nil {
return nil, nil, nil, fmt.Errorf("input image stream has an invalid version annotation for tag %q: %v", tag.Name, value)
}
for k, v := range items {
existing, ok := versions[k]
if ok {
if existing.Version != v.Version {
return nil, nil, nil, fmt.Errorf("input image stream has multiple versions defined for version %s: %s defines %s but was already set to %s on %s", k, tag.Name, v, existing, strings.Join(tagsByName[k], ", "))
}
} else {
versions[k] = v
klog.V(4).Infof("Found version %s=%s from %s", k, v.Version, tag.Name)
}
tagsByName[k] = append(tagsByName[k], tag.Name)
}
}
defaults, err := parseComponentVersionsLabel(input.Annotations[annotationBuildVersions], input.Annotations[annotationBuildVersionsDisplayNames])
if err != nil {
return nil, nil, nil, fmt.Errorf("unable to read default versions label on input image stream: %v", err)
}
for k, v := range defaults {
if _, ok := versions[k]; !ok {
versions[k] = v
}
}
return versions, tagsByName, references, nil
}
type ImageReference struct {
SourceRepository string
TargetPullSpec string
}
func NopManifestMapper(data []byte) ([]byte, error) {
return data, nil
}
// patternImageFormat attempts to match a docker pull spec by prefix (%s) and capture the
// prefix and either a tag or digest. It requires leading and trailing whitespace, quotes, or
// end of file.
const patternImageFormat = `([\W]|^)(%s)(:[\w][\w.-]{0,127}|@[A-Za-z][A-Za-z0-9]*(?:[-_+.][A-Za-z][A-Za-z0-9]*)*[:][[:xdigit:]]{2,})?([\s"']|$)`
func NewImageMapper(images map[string]ImageReference) (ManifestMapper, error) {
repositories := make([]string, 0, len(images))
bySource := make(map[string]string)
for name, ref := range images {
if len(ref.SourceRepository) == 0 {
return nil, fmt.Errorf("an empty source repository is not allowed for name %q", name)
}
if existing, ok := bySource[ref.SourceRepository]; ok {
return nil, fmt.Errorf("the source repository %q was defined more than once (for %q and %q)", ref.SourceRepository, existing, name)
}
bySource[ref.SourceRepository] = name
repositories = append(repositories, regexp.QuoteMeta(ref.SourceRepository))
}
if len(repositories) == 0 {
klog.V(5).Infof("No images are mapped, will not replace any contents")
return NopManifestMapper, nil
}
pattern := fmt.Sprintf(patternImageFormat, strings.Join(repositories, "|"))
re := regexp.MustCompile(pattern)
return func(data []byte) ([]byte, error) {
out := re.ReplaceAllFunc(data, func(in []byte) []byte {
parts := re.FindSubmatch(in)
repository := string(parts[2])
name, ok := bySource[repository]
if !ok {
klog.V(4).Infof("found potential image %q, but no matching definition", repository)
return in
}
ref := images[name]
suffix := parts[3]
klog.V(2).Infof("found repository %q with locator %q in the input, switching to %q (from pattern %s)", string(repository), string(suffix), ref.TargetPullSpec, pattern)
switch {
case len(suffix) == 0:
// we found a repository, but no tag or digest (implied latest), or we got an exact match
return []byte(string(parts[1]) + ref.TargetPullSpec + string(parts[4]))
case suffix[0] == '@':
// we got a digest
return []byte(string(parts[1]) + ref.TargetPullSpec + string(parts[4]))
default:
// TODO: we didn't get a digest, so we have to decide what to replace
return []byte(string(parts[1]) + ref.TargetPullSpec + string(parts[4]))
}
})
return out, nil
}, nil
}
// exactImageFormat attempts to match a string on word boundaries
const exactImageFormat = `\b%s\b`
func NewExactMapper(mappings map[string]string) (ManifestMapper, error) {
patterns := make(map[string]*regexp.Regexp)
for from, to := range mappings {
pattern := fmt.Sprintf(exactImageFormat, regexp.QuoteMeta(from))
re, err := regexp.Compile(pattern)
if err != nil {
return nil, err
}
patterns[to] = re
}
return func(data []byte) ([]byte, error) {
for to, pattern := range patterns {
data = pattern.ReplaceAll(data, []byte(to))
}
return data, nil
}, nil
}
func ComponentReferencesForImageStream(is *imageapi.ImageStream) (func(string) imagereference.DockerImageReference, error) {
components := make(map[string]imagereference.DockerImageReference)
for _, tag := range is.Spec.Tags {
if tag.From == nil || tag.From.Kind != "DockerImage" {
continue
}
ref, err := imagereference.Parse(tag.From.Name)
if err != nil {
return nil, fmt.Errorf("reference for %q is invalid: %v", tag.Name, err)
}
components[tag.Name] = ref
}
return func(component string) imagereference.DockerImageReference {
ref, ok := components[component]
if !ok {
panic(fmt.Errorf("unknown component %s", component))
}
return ref
}, nil
}
const (
componentVersionFormat = `([\W]|^)0\.0\.1-snapshot([a-z0-9\-]*)`
)
// NewComponentVersionsMapper substitutes strings of the form 0.0.1-snapshot with releaseName and strings
// of the form 0.0.1-snapshot-[component] with the version value located in versions, or returns an error.
// tagsByName allows the caller to return an error if references are ambiguous (two tags declare different
// version values) - if that replacement is detected and tagsByName[component] has more than one entry,
// then an error is returned by the ManifestMapper.
// If the input release name is not a semver, a request for `0.0.1-snapshot` will be left unmodified.
func NewComponentVersionsMapper(releaseName string, versions ComponentVersions, tagsByName map[string][]string) ManifestMapper {
if v, err := semver.Parse(releaseName); err == nil {
v.Build = nil
releaseName = v.String()
} else {
releaseName = ""
}
re, err := regexp.Compile(componentVersionFormat)
if err != nil {
return func([]byte) ([]byte, error) {
return nil, fmt.Errorf("component versions mapper regex: %v", err)
}
}
return func(data []byte) ([]byte, error) {
var missing []string
var conflicts []string
data = re.ReplaceAllFunc(data, func(part []byte) []byte {
matches := re.FindSubmatch(part)
if matches == nil {
return part
}
key := string(matches[2])
if len(key) == 0 && len(releaseName) > 0 {
buf := &bytes.Buffer{}
buf.Write(matches[1])
buf.WriteString(releaseName)
return buf.Bytes()
}
if !strings.HasPrefix(key, "-") {
return part
}
key = key[1:]
value, ok := versions[key]
if !ok {
missing = append(missing, key)
return part
}
if len(tagsByName[key]) > 1 {
conflicts = append(conflicts, key)
return part
}
buf := &bytes.Buffer{}
buf.Write(matches[1])
buf.WriteString(value.Version)
return buf.Bytes()
})
if len(missing) > 0 {
switch len(missing) {
case 1:
if len(missing[0]) == 0 {
return nil, fmt.Errorf("empty version references are not allowed")
}
return nil, fmt.Errorf("unknown version reference %q", missing[0])
default:
return nil, fmt.Errorf("unknown version references: %s", strings.Join(missing, ", "))
}
}
if len(conflicts) > 0 {
allImageTags := tagsByName[conflicts[0]]
sort.Strings(allImageTags)
return nil, fmt.Errorf("the version for %q is inconsistent across the referenced images: %s", conflicts[0], strings.Join(allImageTags, ", "))
}
return data, nil
}
}
var (
// reAllowedVersionKey limits the allowed component name to a strict subset
reAllowedVersionKey = regexp.MustCompile(`^[a-z0-9]+[\-a-z0-9]*[a-z0-9]+$`)
// reAllowedDisplayNameKey limits the allowed component name to a strict subset
reAllowedDisplayNameKey = regexp.MustCompile(`^[a-zA-Z0-9\-\:\s\(\)]+$`)
)
// ComponentVersion includes the version and optional display name.
type ComponentVersion struct {
Version string
DisplayName string
}
// String returns the version of this component.
func (v ComponentVersion) String() string {
return v.Version
}
// ComponentVersions is a map of component names to semantic versions. Names are
// lowercase alphanumeric and dashes. Semantic versions will have all build
// labels removed, but prerelease segments are preserved.
type ComponentVersions map[string]ComponentVersion
// OrderedKeys returns the keys in this map in lexigraphic order.
func (v ComponentVersions) OrderedKeys() []string {
keys := make([]string, 0, len(v))
for k := range v {
keys = append(keys, k)
}
sort.Strings(keys)
return keys
}
func (v ComponentVersions) String() string {
return v.VersionLabel()
}
// VersionLabel formats the ComponentVersions into a valid
// versions label.
func (v ComponentVersions) VersionLabel() string {
var keys []string
for k := range v {
keys = append(keys, k)
}
sort.Strings(keys)
buf := &bytes.Buffer{}
for i, k := range keys {
if i != 0 {
buf.WriteRune(',')
}
fmt.Fprintf(buf, "%s=%s", k, v[k].Version)
}
return buf.String()
}
// DisplayNameLabel formats the ComponentVersions into a valid display
// name label.
func (v ComponentVersions) DisplayNameLabel() string {
var keys []string
for k := range v {
keys = append(keys, k)
}
sort.Strings(keys)
buf := &bytes.Buffer{}
for i, k := range keys {
if i != 0 {
buf.WriteRune(',')
}
if len(v[k].DisplayName) == 0 {
continue
}
fmt.Fprintf(buf, "%s=%s", k, v[k].DisplayName)
}
return buf.String()
}
// parseComponentVersionsLabel returns the version labels specified in the string or
// an error. Labels are comma-delimited, key=value pairs, and surrounding whitespace is
// ignored. Names must be a-z, 0-9, or have interior dashes. All values must be
// semantic versions. The displayNames label is optional (if provided) and will be combined
// with the valid versions.
func parseComponentVersionsLabel(label, displayNames string) (ComponentVersions, error) {
label = strings.TrimSpace(label)
if len(label) == 0 {
return nil, nil
}
var names map[string]string
if len(displayNames) > 0 {
names = make(map[string]string)
for _, pair := range strings.Split(displayNames, ",") {
pair = strings.TrimSpace(pair)
parts := strings.SplitN(pair, "=", 2)
if len(parts) == 1 {
return nil, fmt.Errorf("the display name pair %q must be NAME=DISPLAYNAME", pair)
}
if len(parts[0]) < 2 {
return nil, fmt.Errorf("the version name %q must be at least 2 characters", parts[0])
}
if !reAllowedVersionKey.MatchString(parts[0]) {
return nil, fmt.Errorf("the version name %q must only be ASCII alphanumerics and internal hyphens", parts[0])
}
if !reAllowedDisplayNameKey.MatchString(parts[1]) {
return nil, fmt.Errorf("the display name %q must only be alphanumerics, spaces, and symbols in [():-]", parts[1])
}
names[parts[0]] = parts[1]
}
}
labels := make(ComponentVersions)
if len(label) == 0 {
return nil, fmt.Errorf("the version pair must be NAME=VERSION")
}
for _, pair := range strings.Split(label, ",") {
pair = strings.TrimSpace(pair)
parts := strings.SplitN(pair, "=", 2)
if len(parts) == 1 {
return nil, fmt.Errorf("the version pair %q must be NAME=VERSION", pair)
}
if len(parts[0]) < 2 {
return nil, fmt.Errorf("the version name %q must be at least 2 characters", parts[0])
}
if !reAllowedVersionKey.MatchString(parts[0]) {
return nil, fmt.Errorf("the version name %q must only be ASCII alphanumerics and internal hyphens", parts[0])
}
v, err := semver.Parse(parts[1])
if err != nil {
return nil, fmt.Errorf("the version pair %q must have a valid semantic version: %v", pair, err)
}
v.Build = nil
labels[parts[0]] = ComponentVersion{
Version: v.String(),
DisplayName: names[parts[0]],
}
}
return labels, nil
}
func ReplacementsForImageStream(is *imageapi.ImageStream, allowTags bool, fn func(component string) imagereference.DockerImageReference) (map[string]string, error) {
replacements := make(map[string]string)
for i := range is.Spec.Tags {
tag := &is.Spec.Tags[i]
if tag.From == nil || tag.From.Kind != "DockerImage" {
continue
}
oldImage := tag.From.Name
oldRef, err := imagereference.Parse(oldImage)
if err != nil {
return nil, fmt.Errorf("unable to parse image reference for tag %q from payload: %v", tag.Name, err)
}
if len(oldRef.Tag) > 0 || len(oldRef.ID) == 0 {
if !allowTags {
return nil, fmt.Errorf("image reference tag %q in payload does not point to an image digest - unable to rewrite payload", tag.Name)
}
}
ref := fn(tag.Name)
if !allowTags {
if len(ref.ID) == 0 {
ref.Tag = ""
ref.ID = oldRef.ID
}
}
newImage := ref.Exact()
replacements[oldImage] = newImage
tag.From.Name = newImage
}
if klog.V(5).Enabled() {
for k, v := range replacements {
klog.Infof("Mapping %s -> %s", k, v)
}
}
return replacements, nil
}