forked from projectdiscovery/retryablehttp-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
do.go
152 lines (130 loc) · 4.25 KB
/
do.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
package retryablehttp
import (
"context"
"fmt"
"io"
"net/http"
"strings"
"sync/atomic"
"time"
dac "github.com/Mzack9999/go-http-digest-auth-client"
)
// PassthroughErrorHandler is an ErrorHandler that directly passes through the
// values from the net/http library for the final request. The body is not
// closed.
func PassthroughErrorHandler(resp *http.Response, err error, _ int) (*http.Response, error) {
return resp, err
}
// Do wraps calling an HTTP method with retries.
func (c *Client) Do(req *Request) (*http.Response, error) {
var resp *http.Response
var err error
// Create a main context that will be used as the main timeout
mainCtx, cancel := context.WithTimeout(context.Background(), c.options.Timeout)
defer cancel()
retryMax := c.options.RetryMax
if ctxRetryMax := req.Context().Value(RETRY_MAX); ctxRetryMax != nil {
if maxRetriesParsed, ok := ctxRetryMax.(int); ok {
retryMax = maxRetriesParsed
}
}
for i := 0; ; i++ {
// request body can be read multiple times
// hence no need to rewind it
if c.RequestLogHook != nil {
c.RequestLogHook(req.Request, i)
}
if req.hasAuth() && req.Auth.Type == DigestAuth {
digestTransport := dac.NewTransport(req.Auth.Username, req.Auth.Password)
digestTransport.HTTPClient = c.HTTPClient
resp, err = digestTransport.RoundTrip(req.Request)
} else {
// Attempt the request with standard behavior
resp, err = c.HTTPClient.Do(req.Request)
}
// Check if we should continue with retries.
checkOK, checkErr := c.CheckRetry(req.Context(), resp, err)
// if err is equal to missing minor protocol version retry with http/2
if err != nil && strings.Contains(err.Error(), "net/http: HTTP/1.x transport connection broken: malformed HTTP version \"HTTP/2\"") {
resp, err = c.HTTPClient2.Do(req.Request)
checkOK, checkErr = c.CheckRetry(req.Context(), resp, err)
}
if err != nil {
// Increment the failure counter as the request failed
req.Metrics.Failures++
} else {
// Call this here to maintain the behavior of logging all requests,
// even if CheckRetry signals to stop.
if c.ResponseLogHook != nil {
// Call the response logger function if provided.
c.ResponseLogHook(resp)
}
}
// Now decide if we should continue.
if !checkOK {
if checkErr != nil {
err = checkErr
}
c.closeIdleConnections()
return resp, err
}
// We do this before drainBody beause there's no need for the I/O if
// we're breaking out
remain := retryMax - i
if remain <= 0 {
break
}
// Increment the retries counter as we are going to do one more retry
req.Metrics.Retries++
// We're going to retry, consume any response to reuse the connection.
if err == nil && resp != nil {
c.drainBody(req, resp)
}
// Wait for the time specified by backoff then retry.
// If the context is cancelled however, return.
wait := c.Backoff(c.options.RetryWaitMin, c.options.RetryWaitMax, i, resp)
// Exit if the main context or the request context is done
// Otherwise, wait for the duration and try again.
// use label to explicitly specify what to break
selectstatement:
select {
case <-mainCtx.Done():
break selectstatement
case <-req.Context().Done():
c.closeIdleConnections()
return nil, req.Context().Err()
case <-time.After(wait):
}
}
if c.ErrorHandler != nil {
c.closeIdleConnections()
return c.ErrorHandler(resp, err, retryMax+1)
}
// By default, we close the response body and return an error without
// returning the response
if resp != nil {
resp.Body.Close()
}
c.closeIdleConnections()
return nil, fmt.Errorf("%s %s giving up after %d attempts: %w", req.Method, req.URL, retryMax+1, err)
}
// Try to read the response body so we can reuse this connection.
func (c *Client) drainBody(req *Request, resp *http.Response) {
_, err := io.Copy(io.Discard, io.LimitReader(resp.Body, c.options.RespReadLimit))
if err != nil {
req.Metrics.DrainErrors++
}
resp.Body.Close()
}
const closeConnectionsCounter = 100
func (c *Client) closeIdleConnections() {
if c.options.KillIdleConn {
requestCounter := atomic.LoadUint32(&c.requestCounter)
if requestCounter < closeConnectionsCounter {
atomic.AddUint32(&c.requestCounter, 1)
} else {
atomic.StoreUint32(&c.requestCounter, 0)
c.HTTPClient.CloseIdleConnections()
}
}
}