-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp_main.c
941 lines (810 loc) · 23.8 KB
/
app_main.c
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
/* Copyright (c) 2014, ENEA Software AB
* Copyright (c) 2014, Nokia
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <getopt.h>
#include <string.h>
#include <inttypes.h>
#include <unistd.h>
#include "nfp.h"
#include "linux_sigaction.h"
#include "cli_arg_parse.h"
#define MS_IN_NS 1000000UL
#define MAX_WORKERS 64
#define PKT_BURST_SIZE NFP_PKT_VECTOR_SIZE
#define PKT_IDLE_DETECTION_TIMEOUT (2000 * MS_IN_NS) /* 2s in ns */
#define PKT_DETECTION_TIMEOUT (100 * MS_IN_NS) /* 100ms in ns*/
#define EVT_IDLE_DETECTION_TIMEOUT (1 * MS_IN_NS) /* 1ms in ns */
#define EVT_DETECTION_TIMEOUT (100 * MS_IN_NS) /* 100ms in ns */
/** Get rid of path in filename - only for unix-type paths using '/' */
#define NO_PATH(file_name) (strrchr((file_name), '/') ? \
strrchr((file_name), '/') + 1 : (file_name))
/**
* Parsed command line application arguments
*/
typedef struct {
int core_count;
int core_start;
appl_arg_ifs_t itf_param;
char *cli_file;
odp_bool_t single_pkt_API;
uint64_t idle_tmo;
uint64_t pkt_tmo;
} appl_args_t;
struct worker_arg {
int num_pktin;
odp_pktin_queue_t pktin[NFP_FP_INTERFACE_MAX];
uint64_t idle_tmo;
uint64_t pkt_tmo;
};
struct interface_id {
int port;
uint16_t subport;
};
/* helper funcs */
static int parse_args(int argc, char *argv[], appl_args_t *appl_args);
static void parse_args_cleanup(appl_args_t *appl_args);
static void print_info(char *progname, appl_args_t *appl_args);
static void usage(char *progname);
static int validate_cores_settings(int req_core_start, int req_core_count,
int *core_start, int *core_count);
static int pktin_intr_wait_register(odp_pktin_queue_t *pktin, int num_pktin)
{
int i;
for (i = 0; i < num_pktin; i++)
if (odp_pktin_intr_wait_register(pktin[i])) {
NFP_ERR("odp_pktin_intr_wait_register failed");
return -1;
}
return 0;
}
static int pktin_intr_set(odp_pktin_queue_t *pktin, int num_pktin,
odp_bool_t enable)
{
int i;
for (i = 0; i < num_pktin; i++)
if (odp_pktin_intr_set(pktin[i], enable)) {
NFP_ERR("odp_pktin_intr_enable failed");
return -1;
}
return 0;
}
static void loop_intr_wait(odp_bool_t *is_running, int num, uint64_t timeout_ns)
{
while (*is_running)
if (odp_pktin_intr_wait("dpdk", num,
(int)(timeout_ns / MS_IN_NS)) != 0)
break;
}
static void loop_intr_clear(odp_bool_t *is_running, int num)
{
while (*is_running)
if (odp_pktin_intr_wait("dpdk", num, 0) <= 0)
break;
}
/** pkt_io_recv_single() Custom packet event dispatcher
*
* @param _arg void* Worker argument
* @return int -1 error, 0 execution terminated with success
*
*/
static int pkt_io_recv_single(void *_arg)
{
struct worker_arg *arg = (struct worker_arg *)_arg;
odp_packet_t pkt, pkt_tbl[PKT_BURST_SIZE];
int pkt_idx, pkt_cnt, pkt_sum, num_pktin, i;
odp_pktin_queue_t pktin[NFP_FP_INTERFACE_MAX];
odp_bool_t *is_running = NULL;
odp_bool_t is_idling = FALSE;
uint64_t idling_start = 0, idling_crt;
is_running = nfp_get_processing_state();
if (is_running == NULL) {
NFP_ERR("nfp_get_processing_state failed");
return -1;
}
num_pktin = arg->num_pktin;
for (i = 0; i < num_pktin; i++)
pktin[i] = arg->pktin[i];
if (pktin_intr_wait_register(pktin, num_pktin)) {
NFP_ERR("pktin_intr_wait_register failed");
return -1;
}
printf("PKT-IO receive starting on cpu: %i, queues: %i\n",
odp_cpu_id(), num_pktin);
while (*is_running) {
pkt_sum = 0;
for (i = 0; i < num_pktin; i++) {
pkt_cnt = odp_pktin_recv(pktin[i], pkt_tbl,
PKT_BURST_SIZE);
if (pkt_cnt > 0)
pkt_sum += pkt_cnt;
for (pkt_idx = 0; pkt_idx < pkt_cnt; pkt_idx++) {
pkt = pkt_tbl[pkt_idx];
nfp_packet_input(pkt, ODP_QUEUE_INVALID,
nfp_eth_vlan_processing);
}
}
nfp_send_pending_pkt();
if (pkt_sum == 0) {
if (is_idling == FALSE) {
is_idling = TRUE;
idling_start = odp_time_local_ns();
} else {
idling_crt = odp_time_local_ns();
if (idling_crt - idling_start > arg->idle_tmo) {
loop_intr_clear(is_running, num_pktin);
if (pktin_intr_set(pktin, num_pktin, TRUE) < 0)
break;
loop_intr_wait(is_running, num_pktin, arg->pkt_tmo);
if (pktin_intr_set(pktin, num_pktin, FALSE) < 0)
break;
}
}
} else {
is_idling = FALSE;
}
}
return 0;
}
/** pkt_io_recv() Custom packet event dispatcher
*
* @param _arg void* Worker argument
* @return int -1 error, 0 execution terminated with success
*
*/
static int pkt_io_recv(void *_arg)
{
struct worker_arg *arg = (struct worker_arg *)_arg;
odp_packet_t pkt, pkt_tbl[PKT_BURST_SIZE];
int pkt_idx, pkt_cnt, pkt_sum, num_pktin, i;
odp_pktin_queue_t pktin[NFP_FP_INTERFACE_MAX];
odp_bool_t *is_running = NULL;
nfp_pkt_vector_t vec;
odp_bool_t is_idling = FALSE;
uint64_t idling_start = 0, idling_crt;
is_running = nfp_get_processing_state();
if (is_running == NULL) {
NFP_ERR("nfp_get_processing_state failed");
return -1;
}
num_pktin = arg->num_pktin;
for (i = 0; i < num_pktin; i++)
pktin[i] = arg->pktin[i];
if (pktin_intr_wait_register(pktin, num_pktin)) {
NFP_ERR("pktin_intr_wait_register failed");
return -1;
}
nfp_pkt_vector_init(&vec);
printf("PKT-IO receive starting on cpu: %i, queues: %i\n",
odp_cpu_id(), num_pktin);
while (*is_running) {
pkt_sum = 0;
for (i = 0; i < num_pktin; i++) {
pkt_cnt = odp_pktin_recv(pktin[i], pkt_tbl,
PKT_BURST_SIZE);
if (pkt_cnt > 0)
pkt_sum += pkt_cnt;
for (pkt_idx = 0; pkt_idx < pkt_cnt; pkt_idx++) {
pkt = pkt_tbl[pkt_idx];
if (nfp_pkt_vector_add(&vec, pkt) != 1) {
odp_packet_free(pkt);
continue;
}
if (NFP_PKT_VECTOR_IS_FULL(&vec)) {
nfp_packet_input_multi(&vec, ODP_QUEUE_INVALID,
nfp_eth_vlan_processing_multi);
nfp_pkt_vector_init(&vec);
}
}
}
if (NFP_PKT_VECTOR_HAS_DATA(&vec)) {
nfp_packet_input_multi(&vec, ODP_QUEUE_INVALID,
nfp_eth_vlan_processing_multi);
nfp_pkt_vector_init(&vec);
}
nfp_send_pending_pkt();
if (pkt_sum == 0) {
if (is_idling == FALSE) {
is_idling = TRUE;
idling_start = odp_time_local_ns();
} else {
idling_crt = odp_time_local_ns();
if (idling_crt - idling_start > arg->idle_tmo) {
loop_intr_clear(is_running, num_pktin);
if (pktin_intr_set(pktin, num_pktin, TRUE) < 0)
break;
loop_intr_wait(is_running, num_pktin, arg->pkt_tmo);
if (pktin_intr_set(pktin, num_pktin, FALSE) < 0)
break;
}
}
} else {
is_idling = FALSE;
}
}
return 0;
}
/*
* Scheduled events dispatcher
*/
static int event_dispatcher(void *arg)
{
odp_event_t events[PKT_BURST_SIZE], ev;
odp_queue_t in_queue;
odp_bool_t *is_running = NULL;
int event_cnt, event_sum, i;
odp_bool_t is_idling = FALSE;
uint64_t idling_start = 0, idling_crt;
(void)arg;
is_running = nfp_get_processing_state();
if (is_running == NULL) {
NFP_ERR("nfp_get_processing_state failed");
return -1;
}
while (*is_running) {
event_sum = 0;
event_cnt = odp_schedule_multi(&in_queue,
ODP_SCHED_NO_WAIT,
events, PKT_BURST_SIZE);
if (event_cnt > 0)
event_sum += event_cnt;
for (i = 0; i < event_cnt; i++) {
ev = events[i];
if (ev == ODP_EVENT_INVALID)
continue;
if (odp_event_type(ev) == ODP_EVENT_TIMEOUT) {
nfp_timer_handle(ev);
nfp_send_pending_pkt();
continue;
} else if (odp_event_type(ev) == ODP_EVENT_PACKET) {
/* loopbacked, SP pkts */
nfp_packet_input(odp_packet_from_event(ev),
in_queue,
nfp_eth_vlan_processing);
nfp_send_pending_pkt();
continue;
}
odp_event_free(ev);
}
if (event_sum == 0) {
if (is_idling == FALSE) {
is_idling = TRUE;
idling_start = odp_time_local_ns();
} else {
idling_crt = odp_time_local_ns();
if (idling_crt - idling_start > EVT_IDLE_DETECTION_TIMEOUT)
usleep(EVT_DETECTION_TIMEOUT / 1000); /* us */
}
} else {
is_idling = FALSE;
}
}
return 0;
}
/** configure_interfaces() Create NFP interfaces with
* pktios open in direct mode, thread unsafe.
*
* @param itf_param appl_arg_ifs_t Interfaces to configure
* @param tx_queue int Number of requested transmision queues
* per interface
* @param rx_queue int Number of requested reciver queues per
* interface
* @param itf_id struct interface_id IDs (port and subport) of
* the configured interfaces
* @return int 0 on success, -1 on error
*
*/
static int configure_interfaces(appl_arg_ifs_t *itf_param,
int tx_queues, int rx_queues,
struct interface_id *itf_id)
{
nfp_ifport_net_param_t if_param;
odp_pktio_param_t pktio_param;
odp_pktin_queue_param_t pktin_param;
odp_pktout_queue_param_t pktout_param;
int i;
nfp_ifport_net_param_init(&if_param);
if_param.pktio_param = &pktio_param;
if_param.pktin_param = &pktin_param;
if_param.pktout_param = &pktout_param;
if_param.if_sp_mgmt = 1;
if_param.intr_mode = 1;
odp_pktio_param_init(&pktio_param);
pktio_param.in_mode = ODP_PKTIN_MODE_DIRECT;
pktio_param.out_mode = ODP_PKTOUT_MODE_DIRECT;
odp_pktin_queue_param_init(&pktin_param);
pktin_param.op_mode = ODP_PKTIO_OP_MT_UNSAFE;
pktin_param.hash_enable = 1;
pktin_param.hash_proto.proto.ipv4_udp = 1;
pktin_param.hash_proto.proto.ipv4_tcp = 1;
pktin_param.hash_proto.proto.ipv6_udp = 1;
pktin_param.num_queues = rx_queues;
odp_pktout_queue_param_init(&pktout_param);
pktout_param.op_mode = ODP_PKTIO_OP_MT; /* see note below */
pktout_param.num_queues = tx_queues;
/** Note: Using output queues as multithread unsafe (ODP_PKTIO_OP_MT_UNSAFE) is
* tricky and should be avoided unless good understanding of output queues
* selection algorithm and thread to core allocation:
*
* out_queue_idx = core_id % tx_queues_count
*
* Valid configuration:
* linux_core_id = 0
* workers are set on cores 1 - N
* tx_queues_count = N + 1
*
* Other configurations may result in multiple threads using the same output
* queue in MT unsafe mode resulting in packet send failures.
*/
for (i = 0; i < itf_param->if_count; i++)
if (nfp_ifport_net_create(itf_param->if_array[i].if_name,
&if_param,
&itf_id[i].port,
&itf_id[i].subport) < 0) {
NFP_ERR("Failed to init interface %s",
itf_param->if_array[i].if_name);
return -1;
}
return 0;
}
/** configure_interface_addresses() Configure IPv4 addresses
*
* @param itf_param appl_arg_ifs_t Interfaces to configure
* @param itf_id struct interface_id IDs (port and subport) of
* the configured interfaces
* @return int 0 on success, -1 on error
*
*/
static int configure_interface_addresses(appl_arg_ifs_t *itf_param,
struct interface_id *itf_id)
{
struct appl_arg_if *ifarg = NULL;
uint32_t addr = 0;
int i, ret = 0;
const char *res = NULL;
for (i = 0; i < itf_param->if_count && i < NFP_FP_INTERFACE_MAX; i++) {
ifarg = &itf_param->if_array[i];
if (!ifarg->if_name) {
NFP_ERR("Error: Invalid interface name: null");
ret = -1;
break;
}
if (!ifarg->if_address)
continue; /* Not set through application parameters*/
NFP_DBG("Setting %s/%d on %s", ifarg->if_address,
ifarg->if_address_masklen, ifarg->if_name);
if (!nfp_parse_ip_addr(ifarg->if_address, &addr)) {
NFP_ERR("Error: Failed to parse IPv4 address: %s",
ifarg->if_address);
ret = -1;
break;
}
res = nfp_ifport_net_ipv4_up(itf_id[i].port, itf_id[i].subport,
0,
addr, ifarg->if_address_masklen,
1);
if (res != NULL) {
NFP_ERR("Error: Failed to set IPv4 address %s "
"on interface %s: %s",
ifarg->if_address, ifarg->if_name, res);
ret = -1;
break;
}
}
return ret;
}
/** configure_workers_arg() Configure workers
* argument
*
* @param num_workers int Number of workers
* @param workers_arg struct worker_arg* Array of workers
* argument
* @param if_count int Interface count
* @param if_names char** Interface names
* @return int 0 on success, -1 on error
*
*/
static int configure_workers_arg(appl_args_t *appl_params,
int num_workers,
struct worker_arg *workers_arg)
{
appl_arg_ifs_t *itf_param = &appl_params->itf_param;
odp_pktio_t pktio;
odp_pktin_queue_t pktin[MAX_WORKERS];
int i, j;
for (i = 0; i < num_workers; i++) {
workers_arg[i].num_pktin = itf_param->if_count;
workers_arg[i].idle_tmo = appl_params->idle_tmo;
workers_arg[i].pkt_tmo = appl_params->pkt_tmo;
}
for (i = 0; i < itf_param->if_count; i++) {
pktio = odp_pktio_lookup(itf_param->if_array[i].if_name);
if (pktio == ODP_PKTIO_INVALID) {
NFP_ERR("Failed locate pktio %s",
itf_param->if_array[i].if_name);
return -1;
}
if (odp_pktin_queue(pktio, pktin, num_workers) != num_workers) {
NFP_ERR("Too few pktin queues for %s",
itf_param->if_array[i].if_name);
exit(EXIT_FAILURE);
}
for (j = 0; j < num_workers; j++)
workers_arg[j].pktin[i] = pktin[j];
}
return 0;
}
/** main() Application entry point
*
* @param argc int
* @param argv[] char*
* @return int
*
*/
int main(int argc, char *argv[])
{
appl_args_t params;
nfp_initialize_param_t app_init_params;
nfp_thread_t thread_tbl[MAX_WORKERS], event_thread;
nfp_thread_param_t thread_param;
struct worker_arg workers_arg[MAX_WORKERS];
struct interface_id itf_id[NFP_FP_INTERFACE_MAX];
int num_workers, first_worker, linux_sp_core, i, ret_val;
odp_cpumask_t cpu_mask;
/* add handler for Ctr+C */
if (nfpexpl_sigaction_set(nfpexpl_sigfunction_stop)) {
printf("Error: failed to set signal actions.\n");
return EXIT_FAILURE;
}
/* Parse and store the application arguments */
if (parse_args(argc, argv, ¶ms) != EXIT_SUCCESS)
return EXIT_FAILURE;
/*
* This example creates a custom workers to cores distribution:
* Core #0 runs Slow Path background tasks, cli and scheduled
* events processing.
* Cores #core_start and beyond run packet processing tasks.
* It is recommended to start mapping threads from core 1. Else,
* Slow Path processing will be affected by workers processing.
* However, if Slow Path is disabled, core 0 may be used as well.
*/
linux_sp_core = 0;
/* Initialize NFP*/
nfp_initialize_param(&app_init_params);
app_init_params.evt_rx_burst_size = NFP_PKT_VECTOR_SIZE;
app_init_params.pkt_tx_burst_size = NFP_PKT_VECTOR_SIZE;
app_init_params.linux_core_id = linux_sp_core;
app_init_params.cli.os_thread.start_on_init = 1;
if (nfp_initialize(&app_init_params)) {
NFP_ERR("Error: NFP global init failed.\n");
parse_args_cleanup(¶ms);
exit(EXIT_FAILURE);
}
/* Validate workers distribution settings. */
if (validate_cores_settings(params.core_start, params.core_count,
&first_worker, &num_workers) < 0) {
nfp_terminate();
parse_args_cleanup(¶ms);
exit(EXIT_FAILURE);
}
/* Print both system and application information */
print_info(NO_PATH(argv[0]), ¶ms);
NFP_INFO("SP core: %d\nWorkers core start: %d\n"
"Workers core count: %d\n",
linux_sp_core, first_worker, num_workers);
odp_memset(itf_id, 0, sizeof(itf_id));
if (configure_interfaces(¶ms.itf_param, /*one tx queue for SP core*/
num_workers + 1, num_workers, itf_id)) {
NFP_ERR("Error: Failed to configure interfaces.\n");
nfp_terminate();
parse_args_cleanup(¶ms);
exit(EXIT_FAILURE);
}
if (configure_workers_arg(¶ms,
num_workers, workers_arg)) {
NFP_ERR("Failed to initialize workers arguments.");
nfp_terminate();
parse_args_cleanup(¶ms);
exit(EXIT_FAILURE);
}
/* Create worker threads */
memset(thread_tbl, 0, sizeof(thread_tbl));
for (i = 0; i < num_workers; ++i) {
nfp_thread_param_init(&thread_param);
if (params.single_pkt_API)
thread_param.start = pkt_io_recv_single;
else
thread_param.start = pkt_io_recv;
thread_param.arg = &workers_arg[i];
thread_param.thr_type = ODP_THREAD_WORKER;
thread_param.description = "packets";
odp_cpumask_zero(&cpu_mask);
odp_cpumask_set(&cpu_mask, first_worker + i);
ret_val = nfp_thread_create(&thread_tbl[i], 1, &cpu_mask,
&thread_param);
if (ret_val != 1) {
NFP_ERR("Error: Failed to create worker threads, "
"expected %d, got %d",
num_workers, i);
nfp_stop_processing();
nfp_thread_join(thread_tbl, i);
nfp_terminate();
parse_args_cleanup(¶ms);
return EXIT_FAILURE;
}
}
/* Create scheduled event dispatcher thread */
odp_cpumask_zero(&cpu_mask);
odp_cpumask_set(&cpu_mask, app_init_params.linux_core_id);
nfp_thread_param_init(&thread_param);
thread_param.start = event_dispatcher;
thread_param.arg = NULL;
thread_param.thr_type = ODP_THREAD_WORKER;
thread_param.description = "events";
if (nfp_thread_create(&event_thread, 1,
&cpu_mask, &thread_param) != 1) {
NFP_ERR("Error: Failed to create dispatcherthreads");
nfp_stop_processing();
nfp_thread_join(thread_tbl, num_workers);
nfp_terminate();
parse_args_cleanup(¶ms);
return EXIT_FAILURE;
}
/* Configure IP addresses */
if (configure_interface_addresses(¶ms.itf_param, itf_id)) {
NFP_ERR("Error: Failed to configure addresses");
nfp_stop_processing();
nfp_thread_join(thread_tbl, num_workers);
nfp_thread_join(&event_thread, 1);
nfp_terminate();
parse_args_cleanup(¶ms);
return EXIT_FAILURE;
}
/*
* Process the CLI commands file (if defined).
* This is an alternative way to set the IP addresses and other
* parameters.
*/
if (nfp_cli_process_file(params.cli_file)) {
NFP_ERR("Error: Failed to process CLI file.");
nfp_stop_processing();
nfp_thread_join(thread_tbl, num_workers);
nfp_thread_join(&event_thread, 1);
nfp_terminate();
parse_args_cleanup(¶ms);
return EXIT_FAILURE;
}
nfp_thread_join(thread_tbl, num_workers);
nfp_thread_join(&event_thread, 1);
if (nfp_terminate() < 0)
printf("Error: nfp_terminate failed.\n");
parse_args_cleanup(¶ms);
printf("End Main()\n");
return 0;
}
/**
* validate_cores_settings() Validate requested core settings
* and computed actual values
*
*
* @param req_core_start int Requested worker core start
* @param req_core_count int Requested worker core count
* @param core_start int* Computed worker core start
* @param core_count int* Computed worker core count
* @return int 0 on success, -1 on error
*
*/
static int validate_cores_settings(int req_core_start, int req_core_count,
int *core_start, int *core_count)
{
int total_core_count = odp_cpu_count();
if (req_core_start >= total_core_count) {
NFP_ERR("ERROR: Invalid 'core start' parameter: %d. Max = %d\n",
req_core_start, total_core_count - 1);
return -1;
}
*core_start = req_core_start;
if (req_core_count) {
if (*core_start + req_core_count > total_core_count) {
NFP_ERR("ERROR: Invalid 'core start' 'core count' "
"configuration: %d,%d\n"
"Exeeds number of avilable cores: %d",
*core_start, req_core_count, total_core_count);
return -1;
}
*core_count = req_core_count;
} else {
*core_count = total_core_count - *core_start;
}
if (*core_count < 0) {
NFP_ERR("ERROR: At least 1 core is required.\n");
return -1;
}
if (*core_count > MAX_WORKERS) {
NFP_ERR("ERROR: Number of processing cores %d"
" exeeds maximum number for this test %d.\n",
*core_count, MAX_WORKERS);
return -1;
}
return 0;
}
/**
* Parse and store the command line arguments
*
* @param argc argument count
* @param argv[] argument vector
* @param appl_args Store application arguments here
* @return EXIT_SUCCESS on success, EXIT_FAILURE on error
*/
static int parse_args(int argc, char *argv[], appl_args_t *appl_args)
{
int opt, res = 0;
int long_index;
size_t len;
static struct option longopts[] = {
{"core_count", required_argument, NULL, 'c'},
{"core_start", required_argument, NULL, 's'},
{"interface", required_argument, NULL, 'i'}, /* return 'i' */
{"help", no_argument, NULL, 'h'}, /* return 'h' */
{"cli-file", required_argument,
NULL, 'f'},/* return 'f' */
{"single-pkt-API", no_argument, NULL, 'g'},
{"idle-detect-timeout", required_argument, NULL, 'd'},
{"pkt-detect-timeout", required_argument, NULL, 'p'},
{NULL, 0, NULL, 0}
};
memset(appl_args, 0, sizeof(*appl_args));
appl_args->core_start = 1;
appl_args->core_count = 0; /* all above core start */
appl_args->single_pkt_API = 0;
appl_args->idle_tmo = PKT_IDLE_DETECTION_TIMEOUT;
appl_args->pkt_tmo = PKT_DETECTION_TIMEOUT;
while (res == 0) {
opt = getopt_long(argc, argv, "+c:s:i:hf:gd:p:",
longopts, &long_index);
if (opt == -1)
break; /* No more options */
switch (opt) {
case 'c':
appl_args->core_count = atoi(optarg);
break;
case 's':
appl_args->core_start = atoi(optarg);
break;
/* parse packet-io interface names */
case 'i':
res = nfpexpl_parse_interfaces(optarg,
&appl_args->itf_param);
if (res == EXIT_FAILURE) {
usage(argv[0]);
res = -1;
}
break;
case 'h':
usage(argv[0]);
parse_args_cleanup(appl_args);
exit(EXIT_SUCCESS);
break;
case 'f':
len = strlen(optarg);
if (len == 0) {
usage(argv[0]);
res = -1;
break;
}
len += 1; /* add room for '\0' */
appl_args->cli_file = malloc(len);
if (appl_args->cli_file == NULL) {
usage(argv[0]);
res = -1;
break;
}
strcpy(appl_args->cli_file, optarg);
break;
case 'g':
appl_args->single_pkt_API = 1;
break;
case 'd':
appl_args->idle_tmo =
(uint64_t)(atoi(optarg) * MS_IN_NS);
break;
case 'p':
appl_args->pkt_tmo =
(uint64_t)(atoi(optarg) * MS_IN_NS);
break;
default:
break;
}
}
if (res == -1) {
parse_args_cleanup(appl_args);
return EXIT_FAILURE;
}
if (appl_args->itf_param.if_count == 0) {
usage(argv[0]);
parse_args_cleanup(appl_args);
return EXIT_FAILURE;
}
if (appl_args->itf_param.if_count > NFP_FP_INTERFACE_MAX) {
printf("Error: Invalid number of interfaces: maximum %d\n",
NFP_FP_INTERFACE_MAX);
parse_args_cleanup(appl_args);
return EXIT_FAILURE;
}
optind = 1; /* reset 'extern optind' from the getopt lib */
return EXIT_SUCCESS;
}
/**
* Cleanup the stored command line arguments
*
* @param appl_args application arguments
*/
static void parse_args_cleanup(appl_args_t *appl_args)
{
nfpexpl_parse_interfaces_param_cleanup(&appl_args->itf_param);
}
/**
* Print system and application info
*/
static void print_info(char *progname, appl_args_t *appl_args)
{
int i;
printf("\n"
"ODP system info\n"
"---------------\n"
"ODP API version: %s\n"
"CPU model: %s\n"
"CPU freq (hz): %" PRIu64 "\n"
"Cache line size: %i\n"
"Core count: %i\n"
"\n",
odp_version_api_str(), odp_cpu_model_str(),
odp_cpu_hz(), odp_sys_cache_line_size(),
odp_cpu_count());
printf("Running ODP appl: \"%s\"\n"
"-----------------\n"
"IF-count: %i\n"
"Using IFs: ",
progname, appl_args->itf_param.if_count);
for (i = 0; i < appl_args->itf_param.if_count; ++i)
printf(" %s", appl_args->itf_param.if_array[i].if_name);
printf("\n\n");
printf("Packet processing API: %s\n\n", appl_args->single_pkt_API ?
"single" : "multi");
fflush(NULL);
}
/**
* Prinf usage information
*/
static void usage(char *progname)
{
printf("\n"
"Usage: %s OPTIONS\n"
" E.g. %s -i eth1,eth2,eth3\n"
"\n"
"ODPFastpath application.\n"
"\n"
"Mandatory OPTIONS:\n"
" -i, --interface <interfaces> Ethernet interface list"
" (comma-separated, no spaces)\n"
" Example:\n"
" eth1,eth2\n"
" eth1@192.168.100.10/24,eth2@172.24.200.10/16\n"
"\n"
"Optional OPTIONS\n"
" -s, --core_start <number> Core start. Default 1.\n"
" -c, --core_count <number> Core count. Default 0: all above core start\n"
" -f, --cli-file <file> NFP CLI file.\n"
" -d, --idle-detect-timeout <timeout> Time interval (ms) without "
"packets until a core is considered idle. Default %ld ms\n"
" -p, --pkt-detect-timeout <timeout> Time interval step (ms) "
"waiting for packets when core is idle. Default %ld ms\n"
" -g, --single-pkt-API Use single packet processing API\n"
" -h, --help Display help and exit.\n"
"\n", NO_PATH(progname), NO_PATH(progname),
PKT_IDLE_DETECTION_TIMEOUT / MS_IN_NS,
PKT_DETECTION_TIMEOUT / MS_IN_NS
);
}