2014-11-11 02:57:38 +00:00
|
|
|
package registry
|
|
|
|
|
|
|
|
import (
|
2014-11-21 03:57:01 +00:00
|
|
|
"fmt"
|
|
|
|
"io"
|
2014-11-11 02:57:38 +00:00
|
|
|
"net/http"
|
2015-01-05 07:59:29 +00:00
|
|
|
"net/url"
|
2015-01-08 23:04:00 +00:00
|
|
|
"os"
|
2014-11-11 02:57:38 +00:00
|
|
|
|
2014-11-21 03:57:01 +00:00
|
|
|
"github.com/Sirupsen/logrus"
|
2014-12-24 00:01:38 +00:00
|
|
|
"github.com/docker/distribution/api/v2"
|
|
|
|
"github.com/docker/distribution/digest"
|
|
|
|
"github.com/docker/distribution/storage"
|
2014-11-11 02:57:38 +00:00
|
|
|
"github.com/gorilla/handlers"
|
|
|
|
)
|
|
|
|
|
|
|
|
// layerUploadDispatcher constructs and returns the layer upload handler for
|
|
|
|
// the given request context.
|
|
|
|
func layerUploadDispatcher(ctx *Context, r *http.Request) http.Handler {
|
2014-11-21 03:57:01 +00:00
|
|
|
luh := &layerUploadHandler{
|
2014-11-11 02:57:38 +00:00
|
|
|
Context: ctx,
|
|
|
|
UUID: ctx.vars["uuid"],
|
|
|
|
}
|
|
|
|
|
2014-11-21 03:57:01 +00:00
|
|
|
handler := http.Handler(handlers.MethodHandler{
|
2015-01-30 05:26:35 +00:00
|
|
|
"POST": http.HandlerFunc(luh.StartLayerUpload),
|
|
|
|
"GET": http.HandlerFunc(luh.GetUploadStatus),
|
|
|
|
"HEAD": http.HandlerFunc(luh.GetUploadStatus),
|
|
|
|
// TODO(stevvooe): Must implement patch support.
|
|
|
|
// "PATCH": http.HandlerFunc(luh.PutLayerChunk),
|
|
|
|
"PUT": http.HandlerFunc(luh.PutLayerUploadComplete),
|
2014-11-21 03:57:01 +00:00
|
|
|
"DELETE": http.HandlerFunc(luh.CancelLayerUpload),
|
|
|
|
})
|
|
|
|
|
|
|
|
if luh.UUID != "" {
|
|
|
|
luh.log = luh.log.WithField("uuid", luh.UUID)
|
|
|
|
|
2015-01-08 23:04:00 +00:00
|
|
|
state, err := hmacKey(ctx.Config.HTTP.Secret).unpackUploadState(r.FormValue("_state"))
|
2015-01-05 07:59:29 +00:00
|
|
|
if err != nil {
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
2015-01-08 23:04:00 +00:00
|
|
|
ctx.log.Infof("error resolving upload: %v", err)
|
|
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
|
|
luh.Errors.Push(v2.ErrorCodeBlobUploadInvalid, err)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
luh.State = state
|
|
|
|
|
2015-01-17 02:32:27 +00:00
|
|
|
if state.Name != ctx.Repository.Name() {
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
ctx.log.Infof("mismatched repository name in upload state: %q != %q", state.Name, luh.Repository.Name())
|
|
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
|
|
luh.Errors.Push(v2.ErrorCodeBlobUploadInvalid, err)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-01-08 23:04:00 +00:00
|
|
|
if state.UUID != luh.UUID {
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
ctx.log.Infof("mismatched uuid in upload state: %q != %q", state.UUID, luh.UUID)
|
|
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
|
|
luh.Errors.Push(v2.ErrorCodeBlobUploadInvalid, err)
|
2015-01-05 07:59:29 +00:00
|
|
|
})
|
|
|
|
}
|
2014-11-21 03:57:01 +00:00
|
|
|
|
2015-01-17 02:32:27 +00:00
|
|
|
layers := ctx.Repository.Layers()
|
|
|
|
upload, err := layers.Resume(luh.UUID)
|
2015-01-10 00:09:45 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.log.Errorf("error resolving upload: %v", err)
|
|
|
|
if err == storage.ErrLayerUploadUnknown {
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
w.WriteHeader(http.StatusNotFound)
|
|
|
|
luh.Errors.Push(v2.ErrorCodeBlobUploadUnknown, err)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-11-21 03:57:01 +00:00
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
2015-01-10 00:09:45 +00:00
|
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
|
|
luh.Errors.Push(v2.ErrorCodeUnknown, err)
|
2014-11-21 03:57:01 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
luh.Upload = upload
|
2015-01-08 23:04:00 +00:00
|
|
|
|
|
|
|
if state.Offset > 0 {
|
|
|
|
// Seek the layer upload to the correct spot if it's non-zero.
|
|
|
|
// These error conditions should be rare and demonstrate really
|
|
|
|
// problems. We basically cancel the upload and tell the client to
|
|
|
|
// start over.
|
|
|
|
if nn, err := upload.Seek(luh.State.Offset, os.SEEK_SET); err != nil {
|
2015-01-10 00:09:45 +00:00
|
|
|
defer upload.Close()
|
2015-01-08 23:04:00 +00:00
|
|
|
ctx.log.Infof("error seeking layer upload: %v", err)
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
|
|
luh.Errors.Push(v2.ErrorCodeBlobUploadInvalid, err)
|
|
|
|
upload.Cancel()
|
|
|
|
})
|
|
|
|
} else if nn != luh.State.Offset {
|
2015-01-10 00:09:45 +00:00
|
|
|
defer upload.Close()
|
2015-01-08 23:04:00 +00:00
|
|
|
ctx.log.Infof("seek to wrong offest: %d != %d", nn, luh.State.Offset)
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
|
|
luh.Errors.Push(v2.ErrorCodeBlobUploadInvalid, err)
|
|
|
|
upload.Cancel()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-21 03:57:01 +00:00
|
|
|
handler = closeResources(handler, luh.Upload)
|
2014-11-11 02:57:38 +00:00
|
|
|
}
|
|
|
|
|
2014-11-21 03:57:01 +00:00
|
|
|
return handler
|
2014-11-11 02:57:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// layerUploadHandler handles the http layer upload process.
|
|
|
|
type layerUploadHandler struct {
|
|
|
|
*Context
|
|
|
|
|
|
|
|
// UUID identifies the upload instance for the current request.
|
|
|
|
UUID string
|
2014-11-21 03:57:01 +00:00
|
|
|
|
|
|
|
Upload storage.LayerUpload
|
2015-01-08 23:04:00 +00:00
|
|
|
|
|
|
|
State layerUploadState
|
2014-11-11 02:57:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// StartLayerUpload begins the layer upload process and allocates a server-
|
|
|
|
// side upload session.
|
|
|
|
func (luh *layerUploadHandler) StartLayerUpload(w http.ResponseWriter, r *http.Request) {
|
2015-01-17 02:32:27 +00:00
|
|
|
layers := luh.Repository.Layers()
|
|
|
|
upload, err := layers.Upload()
|
2014-11-21 03:57:01 +00:00
|
|
|
if err != nil {
|
|
|
|
w.WriteHeader(http.StatusInternalServerError) // Error conditions here?
|
2014-12-12 06:24:25 +00:00
|
|
|
luh.Errors.Push(v2.ErrorCodeUnknown, err)
|
2014-11-21 03:57:01 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
luh.Upload = upload
|
|
|
|
defer luh.Upload.Close()
|
2014-11-11 02:57:38 +00:00
|
|
|
|
2014-11-21 03:57:01 +00:00
|
|
|
if err := luh.layerUploadResponse(w, r); err != nil {
|
|
|
|
w.WriteHeader(http.StatusInternalServerError) // Error conditions here?
|
2014-12-12 06:24:25 +00:00
|
|
|
luh.Errors.Push(v2.ErrorCodeUnknown, err)
|
2014-11-21 03:57:01 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
w.WriteHeader(http.StatusAccepted)
|
2014-11-11 02:57:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetUploadStatus returns the status of a given upload, identified by uuid.
|
|
|
|
func (luh *layerUploadHandler) GetUploadStatus(w http.ResponseWriter, r *http.Request) {
|
2014-11-21 03:57:01 +00:00
|
|
|
if luh.Upload == nil {
|
|
|
|
w.WriteHeader(http.StatusNotFound)
|
2014-12-12 06:24:25 +00:00
|
|
|
luh.Errors.Push(v2.ErrorCodeBlobUploadUnknown)
|
2015-01-10 00:09:45 +00:00
|
|
|
return
|
2014-11-21 03:57:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := luh.layerUploadResponse(w, r); err != nil {
|
|
|
|
w.WriteHeader(http.StatusInternalServerError) // Error conditions here?
|
2014-12-12 06:24:25 +00:00
|
|
|
luh.Errors.Push(v2.ErrorCodeUnknown, err)
|
2014-11-21 03:57:01 +00:00
|
|
|
return
|
|
|
|
}
|
2014-11-11 02:57:38 +00:00
|
|
|
|
2014-11-21 03:57:01 +00:00
|
|
|
w.WriteHeader(http.StatusNoContent)
|
2014-11-11 02:57:38 +00:00
|
|
|
}
|
|
|
|
|
2015-01-30 05:26:35 +00:00
|
|
|
// PutLayerUploadComplete takes the final request of a layer upload. The final
|
|
|
|
// chunk may include all the layer data, the final chunk of layer data or no
|
|
|
|
// layer data. Any data provided is received and verified. If successful, the
|
|
|
|
// layer is linked into the blob store and 201 Created is returned with the
|
|
|
|
// canonical url of the layer.
|
|
|
|
func (luh *layerUploadHandler) PutLayerUploadComplete(w http.ResponseWriter, r *http.Request) {
|
2014-11-21 03:57:01 +00:00
|
|
|
if luh.Upload == nil {
|
|
|
|
w.WriteHeader(http.StatusNotFound)
|
2014-12-12 06:24:25 +00:00
|
|
|
luh.Errors.Push(v2.ErrorCodeBlobUploadUnknown)
|
2015-01-30 05:26:35 +00:00
|
|
|
return
|
2014-11-21 03:57:01 +00:00
|
|
|
}
|
|
|
|
|
2015-01-30 05:26:35 +00:00
|
|
|
dgstStr := r.FormValue("digest") // TODO(stevvooe): Support multiple digest parameters!
|
|
|
|
|
|
|
|
if dgstStr == "" {
|
|
|
|
// no digest? return error, but allow retry.
|
|
|
|
w.WriteHeader(http.StatusNotFound)
|
|
|
|
luh.Errors.Push(v2.ErrorCodeDigestInvalid, "digest missing")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
dgst, err := digest.ParseDigest(dgstStr)
|
|
|
|
if err != nil {
|
|
|
|
// no digest? return error, but allow retry.
|
|
|
|
w.WriteHeader(http.StatusNotFound)
|
|
|
|
luh.Errors.Push(v2.ErrorCodeDigestInvalid, "digest parsing failed")
|
|
|
|
return
|
|
|
|
}
|
2014-11-11 02:57:38 +00:00
|
|
|
|
2015-01-30 05:26:35 +00:00
|
|
|
// TODO(stevvooe): Check the incoming range header here, per the
|
|
|
|
// specification. LayerUpload should be seeked (sought?) to that position.
|
2014-11-21 03:57:01 +00:00
|
|
|
|
2015-01-30 05:26:35 +00:00
|
|
|
// Read in the final chunk, if any.
|
2014-11-21 03:57:01 +00:00
|
|
|
io.Copy(luh.Upload, r.Body)
|
|
|
|
|
2015-01-30 05:26:35 +00:00
|
|
|
layer, err := luh.Upload.Finish(dgst)
|
|
|
|
if err != nil {
|
|
|
|
switch err := err.(type) {
|
|
|
|
case storage.ErrLayerInvalidDigest:
|
|
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
|
|
luh.Errors.Push(v2.ErrorCodeDigestInvalid, err)
|
|
|
|
default:
|
|
|
|
luh.log.Errorf("unknown error completing upload: %#v", err)
|
|
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
|
|
luh.Errors.Push(v2.ErrorCodeUnknown, err)
|
2014-11-21 03:57:01 +00:00
|
|
|
}
|
2015-01-30 05:26:35 +00:00
|
|
|
|
|
|
|
// Clean up the backend layer data if there was an error.
|
|
|
|
if err := luh.Upload.Cancel(); err != nil {
|
|
|
|
// If the cleanup fails, all we can do is observe and report.
|
|
|
|
luh.log.Errorf("error canceling upload after error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
2014-11-21 03:57:01 +00:00
|
|
|
}
|
|
|
|
|
2015-01-30 05:26:35 +00:00
|
|
|
// Build our canonical layer url
|
|
|
|
layerURL, err := luh.urlBuilder.BuildBlobURL(layer.Name(), layer.Digest())
|
|
|
|
if err != nil {
|
2014-12-12 06:24:25 +00:00
|
|
|
luh.Errors.Push(v2.ErrorCodeUnknown, err)
|
2015-01-30 05:26:35 +00:00
|
|
|
w.WriteHeader(http.StatusInternalServerError)
|
2014-11-21 03:57:01 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-01-30 05:26:35 +00:00
|
|
|
w.Header().Set("Location", layerURL)
|
|
|
|
w.Header().Set("Content-Length", "0")
|
|
|
|
w.WriteHeader(http.StatusCreated)
|
2014-11-11 02:57:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CancelLayerUpload cancels an in-progress upload of a layer.
|
|
|
|
func (luh *layerUploadHandler) CancelLayerUpload(w http.ResponseWriter, r *http.Request) {
|
2014-11-21 03:57:01 +00:00
|
|
|
if luh.Upload == nil {
|
|
|
|
w.WriteHeader(http.StatusNotFound)
|
2014-12-12 06:24:25 +00:00
|
|
|
luh.Errors.Push(v2.ErrorCodeBlobUploadUnknown)
|
2015-01-30 05:26:35 +00:00
|
|
|
return
|
2014-11-21 03:57:01 +00:00
|
|
|
}
|
|
|
|
|
2015-01-30 05:26:35 +00:00
|
|
|
if err := luh.Upload.Cancel(); err != nil {
|
|
|
|
luh.log.Errorf("error encountered canceling upload: %v", err)
|
|
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
|
|
luh.Errors.PushErr(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
w.WriteHeader(http.StatusNoContent)
|
2014-11-21 03:57:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// layerUploadResponse provides a standard request for uploading layers and
|
|
|
|
// chunk responses. This sets the correct headers but the response status is
|
|
|
|
// left to the caller.
|
|
|
|
func (luh *layerUploadHandler) layerUploadResponse(w http.ResponseWriter, r *http.Request) error {
|
2015-01-08 23:04:00 +00:00
|
|
|
|
|
|
|
offset, err := luh.Upload.Seek(0, os.SEEK_CUR)
|
|
|
|
if err != nil {
|
|
|
|
luh.log.Errorf("unable get current offset of layer upload: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(stevvooe): Need a better way to manage the upload state automatically.
|
2015-01-17 02:32:27 +00:00
|
|
|
luh.State.Name = luh.Repository.Name()
|
2015-01-08 23:04:00 +00:00
|
|
|
luh.State.UUID = luh.Upload.UUID()
|
|
|
|
luh.State.Offset = offset
|
|
|
|
luh.State.StartedAt = luh.Upload.StartedAt()
|
|
|
|
|
|
|
|
token, err := hmacKey(luh.Config.HTTP.Secret).packUploadState(luh.State)
|
2015-01-05 07:59:29 +00:00
|
|
|
if err != nil {
|
|
|
|
logrus.Infof("error building upload state token: %s", err)
|
|
|
|
return err
|
|
|
|
}
|
2015-01-08 23:04:00 +00:00
|
|
|
|
|
|
|
uploadURL, err := luh.urlBuilder.BuildBlobUploadChunkURL(
|
|
|
|
luh.Upload.Name(), luh.Upload.UUID(),
|
|
|
|
url.Values{
|
|
|
|
"_state": []string{token},
|
|
|
|
})
|
2014-11-21 03:57:01 +00:00
|
|
|
if err != nil {
|
|
|
|
logrus.Infof("error building upload url: %s", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
w.Header().Set("Location", uploadURL)
|
|
|
|
w.Header().Set("Content-Length", "0")
|
2015-01-08 23:04:00 +00:00
|
|
|
w.Header().Set("Range", fmt.Sprintf("0-%d", luh.State.Offset))
|
2014-11-21 03:57:01 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|