/* Copyright The containerd Authors. 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 docker import ( "context" "io" "io/ioutil" "net/http" "net/url" "strings" "time" "github.com/containerd/containerd/content" "github.com/containerd/containerd/errdefs" "github.com/containerd/containerd/images" "github.com/containerd/containerd/log" "github.com/containerd/containerd/remotes" digest "github.com/opencontainers/go-digest" ocispec "github.com/opencontainers/image-spec/specs-go/v1" "github.com/pkg/errors" ) type dockerPusher struct { *dockerBase object string // TODO: namespace tracker tracker StatusTracker } func (p dockerPusher) Push(ctx context.Context, desc ocispec.Descriptor) (content.Writer, error) { ctx, err := contextWithRepositoryScope(ctx, p.refspec, true) if err != nil { return nil, err } ref := remotes.MakeRefKey(ctx, desc) status, err := p.tracker.GetStatus(ref) if err == nil { if status.Offset == status.Total { return nil, errors.Wrapf(errdefs.ErrAlreadyExists, "ref %v", ref) } // TODO: Handle incomplete status } else if !errdefs.IsNotFound(err) { return nil, errors.Wrap(err, "failed to get status") } hosts := p.filterHosts(HostCapabilityPush) if len(hosts) == 0 { return nil, errors.Wrap(errdefs.ErrNotFound, "no push hosts") } var ( isManifest bool existCheck []string host = hosts[0] ) switch desc.MediaType { case images.MediaTypeDockerSchema2Manifest, images.MediaTypeDockerSchema2ManifestList, ocispec.MediaTypeImageManifest, ocispec.MediaTypeImageIndex: isManifest = true existCheck = getManifestPath(p.object, desc.Digest) default: existCheck = []string{"blobs", desc.Digest.String()} } req := p.request(host, http.MethodHead, existCheck...) req.header.Set("Accept", strings.Join([]string{desc.MediaType, `*/*`}, ", ")) log.G(ctx).WithField("url", req.String()).Debugf("checking and pushing to") resp, err := req.doWithRetries(ctx, nil) if err != nil { if errors.Cause(err) != ErrInvalidAuthorization { return nil, err } log.G(ctx).WithError(err).Debugf("Unable to check existence, continuing with push") } else { if resp.StatusCode == http.StatusOK { var exists bool if isManifest && existCheck[1] != desc.Digest.String() { dgstHeader := digest.Digest(resp.Header.Get("Docker-Content-Digest")) if dgstHeader == desc.Digest { exists = true } } else { exists = true } if exists { p.tracker.SetStatus(ref, Status{ Status: content.Status{ Ref: ref, // TODO: Set updated time? }, }) return nil, errors.Wrapf(errdefs.ErrAlreadyExists, "content %v on remote", desc.Digest) } } else if resp.StatusCode != http.StatusNotFound { // TODO: log error return nil, errors.Errorf("unexpected response: %s", resp.Status) } } if isManifest { putPath := getManifestPath(p.object, desc.Digest) req = p.request(host, http.MethodPut, putPath...) req.header.Add("Content-Type", desc.MediaType) } else { // Start upload request req = p.request(host, http.MethodPost, "blobs", "uploads/") var resp *http.Response if fromRepo := selectRepositoryMountCandidate(p.refspec, desc.Annotations); fromRepo != "" { preq := requestWithMountFrom(req, desc.Digest.String(), fromRepo) pctx := contextWithAppendPullRepositoryScope(ctx, fromRepo) // NOTE: the fromRepo might be private repo and // auth service still can grant token without error. // but the post request will fail because of 401. // // for the private repo, we should remove mount-from // query and send the request again. resp, err = preq.do(pctx) if err != nil { return nil, err } if resp.StatusCode == http.StatusUnauthorized { log.G(ctx).Debugf("failed to mount from repository %s", fromRepo) resp.Body.Close() resp = nil } } if resp == nil { resp, err = req.doWithRetries(ctx, nil) if err != nil { return nil, err } } switch resp.StatusCode { case http.StatusOK, http.StatusAccepted, http.StatusNoContent: case http.StatusCreated: p.tracker.SetStatus(ref, Status{ Status: content.Status{ Ref: ref, }, }) return nil, errors.Wrapf(errdefs.ErrAlreadyExists, "content %v on remote", desc.Digest) default: // TODO: log error return nil, errors.Errorf("unexpected response: %s", resp.Status) } var ( location = resp.Header.Get("Location") lurl *url.URL lhost = host ) // Support paths without host in location if strings.HasPrefix(location, "/") { lurl, err = url.Parse(lhost.Scheme + "://" + lhost.Host + location) if err != nil { return nil, errors.Wrapf(err, "unable to parse location %v", location) } } else { if !strings.Contains(location, "://") { location = lhost.Scheme + "://" + location } lurl, err = url.Parse(location) if err != nil { return nil, errors.Wrapf(err, "unable to parse location %v", location) } if lurl.Host != lhost.Host || lhost.Scheme != lurl.Scheme { lhost.Scheme = lurl.Scheme lhost.Host = lurl.Host log.G(ctx).WithField("host", lhost.Host).WithField("scheme", lhost.Scheme).Debug("upload changed destination") // Strip authorizer if change to host or scheme lhost.Authorizer = nil } } q := lurl.Query() q.Add("digest", desc.Digest.String()) req = p.request(lhost, http.MethodPut) req.path = lurl.Path + "?" + q.Encode() } p.tracker.SetStatus(ref, Status{ Status: content.Status{ Ref: ref, Total: desc.Size, Expected: desc.Digest, StartedAt: time.Now(), }, }) // TODO: Support chunked upload pr, pw := io.Pipe() respC := make(chan *http.Response, 1) body := ioutil.NopCloser(pr) req.body = func() (io.ReadCloser, error) { if body == nil { return nil, errors.New("cannot reuse body, request must be retried") } // Only use the body once since pipe cannot be seeked ob := body body = nil return ob, nil } req.size = desc.Size go func() { defer close(respC) resp, err = req.do(ctx) if err != nil { pr.CloseWithError(err) return } switch resp.StatusCode { case http.StatusOK, http.StatusCreated, http.StatusNoContent: default: // TODO: log error pr.CloseWithError(errors.Errorf("unexpected response: %s", resp.Status)) } respC <- resp }() return &pushWriter{ base: p.dockerBase, ref: ref, pipe: pw, responseC: respC, isManifest: isManifest, expected: desc.Digest, tracker: p.tracker, }, nil } func getManifestPath(object string, dgst digest.Digest) []string { if i := strings.IndexByte(object, '@'); i >= 0 { if object[i+1:] != dgst.String() { // use digest, not tag object = "" } else { // strip @ for registry path to make tag object = object[:i] } } if object == "" { return []string{"manifests", dgst.String()} } return []string{"manifests", object} } type pushWriter struct { base *dockerBase ref string pipe *io.PipeWriter responseC <-chan *http.Response isManifest bool expected digest.Digest tracker StatusTracker } func (pw *pushWriter) Write(p []byte) (n int, err error) { status, err := pw.tracker.GetStatus(pw.ref) if err != nil { return n, err } n, err = pw.pipe.Write(p) status.Offset += int64(n) status.UpdatedAt = time.Now() pw.tracker.SetStatus(pw.ref, status) return } func (pw *pushWriter) Close() error { return pw.pipe.Close() } func (pw *pushWriter) Status() (content.Status, error) { status, err := pw.tracker.GetStatus(pw.ref) if err != nil { return content.Status{}, err } return status.Status, nil } func (pw *pushWriter) Digest() digest.Digest { // TODO: Get rid of this function? return pw.expected } func (pw *pushWriter) Commit(ctx context.Context, size int64, expected digest.Digest, opts ...content.Opt) error { // Check whether read has already thrown an error if _, err := pw.pipe.Write([]byte{}); err != nil && err != io.ErrClosedPipe { return errors.Wrap(err, "pipe error before commit") } if err := pw.pipe.Close(); err != nil { return err } // TODO: Update status to determine committing // TODO: timeout waiting for response resp := <-pw.responseC if resp == nil { return errors.New("no response") } // 201 is specified return status, some registries return // 200 or 204. switch resp.StatusCode { case http.StatusOK, http.StatusCreated, http.StatusNoContent: default: return errors.Errorf("unexpected status: %s", resp.Status) } status, err := pw.tracker.GetStatus(pw.ref) if err != nil { return errors.Wrap(err, "failed to get status") } if size > 0 && size != status.Offset { return errors.Errorf("unexpected size %d, expected %d", status.Offset, size) } if expected == "" { expected = status.Expected } actual, err := digest.Parse(resp.Header.Get("Docker-Content-Digest")) if err != nil { return errors.Wrap(err, "invalid content digest in response") } if actual != expected { return errors.Errorf("got digest %s, expected %s", actual, expected) } return nil } func (pw *pushWriter) Truncate(size int64) error { // TODO: if blob close request and start new request at offset // TODO: always error on manifest return errors.New("cannot truncate remote upload") } func requestWithMountFrom(req *request, mount, from string) *request { creq := *req sep := "?" if strings.Contains(creq.path, sep) { sep = "&" } creq.path = creq.path + sep + "mount=" + mount + "&from=" + from return &creq }