-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathxtr.go
1234 lines (1094 loc) · 30.7 KB
/
xtr.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
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// ---------------------------------------------------------------------------
//
// Copyright 2013-2019 lispers.net - Dino Farinacci <[email protected]>
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// ---------------------------------------------------------------------------
//
// xtr.go
//
// This file contains LISP ITR, RTR, and ETR functions that can encapsulate and
// decapsulate packets faster than the python code lisp-itr.py, lisp-etr.py,
// and lisp-rtr.py.
//
// This is a external data-plane from the lispers.net control-plane perspective
// and must be run with "lisp xtr-parameters" sub-command "ipc-data-plane =
// yes".
//
// Todo list:
// (1) Do lisp-crytpo.
// (2) Make sure we add encap-port for both NAT-traversal and lisp-crypto.
// (3) Look at alternative to gopacket.NewPacketSource(). Gopi says use
// static buffer. GC will kill you.
// (4) Fix decap forwarding for IPv6 EIDs. Test IPv6 RLOCs.
//
// ---------------------------------------------------------------------------
package main
import "fmt"
import "os"
import "strings"
import "strconv"
import "syscall"
import "time"
import "net"
import "unsafe"
import "math/rand"
import "encoding/binary"
import "crypto/hmac"
import "github.com/google/gopacket"
import "github.com/google/gopacket/pcap"
import "github.com/google/gopacket/layers"
import "github.com/google/gopacket/afpacket"
import "golang.org/x/net/bpf"
//
// ---------- Global Variables ----------
//
var lisp_rtr = false
var lisp_encap_socket [2]int
var lisp_decap_socket *net.UDPConn
var lisp_use_afpacket = false
//
// Prebuild LISP and UDP headers. And IPv4 and IPv6 outer headers.
//
var lisp_header []byte
var lisp_udp_header []byte
var lisp_ipv4_header []byte
var lisp_ipv6_header []byte
//
// main
//
// Main entry point for xtr.go that runs in binary file lisp-xtr.
//
func main() {
if (!lisp_xtr_startup()) {
return
}
//
// Run thread to process IPC messages from the lispers.net control-plane.
//
lisp_ipc_message_processing()
//
// If we return, return resources.
//
lisp_xtr_shutdown()
}
//
// lisp_xtr_startup
//
// Initialize the process and start forwarding threads. Run thread to listen
// for IPC messages from the lispers.net python code.
//
func lisp_xtr_startup() bool {
hostname, _ := os.Hostname()
hostname = strings.Split(hostname, ".")[0]
ts := lisp_command_output("date")
version := lisp_read_file("./lisp-version.txt")
lprint("lispers.net LISP xTR starting up %s, version %s, hostname %s", ts,
version, bold(hostname))
//
// Initialize pre-built headers.
//
lisp_build_headers()
//
// Initialize the decap stats slice.
//
lisp_decap_stats = make(map[string]*Lisp_stats)
//
// Should we use AF_PACKET interface. Check command line.
//
if (len(os.Args) >= 2) {
lisp_use_afpacket = ("afpacket" == os.Args[1])
}
if (lisp_use_afpacket) {
lprint("Using zero-copy AF_PACKET")
}
//
// Create named socket "lispets.net-itr" to punt packets to the lispers.net
// python control-plane.
//
if (!lisp_create_punt_socket()) {
lprint("lisp_create_punt_socket() failed")
return(false)
}
//
// Create raw socket for sending encapsulated packets.
//
if (!lisp_create_encap_socket()) {
lprint("lisp_create_encap_socket() failed")
return(false)
}
//
// Create UDP socket for receiving IPv4 encapsulated LISP packets. For
// IPv6 encapsulated packets use pcap.
//
if (!lisp_create_decap_socket()) {
lprint("lisp_create_decap_socket() failed")
return(false)
}
lisp_create_decap_ipv6_capture()
//
// Start stats thread.
//
go lisp_stats_thread()
return(true)
}
//
// lisp_build_headers
//
// Initialize pre-built headers used in lisp_encapsulate().
//
func lisp_build_headers() {
//
// Prebuild LISP and UDP headers. And IPv4 and IPv6 outer headers.
//
lisp_header = []byte{ 0x88, 0, 0, 0, 0, 0, 0, 0 }
lisp_udp_header = []byte{ 0,0, 0x10,0xf5, 0,8, 0,0 }
lisp_ipv4_header = []byte{ 0x45, 0, 0,0, 0,0, 0x40,0, 32, 17, 0,0,
0,0,0,0, 0,0,0,0 }
//
// IPv6 header will be 8 bytes plus an appended local source RLOC. And then
// in lisp_encapsulate(), an appended destination RLOC happens.
//
lisp_ipv6_header = []byte{ 0x60,0,0,0, 0,0,17,32 }
source_rloc := lisp_get_ipv6_rloc()
if (source_rloc == nil) {
source_rloc = []byte{ 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0 }
}
lprint("Using IPv6 source RLOC %s", source_rloc.String())
lisp_ipv6_header = append(lisp_ipv6_header, source_rloc...)
}
//
// lisp_get_ipv6_rloc
//
// Get the local IPv6 address on the interface with the default route.
//
func lisp_get_ipv6_rloc() net.IP {
interfaces, _ := net.Interfaces()
for _, intf := range interfaces {
if (intf.Name != "eth0") { continue }
addrs, _ := intf.Addrs()
for _, addr := range addrs {
a := addr.String()
if (!strings.Contains(a, ":")) { continue }
if (strings.Contains(a, "fe80")) { continue }
a = strings.Split(a, "/")[0]
return(net.ParseIP(a))
}
}
return(nil)
}
//
// lisp_xtr_shutdown
//
// Undo what was initialized in lisp_xtr_startup().
//
func lisp_xtr_shutdown() {
//
// Close sockets.
//
lisp_ipc_socket.Close()
lisp_punt_socket.Close()
lprint("lispers.net LISP shutting down")
}
//
// lisp_create_encap_socket
//
// Create raw sockets for IPv4 and IPv6 to be used after a LISP, UDP, and
// outer headers are prepended.
//
func lisp_create_encap_socket() bool {
//
// Create IPv4 raw socket.
//
s, err := syscall.Socket(syscall.AF_INET, syscall.SOCK_RAW,
syscall.IPPROTO_RAW)
if (err != nil) {
lprint("syscall.Socket() for IPv4 encap socket failed: %s", err)
return(false)
}
lisp_encap_socket[0] = s
//
// Create IPv6 raw socket.
//
s, err = syscall.Socket(syscall.AF_INET6, syscall.SOCK_RAW,
syscall.IPPROTO_RAW)
if (err != nil) {
lprint("syscall.Socket() for IPv6 encap socket failed: %s", err)
return(false)
}
lisp_encap_socket[1] = s
return(true)
}
//
// lisp_create_decap_nat_capture
//
// Since the kernel will not pass UDP packets with checksum 0 through the
// raw sockets interface, we must pcap them in the ETR.
//
func lisp_create_decap_ipv6_capture() {
pfilter := "ether proto 0x86dd and dst net 0::/0 and dst port 4341"
lprint("Capturing LISP packets with IPv6 RLOCs for '%s'", pfilter)
go lisp_etr_ipv6_thread(pfilter)
}
//
// lisp_create_decap_nat_capture
//
// Packet capture when an RTR encapsulates packets from port 4341 to the
// ephemeral port 'lisp-etr-nat-port' passed in from the lispers.net control-
// plane. We cannot open a socket because the control-plane needs it for
// Info-Replies.
//
func lisp_create_decap_nat_capture() {
pfilter := fmt.Sprintf("(src port 4341 and dst port %d)",
lisp_etr_nat_port)
lprint("Capturing nat-traversal packets for '%s'", pfilter)
go lisp_etr_nat_thread(pfilter)
}
//
// lisp_create_decap_socket
//
// Create UDP datagram socket and bind to well-known LISP port 4341.
//
func lisp_create_decap_socket() bool {
udp_addr, err := net.ResolveUDPAddr("udp4", ":4341")
if (err != nil) {
lprint("net.ResolveUDPAddr() failed: %s", err)
return(false)
}
udp_socket, err := net.ListenUDP("udp4", udp_addr)
if (err != nil) {
lprint("net.ListenUDP() on port 4341 failed: %s\n", err)
return(false)
}
lisp_decap_socket = udp_socket
//
// Start ETR thread.
//
go lisp_etr_thread()
return(true)
}
//
// lisp_start_itr_data_plane
//
// Setup ITR capture filters and start thread for each interface we are
// capturing on.
//
func lisp_start_itr_data_plane() {
//
// Setup filters based on database-mappings provided by the lispers.net
// control-plane.
//
pfilter := "(ether proto 0x0800 or 0x86dd) and (src net "
for _, source := range lisp_database {
pfilter = pfilter + source.eid_prefix.lisp_print_address(false) +
" or "
}
pfilter = pfilter[0:len(pfilter)-4] + ")"
//
// Start thread for new interfaces added to lisp_interfaces.
//
for device, _ := range lisp_interfaces {
go lisp_itr_thread(device, pfilter)
}
}
//
// lisp_create_af_packet_socket
//
// Use AF_PACKET interface. Requires the caller to select an interface and
// a pcap filter string.
//
func lisp_create_af_packet_socket(device string, pfilter string) (
*afpacket.TPacket) {
tp, err := afpacket.NewTPacket(afpacket.OptInterface(device),
afpacket.TPacketVersion1)
if (err != nil) {
lprint("afpacket.NewTPacket() failed %s\n", err)
return(nil)
}
instructions, err := pcap.CompileBPFFilter(layers.LinkTypeEthernet,
1600, pfilter)
if (err != nil) {
lprint("pcap.CompileBPFFilter() failed %s\n", err)
return(nil)
}
//
// The pcap and bpf modules don't connect with the same types. Others
// have suggested this ugly hack. Types pcap.BPFInstruction is the
// same format as bpf.RawInstruction. Need to cast to get this to
// compile.
//
raw_instructions := *(*[]bpf.RawInstruction)(unsafe.Pointer(&instructions))
if (tp.SetBPF(raw_instructions) != nil) {
lprint("tp.SetBPF() failed %s\n", err)
return(nil)
}
return(tp)
}
//
// lisp_itr_thread
//
// Run thread to packet capture packets and try to encapsulate them.
//
func lisp_itr_thread(device string, pfilter string) {
config_change := lisp_config_change
if (lisp_use_afpacket == false) {
lprint("ITR capturing packets on %s for '%s'", bold(device), pfilter)
handle, _ := pcap.OpenLive(device, 1600, true, pcap.BlockForever)
handle.SetBPFFilter(pfilter)
packetSource := gopacket.NewPacketSource(handle, handle.LinkType())
for go_packet := range packetSource.Packets() {
packet := go_packet.Data()[14:]
lisp_itr_data_plane(packet, device)
if (config_change != lisp_config_change) {
handle.Close()
break
}
}
} else {
tp := lisp_create_af_packet_socket(device, pfilter)
if (tp == nil) { return }
lprint("ITR af_packet capturing on %s for '%s'", bold(device), pfilter)
for {
af_packet, _, _ := tp.ZeroCopyReadPacketData()
if (af_packet == nil) { continue }
packet := af_packet[14:]
lisp_itr_data_plane(packet, device)
if (config_change != lisp_config_change) {
tp.Close()
break
}
}
}
lprint("Exit ITR thread for %s", device)
}
//
// lisp_itr_data_plane
//
// This function receives packet natively from the PF_RING, does a map-cache
// lookup on the destination address and encapsulates to RLOC.
//
// The encapsulation format after the outer header is:
//
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// / | Source Port = xxxx | Dest Port = 4341 |
// UDP +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// \ | UDP Length | UDP Checksum |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// L |N|L|E|V|I|P|K|K| Nonce/Map-Version |
// I \ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// S / | Instance ID/Locator-Status-Bits |
// P +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
//
func lisp_itr_data_plane(packet []byte, input_device string) {
var s, d []byte
var iid int
var ttl byte
var source Lisp_address
var dest Lisp_address
if (lisp_data_plane_logging) {
lisp_log_packet("Received on " + bold(input_device), packet, false)
}
ipv4 := (packet[0] & 0xf0 == 0x40)
ipv6 := (packet[0] & 0xf0 == 0x60)
if (ipv4) {
if (len(packet) < 20) {
dprint("IPv4 invalid packet length, discard packet")
return
}
if (!lisp_ip_checksum(packet[0:20], true)) {
lisp_count(nil, "checksum-error", packet)
dprint("IPv4 header checksum failed, discard packet")
return
}
err := lisp_ttl_check(&packet[8])
if (err) {
return
}
lisp_ip_checksum(packet[0:20], false)
s = packet[12:16]
d = packet[16:20]
ttl = packet[8]
} else if (ipv6) {
if (len(packet) < 40) {
dprint("IPv6 invalid packet length, discard packet")
return
}
err := lisp_ttl_check(&packet[7])
if (err) {
return
}
s = packet[8:24]
d = packet[24:40]
ttl = packet[7]
} else {
dprint("Received non-IP packet, discard packet")
return
}
//
// Get instance-ID to use from Lisp_interface.
//
lisp_int, ok := lisp_interfaces[input_device]
if (ok) {
iid = lisp_int.instance_id
} else {
iid = 0
}
//
// Do a lisp_database lookup on the source to see if its an EID.
//
source.lisp_make_address(iid, s)
err := lisp_get_database(source)
if (err) {
dprint("Source %s is not an EID, discard packet",
source.lisp_print_address(true))
return
}
dest.lisp_make_address(iid, d)
if (lisp_data_plane_logging) {
dprint("Packet EIDs %s -> %s", green(source.lisp_print_address(true)),
green(dest.lisp_print_address(true)))
}
//
// Do self check. ICMP typically sends packet to itself. We don't need LISP
// encap to itself.
//
if (source.address.Equal(dest.address)) {
dprint("Discard packet addressed to self")
return
}
//
// Do destination map-cache lookup.
//
rloc, hash, rles := lisp_map_cache_lookup(source, dest)
if (rloc == nil && len(rles) == 0) {
lisp_punt_packet(input_device, source, dest)
return
}
//
// Increment packet counters, prepend outer headers, and send. Check to
// see if we are replicating to a set of RLOCs or sending to just one. For
// multicast replication, since append()s are done in lisp_encapsulate()
// the packet will be copied so a unique packet will be transmitted.
//
for _, rle := range rles {
lisp_count(&rle.stats, "", packet)
lisp_encapsulate("Replicate", packet, dest.instance_id, &rle, ttl,
hash)
}
if (rloc != nil) {
lisp_count(&rloc.stats, "", packet)
lisp_encapsulate("Encapsulate", packet, dest.instance_id, rloc, ttl,
hash)
}
}
//
// lisp_encrypt
//
// Encrypt byte array supplied in function call. Return empty array if any
// errors occurred in crypto libraries.
//
func lisp_encrypt(plaintext []byte, lisp []byte, rloc *Lisp_rloc) (
ciphertext []byte) {
key := rloc.keys[rloc.use_key_id]
//
// Increment IV stored in Lisp_keys. aes.Seal() wants a 12-byte nonce.
//
iv := binary.BigEndian.Uint64(key.iv[4:12]) + 1
binary.BigEndian.PutUint64(key.iv[4:12], iv)
//
// Encrypt.
//
ciphertext = key.crypto_alg.Seal(nil, key.iv, plaintext, nil)
//
// Set key-id in LISP header.
//
flags := int(lisp[0])
lisp[0] = byte(flags | rloc.use_key_id)
//
// Prepend IV to packet.
//
ciphertext = append(key.iv, ciphertext...)
//
// Compute ICV over the LISP header, IV, and ciphertext. Then append the
// ICV value to the ciphertext.
//
icv_data := append(lisp, ciphertext...)
//
// Run hash.
//
key.hash_alg.Reset()
key.hash_alg.Write(icv_data)
icv := key.hash_alg.Sum(nil)
icv = icv[0:20]
return(append(ciphertext, icv...))
}
//
// lisp_decrypt
//
// First check ICV and then decrypt the packet.
//
func lisp_decrypt(packet []byte, key_id int, srloc string) (plaintext []byte) {
//
// Are we doing crypto?
//
rloc := lisp_decap_keys[srloc]
if (rloc == nil) {
s := strings.Split(srloc, ":")[0]
rloc = lisp_decap_keys[s]
if (rloc == nil) {
dprint("No keys found for source RLOC %s", srloc)
lisp_count(nil, "no-decrypt-key", packet)
return(nil)
}
srloc = s
}
key := rloc.keys[rloc.use_key_id]
if (key == nil) {
lisp_count(nil, "no-decrypt-key", packet)
dprint("Key-id %d not found for source RLOC %s", key_id, srloc)
return(nil)
}
//
// Compute ICV over the LISP header, IV, and ciphertext that is included
// in the 'ciphertext' []byte slice.
//
icv_len := 20
packet_icv := packet[len(packet)-icv_len:]
packet = packet[0:len(packet)-icv_len]
key.hash_alg.Reset()
key.hash_alg.Write(packet)
computed_icv := key.hash_alg.Sum(nil)
computed_icv = computed_icv[0:20]
if (!hmac.Equal(packet_icv, computed_icv)) {
lisp_count(nil, "ICV-error", packet)
dprint("ICV failed from %s for key-id %d icv-key %s", srloc, key_id ,
key.icv_key)
return(nil)
}
//
// Decrypt. Skip past LISP header and IV.
//
lisp := packet[0:8]
iv := packet[8:8+12]
packet = packet[20:]
plaintext, err := key.crypto_alg.Open(nil, iv, packet, nil)
if (err != nil) {
lisp_count(nil, "ICV-error", packet)
dprint("Decrypt failed from %s for key-id %d crypto-key %s", srloc,
key_id, key.crypto_key)
return(nil)
}
return(append(lisp, plaintext...))
}
//
// lisp_encapsulate
//
// This function is called from either lisp_itr_data_plane() or lisp_etr_
// data_plane(). If the former, a packet is received natively from an EID
// source and is encapsulated to the RLOC that maps from the destination EID.
// If the later, the packet is decapsulated, and if the destination is found
// in the map-cache, it is re-encapsulated (RTR function). Otherwise, it is
// sent to the kernel to natively forward.
//
func lisp_encapsulate(log string, packet []byte, iid int, rloc *Lisp_rloc,
ttl byte, hash int) {
var sa4 syscall.SockaddrInet4
var sa6 syscall.SockaddrInet6
var outer []byte
var err error
//
// Store instance-ID and nonce in LISP header.
//
nonce := rand.Uint32() & 0xffffff
lisp := lisp_header
lisp[1] = byte((nonce >> 16) & 0xff)
lisp[2] = byte((nonce >> 8) & 0xff)
lisp[3] = byte(nonce & 0xff)
lisp[4] = byte((iid >> 16) & 0xff)
lisp[5] = byte((iid >> 8) & 0xff)
lisp[6] = byte(iid & 0xff)
//
// Encrypt the inner header and payload if a keys are stored in the RLOC
// entry.
//
if (rloc.use_key_id == 0) {
flags := int(lisp[0])
lisp[0] = byte(flags & 0xfc)
} else {
packet = lisp_encrypt(packet, lisp, rloc)
}
//
// Prepend LISP header.
//
packet = append(lisp, packet...)
//
// Store values in UDP header. Source port uses 5-tuple hash unless
// lisp-crypto is running and we negotiated keys with the RLOC, then use
// same port as RLOC-probes.
//
udp := lisp_udp_header
if (rloc.encap_port == 4341) {
if (rloc.use_key_id == 0) {
udp[0] = byte((hash >> 8) | 0xf0)
udp[1] = byte(hash & 0xff)
} else {
udp[0] = byte(lisp_itr_crypto_port >> 8)
udp[1] = byte(lisp_itr_crypto_port & 0xff)
}
} else {
udp[0] = byte(0x10)
udp[1] = byte(0xf5)
}
udp[2] = byte(rloc.encap_port >> 8)
udp[3] = byte(rloc.encap_port & 0xff)
udp_length := len(packet) + 8
udp[4] = byte(udp_length >> 8)
udp[5] = byte(udp_length & 0xff)
packet = append(udp, packet...)
//
// Prepend outer header. Since we are sending on a raw socket, kernel
// fills in source RLOC address and IPv4 checksum.
//
if (rloc.rloc.lisp_is_ipv4()) {
outer = lisp_ipv4_header
ip_length := udp_length + 20
outer[2] = byte(ip_length >> 8)
outer[3] = byte(ip_length & 0xff)
outer[8] = ttl
outer = append(outer[0:16], rloc.rloc.address...)
packet = append(outer, packet...)
if (!lisp_ip_checksum(packet[0:20], false)) {
dprint("Could not calculate IPv4 header checksum")
return
}
//
// Do string manipulation only when data-plane logging enabled.
//
if (lisp_data_plane_logging) {
dprint("%s to IPv4 RLOC %s", log, red(fmt.Sprintf("%s:%d",
rloc.rloc.lisp_print_address(false), rloc.encap_port)))
if (rloc.use_key_id == 0) {
lisp_log_packet(bold("Encap"), packet, true)
} else {
lisp_log_packet(bold("Encrypt/Encap"), packet, true)
}
}
//
// Send on raw socket.
//
copy(sa4.Addr[:], rloc.rloc.address)
sa4.Port = rloc.encap_port
err = syscall.Sendto(lisp_encap_socket[0], packet, 0, &sa4)
} else if (rloc.rloc.lisp_is_ipv6()) {
outer = lisp_ipv6_header
outer[4] = byte(udp_length >> 8)
outer[5] = byte(udp_length & 0xff)
outer[7] = ttl
outer = append(outer, rloc.rloc.address...)
packet = append(outer, packet...)
//
// Do string manipulation only when data-plane logging enabled.
//
if (lisp_data_plane_logging) {
dprint("%s to IPv6 RLOC %s", log, red(fmt.Sprintf("%s:%d",
rloc.rloc.lisp_print_address(false), rloc.encap_port)))
if (rloc.use_key_id == 0) {
lisp_log_packet(bold("Encap"), packet, true)
} else {
lisp_log_packet(bold("Encrypt/Encap"), packet, true)
}
}
//
// Send on raw socket.
//
copy(sa6.Addr[:], rloc.rloc.address)
sa6.Port = rloc.encap_port
err = syscall.Sendto(lisp_encap_socket[1], packet, 0, &sa6)
} else {
return
}
//
// Did we get a send error?
//
if (err != nil) {
dprint("syscall.Sendto() to RLOC %s failed: %s",
red(rloc.rloc.lisp_print_address(false)), err)
}
}
//
// lisp_map_cache_lookup
//
// Do a LISP map-cache lookup on the destination EID.
//
func lisp_map_cache_lookup(source Lisp_address, dest Lisp_address) (*Lisp_rloc,
int, []Lisp_rloc) {
mc := lisp_lml_lookup(dest)
//
// Map-cache entry not found.
//
if (mc == nil) {
dprint("Map-cache lookup %s for EID %s, punt packet", bold("miss"),
dest.lisp_print_address(true))
return nil, 0, []Lisp_rloc{}
}
dprint("Map-cache lookup %s %s for EID %s", bold("found"),
green(mc.eid_prefix.lisp_print_address(true)),
dest.lisp_print_address(true))
//
// Map-cache entry has an rle-set.
//
if (len(mc.rle_set) != 0) {
return nil, 0, mc.rle_set
}
//
// Map-cache entry has empty rloc-set.
//
rloc_set_len := len(mc.rloc_set)
if (rloc_set_len == 0) {
dprint("Map-cache entry has empty rloc-set, punt packet")
return nil, 0, []Lisp_rloc{}
}
//
// Get specific RLOC from rloc-set by hashing source and dest EIDs.
//
hash := int(source.lisp_hash_address() ^ dest.lisp_hash_address())
index := hash % rloc_set_len
return &mc.rloc_set[index], hash, []Lisp_rloc{}
}
//
// lisp_etr_thread
//
// Run thread to listen on port 4341 raw socket.
//
func lisp_etr_thread() {
var source net.IP
if (lisp_use_afpacket == false) {
lprint("Listening on raw socket port 4341")
buf := make([]byte, 8192)
for {
n, source, err := lisp_decap_socket.ReadFromUDP(buf)
if (err != nil) {
lprint("RecvFromUDP() failed: %s", err)
time.Sleep(100 * time.Millisecond)
continue
}
lisp_etr_data_plane(buf[0:n], source.String())
}
} else {
device := "eth1"
addr, _ := lisp_get_local_address(device)
if (addr == "") {
lprint("No RLOC address on interface %s", device)
return
}
pfilter := "ether proto 0x0800 and dst net "
pfilter += addr + "/32 and dst port 4341"
tp := lisp_create_af_packet_socket(device, pfilter)
if (tp == nil) { return }
lprint("ETR af_packet capturing on %s for '%s'", bold(device), pfilter)
for {
af_packet, _, _ := tp.ZeroCopyReadPacketData()
if (af_packet == nil) { continue }
packet := af_packet[14:]
source = packet[12:16]
source_rloc := source.String() + ":"
source_rloc += strconv.Itoa(int(packet[20]) << 8 + int(packet[21]))
packet = packet[28:]
lisp_etr_data_plane(packet, source_rloc)
}
}
}
//
// lisp_etr_ipv6_thread
//
// Run thread to capture any LISP encapsulated packets with IPv6 RLOCs. We
// need to get packets this way since the kernel will not pass UDP packets
// with checksum 0 through a raw packet interface.
//
// Note, there is a 2-byte Linux header before the MAC header.
//
func lisp_etr_ipv6_thread(pfilter string) {
var source net.IP
handle, _ := pcap.OpenLive("any", 1600, true, pcap.BlockForever)
handle.SetBPFFilter(pfilter)
packetSource := gopacket.NewPacketSource(handle, handle.LinkType())
for gopacket := range packetSource.Packets() {
packet := gopacket.Data()[16:]
source = packet[8:24]
source_rloc := source.String() + ":"
source_rloc += strconv.Itoa(int(packet[40]) << 8 + int(packet[41]))
packet = packet[48:]
lisp_etr_data_plane(packet, source_rloc)
}
}
//
// lisp_etr_nat_thread
//
// Run thread to packet capture packts to port lisp_nat_etr_port'. We have
// jump over headers so lisp_etr_data_plane() believes the packet starts
// at the LISP header.
//
// Note, there is a 2-byte Linux header before the MAC header.
//
func lisp_etr_nat_thread(pfilter string) {
var source net.IP
handle, _ := pcap.OpenLive("any", 1600, true, pcap.BlockForever)
handle.SetBPFFilter(pfilter)
packetSource := gopacket.NewPacketSource(handle, handle.LinkType())
for gopacket := range packetSource.Packets() {
packet := gopacket.Data()[16:]
source = packet[12:16]
source_rloc := source.String() + ":" + "4341"
packet = packet[28:]
lisp_etr_data_plane(packet, source_rloc)
}
}
//
// lisp_etr_data_plane
//
// Process received LISP encapsulated packet.
//
func lisp_etr_data_plane(packet []byte, source_rloc string) {
var inner, lisp []byte
var source, dest Lisp_address
var socket, iid int
var ttl byte
//
// Isolate LISP header and get key-id to determine if we are decrypting.
//
lisp = packet[0:8]
key_id := int(lisp[0] & 0x3)
if (key_id != 0) {
if (lisp_data_plane_logging) {
lisp_log_packet(bold("Decap/Decrypt ") + red(source_rloc), packet,
true)
}
packet = lisp_decrypt(packet, key_id, source_rloc)
if (packet == nil) { return }
} else {
if (lisp_data_plane_logging) {
lisp_log_packet(bold("Decap ") + red(source_rloc), packet, true)
}
}