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
376
377
378
379
380
|
/*
* This file is part of Go Responsiveness.
*
* Go Responsiveness is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software Foundation,
* either version 2 of the License, or (at your option) any later version.
* Go Responsiveness is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with Go Responsiveness. If not, see <https://www.gnu.org/licenses/>.
*/
package lgc
import (
"context"
"crypto/tls"
"fmt"
"io"
"net/http"
"net/http/httptrace"
"sync"
"sync/atomic"
"time"
"github.com/network-quality/goresponsiveness/debug"
"github.com/network-quality/goresponsiveness/stats"
"github.com/network-quality/goresponsiveness/traceable"
"github.com/network-quality/goresponsiveness/utilities"
)
// TODO: All 64-bit fields that are accessed atomically must
// appear at the top of this struct.
type LoadGeneratingConnectionDownload struct {
downloaded uint64
lastIntervalEnd int64
ConnectToAddr string
URL string
downloadStartTime time.Time
client *http.Client
debug debug.DebugLevel
InsecureSkipVerify bool
KeyLogger io.Writer
clientId uint64
tracer *httptrace.ClientTrace
stats stats.TraceStats
status LgcStatus
statusLock *sync.Mutex
statusWaiter *sync.Cond
}
func NewLoadGeneratingConnectionDownload(url string, keyLogger io.Writer, connectToAddr string, insecureSkipVerify bool) LoadGeneratingConnectionDownload {
lgd := LoadGeneratingConnectionDownload{
URL: url,
KeyLogger: keyLogger,
ConnectToAddr: connectToAddr,
InsecureSkipVerify: insecureSkipVerify,
statusLock: &sync.Mutex{},
}
lgd.statusWaiter = sync.NewCond(lgd.statusLock)
return lgd
}
func (lgd *LoadGeneratingConnectionDownload) Direction() LgcDirection {
return LGC_DOWN
}
func (lgd *LoadGeneratingConnectionDownload) WaitUntilStarted(ctxt context.Context) bool {
conditional := func() bool { return lgd.status != LGC_STATUS_NOT_STARTED }
go utilities.ContextSignaler(ctxt, 500*time.Millisecond, &conditional, lgd.statusWaiter)
return utilities.WaitWithContext(ctxt, &conditional, lgd.statusLock, lgd.statusWaiter)
}
func (lgd *LoadGeneratingConnectionDownload) SetDnsStartTimeInfo(
now time.Time,
dnsStartInfo httptrace.DNSStartInfo,
) {
lgd.stats.DnsStartTime = now
lgd.stats.DnsStart = dnsStartInfo
if debug.IsDebug(lgd.debug) {
fmt.Printf(
"DNS Start for %v: %v\n",
lgd.ClientId(),
dnsStartInfo,
)
}
}
func (lgd *LoadGeneratingConnectionDownload) SetDnsDoneTimeInfo(
now time.Time,
dnsDoneInfo httptrace.DNSDoneInfo,
) {
lgd.stats.DnsDoneTime = now
lgd.stats.DnsDone = dnsDoneInfo
if debug.IsDebug(lgd.debug) {
fmt.Printf(
"DNS Done for %v: %v\n",
lgd.ClientId(),
lgd.stats.DnsDone,
)
}
}
func (lgd *LoadGeneratingConnectionDownload) SetConnectStartTime(
now time.Time,
) {
lgd.stats.ConnectStartTime = now
if debug.IsDebug(lgd.debug) {
fmt.Printf(
"TCP Start for %v at %v\n",
lgd.ClientId(),
lgd.stats.ConnectStartTime,
)
}
}
func (lgd *LoadGeneratingConnectionDownload) SetConnectDoneTimeError(
now time.Time,
err error,
) {
lgd.stats.ConnectDoneTime = now
lgd.stats.ConnectDoneError = err
if debug.IsDebug(lgd.debug) {
fmt.Printf(
"TCP Done for %v (with error %v) @ %v\n",
lgd.ClientId(),
lgd.stats.ConnectDoneError,
lgd.stats.ConnectDoneTime,
)
}
}
func (lgd *LoadGeneratingConnectionDownload) SetGetConnTime(now time.Time) {
lgd.stats.GetConnectionStartTime = now
if debug.IsDebug(lgd.debug) {
fmt.Printf(
"Started getting connection for %v @ %v\n",
lgd.ClientId(),
lgd.stats.GetConnectionStartTime,
)
}
}
func (lgd *LoadGeneratingConnectionDownload) SetGotConnTimeInfo(
now time.Time,
gotConnInfo httptrace.GotConnInfo,
) {
if gotConnInfo.Reused {
fmt.Printf("Unexpectedly reusing a connection!\n")
panic(!gotConnInfo.Reused)
}
lgd.stats.GetConnectionDoneTime = now
lgd.stats.ConnInfo = gotConnInfo
if debug.IsDebug(lgd.debug) {
fmt.Printf(
"Got connection for %v at %v with info %v\n",
lgd.ClientId(),
lgd.stats.GetConnectionDoneTime,
lgd.stats.ConnInfo,
)
}
}
func (lgd *LoadGeneratingConnectionDownload) SetTLSHandshakeStartTime(
now time.Time,
) {
lgd.stats.TLSStartTime = utilities.Some(now)
if debug.IsDebug(lgd.debug) {
fmt.Printf(
"Started TLS Handshake for %v @ %v\n",
lgd.ClientId(),
lgd.stats.TLSStartTime,
)
}
}
func (lgd *LoadGeneratingConnectionDownload) SetTLSHandshakeDoneTimeState(
now time.Time,
connectionState tls.ConnectionState,
) {
lgd.stats.TLSDoneTime = utilities.Some(now)
lgd.stats.TLSConnInfo = connectionState
if debug.IsDebug(lgd.debug) {
fmt.Printf(
"Completed TLS handshake for %v at %v with info %v\n",
lgd.ClientId(),
lgd.stats.TLSDoneTime,
lgd.stats.TLSConnInfo,
)
}
}
func (lgd *LoadGeneratingConnectionDownload) SetHttpWroteRequestTimeInfo(
now time.Time,
info httptrace.WroteRequestInfo,
) {
lgd.stats.HttpWroteRequestTime = now
lgd.stats.HttpInfo = info
if debug.IsDebug(lgd.debug) {
fmt.Printf(
"(lgd) Http finished writing request for %v at %v with info %v\n",
lgd.ClientId(),
lgd.stats.HttpWroteRequestTime,
lgd.stats.HttpInfo,
)
}
}
func (lgd *LoadGeneratingConnectionDownload) SetHttpResponseReadyTime(
now time.Time,
) {
lgd.stats.HttpResponseReadyTime = now
if debug.IsDebug(lgd.debug) {
fmt.Printf(
"Got the first byte of HTTP response headers for %v at %v\n",
lgd.ClientId(),
lgd.stats.HttpResponseReadyTime,
)
}
}
func (lgd *LoadGeneratingConnectionDownload) ClientId() uint64 {
return lgd.clientId
}
func (lgd *LoadGeneratingConnectionDownload) TransferredInInterval() (uint64, time.Duration) {
transferred := atomic.SwapUint64(&lgd.downloaded, 0)
newIntervalEnd := (time.Now().Sub(lgd.downloadStartTime)).Nanoseconds()
previousIntervalEnd := atomic.SwapInt64(&lgd.lastIntervalEnd, newIntervalEnd)
intervalLength := time.Duration(newIntervalEnd - previousIntervalEnd)
if debug.IsDebug(lgd.debug) {
fmt.Printf("download: Transferred: %v bytes in %v.\n", transferred, intervalLength)
}
return transferred, intervalLength
}
func (lgd *LoadGeneratingConnectionDownload) Client() *http.Client {
return lgd.client
}
type loadGeneratingConnectionDownloadReader struct {
n *uint64
ctx context.Context
readable io.Reader
lgd *LoadGeneratingConnectionDownload
}
func (cr *loadGeneratingConnectionDownloadReader) Read(p []byte) (n int, err error) {
if cr.ctx.Err() != nil {
return 0, io.EOF
}
if *cr.n == 0 {
cr.lgd.statusLock.Lock()
cr.lgd.status = LGC_STATUS_RUNNING
cr.lgd.statusWaiter.Broadcast()
cr.lgd.statusLock.Unlock()
}
n, err = cr.readable.Read(p)
atomic.AddUint64(cr.n, uint64(n))
return
}
func (lgd *LoadGeneratingConnectionDownload) Start(
parentCtx context.Context,
debugLevel debug.DebugLevel,
) bool {
lgd.downloaded = 0
lgd.debug = debugLevel
lgd.clientId = utilities.GenerateUniqueId()
transport := &http.Transport{
Proxy: http.ProxyFromEnvironment,
TLSClientConfig: &tls.Config{
InsecureSkipVerify: lgd.InsecureSkipVerify,
},
}
if !utilities.IsInterfaceNil(lgd.KeyLogger) {
if debug.IsDebug(lgd.debug) {
fmt.Printf(
"Using an SSL Key Logger for this load-generating download.\n",
)
}
// The presence of a custom TLSClientConfig in a *generic* `transport`
// means that go will default to HTTP/1.1 and cowardly avoid HTTP/2:
// https://github.com/golang/go/blob/7ca6902c171b336d98adbb103d701a013229c806/src/net/http/transport.go#L278
// Also, it would appear that the API's choice of HTTP vs HTTP2 can
// depend on whether the url contains
// https:// or http://:
// https://github.com/golang/go/blob/7ca6902c171b336d98adbb103d701a013229c806/src/net/http/transport.go#L74
transport.TLSClientConfig.KeyLogWriter = lgd.KeyLogger
}
transport.TLSClientConfig.InsecureSkipVerify = lgd.InsecureSkipVerify
utilities.OverrideHostTransport(transport, lgd.ConnectToAddr)
lgd.client = &http.Client{Transport: transport}
lgd.tracer = traceable.GenerateHttpTimingTracer(lgd, lgd.debug)
if debug.IsDebug(lgd.debug) {
fmt.Printf(
"Started a load-generating download (id: %v).\n",
lgd.clientId,
)
}
go lgd.doDownload(parentCtx)
return true
}
func (lgd *LoadGeneratingConnectionDownload) Status() LgcStatus {
return lgd.status
}
func (lgd *LoadGeneratingConnectionDownload) Stats() *stats.TraceStats {
return &lgd.stats
}
func (lgd *LoadGeneratingConnectionDownload) doDownload(ctx context.Context) error {
var request *http.Request = nil
var get *http.Response = nil
var err error = nil
if request, err = http.NewRequestWithContext(
httptrace.WithClientTrace(ctx, lgd.tracer),
"GET",
lgd.URL,
nil,
); err != nil {
lgd.statusLock.Lock()
lgd.status = LGC_STATUS_ERROR
lgd.statusWaiter.Broadcast()
lgd.statusLock.Unlock()
return err
}
// Used to disable compression
request.Header.Set("Accept-Encoding", "identity")
request.Header.Set("User-Agent", utilities.UserAgent())
lgd.downloadStartTime = time.Now()
lgd.lastIntervalEnd = 0
if get, err = lgd.client.Do(request); err != nil {
lgd.statusLock.Lock()
lgd.status = LGC_STATUS_ERROR
lgd.statusWaiter.Broadcast()
lgd.statusLock.Unlock()
return err
}
// Header.Get returns "" when not set
if get.Header.Get("Content-Encoding") != "" {
lgd.statusLock.Lock()
lgd.status = LGC_STATUS_ERROR
lgd.statusWaiter.Broadcast()
lgd.statusLock.Unlock()
fmt.Printf("Content-Encoding header was set (compression not allowed)")
return fmt.Errorf("Content-Encoding header was set (compression not allowed)")
}
cr := &loadGeneratingConnectionDownloadReader{n: &lgd.downloaded, ctx: ctx, lgd: lgd, readable: get.Body}
_, _ = io.Copy(io.Discard, cr)
lgd.statusLock.Lock()
lgd.status = LGC_STATUS_DONE
lgd.statusWaiter.Broadcast()
lgd.statusLock.Unlock()
get.Body.Close()
if debug.IsDebug(lgd.debug) {
fmt.Printf("Ending a load-generating download.\n")
}
return nil
}
|