forked from rlmcpherson/s3gof3r
-
Notifications
You must be signed in to change notification settings - Fork 0
/
getter.go
300 lines (270 loc) · 5.66 KB
/
getter.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
package s3gof3r
import (
"crypto/md5"
"fmt"
"hash"
"io"
"io/ioutil"
"math"
"net/http"
"net/url"
"sync"
"syscall"
"time"
)
const (
qWaitSz = 2
)
type getter struct {
url url.URL
b *Bucket
bufsz int64
err error
wg sync.WaitGroup
chunkID int
rChunk *chunk
contentLen int64
bytesRead int64
chunkTotal int
readCh chan *chunk
getCh chan *chunk
quit chan struct{}
qWait map[int]*chunk
sp *bp
closed bool
c *Config
md5 hash.Hash
cIdx int64
}
type chunk struct {
id int
header http.Header
start int64
size int64
b []byte
}
func newGetter(getURL url.URL, c *Config, b *Bucket) (io.ReadCloser, http.Header, error) {
g := new(getter)
g.url = getURL
g.c = c
g.bufsz = max64(c.PartSize, 1)
g.c.NTry = max(c.NTry, 1)
g.c.Concurrency = max(c.Concurrency, 1)
g.getCh = make(chan *chunk)
g.readCh = make(chan *chunk)
g.quit = make(chan struct{})
g.qWait = make(map[int]*chunk)
g.b = b
g.md5 = md5.New()
// use get instead of head for error messaging
resp, err := g.retryRequest("GET", g.url.String(), nil)
if err != nil {
return nil, nil, err
}
defer checkClose(resp.Body, &err)
if resp.StatusCode != 200 {
return nil, nil, newRespError(resp)
}
g.contentLen = resp.ContentLength
g.chunkTotal = int((g.contentLen + g.bufsz - 1) / g.bufsz) // round up, integer division
logger.debugPrintf("object size: %3.2g MB", float64(g.contentLen)/float64((1*mb)))
g.sp = bufferPool(g.bufsz)
for i := 0; i < g.c.Concurrency; i++ {
go g.worker()
}
go g.initChunks()
return g, resp.Header, nil
}
func (g *getter) retryRequest(method, urlStr string, body io.ReadSeeker) (resp *http.Response, err error) {
for i := 0; i < g.c.NTry; i++ {
var req *http.Request
req, err = http.NewRequest(method, urlStr, body)
if err != nil {
return
}
g.b.Sign(req)
resp, err = g.c.Client.Do(req)
if err == nil {
return
}
logger.debugPrintln(err)
if body != nil {
if _, err = body.Seek(0, 0); err != nil {
return
}
}
}
return
}
func (g *getter) initChunks() {
id := 0
for i := int64(0); i < g.contentLen; {
for len(g.qWait) >= qWaitSz {
// Limit growth of qWait
time.Sleep(100 * time.Millisecond)
}
size := min64(g.bufsz, g.contentLen-i)
c := &chunk{
id: id,
header: http.Header{
"Range": {fmt.Sprintf("bytes=%d-%d",
i, i+size-1)},
},
start: i,
size: size,
b: nil,
}
i += size
id++
g.wg.Add(1)
g.getCh <- c
}
close(g.getCh)
}
func (g *getter) worker() {
for c := range g.getCh {
g.retryGetChunk(c)
}
}
func (g *getter) retryGetChunk(c *chunk) {
defer g.wg.Done()
var err error
c.b = <-g.sp.get
for i := 0; i < g.c.NTry; i++ {
time.Sleep(time.Duration(math.Exp2(float64(i))) * 100 * time.Millisecond) // exponential back-off
err = g.getChunk(c)
if err == nil {
return
}
logger.debugPrintf("error on attempt %d: retrying chunk: %v, error: %s", i, c.id, err)
}
g.err = err
close(g.quit) // out of tries, ensure quit by closing channel
}
func (g *getter) getChunk(c *chunk) error {
// ensure buffer is empty
r, err := http.NewRequest("GET", g.url.String(), nil)
if err != nil {
return err
}
r.Header = c.header
g.b.Sign(r)
resp, err := g.c.Client.Do(r)
if err != nil {
return err
}
defer checkClose(resp.Body, &err)
if resp.StatusCode != 206 {
return newRespError(resp)
}
n, err := io.ReadAtLeast(resp.Body, c.b, int(c.size))
if err != nil {
return err
}
if int64(n) != c.size {
return fmt.Errorf("chunk %d: Expected %d bytes, received %d",
c.id, c.size, n)
}
g.readCh <- c
return nil
}
func (g *getter) Read(p []byte) (int, error) {
var err error
if g.closed {
return 0, syscall.EINVAL
}
if g.err != nil {
return 0, g.err
}
nw := 0
for nw < len(p) {
if g.bytesRead == g.contentLen {
return nw, io.EOF
}
if g.rChunk == nil {
g.rChunk, err = g.nextChunk()
if err != nil {
return 0, err
}
g.cIdx = 0
}
n := copy(p[nw:], g.rChunk.b[g.cIdx:g.rChunk.size])
g.cIdx += int64(n)
nw += n
g.bytesRead += int64(n)
if g.cIdx >= g.rChunk.size-1 { // chunk complete
g.sp.give <- g.rChunk.b
g.chunkID++
g.rChunk = nil
}
}
return nw, nil
}
func (g *getter) nextChunk() (*chunk, error) {
for {
// first check qWait
c := g.qWait[g.chunkID]
if c != nil {
delete(g.qWait, g.chunkID)
if g.c.Md5Check {
if _, err := g.md5.Write(c.b[:c.size]); err != nil {
return nil, err
}
}
return c, nil
}
// if next chunk not in qWait, read from channel
select {
case c := <-g.readCh:
g.qWait[c.id] = c
case <-g.quit:
return nil, g.err // fatal error, quit.
}
}
}
func (g *getter) Close() error {
if g.closed {
return syscall.EINVAL
}
if g.err != nil {
return g.err
}
g.wg.Wait()
g.closed = true
close(g.sp.quit)
if g.bytesRead != g.contentLen {
return fmt.Errorf("read error: %d bytes read. expected: %d", g.bytesRead, g.contentLen)
}
if g.c.Md5Check {
if err := g.checkMd5(); err != nil {
return err
}
}
return nil
}
func (g *getter) checkMd5() (err error) {
calcMd5 := fmt.Sprintf("%x", g.md5.Sum(nil))
md5Path := fmt.Sprint(".md5", g.url.Path, ".md5")
md5Url, err := g.b.url(md5Path, g.c)
if err != nil {
return err
}
logger.debugPrintln("md5: ", calcMd5)
logger.debugPrintln("md5Path: ", md5Path)
resp, err := g.retryRequest("GET", md5Url.String(), nil)
if err != nil {
return
}
defer checkClose(resp.Body, &err)
if resp.StatusCode != 200 {
return fmt.Errorf("MD5 check failed: %s not found: %s", md5Url.String(), newRespError(resp))
}
givenMd5, err := ioutil.ReadAll(resp.Body)
if err != nil {
return
}
if calcMd5 != string(givenMd5) {
return fmt.Errorf("MD5 mismatch. given:%s calculated:%s", givenMd5, calcMd5)
}
return
}