Merge pull request #763 from aaronlehmann/close-notifier
Use CloseNotifier to supress spurious HTTP 400 errors on early disconnectmaster
						commit
						0db2572382
					
				| 
						 | 
				
			
			@ -2,7 +2,6 @@ package handlers
 | 
			
		|||
 | 
			
		||||
import (
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"io"
 | 
			
		||||
	"net/http"
 | 
			
		||||
	"net/url"
 | 
			
		||||
	"os"
 | 
			
		||||
| 
						 | 
				
			
			@ -170,10 +169,8 @@ func (buh *blobUploadHandler) PatchBlobData(w http.ResponseWriter, r *http.Reque
 | 
			
		|||
 | 
			
		||||
	// TODO(dmcgowan): support Content-Range header to seek and write range
 | 
			
		||||
 | 
			
		||||
	// Copy the data
 | 
			
		||||
	if _, err := io.Copy(buh.Upload, r.Body); err != nil {
 | 
			
		||||
		ctxu.GetLogger(buh).Errorf("unknown error copying into upload: %v", err)
 | 
			
		||||
		buh.Errors = append(buh.Errors, errcode.ErrorCodeUnknown.WithDetail(err))
 | 
			
		||||
	if err := copyFullPayload(w, r, buh.Upload, buh, "blob PATCH", &buh.Errors); err != nil {
 | 
			
		||||
		// copyFullPayload reports the error if necessary
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -211,10 +208,8 @@ func (buh *blobUploadHandler) PutBlobUploadComplete(w http.ResponseWriter, r *ht
 | 
			
		|||
		return
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// Read in the data, if any.
 | 
			
		||||
	if _, err := io.Copy(buh.Upload, r.Body); err != nil {
 | 
			
		||||
		ctxu.GetLogger(buh).Errorf("unknown error copying into upload: %v", err)
 | 
			
		||||
		buh.Errors = append(buh.Errors, errcode.ErrorCodeUnknown.WithDetail(err))
 | 
			
		||||
	if err := copyFullPayload(w, r, buh.Upload, buh, "blob PUT", &buh.Errors); err != nil {
 | 
			
		||||
		// copyFullPayload reports the error if necessary
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,8 +1,12 @@
 | 
			
		|||
package handlers
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"errors"
 | 
			
		||||
	"io"
 | 
			
		||||
	"net/http"
 | 
			
		||||
 | 
			
		||||
	ctxu "github.com/docker/distribution/context"
 | 
			
		||||
	"github.com/docker/distribution/registry/api/errcode"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// closeResources closes all the provided resources after running the target
 | 
			
		||||
| 
						 | 
				
			
			@ -15,3 +19,44 @@ func closeResources(handler http.Handler, closers ...io.Closer) http.Handler {
 | 
			
		|||
		handler.ServeHTTP(w, r)
 | 
			
		||||
	})
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// copyFullPayload copies the payload of a HTTP request to destWriter. If it
 | 
			
		||||
// receives less content than expected, and the client disconnected during the
 | 
			
		||||
// upload, it avoids sending a 400 error to keep the logs cleaner.
 | 
			
		||||
func copyFullPayload(responseWriter http.ResponseWriter, r *http.Request, destWriter io.Writer, context ctxu.Context, action string, errSlice *errcode.Errors) error {
 | 
			
		||||
	// Get a channel that tells us if the client disconnects
 | 
			
		||||
	var clientClosed <-chan bool
 | 
			
		||||
	if notifier, ok := responseWriter.(http.CloseNotifier); ok {
 | 
			
		||||
		clientClosed = notifier.CloseNotify()
 | 
			
		||||
	} else {
 | 
			
		||||
		panic("the ResponseWriter does not implement CloseNotifier")
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// Read in the data, if any.
 | 
			
		||||
	copied, err := io.Copy(destWriter, r.Body)
 | 
			
		||||
	if clientClosed != nil && (err != nil || (r.ContentLength > 0 && copied < r.ContentLength)) {
 | 
			
		||||
		// Didn't recieve as much content as expected. Did the client
 | 
			
		||||
		// disconnect during the request? If so, avoid returning a 400
 | 
			
		||||
		// error to keep the logs cleaner.
 | 
			
		||||
		select {
 | 
			
		||||
		case <-clientClosed:
 | 
			
		||||
			// Set the response code to "499 Client Closed Request"
 | 
			
		||||
			// Even though the connection has already been closed,
 | 
			
		||||
			// this causes the logger to pick up a 499 error
 | 
			
		||||
			// instead of showing 0 for the HTTP status.
 | 
			
		||||
			responseWriter.WriteHeader(499)
 | 
			
		||||
 | 
			
		||||
			ctxu.GetLogger(context).Error("client disconnected during " + action)
 | 
			
		||||
			return errors.New("client disconnected")
 | 
			
		||||
		default:
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		ctxu.GetLogger(context).Errorf("unknown error reading request payload: %v", err)
 | 
			
		||||
		*errSlice = append(*errSlice, errcode.ErrorCodeUnknown.WithDetail(err))
 | 
			
		||||
		return err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return nil
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,6 +1,7 @@
 | 
			
		|||
package handlers
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"bytes"
 | 
			
		||||
	"encoding/json"
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"net/http"
 | 
			
		||||
| 
						 | 
				
			
			@ -112,10 +113,14 @@ func (imh *imageManifestHandler) PutImageManifest(w http.ResponseWriter, r *http
 | 
			
		|||
		return
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	dec := json.NewDecoder(r.Body)
 | 
			
		||||
	var jsonBuf bytes.Buffer
 | 
			
		||||
	if err := copyFullPayload(w, r, &jsonBuf, imh, "image manifest PUT", &imh.Errors); err != nil {
 | 
			
		||||
		// copyFullPayload reports the error if necessary
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var manifest manifest.SignedManifest
 | 
			
		||||
	if err := dec.Decode(&manifest); err != nil {
 | 
			
		||||
	if err := json.Unmarshal(jsonBuf.Bytes(), &manifest); err != nil {
 | 
			
		||||
		imh.Errors = append(imh.Errors, v2.ErrorCodeManifestInvalid.WithDetail(err))
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue