S3: fail fast when "X-Amz-Copy-Source" is a folder

fix https://github.com/chrislusf/seaweedfs/issues/2593
This commit is contained in:
chrislu 2022-01-17 23:09:37 -08:00
parent e271721d4e
commit c87b8f4c30

View file

@ -38,6 +38,10 @@ func (s3a *S3ApiServer) CopyObjectHandler(w http.ResponseWriter, r *http.Request
s3err.WriteErrorResponse(w, r, s3err.ErrInvalidCopySource)
return
}
if entry.IsDirectory {
s3err.WriteErrorResponse(w, r, s3err.ErrInvalidCopySource)
return
}
entry.Extended = weed_server.SaveAmzMetaData(r, entry.Extended, isReplace(r))
err = s3a.touch(dir, name, entry)
if err != nil {