-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbuildkit.go
1182 lines (976 loc) · 28.3 KB
/
buildkit.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
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package runtimes
import (
"context"
"embed"
"encoding/json"
"fmt"
"io"
"io/fs"
"os"
"path"
"path/filepath"
"strings"
"sync"
"syscall"
"text/tabwriter"
"time"
"github.com/adrg/xdg"
"github.com/containerd/containerd/platforms"
dockerconfig "github.com/docker/cli/cli/config"
"github.com/docker/distribution/reference"
"github.com/hashicorp/go-multierror"
kitdclient "github.com/moby/buildkit/client"
"github.com/moby/buildkit/client/llb"
"github.com/moby/buildkit/frontend/dockerfile/dockerignore"
gwclient "github.com/moby/buildkit/frontend/gateway/client"
"github.com/moby/buildkit/session"
"github.com/moby/buildkit/session/auth/authprovider"
"github.com/moby/buildkit/session/secrets/secretsprovider"
"github.com/moby/buildkit/solver/pb"
"github.com/moby/buildkit/util/entitlements"
"github.com/morikuni/aec"
ocispecs "github.com/opencontainers/image-spec/specs-go/v1"
"github.com/tonistiigi/units"
"github.com/vito/progrock"
"github.com/vito/progrock/graph"
"go.uber.org/zap"
"github.com/vito/bass/pkg/bass"
"github.com/vito/bass/pkg/basstls"
"github.com/vito/bass/pkg/cli"
"github.com/vito/bass/pkg/ioctx"
"github.com/vito/bass/pkg/runtimes/util/buildkitd"
"github.com/vito/bass/pkg/zapctx"
)
const buildkitProduct = "bass"
type BuildkitConfig struct {
Debug bool `json:"debug,omitempty"`
Addr string `json:"addr,omitempty"`
Installation string `json:"installation,omitempty"`
DisableCache bool `json:"disable_cache,omitempty"`
CertsDir string `json:"certs_dir,omitempty"`
}
var _ bass.Runtime = &Buildkit{}
//go:embed bin/exe.*
var shims embed.FS
const BuildkitName = "buildkit"
const shimExePath = "/bass/shim"
const workDir = "/bass/work"
const ioDir = "/bass/io"
const inputFile = "/bass/io/in"
const outputFile = "/bass/io/out"
const caFile = "/bass/ca.crt"
const digestBucket = "_digests"
const configBucket = "_configs"
var allShims = map[string][]byte{}
func init() {
RegisterRuntime(BuildkitName, NewBuildkit)
files, err := shims.ReadDir("bin")
if err == nil {
for _, f := range files {
content, err := shims.ReadFile(path.Join("bin", f.Name()))
if err == nil {
allShims[f.Name()] = content
}
}
}
}
type Buildkit struct {
Config BuildkitConfig
Client *kitdclient.Client
Platform ocispecs.Platform
authp session.Attachable
}
func NewBuildkit(ctx context.Context, _ bass.RuntimePool, cfg *bass.Scope) (bass.Runtime, error) {
var config BuildkitConfig
if cfg != nil {
if err := cfg.Decode(&config); err != nil {
return nil, fmt.Errorf("buildkit runtime config: %w", err)
}
}
if config.CertsDir == "" {
config.CertsDir = basstls.DefaultDir
}
if config.Installation == "" {
config.Installation = "bass-buildkitd"
}
err := basstls.Init(config.CertsDir)
if err != nil {
return nil, fmt.Errorf("init tls depot: %w", err)
}
client, err := dialBuildkit(ctx, config.Addr, config.Installation, config.CertsDir)
if err != nil {
return nil, fmt.Errorf("dial buildkit: %w", err)
}
workers, err := client.ListWorkers(context.TODO())
if err != nil {
return nil, fmt.Errorf("list buildkit workers: %w", err)
}
var platform ocispecs.Platform
var checkSame platforms.Matcher
for _, w := range workers {
if checkSame != nil && !checkSame.Match(w.Platforms[0]) {
return nil, fmt.Errorf("TODO: workers have different platforms: %s != %s", w.Platforms[0], platform)
}
platform = w.Platforms[0]
checkSame = platforms.Only(platform)
}
return &Buildkit{
Config: config,
Client: client,
Platform: platform,
authp: authprovider.NewDockerAuthProvider(dockerconfig.LoadDefaultConfigFile(os.Stderr)),
}, nil
}
func dialBuildkit(ctx context.Context, addr string, installation string, certsDir string) (*kitdclient.Client, error) {
if addr == "" {
addr = os.Getenv("BUILDKIT_HOST")
}
if addr == "" {
sockPath, err := xdg.SearchConfigFile("bass/buildkitd.sock")
if err == nil {
// support respecting XDG_RUNTIME_DIR instead of assuming /run/
addr = "unix://" + sockPath
}
sockPath, err = xdg.SearchRuntimeFile("buildkit/buildkitd.sock")
if err == nil {
// support respecting XDG_RUNTIME_DIR instead of assuming /run/
addr = "unix://" + sockPath
}
}
var errs error
if addr == "" {
var startErr error
addr, startErr = buildkitd.Start(ctx, installation, certsDir)
if startErr != nil {
errs = multierror.Append(startErr)
}
}
client, err := kitdclient.New(context.TODO(), addr)
if err != nil {
errs = multierror.Append(errs, err)
return nil, errs
}
return client, nil
}
func (runtime *Buildkit) Resolve(ctx context.Context, imageRef bass.ImageRef) (bass.ImageRef, error) {
// track dependent services
ctx, svcs := bass.TrackRuns(ctx)
defer svcs.StopAndWait()
ref, err := runtime.ref(ctx, imageRef)
if err != nil {
// TODO: it might make sense to resolve an OCI archive ref to a digest too
return bass.ImageRef{}, fmt.Errorf("resolve ref %v: %w", imageRef, err)
}
// convert 'ubuntu' to 'docker.io/library/ubuntu:latest'
normalized, err := reference.ParseNormalizedNamed(ref)
if err != nil {
return bass.ImageRef{}, fmt.Errorf("normalize ref: %w", err)
}
statusProxy := forwardStatus(progrock.RecorderFromContext(ctx))
defer statusProxy.Wait()
doBuild := func(ctx context.Context, gw gwclient.Client) (*gwclient.Result, error) {
digest, _, err := gw.ResolveImageConfig(ctx, normalized.String(), llb.ResolveImageConfigOpt{
Platform: &runtime.Platform,
})
if err != nil {
return nil, err
}
imageRef.Digest = digest.String()
return &gwclient.Result{}, nil
}
_, err = runtime.Client.Build(ctx, kitdclient.SolveOpt{
Session: []session.Attachable{
runtime.authp,
},
}, buildkitProduct, doBuild, statusProxy.Writer())
if err != nil {
return bass.ImageRef{}, statusProxy.NiceError("resolve failed", err)
}
return imageRef, nil
}
func (runtime *Buildkit) Run(ctx context.Context, thunk bass.Thunk) error {
ctx, svcs := bass.TrackRuns(ctx)
defer svcs.StopAndWait()
return runtime.build(
ctx,
thunk,
func(st llb.ExecState, _ string) marshalable {
return st.GetMount(ioDir)
},
nil, // exports
)
}
func (runtime *Buildkit) Start(ctx context.Context, thunk bass.Thunk) (StartResult, error) {
ctx, stop := context.WithCancel(ctx)
host := thunk.Name()
health := runtime.newHealth(host, thunk.Ports)
runs := bass.RunsFromContext(ctx)
checked := make(chan error, 1)
runs.Go(stop, func() error {
checked <- health.Check(ctx)
return nil
})
exited := make(chan error, 1)
runs.Go(stop, func() error {
exited <- runtime.build(
ctx,
thunk,
func(st llb.ExecState, _ string) marshalable {
return st.GetMount(ioDir)
},
nil, // exports
)
return nil
})
select {
case <-checked:
result := StartResult{
Ports: PortInfos{},
}
for _, port := range thunk.Ports {
result.Ports[port.Name] = bass.Bindings{
"host": bass.String(host),
"port": bass.Int(port.Port),
}.Scope()
}
return result, nil
case err := <-exited:
stop() // interrupt healthcheck
if err != nil {
return StartResult{}, err
}
return StartResult{}, fmt.Errorf("service exited before healthcheck")
}
}
func (runtime *Buildkit) Read(ctx context.Context, w io.Writer, thunk bass.Thunk) error {
ctx, svcs := bass.TrackRuns(ctx)
defer svcs.StopAndWait()
hash, err := thunk.Hash()
if err != nil {
return err
}
tmp, err := os.MkdirTemp("", "thunk-"+hash)
if err != nil {
return err
}
defer os.RemoveAll(tmp)
err = runtime.build(
ctx,
thunk,
func(st llb.ExecState, _ string) marshalable {
return st.GetMount(ioDir)
},
[]kitdclient.ExportEntry{
{
Type: kitdclient.ExporterLocal,
OutputDir: tmp,
},
},
llb.AddEnv("_BASS_OUTPUT", outputFile),
)
if err != nil {
return err
}
response, err := os.Open(filepath.Join(tmp, filepath.Base(outputFile)))
if err == nil {
defer response.Close()
_, err = io.Copy(w, response)
if err != nil {
return fmt.Errorf("read response: %w", err)
}
}
return nil
}
type marshalable interface {
Marshal(ctx context.Context, co ...llb.ConstraintsOpt) (*llb.Definition, error)
}
func (runtime *Buildkit) Export(ctx context.Context, w io.Writer, thunk bass.Thunk) error {
ctx, svcs := bass.TrackRuns(ctx)
defer svcs.StopAndWait()
return runtime.build(
ctx,
thunk,
func(st llb.ExecState, _ string) marshalable { return st },
[]kitdclient.ExportEntry{
{
Type: kitdclient.ExporterOCI,
Output: func(map[string]string) (io.WriteCloser, error) {
return nopCloser{w}, nil
},
},
},
)
}
func (runtime *Buildkit) ExportPath(ctx context.Context, w io.Writer, tp bass.ThunkPath) error {
ctx, svcs := bass.TrackRuns(ctx)
defer svcs.StopAndWait()
thunk := tp.Thunk
path := tp.Path
return runtime.build(
ctx,
thunk,
func(st llb.ExecState, sp string) marshalable {
copyOpt := &llb.CopyInfo{}
if path.FilesystemPath().IsDir() {
copyOpt.CopyDirContentsOnly = true
}
return llb.Scratch().File(
llb.Copy(st.GetMount(workDir), filepath.Join(sp, path.FilesystemPath().FromSlash()), ".", copyOpt),
llb.WithCustomNamef("[hide] copy %s", path.Slash()),
)
},
[]kitdclient.ExportEntry{
{
Type: kitdclient.ExporterTar,
Output: func(map[string]string) (io.WriteCloser, error) {
return nopCloser{w}, nil
},
},
},
)
}
func (runtime *Buildkit) Prune(ctx context.Context, opts bass.PruneOpts) error {
stderr := ioctx.StderrFromContext(ctx)
tw := tabwriter.NewWriter(stderr, 2, 8, 2, ' ', 0)
ch := make(chan kitdclient.UsageInfo)
printed := make(chan struct{})
total := int64(0)
go func() {
defer close(printed)
for du := range ch {
line := fmt.Sprintf("pruned %s", du.ID)
if du.LastUsedAt != nil {
line += fmt.Sprintf("\tuses: %d\tlast used: %s ago", du.UsageCount, time.Since(*du.LastUsedAt).Truncate(time.Second))
}
line += fmt.Sprintf("\tsize: %.2f", units.Bytes(du.Size))
line += fmt.Sprintf("\t%s", aec.LightBlackF.Apply(du.Description))
fmt.Fprintln(tw, line)
total += du.Size
}
}()
kitdOpts := []kitdclient.PruneOption{
kitdclient.WithKeepOpt(opts.KeepDuration, opts.KeepBytes),
}
if opts.All {
kitdOpts = append(kitdOpts, kitdclient.PruneAll)
}
err := runtime.Client.Prune(ctx, ch, kitdOpts...)
close(ch)
<-printed
if err != nil {
return err
}
fmt.Fprintf(tw, "total: %.2f\n", units.Bytes(total))
return tw.Flush()
}
func (runtime *Buildkit) Close() error {
return runtime.Client.Close()
}
func (runtime *Buildkit) build(
ctx context.Context,
thunk bass.Thunk,
transform func(llb.ExecState, string) marshalable,
exports []kitdclient.ExportEntry,
runOpts ...llb.RunOption,
) error {
var def *llb.Definition
var secrets map[string][]byte
var localDirs map[string]string
var allowed []entitlements.Entitlement
statusProxy := forwardStatus(progrock.RecorderFromContext(ctx))
defer statusProxy.Wait()
// build llb definition using the remote gateway for image resolution
_, err := runtime.Client.Build(ctx, kitdclient.SolveOpt{
Session: []session.Attachable{runtime.authp},
}, buildkitProduct, func(ctx context.Context, gw gwclient.Client) (*gwclient.Result, error) {
b := runtime.newBuilder(ctx, gw)
st, sp, needsInsecure, err := b.llb(ctx, thunk, runOpts...)
if err != nil {
return nil, err
}
if needsInsecure {
allowed = append(allowed, entitlements.EntitlementSecurityInsecure)
}
localDirs = b.localDirs
secrets = b.secrets
def, err = transform(st, sp).Marshal(ctx)
if err != nil {
return nil, err
}
return &gwclient.Result{}, nil
}, statusProxy.Writer())
if err != nil {
return statusProxy.NiceError("llb build failed", err)
}
_, err = runtime.Client.Solve(ctx, def, kitdclient.SolveOpt{
LocalDirs: localDirs,
AllowedEntitlements: allowed,
Session: []session.Attachable{
runtime.authp,
secretsprovider.FromMap(secrets),
},
Exports: exports,
}, statusProxy.Writer())
if err != nil {
return statusProxy.NiceError("build failed", err)
}
return nil
}
func result(ctx context.Context, gw gwclient.Client, st marshalable) (*gwclient.Result, error) {
def, err := st.Marshal(ctx)
if err != nil {
return nil, err
}
return gw.Solve(ctx, gwclient.SolveRequest{
Definition: def.ToPB(),
})
}
type portHealthChecker struct {
runtime *Buildkit
host string
ports []bass.ThunkPort
}
func (runtime *Buildkit) newHealth(host string, ports []bass.ThunkPort) *portHealthChecker {
return &portHealthChecker{
runtime: runtime,
host: host,
ports: ports,
}
}
func (d *portHealthChecker) Check(ctx context.Context) error {
_, err := d.runtime.Client.Build(ctx, kitdclient.SolveOpt{
Session: []session.Attachable{
d.runtime.authp,
},
}, buildkitProduct, d.doBuild, nil)
return err
}
func (d *portHealthChecker) doBuild(ctx context.Context, gw gwclient.Client) (*gwclient.Result, error) {
shimExe, err := d.runtime.shim()
if err != nil {
return nil, err
}
shimRes, err := result(ctx, gw, shimExe)
if err != nil {
return nil, err
}
scratchRes, err := result(ctx, gw, llb.Scratch())
if err != nil {
return nil, err
}
container, err := gw.NewContainer(ctx, gwclient.NewContainerRequest{
Mounts: []gwclient.Mount{
{
Dest: "/",
MountType: pb.MountType_BIND,
Ref: scratchRes.Ref,
},
{
Dest: shimExePath,
MountType: pb.MountType_BIND,
Ref: shimRes.Ref,
Selector: "run",
},
},
})
if err != nil {
return nil, err
}
// NB: use a different ctx than the one that'll be interrupted for anything
// that needs to run as part of post-interruption cleanup
cleanupCtx := context.Background()
defer container.Release(cleanupCtx)
args := []string{shimExePath, "check", d.host}
for _, port := range d.ports {
args = append(args, fmt.Sprintf("%s:%d", port.Name, port.Port))
}
proc, err := container.Start(cleanupCtx, gwclient.StartRequest{
Args: args,
Stdout: nopCloser{ioctx.StderrFromContext(ctx)},
Stderr: nopCloser{ioctx.StderrFromContext(ctx)},
})
if err != nil {
return nil, err
}
exited := make(chan error, 1)
go func() {
exited <- proc.Wait()
}()
select {
case err := <-exited:
if err != nil {
return nil, err
}
return &gwclient.Result{}, nil
case <-ctx.Done():
err := proc.Signal(cleanupCtx, syscall.SIGKILL)
if err != nil {
return nil, fmt.Errorf("interrupt check: %w", err)
}
<-exited
return nil, ctx.Err()
}
}
type buildkitBuilder struct {
runtime *Buildkit
resolver llb.ImageMetaResolver
secrets map[string][]byte
localDirs map[string]string
}
func (runtime *Buildkit) newBuilder(ctx context.Context, resolver llb.ImageMetaResolver) *buildkitBuilder {
return &buildkitBuilder{
runtime: runtime,
resolver: resolver,
secrets: map[string][]byte{},
localDirs: map[string]string{},
}
}
func (b *buildkitBuilder) llb(ctx context.Context, thunk bass.Thunk, extraOpts ...llb.RunOption) (llb.ExecState, string, bool, error) {
cmd, err := NewCommand(ctx, b.runtime, thunk)
if err != nil {
return llb.ExecState{}, "", false, err
}
imageRef, runState, sourcePath, needsInsecure, err := b.image(ctx, thunk.Image)
if err != nil {
return llb.ExecState{}, "", false, err
}
id, err := thunk.Hash()
if err != nil {
return llb.ExecState{}, "", false, err
}
cmdPayload, err := bass.MarshalJSON(cmd)
if err != nil {
return llb.ExecState{}, "", false, err
}
shimExe, err := b.runtime.shim()
if err != nil {
return llb.ExecState{}, "", false, err
}
rootCA, err := os.ReadFile(basstls.CACert(b.runtime.Config.CertsDir))
if err != nil {
return llb.ExecState{}, "", false, err
}
runOpt := []llb.RunOption{
llb.WithCustomName(thunk.Cmdline()),
// NB: this is load-bearing; it's what busts the cache with different labels
llb.Hostname(id),
llb.AddMount("/tmp", llb.Scratch(), llb.Tmpfs()),
llb.AddMount("/dev/shm", llb.Scratch(), llb.Tmpfs()),
llb.AddMount(ioDir, llb.Scratch().File(
llb.Mkfile("in", 0600, cmdPayload),
llb.WithCustomName("[hide] mount command json"),
)),
llb.AddMount(shimExePath, shimExe, llb.SourcePath("run")),
llb.AddMount(caFile, llb.Scratch().File(
llb.Mkfile("ca.crt", 0600, rootCA),
llb.WithCustomName("[hide] mount bass ca"),
), llb.SourcePath("ca.crt")),
llb.With(llb.Dir(workDir)),
llb.Args([]string{shimExePath, "run", inputFile}),
}
if thunk.TLS != nil {
crt, key, err := basstls.Generate(b.runtime.Config.CertsDir, id)
if err != nil {
return llb.ExecState{}, "", false, fmt.Errorf("tls: generate: %w", err)
}
crtContent, err := crt.Export()
if err != nil {
return llb.ExecState{}, "", false, fmt.Errorf("export crt: %w", err)
}
keyContent, err := key.ExportPrivate()
if err != nil {
return llb.ExecState{}, "", false, fmt.Errorf("export key: %w", err)
}
runOpt = append(runOpt,
llb.AddMount(
thunk.TLS.Cert.FromSlash(),
llb.Scratch().File(
llb.Mkfile(thunk.TLS.Cert.Name(), 0600, crtContent),
llb.WithCustomName("[hide] mount thunk tls cert"),
),
llb.SourcePath(thunk.TLS.Cert.Name()),
),
llb.AddMount(
thunk.TLS.Key.FromSlash(),
llb.Scratch().File(
llb.Mkfile(thunk.TLS.Key.Name(), 0600, keyContent),
llb.WithCustomName("[hide] mount thunk tls key"),
),
llb.SourcePath(thunk.TLS.Key.Name()),
),
)
}
if b.runtime.Config.Debug {
runOpt = append(runOpt, llb.AddEnv("_BASS_DEBUG", "1"))
}
if thunk.Insecure {
needsInsecure = true
runOpt = append(runOpt,
llb.WithCgroupParent(id),
llb.Security(llb.SecurityModeInsecure))
}
var remountedWorkdir bool
for _, mount := range cmd.Mounts {
var targetPath string
if filepath.IsAbs(mount.Target) {
targetPath = mount.Target
} else {
targetPath = filepath.Join(workDir, mount.Target)
}
mountOpt, sp, ni, err := b.initializeMount(ctx, mount.Source, targetPath)
if err != nil {
return llb.ExecState{}, "", false, err
}
if targetPath == workDir {
remountedWorkdir = true
sourcePath = sp
}
if ni {
needsInsecure = true
}
runOpt = append(runOpt, mountOpt)
}
if !remountedWorkdir {
if sourcePath != "" {
// NB: could just call SourcePath with "", but this is to ensure there's
// code coverage
runOpt = append(runOpt, llb.AddMount(workDir, runState, llb.SourcePath(sourcePath)))
} else {
runOpt = append(runOpt, llb.AddMount(workDir, runState))
}
}
if b.runtime.Config.DisableCache {
runOpt = append(runOpt, llb.IgnoreCache)
}
runOpt = append(runOpt, extraOpts...)
return imageRef.Run(runOpt...), sourcePath, needsInsecure, nil
}
func (runtime *Buildkit) shim() (llb.State, error) {
shimExe, found := allShims["exe."+runtime.Platform.Architecture]
if !found {
return llb.State{}, fmt.Errorf("no shim found for %s", runtime.Platform.Architecture)
}
return llb.Scratch().File(
llb.Mkfile("/run", 0755, shimExe),
llb.WithCustomName("[hide] load bass shim"),
), nil
}
func (r *Buildkit) ref(ctx context.Context, imageRef bass.ImageRef) (string, error) {
if imageRef.Repository.Addr != nil {
addr := imageRef.Repository.Addr
result, err := r.Start(ctx, addr.Thunk)
if err != nil {
return "", err
}
info, found := result.Ports[addr.Port]
if !found {
zapctx.FromContext(ctx).Error("unknown port",
zap.Any("thunk", addr.Thunk),
zap.Any("ports", result.Ports))
return "", fmt.Errorf("unknown port: %s", addr.Port)
}
repo, err := addr.Render(info)
if err != nil {
return "", err
}
imageRef.Repository.Static = repo
}
return imageRef.Ref()
}
func (b *buildkitBuilder) image(ctx context.Context, image *bass.ThunkImage) (llb.State, llb.State, string, bool, error) {
if image == nil {
// TODO: test
return llb.Scratch(), llb.Scratch(), "", false, nil
}
if image.Ref != nil {
ref, err := b.runtime.ref(ctx, *image.Ref)
if err != nil {
return llb.State{}, llb.State{}, "", false, err
}
return llb.Image(
ref,
llb.WithMetaResolver(b.resolver),
llb.Platform(b.runtime.Platform),
), llb.Scratch(), "", false, nil
}
if image.Thunk != nil {
execState, sourcePath, needsInsecure, err := b.llb(ctx, *image.Thunk)
if err != nil {
return llb.State{}, llb.State{}, "", false, fmt.Errorf("image thunk llb: %w", err)
}
return execState.State, execState.GetMount(workDir), sourcePath, needsInsecure, nil
}
if image.Archive != nil {
return b.unpackImageArchive(ctx, image.Archive.File, image.Archive.Tag)
}
return llb.State{}, llb.State{}, "", false, fmt.Errorf("unsupported image type: %+v", image)
}
func (b *buildkitBuilder) unpackImageArchive(ctx context.Context, thunkPath bass.ThunkPath, tag string) (llb.State, llb.State, string, bool, error) {
shimExe, err := b.runtime.shim()
if err != nil {
return llb.State{}, llb.State{}, "", false, err
}
thunkSt, baseSourcePath, needsInsecure, err := b.llb(ctx, thunkPath.Thunk)
if err != nil {
return llb.State{}, llb.State{}, "", false, fmt.Errorf("thunk llb: %w", err)
}
sourcePath := filepath.Join(baseSourcePath, thunkPath.Path.FilesystemPath().FromSlash())
configSt := llb.Scratch().Run(
llb.AddMount("/shim", shimExe, llb.SourcePath("run")),
llb.AddMount(
"/image.tar",
thunkSt.GetMount(workDir),
llb.SourcePath(sourcePath),
),
llb.AddMount("/config", llb.Scratch()),
llb.Args([]string{"/shim", "get-config", "/image.tar", tag, "/config"}),
)
unpackSt := llb.Scratch().Run(
llb.AddMount("/shim", shimExe, llb.SourcePath("run")),
llb.AddMount(
"/image.tar",
thunkSt.GetMount(workDir),
llb.SourcePath(sourcePath),
),
llb.AddMount("/rootfs", llb.Scratch()),
llb.Args([]string{"/shim", "unpack", "/image.tar", tag, "/rootfs"}),
)
image := unpackSt.GetMount("/rootfs")
var allowed []entitlements.Entitlement
if needsInsecure {
allowed = append(allowed, entitlements.EntitlementSecurityInsecure)
}
statusProxy := forwardStatus(progrock.RecorderFromContext(ctx))
defer statusProxy.Wait()
_, err = b.runtime.Client.Build(ctx, kitdclient.SolveOpt{
LocalDirs: b.localDirs,
AllowedEntitlements: allowed,
Session: []session.Attachable{
b.runtime.authp,
secretsprovider.FromMap(b.secrets),
},
}, buildkitProduct, func(ctx context.Context, gw gwclient.Client) (*gwclient.Result, error) {
def, err := configSt.GetMount("/config").Marshal(ctx, llb.WithCaps(gw.BuildOpts().LLBCaps))
if err != nil {
return nil, err
}
res, err := gw.Solve(ctx, gwclient.SolveRequest{
Definition: def.ToPB(),
})
if err != nil {
return nil, err
}
singleRef, err := res.SingleRef()
if err != nil {
return nil, fmt.Errorf("get single ref: %w", err)
}
cfg, err := singleRef.ReadFile(ctx, gwclient.ReadRequest{Filename: "/config.json"})
if err != nil {
return nil, fmt.Errorf("read config.json: %w", err)
}
var iconf ocispecs.ImageConfig
err = json.Unmarshal(cfg, &iconf)
if err != nil {
return nil, fmt.Errorf("unmarshal runtime config: %w", err)
}
for _, env := range iconf.Env {
parts := strings.SplitN(env, "=", 2)
if len(parts[0]) > 0 {
var v string
if len(parts) > 1 {
v = parts[1]
}
image = image.AddEnv(parts[0], v)
}
}
return &gwclient.Result{}, nil
}, statusProxy.Writer())
if err != nil {
return llb.State{}, llb.State{}, "", false, statusProxy.NiceError("oci unpack failed", err)
}
return image, llb.Scratch(), "", needsInsecure, nil
}
func (b *buildkitBuilder) initializeMount(ctx context.Context, source bass.ThunkMountSource, targetPath string) (llb.RunOption, string, bool, error) {
if source.ThunkPath != nil {
thunkSt, baseSourcePath, needsInsecure, err := b.llb(ctx, source.ThunkPath.Thunk)
if err != nil {
return nil, "", false, fmt.Errorf("thunk llb: %w", err)
}
sourcePath := filepath.Join(baseSourcePath, source.ThunkPath.Path.FilesystemPath().FromSlash())
return llb.AddMount(
targetPath,
thunkSt.GetMount(workDir),
llb.SourcePath(sourcePath),
), sourcePath, needsInsecure, nil
}
if source.HostPath != nil {
contextDir := source.HostPath.ContextDir
b.localDirs[contextDir] = source.HostPath.ContextDir
var excludes []string
ignorePath := filepath.Join(contextDir, ".bassignore")
ignore, err := os.Open(ignorePath)
if err == nil {
excludes, err = dockerignore.ReadAll(ignore)
if err != nil {
return nil, "", false, fmt.Errorf("parse %s: %w", ignorePath, err)
}
}
sourcePath := source.HostPath.Path.FilesystemPath().FromSlash()
return llb.AddMount(
targetPath,
llb.Scratch().File(llb.Copy(
llb.Local(
contextDir,
llb.ExcludePatterns(excludes),