diff options
| author | Kevin Bulteel <kb@koalasoft.de> | 2024-11-15 20:25:18 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-15 11:25:18 -0800 |
| commit | 4a0dc883cfee63832fb2f73d1e4478e918eb0f58 (patch) | |
| tree | cad582e415a9fa2576753cccce9d7b09ebc291f7 /weed/storage | |
| parent | 8ebbf37e8ece3177822dafbdb4fddcef6f724969 (diff) | |
| download | seaweedfs-4a0dc883cfee63832fb2f73d1e4478e918eb0f58.tar.xz seaweedfs-4a0dc883cfee63832fb2f73d1e4478e918eb0f58.zip | |
Fix/parse upload filename (#6241)
* fix: parse filename in PUT + refactor
* fix: master iu public url with http
* fix: better parsing and handle disposition header
* fix: take mime type from file extension if not set
Diffstat (limited to 'weed/storage')
| -rw-r--r-- | weed/storage/needle/needle_parse_upload.go | 232 |
1 files changed, 104 insertions, 128 deletions
diff --git a/weed/storage/needle/needle_parse_upload.go b/weed/storage/needle/needle_parse_upload.go index 28de27910..89708303d 100644 --- a/weed/storage/needle/needle_parse_upload.go +++ b/weed/storage/needle/needle_parse_upload.go @@ -43,19 +43,8 @@ func ParseUpload(r *http.Request, sizeLimit int64, bytesBuffer *bytes.Buffer) (p } } - if r.Method == http.MethodPost { - contentType := r.Header.Get("Content-Type") + e = parseUpload(r, sizeLimit, pu) - // If content-type is explicitly set, upload the file without parsing form-data - if contentType != "" && !strings.Contains(contentType, "form-data") { - e = parseRawPost(r, sizeLimit, pu) - } else { - e = parseMultipart(r, sizeLimit, pu) - } - - } else { - e = parsePut(r, sizeLimit, pu) - } if e != nil { return } @@ -108,170 +97,157 @@ func ParseUpload(r *http.Request, sizeLimit int64, bytesBuffer *bytes.Buffer) (p return } -func parsePut(r *http.Request, sizeLimit int64, pu *ParsedUpload) error { - pu.IsGzipped = r.Header.Get("Content-Encoding") == "gzip" - // pu.IsZstd = r.Header.Get("Content-Encoding") == "zstd" - pu.MimeType = r.Header.Get("Content-Type") - pu.FileName = "" - dataSize, err := pu.bytesBuffer.ReadFrom(io.LimitReader(r.Body, sizeLimit+1)) - if err == io.EOF || dataSize == sizeLimit+1 { - io.Copy(io.Discard, r.Body) - } - pu.Data = pu.bytesBuffer.Bytes() - r.Body.Close() - return nil -} +func parseUpload(r *http.Request, sizeLimit int64, pu *ParsedUpload) (e error) { -func parseMultipart(r *http.Request, sizeLimit int64, pu *ParsedUpload) (e error) { defer func() { if e != nil && r.Body != nil { io.Copy(io.Discard, r.Body) r.Body.Close() } }() - form, fe := r.MultipartReader() - if fe != nil { - glog.V(0).Infoln("MultipartReader [ERROR]", fe) - e = fe - return - } - // first multi-part item - part, fe := form.NextPart() - if fe != nil { - glog.V(0).Infoln("Reading Multi part [ERROR]", fe) - e = fe - return - } + contentType := r.Header.Get("Content-Type") + var dataSize int64 - pu.FileName = part.FileName() - if pu.FileName != "" { - pu.FileName = path.Base(pu.FileName) - } + if r.Method == http.MethodPost && (contentType == "" || strings.Contains(contentType, "form-data")) { + form, fe := r.MultipartReader() - var dataSize int64 - dataSize, e = pu.bytesBuffer.ReadFrom(io.LimitReader(part, sizeLimit+1)) - if e != nil { - glog.V(0).Infoln("Reading Content [ERROR]", e) - return - } - if dataSize == sizeLimit+1 { - e = fmt.Errorf("file over the limited %d bytes", sizeLimit) - return - } - pu.Data = pu.bytesBuffer.Bytes() + if fe != nil { + glog.V(0).Infoln("MultipartReader [ERROR]", fe) + e = fe + return + } - // if the filename is empty string, do a search on the other multi-part items - for pu.FileName == "" { - part2, fe := form.NextPart() + // first multi-part item + part, fe := form.NextPart() if fe != nil { - break // no more or on error, just safely break + glog.V(0).Infoln("Reading Multi part [ERROR]", fe) + e = fe + return } - fName := part2.FileName() + pu.FileName = part.FileName() + if pu.FileName != "" { + pu.FileName = path.Base(pu.FileName) + } - // found the first <file type> multi-part has filename - if fName != "" { - pu.bytesBuffer.Reset() - dataSize2, fe2 := pu.bytesBuffer.ReadFrom(io.LimitReader(part2, sizeLimit+1)) - if fe2 != nil { - glog.V(0).Infoln("Reading Content [ERROR]", fe2) - e = fe2 - return - } - if dataSize2 == sizeLimit+1 { - e = fmt.Errorf("file over the limited %d bytes", sizeLimit) - return + dataSize, e = pu.bytesBuffer.ReadFrom(io.LimitReader(part, sizeLimit+1)) + if e != nil { + glog.V(0).Infoln("Reading Content [ERROR]", e) + return + } + if dataSize == sizeLimit+1 { + e = fmt.Errorf("file over the limited %d bytes", sizeLimit) + return + } + pu.Data = pu.bytesBuffer.Bytes() + + contentType = part.Header.Get("Content-Type") + + // if the filename is empty string, do a search on the other multi-part items + for pu.FileName == "" { + part2, fe := form.NextPart() + if fe != nil { + break // no more or on error, just safely break } - // update - pu.Data = pu.bytesBuffer.Bytes() - pu.FileName = path.Base(fName) - break + fName := part2.FileName() + + // found the first <file type> multi-part has filename + if fName != "" { + pu.bytesBuffer.Reset() + dataSize2, fe2 := pu.bytesBuffer.ReadFrom(io.LimitReader(part2, sizeLimit+1)) + if fe2 != nil { + glog.V(0).Infoln("Reading Content [ERROR]", fe2) + e = fe2 + return + } + if dataSize2 == sizeLimit+1 { + e = fmt.Errorf("file over the limited %d bytes", sizeLimit) + return + } + + // update + pu.Data = pu.bytesBuffer.Bytes() + pu.FileName = path.Base(fName) + contentType = part.Header.Get("Content-Type") + part = part2 + break + } } - } - pu.IsChunkedFile, _ = strconv.ParseBool(r.FormValue("cm")) + pu.IsGzipped = part.Header.Get("Content-Encoding") == "gzip" + // pu.IsZstd = part.Header.Get("Content-Encoding") == "zstd" - if !pu.IsChunkedFile { + } else { + disposition := r.Header.Get("Content-Disposition") - dotIndex := strings.LastIndex(pu.FileName, ".") - ext, mtype := "", "" - if dotIndex > 0 { - ext = strings.ToLower(pu.FileName[dotIndex:]) - mtype = mime.TypeByExtension(ext) - } - contentType := part.Header.Get("Content-Type") - if contentType != "" && contentType != "application/octet-stream" && mtype != contentType { - pu.MimeType = contentType // only return mime type if not deducible - mtype = contentType - } + if strings.Contains(disposition, "name=") { - } - pu.IsGzipped = part.Header.Get("Content-Encoding") == "gzip" - // pu.IsZstd = part.Header.Get("Content-Encoding") == "zstd" + if !strings.HasPrefix(disposition, "inline") && !strings.HasPrefix(disposition, "attachment") { + disposition = "attachment; " + disposition + } - return -} + _, mediaTypeParams, err := mime.ParseMediaType(disposition) -func parseRawPost(r *http.Request, sizeLimit int64, pu *ParsedUpload) (e error) { + if err == nil { + dpFilename, hasFilename := mediaTypeParams["filename"] + dpName, hasName := mediaTypeParams["name"] - defer func() { - if e != nil && r.Body != nil { - io.Copy(io.Discard, r.Body) - r.Body.Close() - } - }() + if hasFilename { + pu.FileName = dpFilename + } else if hasName { + pu.FileName = dpName + } - pu.FileName = r.Header.Get("Content-Disposition") + } - if pu.FileName != "" && strings.Contains(pu.FileName, "filename=") { - parts := strings.Split(pu.FileName, "filename=") - parts = strings.Split(parts[1], "\"") + } else { + pu.FileName = "" + } - pu.FileName = parts[1] - } else { - pu.FileName = "" - } + if pu.FileName != "" { + pu.FileName = path.Base(pu.FileName) + } else { + pu.FileName = path.Base(r.URL.Path) + } - if pu.FileName != "" { - pu.FileName = path.Base(pu.FileName) - } else { - pu.FileName = path.Base(r.URL.Path) - } + dataSize, e = pu.bytesBuffer.ReadFrom(io.LimitReader(r.Body, sizeLimit+1)) - var dataSize int64 - dataSize, e = pu.bytesBuffer.ReadFrom(io.LimitReader(r.Body, sizeLimit+1)) + if e != nil { + glog.V(0).Infoln("Reading Content [ERROR]", e) + return + } + if dataSize == sizeLimit+1 { + e = fmt.Errorf("file over the limited %d bytes", sizeLimit) + return + } - if e != nil { - glog.V(0).Infoln("Reading Content [ERROR]", e) - return - } - if dataSize == sizeLimit+1 { - e = fmt.Errorf("file over the limited %d bytes", sizeLimit) - return + pu.Data = pu.bytesBuffer.Bytes() + pu.MimeType = contentType + pu.IsGzipped = r.Header.Get("Content-Encoding") == "gzip" + // pu.IsZstd = r.Header.Get("Content-Encoding") == "zstd" } - pu.Data = pu.bytesBuffer.Bytes() + pu.IsChunkedFile, _ = strconv.ParseBool(r.FormValue("cm")) if !pu.IsChunkedFile { dotIndex := strings.LastIndex(pu.FileName, ".") ext, mtype := "", "" + if dotIndex > 0 { ext = strings.ToLower(pu.FileName[dotIndex:]) mtype = mime.TypeByExtension(ext) } - contentType := r.Header.Get("Content-Type") if contentType != "" && contentType != "application/octet-stream" && mtype != contentType { pu.MimeType = contentType // only return mime type if not deducible - mtype = contentType + } else if mtype != "" && pu.MimeType == "" && mtype != "application/octet-stream" { + pu.MimeType = mtype } } - pu.IsGzipped = r.Header.Get("Content-Encoding") == "gzip" - // pu.IsZstd = r.Header.Get("Content-Encoding") == "zstd" return } |
