-
Notifications
You must be signed in to change notification settings - Fork 51
/
http.go
977 lines (859 loc) · 30.4 KB
/
http.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
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
package httpproxy
import (
"bytes"
"context"
"crypto/tls"
"crypto/x509"
"encoding/json"
"encoding/pem"
"fmt"
"net"
"net/http"
"net/url"
"strings"
"sync"
"time"
"github.com/aporeto-inc/oxy/forward"
jwt "github.com/dgrijalva/jwt-go"
"go.aporeto.io/trireme-lib/collector"
"go.aporeto.io/trireme-lib/common"
"go.aporeto.io/trireme-lib/controller/internal/enforcer/apiauth"
"go.aporeto.io/trireme-lib/controller/internal/enforcer/applicationproxy/markedconn"
"go.aporeto.io/trireme-lib/controller/internal/enforcer/applicationproxy/protomux"
"go.aporeto.io/trireme-lib/controller/internal/enforcer/applicationproxy/serviceregistry"
"go.aporeto.io/trireme-lib/controller/internal/enforcer/flowstats"
"go.aporeto.io/trireme-lib/controller/internal/enforcer/metadata"
"go.aporeto.io/trireme-lib/controller/pkg/bufferpool"
"go.aporeto.io/trireme-lib/controller/pkg/secrets"
"go.aporeto.io/trireme-lib/policy"
"go.uber.org/zap"
)
type statsContextKeyType string
const (
statsContextKey = statsContextKeyType("statsContext")
// TriremeOIDCCallbackURI is the callback URI that must be presented by
// any OIDC provider.
TriremeOIDCCallbackURI = "/aporeto/oidc/callback"
typeCertificate = "CERTIFICATE"
)
// JWTClaims is the structure of the claims we are sending on the wire.
type JWTClaims struct {
jwt.StandardClaims
SourceID string
Scopes []string
Profile []string
}
type hookFunc func(w http.ResponseWriter, r *http.Request) (bool, error)
// Config maintains state for proxies connections from listen to backend.
type Config struct {
cert *tls.Certificate
ca *x509.CertPool
keyPEM string
certPEM string
secrets secrets.Secrets
collector collector.EventCollector
puContext string
localIPs map[string]struct{}
applicationProxy bool
mark int
server *http.Server
registry *serviceregistry.Registry
fwd *forward.Forwarder
fwdTLS *forward.Forwarder
tlsClientConfig *tls.Config
auth *apiauth.Processor
metadata *metadata.Client
tokenIssuer common.ServiceTokenIssuer
hooks map[string]hookFunc
sync.RWMutex
}
// NewHTTPProxy creates a new instance of proxy reate a new instance of Proxy
func NewHTTPProxy(
c collector.EventCollector,
puContext string,
caPool *x509.CertPool,
applicationProxy bool,
mark int,
secrets secrets.Secrets,
registry *serviceregistry.Registry,
tokenIssuer common.ServiceTokenIssuer,
) *Config {
h := &Config{
collector: c,
puContext: puContext,
ca: caPool,
applicationProxy: applicationProxy,
mark: mark,
secrets: secrets,
localIPs: markedconn.GetInterfaces(),
registry: registry,
tlsClientConfig: &tls.Config{
RootCAs: caPool,
},
auth: apiauth.New(puContext, registry, secrets),
metadata: metadata.NewClient(puContext, registry, tokenIssuer),
tokenIssuer: tokenIssuer,
}
hooks := map[string]hookFunc{
common.MetadataHookPolicy: h.policyHook,
common.MetadataHookHealth: h.healthHook,
common.MetadataHookCertificate: h.certificateHook,
common.MetadataHookKey: h.keyHook,
common.MetadataHookToken: h.tokenHook,
common.AWSHookInfo: h.awsInfoHook,
common.AWSHookRole: h.awsTokenHook,
}
h.hooks = hooks
return h
}
// clientTLSConfiguration calculates the right certificates and requests to the clients.
func (p *Config) clientTLSConfiguration(conn net.Conn, originalConfig *tls.Config) (*tls.Config, error) {
if mconn, ok := conn.(*markedconn.ProxiedConnection); ok {
ip, port := mconn.GetOriginalDestination()
portContext, err := p.registry.RetrieveExposedServiceContext(ip, port, "")
if err != nil {
return nil, fmt.Errorf("Unknown service: %s", err)
}
if portContext.Service.UserAuthorizationType == policy.UserAuthorizationMutualTLS || portContext.Service.UserAuthorizationType == policy.UserAuthorizationJWT {
clientCAs := p.ca
// now append the User given CA certPool
if portContext.ClientTrustedRoots != nil {
// append only when the certpool is given
if len(portContext.Service.MutualTLSTrustedRoots) > 0 {
if !clientCAs.AppendCertsFromPEM(portContext.Service.MutualTLSTrustedRoots) {
return nil, fmt.Errorf("Unable to process client CAs")
}
}
}
config := p.newBaseTLSConfig()
config.ClientAuth = tls.VerifyClientCertIfGiven
config.ClientCAs = clientCAs
return config, nil
}
return originalConfig, nil
}
return nil, fmt.Errorf("Invalid connection")
}
// newBaseTLSConfig creates the new basic TLS configuration for the server.
func (p *Config) newBaseTLSConfig() *tls.Config {
return &tls.Config{
GetCertificate: p.GetCertificateFunc,
NextProtos: []string{"h2"},
PreferServerCipherSuites: true,
SessionTicketsDisabled: true,
ClientAuth: tls.VerifyClientCertIfGiven,
ClientCAs: p.ca,
CipherSuites: []uint16{
tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,
tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305,
tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,
tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
},
}
}
// newBaseTLSClientConfig creates the new basic TLS configuration for the client.
func (p *Config) newBaseTLSClientConfig() *tls.Config {
return &tls.Config{
GetCertificate: p.GetCertificateFunc,
NextProtos: []string{"h2"},
PreferServerCipherSuites: true,
SessionTicketsDisabled: true,
GetClientCertificate: p.GetClientCertificateFunc,
// for now lets make it TLS1.2 as supported max Version.
// TODO: Need to test before enabling TLS 1.3, currently TLS 1.3 doesn't work with envoy.
MaxVersion: tls.VersionTLS12,
}
}
// GetClientCertificateFunc returns the certificate that will be used by the Proxy as a client during the TLS
func (p *Config) GetClientCertificateFunc(_ *tls.CertificateRequestInfo) (*tls.Certificate, error) {
p.RLock()
defer p.RUnlock()
if p.cert != nil {
cert, err := x509.ParseCertificate(p.cert.Certificate[0])
if err != nil {
zap.L().Error("http: Cannot build the cert chain")
}
if cert != nil {
by, _ := x509CertToPem(cert)
pemCert, err := buildCertChain(by, p.secrets.PublicSecrets().CertAuthority())
if err != nil {
zap.L().Error("http: Cannot build the cert chain")
}
var certChain tls.Certificate
var certDERBlock *pem.Block
for {
certDERBlock, pemCert = pem.Decode(pemCert)
if certDERBlock == nil {
break
}
if certDERBlock.Type == typeCertificate {
certChain.Certificate = append(certChain.Certificate, certDERBlock.Bytes)
}
}
certChain.PrivateKey = p.cert.PrivateKey
return &certChain, nil
}
return p.cert, nil
}
return nil, nil
}
// RunNetworkServer runs an HTTP network server. If TLS is needed, the
// listener should be already a TLS listener.
func (p *Config) RunNetworkServer(ctx context.Context, l net.Listener, encrypted bool) error {
p.Lock()
defer p.Unlock()
if p.server != nil {
return fmt.Errorf("Server already running")
}
// for usage by callbacks below
protoListener, _ := l.(*protomux.ProtoListener)
// If its an encrypted, wrap the listener in a TLS context. This is activated
// for the listener from the network, but not for the listener from a PU.
if encrypted {
config := p.newBaseTLSConfig()
config.GetConfigForClient = func(helloMsg *tls.ClientHelloInfo) (*tls.Config, error) {
return p.clientTLSConfiguration(helloMsg.Conn, config)
}
config.GetClientCertificate = func(*tls.CertificateRequestInfo) (*tls.Certificate, error) {
return p.cert, nil
}
l = tls.NewListener(l, config)
}
// now create a client config, this is required if Aporeto is a client.
p.tlsClientConfig = p.newBaseTLSClientConfig()
reportStats := func(ctx context.Context) {
if state := ctx.Value(statsContextKey); state != nil {
if r, ok := state.(*flowstats.ConnectionState); ok {
r.Stats.Action = policy.Reject
r.Stats.DropReason = collector.UnableToDial
r.Stats.PolicyID = collector.DefaultEndPoint
p.collector.CollectFlowEvent(r.Stats)
}
}
}
networkDialerWithContext := func(ctx context.Context, network, _ string) (net.Conn, error) {
raddr, ok := ctx.Value(http.LocalAddrContextKey).(*net.TCPAddr)
if !ok {
reportStats(ctx)
return nil, fmt.Errorf("invalid destination address")
}
var platformData *markedconn.PlatformData
if protoListener != nil {
platformData = markedconn.TakePlatformData(protoListener.Listener, raddr.IP, raddr.Port)
}
conn, err := markedconn.DialMarkedWithContext(ctx, "tcp", raddr.String(), platformData, p.mark)
if err != nil {
reportStats(ctx)
return nil, fmt.Errorf("Failed to dial remote: %s", err)
}
return conn, nil
}
appDialerWithContext := func(ctx context.Context, network, _ string) (net.Conn, error) {
raddr, ok := ctx.Value(http.LocalAddrContextKey).(*net.TCPAddr)
if !ok {
reportStats(ctx)
return nil, fmt.Errorf("invalid destination address")
}
pctx, err := p.registry.RetrieveExposedServiceContext(raddr.IP, raddr.Port, "")
if err != nil {
return nil, err
}
raddr.Port = pctx.TargetPort
var platformData *markedconn.PlatformData
if protoListener != nil {
platformData = markedconn.TakePlatformData(protoListener.Listener, raddr.IP, raddr.Port)
}
conn, err := markedconn.DialMarkedWithContext(ctx, "tcp", raddr.String(), platformData, p.mark)
if err != nil {
reportStats(ctx)
return nil, fmt.Errorf("Failed to dial remote: %s", err)
}
return conn, nil
}
// Dial functions for the websockets.
netDial := func(network, addr string) (net.Conn, error) {
raddr, err := net.ResolveTCPAddr(network, addr)
if err != nil {
reportStats(context.Background())
return nil, err
}
var platformData *markedconn.PlatformData
if protoListener != nil {
platformData = markedconn.TakePlatformData(protoListener.Listener, raddr.IP, raddr.Port)
}
conn, err := markedconn.DialMarkedWithContext(ctx, "tcp", raddr.String(), platformData, p.mark)
if err != nil {
reportStats(context.Background())
return nil, fmt.Errorf("Failed to dial remote: %s", err)
}
return conn, nil
}
appDial := func(network, addr string) (net.Conn, error) {
raddr, err := net.ResolveTCPAddr(network, addr)
if err != nil {
reportStats(context.Background())
return nil, err
}
pctx, err := p.registry.RetrieveExposedServiceContext(raddr.IP, raddr.Port, "")
if err != nil {
return nil, err
}
raddr.Port = pctx.TargetPort
var platformData *markedconn.PlatformData
if protoListener != nil {
platformData = markedconn.TakePlatformData(protoListener.Listener, raddr.IP, raddr.Port)
}
conn, err := markedconn.DialMarkedWithContext(ctx, "tcp", raddr.String(), platformData, p.mark)
if err != nil {
reportStats(context.Background())
return nil, fmt.Errorf("Failed to dial remote: %s", err)
}
return conn, nil
}
// Create an encrypted downstream transport. We will mark the downstream connection
// to let the iptables rule capture it.
encryptedTransport := &http.Transport{
TLSClientConfig: p.tlsClientConfig,
DialContext: networkDialerWithContext,
MaxIdleConnsPerHost: 2000,
MaxIdleConns: 2000,
ForceAttemptHTTP2: true,
}
// Create an unencrypted transport for talking to the application. If encryption
// is selected do not verify the certificates. This is supposed to be inside the
// same system. TODO: use pinned certificates.
transport := &http.Transport{
TLSClientConfig: &tls.Config{
InsecureSkipVerify: true,
GetClientCertificate: func(*tls.CertificateRequestInfo) (*tls.Certificate, error) { // nolint
return p.cert, nil
},
},
DialContext: appDialerWithContext,
MaxIdleConns: 2000,
MaxIdleConnsPerHost: 2000,
}
// Create the proxies downwards the network and the application.
var err error
p.fwdTLS, err = forward.New(
forward.RoundTripper(encryptedTransport),
forward.WebsocketTLSClientConfig(&tls.Config{RootCAs: p.ca}),
forward.WebSocketNetDial(netDial),
forward.BufferPool(bufferpool.NewPool(32*1204)),
forward.ErrorHandler(TriremeHTTPErrHandler{}),
)
if err != nil {
return fmt.Errorf("Cannot initialize encrypted transport: %s", err)
}
p.fwd, err = forward.New(
forward.RoundTripper(NewTriremeRoundTripper(transport)),
forward.WebsocketTLSClientConfig(&tls.Config{InsecureSkipVerify: true}),
forward.WebSocketNetDial(appDial),
forward.BufferPool(bufferpool.NewPool(32*1204)),
forward.ErrorHandler(TriremeHTTPErrHandler{}),
)
if err != nil {
return fmt.Errorf("Cannot initialize unencrypted transport: %s", err)
}
processor := p.processAppRequest
if !p.applicationProxy {
processor = p.processNetRequest
}
p.server = &http.Server{
Handler: http.HandlerFunc(processor),
}
go func() {
<-ctx.Done()
p.server.Close() // nolint
}()
go p.server.Serve(l) // nolint
return nil
}
// ShutDown terminates the server.
func (p *Config) ShutDown() error {
return p.server.Close()
}
// UpdateSecrets updates the secrets
func (p *Config) UpdateSecrets(cert *tls.Certificate, caPool *x509.CertPool, s secrets.Secrets, certPEM, keyPEM string) {
p.Lock()
p.cert = cert
p.ca = caPool
p.secrets = s
p.certPEM = certPEM
p.keyPEM = keyPEM
p.tlsClientConfig.RootCAs = caPool
p.Unlock()
p.metadata.UpdateSecrets([]byte(certPEM), []byte(keyPEM))
p.auth.UpdateSecrets(s)
}
// GetCertificateFunc implements the TLS interface for getting the certificate. This
// allows us to update the certificates of the connection on the fly.
func (p *Config) GetCertificateFunc(clientHello *tls.ClientHelloInfo) (*tls.Certificate, error) {
p.RLock()
defer p.RUnlock()
// First we check if this is a direct access to the public port. In this case
// we will use the service public certificate. Otherwise, we will return the
// enforcer certificate since this is internal access.
if mconn, ok := clientHello.Conn.(*markedconn.ProxiedConnection); ok {
ip, port := mconn.GetOriginalDestination()
portContext, err := p.registry.RetrieveExposedServiceContext(ip, port, "")
if err != nil {
return nil, fmt.Errorf("service not available: %s %d", ip.String(), port)
}
service := portContext.Service
if service.PublicNetworkInfo != nil && service.PublicNetworkInfo.Ports.Min == uint16(port) && len(service.PublicServiceCertificate) > 0 {
tlsCert, err := tls.X509KeyPair(service.PublicServiceCertificate, service.PublicServiceCertificateKey)
if err != nil {
return nil, fmt.Errorf("failed to parse server certificate: %s", err)
}
return &tlsCert, nil
}
if p.cert != nil {
cert, err := x509.ParseCertificate(p.cert.Certificate[0])
if err != nil {
return nil, fmt.Errorf("Leaf cert is missing")
}
if cert != nil {
by, _ := x509CertToPem(cert)
pemCert, err := buildCertChain(by, p.secrets.PublicSecrets().CertAuthority())
if err != nil {
zap.L().Error("http: Cannot build the cert chain")
return nil, fmt.Errorf("Cannot build the cert chain")
}
var certChain tls.Certificate
//certPEMBlock := []byte(rootcaBundle)
var certDERBlock *pem.Block
for {
certDERBlock, pemCert = pem.Decode(pemCert)
if certDERBlock == nil {
break
}
if certDERBlock.Type == typeCertificate {
certChain.Certificate = append(certChain.Certificate, certDERBlock.Bytes)
}
}
certChain.PrivateKey = p.cert.PrivateKey
//certChain.Certificate
return &certChain, nil
}
return p.cert, nil
}
return nil, fmt.Errorf("no cert available - cert is nil")
}
if p.cert != nil {
return p.cert, nil
}
return nil, fmt.Errorf("no cert available - cert is nil")
}
func buildCertChain(certPEM, caPEM []byte) ([]byte, error) {
zap.L().Debug("http: BEFORE in buildCertChain certPEM: ", zap.String("certPEM:", string(certPEM)), zap.String("caPEM: ", string(caPEM)))
certChain := []*x509.Certificate{}
clientPEMBlock := certPEM
derBlock, _ := pem.Decode(clientPEMBlock)
if derBlock != nil {
if derBlock.Type == typeCertificate {
cert, err := x509.ParseCertificate(derBlock.Bytes)
if err != nil {
return nil, err
}
certChain = append(certChain, cert)
} else {
return nil, fmt.Errorf("invalid pem block type: %s", derBlock.Type)
}
}
var certDERBlock *pem.Block
for {
certDERBlock, caPEM = pem.Decode(caPEM)
if certDERBlock == nil {
break
}
if certDERBlock.Type == typeCertificate {
cert, err := x509.ParseCertificate(certDERBlock.Bytes)
if err != nil {
return nil, err
}
certChain = append(certChain, cert)
} else {
return nil, fmt.Errorf("invalid pem block type: %s", certDERBlock.Type)
}
}
by, _ := x509CertChainToPem(certChain)
zap.L().Debug("http: After building the cert chain: ", zap.String("certChain: ", string(by)))
return x509CertChainToPem(certChain)
}
// x509CertChainToPem converts chain of x509 certs to byte.
func x509CertChainToPem(certChain []*x509.Certificate) ([]byte, error) {
var pemBytes bytes.Buffer
for _, cert := range certChain {
if err := pem.Encode(&pemBytes, &pem.Block{Type: typeCertificate, Bytes: cert.Raw}); err != nil {
return nil, err
}
}
return pemBytes.Bytes(), nil
}
// x509CertToPem converts x509 to byte.
func x509CertToPem(cert *x509.Certificate) ([]byte, error) {
var pemBytes bytes.Buffer
if err := pem.Encode(&pemBytes, &pem.Block{Type: typeCertificate, Bytes: cert.Raw}); err != nil {
return nil, err
}
return pemBytes.Bytes(), nil
}
func (p *Config) processAppRequest(w http.ResponseWriter, r *http.Request) {
zap.L().Debug("Processing Application Request", zap.String("URI", r.RequestURI), zap.String("Host", r.Host))
originalDestination := r.Context().Value(http.LocalAddrContextKey).(*net.TCPAddr)
// Authorize the request by calling the authorizer library.
authRequest := &apiauth.Request{
OriginalDestination: originalDestination,
Method: r.Method,
URL: r.URL,
RequestURI: r.RequestURI,
}
resp, err := p.auth.ApplicationRequest(authRequest)
if err != nil {
if resp.PUContext != nil {
state := flowstats.NewAppConnectionState(p.puContext, r, authRequest, resp)
state.Stats.Action = resp.Action
state.Stats.PolicyID = resp.NetworkPolicyID
p.collector.CollectFlowEvent(state.Stats)
}
http.Error(w, err.Error(), err.(*apiauth.AuthError).Status())
return
}
state := flowstats.NewAppConnectionState(p.puContext, r, authRequest, resp)
if resp.External {
defer p.collector.CollectFlowEvent(state.Stats)
}
if resp.HookMethod != "" {
if hook, ok := p.hooks[resp.HookMethod]; ok {
if isHook, err := hook(w, r); err != nil || isHook {
if err != nil {
state.Stats.Action = policy.Reject
state.Stats.DropReason = collector.PolicyDrop
}
return
}
} else {
http.Error(w, "Invalid hook configuration", http.StatusInternalServerError)
return
}
}
httpScheme := "http://"
if resp.TLSListener {
httpScheme = "https://"
}
// Create the new target URL based on the Host parameter that we had.
r.URL, err = url.ParseRequestURI(httpScheme + r.Host)
if err != nil {
http.Error(w, fmt.Sprintf("Invalid destination host name"), http.StatusUnprocessableEntity)
return
}
// Add the headers with the authorization parameters and public key. The other side
// must validate our public key.
r.Header.Add("X-APORETO-KEY", string(p.secrets.TransmittedKey()))
r.Header.Add("X-APORETO-AUTH", resp.Token)
contextWithStats := context.WithValue(r.Context(), statsContextKey, state)
// Forward the request.
p.fwdTLS.ServeHTTP(w, r.WithContext(contextWithStats))
}
func (p *Config) processNetRequest(w http.ResponseWriter, r *http.Request) {
zap.L().Debug("Processing Network Request", zap.String("URI", r.RequestURI), zap.String("Host", r.Host))
originalDestination := r.Context().Value(http.LocalAddrContextKey).(*net.TCPAddr)
sourceAddress, err := net.ResolveTCPAddr("tcp", r.RemoteAddr)
if err != nil {
zap.L().Error("Internal server error - cannot determine source address information", zap.Error(err))
http.Error(w, fmt.Sprintf("Invalid network information"), http.StatusForbidden)
return
}
requestCookie, _ := r.Cookie("X-APORETO-AUTH") // nolint errcheck
request := &apiauth.Request{
OriginalDestination: originalDestination,
SourceAddress: sourceAddress,
Header: r.Header,
URL: r.URL,
Method: r.Method,
RequestURI: r.RequestURI,
Cookie: requestCookie,
TLS: r.TLS,
}
response, err := p.auth.NetworkRequest(r.Context(), request)
var userID string
if response != nil && len(response.UserAttributes) > 0 {
userData := &collector.UserRecord{
Namespace: response.Namespace,
Claims: response.UserAttributes,
}
p.collector.CollectUserEvent(userData)
userID = userData.ID
}
state := flowstats.NewNetworkConnectionState(p.puContext, userID, request, response)
defer p.collector.CollectFlowEvent(state.Stats)
if err != nil {
zap.L().Debug("Authorization error",
zap.Reflect("Error", err),
zap.String("URI", r.RequestURI),
zap.String("Host", r.Host),
)
authError, ok := err.(*apiauth.AuthError)
if !ok {
http.Error(w, "Internal type error", http.StatusInternalServerError)
return
}
if response == nil {
// Basic errors are captured here.
http.Error(w, authError.Message(), authError.Status())
return
}
if !response.Redirect {
// If there is no redirect, we also return an error.
http.Error(w, authError.Message(), authError.Status())
return
}
// Redirect logic. Populate information here. This is forcing a
// redirect rather than an error.
if response.Cookie != nil {
http.SetCookie(w, response.Cookie)
}
w.Header().Add("Location", response.RedirectURI)
http.Error(w, response.Data, authError.Status())
return
}
// Select as http or https for communication with listening service.
httpPrefix := "http://"
if response.TLSListener {
httpPrefix = "https://"
}
// Create the target URI. Websocket Gorilla proxy takes it from the URL. For normal
// connections we don't want that.
if forward.IsWebsocketRequest(r) {
r.URL, err = url.ParseRequestURI(httpPrefix + originalDestination.String())
} else {
r.URL, err = url.ParseRequestURI(httpPrefix + r.Host)
}
if err != nil {
state.Stats.DropReason = collector.InvalidFormat
http.Error(w, fmt.Sprintf("Invalid HTTP Host parameter: %s", err), http.StatusBadRequest)
return
}
// Update the request headers with the user attributes as defined by the mappings
r.Header = response.Header
// Update the statistics and forward the request. We always encrypt downstream
state.Stats.Action = policy.Accept | policy.Encrypt
// // Treat the remote proxy scenario where the destination IPs are in a remote
// // host. Check of network rules that allow this transfer and report the corresponding
// // flows.
// if _, ok := p.localIPs[originalDestination.IP.String()]; !ok {
// _, action, err := pctx.PUContext.ApplicationACLPolicyFromAddr(originalDestination.IP, uint16(originalDestination.Port))
// if err != nil || action.Action.Rejected() {
// defer p.collector.CollectFlowEvent(reportDownStream(state.stats, action))
// http.Error(w, fmt.Sprintf("Access denied by network policy to downstream IP: %s", originalDestination.IP.String()), http.StatusNetworkAuthenticationRequired)
// return
// }
// if action.Action.Accepted() {
// defer p.collector.CollectFlowEvent(reportDownStream(state.stats, action))
// }
// }
contextWithStats := context.WithValue(r.Context(), statsContextKey, state)
p.fwd.ServeHTTP(w, r.WithContext(contextWithStats))
zap.L().Debug("Forwarding Request", zap.String("URI", r.RequestURI), zap.String("Host", r.Host))
}
func (p *Config) policyHook(w http.ResponseWriter, r *http.Request) (bool, error) {
if r.Header.Get(common.MetadataKey) != common.MetadataValue {
http.Error(w, fmt.Sprintf("unauthorized request for policy"), http.StatusForbidden)
return true, fmt.Errorf("unauthorized")
}
data, _, err := p.metadata.GetCurrentPolicy()
if err != nil {
http.Error(w, fmt.Sprintf("Unable to retrieve current policy"), http.StatusInternalServerError)
return true, err
}
if _, err := w.Write(data); err != nil {
zap.L().Error("Unable to write policy response")
}
return true, nil
}
func (p *Config) certificateHook(w http.ResponseWriter, r *http.Request) (bool, error) {
if r.Header.Get(common.MetadataKey) != common.MetadataValue {
http.Error(w, fmt.Sprintf("unauthorized request for certificate"), http.StatusForbidden)
return true, fmt.Errorf("unauthorized")
}
if _, err := w.Write(p.metadata.GetCertificate()); err != nil {
zap.L().Error("Unable to write response")
}
return true, nil
}
func (p *Config) keyHook(w http.ResponseWriter, r *http.Request) (bool, error) {
if r.Header.Get(common.MetadataKey) != common.MetadataValue {
http.Error(w, fmt.Sprintf("unauthorized request for private key"), http.StatusForbidden)
return true, fmt.Errorf("unauthorized")
}
if _, err := w.Write(p.metadata.GetPrivateKey()); err != nil {
zap.L().Error("Unable to write response")
}
return true, nil
}
func (p *Config) healthHook(w http.ResponseWriter, r *http.Request) (bool, error) {
// Health hook will only return ok if the current policy is already populated.
plc, _, err := p.metadata.GetCurrentPolicy()
if err != nil || plc == nil {
http.Error(w, fmt.Sprintf("Unable to retrieve current policy"), http.StatusInternalServerError)
return true, err
}
if _, err := w.Write([]byte("OK\n")); err != nil {
zap.L().Error("Unable to write response to health API")
}
return true, nil
}
func (p *Config) tokenHook(w http.ResponseWriter, r *http.Request) (bool, error) {
if r.Header.Get(common.MetadataKey) != common.MetadataValue {
http.Error(w, fmt.Sprintf("unauthorized request for token"), http.StatusForbidden)
return true, fmt.Errorf("unauthorized")
}
audience := r.URL.Query().Get("audience")
validityString := r.URL.Query().Get("validity")
validity := time.Minute * 60
var err error
if validityString != "" {
validity, err = time.ParseDuration(validityString)
if err != nil {
http.Error(w, "Invalid validity time requested. Please use notation of number+unit. Example: `10m`", http.StatusUnprocessableEntity)
return true, nil
}
}
token, err := p.tokenIssuer.Issue(r.Context(), p.puContext, common.ServiceTokenTypeOAUTH, audience, validity)
if err != nil {
http.Error(w, fmt.Sprintf("Unable to issue token: %s", err), http.StatusBadRequest)
return true, nil
}
if _, err := w.Write([]byte(token)); err != nil {
zap.L().Error("Unable to write response on token API")
}
return true, nil
}
func (p *Config) awsInfoHook(w http.ResponseWriter, r *http.Request) (bool, error) {
if err := validateAWSHeaders(r); err != nil {
http.Error(w, fmt.Sprintf("invalid user agent: %s", err), http.StatusForbidden)
return true, err
}
awsRole, id, err := p.awsRole()
if err != nil {
return true, err
}
type info struct {
Code string `json:"Code,omitempty"`
LastUpdated time.Time `json:"LastUpdated,omitempty"`
InstanceProfileArn string `json:"InstanceProfileArn,omitempty"`
InstanceProfileID string `json:"InstanceProfileId,omitempty"`
}
out := &info{
Code: "Success",
LastUpdated: time.Now(),
InstanceProfileArn: awsRole,
InstanceProfileID: id,
}
data, err := json.MarshalIndent(out, " ", " ")
if err != nil {
return true, fmt.Errorf("error in marshall of info: %s", err)
}
if _, err = w.Write(data); err != nil {
return true, fmt.Errorf("unable to write data response: %s", err)
}
return true, nil
}
func (p *Config) awsTokenHook(w http.ResponseWriter, r *http.Request) (bool, error) {
if err := validateAWSHeaders(r); err != nil {
http.Error(w, fmt.Sprintf("invalid user agent: %s", err), http.StatusForbidden)
return true, err
}
awsRole, id, err := p.awsRole()
if err != nil {
return true, err
}
awsRoleParts := strings.Split(awsRole, "/")
if len(awsRoleParts) == 0 {
http.Error(w, fmt.Sprintf("invalid role: %s", err), http.StatusNotFound)
return true, fmt.Errorf("invalid role: %s", awsRole)
}
awsRoleName := awsRoleParts[len(awsRoleParts)-1]
if strings.HasSuffix(r.RequestURI, "security-credentials/") {
if _, err := w.Write([]byte(awsRoleName)); err != nil {
return true, err
}
return true, nil
}
if !strings.HasSuffix(r.RequestURI, "security-credentials/"+awsRoleName) {
http.Error(w, fmt.Sprintf("not found"), http.StatusNotFound)
return true, fmt.Errorf("not found")
}
token, err := p.tokenIssuer.Issue(r.Context(), id, common.ServiceTokenTypeAWS, awsRole, time.Hour)
if err != nil {
http.Error(w, fmt.Sprintf("Unable to issue token: %s", err), http.StatusBadRequest)
return true, nil
}
if _, err := w.Write([]byte(token)); err != nil {
zap.L().Error("Unable to write response on token API")
}
return true, nil
}
func (p *Config) awsRole() (string, string, error) {
_, plc, err := p.metadata.GetCurrentPolicy()
if err != nil {
return "", "", err
}
awsRole := ""
for _, scope := range plc.Scopes {
if strings.HasPrefix(scope, common.AWSRoleARNPrefix) {
if awsRole != "" && awsRole != scope[len(common.AWSRolePrefix):] {
return "", "", fmt.Errorf("overlapping roles detected")
}
awsRole = scope[len(common.AWSRolePrefix):]
}
}
if awsRole == "" {
return "", "", fmt.Errorf("role not found")
}
return awsRole, plc.ManagementID, nil
}
var (
allowedAgents = []string{"aws-cli/", "aws-chalice/", "Boto3/", "Botocore/", "aws-sdk-"}
)
func validateAWSHeaders(r *http.Request) error {
userAgent, ok := r.Header["User-Agent"]
if !ok {
return fmt.Errorf("no user-agent provided")
}
for _, u := range userAgent {
for _, t := range allowedAgents {
if strings.HasPrefix(u, t) {
return nil
}
}
}
return fmt.Errorf("invalid user agent: %v", userAgent)
}
// func reportDownStream(record *collector.FlowRecord, action *policy.FlowPolicy) *collector.FlowRecord {
// return &collector.FlowRecord{
// ContextID: record.ContextID,
// Destination: &collector.EndPoint{
// URI: record.Destination.URI,
// HTTPMethod: record.Destination.HTTPMethod,
// Type: collector.EndPointTypeExternalIP,
// Port: record.Destination.Port,
// IP: record.Destination.IP,
// ID: action.ServiceID,
// },
// Source: &collector.EndPoint{
// Type: record.Destination.Type,
// ID: record.Destination.ID,
// IP: "0.0.0.0",
// },
// Action: action.Action,
// L4Protocol: record.L4Protocol,
// ServiceType: record.ServiceType,
// ServiceID: record.ServiceID,
// Tags: record.Tags,
// PolicyID: action.PolicyID,
// Count: 1,
// }
// }