/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
go/chat/s3/multi.go
464 строки
13 KB
zoom-ua
enable gosec (#28775)
08 янв 2026, 19:26
Не верифицирован
08 янв 2026, 19:26
5670f73
Код
Авторство
О чём код?
package s3 import ( "bytes" "context" "crypto/md5" //nolint:gosec // G501: MD5 required for S3 ETag computation (AWS API requirement, not cryptographic use) "encoding/base64" "encoding/hex" "encoding/xml" "errors" "io" "sort" "strconv" ) // Multi represents an unfinished multipart upload. // // Multipart uploads allow sending big objects in smaller chunks. // After all parts have been sent, the upload must be explicitly // completed by calling Complete with the list of parts. // // See http://goo.gl/vJfTG for an overview of multipart uploads. type Multi struct { Bucket *Bucket Key string UploadID string `xml:"UploadId"` } // That's the default. Here just for testing. var listMultiMax = 1000 type listMultiResp struct { NextKeyMarker string NextUploadIDMarker string IsTruncated bool Upload []Multi CommonPrefixes []string `xml:"CommonPrefixes>Prefix"` } // ListMulti returns the list of unfinished multipart uploads in b. // // The prefix parameter limits the response to keys that begin with the // specified prefix. You can use prefixes to separate a bucket into different // groupings of keys (to get the feeling of folders, for example). // // The delim parameter causes the response to group all of the keys that // share a common prefix up to the next delimiter in a single entry within // the CommonPrefixes field. You can use delimiters to separate a bucket // into different groupings of keys, similar to how folders would work. // // See http://goo.gl/ePioY for details. func (b *Bucket) ListMulti(ctx context.Context, prefix, delim string) (multis []*Multi, prefixes []string, err error) { params := map[string][]string{ "uploads": {""}, "max-uploads": {strconv.FormatInt(int64(listMultiMax), 10)}, "prefix": {prefix}, "delimiter": {delim}, } headers := map[string][]string{} b.addTokenHeader(headers) for attempt := b.Start(); attempt.Next(); { req := &request{ method: "GET", bucket: b.Name, params: params, headers: headers, } var resp listMultiResp err := b.query(ctx, req, &resp) if shouldRetry(err) && attempt.HasNext() { continue } if err != nil { return nil, nil, err } for i := range resp.Upload { multi := &resp.Upload[i] multi.Bucket = b multis = append(multis, multi) } prefixes = append(prefixes, resp.CommonPrefixes...) if !resp.IsTruncated { return multis, prefixes, nil } params["key-marker"] = []string{resp.NextKeyMarker} params["upload-id-marker"] = []string{resp.NextUploadIDMarker} attempt = b.Start() // Last request worked. } panic("unreachable") } // Multi returns a multipart upload handler for the provided key // inside b. If a multipart upload exists for key, it is returned, // otherwise a new multipart upload is initiated with contType and perm. func (b *Bucket) Multi(ctx context.Context, key, contType string, perm ACL) (MultiInt, error) { multis, _, err := b.ListMulti(ctx, key, "") if err != nil && !hasCode(err, "NoSuchUpload") { if !UsingFakeS3(ctx) { return nil, err } // fakes3 returns NoSuchKey instead of NoSuchUpload, and we want to continue // in that case, not abort if !hasCode(err, "NoSuchKey") { return nil, err } } for _, m := range multis { if m.Key == key { return m, nil } } return b.InitMulti(ctx, key, contType, perm) } // InitMulti initializes a new multipart upload at the provided // key inside b and returns a value for manipulating it. // // See http://goo.gl/XP8kL for details. func (b *Bucket) InitMulti(ctx context.Context, key string, contType string, perm ACL) (*Multi, error) { headers := map[string][]string{ "Content-Type": {contType}, "Content-Length": {"0"}, "x-amz-acl": {string(perm)}, } b.addTokenHeader(headers) params := map[string][]string{ "uploads": {""}, } req := &request{ method: "POST", bucket: b.Name, path: key, headers: headers, params: params, } var err error var resp struct { UploadID string `xml:"UploadId"` } for attempt := b.Start(); attempt.Next(); { err = b.query(ctx, req, &resp) if !shouldRetry(err) { break } } if err != nil { return nil, err } return &Multi{Bucket: b, Key: key, UploadID: resp.UploadID}, nil } // PutPart sends part n of the multipart upload, reading all the content from r. // Each part, except for the last one, must be at least 5MB in size. // // See http://goo.gl/pqZer for details. func (m *Multi) PutPart(ctx context.Context, n int, r io.ReadSeeker) (Part, error) { partSize, _, md5b64, err := seekerInfo(r) if err != nil { return Part{}, err } return m.putPart(ctx, n, r, partSize, md5b64) } func (m *Multi) putPart(ctx context.Context, n int, r io.ReadSeeker, partSize int64, md5b64 string) (Part, error) { headers := map[string][]string{ "Content-Length": {strconv.FormatInt(partSize, 10)}, "Content-MD5": {md5b64}, } m.Bucket.addTokenHeader(headers) params := map[string][]string{ "uploadId": {m.UploadID}, "partNumber": {strconv.FormatInt(int64(n), 10)}, } for attempt := m.Bucket.Start(); attempt.Next(); { _, err := r.Seek(0, 0) if err != nil { return Part{}, err } req := &request{ method: "PUT", bucket: m.Bucket.Name, path: m.Key, headers: headers, params: params, payload: r, } err = m.Bucket.prepare(req) if err != nil { return Part{}, err } resp, err := m.Bucket.run(ctx, req, nil) if shouldRetry(err) && attempt.HasNext() { continue } if err != nil { return Part{}, err } defer resp.Body.Close() etag := resp.Header.Get("ETag") if etag == "" { return Part{}, errors.New("part upload succeeded with no ETag") } return Part{n, etag, partSize}, nil } panic("unreachable") } func seekerInfo(r io.ReadSeeker) (size int64, md5hex string, md5b64 string, err error) { _, err = r.Seek(0, 0) if err != nil { return 0, "", "", err } digest := md5.New() //nolint:gosec // G401: MD5 required for S3 ETag (AWS API requirement) size, err = io.Copy(digest, r) if err != nil { return 0, "", "", err } sum := digest.Sum(nil) md5hex = hex.EncodeToString(sum) md5b64 = base64.StdEncoding.EncodeToString(sum) return size, md5hex, md5b64, nil } type Part struct { N int `xml:"PartNumber"` ETag string Size int64 } type partSlice []Part func (s partSlice) Len() int { return len(s) } func (s partSlice) Less(i, j int) bool { return s[i].N < s[j].N } func (s partSlice) Swap(i, j int) { s[i], s[j] = s[j], s[i] } type listPartsResp struct { NextPartNumberMarker string IsTruncated bool Part []Part } // That's the default. Here just for testing. var listPartsMax = 1000 // ListParts returns the list of previously uploaded parts in m, // ordered by part number. // // See http://goo.gl/ePioY for details. func (m *Multi) ListParts(ctx context.Context) ([]Part, error) { params := map[string][]string{ "uploadId": {m.UploadID}, "max-parts": {strconv.FormatInt(int64(listPartsMax), 10)}, } headers := map[string][]string{} m.Bucket.addTokenHeader(headers) var parts partSlice for attempt := m.Bucket.Start(); attempt.Next(); { req := &request{ method: "GET", bucket: m.Bucket.Name, path: m.Key, params: params, headers: headers, } var resp listPartsResp err := m.Bucket.query(ctx, req, &resp) if shouldRetry(err) && attempt.HasNext() { continue } if err != nil { return nil, err } parts = append(parts, resp.Part...) if !resp.IsTruncated { sort.Sort(parts) return parts, nil } params["part-number-marker"] = []string{resp.NextPartNumberMarker} attempt = m.Bucket.Start() // Last request worked. } panic("unreachable") } type ReaderAtSeeker interface { io.ReaderAt io.ReadSeeker } // PutAll sends all of r via a multipart upload with parts no larger // than partSize bytes, which must be set to at least 5MB. // Parts previously uploaded are either reused if their checksum // and size match the new part, or otherwise overwritten with the // new content. // PutAll returns all the parts of m (reused or not). func (m *Multi) PutAll(r ReaderAtSeeker, partSize int64) ([]Part, error) { old, err := m.ListParts(context.Background()) if err != nil && !hasCode(err, "NoSuchUpload") { return nil, err } reuse := 0 // Index of next old part to consider reusing. current := 1 // Part number of latest good part handled. totalSize, err := r.Seek(0, 2) if err != nil { return nil, err } first := true // Must send at least one empty part if the file is empty. var result []Part NextSection: for offset := int64(0); offset < totalSize || first; offset += partSize { first = false if offset+partSize > totalSize { partSize = totalSize - offset } section := io.NewSectionReader(r, offset, partSize) _, md5hex, md5b64, err := seekerInfo(section) if err != nil { return nil, err } for reuse < len(old) && old[reuse].N <= current { // Looks like this part was already sent. part := &old[reuse] etag := `"` + md5hex + `"` if part.N == current && part.Size == partSize && part.ETag == etag { // Checksum matches. Reuse the old part. result = append(result, *part) current++ continue NextSection } reuse++ } // Part wasn't found or doesn't match. Send it. part, err := m.putPart(context.Background(), current, section, partSize, md5b64) if err != nil { return nil, err } result = append(result, part) current++ } return result, nil } type completeUpload struct { XMLName xml.Name `xml:"CompleteMultipartUpload"` Parts completeParts `xml:"Part"` } type completePart struct { PartNumber int ETag string } type completeParts []completePart func (p completeParts) Len() int { return len(p) } func (p completeParts) Less(i, j int) bool { return p[i].PartNumber < p[j].PartNumber } func (p completeParts) Swap(i, j int) { p[i], p[j] = p[j], p[i] } type completeResponse struct { // The element name: should be either CompleteMultipartUploadResult or Error. XMLName xml.Name // If the element was error, then it should have the following: Code string Message string RequestID string `xml:"RequestId"` HostID string `xml:"HostId"` } // Complete assembles the given previously uploaded parts into the // final object. This operation may take several minutes. // // The complete call to AMZ may still fail after returning HTTP 200, // so even though it's unused, the body of the reply must be demarshalled // and checked to see whether or not the complete succeeded. // // See http://goo.gl/2Z7Tw for details. func (m *Multi) Complete(ctx context.Context, parts []Part) error { params := map[string][]string{ "uploadId": {m.UploadID}, } c := completeUpload{} for _, p := range parts { c.Parts = append(c.Parts, completePart{p.N, p.ETag}) } sort.Sort(c.Parts) data, err := xml.Marshal(&c) if err != nil { return err } // Setting Content-Length prevents breakage on DreamObjects for attempt := m.Bucket.Start(); attempt.Next(); { headers := map[string][]string{ "Content-Length": {strconv.Itoa(len(data))}, } m.Bucket.addTokenHeader(headers) req := &request{ method: "POST", bucket: m.Bucket.Name, path: m.Key, params: params, payload: bytes.NewReader(data), headers: headers, } resp := &completeResponse{} err := m.Bucket.query(ctx, req, resp) if shouldRetry(err) && attempt.HasNext() { continue } if err == nil && resp.XMLName.Local == "Error" { err = &Error{ StatusCode: 200, Code: resp.Code, Message: resp.Message, RequestID: resp.RequestID, HostID: resp.HostID, } } return err } panic("unreachable") } // Abort deletes an unfinished multipart upload and any previously // uploaded parts for it. // // After a multipart upload is aborted, no additional parts can be // uploaded using it. However, if any part uploads are currently in // progress, those part uploads might or might not succeed. As a result, // it might be necessary to abort a given multipart upload multiple // times in order to completely free all storage consumed by all parts. // // NOTE: If the described scenario happens to you, please report back to // the goamz authors with details. In the future such retrying should be // handled internally, but it's not clear what happens precisely (Is an // error returned? Is the issue completely undetectable?). // // See http://goo.gl/dnyJw for details. func (m *Multi) Abort(ctx context.Context) error { params := map[string][]string{ "uploadId": {m.UploadID}, } headers := map[string][]string{} m.Bucket.addTokenHeader(headers) for attempt := m.Bucket.Start(); attempt.Next(); { req := &request{ method: "DELETE", bucket: m.Bucket.Name, path: m.Key, params: params, headers: headers, } err := m.Bucket.query(ctx, req, nil) if shouldRetry(err) && attempt.HasNext() { continue } return err } panic("unreachable") }