-
Notifications
You must be signed in to change notification settings - Fork 140
/
Copy pathrequester.go
375 lines (331 loc) · 7.87 KB
/
requester.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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
package main
import (
"context"
"crypto/tls"
"fmt"
"io"
"net"
url2 "net/url"
"os"
"os/signal"
"strconv"
"strings"
"sync"
"sync/atomic"
"syscall"
"time"
"github.com/valyala/fasthttp"
"github.com/valyala/fasthttp/fasthttpproxy"
"go.uber.org/automaxprocs/maxprocs"
"golang.org/x/time/rate"
)
var (
startTime = time.Now()
sendOnCloseError interface{}
)
type ReportRecord struct {
cost time.Duration
code int
error string
readBytes int64
writeBytes int64
}
var recordPool = sync.Pool{
New: func() interface{} { return new(ReportRecord) },
}
func init() {
// Honoring env GOMAXPROCS
_, _ = maxprocs.Set()
defer func() {
sendOnCloseError = recover()
}()
func() {
cc := make(chan struct{}, 1)
close(cc)
cc <- struct{}{}
}()
}
type MyConn struct {
net.Conn
r, w *int64
}
func NewMyConn(conn net.Conn, r, w *int64) (*MyConn, error) {
myConn := &MyConn{Conn: conn, r: r, w: w}
return myConn, nil
}
func (c *MyConn) Read(b []byte) (n int, err error) {
sz, err := c.Conn.Read(b)
if err == nil {
atomic.AddInt64(c.r, int64(sz))
}
return sz, err
}
func (c *MyConn) Write(b []byte) (n int, err error) {
sz, err := c.Conn.Write(b)
if err == nil {
atomic.AddInt64(c.w, int64(sz))
}
return sz, err
}
func ThroughputInterceptorDial(dial fasthttp.DialFunc, r *int64, w *int64) fasthttp.DialFunc {
return func(addr string) (net.Conn, error) {
conn, err := dial(addr)
if err != nil {
return nil, err
}
return NewMyConn(conn, r, w)
}
}
type Requester struct {
concurrency int
reqRate *rate.Limit
requests int64
duration time.Duration
clientOpt *ClientOpt
httpClient *fasthttp.HostClient
httpHeader *fasthttp.RequestHeader
errWriter io.Writer
recordChan chan *ReportRecord
closeOnce sync.Once
wg sync.WaitGroup
readBytes int64
writeBytes int64
cancel func()
}
type ClientOpt struct {
url string
method string
headers []string
bodyBytes []byte
bodyFile string
certPath string
keyPath string
insecure bool
maxConns int
doTimeout time.Duration
readTimeout time.Duration
writeTimeout time.Duration
dialTimeout time.Duration
socks5Proxy string
contentType string
host string
}
func NewRequester(concurrency int, requests int64, duration time.Duration, reqRate *rate.Limit, errWriter io.Writer, clientOpt *ClientOpt) (*Requester, error) {
maxResult := concurrency * 100
if maxResult > 8192 {
maxResult = 8192
}
r := &Requester{
concurrency: concurrency,
reqRate: reqRate,
requests: requests,
duration: duration,
errWriter: errWriter,
clientOpt: clientOpt,
recordChan: make(chan *ReportRecord, maxResult),
}
client, header, err := buildRequestClient(clientOpt, &r.readBytes, &r.writeBytes)
if err != nil {
return nil, err
}
r.httpClient = client
r.httpHeader = header
return r, nil
}
func addMissingPort(addr string, isTLS bool) string {
n := strings.Index(addr, ":")
if n >= 0 {
return addr
}
port := 80
if isTLS {
port = 443
}
return net.JoinHostPort(addr, strconv.Itoa(port))
}
func buildTLSConfig(opt *ClientOpt) (*tls.Config, error) {
var certs []tls.Certificate
if opt.certPath != "" && opt.keyPath != "" {
c, err := tls.LoadX509KeyPair(opt.certPath, opt.keyPath)
if err != nil {
return nil, err
}
certs = append(certs, c)
}
return &tls.Config{
InsecureSkipVerify: opt.insecure,
Certificates: certs,
}, nil
}
func buildRequestClient(opt *ClientOpt, r *int64, w *int64) (*fasthttp.HostClient, *fasthttp.RequestHeader, error) {
u, err := url2.Parse(opt.url)
if err != nil {
return nil, nil, err
}
httpClient := &fasthttp.HostClient{
Addr: addMissingPort(u.Host, u.Scheme == "https"),
IsTLS: u.Scheme == "https",
Name: "plow",
MaxConns: opt.maxConns,
ReadTimeout: opt.readTimeout,
WriteTimeout: opt.writeTimeout,
DisableHeaderNamesNormalizing: true,
}
if opt.socks5Proxy != "" {
if !strings.Contains(opt.socks5Proxy, "://") {
opt.socks5Proxy = "socks5://" + opt.socks5Proxy
}
httpClient.Dial = fasthttpproxy.FasthttpSocksDialer(opt.socks5Proxy)
} else {
httpClient.Dial = fasthttpproxy.FasthttpProxyHTTPDialerTimeout(opt.dialTimeout)
}
httpClient.Dial = ThroughputInterceptorDial(httpClient.Dial, r, w)
tlsConfig, err := buildTLSConfig(opt)
if err != nil {
return nil, nil, err
}
httpClient.TLSConfig = tlsConfig
var requestHeader fasthttp.RequestHeader
if opt.contentType != "" {
requestHeader.SetContentType(opt.contentType)
}
if opt.host != "" {
requestHeader.SetHost(opt.host)
} else {
requestHeader.SetHost(u.Host)
}
requestHeader.SetMethod(opt.method)
requestHeader.SetRequestURI(u.RequestURI())
for _, h := range opt.headers {
n := strings.SplitN(h, ":", 2)
if len(n) != 2 {
return nil, nil, fmt.Errorf("invalid header: %s", h)
}
requestHeader.Set(n[0], n[1])
}
return httpClient, &requestHeader, nil
}
func (r *Requester) Cancel() {
r.cancel()
}
func (r *Requester) RecordChan() <-chan *ReportRecord {
return r.recordChan
}
func (r *Requester) closeRecord() {
r.closeOnce.Do(func() {
close(r.recordChan)
})
}
func (r *Requester) DoRequest(req *fasthttp.Request, resp *fasthttp.Response, rr *ReportRecord) {
t1 := time.Since(startTime)
var err error
if r.clientOpt.doTimeout > 0 {
err = r.httpClient.DoTimeout(req, resp, r.clientOpt.doTimeout)
} else {
err = r.httpClient.Do(req, resp)
}
if err != nil {
rr.cost = time.Since(startTime) - t1
rr.error = err.Error()
return
}
writeTo := io.Discard
if resp.StatusCode() >= 500 {
writeTo = r.errWriter
_, _ = r.errWriter.Write([]byte(fmt.Sprintf("\n%d %s\n", resp.StatusCode(), rr.cost)))
_, _ = r.errWriter.Write([]byte(fmt.Sprintf("%s", &resp.Header)))
}
err = resp.BodyWriteTo(writeTo)
if err != nil {
rr.cost = time.Since(startTime) - t1
rr.error = err.Error()
return
}
rr.cost = time.Since(startTime) - t1
rr.code = resp.StatusCode()
rr.error = ""
}
func (r *Requester) Run() {
// handle ctrl-c
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, os.Interrupt, syscall.SIGTERM)
defer signal.Stop(sigs)
ctx, cancelFunc := context.WithCancel(context.Background())
r.cancel = cancelFunc
go func() {
<-sigs
r.closeRecord()
cancelFunc()
}()
startTime = time.Now()
if r.duration > 0 {
time.AfterFunc(r.duration, func() {
r.closeRecord()
cancelFunc()
})
}
var limiter *rate.Limiter
if r.reqRate != nil {
limiter = rate.NewLimiter(*r.reqRate, 1)
}
semaphore := r.requests
for i := 0; i < r.concurrency; i++ {
r.wg.Add(1)
go func() {
defer func() {
r.wg.Done()
v := recover()
if v != nil && v != sendOnCloseError {
panic(v)
}
}()
req := &fasthttp.Request{}
resp := &fasthttp.Response{}
r.httpHeader.CopyTo(&req.Header)
if r.httpClient.IsTLS {
req.URI().SetScheme("https")
req.URI().SetHostBytes(req.Header.Host())
}
for {
select {
case <-ctx.Done():
return
default:
}
if limiter != nil {
err := limiter.Wait(ctx)
if err != nil {
continue
}
}
if r.requests > 0 && atomic.AddInt64(&semaphore, -1) < 0 {
cancelFunc()
return
}
if r.clientOpt.bodyFile != "" {
file, err := os.Open(r.clientOpt.bodyFile)
if err != nil {
rr := recordPool.Get().(*ReportRecord)
rr.cost = 0
rr.error = err.Error()
rr.readBytes = atomic.LoadInt64(&r.readBytes)
rr.writeBytes = atomic.LoadInt64(&r.writeBytes)
r.recordChan <- rr
continue
}
req.SetBodyStream(file, -1)
} else {
req.SetBodyRaw(r.clientOpt.bodyBytes)
}
resp.Reset()
rr := recordPool.Get().(*ReportRecord)
r.DoRequest(req, resp, rr)
rr.readBytes = atomic.LoadInt64(&r.readBytes)
rr.writeBytes = atomic.LoadInt64(&r.writeBytes)
r.recordChan <- rr
}
}()
}
r.wg.Wait()
r.closeRecord()
}