summaryrefslogtreecommitdiffstats
path: root/stacks/lwip_stack/tools/ntcpdump.c
blob: b2a34368725d095407253f4c388a8158cd381049 (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
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
/*
*
* Copyright (c) 2018 Huawei Technologies Co.,Ltd.
* 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.
*/

#include <arpa/inet.h>
#include <unistd.h>
#include <signal.h>
#include <time.h>
#include <malloc.h>
#include <stdio.h>
#include <getopt.h>
#include <unistd.h>
#include "types.h"
#include "nsfw_init_api.h"
#include "nsfw_mem_api.h"
#include "nsfw_fd_timer_api.h"
#include "nsfw_maintain_api.h"
#include "nstack_securec.h"

#include "tool_common.h"

NSTACK_STATIC struct option g_dump_long_options[] = {
    {"host", 1, NULL, OPT_ARG_HOST},
    {"lhost", 1, NULL, OPT_ARG_LOCAL_HOST},
    {"rhost", 1, NULL, OPT_ARG_REMOTE_HOST},
    {"port", 1, NULL, OPT_ARG_PORT},
    {"lport", 1, NULL, OPT_ARG_LOCAL_PORT},
    {"rport", 1, NULL, OPT_ARG_REMOTE_PORT},
    {"mac", 1, NULL, OPT_ARG_MAC},
    {"lmac", 1, NULL, OPT_ARG_LOCAL_MAC},
    {"rmac", 1, NULL, OPT_ARG_REMOTE_MAC},
    {0, 0, 0, 0}
};

static char *g_dump_short_options = "c:s:w:y:G:P:T:";

NSTACK_STATIC FILE *g_dump_fp = NULL;
static u32 g_dumped_packet = 0;
NSTACK_STATIC u32 g_captured_packet = 0;
static u32 g_filtered_packet = 0;

NSTACK_STATIC bool g_dump_exit = 0;

static dump_timer_info g_dump_hbt_timer;
NSTACK_STATIC dump_condition g_dump_condition;
static nsfw_mem_name g_dump_mem_ring_info =
    { NSFW_SHMEM, NSFW_PROC_MAIN, DUMP_SHMEM_RING_NAME };
static nsfw_mem_name g_dump_mem_pool_info =
    { NSFW_SHMEM, NSFW_PROC_MAIN, DUMP_SHMEM_POOL_NAME };

void dump_exit()
{
    g_dump_exit = 1;
}

void print_help_ntcpdump()
{
    printf("usage:ntcpdump \n\
        -c count \n\
        -s len \n\
        -w file \n\
        -y l2_protocol \n\
        -T l3_protocol \n\
        -G dump_seconds \n\
        -P in/out/inout \n\
        --host/rhost/lhost ip_addr \n\
        --port/rport/lport port \n\
        --mac/rmac/lmac mac_addr\n");
}

bool is_digit_ntcpdump(char *str, size_t src_len)
{
    size_t count = 0;

    if (NULL == str || 0 == *str)
    {
        return FALSE;
    }

    while (*str)
    {
        if (*str > '9' || *str < '0')
        {
            return false;
        }

        str++;
        count++;
    }

    if (count > src_len)
    {
        return false;
    }

    return true;
}

NSTACK_STATIC inline bool
is_ip_addr(const char *addr, ip_addr_bits * addr_info)
{
    u32 ip1;
    u32 ip2;
    u32 ip3;
    u32 ip4;

    if (sscanf_s(addr, "%d.%d.%d.%d", &ip1, &ip2, &ip3, &ip4) != 4)
    {
        return false;
    }

    if ((ip1 & 0xffffff00) || (ip2 & 0xffffff00) || (ip3 & 0xffffff00)
        || (ip4 & 0xffffff00))
    {
        return false;
    }

    addr_info->addr_bits1 = ip1;
    addr_info->addr_bits2 = ip2;
    addr_info->addr_bits3 = ip3;
    addr_info->addr_bits4 = ip4;

    return true;
}

NSTACK_STATIC inline bool get_ip_addr(const char *addr, u32 * ip_addr)
{
    ip_addr_bits addr_info;
    if (!is_ip_addr(addr, &addr_info))
    {
        return false;
    }

    *ip_addr = ((addr_info.addr_bits1 & 0xFF)
                | (addr_info.addr_bits2 & 0xFF) << 8
                | (addr_info.addr_bits3 & 0xFF) << 16
                | (addr_info.addr_bits4 & 0xFF) << 24);

    return true;
}

NSTACK_STATIC inline bool get_dump_port(const char *pport, u16 * port)
{
    int user_port;

    if (!is_digit_ntcpdump((char *) pport, MAX_PORT_STR_LEN))
    {
        return false;
    }

    user_port = atoi(pport);
    if (user_port < 1024 || user_port > 65535)
    {
        return false;
    }

    *port = (unsigned short) user_port;
    return true;
}

NSTACK_STATIC inline bool get_dump_len(char *plen, u32 * limit_len)
{
    if (!is_digit_ntcpdump(plen, MAX_INTEGER_STR_LEN))
    {
        return false;
    }

    *limit_len = atoi(plen);
    return true;
}

NSTACK_STATIC inline bool get_mac_addr(const char *opt_value, char *mac_addr)
{
    /* avoid coredump when opt_value is NULL */
    if (NULL == opt_value)
    {
        return false;
    }

    size_t org_len = strlen(opt_value);
    if (org_len != MAC_ADDR_STR_LEN)
    {
        return false;
    }

    u32 tmp_mac[MAC_ADDR_LEN];

    if (6 != sscanf_s(opt_value, "%x:%x:%x:%x:%x:%x",
                      &tmp_mac[0],
                      &tmp_mac[1],
                      &tmp_mac[2], &tmp_mac[3], &tmp_mac[4], &tmp_mac[5]))
    {
        return false;
    }

    int i = 0;
    for (; i < MAC_ADDR_LEN; i++)
    {
        if (tmp_mac[i] > 0xFF)
        {
            // 01:02:03:04:5:1FF
            return false;
        }

        mac_addr[i] = tmp_mac[i];
    }

    return true;
}

NSTACK_STATIC inline bool check_file_name(const char *file_name)
{
    if (0 == access(file_name, F_OK))
    {
        printf("dump file exist, file name=%s.\n", file_name);
        return false;
    }
    return true;
}

NSTACK_STATIC inline u16 get_para_direction(const char *para)
{
    if (0 == strcasecmp(para, "out"))
    {
        return DUMP_SEND;
    }

    if (0 == strcasecmp(para, "in"))
    {
        return DUMP_RECV;
    }

    if (0 == strcasecmp(para, "inout"))
    {
        return DUMP_SEND_RECV;
    }

    return INVALID_DIRECTION;
}

NSTACK_STATIC inline u16 get_para_l2_protocol(const char *para)
{
    if (0 == strcasecmp(para, "arp"))
    {
        return PROTOCOL_ARP;
    }

    if (0 == strcasecmp(para, "rarp"))
    {
        return PROTOCOL_RARP;
    }

    if (0 == strcasecmp(para, "ip"))
    {
        return PROTOCOL_IP;
    }

    if (0 == strcasecmp(para, "oam"))
    {
        return PROTOCOL_OAM_LACP;
    }

    if (0 == strcasecmp(para, "lacp"))
    {
        return PROTOCOL_OAM_LACP;
    }

    return INVALID_L2_PROTOCOL;
}

NSTACK_STATIC inline u16 get_para_l3_protocol(const char *para)
{
    if (0 == strcasecmp(para, "tcp"))
    {
        return PROTOCOL_TCP;
    }

    if (0 == strcasecmp(para, "udp"))
    {
        return PROTOCOL_UDP;
    }

    if (0 == strcasecmp(para, "icmp"))
    {
        return PROTOCOL_ICMP;
    }

    return INVALID_L3_PROTOCOL;
}

NSTACK_STATIC bool
parse_long_options(int opt, const char *long_opt_arg, int optindex,
                   dump_condition * filter_info)
{
    switch (opt)
    {
        case OPT_ARG_HOST:
            if (!get_ip_addr(long_opt_arg, &filter_info->ip_addr))
            {
                printf("invalid ip addr, optindex=%d, port=%s.\n", optindex,
                       long_opt_arg);
                return false;
            }
            filter_info->ip_set_flag |= COND_OR_SET;
            break;
        case OPT_ARG_LOCAL_HOST:
            if (!get_ip_addr(long_opt_arg, &filter_info->local_ip))
            {
                printf("invalid ip addr, optindex=%d, port=%s.\n", optindex,
                       long_opt_arg);
                return false;
            }
            filter_info->ip_set_flag |= COND_LOCAL_SET;
            break;
        case OPT_ARG_REMOTE_HOST:
            if (!get_ip_addr(long_opt_arg, &filter_info->remote_ip))
            {
                printf("invalid ip addr, optindex=%d, port=%s.\n", optindex,
                       long_opt_arg);
                return false;
            }
            filter_info->ip_set_flag |= COND_REMOTE_SET;
            break;
        case OPT_ARG_PORT:
            if (!get_dump_port(long_opt_arg, &filter_info->port))
            {
                printf("invalid port, optindex=%d, port=%s.\n", optindex,
                       long_opt_arg);
                return false;
            }
            filter_info->port_set_flag |= COND_OR_SET;
            break;
        case OPT_ARG_LOCAL_PORT:
            if (!get_dump_port(long_opt_arg, &filter_info->local_port))
            {
                printf("invalid port, optindex=%d, port=%s.\n", optindex,
                       long_opt_arg);
                return false;
            }
            filter_info->port_set_flag |= COND_LOCAL_SET;
            break;
        case OPT_ARG_REMOTE_PORT:
            if (!get_dump_port(long_opt_arg, &filter_info->remote_port))
            {
                printf("invalid port, optindex=%d, port=%s.\n", optindex,
                       long_opt_arg);
                return false;
            }
            filter_info->port_set_flag |= COND_REMOTE_SET;
            break;
        case OPT_ARG_MAC:
            if (!get_mac_addr(long_opt_arg, filter_info->mac_addr))
            {
                printf("invalid mac addr, optindex=%d, mac=%s.\n", optindex,
                       long_opt_arg);
                return false;
            }
            filter_info->mac_set_flag |= COND_OR_SET;
            break;
        case OPT_ARG_LOCAL_MAC:
            if (!get_mac_addr(long_opt_arg, filter_info->local_mac))
            {
                printf("invalid mac addr, optindex=%d, mac=%s.\n", optindex,
                       long_opt_arg);
                return false;
            }
            filter_info->mac_set_flag |= COND_LOCAL_SET;
            break;
        case OPT_ARG_REMOTE_MAC:
            if (!get_mac_addr(long_opt_arg, filter_info->remote_mac))
            {
                printf("invalid mac addr, optindex=%d, mac=%s.\n", optindex,
                       long_opt_arg);
                return false;
            }
            filter_info->mac_set_flag |= COND_REMOTE_SET;
            break;
        default:
            printf("unknow arg, optindex=%d, arg=%s.\n", optindex,
                   long_opt_arg);
            return false;
    }

    return true;
}

NSTACK_STATIC inline bool condition_valid(dump_condition * condition)
{
    // check direction
    if (INVALID_DIRECTION == condition->direction)
    {
        printf("direction invalid.\n");
        return false;
    }

    // check l2 protocol
    if (INVALID_L2_PROTOCOL == condition->l2_protocol)
    {
        printf("L2 protocol invalid.\n");
        return false;
    }

    // check l3 protocol
    if (INVALID_L3_PROTOCOL == condition->l3_protocol)
    {
        printf("L3 protocol invalid.\n");
        return false;
    }

    // check ip
    if (condition->ip_set_flag > 0x4)
    {
        printf("IP options invalid.\n");
        return false;
    }

    // check port
    if (condition->port_set_flag > 0x4)
    {
        printf("Port options invalid.\n");
        return false;
    }

    // check mac
    if (condition->mac_set_flag > 0x4)
    {
        printf("MAC options invalid.\n");
        return false;
    }

    if (condition->dump_time > MAX_DUMP_TIME
        || condition->dump_time < MIN_DUMP_TIME)
    {
        printf("dump time invalid.\n");
        return false;
    }

    return true;
}

NSTACK_STATIC inline bool
get_dump_condition(int argc, char **argv, dump_condition * filter_info)
{
    int opt = 0;
    int opt_index = 0;
    bool arg_invalid = false;
    filter_info->has_condition = 0;

    if (argc < 2)
    {
        // dump all package
        return true;
    }

    while (1)
    {
        opt =
            getopt_long(argc, argv, g_dump_short_options, g_dump_long_options,
                        &opt_index);
        if (-1 == opt)
        {
            break;
        }

        switch (opt)
        {
                // for short options
            case 'c':
                filter_info->dump_count = atoi(optarg);
                break;
            case 's':
                if (!get_dump_len(optarg, &filter_info->limit_len))
                {
                    printf("length invalid, optindex=%d, arg=%s.\n",
                           opt_index, optarg);
                    arg_invalid = true;
                }
                break;
            case 'w':
                if (!check_file_name(optarg))
                {
                    printf("invalid file name, optindex=%d, arg=%s.\n",
                           opt_index, optarg);
                    arg_invalid = true;
                }
                else
                {
                    filter_info->dump_file_name = optarg;
                }
                break;
            case 'y':
                filter_info->l2_protocol = get_para_l2_protocol(optarg);
                break;
            case 'G':
                filter_info->dump_time = atoi(optarg);
                break;
            case 'P':
                filter_info->direction = get_para_direction(optarg);
                break;
            case 'T':
                filter_info->l3_protocol = get_para_l3_protocol(optarg);
                break;
            case '?':
                arg_invalid = true;
                break;
                // for long options
            default:
                if (!parse_long_options(opt, optarg, opt_index, filter_info))
                {
                    arg_invalid = true;
                }
                break;
        }

        if (arg_invalid)
        {
            print_help_ntcpdump();
            return false;
        }

        filter_info->has_condition = 1;
    }

    if (!condition_valid(filter_info))
    {
        filter_info->has_condition = 0;
        return false;
    }

    return true;
}

NSTACK_STATIC inline void open_file()
{
    if (NULL == g_dump_condition.dump_file_name)
    {
        return;
    }

    g_dump_fp = fopen(g_dump_condition.dump_file_name, "w+");
    if (NULL == g_dump_fp)
    {
        printf("open file %s failed\n", g_dump_condition.dump_file_name);
    }
}

NSTACK_STATIC inline void close_file()
{
    if (NULL != g_dump_fp)
    {
        fclose(g_dump_fp);
        g_dump_fp = NULL;
    }
}

NSTACK_STATIC inline void write_file_head(FILE * fp)
{
    dump_file_head file_head;
    file_head.magic = 0xA1B2C3D4;
    file_head.major_ver = 2;    // 0x0200;
    file_head.minor_ver = 4;    // 0x0400;
    file_head.area = 0;
    file_head.time_stamp = 0;
    file_head.max_pack_size = 0x0000FFFF;       // 0xFFFF0000;
    file_head.link_type = 1;    //0x01000000;

    if (fwrite(&file_head, sizeof(dump_file_head), 1, fp) != 1)
    {
        return;
    }

    fflush(fp);
}

NSTACK_STATIC inline void write_packet(parse_msg_info * pmsg, FILE * fp)
{
    packet_head pack_head;
    dump_msg_info *org_msg = (dump_msg_info *) pmsg->org_msg;
    pack_head.sec = org_msg->dump_sec;
    pack_head.usec = org_msg->dump_usec;
    pack_head.save_len =
        (u32) nstack_min(org_msg->len, g_dump_condition.limit_len);
    pack_head.org_len = org_msg->len;

    if (fwrite(&pack_head, sizeof(packet_head), 1, fp) != 1)
    {
        // log error
        return;
    }

    if (fwrite(org_msg->buf, pack_head.save_len, 1, fp) != 1)
    {
        // log error
        return;
    }

    fflush(fp);
    return;
}

#define EMPTY(x) (0 == (x))
#define EQUAL(x, y) ((x) == (y))

#define STR_EMPTY(str) (0 == str[0])
#define STR_EQUAL(str1, str2, len) (0 == memcmp(str1, str2, len))

#define MATCH(cond, info, field) \
    (EQUAL(cond->field, info->field))

#define MATCH_MORE(cond, field, info, field1, field2) \
    (EQUAL(cond->field, info->field1) || EQUAL(cond->field, info->field2))

#define MATCH_STR(cond, info, field, len) \
    (STR_EQUAL(cond->field, info->field, len))

#define MATCH_STR_MORE(cond, field, info, field1, field2, len) \
    (STR_EQUAL(cond->field, info->field1, len) || STR_EQUAL(cond->field, info->field2, len))

NSTACK_STATIC inline bool
ip_match(dump_condition * condition, parse_msg_info * msg_info)
{
    bool ret = false;
    switch (condition->ip_set_flag)
    {
        case COND_NOT_SET:
            ret = true;
            break;
        case COND_LOCAL_SET:
            if (MATCH(condition, msg_info, local_ip))
            {
                ret = true;
            }
            break;
        case COND_REMOTE_SET:
            if (MATCH(condition, msg_info, remote_ip))
            {
                ret = true;
            }
            break;
        case COND_AND_SET:
            if (MATCH_MORE(condition, local_ip, msg_info, local_ip, remote_ip)
                && MATCH_MORE(condition, remote_ip, msg_info, local_ip,
                              remote_ip))
            {
                ret = true;
            }
            break;
        case COND_OR_SET:
            if (MATCH_MORE(condition, ip_addr, msg_info, local_ip, remote_ip))
            {
                ret = true;
            }
            break;
        default:
            break;
    }

    return ret;
}

NSTACK_STATIC inline bool
port_match(dump_condition * condition, parse_msg_info * msg_info)
{
    bool ret = false;
    switch (condition->port_set_flag)
    {
        case COND_NOT_SET:
            ret = true;
            break;
        case COND_LOCAL_SET:
            if (MATCH(condition, msg_info, local_port))
            {
                ret = true;
            }
            break;
        case COND_REMOTE_SET:
            if (MATCH(condition, msg_info, remote_port))
            {
                ret = true;
            }
            break;
        case COND_AND_SET:
            if (MATCH(condition, msg_info, local_port)
                && MATCH(condition, msg_info, remote_port))
            {
                ret = true;
            }
            break;
        case COND_OR_SET:
            if (MATCH_MORE
                (condition, port, msg_info, local_port, remote_port))
            {
                ret = true;
            }
            break;
        default:
            break;
    }

    return ret;
}

NSTACK_STATIC inline bool
mac_match(dump_condition * condition, parse_msg_info * msg_info)
{
    bool ret = false;
    switch (condition->mac_set_flag)
    {
        case COND_NOT_SET:
            ret = true;
            break;
        case COND_LOCAL_SET:
            if (MATCH_STR(condition, msg_info, local_mac, MAC_ADDR_LEN))
            {
                ret = true;
            }
            break;
        case COND_REMOTE_SET:
            if (MATCH_STR(condition, msg_info, remote_mac, MAC_ADDR_LEN))
            {
                ret = true;
            }
            break;
        case COND_AND_SET:
            if ((MATCH_STR_MORE
                 (condition, local_mac, msg_info, local_mac, remote_mac,
                  MAC_ADDR_LEN)
                 && MATCH_STR_MORE(condition, remote_mac, msg_info, local_mac,
                                   remote_mac, MAC_ADDR_LEN)))
            {
                ret = true;
            }
            break;
        case COND_OR_SET:
            if (MATCH_STR_MORE
                (condition, mac_addr, msg_info, local_mac, remote_mac,
                 MAC_ADDR_LEN))
            {
                ret = true;
            }
            break;
        default:
            break;
    }

    return ret;
}

NSTACK_STATIC inline bool
filter_by_condition(dump_condition * condition, parse_msg_info * msg_info)
{
    dump_msg_info *org_msg = (dump_msg_info *) msg_info->org_msg;
    if (0 == condition->has_condition)
    {
        return false;
    }

    // direction
    if (!(condition->direction & org_msg->direction))
    {
        return true;
    }

    // l2_protocol
    if ((0 != condition->l2_protocol)
        && !MATCH(condition, msg_info, l2_protocol))
    {
        return true;
    }

    // l3_protocol
    if ((0 != condition->l3_protocol)
        && !MATCH(condition, msg_info, l3_protocol))
    {
        return true;
    }

    // ip
    if (!ip_match(condition, msg_info))
    {
        return true;
    }

    // port
    if (!port_match(condition, msg_info))
    {
        return true;
    }

    // mac
    if (!mac_match(condition, msg_info))
    {
        return true;
    }

    return false;
}

NSTACK_STATIC inline char *get_l2_protocol_desc(u16 l2_protocol)
{
    switch (l2_protocol)
    {
        case PROTOCOL_IP:
            return "IP";
        case PROTOCOL_ARP:
            return "ARP";
        case PROTOCOL_RARP:
            return "RARP";
        case PROTOCOL_OAM_LACP:
            return "OAM/LACP";
        default:
            return "unknown";
    }
}

NSTACK_STATIC inline char *get_l3_protocol_desc(u16 l3_protocol)
{
    switch (l3_protocol)
    {
        case PROTOCOL_ICMP:
            return "ICMP";
        case PROTOCOL_TCP:
            return "TCP";
        case PROTOCOL_UDP:
            return "UDP";
        default:
            return "unknown";
    }
}

NSTACK_STATIC inline void get_ip_str(char *pip_addr, u32 ip_addr_len, u32 ip)
{
    int retVal;
    retVal = sprintf_s(pip_addr, ip_addr_len, "%d.%d.%d.%d",
                       ip & 0x000000FF,
                       (ip & 0x0000FF00) >> 8,
                       (ip & 0x00FF0000) >> 16, (ip & 0xFF000000) >> 24);
    if (-1 == retVal)
    {
        printf("get_ip_str:SPRINTF_S failed %d.\n", retVal);
    }
}

NSTACK_STATIC inline void print_packet(parse_msg_info * msg_info, u32 seq)
{
    char str_local_ip[IP_ADDR_LEN];
    char str_remote_ip[IP_ADDR_LEN];
    get_ip_str(str_local_ip, sizeof(str_local_ip), msg_info->local_ip);
    get_ip_str(str_remote_ip, sizeof(str_remote_ip), msg_info->remote_ip);

    dump_msg_info *org_msg = (dump_msg_info *) msg_info->org_msg;

    printf("%-6d %-6d:%6d %-8s %-8s %-16s %-16s %-10d %-10d %-8d\n",
           seq,
           org_msg->dump_sec, org_msg->dump_usec,
           get_l2_protocol_desc(msg_info->l2_protocol),
           get_l3_protocol_desc(msg_info->l3_protocol),
           str_local_ip,
           str_remote_ip,
           msg_info->local_port, msg_info->remote_port, org_msg->len);
}

void print_head()
{
    if (NULL != g_dump_fp)
    {
        write_file_head(g_dump_fp);
    }
    else
    {
        printf("ntcpdump start listening:\n");
        printf("%-6s %-18s %-8s %-8s %-16s %-16s %-10s %-10s %-8s\n",
               "Frame", "sec:usec", "L2", "L3", "Src IP", "Dest IP",
               "Src Port", "Dest Port", "Length");
    }
}

void register_dump_signal()
{
    signal(SIGINT, dump_exit);
}

NSTACK_STATIC inline void init_parse_msg_info(parse_msg_info * info)
{
    int retVal =
        memset_s(info, sizeof(parse_msg_info), 0, sizeof(parse_msg_info));
    if (EOK != retVal)
    {
        printf("MEMSET_S failed.\n");
    }
}

NSTACK_STATIC inline void
parse_msg(dump_msg_info * msg, parse_msg_info * info)
{
    init_parse_msg_info(info);

    info->org_msg = msg;

    char *pmsg = msg->buf;
    u32 len = msg->len;
    /* BEGIN: Added for PN:CODEDEX by l00351127, 2017/11/14 CID:50886 */
    if (len < MAC_ADDR_LEN + MAC_ADDR_LEN + sizeof(u16))
    {
        return;
    }
    /* END:   Added for PN:CODEDEX by l00351127, 2017/11/14 */

    // get mac addr
    if (EOK !=
        memcpy_s(info->remote_mac, sizeof(info->remote_mac), pmsg,
                 MAC_ADDR_LEN))
    {
        return;
    }

    pmsg += MAC_ADDR_LEN;
    len -= MAC_ADDR_LEN;

    if (EOK !=
        memcpy_s(info->local_mac, sizeof(info->local_mac), pmsg,
                 MAC_ADDR_LEN))
    {
        return;
    }

    pmsg += MAC_ADDR_LEN;
    len -= MAC_ADDR_LEN;

    info->l2_protocol = htons(*(u16 *) pmsg);
    pmsg += sizeof(u16);
    len -= sizeof(u16);

    if (PROTOCOL_IP != info->l2_protocol)
    {
        return;
    }

    ip_head *p_ip_head = (ip_head *) pmsg;
    if (len < p_ip_head->ihl)
    {
        return;
    }

    info->local_ip = p_ip_head->local_ip;
    info->remote_ip = p_ip_head->remote_ip;
    info->l3_protocol = p_ip_head->protocol;

    pmsg += p_ip_head->ihl * sizeof(u32);

    if (PROTOCOL_TCP == info->l3_protocol)
    {
        tcp_head *p_tcp_head = (tcp_head *) pmsg;
        info->local_port = htons(p_tcp_head->src_port);
        info->remote_port = htons(p_tcp_head->dst_port);
        return;
    }

    if (PROTOCOL_UDP == info->l3_protocol)
    {
        udp_head *p_udp_head = (udp_head *) pmsg;
        info->local_port = htons(p_udp_head->src_port);
        info->remote_port = htons(p_udp_head->dst_port);
        return;
    }

    return;
}

NSTACK_STATIC inline bool
time_expired(struct timespec * start_time, u32 work_sec)
{
#define TIME_EXPIRE_CHECK_COUNT 1000

    static u32 loop_count = 0;
    loop_count++;

    if (0 != loop_count % TIME_EXPIRE_CHECK_COUNT)
    {
        return false;
    }

    struct timespec cur_time;
    GET_CUR_TIME(&cur_time);

    if (cur_time.tv_sec - start_time->tv_sec > work_sec)
    {
        return true;
    }

    return false;
}

NSTACK_STATIC void dump_packet(parse_msg_info * msg)
{
    g_dumped_packet++;
    if (!g_dump_fp)
    {
        print_packet(msg, g_dumped_packet);
        return;
    }

    write_packet(msg, g_dump_fp);
}

NSTACK_STATIC void
dump_msg(mring_handle dump_ring, mring_handle dump_pool,
         dump_condition * condition, struct timespec *start_time)
{
    u32 dump_count = 0;
    open_file();

    print_head();

    void *msg = NULL;
    while (!g_dump_exit
           && (dump_count < condition->dump_count)
           && !time_expired(start_time, condition->dump_time))
    {
        if (nsfw_mem_ring_dequeue(dump_ring, &msg) <= 0)
        {
            sys_sleep_ns(0, 10000);
            continue;
        }

        if (NULL == msg)
        {
            continue;
        }

        parse_msg_info msg_info;
        parse_msg(msg, &msg_info);

        g_captured_packet++;
        if (!condition->has_condition)
        {
            dump_packet(&msg_info);
            dump_count++;
            nsfw_mem_ring_enqueue(dump_pool, msg);
            continue;
        }

        if (filter_by_condition(condition, &msg_info))
        {
            g_filtered_packet++;
            nsfw_mem_ring_enqueue(dump_pool, msg);
            continue;
        }

        dump_packet(&msg_info);
        dump_count++;
        nsfw_mem_ring_enqueue(dump_pool, msg);
    }

    close_file();
}

mring_handle dump_get_mem_ring()
{
    return nsfw_mem_ring_lookup(&g_dump_mem_ring_info);
}

mring_handle dump_get_mem_pool()
{
    return nsfw_mem_sp_lookup(&g_dump_mem_pool_info);
}

NSTACK_STATIC void dump_clear_mem(mring_handle ring, mring_handle pool)
{
    void *msg = NULL;
    while (nsfw_mem_ring_dequeue(ring, &msg) > 0)
    {
        nsfw_mem_ring_enqueue(pool, msg);
        sys_sleep_ns(0, 1000);
    }
}

/* BEGIN: Added for PN:CODEDEX by l00351127, 2017/11/14 CID:50859*/
i16 dump_send_req(u16 op_type, i16 task_id, u32 task_keep_time)
/* END:   Added for PN:CODEDEX by l00351127, 2017/11/14 */
{
    nsfw_mgr_msg *req =
        (nsfw_mgr_msg *) nsfw_mgr_msg_alloc(MGR_MSG_TOOL_TCPDUMP_REQ,
                                            NSFW_PROC_MAIN);
    if (NULL == req)
    {
        printf("all message for getting instance id failed.\n");
        return -1;
    }

    nsfw_tool_dump_msg *req_body = GET_USER_MSG(nsfw_tool_dump_msg, req);
    req_body->op_type = op_type;
    req_body->task_id = task_id;
    req_body->task_keep_time = task_keep_time;

    nsfw_mgr_msg *rsp = nsfw_mgr_null_rspmsg_alloc();
    if (NULL == rsp)
    {
        printf("alloc rsp message for getting memory failed.\n");
        nsfw_mgr_msg_free(req);
        return -1;
    }

    if (!nsfw_mgr_send_req_wait_rsp(req, rsp))
    {
        printf("request memory can not get response.\n");
        nsfw_mgr_msg_free(req);
        nsfw_mgr_msg_free(rsp);
        return -1;
    }

    if (rsp->src_proc_type != NSFW_PROC_MAIN
        || rsp->dst_proc_type != NSFW_PROC_TOOLS)
    {
        printf
            ("dump get wrong response, src or dst proc type error,src proc type=%u, dst proc type=%u.\n",
             rsp->src_proc_type, rsp->dst_proc_type);
        nsfw_mgr_msg_free(req);
        nsfw_mgr_msg_free(rsp);
        return -1;
    }

    if (rsp->msg_type != MGR_MSG_TOOL_TCPDUMP_RSP)
    {
        printf("dump get wrong response, msg type error, msg type=%d.\n",
               rsp->msg_type);
        nsfw_mgr_msg_free(req);
        nsfw_mgr_msg_free(rsp);
        return -1;
    }

    nsfw_tool_dump_msg *rsp_body = GET_USER_MSG(nsfw_tool_dump_msg, rsp);

/* BEGIN: Added for PN:CODEDEX by l00351127, 2017/11/14 CID:50859*/
    i16 new_task_id = rsp_body->task_id;
/* END:   Added for PN:CODEDEX by l00351127, 2017/11/14 */

    nsfw_mgr_msg_free(req);
    nsfw_mgr_msg_free(rsp);

    return new_task_id;
}

i16 start_dump_task(u32 task_keep_time)
{
    return dump_send_req(START_DUMP_REQ, -1, task_keep_time);
}

i16 stop_dump_task(i16 task_id)
{
    return dump_send_req(STOP_DUMP_REQ, task_id, 0);
}

NSTACK_STATIC void init_dump_condition(dump_condition * condition)
{
    if (EOK !=
        memset_s(condition, sizeof(dump_condition), 0,
                 sizeof(dump_condition)))
    {
        printf("MEMSET_S failed.\n");
    }
    condition->limit_len = DUMP_MSG_SIZE;
    condition->dump_time = DEFAULT_DUMP_TIME;
    condition->direction = 3;
    condition->dump_count = DEFAULT_DUMP_COUNT;
}

NSTACK_STATIC inline bool send_hbt_req(u32 seq, i16 task_id)
{
    nsfw_mgr_msg *req =
        (nsfw_mgr_msg *) nsfw_mgr_msg_alloc(MGR_MSG_TOOL_HEART_BEAT,
                                            NSFW_PROC_MAIN);
    if (NULL == req)
    {
        printf("all message for getting instance id failed.\n");
        return false;
    }

    nsfw_tool_hbt *req_body = GET_USER_MSG(nsfw_tool_hbt, req);
    req_body->seq = seq;
    req_body->task_id = task_id;

    if (!nsfw_mgr_send_msg(req))
    {
        printf("request memory can not get response.\n");
    }

    nsfw_mgr_msg_free(req);

    return true;
}

NSTACK_STATIC bool on_send_hbt_req(u32 timer_type, void *data)
{
    dump_timer_info *ptimer_info = (dump_timer_info *) data;
    // send heartbeat

    send_hbt_req(ptimer_info->seq, ptimer_info->task_id);
    ptimer_info->seq++;

    ptimer_info->ptimer =
        nsfw_timer_reg_timer(DUMP_HBT_TIMER, ptimer_info, on_send_hbt_req,
                             *(struct timespec *) (ptimer_info->interval));
    return true;
}

NSTACK_STATIC bool start_dump_hbt(dump_timer_info * ptimer_info, i16 task_id)
{
    struct timespec *time_interval =
        (struct timespec *) malloc(sizeof(struct timespec));
    if (NULL == time_interval)
    {
        return false;
    }

    time_interval->tv_sec = DUMP_HBT_INTERVAL;
    time_interval->tv_nsec = 0;

    ptimer_info->interval = time_interval;
    ptimer_info->seq = 1;
    ptimer_info->task_id = task_id;

    ptimer_info->ptimer =
        nsfw_timer_reg_timer(DUMP_HBT_TIMER, ptimer_info, on_send_hbt_req,
                             *time_interval);

    return true;
}

NSTACK_STATIC bool stop_dump_hbt(dump_timer_info * ptimer_info)
{
    free(ptimer_info->interval);
    /* fix "SET_NULL_AFTER_FREE" type codedex issue */
    ptimer_info->interval = NULL;
    nsfw_timer_rmv_timer(ptimer_info->ptimer);
    return true;
}

#ifndef NSTACK_STATIC_CHECK
int main(int argc, char *argv[])
#else
int ntcpdump_main(int argc, char *argv[])
#endif
{
    register_dump_signal();

    init_dump_condition(&g_dump_condition);
    if (!get_dump_condition(argc, argv, &g_dump_condition))
    {
        printf("dump exit because of input invalid.\n");
        return INPUT_INVALID;
    }

    printf("parse filter condition ok.\n");

    fw_poc_type proc_type = NSFW_PROC_TOOLS;
    nsfw_mem_para stinfo = { 0 };
    stinfo.iargsnum = 0;
    stinfo.pargs = NULL;
    stinfo.enflag = proc_type;
    nstack_framework_set_module_param(NSFW_MEM_MGR_MODULE, &stinfo);
    nstack_framework_set_module_param(NSFW_MGR_COM_MODULE,
                                      (void *) ((u64) proc_type));
    nstack_framework_set_module_param(NSFW_TIMER_MODULE,
                                      (void *) ((u64) proc_type));

    if (0 != nstack_framework_init())
    {
        printf("dump init failed.\n");
        return FRAMEWORK_INIT_FAILED;
    }

    mring_handle dump_mem_pool = dump_get_mem_pool();
    if (NULL == dump_mem_pool)
    {
        printf("dump init mem pool failed.\n");
        return MEMPOOL_INIT_FAILED;
    }

    mring_handle dump_mem_ring = dump_get_mem_ring();
    if (NULL == dump_mem_ring)
    {
        printf("dump init mem ring failed.\n");
        return MEMRING_INIT_FAILED;
    }

    // initialize queue first
    dump_clear_mem(dump_mem_ring, dump_mem_pool);

    i16 task_id = start_dump_task(g_dump_condition.dump_time);
    if (task_id < 0 || task_id > MAX_DUMP_TASK)
    {
        printf("start dump task failed.\n");
        return START_TASK_FAILED;
    }

    if (!start_dump_hbt(&g_dump_hbt_timer, task_id))
    {
        printf("start dump heart beat timer failed.\n");
        return START_TIMER_FAILED;
    }

    struct timespec dump_start_time;
    GET_CUR_TIME(&dump_start_time);
    dump_msg(dump_mem_ring, dump_mem_pool, &g_dump_condition,
             &dump_start_time);

    i16 new_task_id = stop_dump_task(task_id);
    if (new_task_id != task_id)
    {
        printf("stop dump task failed.\n");
    }
    /* modify deadcode type codedex issue */
    (void) stop_dump_hbt(&g_dump_hbt_timer);

    printf("dump complete.\n");
    printf("captured packets=%u.\n", g_captured_packet);
    printf("dumped packets=%u.\n", g_dumped_packet);
    printf("filtered packets=%u.\n", g_filtered_packet);

    return 0;
}