summaryrefslogtreecommitdiff
path: root/common/src/packet.cpp
blob: af757c84c720335e11aa90f6863a1316c8057f2e (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
#include <string.h>
#include <stdlib.h>
#include <netinet/ip.h>
#include <netinet/ip6.h>
#define __FAVOR_BSD 1
#include <netinet/tcp.h>
#include <netinet/udp.h>
#include <netinet/ether.h>
#include <linux/ppp_defs.h>

#include "uthash.h"
#include "packet.h"

#define likely(expr) __builtin_expect((expr), 1)
#define unlikely(expr) __builtin_expect((expr), 0)

#define LOG_PACKET "PACKET"
#define PACKET_LOG_DATA_INSUFFICIENCY(type)                        \
    {                                                              \
        PACKET_LOG_ERROR("%s: layer: %s, data insufficiency",      \
                         LOG_PACKET, layer_type_tostring((type))); \
    }

#define PACKET_LOG_UNSUPPORT_PROTO(tag, next_proto)         \
    {                                                       \
        PACKET_LOG_ERROR("%s: %s: unsupport next proto %d", \
                         LOG_PACKET, (tag), (next_proto));  \
    }

/******************************************************************************
 * Static API
 ******************************************************************************/

static const char *ethproto_tostring(uint16_t proto);
static const char *ipproto_tostring(uint16_t proto);
static inline const char *ldbc_method_tostring(enum ldbc_method method);
static inline const char *layer_type_tostring(enum layer_type type);

static inline uint16_t gtp_header_get_length(const char *data, uint16_t len);
static inline uint16_t gre_header_get_length(const char *data, uint16_t len);

static inline struct layer_record *get_layer(struct packet *handler);

static inline void set_four_tuple(const char *data, enum layer_type type, struct four_tuple *tuple);
static inline void set_two_tuple(const char *data, enum layer_type type, struct two_tuple *tuple);

// 数据链路层
static inline const char *parse_ether(struct packet *handler, const char *data, uint16_t len);
static inline const char *parse_ppp(struct packet *handler, const char *data, uint16_t len);
// 数据链路层 -- 隧道
static inline const char *parse_vlan(struct packet *handler, const char *data, uint16_t len);
static inline const char *parse_pppoe_ses(struct packet *handler, const char *data, uint16_t len);
static inline const char *parse_mpls(struct packet *handler, const char *data, uint16_t len);
// 网络层
static inline const char *parse_ipv4(struct packet *handler, const char *data, uint16_t len);
static inline const char *parse_ipv6(struct packet *handler, const char *data, uint16_t len);
// 网络层 -- 隧道
static inline const char *parse_gre(struct packet *handler, const char *data, uint16_t len);
// 传输层
static inline const char *parse_udp(struct packet *handler, const char *data, uint16_t len);
static inline const char *parse_tcp(struct packet *handler, const char *data, uint16_t len);
// 传输层 -- 隧道
static inline const char *parse_vxlan(struct packet *handler, const char *data, uint16_t len);
static inline const char *parse_gtpv1_u(struct packet *handler, const char *data, uint16_t len);
// L3/L4
static inline const char *parse_l3(struct packet *handler, uint16_t next_proto, const char *data, uint16_t len);
static inline const char *parse_l4(struct packet *handler, uint8_t next_proto, const char *data, uint16_t len);

/******************************************************************************
 * Private API -- Utils
 ******************************************************************************/

static const char *ethproto_tostring(uint16_t proto)
{
    switch (proto)
    {
    case ETH_P_LOOP:
        return "LOOP";
    case ETH_P_PUP:
        return "PUP";
    case ETH_P_PUPAT:
        return "PUPAT";
    case ETH_P_IP:
        return "IP";
    case ETH_P_X25:
        return "X25";
    case ETH_P_ARP:
        return "ARP";
    case ETH_P_BPQ:
        return "BPQ";
    case ETH_P_IEEEPUP:
        return "IEEEPUP";
    case ETH_P_IEEEPUPAT:
        return "IEEEPUPAT";
    case ETH_P_DEC:
        return "DEC";
    case ETH_P_DNA_DL:
        return "DNA_DL";
    case ETH_P_DNA_RC:
        return "DNA_RC";
    case ETH_P_DNA_RT:
        return "DNA_RT";
    case ETH_P_LAT:
        return "LAT";
    case ETH_P_DIAG:
        return "DIAG";
    case ETH_P_CUST:
        return "CUST";
    case ETH_P_SCA:
        return "SCA";
    case ETH_P_TEB:
        return "TEB";
    case ETH_P_RARP:
        return "RARP";
    case ETH_P_ATALK:
        return "ATALK";
    case ETH_P_AARP:
        return "AARP";
    case ETH_P_8021Q:
        return "8021Q";
    case ETH_P_IPX:
        return "IPX";
    case ETH_P_IPV6:
        return "IPV6";
    case ETH_P_PAUSE:
        return "PAUSE";
    case ETH_P_SLOW:
        return "SLOW";
    case ETH_P_WCCP:
        return "WCCP";
    case ETH_P_PPP_DISC:
        return "PPP_DISC";
    case ETH_P_PPP_SES:
        return "PPP_SES";
    case ETH_P_MPLS_UC:
        return "MPLS_UC";
    case ETH_P_MPLS_MC:
        return "MPLS_MC";
    case ETH_P_ATMMPOA:
        return "ATMMPOA";
    case ETH_P_LINK_CTL:
        return "LINK_CTL";
    case ETH_P_ATMFATE:
        return "ATMFATE";
    case ETH_P_PAE:
        return "PAE";
    case ETH_P_AOE:
        return "AOE";
    case ETH_P_8021AD:
        return "8021AD";
    case ETH_P_802_EX1:
        return "802_EX1";
    case ETH_P_TIPC:
        return "TIPC";
    case ETH_P_8021AH:
        return "8021AH";
    case ETH_P_1588:
        return "1588";
    case ETH_P_FCOE:
        return "FCOE";
    case ETH_P_TDLS:
        return "TDLS";
    case ETH_P_FIP:
        return "FIP";
    case ETH_P_QINQ1:
        return "QINQ1";
    case ETH_P_QINQ2:
        return "QINQ2";
    case ETH_P_QINQ3:
        return "QINQ3";
    case ETH_P_EDSA:
        return "EDSA";
    case ETH_P_AF_IUCV:
        return "AF_IUCV";
    default:
        return "UNKNOWN";
    }
}

static const char *ipproto_tostring(uint16_t proto)
{
    switch (proto)
    {
    case IPPROTO_IP:
        return "IP";
    case IPPROTO_ICMP:
        return "ICMP";
    case IPPROTO_IGMP:
        return "IGMP";
    case IPPROTO_IPIP:
        return "IPIP";
    case IPPROTO_TCP:
        return "TCP";
    case IPPROTO_EGP:
        return "EGP";
    case IPPROTO_PUP:
        return "PUP";
    case IPPROTO_UDP:
        return "UDP";
    case IPPROTO_IDP:
        return "IDP";
    case IPPROTO_TP:
        return "TP";
    case IPPROTO_DCCP:
        return "DCCP";
    case IPPROTO_IPV6:
        return "IPV6";
    case IPPROTO_ROUTING:
        return "ROUTING";
    case IPPROTO_FRAGMENT:
        return "FRAGMENT";
    case IPPROTO_RSVP:
        return "RSVP";
    case IPPROTO_GRE:
        return "GRE";
    case IPPROTO_ESP:
        return "ESP";
    case IPPROTO_AH:
        return "AH";
    case IPPROTO_ICMPV6:
        return "ICMPV6";
    case IPPROTO_NONE:
        return "NONE";
    case IPPROTO_DSTOPTS:
        return "DSTOPTS";
    case IPPROTO_MTP:
        return "MTP";
    case IPPROTO_ENCAP:
        return "ENCAP";
    case IPPROTO_PIM:
        return "PIM";
    case IPPROTO_COMP:
        return "COMP";
    case IPPROTO_SCTP:
        return "SCTP";
    case IPPROTO_UDPLITE:
        return "UDPLITE";
    case IPPROTO_RAW:
        return "RAW";
    default:
        return "UNKNOWN";
    }
}

static inline const char *ldbc_method_tostring(enum ldbc_method method)
{
    switch (method)
    {
    case LDBC_METHOD_HASH_INT_IP:
        return "outter_internal_ip";
    case LDBC_METHOD_HASH_EXT_IP:
        return "outter_external_ip";
    case LDBC_METHOD_HASH_INT_IP_AND_EXT_IP:
        return "outter_internal_ip_and_external_ip";
    case LDBC_METHOD_HASH_INNERMOST_INT_IP:
        return "inner_internal_ip";
    case LDBC_METHOD_HASH_INNERMOST_EXT_IP:
        return "inner_external_ip";
    default:
        return "unknown";
    }
}

static inline const char *layer_type_tostring(enum layer_type type)
{
    switch (type)
    {
    case LAYER_TYPE_ETHER:
        return "ETH";
    case LAYER_TYPE_PPP:
        return "PPP";
    case LAYER_TYPE_HDLC:
        return "HDLC";
    case LAYER_TYPE_VLAN:
        return "VLAN";
    case LAYER_TYPE_PPPOE:
        return "PPPOE";
    case LAYER_TYPE_MPLS:
        return "MPLS";
    case LAYER_TYPE_IPV4:
        return "IPV4";
    case LAYER_TYPE_IPV6:
        return "IPV6";
    case LAYER_TYPE_GRE:
        return "GRE";
    case LAYER_TYPE_UDP:
        return "UDP";
    case LAYER_TYPE_TCP:
        return "TCP";
    case LAYER_TYPE_VXLAN:
        return "VXLAN";
    case LAYER_TYPE_GTPV1_U:
        return "GTPV1";
    default:
        return "UNKNOWN";
    }
}

static inline struct layer_record *get_layer(struct packet *handler)
{
    if (handler->layers_used >= handler->layers_size)
    {
        return NULL;
    }

    return &handler->layers[handler->layers_used];
}

#define SET_LAYER(_handler, _layer, _type, _hdr_len, _data, _len) \
    {                                                             \
        (_layer)->type = (_type);                                 \
        (_layer)->hdr_offset = (_handler)->data_len - (_len);     \
        (_layer)->hdr_ptr = (_data);                              \
        (_layer)->hdr_len = (_hdr_len);                           \
        (_layer)->pld_ptr = (_data) + (_hdr_len);                 \
        (_layer)->pld_len = (_len) - (_hdr_len);                  \
        (_handler)->layers_used++;                                \
    }

static inline void set_two_tuple(const char *data, enum layer_type type, struct two_tuple *tuple)
{
    const struct ip *ipv4 = NULL;
    const struct ip6_hdr *ipv6 = NULL;

    switch (type)
    {
    case LAYER_TYPE_IPV4:
        ipv4 = (const struct ip *)data;
        two_tuple_set_ipv4_address(tuple, &ipv4->ip_src, &ipv4->ip_dst);
        break;
    case LAYER_TYPE_IPV6:
        ipv6 = (const struct ip6_hdr *)data;
        two_tuple_set_ipv6_address(tuple, &ipv6->ip6_src, &ipv6->ip6_dst);
        break;
    default:
        break;
    }
}

static inline void set_four_tuple(const char *data, enum layer_type type, struct four_tuple *tuple)
{
    const struct ip *ipv4 = NULL;
    const struct ip6_hdr *ipv6 = NULL;
    const struct tcphdr *tcp = NULL;
    const struct udphdr *udp = NULL;

    switch (type)
    {
    case LAYER_TYPE_TCP:
        tcp = (const struct tcphdr *)data;
        four_tuple_set_port(tuple, tcp->th_sport, tcp->th_dport);
        break;
    case LAYER_TYPE_UDP:
        udp = (const struct udphdr *)data;
        four_tuple_set_port(tuple, udp->uh_sport, udp->uh_dport);
        break;
    case LAYER_TYPE_IPV4:
        ipv4 = (const struct ip *)data;
        four_tuple_set_ipv4_address(tuple, &ipv4->ip_src, &ipv4->ip_dst);
        break;
    case LAYER_TYPE_IPV6:
        ipv6 = (const struct ip6_hdr *)data;
        four_tuple_set_ipv6_address(tuple, &ipv6->ip6_src, &ipv6->ip6_dst);
        break;
    default:
        break;
    }
}

/******************************************************************************
 * Private API -- Parses
 ******************************************************************************/

static inline uint16_t gtp_header_get_length(const char *data, uint16_t len)
{
#define GTP_HDR_VER (0xE0)
#define GTP_HDR_FLAG_N_PDU (0x01)
#define GTP_HDR_FLAG_SEQ_NUM (0x02)
#define GTP_HDR_FLAG_EXT_HDR (0x04)

    struct gtp_hdr
    {
        uint8_t flags;
        uint8_t msg_type;
        uint16_t msg_len;
        uint32_t teid;
    } __attribute__((__packed__));

    struct gtp_opt
    {
        uint16_t seq_num;
        uint8_t npdu;
        uint8_t next_ext_hdr;
    } __attribute__((__packed__));

    uint16_t hdr_offset = 0;
    if (len < sizeof(struct gtp_hdr))
    {
        return 0;
    }
    const struct gtp_hdr *gtp = (const struct gtp_hdr *)data;
    hdr_offset += sizeof(struct gtp_hdr); // skip gre hdr

    // GTPv0 Not Supported
    if (((gtp->flags & GTP_HDR_VER) >> 5) != 1)
    {
        return 0;
    }

    if (gtp->flags & (GTP_HDR_FLAG_SEQ_NUM | GTP_HDR_FLAG_N_PDU | GTP_HDR_FLAG_EXT_HDR))
    {
        if (hdr_offset + sizeof(struct gtp_opt) > len)
        {
            return 0;
        }
        struct gtp_opt *opt_hdr = (struct gtp_opt *)((char *)data + hdr_offset);
        uint8_t next_ext_hdr = opt_hdr->next_ext_hdr;
        hdr_offset += sizeof(struct gtp_opt); // skip gre opt

        while (next_ext_hdr)
        {
            if (hdr_offset + 1 > len)
            {
                return 0;
            }
            uint8_t length = *((char *)data + hdr_offset) * 4 - 2;
            hdr_offset += 1; // skip length field

            if (hdr_offset + length + 1 > len)
            {
                return 0;
            }
            hdr_offset += length; // skip data field
            next_ext_hdr = *((char *)data + hdr_offset);
            hdr_offset += 1; // skip next ext hdr field
        }
    }

    return hdr_offset;
}

static inline uint16_t gre_header_get_length(const char *data, uint16_t len)
{
    /*
     * GRE Header Format (Version 0)
     *
     *   0                   1                   2                   3
     *   0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
     *  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
     *  |C|R|K|S|s|Recur|  Flags  | Ver |         Protocol Type         |
     *  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
     *  |      Checksum (optional)      |       Offset (optional)       |
     *  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
     *  |                         Key (optional)                        |
     *  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
     *  |                    Sequence Number (optional)                 |
     *  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
     *  |                         Routing (optional)
     *  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
     *
     *   0                   1                   2                   3
     *   0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
     *  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
     *  |       Address Family          |  SRE Offset   |  SRE Length   |
     *  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
     *  |                        Routing Information ...
     *  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
     *
     * https://datatracker.ietf.org/doc/html/rfc1701
     * https://datatracker.ietf.org/doc/html/rfc2890
     */

    /*
     * Enhanced GRE header (Version 1)
     *
     *   0                   1                   2                   3
     *   0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
     *  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
     *  |C|R|K|S|s|Recur|A| Flags | Ver |         Protocol Type         |
     *  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
     *  |    Key (HW) Payload Length    |       Key (LW) Call ID        |
     *  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
     *  |                  Sequence Number (Optional)                   |
     *  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
     *  |               Acknowledgment Number (Optional)                |
     *  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
     *
     * https://datatracker.ietf.org/doc/html/rfc2637
     */

/* bit positions for flags in header */
#define GRE_CHECKSUM 0x8000
#define GRE_ROUTING 0x4000
#define GRE_KEY 0x2000
#define GRE_SEQUENCE 0x1000
#define GRE_STRICTSOURCE 0x0800
#define GRE_RECURSION 0x0700
#define GRE_ACK 0x0080          /* only in special PPTPized GRE header */
#define GRE_RESERVED_PPP 0x0078 /* only in special PPTPized GRE header */
#define GRE_RESERVED 0x00F8
#define GRE_VERSION 0x0007

    if (len < 4)
    {
        return 0;
    }

    struct SRE
    {
        uint16_t address_family;
        uint8_t sre_offset;
        uint8_t sre_length;
    } __attribute__((__packed__));

    uint16_t sre_size = sizeof(struct SRE);
    const uint16_t *gre = (const uint16_t *)data;
    uint16_t flags = ntohs(gre[0]);
    uint16_t version = flags & GRE_VERSION;
    uint16_t hdr_offset = 0;

    if (version == 0)
    {
        hdr_offset = 4;

        if ((flags & GRE_CHECKSUM) || (flags & GRE_ROUTING))
        {
            hdr_offset += 4;
        }
        if (flags & GRE_KEY)
        {
            hdr_offset += 4;
        }
        if (flags & GRE_SEQUENCE)
        {
            hdr_offset += 4;
        }
        if (flags & GRE_ROUTING)
        {
            while (hdr_offset + sre_size <= len)
            {
                struct SRE *sre = (struct SRE *)((char *)data + hdr_offset);
                if (sre->sre_length == 0)
                {
                    hdr_offset += sre_size;
                    break;
                }
                else
                {
                    hdr_offset += sre_size + sre->sre_length;
                }
            }
        }
    }

    if (version == 1)
    {
        hdr_offset = 8;
        if (flags & GRE_SEQUENCE)
        {
            hdr_offset += 4;
        }
        if (flags & GRE_ACK)
        {
            hdr_offset += 4;
        }
    }

    if (hdr_offset > len)
    {
        return 0;
    }

    return hdr_offset;
}

static inline const char *parse_ether(struct packet *handler, const char *data, uint16_t len)
{
    if (unlikely(len < sizeof(struct ethhdr)))
    {
        PACKET_LOG_DATA_INSUFFICIENCY(LAYER_TYPE_ETHER);
        return data;
    }

    struct layer_record *layer = get_layer(handler);
    if (unlikely(layer == NULL))
    {
        return data;
    }
    uint16_t next_proto = ntohs(((struct ethhdr *)data)->h_proto);
    SET_LAYER(handler, layer, LAYER_TYPE_ETHER, sizeof(struct ethhdr), data, len);

    return parse_l3(handler, next_proto, layer->pld_ptr, layer->pld_len);
}

static inline const char *parse_ppp(struct packet *handler, const char *data, uint16_t len)
{
    if (unlikely(len < 4))
    {
        PACKET_LOG_DATA_INSUFFICIENCY(LAYER_TYPE_PPP);
        return data;
    }

    struct layer_record *layer = get_layer(handler);
    if (unlikely(layer == NULL))
    {
        return data;
    }
    uint16_t next_proto = ntohs(*((uint16_t *)data + 1));
    SET_LAYER(handler, layer, LAYER_TYPE_PPP, 4, data, len);

    switch (next_proto)
    {
    case PPP_IP:
        return parse_ipv4(handler, layer->pld_ptr, layer->pld_len);
    case PPP_IPV6:
        return parse_ipv6(handler, layer->pld_ptr, layer->pld_len);
    default:
        PACKET_LOG_UNSUPPORT_PROTO("ppp", next_proto);
        return layer->pld_ptr;
    }
}

static inline const char *parse_vlan(struct packet *handler, const char *data, uint16_t len)
{
    struct vlan_hdr
    {
        uint16_t vlan_cfi;
        uint16_t protocol;
    } __attribute__((__packed__));

    if (unlikely(len < sizeof(struct vlan_hdr)))
    {
        PACKET_LOG_DATA_INSUFFICIENCY(LAYER_TYPE_VLAN);
        return data;
    }

    struct layer_record *layer = get_layer(handler);
    if (unlikely(layer == NULL))
    {
        return data;
    }
    uint16_t next_proto = ntohs(((struct vlan_hdr *)data)->protocol);
    SET_LAYER(handler, layer, LAYER_TYPE_VLAN, sizeof(struct vlan_hdr), data, len);

    return parse_l3(handler, next_proto, layer->pld_ptr, layer->pld_len);
}

static inline const char *parse_pppoe_ses(struct packet *handler, const char *data, uint16_t len)
{
#define PPPOE_TYPE_IPV4 0x2100
#define PPPOE_TYPE_IPV6 0x5700

    if (unlikely(len < 8))
    {
        PACKET_LOG_DATA_INSUFFICIENCY(LAYER_TYPE_PPPOE);
        return data;
    }

    struct layer_record *layer = get_layer(handler);
    if (unlikely(layer == NULL))
    {
        return data;
    }
    uint16_t next_proto = *((uint16_t *)data + 3);
    SET_LAYER(handler, layer, LAYER_TYPE_PPPOE, 8, data, len);

    switch (next_proto)
    {
    case PPPOE_TYPE_IPV4:
        return parse_ipv4(handler, layer->pld_ptr, layer->pld_len);
    case PPPOE_TYPE_IPV6:
        return parse_ipv6(handler, layer->pld_ptr, layer->pld_len);
    default:
        PACKET_LOG_UNSUPPORT_PROTO("pppoe", next_proto);
        return layer->pld_ptr;
    }
}

static inline const char *parse_mpls(struct packet *handler, const char *data, uint16_t len)
{
    /*
     * MPLS Format
     * 0                   1                   2                   3
     * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
     * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
     * |                Label                  | Exp |S|       TTL     |
     * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
     * Label : Label Value      20 bits
     * Exp   : Experimental Use  3 bits
     * S     : Bottom of Stack   1 bit
     * TTL   : Time to Live      8 bits
     */

#define MPLS_LABEL_MASK (0xFFFFF000)
#define MPLS_EXP_MASK (0x00000E00)
#define MPLS_BLS_MASK (0x00000100)
#define MPLS_TTL_MASK (0x000000FF)

    enum mpls_next_proto
    {
        MPLS_NEXT_PROTO_ETHER = 0x0,
        MPLS_NEXT_PROTO_MPLS = 0x1,
        MPLS_NEXT_PROTO_IPV4 = 0x4,
        MPLS_NEXT_PROTO_IPV6 = 0x6,
    };

    // 4 + 1
    if (unlikely(len < 5))
    {
        PACKET_LOG_DATA_INSUFFICIENCY(LAYER_TYPE_MPLS);
        return data;
    }

    struct layer_record *layer = get_layer(handler);
    if (unlikely(layer == NULL))
    {
        return data;
    }

    uint16_t hdr_len = 4;
    uint32_t *hdr = (uint32_t *)data;
    unsigned int mpls_bls = (ntohl(*hdr) & MPLS_BLS_MASK) >> 8;
    enum mpls_next_proto next_proto;
    if (mpls_bls == 1)
    {
        switch ((((uint8_t *)(data + 4))[0]) >> 4)
        {
        case 0:
            /*
             * PW Ethernet Control Word
             * 0                   1                   2                   3
             * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
             * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
             * |0 0 0 0|   Reserved            |       Sequence Number         |
             * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
             * Reference: https://tools.ietf.org/html/rfc4448
             */
            hdr_len += 4; // skip PW Ethernet Control Word
            next_proto = MPLS_NEXT_PROTO_ETHER;
            break;
        case 4:
            next_proto = MPLS_NEXT_PROTO_IPV4;
            break;
        case 6:
            next_proto = MPLS_NEXT_PROTO_IPV6;
            break;
        default:
            next_proto = MPLS_NEXT_PROTO_ETHER;
            break;
        }
    }
    else
    {
        next_proto = MPLS_NEXT_PROTO_MPLS;
    }
    SET_LAYER(handler, layer, LAYER_TYPE_MPLS, hdr_len, data, len);

    switch (next_proto)
    {
    case MPLS_NEXT_PROTO_IPV4:
        return parse_ipv4(handler, layer->pld_ptr, layer->pld_len);
    case MPLS_NEXT_PROTO_IPV6:
        return parse_ipv6(handler, layer->pld_ptr, layer->pld_len);
    case MPLS_NEXT_PROTO_ETHER:
        return parse_ether(handler, layer->pld_ptr, layer->pld_len);
    case MPLS_NEXT_PROTO_MPLS:
        return parse_mpls(handler, layer->pld_ptr, layer->pld_len);
    default:
        // unreachable
        return layer->pld_ptr;
    }
}

static inline const char *parse_ipv4(struct packet *handler, const char *data, uint16_t len)
{
    if (unlikely(len < sizeof(struct ip)))
    {
        PACKET_LOG_DATA_INSUFFICIENCY(LAYER_TYPE_IPV4);
        return data;
    }

    struct layer_record *layer = get_layer(handler);
    if (unlikely(layer == NULL))
    {
        return data;
    }
    struct ip *hdr = (struct ip *)data;
    uint8_t next_proto = hdr->ip_p;
    uint16_t hdr_len = (hdr->ip_hl & 0xf) * 4u;
    SET_LAYER(handler, layer, LAYER_TYPE_IPV4, hdr_len, data, len);

    return parse_l4(handler, next_proto, layer->pld_ptr, layer->pld_len);
}

static inline const char *parse_ipv6(struct packet *handler, const char *data, uint16_t len)
{
    if (unlikely(len < sizeof(struct ip6_hdr)))
    {
        PACKET_LOG_DATA_INSUFFICIENCY(LAYER_TYPE_IPV6);
        return data;
    }

    struct layer_record *layer = get_layer(handler);
    if (unlikely(layer == NULL))
    {
        return data;
    }
    uint8_t next_proto = ((struct ip6_hdr *)data)->ip6_nxt;
    SET_LAYER(handler, layer, LAYER_TYPE_IPV6, sizeof(struct ip6_hdr), data, len);

    return parse_l4(handler, next_proto, layer->pld_ptr, layer->pld_len);
}

static inline const char *parse_gre(struct packet *handler, const char *data, uint16_t len)
{
#define GRE_PRO_IPV4 (0x0800)
#define GRE_PRO_IPV6 (0x86DD)
#define GRE_PRO_ARP (0x0806)
#define GRE_PRO_PPP (0x880B)

    uint16_t hdr_len = gre_header_get_length(data, len);
    if (unlikely(hdr_len == 0))
    {
        PACKET_LOG_DATA_INSUFFICIENCY(LAYER_TYPE_GRE);
        return data;
    }

    struct layer_record *layer = get_layer(handler);
    if (unlikely(layer == NULL))
    {
        return data;
    }
    uint16_t next_proto = ntohs(*((uint16_t *)data + 1));
    SET_LAYER(handler, layer, LAYER_TYPE_GRE, hdr_len, data, len);

    switch (next_proto)
    {
    case GRE_PRO_IPV4:
        return parse_ipv4(handler, layer->pld_ptr, layer->pld_len);
    case GRE_PRO_IPV6:
        return parse_ipv6(handler, layer->pld_ptr, layer->pld_len);
    case GRE_PRO_PPP:
        return parse_ppp(handler, layer->pld_ptr, layer->pld_len);
    default:
        PACKET_LOG_UNSUPPORT_PROTO("gre", next_proto);
        return layer->pld_ptr;
    }
}

static inline const char *parse_udp(struct packet *handler, const char *data, uint16_t len)
{
    if (unlikely(len < sizeof(struct udphdr)))
    {
        PACKET_LOG_DATA_INSUFFICIENCY(LAYER_TYPE_UDP);
        return data;
    }

    struct layer_record *layer = get_layer(handler);
    if (unlikely(layer == NULL))
    {
        return data;
    }
    struct udphdr *hdr = (struct udphdr *)data;
    SET_LAYER(handler, layer, LAYER_TYPE_UDP, sizeof(struct udphdr), data, len);

    // VXLAN_DPORT 4789
    if (ntohs(hdr->uh_dport) == 4789)
    {
        return parse_vxlan(handler, layer->pld_ptr, layer->pld_len);
    }

    // GTP1U_PORT 2152
    if (ntohs(hdr->uh_dport) == 2152 || ntohs(hdr->uh_sport) == 2152)
    {
        return parse_gtpv1_u(handler, layer->pld_ptr, layer->pld_len);
    }

    return layer->pld_ptr;
}

static inline const char *parse_tcp(struct packet *handler, const char *data, uint16_t len)
{
    if (unlikely(len < sizeof(struct tcphdr)))
    {
        PACKET_LOG_DATA_INSUFFICIENCY(LAYER_TYPE_TCP);
        return data;
    }

    struct layer_record *layer = get_layer(handler);
    if (unlikely(layer == NULL))
    {
        return data;
    }
    uint16_t hdr_len = ((struct tcphdr *)data)->th_off << 2;
    SET_LAYER(handler, layer, LAYER_TYPE_TCP, hdr_len, data, len);

    return layer->pld_ptr;
}

static inline const char *parse_vxlan(struct packet *handler, const char *data, uint16_t len)
{
    struct vxlan_hdr
    {
        uint8_t flags[2];
        uint16_t gdp;
        uint8_t vni[3];
        uint8_t reserved;
    } __attribute__((__packed__));

    if (unlikely(len < sizeof(struct vxlan_hdr)))
    {
        PACKET_LOG_DATA_INSUFFICIENCY(LAYER_TYPE_VXLAN);
        return data;
    }

    struct layer_record *layer = get_layer(handler);
    if (unlikely(layer == NULL))
    {
        return data;
    }
    SET_LAYER(handler, layer, LAYER_TYPE_VXLAN, sizeof(struct vxlan_hdr), data, len);

    return parse_ether(handler, layer->pld_ptr, layer->pld_len);
}

static inline const char *parse_gtpv1_u(struct packet *handler, const char *data, uint16_t len)
{
    uint16_t hdr_len = gtp_header_get_length(data, len);
    if (unlikely(hdr_len == 0))
    {
        PACKET_LOG_DATA_INSUFFICIENCY(LAYER_TYPE_GTPV1_U);
        return data;
    }

    struct layer_record *layer = get_layer(handler);
    if (unlikely(layer == NULL))
    {
        return data;
    }
    uint8_t next_proto = (((const uint8_t *)(data + hdr_len))[0]) >> 4;
    SET_LAYER(handler, layer, LAYER_TYPE_GTPV1_U, hdr_len, data, len);

    switch (next_proto)
    {
    case 4:
        return parse_ipv4(handler, layer->pld_ptr, layer->pld_len);
    case 6:
        return parse_ipv6(handler, layer->pld_ptr, layer->pld_len);
    default:
        PACKET_LOG_UNSUPPORT_PROTO("gtp", next_proto);
        return layer->pld_ptr;
    }
}

static inline const char *parse_l3(struct packet *handler, uint16_t next_proto, const char *data, uint16_t len)
{
    switch (next_proto)
    {
    case ETH_P_8021Q:
    case ETH_P_8021AD:
        return parse_vlan(handler, data, len);
    case ETH_P_IP:
        return parse_ipv4(handler, data, len);
    case ETH_P_IPV6:
        return parse_ipv6(handler, data, len);
    case ETH_P_PPP_SES:
        return parse_pppoe_ses(handler, data, len);
    case ETH_P_MPLS_UC:
        return parse_mpls(handler, data, len);
    default:
        PACKET_LOG_UNSUPPORT_PROTO("l3", next_proto);
        return data;
    }
}

static inline const char *parse_l4(struct packet *handler, uint8_t next_proto, const char *data, uint16_t len)
{
    switch (next_proto)
    {
    case IPPROTO_TCP:
        return parse_tcp(handler, data, len);
    case IPPROTO_UDP:
        return parse_udp(handler, data, len);
    case IPPROTO_IPIP:
        return parse_ipv4(handler, data, len);
    case IPPROTO_IPV6:
        return parse_ipv6(handler, data, len);
    case IPPROTO_GRE:
        return parse_gre(handler, data, len);
    default:
        PACKET_LOG_UNSUPPORT_PROTO("l4", next_proto);
        return data;
    }
}

/******************************************************************************
 * Public API
 ******************************************************************************/

// return innermost payload
const char *packet_parse(struct packet *handler, const char *data, uint16_t len)
{
    handler->layers_used = 0;
    handler->layers_size = PACKET_MAX_LAYERS;
    handler->data_ptr = data;
    handler->data_len = len;

    return parse_ether(handler, data, len);
}

void packet_print(const struct packet *handler)
{
    if (handler == NULL)
    {
        return;
    }

    printf("packet: %p, data_ptr: %p, data_len: %u, layers_used: %u, layers_size: %u\n",
           handler, handler->data_ptr, handler->data_len,
           handler->layers_used, handler->layers_size);
    for (uint8_t i = 0; i < handler->layers_used; i++)
    {
        const struct layer_record *layer = &handler->layers[i];
        printf("  layer[%u]: %p, type: %s, hdr_offset: %u, hdr_ptr: %p, hdr_len: %u, pld_ptr: %p, pld_len: %u\n",
               i, layer, layer_type_tostring(layer->type), layer->hdr_offset,
               layer->hdr_ptr, layer->hdr_len, layer->pld_ptr, layer->pld_len);
    }
}

// return  0 : found
// return -1 : not found
int packet_get_innermost_four_tuple(const struct packet *handler, struct four_tuple *tuple)
{
    const struct layer_record *layer_l3 = NULL;
    const struct layer_record *layer_l4 = NULL;
    const struct layer_record *layer = NULL;

    for (int8_t i = handler->layers_used - 1; i >= 0; i--)
    {
        layer = &handler->layers[i];

        // first get L4 layer
        if (layer->type & LAYER_TYPE_L4)
        {
            layer_l4 = layer;
            continue;
        }

        // second get L3 layer
        if (layer->type & LAYER_TYPE_L3)
        {
            layer_l3 = layer;
            break;
        }
    }

    if (layer_l3 && layer_l4)
    {
        set_four_tuple((const char *)handler->data_ptr + layer_l3->hdr_offset, layer_l3->type, tuple);
        set_four_tuple((const char *)handler->data_ptr + layer_l4->hdr_offset, layer_l4->type, tuple);
        return 0;
    }
    else
    {
        return -1;
    }
}

// return  0 : found
// return -1 : not found
int packet_get_outermost_four_tuple(const struct packet *handler, struct four_tuple *tuple)
{
    const struct layer_record *layer_l3 = NULL;
    const struct layer_record *layer_l4 = NULL;
    const struct layer_record *layer = NULL;

    for (int8_t i = 0; i < handler->layers_used; i++)
    {
        layer = &handler->layers[i];

        // first get L3 layer
        if (layer->type & LAYER_TYPE_L3)
        {
            layer_l3 = layer;
            continue;
        }

        // second get L4 layer
        if (layer->type & LAYER_TYPE_L4)
        {
            layer_l4 = layer;
            break;
        }
    }

    if (layer_l3 && layer_l4)
    {
        set_four_tuple((const char *)handler->data_ptr + layer_l3->hdr_offset, layer_l3->type, tuple);
        set_four_tuple((const char *)handler->data_ptr + layer_l4->hdr_offset, layer_l4->type, tuple);
        return 0;
    }
    else
    {
        return -1;
    }
}

// return  0 : found
// return -1 : not found
int packet_get_innermost_two_tuple(const struct packet *handler, struct two_tuple *tuple)
{
    const struct layer_record *layer = NULL;

    for (int8_t i = handler->layers_used - 1; i >= 0; i--)
    {
        layer = &handler->layers[i];

        if (layer->type & LAYER_TYPE_L3)
        {
            set_two_tuple((const char *)handler->data_ptr + layer->hdr_offset, layer->type, tuple);
            return 0;
        }
    }

    return -1;
}

// return  0 : found
// return -1 : not found
int packet_get_outermost_two_tuple(const struct packet *handler, struct two_tuple *tuple)
{
    const struct layer_record *layer = NULL;

    for (int8_t i = 0; i < handler->layers_used; i++)
    {
        layer = &handler->layers[i];

        if (layer->type & LAYER_TYPE_L3)
        {
            set_two_tuple((const char *)handler->data_ptr + layer->hdr_offset, layer->type, tuple);
            return 0;
        }
    }

    return -1;
}

const struct layer_record *packet_get_innermost_layer(const struct packet *handler, enum layer_type type)
{
    const struct layer_record *layer = NULL;

    for (int8_t i = handler->layers_used - 1; i >= 0; i--)
    {
        layer = &handler->layers[i];
        if (layer->type & type)
        {
            return layer;
        }
    }

    return NULL;
}

const struct layer_record *packet_get_outermost_layer(const struct packet *handler, enum layer_type type)
{
    const struct layer_record *layer = NULL;

    for (int8_t i = 0; i < handler->layers_used; i++)
    {
        layer = &handler->layers[i];
        if (layer->type & type)
        {
            return layer;
        }
    }

    return NULL;
}

// direction 1: E2I
// direction 0: I2E
uint64_t packet_get_hash(const struct packet *handler, enum ldbc_method method, int direction)
{
    uint64_t temp = 0;
    uint64_t hash_value = 1;

    int inner_addr_len = 0;
    int outer_addr_len = 0;
    const char *inner_src_addr = NULL;
    const char *inner_dst_addr = NULL;
    const char *outer_src_addr = NULL;
    const char *outer_dst_addr = NULL;

    struct two_tuple inner_addr;
    struct two_tuple outer_addr;

    if (handler == NULL)
    {
        return hash_value;
    }

    if (packet_get_innermost_two_tuple(handler, &inner_addr) == -1)
    {
        return hash_value;
    }

    if (packet_get_outermost_two_tuple(handler, &outer_addr) == -1)
    {
        return hash_value;
    }

    inner_src_addr = (const char *)two_tuple_get_src_address(&inner_addr);
    inner_dst_addr = (const char *)two_tuple_get_dst_address(&inner_addr);
    inner_addr_len = two_tuple_get_address_length(&inner_addr);

    outer_src_addr = (const char *)two_tuple_get_src_address(&outer_addr);
    outer_dst_addr = (const char *)two_tuple_get_dst_address(&outer_addr);
    outer_addr_len = two_tuple_get_address_length(&outer_addr);

    switch (method)
    {
    case LDBC_METHOD_HASH_INT_IP:
        if (direction)
        {
            // direction 1: E2I
            HASH_VALUE(outer_dst_addr, outer_addr_len, hash_value);
        }
        else
        {
            // direction 0: I2E
            HASH_VALUE(outer_src_addr, outer_addr_len, hash_value);
        }
        break;
    case LDBC_METHOD_HASH_EXT_IP:
        if (direction)
        {
            // direction 1: E2I
            HASH_VALUE(outer_src_addr, outer_addr_len, hash_value);
        }
        else
        {
            // direction 0: I2E
            HASH_VALUE(outer_dst_addr, outer_addr_len, hash_value);
        }
        break;
    case LDBC_METHOD_HASH_INT_IP_AND_EXT_IP:
        HASH_VALUE(outer_src_addr, outer_addr_len, hash_value);
        HASH_VALUE(outer_dst_addr, outer_addr_len, temp);
        hash_value = hash_value ^ temp;
        break;
    case LDBC_METHOD_HASH_INNERMOST_INT_IP:
        if (direction)
        {
            // direction 1: E2I
            HASH_VALUE(inner_dst_addr, inner_addr_len, hash_value);
        }
        else
        {
            // direction 0: I2E
            HASH_VALUE(inner_src_addr, inner_addr_len, hash_value);
        }
        break;
    case LDBC_METHOD_HASH_INNERMOST_EXT_IP:
        if (direction)
        {
            // direction 1: E2I
            HASH_VALUE(inner_src_addr, inner_addr_len, hash_value);
        }
        else
        {
            // direction 0: I2E
            HASH_VALUE(inner_dst_addr, inner_addr_len, hash_value);
        }
        break;
    default:
        return hash_value;
    }

#if 0
    char *inner_addr_str = two_tuple_tostring(&inner_addr);
    char *outer_addr_str = two_tuple_tostring(&outer_addr);
    printf("%s: outer_addr: %s, inner_addr: %s, dir: %s, hash_method: %s, hash_value: %lu\n",
           LOG_PACKET, outer_addr_str, inner_addr_str, (direction ? "E2I" : "I2E"), ldbc_method_tostring(method), hash_value);
    free(inner_addr_str);
    free(outer_addr_str);
#endif

    return hash_value;
}