forked from GoogleCloudPlatform/cloud-build-local
-
Notifications
You must be signed in to change notification settings - Fork 0
/
localbuilder_main.go
359 lines (316 loc) · 11.7 KB
/
localbuilder_main.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
// Copyright 2017 Google, Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Package main runs the gcb local builder.
package main // import "github.com/GoogleCloudPlatform/cloud-build-local"
import (
"bufio"
"bytes"
"context"
"flag"
"fmt"
"io"
"log"
"os"
"path/filepath"
"strings"
"time"
"github.com/spf13/afero"
computeMetadata "cloud.google.com/go/compute/metadata"
"golang.org/x/oauth2"
"github.com/pborman/uuid"
"github.com/GoogleCloudPlatform/cloud-build-local/build"
"github.com/GoogleCloudPlatform/cloud-build-local/common"
"github.com/GoogleCloudPlatform/cloud-build-local/config"
"github.com/GoogleCloudPlatform/cloud-build-local/gcloud"
"github.com/GoogleCloudPlatform/cloud-build-local/metadata"
"github.com/GoogleCloudPlatform/cloud-build-local/runner"
"github.com/GoogleCloudPlatform/cloud-build-local/validate"
"github.com/GoogleCloudPlatform/cloud-build-local/volume"
)
const (
volumeNamePrefix = "cloudbuild_vol_"
gcbDockerVersion = "19.03.8"
metadataImageName = "gcr.io/cloud-builders/metadata"
)
var (
configFile = flag.String("config", "cloudbuild.yaml", "File path of the config file")
substitutions = flag.String("substitutions", "", `key=value pairs where the key is already defined in the build request; separate multiple substitutions with a comma, for example: _FOO=bar,_BAZ=baz`)
dryRun = flag.Bool("dryrun", true, "Lints the config file and prints but does not run the commands; Local Builder runs the commands only when dryrun is set to false")
push = flag.Bool("push", false, "Pushes the images to the registry")
noSource = flag.Bool("no-source", false, "Prevents Local Builder from using source for this build")
bindMountSource = flag.Bool("bind-mount-source", false, "Bind mounts the source directory under /workspace rather "+
" than copying its contents into /workspace. It is an error to use this flag with --noSource")
writeWorkspace = flag.String("write-workspace", "", "Copies the workspace directory to this host directory")
help = flag.Bool("help", false, "Prints the help message")
versionFlag = flag.Bool("version", false, "Prints the local builder version")
)
func exitUsage(msg string) {
log.Fatalf("%s\nUsage: %s --config=cloudbuild.yaml [--substitutions=_FOO=bar] [--dryrun=true/false] [--push=true/false] [--bind-mount-source=true/false] source", msg, os.Args[0])
}
func main() {
flag.Parse()
ctx := context.Background()
args := flag.Args()
if *help {
flag.PrintDefaults()
return
}
if *versionFlag {
log.Printf("Version: %s", version)
return
}
nbSource := 1
if *noSource {
if *bindMountSource {
exitUsage("Cannot use --bind-mount-source with --no-source.")
}
nbSource = 0
}
if len(args) < nbSource {
exitUsage("Specify a source")
} else if len(args) > nbSource {
if nbSource == 1 {
exitUsage("There should be only one positional argument. Pass all the flags before the source.")
} else {
exitUsage("no-source flag can't be used along with source.")
}
}
source := ""
if nbSource == 1 {
source = args[0]
}
if *configFile == "" {
exitUsage("Specify a config file")
}
log.SetOutput(os.Stdout)
if err := run(ctx, source); err != nil {
log.Fatal(err)
}
}
// run method is used to encapsulate the local builder process, being
// able to return errors to the main function which will then panic. So the
// run function can probably run all the defer functions in any case.
func run(ctx context.Context, source string) error {
// Create a runner.
r := &runner.RealRunner{
DryRun: *dryRun,
}
// Clean leftovers from a previous build.
if err := common.Clean(ctx, r); err != nil {
return fmt.Errorf("Error cleaning: %v", err)
}
// Check installed docker versions.
if !*dryRun {
dockerServerVersion, dockerClientVersion, err := dockerVersions(ctx, r)
if err != nil {
return fmt.Errorf("Error getting local docker versions: %v", err)
}
if dockerServerVersion != gcbDockerVersion {
log.Printf("Warning: The server docker version installed (%s) is different from the one used in GCB (%s)", dockerServerVersion, gcbDockerVersion)
}
if dockerClientVersion != gcbDockerVersion {
log.Printf("Warning: The client docker version installed (%s) is different from the one used in GCB (%s)", dockerClientVersion, gcbDockerVersion)
}
}
// Load config file into a build struct.
buildConfig, err := config.Load(*configFile)
if err != nil {
return fmt.Errorf("Error loading config file: %v", err)
}
// When the build is run locally, there will be no build ID. Assign a unique value.
buildConfig.Id = "localbuild_" + uuid.New()
// Get the ProjectId to feed both the build and the metadata server.
// This command uses a runner without dryrun to return the real project.
projectInfo, err := gcloud.ProjectInfo(ctx, &runner.RealRunner{})
if err != nil {
log.Printf("Warning: Could not get project information from gcloud: %v", err)
} else {
buildConfig.ProjectId = projectInfo.ProjectID
}
substMap := make(map[string]string)
if *substitutions != "" {
substMap, err = common.ParseSubstitutionsFlag(*substitutions)
if err != nil {
return fmt.Errorf("Error parsing substitutions flag: %v", err)
}
}
if err = common.SubstituteAndValidate(buildConfig, substMap); err != nil {
return fmt.Errorf("Error merging substitutions and validating build: %v", err)
}
var volumeName string
if *bindMountSource {
if isDir, err := validate.IsDirectory(source); err != nil {
return fmt.Errorf("Error getting directory: %v", err)
} else if isDir {
if volumeName, err = filepath.Abs(source); err != nil {
return fmt.Errorf("Error getting absolute path: %v", err)
}
} else {
return fmt.Errorf("--bind-mount-source can only be used with directories")
}
}
// Create a volume, a helper container to copy the source, and defer cleaning if we're not bind mounting the source
// directory.
if volumeName == "" {
volumeName = fmt.Sprintf("%s%s", volumeNamePrefix, uuid.New())
if !*dryRun {
vol := volume.New(volumeName, r)
if err := vol.Setup(ctx); err != nil {
return fmt.Errorf("Error creating docker volume: %v", err)
}
if source != "" {
// If the source is a directory, only copy the inner content.
if isDir, err := validate.IsDirectory(source); err != nil {
return fmt.Errorf("Error getting directory: %v", err)
} else if isDir {
source = filepath.Clean(source) + "/."
}
if err := vol.Copy(ctx, source); err != nil {
return fmt.Errorf("Error copying source to docker volume: %v", err)
}
}
defer vol.Close(ctx)
if *writeWorkspace != "" {
defer vol.Export(ctx, *writeWorkspace)
}
}
}
b := build.New(r, *buildConfig, nil /* TokenSource */, stdoutLogger{}, volumeName, afero.NewOsFs(), true, *push, *dryRun)
// Note: we explicitly call cancel() below rather than awaiting the defer cancel()
// because we want cancel() to happen before other defer functions. We defer to
// ensure that cancel() will be called on all code paths.
cancelableCtx, cancel := context.WithCancel(ctx)
defer cancel()
if !*dryRun {
// Set initial Docker credentials.
tok, err := gcloud.AccessToken(ctx, r)
if err != nil {
return fmt.Errorf("Error getting access token to set docker credentials: %v", err)
}
if err := b.SetDockerAccessToken(ctx, tok.AccessToken); err != nil {
return fmt.Errorf("Error setting docker credentials: %v", err)
}
b.TokenSource = oauth2.StaticTokenSource(&oauth2.Token{
AccessToken: tok.AccessToken,
})
// On GCE, do not create a spoofed metadata server, use the existing one.
// The cloudbuild network is still needed, with a private subnet.
var mdTokenSetter metadataTokenSetter
if computeMetadata.OnGCE() {
if err := metadata.CreateCloudbuildNetwork(ctx, r, "172.22.0.0/16"); err != nil {
return fmt.Errorf("Error creating network: %v", err)
}
defer metadata.CleanCloudbuildNetwork(ctx, r)
mdTokenSetter = nopTokenSetter{}
} else {
if err := metadata.StartLocalServer(ctx, r, metadataImageName); err != nil {
return fmt.Errorf("Failed to start spoofed metadata server: %v", err)
}
log.Println("Started spoofed metadata server")
metadataUpdater := metadata.RealUpdater{Local: true}
defer metadataUpdater.Stop(ctx, r)
// Feed the project info to the metadata server.
metadataUpdater.SetProjectInfo(ctx, projectInfo)
mdTokenSetter = metadataUpdater
}
// Keep credentials up-to-date.
go func(ctx context.Context, tok *metadata.Token) {
var refresh time.Duration
for {
select {
case <-time.After(refresh):
case <-ctx.Done():
return
}
tok, err := gcloud.AccessToken(ctx, r)
if err != nil {
log.Printf("Error getting gcloud token: %v", err)
continue
}
// Supply token to the metadata server.
if err := mdTokenSetter.SetToken(ctx, tok); err != nil {
log.Printf("Error updating token in metadata server: %v", err)
}
// Keep a fresh token in ~/.docker/config.json, which in turn is
// available to build steps. Note that use of `gcloud auth` to switch
// accounts mid-build is not supported.
if err := b.UpdateDockerAccessToken(ctx, tok.AccessToken); err != nil {
log.Printf("Error updating docker credentials: %v", err)
}
b.TokenSource = oauth2.StaticTokenSource(&oauth2.Token{AccessToken: tok.AccessToken})
refresh = common.RefreshDuration(tok.Expiry)
}
}(cancelableCtx, tok)
}
b.Start(ctx)
<-b.Done
cancel() // Cease background token updates.
if b.GetStatus().BuildStatus == build.StatusError {
return fmt.Errorf("Build finished with ERROR status")
}
if *dryRun {
log.Printf("Warning: this was a dry run; add --dryrun=false if you want to run the build locally.")
}
return nil
}
// dockerVersion gets local server and client docker versions.
func dockerVersions(ctx context.Context, r runner.Runner) (string, string, error) {
cmd := []string{"docker", "version", "--format", "{{.Server.Version}}"}
var serverb bytes.Buffer
if err := r.Run(ctx, cmd, nil, &serverb, os.Stderr, ""); err != nil {
return "", "", err
}
cmd = []string{"docker", "version", "--format", "{{.Client.Version}}"}
var clientb bytes.Buffer
if err := r.Run(ctx, cmd, nil, &clientb, os.Stderr, ""); err != nil {
return "", "", err
}
return strings.TrimSpace(serverb.String()), strings.TrimSpace(clientb.String()), nil
}
type stdoutLogger struct{}
func (stdoutLogger) MakeWriter(prefix string, _ int, stdout bool) io.Writer {
if stdout {
return prefixWriter{os.Stdout, prefix}
}
return prefixWriter{os.Stderr, prefix}
}
func (stdoutLogger) Close() error { return nil }
func (stdoutLogger) WriteMainEntry(msg string) { fmt.Fprintln(os.Stdout, msg) }
type prefixWriter struct {
w interface {
WriteString(string) (int, error)
}
prefix string
}
func (pw prefixWriter) Write(b []byte) (int, error) {
var buf bytes.Buffer
if n, err := buf.Write(b); err != nil {
return n, err
}
scanner := bufio.NewScanner(&buf)
for scanner.Scan() {
line := scanner.Text()
line = fmt.Sprintf("%s: %s\n", pw.prefix, line)
pw.w.WriteString(line)
}
if err := scanner.Err(); err != nil {
return -1, err
}
return len(b), nil
}
type metadataTokenSetter interface {
SetToken(context.Context, *metadata.Token) error
}
type nopTokenSetter struct{}
func (nopTokenSetter) SetToken(context.Context, *metadata.Token) error { return nil }