forked from AdguardTeam/gomitmproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
proxy.go
728 lines (606 loc) · 20.4 KB
/
proxy.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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
// Package gomitmproxy implements a configurable mitm proxy wring purely in go.
package gomitmproxy
import (
"bufio"
"bytes"
"crypto/tls"
"encoding/pem"
"io"
"net"
"net/http"
"strings"
"sync"
"time"
"github.com/AdguardTeam/golibs/log"
"github.com/AdguardTeam/gomitmproxy/proxyutil"
"github.com/pkg/errors"
)
var errClientCertRequested = errors.New("tls: client cert authentication unsupported")
// defaultTimeout is the default value for reading from local connections.
// By default we have no timeout.
//
// TODO(ameshkov): rework deadlines (see #13 for example).
const defaultTimeout = 0
const dialTimeout = 30 * time.Second
const tlsHandshakeTimeout = 10 * time.Second
// Proxy is a structure with the proxy server configuration and current state.
type Proxy struct {
// addr is the address the proxy listens to.
addr net.Addr
// transport is an http.RoundTripper instance that we use for plain HTTP
// requests.
transport http.RoundTripper
// listener is used to accept incoming connections to this proxy.
listener net.Listener
// dial is a function for creating net.Conn. Can be useful to override in
// unit-tests.
dial func(string, string) (net.Conn, error)
// timeout is the remote connection's read/write timeout.
timeout time.Duration
// closing is the channel that signals that proxy is closing.
closing chan bool
// connsWg is a wait group that's used to keep track of active connections.
connsWg sync.WaitGroup
// The proxy will not attempt MITM for these hostnames. A hostname can be
// added to this list in runtime if proxy fails to verify the certificate.
invalidTLSHosts map[string]bool
invalidTLSHostsMu sync.RWMutex
// Config is the proxy's configuration.
// TODO(ameshkov): make it a field.
Config
}
// NewProxy creates a new instance of the Proxy.
func NewProxy(config Config) *Proxy {
proxy := &Proxy{
Config: config,
transport: &http.Transport{
// This forces http.Transport to not upgrade requests to HTTP/2.
// TODO: Remove when HTTP/2 can be supported.
TLSNextProto: make(map[string]func(string, *tls.Conn) http.RoundTripper),
Proxy: http.ProxyFromEnvironment,
TLSHandshakeTimeout: tlsHandshakeTimeout,
ExpectContinueTimeout: time.Second,
TLSClientConfig: &tls.Config{
GetClientCertificate: func(info *tls.CertificateRequestInfo) (certificate *tls.Certificate, e error) {
// We purposefully cause an error here so that the
// http.Transport.RoundTrip method failed. In this case
// we'll receive the error and will be able to add the host
// to invalidTLSHosts.
return nil, errClientCertRequested
},
},
},
timeout: defaultTimeout,
invalidTLSHosts: map[string]bool{},
closing: make(chan bool),
}
proxy.dial = (&net.Dialer{
Timeout: dialTimeout,
KeepAlive: dialTimeout,
}).Dial
if len(config.MITMExceptions) > 0 {
for _, hostname := range config.MITMExceptions {
proxy.invalidTLSHosts[hostname] = true
}
}
return proxy
}
// Addr returns the address this proxy listens to.
func (p *Proxy) Addr() (addr net.Addr) {
return p.addr
}
// Closing returns true if the proxy is in the closing state.
func (p *Proxy) Closing() (ok bool) {
select {
case <-p.closing:
return true
default:
return false
}
}
// Start starts the proxy server in a separate goroutine.
func (p *Proxy) Start() (err error) {
l, err := net.ListenTCP("tcp", p.ListenAddr)
if err != nil {
return err
}
p.addr = l.Addr()
var listener net.Listener
listener = l
if p.TLSConfig != nil {
listener = tls.NewListener(l, p.TLSConfig)
}
p.listener = listener
go p.Serve(listener)
return nil
}
// Serve starts reading and processing requests from the specified listener.
// Please note, that it will close the listener in the end.
func (p *Proxy) Serve(l net.Listener) {
log.Printf("start listening to %s", l.Addr())
err := p.serve(l)
if err != nil {
log.Printf("finished serving due to: %v", err)
}
_ = l.Close()
}
// Close sets the proxy to the closing state so it stops receiving new
// connections, finishes processing any inflight requests, and closes existing
// connections without reading anymore requests from them.
//
// TODO(ameshkov): make it return an error.
func (p *Proxy) Close() {
log.Printf("Closing proxy")
p.listener.Close()
// This will prevent waiting for the proxy.timeout until an incoming
// request has been read.
close(p.closing)
log.Printf("Waiting for all active connections to close")
p.connsWg.Wait()
log.Printf("All connections closed")
}
// serve accepts connections from the specified listener and passes them further
// to Proxy.handleConnection.
func (p *Proxy) serve(l net.Listener) (err error) {
for {
if p.Closing() {
return nil
}
conn, err := l.Accept()
if err != nil {
return err
}
localRW := bufio.NewReadWriter(bufio.NewReader(conn), bufio.NewWriter(conn))
ctx := newContext(conn, localRW, nil)
log.Debug("id=%s: accepted connection from %s", ctx.ID(), ctx.conn.RemoteAddr())
if tcpConn, ok := conn.(*net.TCPConn); ok {
_ = tcpConn.SetKeepAlive(true)
_ = tcpConn.SetKeepAlivePeriod(3 * time.Minute)
}
go p.handleConnection(ctx)
}
}
// handleConnection starts processing a new network connection.
func (p *Proxy) handleConnection(ctx *Context) {
// Increment the active connections count.
p.connsWg.Add(1)
// Clean up on exit.
defer p.connsWg.Done()
defer ctx.conn.Close()
if p.Closing() {
return
}
p.handleLoop(ctx)
}
// handleLoop processes requests in a loop.
func (p *Proxy) handleLoop(ctx *Context) {
for {
if p.timeout > 0 {
// TODO(ameshkov): rework deadlines (see #13 for example).
deadline := time.Now().Add(p.timeout)
_ = ctx.SetDeadline(deadline)
}
if err := p.handleRequest(ctx); err != nil {
log.Debug("id=%s: closing connection due to: %v", ctx.ID(), err)
return
}
}
}
// handleRequest reads an incoming request and processes it.
func (p *Proxy) handleRequest(ctx *Context) error {
origReq, err := p.readRequest(ctx)
if err != nil {
return err
}
defer origReq.Body.Close()
session := newSession(ctx, origReq)
p.prepareRequest(origReq, session)
log.Debug("id=%s: handle request %s %s", session.ID(), origReq.Method, origReq.URL.String())
customRes := false
if p.OnRequest != nil {
// newRes body is closed below (see session.res.body.Close())
// nolint:bodyclose
newReq, newRes := p.OnRequest(session)
if newReq != nil {
log.Debug("id=%s: request was overridden by: %s", session.ID(), newReq.URL.String())
session.req = newReq
}
if newRes != nil {
log.Debug("id=%s: response was overridden by: %s", session.ID(), newRes.Status)
session.res = newRes
customRes = true
}
}
if session.req.Host == p.APIHost {
return p.handleAPIRequest(session)
}
if !customRes {
// check proxy authorization first.
if p.Username != "" {
auth, res := p.authorize(session)
if !auth {
log.Debug("id=%s: proxy auth required", session.ID())
session.res = res
defer res.Body.Close()
_ = p.writeResponse(session)
return errClose
}
}
if session.req.Header.Get("Upgrade") == "websocket" {
// connection protocol will be upgraded.
return p.handleTunnel(session)
}
// connection, proxy-connection, etc, etc.
removeHopByHopHeaders(session.req.Header)
if session.req.Method == http.MethodConnect {
return p.handleConnect(session)
}
// not a CONNECT request, processing a plain HTTP request.
// res body is closed below (see session.res.body.Close()).
// nolint:bodyclose
res, err := p.transport.RoundTrip(session.req)
if err != nil {
log.Error("id=%s: failed to round trip: %v", session.ID(), err)
p.raiseOnError(session, err)
// res body is closed below (see session.res.body.Close()).
// nolint:bodyclose
res = proxyutil.NewErrorResponse(session.req, err)
if strings.Contains(err.Error(), "x509: ") ||
strings.Contains(err.Error(), errClientCertRequested.Error()) {
log.Printf("id=%s: adding %s to invalid TLS hosts due to: %v", session.ID(), session.req.Host, err)
p.invalidTLSHostsMu.Lock()
p.invalidTLSHosts[session.req.Host] = true
p.invalidTLSHostsMu.Unlock()
}
}
log.Debug("id=%s: received response %s", session.ID(), res.Status)
removeHopByHopHeaders(res.Header)
session.res = res
}
// Make sure the response body is always closed.
defer session.res.Body.Close()
err = p.writeResponse(session)
if err != nil {
return err
}
// TODO(ameshkov): Think about refactoring this, looks not good
if p.isClosing(session) {
return errClose
}
if p.Closing() {
log.Debug("id=%s: proxy is shutting down, closing response", session.ID())
return errShutdown
}
return nil
}
// handleAPIRequest handles a request to gomitmproxy's API.
func (p *Proxy) handleAPIRequest(session *Session) (err error) {
if session.req.URL.Path == "/cert.crt" && p.MITMConfig != nil {
// serve ca
b := pem.EncodeToMemory(&pem.Block{
Type: "CERTIFICATE",
Bytes: p.MITMConfig.GetCA().Raw,
})
// nolint:bodyclose
// body is actually closed.
session.res = proxyutil.NewResponse(http.StatusOK, bytes.NewReader(b), session.req)
defer session.res.Body.Close()
session.res.Close = true
session.res.Header.Set("Content-Type", "application/x-x509-ca-cert")
session.res.ContentLength = int64(len(b))
return p.writeResponse(session)
}
// nolint:bodyclose
// body is actually closed.
session.res = proxyutil.NewErrorResponse(session.req, errors.Errorf("wrong API method"))
defer session.res.Body.Close()
session.res.Close = true
return p.writeResponse(session)
}
// isClosing returns true if this session's response or request signals that
// the connection must be closed.
func (p *Proxy) isClosing(session *Session) (ok bool) {
// See http.Response.Write implementation for the details on this.
//
// If we're sending a non-chunked HTTP/1.1 response without a
// content-length, the only way to do that is the old HTTP/1.0 way, by
// noting the EOF with a connection close, so we need to set Close.
if (session.res.ContentLength == 0 || session.res.ContentLength == -1) &&
!session.res.Close &&
session.res.ProtoAtLeast(1, 1) &&
!session.res.Uncompressed &&
(len(session.res.TransferEncoding) == 0 || session.res.TransferEncoding[0] != "chunked") {
log.Debug("id=%s: received close request (http/1.0 way)", session.ID())
return true
}
if session.req.Close || session.res.Close {
log.Debug("id=%s: received close request", session.ID())
return true
}
return false
}
// handleTunnel tunnels data to the remote connection.
func (p *Proxy) handleTunnel(session *Session) (err error) {
log.Debug("id=%s: handling connection to host: %s", session.ID(), session.req.URL.Host)
conn, err := p.connect(session, "tcp", session.RemoteAddr())
if err != nil {
log.Error("id=%s: failed to connect to %s: %v", session.ID(), session.req.URL.Host, err)
p.raiseOnError(session, err)
// nolint:bodyclose
// body is actually closed.
session.res = proxyutil.NewErrorResponse(session.req, err)
_ = p.writeResponse(session)
session.res.Body.Close()
return err
}
remoteConn := conn
defer remoteConn.Close()
// If we're inside a MITMed connection, we should open a TLS connection
// instead.
if session.ctx.IsMITM() {
getClientCert := func(
info *tls.CertificateRequestInfo,
) (certificate *tls.Certificate, e error) {
// We purposefully cause an error here so that the
// http.Transport.RoundTrip method failed. In this case we'll
// receive the error and will be able to add the host to
// invalidTLSHosts.
return nil, errClientCertRequested
}
tlsConn := tls.Client(conn, &tls.Config{
ServerName: session.req.URL.Host,
GetClientCertificate: getClientCert,
})
// Handshake with the remote server.
if err = tlsConn.Handshake(); err != nil {
// TODO(ameshkov): Consider adding to invalidTLSHosts.
// We should do this if this happens a couple of times in a short
// period of time.
log.Error("id=%s: failed to handshake with the server: %v", session.ID(), err)
return err
}
// Prepare to process the data.
remoteConn = tlsConn
}
// Write the original request to the connection.
err = session.req.Write(remoteConn)
if err != nil {
log.Error("id=%s: failed to write request: %v", session.ID(), err)
return err
}
// Note that we don't use buffered reader/writer for local connection as it
// causes a noticeable delay when we work as an HTTP over TLS proxy.
donec := make(chan bool, 2)
go copyConnectTunnel(session, remoteConn, session.ctx.conn, donec)
go copyConnectTunnel(session, session.ctx.conn, remoteConn, donec)
log.Debug("id=%s: established tunnel, proxying traffic", session.ID())
<-donec
<-donec
log.Debug("id=%s: closed tunnel", session.ID())
return errClose
}
// handleConnect processes HTTP CONNECT requests.
func (p *Proxy) handleConnect(session *Session) (err error) {
log.Debug("id=%s: connecting to host: %s", session.ID(), session.req.URL.Host)
// TODO(ameshkov): find a way to use remoteConn when the request is MITMed.
remoteConn, err := p.connect(session, "tcp", session.RemoteAddr())
if remoteConn != nil {
defer remoteConn.Close()
}
if err != nil {
log.Error("id=%s: failed to connect to %s: %v", session.ID(), session.req.URL.Host, err)
p.raiseOnError(session, err)
// nolint:bodyclose
// body is actually closed
session.res = proxyutil.NewErrorResponse(session.req, err)
_ = p.writeResponse(session)
session.res.Body.Close()
return err
}
if p.canMITM(session.req.URL.Host) {
log.Debug("id=%s: attempting MITM for connection", session.ID())
// nolint:bodyclose
// body is actually closed.
session.res = proxyutil.NewResponse(http.StatusOK, nil, session.req)
err = p.writeResponse(session)
session.res.Body.Close()
if err != nil {
return err
}
b := make([]byte, 1)
if _, err = session.ctx.localRW.Read(b); err != nil {
log.Error("id=%s: error peeking message through CONNECT tunnel to determine type: %v", session.ID(), err)
return err
}
// Drain all of the rest of the buffered data.
buf := make([]byte, session.ctx.localRW.Reader.Buffered())
_, _ = session.ctx.localRW.Read(buf)
// Prepend the previously read data to be read again by
// http.ReadRequest.
pc := &peekedConn{
session.ctx.conn,
io.MultiReader(bytes.NewReader(b), bytes.NewReader(buf), session.ctx.conn),
}
// 22 is the TLS handshake.
// https://tools.ietf.org/html/rfc5246#section-6.2.1
if b[0] == 22 {
tlsConn := tls.Server(pc, p.MITMConfig.NewTLSConfigForHost(session.req.URL.Host))
// Handshake with the local client.
if err = tlsConn.Handshake(); err != nil {
// TODO(ameshkov): Consider adding to invalidTLSHosts.
// We should do this if this happens a couple of times in a
// short period of time.
log.Error("id=%s: failed to handshake with the client: %v", session.ID(), err)
return err
}
newLocalRW := bufio.NewReadWriter(bufio.NewReader(tlsConn), bufio.NewWriter(tlsConn))
newCtx := newContext(tlsConn, newLocalRW, session)
p.handleLoop(newCtx)
return errClose
}
newLocalRW := bufio.NewReadWriter(bufio.NewReader(pc), bufio.NewWriter(pc))
newCtx := newContext(pc, newLocalRW, session)
p.handleLoop(newCtx)
return errClose
}
// nolint:bodyclose
// body is actually closed.
session.res = proxyutil.NewResponse(http.StatusOK, nil, session.req)
defer session.res.Body.Close()
session.res.ContentLength = -1
err = p.writeResponse(session)
if err != nil {
return err
}
// Note that we don't use buffered reader/writer for local connection
// as it causes a noticeable delay when we work as an HTTP over TLS proxy
donec := make(chan bool, 2)
go copyConnectTunnel(session, remoteConn, session.ctx.conn, donec)
go copyConnectTunnel(session, session.ctx.conn, remoteConn, donec)
log.Debug("id=%s: established CONNECT tunnel, proxying traffic", session.ID())
<-donec
<-donec
log.Debug("id=%s: closed CONNECT tunnel", session.ID())
return errClose
}
// copyConnectTunnel copies data from reader to writer and then signals about
// finishing to the "donec" channel.
func copyConnectTunnel(session *Session, w io.Writer, r io.Reader, donec chan<- bool) {
if _, err := io.Copy(w, r); err != nil && !isCloseable(err) {
log.Error("id=%s: failed to tunnel: %v", session.ID(), err)
}
log.Debug("id=%s: tunnel finished copying", session.ID())
donec <- true
}
// readRequest reads incoming http request.
func (p *Proxy) readRequest(ctx *Context) (req *http.Request, err error) {
log.Debug("id=%s: waiting for request", ctx.ID())
reqc := make(chan *http.Request, 1)
errc := make(chan error, 1)
// Try reading the HTTP request in a separate goroutine. The idea is to make
// this process cancelable. When reading the request is finished, it will
// write the results to one of the channels, either reqc or errc. At the
// same time we'll be reading from the "closing" channel. When the proxy is
// shutting down, the "closing" channel is closed so we'll immediately
// return.
go func() {
r, readErr := http.ReadRequest(ctx.localRW.Reader)
if readErr != nil {
if isCloseable(readErr) {
log.Debug("id=%s: connection closed prematurely: %v", ctx.ID(), readErr)
} else {
log.Debug("id=%s: failed to read request: %v", ctx.ID(), readErr)
}
errc <- readErr
return
}
reqc <- r
}()
// Waiting for the result or for proxy to shutdown
select {
case err = <-errc:
return nil, err
case req = <-reqc:
case <-p.closing:
return nil, errShutdown
}
return req, nil
}
// writeResponse writes the response from session.res to the local client.
func (p *Proxy) writeResponse(session *Session) (err error) {
if p.OnResponse != nil {
res := p.OnResponse(session)
if res != nil {
origBody := res.Body
defer origBody.Close()
log.Debug("id=%s: response was overridden by: %s", session.ID(), res.Status)
session.res = res
}
}
if err = session.res.Write(session.ctx.localRW); err != nil {
log.Error(
"id=%s: got error while writing response back to client: %v",
session.ID(),
err,
)
}
if err = session.ctx.localRW.Flush(); err != nil {
log.Error(
"id=%s: got error while flushing response back to client: %v",
session.ID(),
err,
)
}
return err
}
// connect opens a network connection to the specified remote address.
//
// This method can be called in two cases:
// 1. When the proxy handles the HTTP CONNECT.
// IMPORTANT: In this case we don't actually use the remote connections.
// It is only used to check if the remote endpoint is available
// 2. When the proxy bypasses data from the client to the remote endpoint.
// For instance, it could happen when there's a WebSocket connection.
func (p *Proxy) connect(session *Session, proto string, addr string) (conn net.Conn, err error) {
log.Debug("id=%s: connecting to %s://%s", session.ID(), proto, addr)
if p.OnConnect != nil {
conn = p.OnConnect(session, proto, addr)
if conn != nil {
log.Debug("id=%s: connection was overridden", session.ID())
return conn, nil
}
}
host, _, err := net.SplitHostPort(addr)
if err == nil && host == p.APIHost {
log.Debug("id=%s: connecting to the API host, return dummy connection", session.ID())
return &proxyutil.NoopConn{}, nil
}
return p.dial(proto, addr)
}
// prepareRequest prepares an HTTP request to be sent to the remote server.
func (p *Proxy) prepareRequest(req *http.Request, session *Session) {
if req.URL.Host == "" {
req.URL.Host = req.Host
}
// http by default.
req.URL.Scheme = "http"
// Check if this is an HTTPS connection inside an HTTP CONNECT tunnel.
if session.ctx.IsMITM() {
tlsConn := session.ctx.conn.(*tls.Conn)
cs := tlsConn.ConnectionState()
req.TLS = &cs
// Force HTTPS for secure sessions.
req.URL.Scheme = "https"
}
req.RemoteAddr = session.ctx.conn.RemoteAddr().String()
// Remove unsupported encodings.
if req.Header.Get("Accept-Encoding") != "" {
req.Header.Set("Accept-Encoding", "gzip")
}
}
// raiseOnError calls Proxy.OnError callback if needed.
func (p *Proxy) raiseOnError(session *Session, err error) {
if p.OnError != nil {
p.OnError(session, err)
}
}
// canMITM checks if we can perform MITM for this host.
func (p *Proxy) canMITM(hostname string) (ok bool) {
if p.MITMConfig == nil {
return false
}
// Remove the port if it exists.
host, port, err := net.SplitHostPort(hostname)
if err == nil {
hostname = host
}
// TODO(ameshkov): change this, should be exposed via a callback.
if port != "443" {
log.Debug("do not attempt to MITM connections to a port different from 443")
return false
}
p.invalidTLSHostsMu.RLock()
_, found := p.invalidTLSHosts[hostname]
p.invalidTLSHostsMu.RUnlock()
return !found
}