mirror of
https://github.com/minio/minio.git
synced 2025-01-26 22:23:15 -05:00
Merge pull request #515 from fkautz/pr_out_fix_multiple_response_writeheader_calls
Fix multiple response.WriteHeader calls
This commit is contained in:
commit
7bdcf4bbf3
@ -24,6 +24,8 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/minio-io/minio/pkg/iodine"
|
||||
"github.com/minio-io/minio/pkg/utils/log"
|
||||
"sync"
|
||||
)
|
||||
|
||||
// bandwidthQuotaHandler
|
||||
@ -40,17 +42,20 @@ func (h *bandwidthQuotaHandler) ServeHTTP(w http.ResponseWriter, req *http.Reque
|
||||
writeErrorResponse(w, req, BandWidthInsufficientToProceed, req.URL.Path)
|
||||
return
|
||||
}
|
||||
req.Body = "aReader{
|
||||
qr := "aReader{
|
||||
ReadCloser: req.Body,
|
||||
quotas: h.quotas,
|
||||
ip: longIP,
|
||||
w: w,
|
||||
req: req,
|
||||
lock: &sync.RWMutex{},
|
||||
}
|
||||
req.Body = qr
|
||||
w = "aWriter{
|
||||
ResponseWriter: w,
|
||||
quotas: h.quotas,
|
||||
ip: longIP,
|
||||
quotaReader: qr,
|
||||
}
|
||||
h.handler.ServeHTTP(w, req)
|
||||
}
|
||||
@ -75,13 +80,19 @@ type quotaReader struct {
|
||||
w http.ResponseWriter
|
||||
req *http.Request
|
||||
err bool
|
||||
lock *sync.RWMutex
|
||||
}
|
||||
|
||||
func (q *quotaReader) Read(b []byte) (int, error) {
|
||||
log.Println(q.quotas.GetQuotaUsed(q.ip))
|
||||
log.Println(q.quotas.limit)
|
||||
q.lock.Lock()
|
||||
defer q.lock.Unlock()
|
||||
if q.err {
|
||||
return 0, iodine.New(errors.New("Quota Met"), nil)
|
||||
}
|
||||
if q.quotas.IsQuotaMet(q.ip) {
|
||||
if q.err == false && q.quotas.IsQuotaMet(q.ip) {
|
||||
defer q.lock.Unlock()
|
||||
q.err = true
|
||||
writeErrorResponse(q.w, q.req, BandWidthQuotaExceeded, q.req.URL.Path)
|
||||
return 0, iodine.New(errors.New("Quota Met"), nil)
|
||||
@ -99,9 +110,12 @@ type quotaWriter struct {
|
||||
ResponseWriter http.ResponseWriter
|
||||
quotas *quotaMap
|
||||
ip uint32
|
||||
quotaReader *quotaReader
|
||||
}
|
||||
|
||||
func (q *quotaWriter) Write(b []byte) (int, error) {
|
||||
q.quotaReader.lock.RLock()
|
||||
defer q.quotaReader.lock.RUnlock()
|
||||
if q.quotas.IsQuotaMet(q.ip) {
|
||||
return 0, iodine.New(errors.New("Quota Met"), nil)
|
||||
}
|
||||
@ -116,7 +130,9 @@ func (q *quotaWriter) Header() http.Header {
|
||||
}
|
||||
|
||||
func (q *quotaWriter) WriteHeader(status int) {
|
||||
if q.quotas.IsQuotaMet(q.ip) {
|
||||
q.quotaReader.lock.RLock()
|
||||
defer q.quotaReader.lock.RUnlock()
|
||||
if q.quotas.IsQuotaMet(q.ip) || q.quotaReader.err {
|
||||
return
|
||||
}
|
||||
q.ResponseWriter.WriteHeader(status)
|
||||
|
@ -245,7 +245,9 @@ func (memory *memoryDriver) CreateObject(bucket, key, contentType, expectedMD5Su
|
||||
summer.Write(chunk.Data)
|
||||
_, err := io.Copy(&bytesBuffer, bytes.NewBuffer(chunk.Data))
|
||||
if err != nil {
|
||||
return iodine.New(err, nil)
|
||||
err := iodine.New(err, nil)
|
||||
log.Println(err)
|
||||
return err
|
||||
}
|
||||
if uint64(totalLength) > memory.maxSize {
|
||||
return iodine.New(drivers.EntityTooLarge{
|
||||
|
Loading…
x
Reference in New Issue
Block a user