This repository was archived by the owner on Feb 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgenerate.go
208 lines (173 loc) · 7.22 KB
/
generate.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
package main
import (
"context"
"encoding/json"
"fmt"
"io"
"os"
"regexp"
"time"
"github.com/asottile/dockerfile"
intoto "github.com/in-toto/in-toto-golang/in_toto"
"github.com/spf13/cobra"
"github.com/johnsonshi/image-manifest-layer-history/image/client"
"github.com/johnsonshi/image-manifest-layer-history/image/history"
"github.com/johnsonshi/image-manifest-layer-history/image/slsa"
)
type generateCmdOpts struct {
stdin io.Reader
stdout io.Writer
stderr io.Writer
username string
password string
imageRef string
dockerfilePath string
outputFilePath string
simplifiedJsonOutput bool
slsaProvenanceJsonOutput bool
attributionAnnotations []string
}
func newGenerateCmd(stdin io.Reader, stdout io.Writer, stderr io.Writer, args []string) *cobra.Command {
opts := &generateCmdOpts{
stdin: stdin,
stdout: stdout,
stderr: stderr,
}
cobraCmd := &cobra.Command{
Use: "generate",
Short: "Generate the history (including the exact Dockerfile commands) for each OCI Image Manifest Layer of a container image.",
Example: `generate -u username -p password -i imageRef -d dockerfilePath -o outputFilePath [-s] [-a "key: value"]`,
RunE: func(_ *cobra.Command, args []string) error {
return opts.run()
},
}
f := cobraCmd.Flags()
f.StringVarP(&opts.username, "username", "u", "", "username to use for authentication with the registry")
cobraCmd.MarkFlagRequired("username")
// TODO add support for --password-stdin (reading password from stdin) for more secure password input.
f.StringVarP(&opts.password, "password", "p", "", "password to use for authentication with the registry")
cobraCmd.MarkFlagRequired("password")
cobraCmd.MarkFlagsRequiredTogether("username", "password")
f.StringVarP(&opts.imageRef, "image-ref", "i", "", "full image reference including registry, repository, and tag/digest, e.g. myregistry.azurecr.io/library/ubuntu:22.04 or myregistry.azurecr.io/library/ubuntu@sha256:123456")
cobraCmd.MarkFlagRequired("image-ref")
f.StringVarP(&opts.dockerfilePath, "dockerfile", "d", "", "path to the Dockerfile")
cobraCmd.MarkFlagRequired("dockerfile")
f.StringVarP(&opts.outputFilePath, "output-file", "o", "", "optional path to an output file")
f.BoolVar(&opts.simplifiedJsonOutput, "simplified-json", false, "optional flag to output in simplified JSON format")
f.BoolVar(&opts.slsaProvenanceJsonOutput, "slsa-provenance-json", false, "optional flag to output in SLSA Provenance JSON format")
cobraCmd.MarkFlagsMutuallyExclusive("simplified-json", "slsa-provenance-json")
f.StringArrayVarP(&opts.attributionAnnotations, "attribution-annotation", "a", []string{}, "optional flag to add 'string-key:string-value' attributions to the manifest layer history (only added for layers not 'FROM <primary-base-image>')")
return cobraCmd
}
func (opts *generateCmdOpts) run() error {
ctx := context.Background()
annotationsMap, err := getAnnotationsMap(opts.attributionAnnotations)
if err != nil {
return err
}
imageClient, err := client.NewImageClient(opts.username, opts.password, opts.imageRef)
if err != nil {
return err
}
// imageLayerHistory is sorted from top layers (most recent layers) to bottom layers (base image layers).
imageLayerHistory, err := imageClient.GetImageLayerHistory(ctx)
if err != nil {
return err
}
imageManifest, err := imageClient.GetImageManifest(ctx)
if err != nil {
return err
}
// dockerfileCommands is sorted based on the original order of commands in the Dockerfile.
// E.g. if the Dockerfile contains the following commands:
// FROM ubuntu:22.04
// RUN apt-get update
// RUN apt-get install -y vim
// then dockerfileCommands will be:
// []dockerfile.Command{
// dockerfile.Command{Original: "FROM ubuntu:22.04", Cmd: "FROM", Value: []string{"ubuntu:22.04"}},
// dockerfile.Command{Original: "RUN apt-get update", Cmd: "RUN", Value: []string{"apt-get", "update"}},
// dockerfile.Command{Original: "RUN apt-get install -y vim", Cmd: "run", Value: []string{"apt-get", "install", "-y", "vim"}},
// }
dockerfileCommands, err := dockerfile.ParseFile(opts.dockerfilePath)
if err != nil {
return err
}
h := history.ImageHistory{
ImageLayerHistory: imageLayerHistory,
ImageManifest: imageManifest,
DockerfileCommands: dockerfileCommands,
}
manifestLayerHistory, err := h.GetImageManifestLayerDockerfileCommandsHistory(annotationsMap)
if err != nil {
return err
}
return opts.writeManifestLayerHistory(manifestLayerHistory)
}
func (opts *generateCmdOpts) writeManifestLayerHistory(manifestLayerHistory []history.ImageManifestLayerDockerfileCommandsHistory) error {
output, err := json.MarshalIndent(manifestLayerHistory, "", " ")
if err != nil {
return err
}
if opts.simplifiedJsonOutput {
simplified := history.GetSimplifiedImageManifestLayerDockerfileCommandsHistory(manifestLayerHistory)
output, err = json.MarshalIndent(simplified, "", " ")
if err != nil {
return err
}
} else if opts.slsaProvenanceJsonOutput {
var imageSlsaProvenanceStatements []*intoto.ProvenanceStatement
timeNow := time.Now()
for _, layerHistory := range manifestLayerHistory {
layerSlsaProvenance := slsa.ImageManifestLayerSlsaProvenance{
LayerHistory: layerHistory,
BuilderID: "Build pipeline URI.",
BuildType: "Type of image build, such as 'dockerfile-build', 'buildkit-build', 'bazel-build', etc.",
BuildInvocationID: "Build pipeline ID number",
BuildStartedOn: &timeNow,
BuildFinishedOn: &timeNow,
RepoURIContainingImageSource: "URI to Git repo of image config. For Dockerfile builds, this is a git URI to the Dockerfile (e.g. github.com/org/repo/tree/main/Dockerfile)",
RepoGitCommit: "Git commit SHA that kicked off the build.",
RepoPathToImageSource: "Path to image config in the repo (e.g. path/to/Dockerfile)",
}
layerSlsaProvenanceStatement, err := layerSlsaProvenance.GetImageManifestLayerSlsaProvenance()
if err != nil {
return err
}
imageSlsaProvenanceStatements = append(imageSlsaProvenanceStatements, layerSlsaProvenanceStatement)
}
output, err = json.MarshalIndent(imageSlsaProvenanceStatements, "", " ")
if err != nil {
return err
}
}
output = append(output, '\n')
if opts.outputFilePath != "" {
return writeToFile(opts.outputFilePath, output)
}
_, err = opts.stdout.Write(output)
return err
}
// getAnnotationsMap returns a map of annotations from a slice of annotation strings.
// strings in the slice should conform to the following format: "key: value".
func getAnnotationsMap(annotationSlice []string) (map[string]string, error) {
re := regexp.MustCompile(`:\s*`)
annotationsMap := make(map[string]string)
for _, rawAnnotation := range annotationSlice {
annotation := re.Split(rawAnnotation, 2)
if len(annotation) != 2 {
return nil, fmt.Errorf("invalid annotation: %s", rawAnnotation)
}
annotationsMap[annotation[0]] = annotation[1]
}
return annotationsMap, nil
}
func writeToFile(path string, data []byte) error {
f, err := os.Create(path)
if err != nil {
return err
}
defer f.Close()
_, err = f.Write(data)
return err
}