2017-08-25 20:08:18 +00:00
|
|
|
package dockerfile2llb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"context"
|
2017-09-11 01:11:42 +00:00
|
|
|
"encoding/json"
|
2017-09-01 23:57:22 +00:00
|
|
|
"fmt"
|
2017-12-03 05:45:41 +00:00
|
|
|
"net/url"
|
2017-08-25 20:08:18 +00:00
|
|
|
"path"
|
2017-11-07 00:25:46 +00:00
|
|
|
"path/filepath"
|
2017-08-25 20:08:18 +00:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
2017-12-08 01:33:17 +00:00
|
|
|
"time"
|
2017-08-25 20:08:18 +00:00
|
|
|
|
|
|
|
"github.com/docker/distribution/reference"
|
|
|
|
"github.com/docker/docker/builder/dockerfile/instructions"
|
|
|
|
"github.com/docker/docker/builder/dockerfile/parser"
|
2018-02-02 01:20:44 +00:00
|
|
|
"github.com/docker/docker/builder/dockerfile/shell"
|
2017-09-11 01:11:42 +00:00
|
|
|
"github.com/docker/docker/pkg/signal"
|
|
|
|
"github.com/docker/go-connections/nat"
|
2017-08-25 20:08:18 +00:00
|
|
|
"github.com/moby/buildkit/client/llb"
|
2017-12-01 01:29:57 +00:00
|
|
|
"github.com/moby/buildkit/client/llb/imagemetaresolver"
|
2017-12-08 01:33:17 +00:00
|
|
|
digest "github.com/opencontainers/go-digest"
|
|
|
|
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
|
2017-08-25 20:08:18 +00:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
"golang.org/x/sync/errgroup"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2017-09-22 17:30:30 +00:00
|
|
|
emptyImageName = "scratch"
|
|
|
|
localNameContext = "context"
|
2017-12-08 01:33:17 +00:00
|
|
|
historyComment = "buildkit.dockerfile.v0"
|
2017-08-25 20:08:18 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type ConvertOpt struct {
|
|
|
|
Target string
|
|
|
|
MetaResolver llb.ImageMetaResolver
|
2017-09-12 06:29:22 +00:00
|
|
|
BuildArgs map[string]string
|
2017-10-01 00:58:07 +00:00
|
|
|
SessionID string
|
2017-11-07 00:25:46 +00:00
|
|
|
BuildContext *llb.State
|
2017-12-14 02:49:14 +00:00
|
|
|
Excludes []string
|
2017-08-25 20:08:18 +00:00
|
|
|
}
|
|
|
|
|
2017-09-11 05:35:07 +00:00
|
|
|
func Dockerfile2LLB(ctx context.Context, dt []byte, opt ConvertOpt) (*llb.State, *Image, error) {
|
2017-08-25 20:08:18 +00:00
|
|
|
if len(dt) == 0 {
|
2017-09-11 05:35:07 +00:00
|
|
|
return nil, nil, errors.Errorf("the Dockerfile cannot be empty")
|
2017-08-25 20:08:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dockerfile, err := parser.Parse(bytes.NewReader(dt))
|
|
|
|
if err != nil {
|
2017-09-11 05:35:07 +00:00
|
|
|
return nil, nil, err
|
2017-08-25 20:08:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stages, metaArgs, err := instructions.Parse(dockerfile.AST)
|
|
|
|
if err != nil {
|
2017-09-11 05:35:07 +00:00
|
|
|
return nil, nil, err
|
2017-08-25 20:08:18 +00:00
|
|
|
}
|
|
|
|
|
2017-09-12 06:29:22 +00:00
|
|
|
for i := range metaArgs {
|
2017-09-22 17:30:30 +00:00
|
|
|
metaArgs[i] = setBuildArgValue(metaArgs[i], opt.BuildArgs)
|
2017-09-12 06:29:22 +00:00
|
|
|
}
|
|
|
|
|
2018-02-02 01:20:44 +00:00
|
|
|
shlex := shell.NewLex(dockerfile.EscapeToken)
|
2017-08-25 20:08:18 +00:00
|
|
|
|
2017-09-22 22:49:37 +00:00
|
|
|
metaResolver := opt.MetaResolver
|
|
|
|
if metaResolver == nil {
|
2017-12-01 01:29:57 +00:00
|
|
|
metaResolver = imagemetaresolver.Default()
|
2017-09-22 22:49:37 +00:00
|
|
|
}
|
|
|
|
|
2017-09-22 17:30:30 +00:00
|
|
|
var allDispatchStates []*dispatchState
|
|
|
|
dispatchStatesByName := map[string]*dispatchState{}
|
2017-08-25 20:08:18 +00:00
|
|
|
|
2017-09-22 17:30:30 +00:00
|
|
|
// set base state for every image
|
2017-08-25 20:08:18 +00:00
|
|
|
for _, st := range stages {
|
2017-09-22 17:30:30 +00:00
|
|
|
name, err := shlex.ProcessWord(st.BaseName, toEnvList(metaArgs, nil))
|
2017-09-12 06:29:22 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
st.BaseName = name
|
2017-08-25 20:08:18 +00:00
|
|
|
|
|
|
|
ds := &dispatchState{
|
|
|
|
stage: st,
|
2017-12-12 22:58:26 +00:00
|
|
|
deps: make(map[*dispatchState]struct{}),
|
2017-08-25 20:08:18 +00:00
|
|
|
}
|
2017-09-22 17:30:30 +00:00
|
|
|
if d, ok := dispatchStatesByName[st.BaseName]; ok {
|
2017-08-25 20:08:18 +00:00
|
|
|
ds.base = d
|
|
|
|
}
|
2017-09-22 17:30:30 +00:00
|
|
|
allDispatchStates = append(allDispatchStates, ds)
|
2017-08-25 20:08:18 +00:00
|
|
|
if st.Name != "" {
|
2017-09-22 17:30:30 +00:00
|
|
|
dispatchStatesByName[strings.ToLower(st.Name)] = ds
|
2017-08-25 20:08:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-12 22:58:26 +00:00
|
|
|
var target *dispatchState
|
|
|
|
if opt.Target == "" {
|
|
|
|
target = allDispatchStates[len(allDispatchStates)-1]
|
|
|
|
} else {
|
|
|
|
var ok bool
|
|
|
|
target, ok = dispatchStatesByName[strings.ToLower(opt.Target)]
|
|
|
|
if !ok {
|
|
|
|
return nil, nil, errors.Errorf("target stage %s could not be found", opt.Target)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// fill dependencies to stages so unreachable ones can avoid loading image configs
|
|
|
|
for _, d := range allDispatchStates {
|
|
|
|
for _, cmd := range d.stage.Commands {
|
|
|
|
if c, ok := cmd.(*instructions.CopyCommand); ok {
|
|
|
|
if c.From != "" {
|
|
|
|
index, err := strconv.Atoi(c.From)
|
|
|
|
if err != nil {
|
|
|
|
stn, ok := dispatchStatesByName[strings.ToLower(c.From)]
|
|
|
|
if !ok {
|
|
|
|
return nil, nil, errors.Errorf("stage %s not found", c.From)
|
|
|
|
}
|
|
|
|
d.deps[stn] = struct{}{}
|
|
|
|
} else {
|
|
|
|
if index < 0 || index >= len(allDispatchStates) {
|
|
|
|
return nil, nil, errors.Errorf("invalid stage index %d", index)
|
|
|
|
}
|
|
|
|
d.deps[allDispatchStates[index]] = struct{}{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-25 20:08:18 +00:00
|
|
|
eg, ctx := errgroup.WithContext(ctx)
|
2017-09-22 17:30:30 +00:00
|
|
|
for i, d := range allDispatchStates {
|
|
|
|
// resolve image config for every stage
|
2017-09-22 22:49:37 +00:00
|
|
|
if d.base == nil {
|
|
|
|
if d.stage.BaseName == emptyImageName {
|
|
|
|
d.state = llb.Scratch()
|
2017-12-04 03:39:43 +00:00
|
|
|
d.image = emptyImage()
|
2017-09-22 22:49:37 +00:00
|
|
|
continue
|
|
|
|
}
|
2017-08-25 20:08:18 +00:00
|
|
|
func(i int, d *dispatchState) {
|
|
|
|
eg.Go(func() error {
|
|
|
|
ref, err := reference.ParseNormalizedNamed(d.stage.BaseName)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
d.stage.BaseName = reference.TagNameOnly(ref).String()
|
2017-12-12 22:58:26 +00:00
|
|
|
if metaResolver != nil && isReachable(target, d) {
|
2017-09-22 22:49:37 +00:00
|
|
|
dgst, dt, err := metaResolver.ResolveImageConfig(ctx, d.stage.BaseName)
|
|
|
|
if err == nil { // handle the error while builder is actually running
|
|
|
|
var img Image
|
|
|
|
if err := json.Unmarshal(dt, &img); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
d.image = img
|
|
|
|
ref, err := reference.WithDigest(ref, dgst)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
d.stage.BaseName = ref.String()
|
|
|
|
_ = ref
|
2017-08-25 20:08:18 +00:00
|
|
|
}
|
|
|
|
}
|
2017-12-08 00:13:50 +00:00
|
|
|
d.state = llb.Image(d.stage.BaseName, dfCmd(d.stage.SourceCode))
|
2017-08-25 20:08:18 +00:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}(i, d)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := eg.Wait(); err != nil {
|
2017-09-11 05:35:07 +00:00
|
|
|
return nil, nil, err
|
2017-08-25 20:08:18 +00:00
|
|
|
}
|
2017-12-14 05:01:01 +00:00
|
|
|
buildContext := llb.Local(localNameContext,
|
|
|
|
llb.SessionID(opt.SessionID),
|
|
|
|
llb.ExcludePatterns(opt.Excludes),
|
|
|
|
llb.SharedKeyHint(localNameContext),
|
|
|
|
)
|
2017-11-07 00:25:46 +00:00
|
|
|
if opt.BuildContext != nil {
|
|
|
|
buildContext = *opt.BuildContext
|
|
|
|
}
|
|
|
|
|
2017-09-22 17:30:30 +00:00
|
|
|
for _, d := range allDispatchStates {
|
2017-08-25 20:08:18 +00:00
|
|
|
if d.base != nil {
|
|
|
|
d.state = d.base.state
|
2017-09-11 05:35:07 +00:00
|
|
|
d.image = clone(d.base.image)
|
2017-08-25 20:08:18 +00:00
|
|
|
}
|
|
|
|
|
2017-09-22 17:30:30 +00:00
|
|
|
// initialize base metadata from image conf
|
2017-08-25 20:08:18 +00:00
|
|
|
for _, env := range d.image.Config.Env {
|
|
|
|
parts := strings.SplitN(env, "=", 2)
|
|
|
|
v := ""
|
|
|
|
if len(parts) > 1 {
|
|
|
|
v = parts[1]
|
|
|
|
}
|
2017-12-08 01:33:17 +00:00
|
|
|
if err := dispatchEnv(d, &instructions.EnvCommand{Env: []instructions.KeyValuePair{{Key: parts[0], Value: v}}}, false); err != nil {
|
2017-09-11 05:35:07 +00:00
|
|
|
return nil, nil, err
|
2017-08-25 20:08:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if d.image.Config.WorkingDir != "" {
|
2017-12-08 01:33:17 +00:00
|
|
|
if err = dispatchWorkdir(d, &instructions.WorkdirCommand{Path: d.image.Config.WorkingDir}, false); err != nil {
|
2017-09-11 05:35:07 +00:00
|
|
|
return nil, nil, err
|
2017-08-25 20:08:18 +00:00
|
|
|
}
|
|
|
|
}
|
2017-09-22 17:30:30 +00:00
|
|
|
if d.image.Config.User != "" {
|
2017-12-08 01:33:17 +00:00
|
|
|
if err = dispatchUser(d, &instructions.UserCommand{User: d.image.Config.User}, false); err != nil {
|
2017-09-22 17:30:30 +00:00
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
}
|
2017-08-25 20:08:18 +00:00
|
|
|
|
2017-09-22 20:12:57 +00:00
|
|
|
opt := dispatchOpt{
|
|
|
|
allDispatchStates: allDispatchStates,
|
|
|
|
dispatchStatesByName: dispatchStatesByName,
|
|
|
|
metaArgs: metaArgs,
|
|
|
|
buildArgValues: opt.BuildArgs,
|
|
|
|
shlex: shlex,
|
2017-10-01 00:58:07 +00:00
|
|
|
sessionID: opt.SessionID,
|
2017-11-07 00:25:46 +00:00
|
|
|
buildContext: buildContext,
|
2017-09-22 20:12:57 +00:00
|
|
|
}
|
2017-09-12 06:29:22 +00:00
|
|
|
|
2017-09-22 20:12:57 +00:00
|
|
|
if err = dispatchOnBuild(d, d.image.Config.OnBuild, opt); err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, cmd := range d.stage.Commands {
|
|
|
|
if err := dispatch(d, cmd, opt); err != nil {
|
2017-09-11 05:35:07 +00:00
|
|
|
return nil, nil, err
|
2017-08-25 20:08:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-12 22:58:26 +00:00
|
|
|
return &target.state, &target.image, nil
|
2017-08-25 20:08:18 +00:00
|
|
|
}
|
|
|
|
|
2017-09-22 20:12:57 +00:00
|
|
|
type dispatchOpt struct {
|
|
|
|
allDispatchStates []*dispatchState
|
|
|
|
dispatchStatesByName map[string]*dispatchState
|
|
|
|
metaArgs []instructions.ArgCommand
|
|
|
|
buildArgValues map[string]string
|
2018-02-02 01:20:44 +00:00
|
|
|
shlex *shell.Lex
|
2017-10-01 00:58:07 +00:00
|
|
|
sessionID string
|
2017-11-07 00:25:46 +00:00
|
|
|
buildContext llb.State
|
2017-09-22 20:12:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func dispatch(d *dispatchState, cmd instructions.Command, opt dispatchOpt) error {
|
|
|
|
if ex, ok := cmd.(instructions.SupportsSingleWordExpansion); ok {
|
|
|
|
err := ex.Expand(func(word string) (string, error) {
|
|
|
|
return opt.shlex.ProcessWord(word, toEnvList(d.buildArgs, d.image.Config.Env))
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var err error
|
|
|
|
switch c := cmd.(type) {
|
2018-02-02 01:59:04 +00:00
|
|
|
case *instructions.MaintainerCommand:
|
|
|
|
err = dispatchMaintainer(d, c)
|
2017-09-22 20:12:57 +00:00
|
|
|
case *instructions.EnvCommand:
|
2017-12-08 01:33:17 +00:00
|
|
|
err = dispatchEnv(d, c, true)
|
2017-09-22 20:12:57 +00:00
|
|
|
case *instructions.RunCommand:
|
|
|
|
err = dispatchRun(d, c)
|
|
|
|
case *instructions.WorkdirCommand:
|
2017-12-08 01:33:17 +00:00
|
|
|
err = dispatchWorkdir(d, c, true)
|
2017-09-22 20:12:57 +00:00
|
|
|
case *instructions.AddCommand:
|
2017-12-20 04:54:26 +00:00
|
|
|
err = dispatchCopy(d, c.SourcesAndDest, opt.buildContext, true, c, "")
|
2017-09-22 20:12:57 +00:00
|
|
|
case *instructions.LabelCommand:
|
|
|
|
err = dispatchLabel(d, c)
|
|
|
|
case *instructions.OnbuildCommand:
|
|
|
|
err = dispatchOnbuild(d, c)
|
|
|
|
case *instructions.CmdCommand:
|
|
|
|
err = dispatchCmd(d, c)
|
|
|
|
case *instructions.EntrypointCommand:
|
|
|
|
err = dispatchEntrypoint(d, c)
|
|
|
|
case *instructions.HealthCheckCommand:
|
|
|
|
err = dispatchHealthcheck(d, c)
|
|
|
|
case *instructions.ExposeCommand:
|
2017-12-12 00:35:31 +00:00
|
|
|
err = dispatchExpose(d, c, opt.shlex)
|
2017-09-22 20:12:57 +00:00
|
|
|
case *instructions.UserCommand:
|
2017-12-08 01:33:17 +00:00
|
|
|
err = dispatchUser(d, c, true)
|
2017-09-22 20:12:57 +00:00
|
|
|
case *instructions.VolumeCommand:
|
|
|
|
err = dispatchVolume(d, c)
|
|
|
|
case *instructions.StopSignalCommand:
|
|
|
|
err = dispatchStopSignal(d, c)
|
|
|
|
case *instructions.ShellCommand:
|
|
|
|
err = dispatchShell(d, c)
|
|
|
|
case *instructions.ArgCommand:
|
|
|
|
err = dispatchArg(d, c, opt.metaArgs, opt.buildArgValues)
|
|
|
|
case *instructions.CopyCommand:
|
2017-11-07 00:25:46 +00:00
|
|
|
l := opt.buildContext
|
2017-09-22 20:12:57 +00:00
|
|
|
if c.From != "" {
|
|
|
|
index, err := strconv.Atoi(c.From)
|
|
|
|
if err != nil {
|
|
|
|
stn, ok := opt.dispatchStatesByName[strings.ToLower(c.From)]
|
|
|
|
if !ok {
|
|
|
|
return errors.Errorf("stage %s not found", c.From)
|
|
|
|
}
|
|
|
|
l = stn.state
|
|
|
|
} else {
|
|
|
|
if index >= len(opt.allDispatchStates) {
|
|
|
|
return errors.Errorf("invalid stage index %d", index)
|
|
|
|
}
|
|
|
|
l = opt.allDispatchStates[index].state
|
|
|
|
}
|
|
|
|
}
|
2017-12-20 04:54:26 +00:00
|
|
|
err = dispatchCopy(d, c.SourcesAndDest, l, false, c, c.Chown)
|
2017-09-22 20:12:57 +00:00
|
|
|
default:
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-08-25 20:08:18 +00:00
|
|
|
type dispatchState struct {
|
2017-12-12 22:58:26 +00:00
|
|
|
state llb.State
|
|
|
|
image Image
|
|
|
|
stage instructions.Stage
|
|
|
|
base *dispatchState
|
|
|
|
deps map[*dispatchState]struct{}
|
2017-09-22 20:12:57 +00:00
|
|
|
buildArgs []instructions.ArgCommand
|
|
|
|
}
|
|
|
|
|
|
|
|
func dispatchOnBuild(d *dispatchState, triggers []string, opt dispatchOpt) error {
|
|
|
|
for _, trigger := range triggers {
|
|
|
|
ast, err := parser.Parse(strings.NewReader(trigger))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if len(ast.AST.Children) != 1 {
|
|
|
|
return errors.New("onbuild trigger should be a single expression")
|
|
|
|
}
|
|
|
|
cmd, err := instructions.ParseCommand(ast.AST.Children[0])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := dispatch(d, cmd, opt); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
2017-08-25 20:08:18 +00:00
|
|
|
}
|
|
|
|
|
2017-12-08 01:33:17 +00:00
|
|
|
func dispatchEnv(d *dispatchState, c *instructions.EnvCommand, commit bool) error {
|
|
|
|
commitMessage := bytes.NewBufferString("ENV")
|
2017-08-25 20:08:18 +00:00
|
|
|
for _, e := range c.Env {
|
2017-12-08 01:33:17 +00:00
|
|
|
commitMessage.WriteString(" " + e.String())
|
2017-08-25 20:08:18 +00:00
|
|
|
d.state = d.state.AddEnv(e.Key, e.Value)
|
2017-09-12 06:29:22 +00:00
|
|
|
d.image.Config.Env = addEnv(d.image.Config.Env, e.Key, e.Value, true)
|
2017-08-25 20:08:18 +00:00
|
|
|
}
|
2017-12-08 01:33:17 +00:00
|
|
|
if commit {
|
|
|
|
return commitToHistory(&d.image, commitMessage.String(), false, nil)
|
|
|
|
}
|
2017-08-25 20:08:18 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-09-22 20:12:57 +00:00
|
|
|
func dispatchRun(d *dispatchState, c *instructions.RunCommand) error {
|
2017-08-25 20:08:18 +00:00
|
|
|
var args []string = c.CmdLine
|
|
|
|
if c.PrependShell {
|
|
|
|
args = append(defaultShell(), strings.Join(args, " "))
|
2017-09-01 23:57:22 +00:00
|
|
|
} else if d.image.Config.Entrypoint != nil {
|
|
|
|
args = append(d.image.Config.Entrypoint, args...)
|
2017-08-25 20:08:18 +00:00
|
|
|
}
|
2017-09-12 06:29:22 +00:00
|
|
|
opt := []llb.RunOption{llb.Args(args)}
|
2017-09-22 20:12:57 +00:00
|
|
|
for _, arg := range d.buildArgs {
|
2017-09-12 06:29:22 +00:00
|
|
|
opt = append(opt, llb.AddEnv(arg.Key, getArgValue(arg)))
|
|
|
|
}
|
2017-12-08 00:13:50 +00:00
|
|
|
opt = append(opt, dfCmd(c))
|
2017-09-12 06:29:22 +00:00
|
|
|
d.state = d.state.Run(opt...).Root()
|
2017-12-08 01:33:17 +00:00
|
|
|
return commitToHistory(&d.image, "RUN "+runCommandString(args, d.buildArgs), true, &d.state)
|
2017-08-25 20:08:18 +00:00
|
|
|
}
|
|
|
|
|
2017-12-08 01:33:17 +00:00
|
|
|
func dispatchWorkdir(d *dispatchState, c *instructions.WorkdirCommand, commit bool) error {
|
2017-08-25 20:08:18 +00:00
|
|
|
d.state = d.state.Dir(c.Path)
|
|
|
|
wd := c.Path
|
|
|
|
if !path.IsAbs(c.Path) {
|
|
|
|
wd = path.Join("/", d.image.Config.WorkingDir, wd)
|
|
|
|
}
|
|
|
|
d.image.Config.WorkingDir = wd
|
2017-12-08 01:33:17 +00:00
|
|
|
if commit {
|
|
|
|
return commitToHistory(&d.image, "WORKDIR "+wd, false, nil)
|
|
|
|
}
|
2017-08-25 20:08:18 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-12-20 04:54:26 +00:00
|
|
|
func dispatchCopy(d *dispatchState, c instructions.SourcesAndDest, sourceState llb.State, isAddCommand bool, cmdToPrint interface{}, chown string) error {
|
2017-12-05 00:13:52 +00:00
|
|
|
// TODO: this should use CopyOp instead. Current implementation is inefficient
|
2017-12-20 04:54:26 +00:00
|
|
|
img := llb.Image("tonistiigi/copy@sha256:9e6b90a83acc95831c81a0c9c6e45e27b439c19e7974f34f258971e454c8b793")
|
2017-09-01 23:57:22 +00:00
|
|
|
|
2017-09-22 17:30:30 +00:00
|
|
|
dest := path.Join("/dest", pathRelativeToWorkingDir(d.state, c.Dest()))
|
2017-11-07 00:28:30 +00:00
|
|
|
if c.Dest() == "." || c.Dest()[len(c.Dest())-1] == filepath.Separator {
|
|
|
|
dest += string(filepath.Separator)
|
|
|
|
}
|
2017-09-01 23:57:22 +00:00
|
|
|
args := []string{"copy"}
|
2017-12-05 00:13:52 +00:00
|
|
|
if isAddCommand {
|
|
|
|
args = append(args, "--unpack")
|
|
|
|
}
|
2017-12-08 01:33:17 +00:00
|
|
|
|
2017-12-20 04:54:26 +00:00
|
|
|
mounts := make([]llb.RunOption, 0, len(c.Sources()))
|
|
|
|
if chown != "" {
|
|
|
|
args = append(args, fmt.Sprintf("--chown=%s", chown))
|
|
|
|
_, _, err := parseUser(chown)
|
|
|
|
if err != nil {
|
|
|
|
mounts = append(mounts, llb.AddMount("/etc/passwd", d.state, llb.SourcePath("/etc/passwd"), llb.Readonly))
|
|
|
|
mounts = append(mounts, llb.AddMount("/etc/group", d.state, llb.SourcePath("/etc/group"), llb.Readonly))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-08 01:33:17 +00:00
|
|
|
commitMessage := bytes.NewBufferString("")
|
|
|
|
if isAddCommand {
|
|
|
|
commitMessage.WriteString("ADD")
|
|
|
|
} else {
|
|
|
|
commitMessage.WriteString("COPY")
|
|
|
|
}
|
|
|
|
|
2017-09-01 23:57:22 +00:00
|
|
|
for i, src := range c.Sources() {
|
2017-12-08 01:33:17 +00:00
|
|
|
commitMessage.WriteString(" " + src)
|
2018-02-02 00:05:24 +00:00
|
|
|
if isAddCommand && (strings.HasPrefix(src, "http://") || strings.HasPrefix(src, "https://")) {
|
2017-12-03 05:45:41 +00:00
|
|
|
u, err := url.Parse(src)
|
2017-12-04 03:38:37 +00:00
|
|
|
f := "__unnamed__"
|
2017-12-03 05:45:41 +00:00
|
|
|
if err == nil {
|
2017-12-04 03:38:37 +00:00
|
|
|
if base := path.Base(u.Path); base != "." && base != "/" {
|
2017-12-03 05:45:41 +00:00
|
|
|
f = base
|
|
|
|
}
|
|
|
|
}
|
|
|
|
target := path.Join(fmt.Sprintf("/src-%d", i), f)
|
|
|
|
args = append(args, target)
|
2017-12-08 00:13:50 +00:00
|
|
|
mounts = append(mounts, llb.AddMount(target, llb.HTTP(src, llb.Filename(f), dfCmd(c)), llb.Readonly))
|
2017-12-03 05:45:41 +00:00
|
|
|
} else {
|
|
|
|
d, f := splitWildcards(src)
|
2017-12-26 23:41:09 +00:00
|
|
|
targetCmd := fmt.Sprintf("/src-%d", i)
|
|
|
|
targetMount := targetCmd
|
2017-12-03 05:45:41 +00:00
|
|
|
if f == "" {
|
|
|
|
f = path.Base(src)
|
2017-12-26 23:41:09 +00:00
|
|
|
targetMount = path.Join(targetMount, f)
|
2017-12-03 05:45:41 +00:00
|
|
|
}
|
2017-12-26 23:41:09 +00:00
|
|
|
targetCmd = path.Join(targetCmd, f)
|
|
|
|
args = append(args, targetCmd)
|
|
|
|
mounts = append(mounts, llb.AddMount(targetMount, sourceState, llb.SourcePath(d), llb.Readonly))
|
2017-08-25 20:08:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-08 01:33:17 +00:00
|
|
|
commitMessage.WriteString(" " + c.Dest())
|
|
|
|
|
2017-09-01 23:57:22 +00:00
|
|
|
args = append(args, dest)
|
2017-12-08 00:13:50 +00:00
|
|
|
run := img.Run(append([]llb.RunOption{llb.Args(args), dfCmd(cmdToPrint)}, mounts...)...)
|
2017-08-25 20:08:18 +00:00
|
|
|
d.state = run.AddMount("/dest", d.state)
|
2017-12-08 01:33:17 +00:00
|
|
|
|
|
|
|
return commitToHistory(&d.image, commitMessage.String(), true, &d.state)
|
2017-08-25 20:08:18 +00:00
|
|
|
}
|
|
|
|
|
2018-02-02 01:59:04 +00:00
|
|
|
func dispatchMaintainer(d *dispatchState, c *instructions.MaintainerCommand) error {
|
2017-08-25 20:08:18 +00:00
|
|
|
d.image.Author = c.Maintainer
|
2017-12-08 01:33:17 +00:00
|
|
|
return commitToHistory(&d.image, fmt.Sprintf("MAINTAINER %v", c.Maintainer), false, nil)
|
2017-08-25 20:08:18 +00:00
|
|
|
}
|
|
|
|
|
2017-09-11 01:11:42 +00:00
|
|
|
func dispatchLabel(d *dispatchState, c *instructions.LabelCommand) error {
|
2017-12-08 01:33:17 +00:00
|
|
|
commitMessage := bytes.NewBufferString("LABEL")
|
2017-08-25 20:08:18 +00:00
|
|
|
if d.image.Config.Labels == nil {
|
|
|
|
d.image.Config.Labels = make(map[string]string)
|
|
|
|
}
|
|
|
|
for _, v := range c.Labels {
|
|
|
|
d.image.Config.Labels[v.Key] = v.Value
|
2017-12-08 01:33:17 +00:00
|
|
|
commitMessage.WriteString(" " + v.String())
|
2017-08-25 20:08:18 +00:00
|
|
|
}
|
2017-12-08 01:33:17 +00:00
|
|
|
return commitToHistory(&d.image, commitMessage.String(), false, nil)
|
2017-08-25 20:08:18 +00:00
|
|
|
}
|
|
|
|
|
2017-09-11 01:11:42 +00:00
|
|
|
func dispatchOnbuild(d *dispatchState, c *instructions.OnbuildCommand) error {
|
|
|
|
d.image.Config.OnBuild = append(d.image.Config.OnBuild, c.Expression)
|
|
|
|
return nil
|
|
|
|
}
|
2017-08-25 20:08:18 +00:00
|
|
|
|
|
|
|
func dispatchCmd(d *dispatchState, c *instructions.CmdCommand) error {
|
|
|
|
var args []string = c.CmdLine
|
|
|
|
if c.PrependShell {
|
|
|
|
args = append(defaultShell(), strings.Join(args, " "))
|
|
|
|
}
|
|
|
|
d.image.Config.Cmd = args
|
2017-09-11 01:11:42 +00:00
|
|
|
d.image.Config.ArgsEscaped = true
|
2017-12-08 01:33:17 +00:00
|
|
|
return commitToHistory(&d.image, fmt.Sprintf("CMD %q", args), false, nil)
|
2017-09-11 01:11:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func dispatchEntrypoint(d *dispatchState, c *instructions.EntrypointCommand) error {
|
|
|
|
var args []string = c.CmdLine
|
|
|
|
if c.PrependShell {
|
|
|
|
args = append(defaultShell(), strings.Join(args, " "))
|
|
|
|
}
|
|
|
|
d.image.Config.Entrypoint = args
|
2017-12-08 01:33:17 +00:00
|
|
|
return commitToHistory(&d.image, fmt.Sprintf("ENTRYPOINT %q", args), false, nil)
|
2017-09-11 01:11:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func dispatchHealthcheck(d *dispatchState, c *instructions.HealthCheckCommand) error {
|
|
|
|
d.image.Config.Healthcheck = &HealthConfig{
|
|
|
|
Test: c.Health.Test,
|
|
|
|
Interval: c.Health.Interval,
|
|
|
|
Timeout: c.Health.Timeout,
|
|
|
|
StartPeriod: c.Health.StartPeriod,
|
|
|
|
Retries: c.Health.Retries,
|
|
|
|
}
|
2017-12-08 01:33:17 +00:00
|
|
|
return commitToHistory(&d.image, fmt.Sprintf("HEALTHCHECK %q", d.image.Config.Healthcheck), false, nil)
|
2017-09-11 01:11:42 +00:00
|
|
|
}
|
|
|
|
|
2018-02-02 01:20:44 +00:00
|
|
|
func dispatchExpose(d *dispatchState, c *instructions.ExposeCommand, shlex *shell.Lex) error {
|
2017-12-12 00:35:31 +00:00
|
|
|
ports := []string{}
|
|
|
|
for _, p := range c.Ports {
|
|
|
|
ps, err := shlex.ProcessWords(p, toEnvList(d.buildArgs, d.image.Config.Env))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
ports = append(ports, ps...)
|
|
|
|
}
|
|
|
|
c.Ports = ports
|
|
|
|
|
2017-09-11 01:11:42 +00:00
|
|
|
ps, _, err := nat.ParsePortSpecs(c.Ports)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if d.image.Config.ExposedPorts == nil {
|
|
|
|
d.image.Config.ExposedPorts = make(map[string]struct{})
|
|
|
|
}
|
|
|
|
for p := range ps {
|
|
|
|
d.image.Config.ExposedPorts[string(p)] = struct{}{}
|
|
|
|
}
|
|
|
|
|
2017-12-08 01:33:17 +00:00
|
|
|
return commitToHistory(&d.image, fmt.Sprintf("EXPOSE %v", ps), false, nil)
|
2017-09-11 01:11:42 +00:00
|
|
|
}
|
2018-02-02 01:20:44 +00:00
|
|
|
|
2017-12-08 01:33:17 +00:00
|
|
|
func dispatchUser(d *dispatchState, c *instructions.UserCommand, commit bool) error {
|
2017-12-11 23:08:35 +00:00
|
|
|
d.state = d.state.User(c.User)
|
2017-09-11 01:11:42 +00:00
|
|
|
d.image.Config.User = c.User
|
2017-12-08 01:33:17 +00:00
|
|
|
if commit {
|
|
|
|
return commitToHistory(&d.image, fmt.Sprintf("USER %v", c.User), false, nil)
|
|
|
|
}
|
2017-09-11 01:11:42 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func dispatchVolume(d *dispatchState, c *instructions.VolumeCommand) error {
|
|
|
|
if d.image.Config.Volumes == nil {
|
|
|
|
d.image.Config.Volumes = map[string]struct{}{}
|
|
|
|
}
|
|
|
|
for _, v := range c.Volumes {
|
|
|
|
if v == "" {
|
|
|
|
return errors.New("VOLUME specified can not be an empty string")
|
|
|
|
}
|
|
|
|
d.image.Config.Volumes[v] = struct{}{}
|
|
|
|
}
|
2017-12-08 01:33:17 +00:00
|
|
|
return commitToHistory(&d.image, fmt.Sprintf("VOLUME %v", c.Volumes), false, nil)
|
2017-09-11 01:11:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func dispatchStopSignal(d *dispatchState, c *instructions.StopSignalCommand) error {
|
|
|
|
if _, err := signal.ParseSignal(c.Signal); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
d.image.Config.StopSignal = c.Signal
|
2017-12-08 01:33:17 +00:00
|
|
|
return commitToHistory(&d.image, fmt.Sprintf("STOPSIGNAL %v", c.Signal), false, nil)
|
2017-09-11 01:11:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func dispatchShell(d *dispatchState, c *instructions.ShellCommand) error {
|
|
|
|
d.image.Config.Shell = c.Shell
|
2017-12-08 01:33:17 +00:00
|
|
|
return commitToHistory(&d.image, fmt.Sprintf("SHELL %v", c.Shell), false, nil)
|
2017-08-25 20:08:18 +00:00
|
|
|
}
|
2017-09-01 23:57:22 +00:00
|
|
|
|
2017-09-22 20:12:57 +00:00
|
|
|
func dispatchArg(d *dispatchState, c *instructions.ArgCommand, metaArgs []instructions.ArgCommand, buildArgValues map[string]string) error {
|
2017-12-08 01:33:17 +00:00
|
|
|
commitStr := "ARG " + c.Key
|
|
|
|
if c.Value != nil {
|
|
|
|
commitStr += "=" + *c.Value
|
|
|
|
}
|
2017-09-12 06:29:22 +00:00
|
|
|
if c.Value == nil {
|
|
|
|
for _, ma := range metaArgs {
|
|
|
|
if ma.Key == c.Key {
|
|
|
|
c.Value = ma.Value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-22 20:12:57 +00:00
|
|
|
d.buildArgs = append(d.buildArgs, setBuildArgValue(*c, buildArgValues))
|
2017-12-08 01:33:17 +00:00
|
|
|
return commitToHistory(&d.image, commitStr, false, nil)
|
2017-09-12 06:29:22 +00:00
|
|
|
}
|
|
|
|
|
2017-09-22 17:30:30 +00:00
|
|
|
func pathRelativeToWorkingDir(s llb.State, p string) string {
|
|
|
|
if path.IsAbs(p) {
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
return path.Join(s.GetDir(), p)
|
|
|
|
}
|
|
|
|
|
2017-09-01 23:57:22 +00:00
|
|
|
func splitWildcards(name string) (string, string) {
|
|
|
|
i := 0
|
|
|
|
for ; i < len(name); i++ {
|
|
|
|
ch := name[i]
|
|
|
|
if ch == '\\' {
|
|
|
|
i++
|
|
|
|
} else if ch == '*' || ch == '?' || ch == '[' {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if i == len(name) {
|
|
|
|
return name, ""
|
|
|
|
}
|
2017-12-26 23:41:09 +00:00
|
|
|
|
|
|
|
base := path.Base(name[:i])
|
|
|
|
if name[:i] == "" || strings.HasSuffix(name[:i], string(filepath.Separator)) {
|
|
|
|
base = ""
|
|
|
|
}
|
|
|
|
return path.Dir(name[:i]), base + name[i:]
|
2017-09-01 23:57:22 +00:00
|
|
|
}
|
2017-09-11 01:11:42 +00:00
|
|
|
|
2017-09-12 06:29:22 +00:00
|
|
|
func addEnv(env []string, k, v string, override bool) []string {
|
2017-09-11 01:11:42 +00:00
|
|
|
gotOne := false
|
2017-09-12 06:29:22 +00:00
|
|
|
for i, envVar := range env {
|
2017-09-11 01:11:42 +00:00
|
|
|
envParts := strings.SplitN(envVar, "=", 2)
|
|
|
|
compareFrom := envParts[0]
|
2018-02-02 01:20:44 +00:00
|
|
|
if shell.EqualEnvKeys(compareFrom, k) {
|
2017-09-12 06:29:22 +00:00
|
|
|
if override {
|
|
|
|
env[i] = k + "=" + v
|
|
|
|
}
|
2017-09-11 01:11:42 +00:00
|
|
|
gotOne = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !gotOne {
|
2017-09-12 06:29:22 +00:00
|
|
|
env = append(env, k+"="+v)
|
2017-09-11 01:11:42 +00:00
|
|
|
}
|
2017-09-12 06:29:22 +00:00
|
|
|
return env
|
2017-09-11 01:11:42 +00:00
|
|
|
}
|
|
|
|
|
2017-09-22 17:30:30 +00:00
|
|
|
func setBuildArgValue(c instructions.ArgCommand, values map[string]string) instructions.ArgCommand {
|
2017-09-12 06:29:22 +00:00
|
|
|
if v, ok := values[c.Key]; ok {
|
|
|
|
c.Value = &v
|
|
|
|
}
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
2017-09-22 17:30:30 +00:00
|
|
|
func toEnvList(args []instructions.ArgCommand, env []string) []string {
|
2017-09-12 06:29:22 +00:00
|
|
|
for _, arg := range args {
|
|
|
|
env = addEnv(env, arg.Key, getArgValue(arg), false)
|
|
|
|
}
|
|
|
|
return env
|
|
|
|
}
|
|
|
|
|
|
|
|
func getArgValue(arg instructions.ArgCommand) string {
|
|
|
|
v := ""
|
|
|
|
if arg.Value != nil {
|
|
|
|
v = *arg.Value
|
|
|
|
}
|
|
|
|
return v
|
|
|
|
}
|
2017-12-08 00:13:50 +00:00
|
|
|
|
|
|
|
func dfCmd(cmd interface{}) llb.MetadataOpt {
|
2017-12-08 01:33:17 +00:00
|
|
|
// TODO: add fmt.Stringer to instructions.Command to remove interface{}
|
2017-12-08 00:13:50 +00:00
|
|
|
var cmdStr string
|
|
|
|
if cmd, ok := cmd.(fmt.Stringer); ok {
|
|
|
|
cmdStr = cmd.String()
|
|
|
|
}
|
|
|
|
if cmd, ok := cmd.(string); ok {
|
|
|
|
cmdStr = cmd
|
|
|
|
}
|
|
|
|
return llb.WithDescription(map[string]string{
|
|
|
|
"com.docker.dockerfile.v1.command": cmdStr,
|
|
|
|
})
|
|
|
|
}
|
2017-12-08 01:33:17 +00:00
|
|
|
|
|
|
|
func runCommandString(args []string, buildArgs []instructions.ArgCommand) string {
|
|
|
|
var tmpBuildEnv []string
|
|
|
|
for _, arg := range buildArgs {
|
|
|
|
tmpBuildEnv = append(tmpBuildEnv, arg.Key+"="+getArgValue(arg))
|
|
|
|
}
|
|
|
|
if len(tmpBuildEnv) > 0 {
|
|
|
|
tmpBuildEnv = append([]string{fmt.Sprintf("|%d", len(tmpBuildEnv))}, tmpBuildEnv...)
|
|
|
|
}
|
|
|
|
|
|
|
|
return strings.Join(append(tmpBuildEnv, args...), " ")
|
|
|
|
}
|
|
|
|
|
|
|
|
func commitToHistory(img *Image, msg string, withLayer bool, st *llb.State) error {
|
|
|
|
if st != nil {
|
|
|
|
def, err := st.Marshal()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
msg += " # buildkit:" + digest.FromBytes(def.Def[len(def.Def)-1]).String()
|
|
|
|
}
|
|
|
|
|
|
|
|
tm := time.Now().UTC()
|
|
|
|
img.History = append(img.History, ocispec.History{
|
|
|
|
Created: &tm,
|
|
|
|
CreatedBy: msg,
|
|
|
|
Comment: historyComment,
|
|
|
|
EmptyLayer: !withLayer,
|
|
|
|
})
|
|
|
|
return nil
|
|
|
|
}
|
2017-12-12 22:58:26 +00:00
|
|
|
|
|
|
|
func isReachable(from, to *dispatchState) (ret bool) {
|
|
|
|
if from == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if from == to || isReachable(from.base, to) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
for d := range from.deps {
|
|
|
|
if isReachable(d, to) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
2017-12-20 04:54:26 +00:00
|
|
|
|
|
|
|
func parseUser(str string) (uid uint32, gid uint32, err error) {
|
|
|
|
if str == "" {
|
|
|
|
return 0, 0, nil
|
|
|
|
}
|
|
|
|
parts := strings.SplitN(str, ":", 2)
|
|
|
|
for i, v := range parts {
|
|
|
|
switch i {
|
|
|
|
case 0:
|
|
|
|
uid, err = parseUID(v)
|
|
|
|
if err != nil {
|
|
|
|
return 0, 0, err
|
|
|
|
}
|
|
|
|
if len(parts) == 1 {
|
|
|
|
gid = uid
|
|
|
|
}
|
|
|
|
case 1:
|
|
|
|
gid, err = parseUID(v)
|
|
|
|
if err != nil {
|
|
|
|
return 0, 0, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseUID(str string) (uint32, error) {
|
|
|
|
if str == "root" {
|
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
uid, err := strconv.ParseUint(str, 10, 32)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
return uint32(uid), nil
|
|
|
|
}
|