2015-09-05 15:49:06 -04:00
|
|
|
// Package dockerfile is the evaluation step in the Dockerfile parse/evaluate pipeline.
|
2014-08-07 01:56:44 -04:00
|
|
|
//
|
|
|
|
// It incorporates a dispatch table based on the parser.Node values (see the
|
|
|
|
// parser package for more information) that are yielded from the parser itself.
|
2017-04-13 14:37:32 -04:00
|
|
|
// Calling newBuilder with the BuildOpts struct can be used to customize the
|
2014-08-07 01:56:44 -04:00
|
|
|
// experience for execution purposes only. Parsing is controlled in the parser
|
2015-12-13 11:00:39 -05:00
|
|
|
// package, and this division of responsibility should be respected.
|
2014-08-07 01:56:44 -04:00
|
|
|
//
|
|
|
|
// Please see the jump table targets for the actual invocations, most of which
|
|
|
|
// will call out to the functions in internals.go to deal with their tasks.
|
|
|
|
//
|
|
|
|
// ONBUILD is a special case, which is covered in the onbuild() func in
|
|
|
|
// dispatchers.go.
|
|
|
|
//
|
|
|
|
// The evaluator uses the concept of "steps", which are usually each processable
|
|
|
|
// line in the Dockerfile. Each step is numbered and certain actions are taken
|
|
|
|
// before and after each step, such as creating an image ID and removing temporary
|
|
|
|
// containers and images. Note that ONBUILD creates a kinda-sorta "sub run" which
|
|
|
|
// includes its own set of steps (usually only one of them).
|
2015-09-05 15:49:06 -04:00
|
|
|
package dockerfile
|
2014-08-05 16:17:40 -04:00
|
|
|
|
|
|
|
import (
|
2017-04-11 18:17:02 -04:00
|
|
|
"bytes"
|
2014-08-05 16:17:40 -04:00
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
2017-04-11 14:34:05 -04:00
|
|
|
"github.com/docker/docker/api/types/container"
|
2015-09-05 15:49:06 -04:00
|
|
|
"github.com/docker/docker/builder/dockerfile/command"
|
|
|
|
"github.com/docker/docker/builder/dockerfile/parser"
|
2017-04-04 12:28:59 -04:00
|
|
|
"github.com/docker/docker/runconfig/opts"
|
|
|
|
"github.com/pkg/errors"
|
2014-08-05 16:17:40 -04:00
|
|
|
)
|
|
|
|
|
2014-10-25 14:29:18 -04:00
|
|
|
// Environment variable interpolation will happen on these statements only.
|
2015-11-10 15:57:51 -05:00
|
|
|
var replaceEnvAllowed = map[string]bool{
|
|
|
|
command.Env: true,
|
|
|
|
command.Label: true,
|
|
|
|
command.Add: true,
|
|
|
|
command.Copy: true,
|
|
|
|
command.Workdir: true,
|
|
|
|
command.Expose: true,
|
|
|
|
command.Volume: true,
|
|
|
|
command.User: true,
|
|
|
|
command.StopSignal: true,
|
|
|
|
command.Arg: true,
|
2014-10-25 14:29:18 -04:00
|
|
|
}
|
|
|
|
|
2015-11-07 15:05:55 -05:00
|
|
|
// Certain commands are allowed to have their args split into more
|
|
|
|
// words after env var replacements. Meaning:
|
|
|
|
// ENV foo="123 456"
|
|
|
|
// EXPOSE $foo
|
|
|
|
// should result in the same thing as:
|
|
|
|
// EXPOSE 123 456
|
|
|
|
// and not treat "123 456" as a single word.
|
|
|
|
// Note that: EXPOSE "$foo" and EXPOSE $foo are not the same thing.
|
|
|
|
// Quotes will cause it to still be treated as single word.
|
|
|
|
var allowWordExpansion = map[string]bool{
|
|
|
|
command.Expose: true,
|
|
|
|
}
|
|
|
|
|
2017-04-11 14:34:05 -04:00
|
|
|
type dispatchRequest struct {
|
|
|
|
builder *Builder // TODO: replace this with a smaller interface
|
|
|
|
args []string
|
|
|
|
attributes map[string]bool
|
|
|
|
flags *BFlags
|
|
|
|
original string
|
|
|
|
runConfig *container.Config
|
2017-04-26 18:24:41 -04:00
|
|
|
shlex *ShellLex
|
2017-04-11 14:34:05 -04:00
|
|
|
}
|
|
|
|
|
2017-04-26 18:24:41 -04:00
|
|
|
func newDispatchRequestFromNode(node *parser.Node, builder *Builder, args []string, shlex *ShellLex) dispatchRequest {
|
2017-04-11 14:34:05 -04:00
|
|
|
return dispatchRequest{
|
|
|
|
builder: builder,
|
|
|
|
args: args,
|
|
|
|
attributes: node.Attributes,
|
|
|
|
original: node.Original,
|
|
|
|
flags: NewBFlagsWithArgs(node.Flags),
|
|
|
|
runConfig: builder.runConfig,
|
2017-04-26 18:24:41 -04:00
|
|
|
shlex: shlex,
|
2017-04-11 14:34:05 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type dispatcher func(dispatchRequest) error
|
|
|
|
|
|
|
|
var evaluateTable map[string]dispatcher
|
2014-08-05 18:41:09 -04:00
|
|
|
|
|
|
|
func init() {
|
2017-04-11 14:34:05 -04:00
|
|
|
evaluateTable = map[string]dispatcher{
|
2016-04-18 05:48:13 -04:00
|
|
|
command.Add: add,
|
2016-05-03 16:56:59 -04:00
|
|
|
command.Arg: arg,
|
|
|
|
command.Cmd: cmd,
|
2016-04-18 05:48:13 -04:00
|
|
|
command.Copy: dispatchCopy, // copy() is a go builtin
|
2016-05-03 16:56:59 -04:00
|
|
|
command.Entrypoint: entrypoint,
|
|
|
|
command.Env: env,
|
|
|
|
command.Expose: expose,
|
2016-04-18 05:48:13 -04:00
|
|
|
command.From: from,
|
2016-05-03 16:56:59 -04:00
|
|
|
command.Healthcheck: healthcheck,
|
|
|
|
command.Label: label,
|
|
|
|
command.Maintainer: maintainer,
|
2016-04-18 05:48:13 -04:00
|
|
|
command.Onbuild: onbuild,
|
|
|
|
command.Run: run,
|
2016-05-03 16:56:59 -04:00
|
|
|
command.Shell: shell,
|
2016-04-18 05:48:13 -04:00
|
|
|
command.StopSignal: stopSignal,
|
2016-05-03 16:56:59 -04:00
|
|
|
command.User: user,
|
|
|
|
command.Volume: volume,
|
|
|
|
command.Workdir: workdir,
|
2014-08-05 18:41:09 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-07 01:56:44 -04:00
|
|
|
// This method is the entrypoint to all statement handling routines.
|
|
|
|
//
|
|
|
|
// Almost all nodes will have this structure:
|
|
|
|
// Child[Node, Node, Node] where Child is from parser.Node.Children and each
|
|
|
|
// node comes from parser.Node.Next. This forms a "line" with a statement and
|
|
|
|
// arguments and we process them in this normalized form by hitting
|
2015-02-12 00:18:48 -05:00
|
|
|
// evaluateTable with the leaf nodes of the command and the Builder object.
|
2014-08-07 01:56:44 -04:00
|
|
|
//
|
|
|
|
// ONBUILD is a special case; in this case the parser will emit:
|
|
|
|
// Child[Node, Child[Node, Node...]] where the first node is the literal
|
2015-09-24 12:45:59 -04:00
|
|
|
// "onbuild" and the child entrypoint is the command of the ONBUILD statement,
|
2014-08-07 01:56:44 -04:00
|
|
|
// such as `RUN` in ONBUILD RUN foo. There is special case logic in here to
|
|
|
|
// deal with that, at least until it becomes more of a general concern with new
|
|
|
|
// features.
|
2017-04-26 18:24:41 -04:00
|
|
|
func (b *Builder) dispatch(stepN int, stepTotal int, node *parser.Node, shlex *ShellLex) error {
|
2017-04-11 14:34:05 -04:00
|
|
|
cmd := node.Value
|
2015-09-06 13:26:40 -04:00
|
|
|
upperCasedCmd := strings.ToUpper(cmd)
|
2015-08-12 13:00:04 -04:00
|
|
|
|
2015-09-24 12:45:59 -04:00
|
|
|
// To ensure the user is given a decent error message if the platform
|
2015-08-12 13:00:04 -04:00
|
|
|
// on which the daemon is running does not support a builder command.
|
|
|
|
if err := platformSupports(strings.ToLower(cmd)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-11-07 15:05:55 -05:00
|
|
|
strList := []string{}
|
2017-04-11 14:34:05 -04:00
|
|
|
msg := bytes.NewBufferString(fmt.Sprintf("Step %d/%d : %s", stepN+1, stepTotal, upperCasedCmd))
|
2015-05-05 17:27:42 -04:00
|
|
|
|
2017-04-11 14:34:05 -04:00
|
|
|
if len(node.Flags) > 0 {
|
|
|
|
msg.WriteString(strings.Join(node.Flags, " "))
|
2015-05-05 17:27:42 -04:00
|
|
|
}
|
2014-08-05 18:41:09 -04:00
|
|
|
|
2017-04-11 14:34:05 -04:00
|
|
|
ast := node
|
2014-08-05 18:41:09 -04:00
|
|
|
if cmd == "onbuild" {
|
2015-02-04 12:34:25 -05:00
|
|
|
if ast.Next == nil {
|
2016-12-25 01:37:31 -05:00
|
|
|
return errors.New("ONBUILD requires at least one argument")
|
2015-02-04 12:34:25 -05:00
|
|
|
}
|
2014-08-05 18:41:09 -04:00
|
|
|
ast = ast.Next.Children[0]
|
2015-11-07 15:05:55 -05:00
|
|
|
strList = append(strList, ast.Value)
|
2017-04-11 14:34:05 -04:00
|
|
|
msg.WriteString(" " + ast.Value)
|
2015-05-05 17:27:42 -04:00
|
|
|
|
|
|
|
if len(ast.Flags) > 0 {
|
2017-04-11 14:34:05 -04:00
|
|
|
msg.WriteString(" " + strings.Join(ast.Flags, " "))
|
2015-05-05 17:27:42 -04:00
|
|
|
}
|
2014-08-05 18:41:09 -04:00
|
|
|
}
|
|
|
|
|
2017-03-13 17:25:37 -04:00
|
|
|
msgList := initMsgList(ast)
|
2017-02-24 16:22:32 -05:00
|
|
|
// Append build args to runConfig environment variables
|
|
|
|
envs := append(b.runConfig.Env, b.buildArgsWithoutConfigEnv()...)
|
|
|
|
|
2017-04-26 18:24:41 -04:00
|
|
|
processFunc := getProcessFunc(shlex, cmd)
|
2017-03-13 17:25:37 -04:00
|
|
|
for i := 0; ast.Next != nil; i++ {
|
2014-08-05 16:17:40 -04:00
|
|
|
ast = ast.Next
|
2017-04-26 18:24:41 -04:00
|
|
|
words, err := processFunc(ast.Value, envs)
|
2017-03-13 17:25:37 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2014-10-25 14:29:18 -04:00
|
|
|
}
|
2017-03-13 17:25:37 -04:00
|
|
|
strList = append(strList, words...)
|
2014-11-11 14:37:47 -05:00
|
|
|
msgList[i] = ast.Value
|
2014-08-05 16:17:40 -04:00
|
|
|
}
|
|
|
|
|
2017-04-11 14:34:05 -04:00
|
|
|
msg.WriteString(" " + strings.Join(msgList, " "))
|
|
|
|
fmt.Fprintln(b.Stdout, msg.String())
|
2014-08-05 16:17:40 -04:00
|
|
|
|
|
|
|
// XXX yes, we skip any cmds that are not valid; the parser should have
|
|
|
|
// picked these out already.
|
2015-02-12 00:18:48 -05:00
|
|
|
if f, ok := evaluateTable[cmd]; ok {
|
2017-04-22 18:34:04 -04:00
|
|
|
if err := f(newDispatchRequestFromNode(node, b, strList, shlex)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// TODO: return an object instead of setting things on builder
|
|
|
|
// If the step created a new image set it as the imageID for the
|
|
|
|
// current runConfig
|
|
|
|
b.runConfig.Image = b.image
|
|
|
|
return nil
|
2014-08-05 16:17:40 -04:00
|
|
|
}
|
|
|
|
|
2015-09-06 13:26:40 -04:00
|
|
|
return fmt.Errorf("Unknown instruction: %s", upperCasedCmd)
|
2014-08-05 16:17:40 -04:00
|
|
|
}
|
2016-09-13 00:06:04 -04:00
|
|
|
|
2017-03-13 17:25:37 -04:00
|
|
|
// count the number of nodes that we are going to traverse first
|
|
|
|
// allocation of those list a lot when they have a lot of arguments
|
|
|
|
func initMsgList(cursor *parser.Node) []string {
|
|
|
|
var n int
|
|
|
|
for ; cursor.Next != nil; n++ {
|
|
|
|
cursor = cursor.Next
|
|
|
|
}
|
|
|
|
return make([]string, n)
|
|
|
|
}
|
|
|
|
|
2017-04-26 18:24:41 -04:00
|
|
|
type processFunc func(string, []string) ([]string, error)
|
|
|
|
|
|
|
|
func getProcessFunc(shlex *ShellLex, cmd string) processFunc {
|
|
|
|
switch {
|
|
|
|
case !replaceEnvAllowed[cmd]:
|
|
|
|
return func(word string, _ []string) ([]string, error) {
|
|
|
|
return []string{word}, nil
|
|
|
|
}
|
|
|
|
case allowWordExpansion[cmd]:
|
|
|
|
return shlex.ProcessWords
|
|
|
|
default:
|
|
|
|
return func(word string, envs []string) ([]string, error) {
|
|
|
|
word, err := shlex.ProcessWord(word, envs)
|
2017-04-04 13:40:37 -04:00
|
|
|
return []string{word}, err
|
|
|
|
}
|
2017-03-13 17:25:37 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-24 16:22:32 -05:00
|
|
|
// buildArgsWithoutConfigEnv returns a list of key=value pairs for all the build
|
|
|
|
// args that are not overriden by runConfig environment variables.
|
|
|
|
func (b *Builder) buildArgsWithoutConfigEnv() []string {
|
|
|
|
envs := []string{}
|
2017-04-04 12:28:59 -04:00
|
|
|
configEnv := b.runConfigEnvMapping()
|
2017-02-24 16:22:32 -05:00
|
|
|
|
2017-04-06 17:38:02 -04:00
|
|
|
for key, val := range b.buildArgs.GetAllAllowed() {
|
2017-03-16 17:31:02 -04:00
|
|
|
if _, ok := configEnv[key]; !ok {
|
|
|
|
envs = append(envs, fmt.Sprintf("%s=%s", key, val))
|
2017-02-24 16:22:32 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return envs
|
|
|
|
}
|
|
|
|
|
2017-04-04 12:28:59 -04:00
|
|
|
func (b *Builder) runConfigEnvMapping() map[string]string {
|
|
|
|
return opts.ConvertKVStringsToMap(b.runConfig.Env)
|
|
|
|
}
|
|
|
|
|
2016-09-13 00:06:04 -04:00
|
|
|
// checkDispatch does a simple check for syntax errors of the Dockerfile.
|
|
|
|
// Because some of the instructions can only be validated through runtime,
|
|
|
|
// arg, env, etc., this syntax check will not be complete and could not replace
|
|
|
|
// the runtime check. Instead, this function is only a helper that allows
|
|
|
|
// user to find out the obvious error in Dockerfile earlier on.
|
2017-04-04 16:34:19 -04:00
|
|
|
func checkDispatch(ast *parser.Node) error {
|
2016-09-13 00:06:04 -04:00
|
|
|
cmd := ast.Value
|
|
|
|
upperCasedCmd := strings.ToUpper(cmd)
|
|
|
|
|
|
|
|
// To ensure the user is given a decent error message if the platform
|
|
|
|
// on which the daemon is running does not support a builder command.
|
|
|
|
if err := platformSupports(strings.ToLower(cmd)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// The instruction itself is ONBUILD, we will make sure it follows with at
|
|
|
|
// least one argument
|
|
|
|
if upperCasedCmd == "ONBUILD" {
|
|
|
|
if ast.Next == nil {
|
2016-12-25 01:37:31 -05:00
|
|
|
return errors.New("ONBUILD requires at least one argument")
|
2016-09-13 00:06:04 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, ok := evaluateTable[cmd]; ok {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-04-04 12:28:59 -04:00
|
|
|
return errors.Errorf("unknown instruction: %s", upperCasedCmd)
|
2016-09-13 00:06:04 -04:00
|
|
|
}
|