123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383 |
- package dockerfile
- import (
- "bytes"
- "errors"
- "fmt"
- "io"
- "io/ioutil"
- "os"
- "sort"
- "strings"
- "github.com/Sirupsen/logrus"
- "github.com/docker/distribution/reference"
- apierrors "github.com/docker/docker/api/errors"
- "github.com/docker/docker/api/types"
- "github.com/docker/docker/api/types/backend"
- "github.com/docker/docker/api/types/container"
- "github.com/docker/docker/builder"
- "github.com/docker/docker/builder/dockerfile/parser"
- "github.com/docker/docker/image"
- "github.com/docker/docker/pkg/stringid"
- perrors "github.com/pkg/errors"
- "golang.org/x/net/context"
- )
- var validCommitCommands = map[string]bool{
- "cmd": true,
- "entrypoint": true,
- "healthcheck": true,
- "env": true,
- "expose": true,
- "label": true,
- "onbuild": true,
- "user": true,
- "volume": true,
- "workdir": true,
- }
- // BuiltinAllowedBuildArgs is list of built-in allowed build args
- var BuiltinAllowedBuildArgs = map[string]bool{
- "HTTP_PROXY": true,
- "http_proxy": true,
- "HTTPS_PROXY": true,
- "https_proxy": true,
- "FTP_PROXY": true,
- "ftp_proxy": true,
- "NO_PROXY": true,
- "no_proxy": true,
- }
- var defaultLogConfig = container.LogConfig{Type: "none"}
- // Builder is a Dockerfile builder
- // It implements the builder.Backend interface.
- type Builder struct {
- options *types.ImageBuildOptions
- Stdout io.Writer
- Stderr io.Writer
- Output io.Writer
- docker builder.Backend
- context builder.Context
- clientCtx context.Context
- cancel context.CancelFunc
- dockerfile *parser.Node
- runConfig *container.Config // runconfig for cmd, run, entrypoint etc.
- flags *BFlags
- tmpContainers map[string]struct{}
- image string // imageID
- noBaseImage bool
- maintainer string
- cmdSet bool
- disableCommit bool
- cacheBusted bool
- allowedBuildArgs map[string]*string // list of build-time args that are allowed for expansion/substitution and passing to commands in 'run'.
- allBuildArgs map[string]struct{} // list of all build-time args found during parsing of the Dockerfile
- directive parser.Directive
- // TODO: remove once docker.Commit can receive a tag
- id string
- imageCache builder.ImageCache
- from builder.Image
- }
- // BuildManager implements builder.Backend and is shared across all Builder objects.
- type BuildManager struct {
- backend builder.Backend
- }
- // NewBuildManager creates a BuildManager.
- func NewBuildManager(b builder.Backend) (bm *BuildManager) {
- return &BuildManager{backend: b}
- }
- // BuildFromContext builds a new image from a given context.
- func (bm *BuildManager) BuildFromContext(ctx context.Context, src io.ReadCloser, remote string, buildOptions *types.ImageBuildOptions, pg backend.ProgressWriter) (string, error) {
- if buildOptions.Squash && !bm.backend.HasExperimental() {
- return "", apierrors.NewBadRequestError(errors.New("squash is only supported with experimental mode"))
- }
- buildContext, dockerfileName, err := builder.DetectContextFromRemoteURL(src, remote, pg.ProgressReaderFunc)
- if err != nil {
- return "", err
- }
- defer func() {
- if err := buildContext.Close(); err != nil {
- logrus.Debugf("[BUILDER] failed to remove temporary context: %v", err)
- }
- }()
- if len(dockerfileName) > 0 {
- buildOptions.Dockerfile = dockerfileName
- }
- b, err := NewBuilder(ctx, buildOptions, bm.backend, builder.DockerIgnoreContext{ModifiableContext: buildContext}, nil)
- if err != nil {
- return "", err
- }
- return b.build(pg.StdoutFormatter, pg.StderrFormatter, pg.Output)
- }
- // NewBuilder creates a new Dockerfile builder from an optional dockerfile and a Config.
- // If dockerfile is nil, the Dockerfile specified by Config.DockerfileName,
- // will be read from the Context passed to Build().
- func NewBuilder(clientCtx context.Context, config *types.ImageBuildOptions, backend builder.Backend, buildContext builder.Context, dockerfile io.ReadCloser) (b *Builder, err error) {
- if config == nil {
- config = new(types.ImageBuildOptions)
- }
- ctx, cancel := context.WithCancel(clientCtx)
- b = &Builder{
- clientCtx: ctx,
- cancel: cancel,
- options: config,
- Stdout: os.Stdout,
- Stderr: os.Stderr,
- docker: backend,
- context: buildContext,
- runConfig: new(container.Config),
- tmpContainers: map[string]struct{}{},
- id: stringid.GenerateNonCryptoID(),
- allowedBuildArgs: make(map[string]*string),
- allBuildArgs: make(map[string]struct{}),
- directive: parser.Directive{
- EscapeSeen: false,
- LookingForDirectives: true,
- },
- }
- if icb, ok := backend.(builder.ImageCacheBuilder); ok {
- b.imageCache = icb.MakeImageCache(config.CacheFrom)
- }
- parser.SetEscapeToken(parser.DefaultEscapeToken, &b.directive) // Assume the default token for escape
- if dockerfile != nil {
- b.dockerfile, err = parser.Parse(dockerfile, &b.directive)
- if err != nil {
- return nil, err
- }
- }
- return b, nil
- }
- // sanitizeRepoAndTags parses the raw "t" parameter received from the client
- // to a slice of repoAndTag.
- // It also validates each repoName and tag.
- func sanitizeRepoAndTags(names []string) ([]reference.Named, error) {
- var (
- repoAndTags []reference.Named
- // This map is used for deduplicating the "-t" parameter.
- uniqNames = make(map[string]struct{})
- )
- for _, repo := range names {
- if repo == "" {
- continue
- }
- ref, err := reference.ParseNormalizedNamed(repo)
- if err != nil {
- return nil, err
- }
- if _, isCanonical := ref.(reference.Canonical); isCanonical {
- return nil, errors.New("build tag cannot contain a digest")
- }
- ref = reference.TagNameOnly(ref)
- nameWithTag := ref.String()
- if _, exists := uniqNames[nameWithTag]; !exists {
- uniqNames[nameWithTag] = struct{}{}
- repoAndTags = append(repoAndTags, ref)
- }
- }
- return repoAndTags, nil
- }
- func (b *Builder) processLabels() error {
- if len(b.options.Labels) == 0 {
- return nil
- }
- var labels []string
- for k, v := range b.options.Labels {
- labels = append(labels, fmt.Sprintf("%q='%s'", k, v))
- }
- // Sort the label to have a repeatable order
- sort.Strings(labels)
- line := "LABEL " + strings.Join(labels, " ")
- _, node, err := parser.ParseLine(line, &b.directive, false)
- if err != nil {
- return err
- }
- b.dockerfile.Children = append(b.dockerfile.Children, node)
- return nil
- }
- // build runs the Dockerfile builder from a context and a docker object that allows to make calls
- // to Docker.
- //
- // This will (barring errors):
- //
- // * read the dockerfile from context
- // * parse the dockerfile if not already parsed
- // * walk the AST and execute it by dispatching to handlers. If Remove
- // or ForceRemove is set, additional cleanup around containers happens after
- // processing.
- // * Tag image, if applicable.
- // * Print a happy message and return the image ID.
- //
- func (b *Builder) build(stdout io.Writer, stderr io.Writer, out io.Writer) (string, error) {
- b.Stdout = stdout
- b.Stderr = stderr
- b.Output = out
- // If Dockerfile was not parsed yet, extract it from the Context
- if b.dockerfile == nil {
- if err := b.readDockerfile(); err != nil {
- return "", err
- }
- }
- repoAndTags, err := sanitizeRepoAndTags(b.options.Tags)
- if err != nil {
- return "", err
- }
- if err := b.processLabels(); err != nil {
- return "", err
- }
- var shortImgID string
- total := len(b.dockerfile.Children)
- for _, n := range b.dockerfile.Children {
- if err := b.checkDispatch(n, false); err != nil {
- return "", perrors.Wrapf(err, "Dockerfile parse error line %d", n.StartLine)
- }
- }
- for i, n := range b.dockerfile.Children {
- select {
- case <-b.clientCtx.Done():
- logrus.Debug("Builder: build cancelled!")
- fmt.Fprint(b.Stdout, "Build cancelled")
- return "", errors.New("Build cancelled")
- default:
- // Not cancelled yet, keep going...
- }
- if err := b.dispatch(i, total, n); err != nil {
- if b.options.ForceRemove {
- b.clearTmp()
- }
- return "", err
- }
- shortImgID = stringid.TruncateID(b.image)
- fmt.Fprintf(b.Stdout, " ---> %s\n", shortImgID)
- if b.options.Remove {
- b.clearTmp()
- }
- }
- b.warnOnUnusedBuildArgs()
- if b.image == "" {
- return "", errors.New("No image was generated. Is your Dockerfile empty?")
- }
- if b.options.Squash {
- var fromID string
- if b.from != nil {
- fromID = b.from.ImageID()
- }
- b.image, err = b.docker.SquashImage(b.image, fromID)
- if err != nil {
- return "", perrors.Wrap(err, "error squashing image")
- }
- }
- imageID := image.ID(b.image)
- for _, rt := range repoAndTags {
- if err := b.docker.TagImageWithReference(imageID, rt); err != nil {
- return "", err
- }
- }
- fmt.Fprintf(b.Stdout, "Successfully built %s\n", shortImgID)
- return b.image, nil
- }
- // check if there are any leftover build-args that were passed but not
- // consumed during build. Print a warning, if there are any.
- func (b *Builder) warnOnUnusedBuildArgs() {
- leftoverArgs := []string{}
- for arg := range b.options.BuildArgs {
- if _, ok := b.allBuildArgs[arg]; !ok {
- leftoverArgs = append(leftoverArgs, arg)
- }
- }
- if len(leftoverArgs) > 0 {
- fmt.Fprintf(b.Stderr, "[Warning] One or more build-args %v were not consumed\n", leftoverArgs)
- }
- }
- // Cancel cancels an ongoing Dockerfile build.
- func (b *Builder) Cancel() {
- b.cancel()
- }
- // BuildFromConfig builds directly from `changes`, treating it as if it were the contents of a Dockerfile
- // It will:
- // - Call parse.Parse() to get an AST root for the concatenated Dockerfile entries.
- // - Do build by calling builder.dispatch() to call all entries' handling routines
- //
- // BuildFromConfig is used by the /commit endpoint, with the changes
- // coming from the query parameter of the same name.
- //
- // TODO: Remove?
- func BuildFromConfig(config *container.Config, changes []string) (*container.Config, error) {
- b, err := NewBuilder(context.Background(), nil, nil, nil, nil)
- if err != nil {
- return nil, err
- }
- ast, err := parser.Parse(bytes.NewBufferString(strings.Join(changes, "\n")), &b.directive)
- if err != nil {
- return nil, err
- }
- // ensure that the commands are valid
- for _, n := range ast.Children {
- if !validCommitCommands[n.Value] {
- return nil, fmt.Errorf("%s is not a valid change command", n.Value)
- }
- }
- b.runConfig = config
- b.Stdout = ioutil.Discard
- b.Stderr = ioutil.Discard
- b.disableCommit = true
- total := len(ast.Children)
- for _, n := range ast.Children {
- if err := b.checkDispatch(n, false); err != nil {
- return nil, err
- }
- }
- for i, n := range ast.Children {
- if err := b.dispatch(i, total, n); err != nil {
- return nil, err
- }
- }
- return b.runConfig, nil
- }
|