-
Notifications
You must be signed in to change notification settings - Fork 51
/
datapath_tcp.go
972 lines (789 loc) · 34.5 KB
/
datapath_tcp.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
package nfqdatapath
// Go libraries
import (
"errors"
"fmt"
"strconv"
"go.uber.org/zap"
"github.com/aporeto-inc/trireme-lib/collector"
"github.com/aporeto-inc/trireme-lib/controller/constants"
"github.com/aporeto-inc/trireme-lib/controller/internal/enforcer/constants"
"github.com/aporeto-inc/trireme-lib/controller/pkg/connection"
"github.com/aporeto-inc/trireme-lib/controller/pkg/packet"
"github.com/aporeto-inc/trireme-lib/controller/pkg/pucontext"
"github.com/aporeto-inc/trireme-lib/controller/pkg/tokens"
"github.com/aporeto-inc/trireme-lib/policy"
"github.com/aporeto-inc/trireme-lib/utils/cache"
"github.com/aporeto-inc/trireme-lib/utils/cgnetcls"
"github.com/aporeto-inc/trireme-lib/utils/portspec"
)
// processNetworkPackets processes packets arriving from network and are destined to the application
func (d *Datapath) processNetworkTCPPackets(p *packet.Packet) (err error) {
if d.packetLogs {
zap.L().Debug("Processing network packet ",
zap.String("flow", p.L4FlowHash()),
zap.String("Flags", packet.TCPFlagsToStr(p.TCPFlags)),
)
defer zap.L().Debug("Finished Processing network packet ",
zap.String("flow", p.L4FlowHash()),
zap.String("Flags", packet.TCPFlagsToStr(p.TCPFlags)),
zap.Error(err),
)
}
var conn *connection.TCPConnection
// Retrieve connection state of SynAck packets and
// skip processing for SynAck packets that we don't have state
switch p.TCPFlags & packet.TCPSynAckMask {
case packet.TCPSynMask:
conn, err = d.netSynRetrieveState(p)
if err != nil {
if d.packetLogs {
zap.L().Debug("Packet rejected",
zap.String("flow", p.L4FlowHash()),
zap.String("Flags", packet.TCPFlagsToStr(p.TCPFlags)),
zap.Error(err),
)
}
return err
}
if conn == nil {
//context is destroyed here if we are a transient PU
//Verdict get set to pass
return nil
}
case packet.TCPSynAckMask:
conn, err = d.netSynAckRetrieveState(p)
if err != nil {
if d.packetLogs {
zap.L().Debug("SynAckPacket Ingored",
zap.String("flow", p.L4FlowHash()),
zap.String("Flags", packet.TCPFlagsToStr(p.TCPFlags)),
)
}
return nil
}
default:
conn, err = d.netRetrieveState(p)
if err != nil {
if d.packetLogs {
zap.L().Debug("Packet rejected",
zap.String("flow", p.L4FlowHash()),
zap.String("Flags", packet.TCPFlagsToStr(p.TCPFlags)),
zap.Error(err),
)
}
return err
}
}
conn.Lock()
defer conn.Unlock()
p.Print(packet.PacketStageIncoming)
if d.service != nil {
if !d.service.PreProcessTCPNetPacket(p, conn.Context, conn) {
p.Print(packet.PacketFailureService)
return errors.New("pre service processing failed for network packet")
}
}
p.Print(packet.PacketStageAuth)
// Match the tags of the packet against the policy rules - drop if the lookup fails
action, claims, err := d.processNetworkTCPPacket(p, conn.Context, conn)
if err != nil {
p.Print(packet.PacketFailureAuth)
if d.packetLogs {
zap.L().Debug("Rejecting packet ",
zap.String("flow", p.L4FlowHash()),
zap.String("Flags", packet.TCPFlagsToStr(p.TCPFlags)),
zap.Error(err),
)
}
return fmt.Errorf("packet processing failed for network packet: %s", err)
}
p.Print(packet.PacketStageService)
if d.service != nil {
// PostProcessServiceInterface
if !d.service.PostProcessTCPNetPacket(p, action, claims, conn.Context, conn) {
p.Print(packet.PacketFailureService)
return errors.New("post service processing failed for network packet")
}
if conn.ServiceConnection && conn.TimeOut > 0 {
d.netReplyConnectionTracker.SetTimeOut(p.L4FlowHash(), conn.TimeOut) // nolint
}
}
// Accept the packet
p.UpdateTCPChecksum()
p.Print(packet.PacketStageOutgoing)
return nil
}
// processApplicationPackets processes packets arriving from an application and are destined to the network
func (d *Datapath) processApplicationTCPPackets(p *packet.Packet) (err error) {
if d.packetLogs {
zap.L().Debug("Processing application packet ",
zap.String("flow", p.L4FlowHash()),
zap.String("Flags", packet.TCPFlagsToStr(p.TCPFlags)),
)
defer zap.L().Debug("Finished Processing application packet ",
zap.String("flow", p.L4FlowHash()),
zap.String("Flags", packet.TCPFlagsToStr(p.TCPFlags)),
zap.Error(err),
)
}
var conn *connection.TCPConnection
switch p.TCPFlags & packet.TCPSynAckMask {
case packet.TCPSynMask:
conn, err = d.appSynRetrieveState(p)
if err != nil {
if d.packetLogs {
zap.L().Debug("Packet rejected",
zap.String("flow", p.L4FlowHash()),
zap.String("Flags", packet.TCPFlagsToStr(p.TCPFlags)),
zap.Error(err),
)
}
return err
}
case packet.TCPSynAckMask:
conn, err = d.appRetrieveState(p)
if err != nil {
if d.packetLogs {
zap.L().Debug("SynAckPacket Ignored",
zap.String("flow", p.L4FlowHash()),
zap.String("Flags", packet.TCPFlagsToStr(p.TCPFlags)),
)
}
if p.Mark == strconv.Itoa(cgnetcls.Initialmarkval-1) {
//SYN ACK came through the global rule.
//This not from a process we are monitoring
//let his packet through
return nil
}
return err
}
default:
conn, err = d.appRetrieveState(p)
if err != nil {
if d.packetLogs {
zap.L().Debug("Packet rejected",
zap.String("flow", p.L4FlowHash()),
zap.String("Flags", packet.TCPFlagsToStr(p.TCPFlags)),
zap.Error(err),
)
}
return err
}
}
conn.Lock()
defer conn.Unlock()
p.Print(packet.PacketStageIncoming)
if d.service != nil {
// PreProcessServiceInterface
if !d.service.PreProcessTCPAppPacket(p, conn.Context, conn) {
p.Print(packet.PacketFailureService)
return errors.New("pre service processing failed for application packet")
}
}
p.Print(packet.PacketStageAuth)
// Match the tags of the packet against the policy rules - drop if the lookup fails
action, err := d.processApplicationTCPPacket(p, conn.Context, conn)
if err != nil {
if d.packetLogs {
zap.L().Debug("Dropping packet ",
zap.String("flow", p.L4FlowHash()),
zap.String("Flags", packet.TCPFlagsToStr(p.TCPFlags)),
zap.Error(err),
)
}
p.Print(packet.PacketFailureAuth)
return fmt.Errorf("processing failed for application packet: %s", err)
}
p.Print(packet.PacketStageService)
if d.service != nil {
// PostProcessServiceInterface
if !d.service.PostProcessTCPAppPacket(p, action, conn.Context, conn) {
p.Print(packet.PacketFailureService)
return errors.New("post service processing failed for application packet")
}
}
// Accept the packet
p.UpdateTCPChecksum()
p.Print(packet.PacketStageOutgoing)
return nil
}
// processApplicationTCPPacket processes a TCP packet and dispatches it to other methods based on the flags
func (d *Datapath) processApplicationTCPPacket(tcpPacket *packet.Packet, context *pucontext.PUContext, conn *connection.TCPConnection) (interface{}, error) {
if conn == nil {
return nil, nil
}
// State machine based on the flags
switch tcpPacket.TCPFlags & packet.TCPSynAckMask {
case packet.TCPSynMask: //Processing SYN packet from Application
action, err := d.processApplicationSynPacket(tcpPacket, context, conn)
return action, err
case packet.TCPAckMask:
action, err := d.processApplicationAckPacket(tcpPacket, context, conn)
return action, err
case packet.TCPSynAckMask:
action, err := d.processApplicationSynAckPacket(tcpPacket, context, conn)
return action, err
default:
return nil, nil
}
}
// processApplicationSynPacket processes a single Syn Packet
func (d *Datapath) processApplicationSynPacket(tcpPacket *packet.Packet, context *pucontext.PUContext, conn *connection.TCPConnection) (interface{}, error) {
// First check if the destination is in the external servicess approved cache
// and if yes, allow the packet to go.
if policy, err := context.RetrieveCachedExternalFlowPolicy(tcpPacket.DestinationAddress.String() + ":" + strconv.Itoa(int(tcpPacket.DestinationPort))); err == nil {
d.appOrigConnectionTracker.AddOrUpdate(tcpPacket.L4FlowHash(), conn)
d.sourcePortConnectionCache.AddOrUpdate(tcpPacket.SourcePortHash(packet.PacketTypeApplication), conn)
return policy, nil
}
// We are now processing as a Trireme packet that needs authorization headers
// Create TCP Option
tcpOptions := d.createTCPAuthenticationOption([]byte{})
// Create a token
tcpData, err := d.tokenAccessor.CreateSynPacketToken(context, &conn.Auth)
if err != nil {
return nil, err
}
// Set the state indicating that we send out a Syn packet
conn.SetState(connection.TCPSynSend)
// Poplate the caches to track the connection
hash := tcpPacket.L4FlowHash()
d.appOrigConnectionTracker.AddOrUpdate(hash, conn)
d.sourcePortConnectionCache.AddOrUpdate(tcpPacket.SourcePortHash(packet.PacketTypeApplication), conn)
// Attach the tags to the packet and accept the packet
return nil, tcpPacket.TCPDataAttach(tcpOptions, tcpData)
}
// processApplicationSynAckPacket processes an application SynAck packet
func (d *Datapath) processApplicationSynAckPacket(tcpPacket *packet.Packet, context *pucontext.PUContext, conn *connection.TCPConnection) (interface{}, error) {
// If we are already in the connection.TCPData, it means that this is an external flow
// At this point we can release the flow to the kernel by updating conntrack
// We can also clean up the state since we are not going to see any more
// packets from this connection.
if conn.GetState() == connection.TCPData && !conn.ServiceConnection {
if err := d.conntrackHdl.ConntrackTableUpdateMark(
tcpPacket.DestinationAddress.String(),
tcpPacket.SourceAddress.String(),
tcpPacket.IPProto,
tcpPacket.DestinationPort,
tcpPacket.SourcePort,
constants.DefaultConnMark,
); err != nil {
zap.L().Error("Failed to update conntrack entry for flow",
zap.String("context", string(conn.Auth.LocalContext)),
zap.String("app-conn", tcpPacket.L4ReverseFlowHash()),
zap.String("state", fmt.Sprintf("%d", conn.GetState())),
)
}
err1 := d.netOrigConnectionTracker.Remove(tcpPacket.L4ReverseFlowHash())
err2 := d.appReplyConnectionTracker.Remove(tcpPacket.L4FlowHash())
if err1 != nil || err2 != nil {
zap.L().Debug("Failed to remove cache entries")
}
return nil, nil
}
// We now process packets that need authorization options
// Create TCP Option
tcpOptions := d.createTCPAuthenticationOption([]byte{})
tcpData, err := d.tokenAccessor.CreateSynAckPacketToken(context, &conn.Auth)
if err != nil {
return nil, err
}
// Set the state for future reference
conn.SetState(connection.TCPSynAckSend)
// Attach the tags to the packet
return nil, tcpPacket.TCPDataAttach(tcpOptions, tcpData)
}
// processApplicationAckPacket processes an application ack packet
func (d *Datapath) processApplicationAckPacket(tcpPacket *packet.Packet, context *pucontext.PUContext, conn *connection.TCPConnection) (interface{}, error) {
// Only process the first Ack of a connection. This means that we have received
// as SynAck packet and we can now process the ACK.
if conn.GetState() == connection.TCPSynAckReceived && tcpPacket.IsEmptyTCPPayload() {
// Create a new token that includes the source and destinatio nonse
// These are both challenges signed by the secret key and random for every
// connection minimizing the chances of a replay attack
token, err := d.tokenAccessor.CreateAckPacketToken(context, &conn.Auth)
if err != nil {
return nil, err
}
tcpOptions := d.createTCPAuthenticationOption([]byte{})
// Since we adjust sequence numbers let's make sure we haven't made a mistake
if len(token) != int(d.ackSize) {
return nil, fmt.Errorf("protocol error: tokenlen=%d acksize=%d", len(token), int(d.ackSize))
}
// Attach the tags to the packet
if err := tcpPacket.TCPDataAttach(tcpOptions, token); err != nil {
return nil, err
}
conn.SetState(connection.TCPAckSend)
// If its not a service connection, we release it to the kernel. Subsequent
// packets after the first data packet, that might be already in the queue
// will be transmitted through the kernel directly. Service connections are
// delegated to the service module
if !conn.ServiceConnection && tcpPacket.SourceAddress.String() != tcpPacket.DestinationAddress.String() {
if err := d.conntrackHdl.ConntrackTableUpdateMark(
tcpPacket.SourceAddress.String(),
tcpPacket.DestinationAddress.String(),
tcpPacket.IPProto,
tcpPacket.SourcePort,
tcpPacket.DestinationPort,
constants.DefaultConnMark,
); err != nil {
zap.L().Error("Failed to update conntrack table for flow",
zap.String("context", string(conn.Auth.LocalContext)),
zap.String("app-conn", tcpPacket.L4ReverseFlowHash()),
zap.String("state", fmt.Sprintf("%d", conn.GetState())),
)
}
}
return nil, nil
}
// If we are already in the connection.TCPData connection just forward the packet
if conn.GetState() == connection.TCPData {
return nil, nil
}
// Here we capture the first data packet after an ACK packet by modyfing the
// state. We will not release the caches though to deal with re-transmissions.
// We will let the caches expire.
if conn.GetState() == connection.TCPAckSend {
conn.SetState(connection.TCPData)
return nil, nil
}
return nil, fmt.Errorf("received application ack packet in the wrong state: %d", conn.GetState())
}
// processNetworkTCPPacket processes a network TCP packet and dispatches it to different methods based on the flags
func (d *Datapath) processNetworkTCPPacket(tcpPacket *packet.Packet, context *pucontext.PUContext, conn *connection.TCPConnection) (action interface{}, claims *tokens.ConnectionClaims, err error) {
if conn == nil {
return nil, nil, nil
}
// Update connection state in the internal state machine tracker
switch tcpPacket.TCPFlags & packet.TCPSynAckMask {
case packet.TCPSynMask:
return d.processNetworkSynPacket(context, conn, tcpPacket)
case packet.TCPAckMask:
return d.processNetworkAckPacket(context, conn, tcpPacket)
case packet.TCPSynAckMask:
return d.processNetworkSynAckPacket(context, conn, tcpPacket)
default: // Ignore any other packet
return nil, nil, nil
}
}
// processNetworkSynPacket processes a syn packet arriving from the network
func (d *Datapath) processNetworkSynPacket(context *pucontext.PUContext, conn *connection.TCPConnection, tcpPacket *packet.Packet) (action interface{}, claims *tokens.ConnectionClaims, err error) {
// Incoming packets that don't have our options are candidates to be processed
// as external services.
if err = tcpPacket.CheckTCPAuthenticationOption(enforcerconstants.TCPAuthenticationOptionBaseLen); err != nil {
// If there is no auth option, attempt the ACLs
report, packet, perr := context.NetworkACLPolicy(tcpPacket)
d.reportExternalServiceFlow(context, report, packet, false, tcpPacket)
if perr != nil || packet.Action.Rejected() {
return nil, nil, fmt.Errorf("no auth or acls: outgoing connection dropped: %s", perr)
}
conn.SetState(connection.TCPData)
d.netOrigConnectionTracker.AddOrUpdate(tcpPacket.L4FlowHash(), conn)
d.appReplyConnectionTracker.AddOrUpdate(tcpPacket.L4ReverseFlowHash(), conn)
return packet, nil, nil
}
// Packets that have authorization information go through the auth path
// Decode the JWT token using the context key
claims, err = d.tokenAccessor.ParsePacketToken(&conn.Auth, tcpPacket.ReadTCPData())
// If the token signature is not valid,
// we must drop the connection and we drop the Syn packet. The source will
// retry but we have no state to maintain here.
if err != nil {
d.reportRejectedFlow(tcpPacket, conn, collector.DefaultEndPoint, context.ManagementID(), context, collector.InvalidToken, nil, nil)
return nil, nil, fmt.Errorf("Syn packet dropped because of invalid token: %s", err)
}
// if there are no claims we must drop the connection and we drop the Syn
// packet. The source will retry but we have no state to maintain here.
if claims == nil {
d.reportRejectedFlow(tcpPacket, conn, collector.DefaultEndPoint, context.ManagementID(), context, collector.InvalidToken, nil, nil)
return nil, nil, errors.New("Syn packet dropped because of no claims")
}
txLabel, ok := claims.T.Get(enforcerconstants.TransmitterLabel)
if err := tcpPacket.CheckTCPAuthenticationOption(enforcerconstants.TCPAuthenticationOptionBaseLen); !ok || err != nil {
d.reportRejectedFlow(tcpPacket, conn, txLabel, context.ManagementID(), context, collector.InvalidFormat, nil, nil)
return nil, nil, fmt.Errorf("TCP authentication option not found: %s", err)
}
// Remove any of our data from the packet. No matter what we don't need the
// metadata any more.
if err := tcpPacket.TCPDataDetach(enforcerconstants.TCPAuthenticationOptionBaseLen); err != nil {
d.reportRejectedFlow(tcpPacket, conn, txLabel, context.ManagementID(), context, collector.InvalidFormat, nil, nil)
return nil, nil, fmt.Errorf("Syn packet dropped because of invalid format: %s", err)
}
tcpPacket.DropDetachedBytes()
// Add the port as a label with an @ prefix. These labels are invalid otherwise
// If all policies are restricted by port numbers this will allow port-specific policies
claims.T.AppendKeyValue(enforcerconstants.PortNumberLabelString, strconv.Itoa(int(tcpPacket.DestinationPort)))
report, packet := context.SearchRcvRules(claims.T)
if packet.Action.Rejected() {
d.reportRejectedFlow(tcpPacket, conn, txLabel, context.ManagementID(), context, collector.PolicyDrop, report, packet)
return nil, nil, fmt.Errorf("connection rejected because of policy: %s", claims.T.String())
}
hash := tcpPacket.L4FlowHash()
// Update the connection state and store the Nonse send to us by the host.
// We use the nonse in the subsequent packets to achieve randomization.
conn.SetState(connection.TCPSynReceived)
// conntrack
d.netOrigConnectionTracker.AddOrUpdate(hash, conn)
d.appReplyConnectionTracker.AddOrUpdate(tcpPacket.L4ReverseFlowHash(), conn)
// Cache the action
conn.ReportFlowPolicy = report
conn.PacketFlowPolicy = packet
// Accept the connection
return packet, claims, nil
}
// policyPair stores both reporting and actual action taken on packet.
type policyPair struct {
report *policy.FlowPolicy
packet *policy.FlowPolicy
}
// processNetworkSynAckPacket processes a SynAck packet arriving from the network
func (d *Datapath) processNetworkSynAckPacket(context *pucontext.PUContext, conn *connection.TCPConnection, tcpPacket *packet.Packet) (action interface{}, claims *tokens.ConnectionClaims, err error) {
// Packets with no authorization are processed as external services based on the ACLS
if err = tcpPacket.CheckTCPAuthenticationOption(enforcerconstants.TCPAuthenticationOptionBaseLen); err != nil {
flowHash := tcpPacket.SourceAddress.String() + ":" + strconv.Itoa(int(tcpPacket.SourcePort))
if plci, plerr := context.RetrieveCachedExternalFlowPolicy(flowHash); plerr == nil {
plc := plci.(*policyPair)
d.releaseFlow(context, plc.report, plc.packet, tcpPacket)
return plc.packet, nil, nil
}
// Never seen this IP before, let's parse them.
report, packet, perr := context.ApplicationACLPolicy(tcpPacket)
if perr != nil || packet.Action.Rejected() {
d.reportReverseExternalServiceFlow(context, report, packet, true, tcpPacket)
return nil, nil, fmt.Errorf("no auth or acls: drop synack packet and connection: %s: action=%d", perr, packet.Action)
}
// Added to the cache if we can accept it
context.CacheExternalFlowPolicy(
tcpPacket,
&policyPair{
report: report,
packet: packet,
},
)
// Set the state to Data so the other state machines ignore subsequent packets
conn.SetState(connection.TCPData)
d.releaseFlow(context, report, packet, tcpPacket)
return packet, nil, nil
}
// This is a corner condition. We are receiving a SynAck packet and we are in
// a state that indicates that we have already processed one. This means that
// our ack packet was lost. We need to revert conntrack in this case and get
// back into the picture.
if conn.GetState() != connection.TCPSynSend {
// Revert the connmarks - dealing with retransmissions
if cerr := d.conntrackHdl.ConntrackTableUpdateMark(
tcpPacket.SourceAddress.String(),
tcpPacket.DestinationAddress.String(),
tcpPacket.IPProto,
tcpPacket.SourcePort,
tcpPacket.DestinationPort,
0,
); cerr != nil {
zap.L().Error("Failed to update conntrack table for flow",
zap.String("context", string(conn.Auth.LocalContext)),
zap.String("app-conn", tcpPacket.L4ReverseFlowHash()),
zap.String("state", fmt.Sprintf("%d", conn.GetState())),
)
}
}
// Now we can process the SynAck packet with its options
tcpData := tcpPacket.ReadTCPData()
if len(tcpData) == 0 {
d.reportRejectedFlow(tcpPacket, nil, collector.DefaultEndPoint, context.ManagementID(), context, collector.MissingToken, nil, nil)
return nil, nil, errors.New("SynAck packet dropped because of missing token")
}
claims, err = d.tokenAccessor.ParsePacketToken(&conn.Auth, tcpPacket.ReadTCPData())
if err != nil {
d.reportRejectedFlow(tcpPacket, nil, collector.DefaultEndPoint, context.ManagementID(), context, collector.MissingToken, nil, nil)
return nil, nil, fmt.Errorf("SynAck packet dropped because of bad claims: %s", err)
}
if claims == nil {
d.reportRejectedFlow(tcpPacket, nil, collector.DefaultEndPoint, context.ManagementID(), context, collector.MissingToken, nil, nil)
return nil, nil, errors.New("SynAck packet dropped because of no claims")
}
tcpPacket.ConnectionMetadata = &conn.Auth
if err := tcpPacket.CheckTCPAuthenticationOption(enforcerconstants.TCPAuthenticationOptionBaseLen); err != nil {
d.reportRejectedFlow(tcpPacket, conn, context.ManagementID(), conn.Auth.RemoteContextID, context, collector.InvalidFormat, nil, nil)
return nil, nil, errors.New("TCP authentication option not found")
}
// Remove any of our data
if err := tcpPacket.TCPDataDetach(enforcerconstants.TCPAuthenticationOptionBaseLen); err != nil {
d.reportRejectedFlow(tcpPacket, conn, context.ManagementID(), conn.Auth.RemoteContextID, context, collector.InvalidFormat, nil, nil)
return nil, nil, fmt.Errorf("SynAck packet dropped because of invalid format: %s", err)
}
tcpPacket.DropDetachedBytes()
if !d.mutualAuthorization {
// If we dont do mutual authorization, dont lookup txt rules.
conn.SetState(connection.TCPSynAckReceived)
// conntrack
d.netReplyConnectionTracker.AddOrUpdate(tcpPacket.L4FlowHash(), conn)
return nil, claims, nil
}
report, packet := context.SearchTxtRules(claims.T, !d.mutualAuthorization)
if packet.Action.Rejected() {
d.reportRejectedFlow(tcpPacket, conn, context.ManagementID(), conn.Auth.RemoteContextID, context, collector.PolicyDrop, report, packet)
return nil, nil, fmt.Errorf("dropping because of reject rule on transmitter: %s", claims.T.String())
}
conn.SetState(connection.TCPSynAckReceived)
// conntrack
d.netReplyConnectionTracker.AddOrUpdate(tcpPacket.L4FlowHash(), conn)
return packet, claims, nil
}
// processNetworkAckPacket processes an Ack packet arriving from the network
func (d *Datapath) processNetworkAckPacket(context *pucontext.PUContext, conn *connection.TCPConnection, tcpPacket *packet.Packet) (action interface{}, claims *tokens.ConnectionClaims, err error) {
if conn.GetState() == connection.TCPData || conn.GetState() == connection.TCPAckSend {
return nil, nil, nil
}
hash := tcpPacket.L4FlowHash()
// Validate that the source/destination nonse matches. The signature has validated both directions
if conn.GetState() == connection.TCPSynAckSend || conn.GetState() == connection.TCPSynReceived {
if err := tcpPacket.CheckTCPAuthenticationOption(enforcerconstants.TCPAuthenticationOptionBaseLen); err != nil {
d.reportRejectedFlow(tcpPacket, conn, collector.DefaultEndPoint, context.ManagementID(), context, collector.InvalidFormat, nil, nil)
return nil, nil, fmt.Errorf("TCP authentication option not found: %s", err)
}
if _, err := d.tokenAccessor.ParseAckToken(&conn.Auth, tcpPacket.ReadTCPData()); err != nil {
d.reportRejectedFlow(tcpPacket, conn, collector.DefaultEndPoint, context.ManagementID(), context, collector.InvalidFormat, nil, nil)
return nil, nil, fmt.Errorf("Ack packet dropped because signature validation failed: %s", err)
}
// Remove any of our data - adjust the sequence numbers
if err := tcpPacket.TCPDataDetach(enforcerconstants.TCPAuthenticationOptionBaseLen); err != nil {
d.reportRejectedFlow(tcpPacket, conn, collector.DefaultEndPoint, context.ManagementID(), context, collector.InvalidFormat, nil, nil)
return nil, nil, fmt.Errorf("Ack packet dropped because of invalid format: %s", err)
}
tcpPacket.DropDetachedBytes()
if conn.PacketFlowPolicy != nil && conn.PacketFlowPolicy.Action.Rejected() {
if !conn.PacketFlowPolicy.ObserveAction.Observed() {
zap.L().Error("Flow rejected but not observed", zap.String("conn", context.ManagementID()))
}
// Flow has been allowed because we are observing a deny rule's impact on the system. Packets are forwarded, reported as dropped + observed.
d.reportRejectedFlow(tcpPacket, conn, conn.Auth.RemoteContextID, context.ManagementID(), context, collector.PolicyDrop, conn.ReportFlowPolicy, conn.PacketFlowPolicy)
} else {
// We accept the packet as a new flow
d.reportAcceptedFlow(tcpPacket, conn, conn.Auth.RemoteContextID, context.ManagementID(), context, conn.ReportFlowPolicy, conn.PacketFlowPolicy)
}
conn.SetState(connection.TCPData)
if !conn.ServiceConnection {
if err := d.conntrackHdl.ConntrackTableUpdateMark(
tcpPacket.SourceAddress.String(),
tcpPacket.DestinationAddress.String(),
tcpPacket.IPProto,
tcpPacket.SourcePort,
tcpPacket.DestinationPort,
constants.DefaultConnMark,
); err != nil {
zap.L().Error("Failed to update conntrack table after ack packet")
}
}
// Accept the packet
return nil, nil, nil
}
if conn.ServiceConnection {
return nil, nil, nil
}
// Everything else is dropped - ACK received in the Syn state without a SynAck
d.reportRejectedFlow(tcpPacket, conn, conn.Auth.RemoteContextID, context.ManagementID(), context, collector.InvalidState, nil, nil)
zap.L().Error("Invalid state reached",
zap.String("state", fmt.Sprintf("%d", conn.GetState())),
zap.String("context", context.ManagementID()),
zap.String("net-conn", hash),
)
return nil, nil, fmt.Errorf("Ack packet dropped, invalid duplicate state: %d", conn.GetState())
}
// createTCPAuthenticationOption creates the TCP authentication option -
func (d *Datapath) createTCPAuthenticationOption(token []byte) []byte {
tokenLen := uint8(len(token))
options := []byte{packet.TCPAuthenticationOption, enforcerconstants.TCPAuthenticationOptionBaseLen + tokenLen, 0, 0}
if tokenLen != 0 {
options = append(options, token...)
}
return options
}
// appSynRetrieveState retrieves state for the the application Syn packet.
// It creates a new connection by default
func (d *Datapath) appSynRetrieveState(p *packet.Packet) (*connection.TCPConnection, error) {
context, err := d.contextFromIP(true, p.SourceAddress.String(), p.Mark, p.SourcePort)
if err != nil {
return nil, errors.New("No context in app processing")
}
if conn, err := d.appOrigConnectionTracker.GetReset(p.L4FlowHash(), 0); err == nil {
return conn.(*connection.TCPConnection), nil
}
return connection.NewTCPConnection(context), nil
}
func processSynAck(d *Datapath, p *packet.Packet, context *pucontext.PUContext) (*connection.TCPConnection, error) {
err := d.unknownSynConnectionTracker.Remove(p.L4ReverseFlowHash())
if err != nil {
// we are seeing a syn-ack for a syn we have not seen
return nil, fmt.Errorf("dropping synack for an unknown syn: %s", err)
}
contextID := context.ID()
portSpec, err := portspec.NewPortSpec(p.SourcePort, p.SourcePort, contextID)
if err != nil {
return nil, fmt.Errorf("Invalid port format %s", err)
}
d.contextIDFromPort.AddPortSpec(portSpec)
// Find the uid for which mark was asserted.
uid, err := d.portSetInstance.GetUserMark(p.Mark)
if err != nil {
// Every outgoing packet has a mark. We should never come here
return nil, fmt.Errorf("unable to find uid for the packet mark: %s", err)
}
// Add port to the cache and program the portset
if _, err := d.portSetInstance.AddPortToUser(uid, strconv.Itoa(int(p.SourcePort))); err != nil {
return nil, fmt.Errorf("unable to update portset cache: %s", err)
}
// syn ack for which there is no corresponding syn context, so drop it.
return nil, errors.New("dropped synack for an unknown syn")
}
// appRetrieveState retrieves the state for the rest of the application packets. It
// returns an error if it cannot find the state
func (d *Datapath) appRetrieveState(p *packet.Packet) (*connection.TCPConnection, error) {
hash := p.L4FlowHash()
conn, err := d.appReplyConnectionTracker.GetReset(hash, 0)
if err != nil {
conn, err = d.appOrigConnectionTracker.GetReset(hash, 0)
if err != nil {
if d.mode != constants.RemoteContainer && p.TCPFlags&packet.TCPSynAckMask == packet.TCPSynAckMask {
// We see a syn ack for which we have not recorded a syn
// Update the port for the context matching the mark this packet has comes with
context, perr := d.contextFromIP(true, p.SourceAddress.String(), p.Mark, p.SourcePort)
if perr == nil {
return processSynAck(d, p, context)
}
}
return nil, fmt.Errorf("app state not found: %s", err)
}
if uerr := updateTimer(d.appOrigConnectionTracker, hash, conn.(*connection.TCPConnection)); uerr != nil {
return nil, uerr
}
} else {
if uerr := updateTimer(d.appReplyConnectionTracker, hash, conn.(*connection.TCPConnection)); uerr != nil {
return nil, uerr
}
}
return conn.(*connection.TCPConnection), nil
}
// netSynRetrieveState retrieves the state for the Syn packets on the network.
// Obviously if no state is found, it generates a new connection record.
func (d *Datapath) netSynRetrieveState(p *packet.Packet) (*connection.TCPConnection, error) {
context, err := d.contextFromIP(false, p.DestinationAddress.String(), p.Mark, p.DestinationPort)
if err != nil {
//This needs to hit only for local processes never for containers
//Don't return an error create a dummy context and return it so we truncate the packet before we send it up
if d.mode != constants.RemoteContainer {
//we will create the bare minimum needed to exercise our stack
//We need this syn to look similar to what we will pass on the retry
//so we setup enought for us to identify this request in the later stages
// update the unknownSynConnectionTracker cache to keep track of
// syn packet that has no context yet.
if err = d.unknownSynConnectionTracker.Add(p.L4FlowHash(), nil); err != nil {
return nil, fmt.Errorf("unable to keep track of syn packet: %s", err)
}
// Remove any of our data from the packet.
if err = p.CheckTCPAuthenticationOption(enforcerconstants.TCPAuthenticationOptionBaseLen); err != nil {
return nil, nil
}
if err = p.TCPDataDetach(enforcerconstants.TCPAuthenticationOptionBaseLen); err != nil {
return nil, fmt.Errorf("syn packet dropped because of invalid format: %s", err)
}
p.DropDetachedBytes()
p.UpdateTCPChecksum()
return nil, nil
}
return nil, errors.New("no context in net processing")
}
if conn, err := d.netOrigConnectionTracker.GetReset(p.L4FlowHash(), 0); err == nil {
return conn.(*connection.TCPConnection), nil
}
return connection.NewTCPConnection(context), nil
}
// netSynAckRetrieveState retrieves the state for SynAck packets at the network
// It relies on the source port cache for that
func (d *Datapath) netSynAckRetrieveState(p *packet.Packet) (*connection.TCPConnection, error) {
conn, err := d.sourcePortConnectionCache.GetReset(p.SourcePortHash(packet.PacketTypeNetwork), 0)
if err != nil {
if d.packetLogs {
zap.L().Debug("No connection for SynAck packet ",
zap.String("flow", p.L4FlowHash()),
)
}
return nil, fmt.Errorf("no synack connection: %s", err)
}
return conn.(*connection.TCPConnection), nil
}
// netRetrieveState retrieves the state of a network connection. Use the flow caches for that
func (d *Datapath) netRetrieveState(p *packet.Packet) (*connection.TCPConnection, error) {
hash := p.L4FlowHash()
conn, err := d.netReplyConnectionTracker.GetReset(hash, 0)
if err != nil {
conn, err = d.netOrigConnectionTracker.GetReset(hash, 0)
if err != nil {
return nil, fmt.Errorf("net state not found: %s", err)
}
if err = updateTimer(d.netOrigConnectionTracker, hash, conn.(*connection.TCPConnection)); err != nil {
return nil, err
}
} else {
if err = updateTimer(d.netReplyConnectionTracker, hash, conn.(*connection.TCPConnection)); err != nil {
return nil, err
}
}
return conn.(*connection.TCPConnection), nil
}
// updateTimer updates the timers for the service connections
func updateTimer(c cache.DataStore, hash string, conn *connection.TCPConnection) error {
conn.RLock()
defer conn.RUnlock()
if conn.ServiceConnection && conn.TimeOut > 0 {
return c.SetTimeOut(hash, conn.TimeOut)
}
return nil
}
// contextFromIP returns the PU context from the default IP if remote. Otherwise
// it returns the context from the port or mark values of the packet. Synack
// packets are again special and the flow is reversed. If a container doesn't supply
// its IP information, we use the default IP. This will only work with remotes
// and Linux processes.
func (d *Datapath) contextFromIP(app bool, packetIP string, mark string, port uint16) (*pucontext.PUContext, error) {
if d.puFromIP != nil {
return d.puFromIP, nil
}
if app {
pu, err := d.puFromMark.Get(mark)
if err != nil {
return nil, fmt.Errorf("pu context cannot be found using mark %s: %s", mark, err)
}
return pu.(*pucontext.PUContext), nil
}
contextID, err := d.contextIDFromPort.GetSpecValueFromPort(port)
if err != nil {
return nil, fmt.Errorf("pu contextID cannot be found using port %d: %s", port, err)
}
pu, err := d.puFromContextID.Get(contextID)
if err != nil {
return nil, fmt.Errorf("unable to find contextID: %s", contextID)
}
return pu.(*pucontext.PUContext), nil
}
// releaseFlow releases the flow and updates the conntrack table
func (d *Datapath) releaseFlow(context *pucontext.PUContext, report *policy.FlowPolicy, action *policy.FlowPolicy, tcpPacket *packet.Packet) {
if err := d.appOrigConnectionTracker.Remove(tcpPacket.L4FlowHash()); err != nil {
zap.L().Debug("Failed to clean cache appOrigConnectionTracker", zap.Error(err))
}
if err := d.sourcePortConnectionCache.Remove(tcpPacket.SourcePortHash(packet.PacketTypeApplication)); err != nil {
zap.L().Debug("Failed to clean cache sourcePortConnectionCache", zap.Error(err))
}
if err := d.conntrackHdl.ConntrackTableUpdateMark(
tcpPacket.DestinationAddress.String(),
tcpPacket.SourceAddress.String(),
tcpPacket.IPProto,
tcpPacket.DestinationPort,
tcpPacket.SourcePort,
constants.DefaultConnMark,
); err != nil {
zap.L().Error("Failed to update conntrack table", zap.Error(err))
}
d.reportReverseExternalServiceFlow(context, report, action, true, tcpPacket)
}