d2624e0bc0c2788516431edb95e6321d7bcacc1f
[dpdk.git] / app / proc-info / main.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2017 Intel Corporation
3  */
4
5 #include <stdio.h>
6 #include <string.h>
7 #include <stdint.h>
8 #include <errno.h>
9 #include <stdarg.h>
10 #include <inttypes.h>
11 #include <sys/queue.h>
12 #include <stdlib.h>
13 #include <getopt.h>
14 #include <unistd.h>
15
16 #include <rte_eal.h>
17 #include <rte_common.h>
18 #include <rte_debug.h>
19 #include <rte_ethdev.h>
20 #include <rte_malloc.h>
21 #include <rte_memory.h>
22 #include <rte_memzone.h>
23 #include <rte_launch.h>
24 #include <rte_tailq.h>
25 #include <rte_per_lcore.h>
26 #include <rte_lcore.h>
27 #include <rte_log.h>
28 #include <rte_atomic.h>
29 #include <rte_branch_prediction.h>
30 #include <rte_string_fns.h>
31 #include <rte_metrics.h>
32 #include <rte_cycles.h>
33 #ifdef RTE_LIB_SECURITY
34 #include <rte_security.h>
35 #endif
36 #include <rte_cryptodev.h>
37 #include <rte_tm.h>
38 #include <rte_hexdump.h>
39
40 /* Maximum long option length for option parsing. */
41 #define MAX_LONG_OPT_SZ 64
42 #define MAX_STRING_LEN 256
43
44 #define STATS_BDR_FMT "========================================"
45 #define STATS_BDR_STR(w, s) printf("%.*s%s%.*s\n", w, \
46         STATS_BDR_FMT, s, w, STATS_BDR_FMT)
47
48 /**< mask of enabled ports */
49 static uint32_t enabled_port_mask;
50 /**< Enable stats. */
51 static uint32_t enable_stats;
52 /**< Enable xstats. */
53 static uint32_t enable_xstats;
54 /**< Enable collectd format*/
55 static uint32_t enable_collectd_format;
56 /**< FD to send collectd format messages to STDOUT*/
57 static int stdout_fd;
58 /**< Host id process is running on */
59 static char host_id[MAX_LONG_OPT_SZ];
60 /**< Enable metrics. */
61 static uint32_t enable_metrics;
62 /**< Enable stats reset. */
63 static uint32_t reset_stats;
64 /**< Enable xstats reset. */
65 static uint32_t reset_xstats;
66 /**< Enable memory info. */
67 static uint32_t mem_info;
68 /**< Enable displaying xstat name. */
69 static uint32_t enable_xstats_name;
70 static char *xstats_name;
71
72 /**< Enable xstats by ids. */
73 #define MAX_NB_XSTATS_IDS 1024
74 static uint32_t nb_xstats_ids;
75 static uint64_t xstats_ids[MAX_NB_XSTATS_IDS];
76
77 /* show border */
78 static char bdr_str[MAX_STRING_LEN];
79
80 /**< Enable show port. */
81 static uint32_t enable_shw_port;
82 /**< Enable show tm. */
83 static uint32_t enable_shw_tm;
84 /**< Enable show crypto. */
85 static uint32_t enable_shw_crypto;
86 /**< Enable show ring. */
87 static uint32_t enable_shw_ring;
88 static char *ring_name;
89 /**< Enable show mempool. */
90 static uint32_t enable_shw_mempool;
91 static char *mempool_name;
92 /**< Enable iter mempool. */
93 static uint32_t enable_iter_mempool;
94 static char *mempool_iter_name;
95
96 /**< display usage */
97 static void
98 proc_info_usage(const char *prgname)
99 {
100         printf("%s [EAL options] -- -p PORTMASK\n"
101                 "  -m to display DPDK memory zones, segments and TAILQ information\n"
102                 "  -p PORTMASK: hexadecimal bitmask of ports to retrieve stats for\n"
103                 "  --stats: to display port statistics, enabled by default\n"
104                 "  --xstats: to display extended port statistics, disabled by "
105                         "default\n"
106                 "  --metrics: to display derived metrics of the ports, disabled by "
107                         "default\n"
108                 "  --xstats-name NAME: to display single xstat id by NAME\n"
109                 "  --xstats-ids IDLIST: to display xstat values by id. "
110                         "The argument is comma-separated list of xstat ids to print out.\n"
111                 "  --stats-reset: to reset port statistics\n"
112                 "  --xstats-reset: to reset port extended statistics\n"
113                 "  --collectd-format: to print statistics to STDOUT in expected by collectd format\n"
114                 "  --host-id STRING: host id used to identify the system process is running on\n"
115                 "  --show-port: to display ports information\n"
116                 "  --show-tm: to display traffic manager information for ports\n"
117                 "  --show-crypto: to display crypto information\n"
118                 "  --show-ring[=name]: to display ring information\n"
119                 "  --show-mempool[=name]: to display mempool information\n"
120                 "  --iter-mempool=name: iterate mempool elements to display content\n",
121                 prgname);
122 }
123
124 /*
125  * Parse the portmask provided at run time.
126  */
127 static int
128 parse_portmask(const char *portmask)
129 {
130         char *end = NULL;
131         unsigned long pm;
132
133         errno = 0;
134
135         /* parse hexadecimal string */
136         pm = strtoul(portmask, &end, 16);
137         if ((portmask[0] == '\0') || (end == NULL) || (*end != '\0') ||
138                 (errno != 0)) {
139                 printf("%s ERROR parsing the port mask\n", __func__);
140                 return -1;
141         }
142
143         if (pm == 0)
144                 return -1;
145
146         return pm;
147
148 }
149
150 /*
151  * Parse ids value list into array
152  */
153 static int
154 parse_xstats_ids(char *list, uint64_t *ids, int limit) {
155         int length;
156         char *token;
157         char *ctx = NULL;
158         char *endptr;
159
160         length = 0;
161         token = strtok_r(list, ",", &ctx);
162         while (token != NULL) {
163                 ids[length] = strtoull(token, &endptr, 10);
164                 if (*endptr != '\0')
165                         return -EINVAL;
166
167                 length++;
168                 if (length >= limit)
169                         return -E2BIG;
170
171                 token = strtok_r(NULL, ",", &ctx);
172         }
173
174         return length;
175 }
176
177 static int
178 proc_info_preparse_args(int argc, char **argv)
179 {
180         char *prgname = argv[0];
181         int i;
182
183         for (i = 0; i < argc; i++) {
184                 /* Print stats or xstats to STDOUT in collectd format */
185                 if (!strncmp(argv[i], "--collectd-format", MAX_LONG_OPT_SZ)) {
186                         enable_collectd_format = 1;
187                         stdout_fd = dup(STDOUT_FILENO);
188                         close(STDOUT_FILENO);
189                 }
190                 if (!strncmp(argv[i], "--host-id", MAX_LONG_OPT_SZ)) {
191                         if ((i + 1) == argc) {
192                                 printf("Invalid host id or not specified\n");
193                                 proc_info_usage(prgname);
194                                 return -1;
195                         }
196                         strlcpy(host_id, argv[i + 1], sizeof(host_id));
197                 }
198         }
199
200         if (!strlen(host_id)) {
201                 int err = gethostname(host_id, MAX_LONG_OPT_SZ-1);
202
203                 if (err)
204                         strlcpy(host_id, "unknown", sizeof(host_id));
205         }
206
207         return 0;
208 }
209
210 /* Parse the argument given in the command line of the application */
211 static int
212 proc_info_parse_args(int argc, char **argv)
213 {
214         int opt;
215         int option_index;
216         char *prgname = argv[0];
217         static struct option long_option[] = {
218                 {"stats", 0, NULL, 0},
219                 {"stats-reset", 0, NULL, 0},
220                 {"xstats", 0, NULL, 0},
221                 {"metrics", 0, NULL, 0},
222                 {"xstats-reset", 0, NULL, 0},
223                 {"xstats-name", required_argument, NULL, 1},
224                 {"collectd-format", 0, NULL, 0},
225                 {"xstats-ids", 1, NULL, 1},
226                 {"host-id", 0, NULL, 0},
227                 {"show-port", 0, NULL, 0},
228                 {"show-tm", 0, NULL, 0},
229                 {"show-crypto", 0, NULL, 0},
230                 {"show-ring", optional_argument, NULL, 0},
231                 {"show-mempool", optional_argument, NULL, 0},
232                 {"iter-mempool", required_argument, NULL, 0},
233                 {NULL, 0, 0, 0}
234         };
235
236         if (argc == 1)
237                 proc_info_usage(prgname);
238
239         /* Parse command line */
240         while ((opt = getopt_long(argc, argv, "p:m",
241                         long_option, &option_index)) != EOF) {
242                 switch (opt) {
243                 /* portmask */
244                 case 'p':
245                         enabled_port_mask = parse_portmask(optarg);
246                         if (enabled_port_mask == 0) {
247                                 printf("invalid portmask\n");
248                                 proc_info_usage(prgname);
249                                 return -1;
250                         }
251                         break;
252                 case 'm':
253                         mem_info = 1;
254                         break;
255                 case 0:
256                         /* Print stats */
257                         if (!strncmp(long_option[option_index].name, "stats",
258                                         MAX_LONG_OPT_SZ))
259                                 enable_stats = 1;
260                         /* Print xstats */
261                         else if (!strncmp(long_option[option_index].name, "xstats",
262                                         MAX_LONG_OPT_SZ))
263                                 enable_xstats = 1;
264                         else if (!strncmp(long_option[option_index].name,
265                                         "metrics",
266                                         MAX_LONG_OPT_SZ))
267                                 enable_metrics = 1;
268                         /* Reset stats */
269                         if (!strncmp(long_option[option_index].name, "stats-reset",
270                                         MAX_LONG_OPT_SZ))
271                                 reset_stats = 1;
272                         /* Reset xstats */
273                         else if (!strncmp(long_option[option_index].name, "xstats-reset",
274                                         MAX_LONG_OPT_SZ))
275                                 reset_xstats = 1;
276                         else if (!strncmp(long_option[option_index].name,
277                                         "show-port", MAX_LONG_OPT_SZ))
278                                 enable_shw_port = 1;
279                         else if (!strncmp(long_option[option_index].name,
280                                         "show-tm", MAX_LONG_OPT_SZ))
281                                 enable_shw_tm = 1;
282                         else if (!strncmp(long_option[option_index].name,
283                                         "show-crypto", MAX_LONG_OPT_SZ))
284                                 enable_shw_crypto = 1;
285                         else if (!strncmp(long_option[option_index].name,
286                                         "show-ring", MAX_LONG_OPT_SZ)) {
287                                 enable_shw_ring = 1;
288                                 ring_name = optarg;
289                         } else if (!strncmp(long_option[option_index].name,
290                                         "show-mempool", MAX_LONG_OPT_SZ)) {
291                                 enable_shw_mempool = 1;
292                                 mempool_name = optarg;
293                         } else if (!strncmp(long_option[option_index].name,
294                                         "iter-mempool", MAX_LONG_OPT_SZ)) {
295                                 enable_iter_mempool = 1;
296                                 mempool_iter_name = optarg;
297                         }
298                         break;
299                 case 1:
300                         /* Print xstat single value given by name*/
301                         if (!strncmp(long_option[option_index].name,
302                                         "xstats-name", MAX_LONG_OPT_SZ)) {
303                                 enable_xstats_name = 1;
304                                 xstats_name = optarg;
305                                 printf("name:%s:%s\n",
306                                                 long_option[option_index].name,
307                                                 optarg);
308                         } else if (!strncmp(long_option[option_index].name,
309                                         "xstats-ids",
310                                         MAX_LONG_OPT_SZ))       {
311                                 nb_xstats_ids = parse_xstats_ids(optarg,
312                                                 xstats_ids, MAX_NB_XSTATS_IDS);
313
314                                 if (nb_xstats_ids <= 0) {
315                                         printf("xstats-id list parse error.\n");
316                                         return -1;
317                                 }
318
319                         }
320                         break;
321                 default:
322                         proc_info_usage(prgname);
323                         return -1;
324                 }
325         }
326         return 0;
327 }
328
329 static void
330 meminfo_display(void)
331 {
332         printf("----------- MEMORY_SEGMENTS -----------\n");
333         rte_dump_physmem_layout(stdout);
334         printf("--------- END_MEMORY_SEGMENTS ---------\n");
335
336         printf("------------ MEMORY_ZONES -------------\n");
337         rte_memzone_dump(stdout);
338         printf("---------- END_MEMORY_ZONES -----------\n");
339
340         printf("------------- TAIL_QUEUES -------------\n");
341         rte_dump_tailq(stdout);
342         printf("---------- END_TAIL_QUEUES ------------\n");
343 }
344
345 static void
346 nic_stats_display(uint16_t port_id)
347 {
348         struct rte_eth_stats stats;
349         uint8_t i;
350
351         static const char *nic_stats_border = "########################";
352
353         rte_eth_stats_get(port_id, &stats);
354         printf("\n  %s NIC statistics for port %-2d %s\n",
355                    nic_stats_border, port_id, nic_stats_border);
356
357         printf("  RX-packets: %-10"PRIu64"  RX-errors:  %-10"PRIu64
358                "  RX-bytes:  %-10"PRIu64"\n", stats.ipackets, stats.ierrors,
359                stats.ibytes);
360         printf("  RX-nombuf:  %-10"PRIu64"\n", stats.rx_nombuf);
361         printf("  TX-packets: %-10"PRIu64"  TX-errors:  %-10"PRIu64
362                "  TX-bytes:  %-10"PRIu64"\n", stats.opackets, stats.oerrors,
363                stats.obytes);
364
365         printf("\n");
366         for (i = 0; i < RTE_ETHDEV_QUEUE_STAT_CNTRS; i++) {
367                 printf("  Stats reg %2d RX-packets: %-10"PRIu64
368                        "  RX-errors: %-10"PRIu64
369                        "  RX-bytes: %-10"PRIu64"\n",
370                        i, stats.q_ipackets[i], stats.q_errors[i], stats.q_ibytes[i]);
371         }
372
373         printf("\n");
374         for (i = 0; i < RTE_ETHDEV_QUEUE_STAT_CNTRS; i++) {
375                 printf("  Stats reg %2d TX-packets: %-10"PRIu64
376                        "  TX-bytes: %-10"PRIu64"\n",
377                        i, stats.q_opackets[i], stats.q_obytes[i]);
378         }
379
380         printf("  %s############################%s\n",
381                    nic_stats_border, nic_stats_border);
382 }
383
384 static void
385 nic_stats_clear(uint16_t port_id)
386 {
387         printf("\n Clearing NIC stats for port %d\n", port_id);
388         rte_eth_stats_reset(port_id);
389         printf("\n  NIC statistics for port %d cleared\n", port_id);
390 }
391
392 static void collectd_resolve_cnt_type(char *cnt_type, size_t cnt_type_len,
393                                       const char *cnt_name) {
394         char *type_end = strrchr(cnt_name, '_');
395
396         if ((type_end != NULL) &&
397             (strncmp(cnt_name, "rx_", strlen("rx_")) == 0)) {
398                 if (strncmp(type_end, "_errors", strlen("_errors")) == 0)
399                         strlcpy(cnt_type, "if_rx_errors", cnt_type_len);
400                 else if (strncmp(type_end, "_dropped", strlen("_dropped")) == 0)
401                         strlcpy(cnt_type, "if_rx_dropped", cnt_type_len);
402                 else if (strncmp(type_end, "_bytes", strlen("_bytes")) == 0)
403                         strlcpy(cnt_type, "if_rx_octets", cnt_type_len);
404                 else if (strncmp(type_end, "_packets", strlen("_packets")) == 0)
405                         strlcpy(cnt_type, "if_rx_packets", cnt_type_len);
406                 else if (strncmp(type_end, "_placement",
407                                  strlen("_placement")) == 0)
408                         strlcpy(cnt_type, "if_rx_errors", cnt_type_len);
409                 else if (strncmp(type_end, "_buff", strlen("_buff")) == 0)
410                         strlcpy(cnt_type, "if_rx_errors", cnt_type_len);
411                 else
412                         /* Does not fit obvious type: use a more generic one */
413                         strlcpy(cnt_type, "derive", cnt_type_len);
414         } else if ((type_end != NULL) &&
415                 (strncmp(cnt_name, "tx_", strlen("tx_"))) == 0) {
416                 if (strncmp(type_end, "_errors", strlen("_errors")) == 0)
417                         strlcpy(cnt_type, "if_tx_errors", cnt_type_len);
418                 else if (strncmp(type_end, "_dropped", strlen("_dropped")) == 0)
419                         strlcpy(cnt_type, "if_tx_dropped", cnt_type_len);
420                 else if (strncmp(type_end, "_bytes", strlen("_bytes")) == 0)
421                         strlcpy(cnt_type, "if_tx_octets", cnt_type_len);
422                 else if (strncmp(type_end, "_packets", strlen("_packets")) == 0)
423                         strlcpy(cnt_type, "if_tx_packets", cnt_type_len);
424                 else
425                         /* Does not fit obvious type: use a more generic one */
426                         strlcpy(cnt_type, "derive", cnt_type_len);
427         } else if ((type_end != NULL) &&
428                    (strncmp(cnt_name, "flow_", strlen("flow_"))) == 0) {
429                 if (strncmp(type_end, "_filters", strlen("_filters")) == 0)
430                         strlcpy(cnt_type, "operations", cnt_type_len);
431                 else if (strncmp(type_end, "_errors", strlen("_errors")) == 0)
432                         strlcpy(cnt_type, "errors", cnt_type_len);
433                 else if (strncmp(type_end, "_filters", strlen("_filters")) == 0)
434                         strlcpy(cnt_type, "filter_result", cnt_type_len);
435         } else if ((type_end != NULL) &&
436                    (strncmp(cnt_name, "mac_", strlen("mac_"))) == 0) {
437                 if (strncmp(type_end, "_errors", strlen("_errors")) == 0)
438                         strlcpy(cnt_type, "errors", cnt_type_len);
439         } else {
440                 /* Does not fit obvious type, or strrchr error: */
441                 /* use a more generic type */
442                 strlcpy(cnt_type, "derive", cnt_type_len);
443         }
444 }
445
446 static void
447 nic_xstats_by_name_display(uint16_t port_id, char *name)
448 {
449         uint64_t id;
450
451         printf("###### NIC statistics for port %-2d, statistic name '%s':\n",
452                            port_id, name);
453
454         if (rte_eth_xstats_get_id_by_name(port_id, name, &id) == 0)
455                 printf("%s: %"PRIu64"\n", name, id);
456         else
457                 printf("Statistic not found...\n");
458
459 }
460
461 static void
462 nic_xstats_by_ids_display(uint16_t port_id, uint64_t *ids, int len)
463 {
464         struct rte_eth_xstat_name *xstats_names;
465         uint64_t *values;
466         int ret, i;
467         static const char *nic_stats_border = "########################";
468
469         values = malloc(sizeof(*values) * len);
470         if (values == NULL) {
471                 printf("Cannot allocate memory for xstats\n");
472                 return;
473         }
474
475         xstats_names = malloc(sizeof(struct rte_eth_xstat_name) * len);
476         if (xstats_names == NULL) {
477                 printf("Cannot allocate memory for xstat names\n");
478                 free(values);
479                 return;
480         }
481
482         if (len != rte_eth_xstats_get_names_by_id(
483                         port_id, xstats_names, len, ids)) {
484                 printf("Cannot get xstat names\n");
485                 goto err;
486         }
487
488         printf("###### NIC extended statistics for port %-2d #########\n",
489                            port_id);
490         printf("%s############################\n", nic_stats_border);
491         ret = rte_eth_xstats_get_by_id(port_id, ids, values, len);
492         if (ret < 0 || ret > len) {
493                 printf("Cannot get xstats\n");
494                 goto err;
495         }
496
497         for (i = 0; i < len; i++)
498                 printf("%s: %"PRIu64"\n",
499                         xstats_names[i].name,
500                         values[i]);
501
502         printf("%s############################\n", nic_stats_border);
503 err:
504         free(values);
505         free(xstats_names);
506 }
507
508 static void
509 nic_xstats_display(uint16_t port_id)
510 {
511         struct rte_eth_xstat_name *xstats_names;
512         uint64_t *values;
513         int len, ret, i;
514         static const char *nic_stats_border = "########################";
515
516         len = rte_eth_xstats_get_names_by_id(port_id, NULL, 0, NULL);
517         if (len < 0) {
518                 printf("Cannot get xstats count\n");
519                 return;
520         }
521         values = malloc(sizeof(*values) * len);
522         if (values == NULL) {
523                 printf("Cannot allocate memory for xstats\n");
524                 return;
525         }
526
527         xstats_names = malloc(sizeof(struct rte_eth_xstat_name) * len);
528         if (xstats_names == NULL) {
529                 printf("Cannot allocate memory for xstat names\n");
530                 free(values);
531                 return;
532         }
533         if (len != rte_eth_xstats_get_names_by_id(
534                         port_id, xstats_names, len, NULL)) {
535                 printf("Cannot get xstat names\n");
536                 goto err;
537         }
538
539         printf("###### NIC extended statistics for port %-2d #########\n",
540                            port_id);
541         printf("%s############################\n",
542                            nic_stats_border);
543         ret = rte_eth_xstats_get_by_id(port_id, NULL, values, len);
544         if (ret < 0 || ret > len) {
545                 printf("Cannot get xstats\n");
546                 goto err;
547         }
548
549         for (i = 0; i < len; i++) {
550                 if (enable_collectd_format) {
551                         char counter_type[MAX_STRING_LEN];
552                         char buf[MAX_STRING_LEN];
553                         size_t n;
554
555                         collectd_resolve_cnt_type(counter_type,
556                                                   sizeof(counter_type),
557                                                   xstats_names[i].name);
558                         n = snprintf(buf, MAX_STRING_LEN,
559                                 "PUTVAL %s/dpdkstat-port.%u/%s-%s N:%"
560                                 PRIu64"\n", host_id, port_id, counter_type,
561                                 xstats_names[i].name, values[i]);
562                         if (n > sizeof(buf) - 1)
563                                 n = sizeof(buf) - 1;
564                         ret = write(stdout_fd, buf, n);
565                         if (ret < 0)
566                                 goto err;
567                 } else {
568                         printf("%s: %"PRIu64"\n", xstats_names[i].name,
569                                         values[i]);
570                 }
571         }
572
573         printf("%s############################\n",
574                            nic_stats_border);
575 err:
576         free(values);
577         free(xstats_names);
578 }
579
580 static void
581 nic_xstats_clear(uint16_t port_id)
582 {
583         int ret;
584
585         printf("\n Clearing NIC xstats for port %d\n", port_id);
586         ret = rte_eth_xstats_reset(port_id);
587         if (ret != 0) {
588                 printf("\n Error clearing xstats for port %d: %s\n", port_id,
589                        strerror(-ret));
590                 return;
591         }
592
593         printf("\n  NIC extended statistics for port %d cleared\n", port_id);
594 }
595
596 static void
597 metrics_display(int port_id)
598 {
599         struct rte_metric_value *metrics;
600         struct rte_metric_name *names;
601         int len, ret;
602         static const char *nic_stats_border = "########################";
603
604         len = rte_metrics_get_names(NULL, 0);
605         if (len < 0) {
606                 printf("Cannot get metrics count\n");
607                 return;
608         }
609         if (len == 0) {
610                 printf("No metrics to display (none have been registered)\n");
611                 return;
612         }
613
614         metrics = rte_malloc("proc_info_metrics",
615                 sizeof(struct rte_metric_value) * len, 0);
616         if (metrics == NULL) {
617                 printf("Cannot allocate memory for metrics\n");
618                 return;
619         }
620
621         names =  rte_malloc(NULL, sizeof(struct rte_metric_name) * len, 0);
622         if (names == NULL) {
623                 printf("Cannot allocate memory for metrcis names\n");
624                 rte_free(metrics);
625                 return;
626         }
627
628         if (len != rte_metrics_get_names(names, len)) {
629                 printf("Cannot get metrics names\n");
630                 rte_free(metrics);
631                 rte_free(names);
632                 return;
633         }
634
635         if (port_id == RTE_METRICS_GLOBAL)
636                 printf("###### Non port specific metrics  #########\n");
637         else
638                 printf("###### metrics for port %-2d #########\n", port_id);
639         printf("%s############################\n", nic_stats_border);
640         ret = rte_metrics_get_values(port_id, metrics, len);
641         if (ret < 0 || ret > len) {
642                 printf("Cannot get metrics values\n");
643                 rte_free(metrics);
644                 rte_free(names);
645                 return;
646         }
647
648         int i;
649         for (i = 0; i < len; i++)
650                 printf("%s: %"PRIu64"\n", names[i].name, metrics[i].value);
651
652         printf("%s############################\n", nic_stats_border);
653         rte_free(metrics);
654         rte_free(names);
655 }
656
657 static void
658 show_security_context(uint16_t portid)
659 {
660         void *p_ctx = rte_eth_dev_get_sec_ctx(portid);
661         const struct rte_security_capability *s_cap;
662
663         if (p_ctx == NULL)
664                 return;
665
666         printf("  - crypto context\n");
667         printf("\t  -- security context - %p\n", p_ctx);
668         printf("\t  -- size %u\n",
669                rte_security_session_get_size(p_ctx));
670
671         s_cap = rte_security_capabilities_get(p_ctx);
672         if (s_cap) {
673                 printf("\t  -- action (0x%x), protocol (0x%x),"
674                        " offload flags (0x%x)\n",
675                        s_cap->action,
676                        s_cap->protocol,
677                        s_cap->ol_flags);
678                 printf("\t  -- capabilities - oper type %x\n",
679                        s_cap->crypto_capabilities->op);
680         }
681 }
682
683 static void
684 show_offloads(uint64_t offloads,
685               const char *(show_offload)(uint64_t))
686 {
687         printf(" offloads :");
688         while (offloads != 0) {
689                 uint64_t offload_flag = 1ULL << __builtin_ctzll(offloads);
690                 printf(" %s", show_offload(offload_flag));
691                 offloads &= ~offload_flag;
692         }
693 }
694
695 static void
696 show_port(void)
697 {
698         uint16_t i = 0;
699         int ret = 0, j, k;
700
701         snprintf(bdr_str, MAX_STRING_LEN, " show - Port PMD ");
702         STATS_BDR_STR(10, bdr_str);
703
704         RTE_ETH_FOREACH_DEV(i) {
705                 uint16_t mtu = 0;
706                 struct rte_eth_link link;
707                 struct rte_eth_dev_info dev_info;
708                 struct rte_eth_rss_conf rss_conf;
709                 char link_status_text[RTE_ETH_LINK_MAX_STR_LEN];
710                 struct rte_eth_fc_conf fc_conf;
711                 struct rte_ether_addr mac;
712
713                 memset(&rss_conf, 0, sizeof(rss_conf));
714
715                 snprintf(bdr_str, MAX_STRING_LEN, " Port %u ", i);
716                 STATS_BDR_STR(5, bdr_str);
717                 printf("  - generic config\n");
718
719                 ret = rte_eth_dev_info_get(i, &dev_info);
720                 if (ret != 0) {
721                         printf("Error during getting device info: %s\n",
722                                 strerror(-ret));
723                         return;
724                 }
725
726                 printf("\t  -- driver %s device %s socket %d\n",
727                        dev_info.driver_name, dev_info.device->name,
728                        rte_eth_dev_socket_id(i));
729
730                 ret = rte_eth_link_get(i, &link);
731                 if (ret < 0) {
732                         printf("Link get failed (port %u): %s\n",
733                                i, rte_strerror(-ret));
734                 } else {
735                         rte_eth_link_to_str(link_status_text,
736                                         sizeof(link_status_text),
737                                         &link);
738                         printf("\t%s\n", link_status_text);
739                 }
740
741                 ret = rte_eth_dev_flow_ctrl_get(i, &fc_conf);
742                 if (ret == 0 && fc_conf.mode != RTE_FC_NONE)  {
743                         printf("\t  -- flow control mode %s%s high %u low %u pause %u%s%s\n",
744                                fc_conf.mode == RTE_FC_RX_PAUSE ? "rx " :
745                                fc_conf.mode == RTE_FC_TX_PAUSE ? "tx " :
746                                fc_conf.mode == RTE_FC_FULL ? "full" : "???",
747                                fc_conf.autoneg ? " auto" : "",
748                                fc_conf.high_water,
749                                fc_conf.low_water,
750                                fc_conf.pause_time,
751                                fc_conf.send_xon ? " xon" : "",
752                                fc_conf.mac_ctrl_frame_fwd ? " mac_ctrl" : "");
753                 }
754
755                 ret = rte_eth_macaddr_get(i, &mac);
756                 if (ret == 0) {
757                         char ebuf[RTE_ETHER_ADDR_FMT_SIZE];
758
759                         rte_ether_format_addr(ebuf, sizeof(ebuf), &mac);
760                         printf("\t  -- mac %s\n", ebuf);
761                 }
762
763                 ret = rte_eth_promiscuous_get(i);
764                 if (ret >= 0)
765                         printf("\t  -- promiscuous mode %s\n",
766                                ret > 0 ? "enabled" : "disabled");
767
768                 ret = rte_eth_allmulticast_get(i);
769                 if (ret >= 0)
770                         printf("\t  -- all multicast mode %s\n",
771                                ret > 0 ? "enabled" : "disabled");
772
773                 ret = rte_eth_dev_get_mtu(i, &mtu);
774                 if (ret == 0)
775                         printf("\t  -- mtu (%d)\n", mtu);
776
777                 for (j = 0; j < dev_info.nb_rx_queues; j++) {
778                         struct rte_eth_rxq_info queue_info;
779                         int count;
780
781                         ret = rte_eth_rx_queue_info_get(i, j, &queue_info);
782                         if (ret != 0)
783                                 break;
784
785                         if (j == 0)
786                                 printf("  - rx queue\n");
787
788                         printf("\t  -- %d descriptors ", j);
789                         count = rte_eth_rx_queue_count(i, j);
790                         if (count >= 0)
791                                 printf("%d/", count);
792                         printf("%u", queue_info.nb_desc);
793
794                         if (queue_info.scattered_rx)
795                                 printf(" scattered");
796
797                         if (queue_info.conf.rx_drop_en)
798                                 printf(" drop_en");
799
800                         if (queue_info.conf.rx_deferred_start)
801                                 printf(" deferred_start");
802
803                         if (queue_info.rx_buf_size != 0)
804                                 printf(" rx buffer size %u",
805                                        queue_info.rx_buf_size);
806
807                         printf(" mempool %s socket %d",
808                                queue_info.mp->name,
809                                queue_info.mp->socket_id);
810
811                         if (queue_info.conf.offloads != 0)
812                                 show_offloads(queue_info.conf.offloads, rte_eth_dev_rx_offload_name);
813
814                         printf("\n");
815                 }
816
817                 for (j = 0; j < dev_info.nb_tx_queues; j++) {
818                         struct rte_eth_txq_info queue_info;
819
820                         ret = rte_eth_tx_queue_info_get(i, j, &queue_info);
821                         if (ret != 0)
822                                 break;
823
824                         if (j == 0)
825                                 printf("  - tx queue\n");
826
827                         printf("\t  -- %d descriptors %d",
828                                j, queue_info.nb_desc);
829
830                         printf(" thresh %u/%u",
831                                queue_info.conf.tx_rs_thresh,
832                                queue_info.conf.tx_free_thresh);
833
834                         if (queue_info.conf.tx_deferred_start)
835                                 printf(" deferred_start");
836
837                         if (queue_info.conf.offloads != 0)
838                                 show_offloads(queue_info.conf.offloads, rte_eth_dev_tx_offload_name);
839                         printf("\n");
840                 }
841
842                 ret = rte_eth_dev_rss_hash_conf_get(i, &rss_conf);
843                 if (ret == 0) {
844                         if (rss_conf.rss_key) {
845                                 printf("  - RSS\n");
846                                 printf("\t  -- RSS len %u key (hex):",
847                                                 rss_conf.rss_key_len);
848                                 for (k = 0; k < rss_conf.rss_key_len; k++)
849                                         printf(" %x", rss_conf.rss_key[k]);
850                                 printf("\t  -- hf 0x%"PRIx64"\n",
851                                                 rss_conf.rss_hf);
852                         }
853                 }
854
855 #ifdef RTE_LIB_SECURITY
856                 show_security_context(i);
857 #endif
858         }
859 }
860
861 static void
862 display_nodecap_info(int is_leaf, struct rte_tm_node_capabilities *cap)
863 {
864         if (cap == NULL)
865                 return;
866
867         if (!is_leaf) {
868                 printf("\t  -- nonleaf sched max:\n"
869                         "\t\t  + children (%u)\n"
870                         "\t\t  + sp priorities (%u)\n"
871                         "\t\t  + wfq children per group (%u)\n"
872                         "\t\t  + wfq groups (%u)\n"
873                         "\t\t  + wfq weight (%u)\n",
874                         cap->nonleaf.sched_n_children_max,
875                         cap->nonleaf.sched_sp_n_priorities_max,
876                         cap->nonleaf.sched_wfq_n_children_per_group_max,
877                         cap->nonleaf.sched_wfq_n_groups_max,
878                         cap->nonleaf.sched_wfq_weight_max);
879         } else {
880                 printf("\t  -- leaf cman support:\n"
881                         "\t\t  + wred pkt mode (%d)\n"
882                         "\t\t  + wred byte mode (%d)\n"
883                         "\t\t  + head drop (%d)\n"
884                         "\t\t  + wred context private (%d)\n"
885                         "\t\t  + wred context shared (%u)\n",
886                         cap->leaf.cman_wred_packet_mode_supported,
887                         cap->leaf.cman_wred_byte_mode_supported,
888                         cap->leaf.cman_head_drop_supported,
889                         cap->leaf.cman_wred_context_private_supported,
890                         cap->leaf.cman_wred_context_shared_n_max);
891         }
892 }
893
894 static void
895 display_levelcap_info(int is_leaf, struct rte_tm_level_capabilities *cap)
896 {
897         if (cap == NULL)
898                 return;
899
900         if (!is_leaf) {
901                 printf("\t  -- shaper private: (%d) dual rate (%d)\n",
902                         cap->nonleaf.shaper_private_supported,
903                         cap->nonleaf.shaper_private_dual_rate_supported);
904                 printf("\t  -- shaper share: (%u)\n",
905                         cap->nonleaf.shaper_shared_n_max);
906                 printf("\t  -- non leaf sched MAX:\n"
907                         "\t\t  + children (%u)\n"
908                         "\t\t  + sp (%u)\n"
909                         "\t\t  + wfq children per group (%u)\n"
910                         "\t\t  + wfq groups (%u)\n"
911                         "\t\t  + wfq weight (%u)\n",
912                         cap->nonleaf.sched_n_children_max,
913                         cap->nonleaf.sched_sp_n_priorities_max,
914                         cap->nonleaf.sched_wfq_n_children_per_group_max,
915                         cap->nonleaf.sched_wfq_n_groups_max,
916                         cap->nonleaf.sched_wfq_weight_max);
917         } else {
918                 printf("\t  -- shaper private: (%d) dual rate (%d)\n",
919                         cap->leaf.shaper_private_supported,
920                         cap->leaf.shaper_private_dual_rate_supported);
921                 printf("\t  -- shaper share: (%u)\n",
922                         cap->leaf.shaper_shared_n_max);
923                 printf("  -- leaf cman support:\n"
924                         "\t\t  + wred pkt mode (%d)\n"
925                         "\t\t  + wred byte mode (%d)\n"
926                         "\t\t  + head drop (%d)\n"
927                         "\t\t  + wred context private (%d)\n"
928                         "\t\t  + wred context shared (%u)\n",
929                         cap->leaf.cman_wred_packet_mode_supported,
930                         cap->leaf.cman_wred_byte_mode_supported,
931                         cap->leaf.cman_head_drop_supported,
932                         cap->leaf.cman_wred_context_private_supported,
933                         cap->leaf.cman_wred_context_shared_n_max);
934         }
935 }
936
937 static void
938 show_tm(void)
939 {
940         int ret = 0, check_for_leaf = 0, is_leaf = 0;
941         unsigned int j, k;
942         uint16_t i = 0;
943
944         snprintf(bdr_str, MAX_STRING_LEN, " show - TM PMD ");
945         STATS_BDR_STR(10, bdr_str);
946
947         RTE_ETH_FOREACH_DEV(i) {
948                 struct rte_eth_dev_info dev_info;
949                 struct rte_tm_capabilities cap;
950                 struct rte_tm_error error;
951                 struct rte_tm_node_capabilities capnode;
952                 struct rte_tm_level_capabilities caplevel;
953                 uint32_t n_leaf_nodes = 0;
954
955                 memset(&cap, 0, sizeof(cap));
956                 memset(&error, 0, sizeof(error));
957
958                 ret = rte_eth_dev_info_get(i, &dev_info);
959                 if (ret != 0) {
960                         printf("Error during getting device (port %u) info: %s\n",
961                                 i, strerror(-ret));
962                         return;
963                 }
964
965                 printf("  - Generic for port (%u)\n"
966                         "\t  -- driver name %s\n"
967                         "\t  -- max vf (%u)\n"
968                         "\t  -- max tx queues (%u)\n"
969                         "\t  -- number of tx queues (%u)\n",
970                         i,
971                         dev_info.driver_name,
972                         dev_info.max_vfs,
973                         dev_info.max_tx_queues,
974                         dev_info.nb_tx_queues);
975
976                 ret = rte_tm_capabilities_get(i, &cap, &error);
977                 if (ret)
978                         continue;
979
980                 printf("  - MAX: nodes (%u) levels (%u) children (%u)\n",
981                         cap.n_nodes_max,
982                         cap.n_levels_max,
983                         cap.sched_n_children_max);
984
985                 printf("  - identical nodes: non leaf (%d) leaf (%d)\n",
986                         cap.non_leaf_nodes_identical,
987                         cap.leaf_nodes_identical);
988
989                 printf("  - Shaper MAX:\n"
990                         "\t  -- total (%u)\n"
991                         "\t  -- private (%u) private dual (%d)\n"
992                         "\t  -- shared (%u) shared dual (%u)\n",
993                         cap.shaper_n_max,
994                         cap.shaper_private_n_max,
995                         cap.shaper_private_dual_rate_n_max,
996                         cap.shaper_shared_n_max,
997                         cap.shaper_shared_dual_rate_n_max);
998
999                 printf("  - mark support:\n");
1000                 printf("\t  -- vlan dei: GREEN (%d) YELLOW (%d) RED (%d)\n",
1001                         cap.mark_vlan_dei_supported[RTE_COLOR_GREEN],
1002                         cap.mark_vlan_dei_supported[RTE_COLOR_YELLOW],
1003                         cap.mark_vlan_dei_supported[RTE_COLOR_RED]);
1004                 printf("\t  -- ip ecn tcp: GREEN (%d) YELLOW (%d) RED (%d)\n",
1005                         cap.mark_ip_ecn_tcp_supported[RTE_COLOR_GREEN],
1006                         cap.mark_ip_ecn_tcp_supported[RTE_COLOR_YELLOW],
1007                         cap.mark_ip_ecn_tcp_supported[RTE_COLOR_RED]);
1008                 printf("\t  -- ip ecn sctp: GREEN (%d) YELLOW (%d) RED (%d)\n",
1009                         cap.mark_ip_ecn_sctp_supported[RTE_COLOR_GREEN],
1010                         cap.mark_ip_ecn_sctp_supported[RTE_COLOR_YELLOW],
1011                         cap.mark_ip_ecn_sctp_supported[RTE_COLOR_RED]);
1012                 printf("\t  -- ip dscp: GREEN (%d) YELLOW (%d) RED (%d)\n",
1013                         cap.mark_ip_dscp_supported[RTE_COLOR_GREEN],
1014                         cap.mark_ip_dscp_supported[RTE_COLOR_YELLOW],
1015                         cap.mark_ip_dscp_supported[RTE_COLOR_RED]);
1016
1017                 printf("  - mask stats (0x%"PRIx64")"
1018                         " dynamic update (0x%"PRIx64")\n",
1019                         cap.stats_mask,
1020                         cap.dynamic_update_mask);
1021
1022                 printf("  - sched MAX:\n"
1023                         "\t  -- total (%u)\n"
1024                         "\t  -- sp levels (%u)\n"
1025                         "\t  -- wfq children per group (%u)\n"
1026                         "\t  -- wfq groups (%u)\n"
1027                         "\t  -- wfq weight (%u)\n",
1028                         cap.sched_sp_n_priorities_max,
1029                         cap.sched_sp_n_priorities_max,
1030                         cap.sched_wfq_n_children_per_group_max,
1031                         cap.sched_wfq_n_groups_max,
1032                         cap.sched_wfq_weight_max);
1033
1034                 printf("  - CMAN support:\n"
1035                         "\t  -- WRED mode: pkt (%d) byte (%d)\n"
1036                         "\t  -- head drop (%d)\n",
1037                         cap.cman_wred_packet_mode_supported,
1038                         cap.cman_wred_byte_mode_supported,
1039                         cap.cman_head_drop_supported);
1040                 printf("\t  -- MAX WRED CONTEXT:"
1041                         " total (%u) private (%u) shared (%u)\n",
1042                         cap.cman_wred_context_n_max,
1043                         cap.cman_wred_context_private_n_max,
1044                         cap.cman_wred_context_shared_n_max);
1045
1046                 for (j = 0; j < cap.n_nodes_max; j++) {
1047                         memset(&capnode, 0, sizeof(capnode));
1048                         ret = rte_tm_node_capabilities_get(i, j,
1049                                         &capnode, &error);
1050                         if (ret)
1051                                 continue;
1052
1053                         check_for_leaf = 1;
1054
1055                         printf("  NODE %u\n", j);
1056                         printf("\t  - shaper private: (%d) dual rate (%d)\n",
1057                                 capnode.shaper_private_supported,
1058                                 capnode.shaper_private_dual_rate_supported);
1059                         printf("\t  - shaper shared max: (%u)\n",
1060                                 capnode.shaper_shared_n_max);
1061                         printf("\t  - stats mask %"PRIx64"\n",
1062                                 capnode.stats_mask);
1063
1064                         ret = rte_tm_node_type_get(i, j, &is_leaf, &error);
1065                         if (ret)
1066                                 continue;
1067
1068                         display_nodecap_info(is_leaf, &capnode);
1069                 }
1070
1071                 for (j = 0; j < cap.n_levels_max; j++) {
1072                         memset(&caplevel, 0, sizeof(caplevel));
1073                         ret = rte_tm_level_capabilities_get(i, j,
1074                                         &caplevel, &error);
1075                         if (ret)
1076                                 continue;
1077
1078                         printf("  - Level %u\n", j);
1079                         printf("\t  -- node MAX: %u non leaf %u leaf %u\n",
1080                                 caplevel.n_nodes_max,
1081                                 caplevel.n_nodes_nonleaf_max,
1082                                 caplevel.n_nodes_leaf_max);
1083                         printf("\t  -- indetical: non leaf %u leaf %u\n",
1084                                 caplevel.non_leaf_nodes_identical,
1085                                 caplevel.leaf_nodes_identical);
1086
1087                         for (k = 0; k < caplevel.n_nodes_max; k++) {
1088                                 ret = rte_tm_node_type_get(i, k,
1089                                         &is_leaf, &error);
1090                                 if (ret)
1091                                         continue;
1092
1093                                 display_levelcap_info(is_leaf, &caplevel);
1094                         }
1095                 }
1096
1097                 if (check_for_leaf) {
1098                         ret = rte_tm_get_number_of_leaf_nodes(i,
1099                                         &n_leaf_nodes, &error);
1100                         if (ret == 0)
1101                                 printf("  - leaf nodes (%u)\n", n_leaf_nodes);
1102                 }
1103
1104                 for (j = 0; j < n_leaf_nodes; j++) {
1105                         struct rte_tm_node_stats stats;
1106                         memset(&stats, 0, sizeof(stats));
1107
1108                         ret = rte_tm_node_stats_read(i, j,
1109                                         &stats, &cap.stats_mask, 0, &error);
1110                         if (ret)
1111                                 continue;
1112
1113                         printf("  - STATS for node (%u)\n", j);
1114                         printf("  -- pkts (%"PRIu64") bytes (%"PRIu64")\n",
1115                                 stats.n_pkts, stats.n_bytes);
1116
1117                         ret = rte_tm_node_type_get(i, j, &is_leaf, &error);
1118                         if (ret || (!is_leaf))
1119                                 continue;
1120
1121                         printf("  -- leaf queued:"
1122                                 " pkts (%"PRIu64") bytes (%"PRIu64")\n",
1123                                 stats.leaf.n_pkts_queued,
1124                                 stats.leaf.n_bytes_queued);
1125                         printf("  - dropped:\n"
1126                                 "\t  -- GREEN:"
1127                                 " pkts (%"PRIu64") bytes (%"PRIu64")\n"
1128                                 "\t  -- YELLOW:"
1129                                 " pkts (%"PRIu64") bytes (%"PRIu64")\n"
1130                                 "\t  -- RED:"
1131                                 " pkts (%"PRIu64") bytes (%"PRIu64")\n",
1132                                 stats.leaf.n_pkts_dropped[RTE_COLOR_GREEN],
1133                                 stats.leaf.n_bytes_dropped[RTE_COLOR_GREEN],
1134                                 stats.leaf.n_pkts_dropped[RTE_COLOR_YELLOW],
1135                                 stats.leaf.n_bytes_dropped[RTE_COLOR_YELLOW],
1136                                 stats.leaf.n_pkts_dropped[RTE_COLOR_RED],
1137                                 stats.leaf.n_bytes_dropped[RTE_COLOR_RED]);
1138                 }
1139         }
1140 }
1141
1142 static void
1143 display_crypto_feature_info(uint64_t x)
1144 {
1145         if (x == 0)
1146                 return;
1147
1148         printf("\t  -- feature flags\n");
1149         printf("\t\t  + symmetric (%c), asymmetric (%c)\n"
1150                 "\t\t  + symmetric operation chaining (%c)\n",
1151                 (x & RTE_CRYPTODEV_FF_SYMMETRIC_CRYPTO) ? 'y' : 'n',
1152                 (x & RTE_CRYPTODEV_FF_ASYMMETRIC_CRYPTO) ? 'y' : 'n',
1153                 (x & RTE_CRYPTODEV_FF_SYM_OPERATION_CHAINING) ? 'y' : 'n');
1154         printf("\t\t  + CPU: SSE (%c), AVX (%c), AVX2 (%c), AVX512 (%c)\n",
1155                 (x & RTE_CRYPTODEV_FF_CPU_SSE) ? 'y' : 'n',
1156                 (x & RTE_CRYPTODEV_FF_CPU_AVX) ? 'y' : 'n',
1157                 (x & RTE_CRYPTODEV_FF_CPU_AVX2) ? 'y' : 'n',
1158                 (x & RTE_CRYPTODEV_FF_CPU_AVX512) ? 'y' : 'n');
1159         printf("\t\t  + AESNI: CPU (%c), HW (%c)\n",
1160                 (x & RTE_CRYPTODEV_FF_CPU_AESNI) ? 'y' : 'n',
1161                 (x & RTE_CRYPTODEV_FF_HW_ACCELERATED) ? 'y' : 'n');
1162         printf("\t\t  + SECURITY OFFLOAD (%c)\n",
1163                 (x & RTE_CRYPTODEV_FF_SECURITY) ? 'y' : 'n');
1164         printf("\t\t  + ARM: NEON (%c), CE (%c)\n",
1165                 (x & RTE_CRYPTODEV_FF_CPU_NEON) ? 'y' : 'n',
1166                 (x & RTE_CRYPTODEV_FF_CPU_ARM_CE) ? 'y' : 'n');
1167         printf("\t  -- buffer offload\n");
1168         printf("\t\t  + IN_PLACE_SGL (%c)\n",
1169                 (x & RTE_CRYPTODEV_FF_IN_PLACE_SGL) ? 'y' : 'n');
1170         printf("\t\t  + OOP_SGL_IN_SGL_OUT (%c)\n",
1171                 (x & RTE_CRYPTODEV_FF_OOP_SGL_IN_SGL_OUT) ? 'y' : 'n');
1172         printf("\t\t  + OOP_SGL_IN_LB_OUT (%c)\n",
1173                 (x & RTE_CRYPTODEV_FF_OOP_SGL_IN_LB_OUT) ? 'y' : 'n');
1174         printf("\t\t  + OOP_LB_IN_SGL_OUT (%c)\n",
1175                 (x & RTE_CRYPTODEV_FF_OOP_LB_IN_SGL_OUT) ? 'y' : 'n');
1176         printf("\t\t  + OOP_LB_IN_LB_OUT (%c)\n",
1177                 (x & RTE_CRYPTODEV_FF_OOP_LB_IN_LB_OUT) ? 'y' : 'n');
1178 }
1179
1180 static void
1181 show_crypto(void)
1182 {
1183         uint8_t crypto_dev_count = rte_cryptodev_count(), i;
1184
1185         snprintf(bdr_str, MAX_STRING_LEN, " show - CRYPTO PMD ");
1186         STATS_BDR_STR(10, bdr_str);
1187
1188         for (i = 0; i < crypto_dev_count; i++) {
1189                 struct rte_cryptodev_info dev_info;
1190                 struct rte_cryptodev_stats stats;
1191
1192                 rte_cryptodev_info_get(i, &dev_info);
1193
1194                 printf("  - device (%u)\n", i);
1195                 printf("\t  -- name (%s)\n"
1196                        "\t  -- driver (%s)\n"
1197                        "\t  -- id (%u) on socket (%d)\n"
1198                        "\t  -- queue pairs (%d)\n",
1199                        rte_cryptodev_name_get(i),
1200                        dev_info.driver_name,
1201                        dev_info.driver_id,
1202                        dev_info.device->numa_node,
1203                        rte_cryptodev_queue_pair_count(i));
1204
1205                 display_crypto_feature_info(dev_info.feature_flags);
1206
1207                 memset(&stats, 0, sizeof(0));
1208                 if (rte_cryptodev_stats_get(i, &stats) == 0) {
1209                         printf("\t  -- stats\n");
1210                         printf("\t\t  + enqueue count (%"PRIu64")"
1211                                " error (%"PRIu64")\n",
1212                                stats.enqueued_count,
1213                                stats.enqueue_err_count);
1214                         printf("\t\t  + dequeue count (%"PRIu64")"
1215                                " error (%"PRIu64")\n",
1216                                stats.dequeued_count,
1217                                stats.dequeue_err_count);
1218                 }
1219
1220 #ifdef RTE_LIBRTE_SECURITY
1221                 show_security_context(i);
1222 #endif
1223         }
1224 }
1225
1226 static void
1227 show_ring(char *name)
1228 {
1229         snprintf(bdr_str, MAX_STRING_LEN, " show - RING ");
1230         STATS_BDR_STR(10, bdr_str);
1231
1232         if (name != NULL) {
1233                 struct rte_ring *ptr = rte_ring_lookup(name);
1234                 if (ptr != NULL) {
1235                         printf("  - Name (%s) on socket (%d)\n"
1236                                 "  - flags:\n"
1237                                 "\t  -- Single Producer Enqueue (%u)\n"
1238                                 "\t  -- Single Consmer Dequeue (%u)\n",
1239                                 ptr->name,
1240                                 ptr->memzone->socket_id,
1241                                 ptr->flags & RING_F_SP_ENQ,
1242                                 ptr->flags & RING_F_SC_DEQ);
1243                         printf("  - size (%u) mask (0x%x) capacity (%u)\n",
1244                                 ptr->size,
1245                                 ptr->mask,
1246                                 ptr->capacity);
1247                         printf("  - count (%u) free count (%u)\n",
1248                                 rte_ring_count(ptr),
1249                                 rte_ring_free_count(ptr));
1250                         printf("  - full (%d) empty (%d)\n",
1251                                 rte_ring_full(ptr),
1252                                 rte_ring_empty(ptr));
1253
1254                         STATS_BDR_STR(50, "");
1255                         return;
1256                 }
1257         }
1258
1259         rte_ring_list_dump(stdout);
1260 }
1261
1262 static void
1263 show_mempool(char *name)
1264 {
1265         uint64_t flags = 0;
1266
1267         snprintf(bdr_str, MAX_STRING_LEN, " show - MEMPOOL ");
1268         STATS_BDR_STR(10, bdr_str);
1269
1270         if (name != NULL) {
1271                 struct rte_mempool *ptr = rte_mempool_lookup(name);
1272                 if (ptr != NULL) {
1273                         struct rte_mempool_ops *ops;
1274
1275                         flags = ptr->flags;
1276                         ops = rte_mempool_get_ops(ptr->ops_index);
1277                         printf("  - Name: %s on socket %d\n"
1278                                 "  - flags:\n"
1279                                 "\t  -- No spread (%c)\n"
1280                                 "\t  -- No cache align (%c)\n"
1281                                 "\t  -- SP put (%c), SC get (%c)\n"
1282                                 "\t  -- Pool created (%c)\n"
1283                                 "\t  -- No IOVA config (%c)\n",
1284                                 ptr->name,
1285                                 ptr->socket_id,
1286                                 (flags & MEMPOOL_F_NO_SPREAD) ? 'y' : 'n',
1287                                 (flags & MEMPOOL_F_NO_CACHE_ALIGN) ? 'y' : 'n',
1288                                 (flags & MEMPOOL_F_SP_PUT) ? 'y' : 'n',
1289                                 (flags & MEMPOOL_F_SC_GET) ? 'y' : 'n',
1290                                 (flags & MEMPOOL_F_POOL_CREATED) ? 'y' : 'n',
1291                                 (flags & MEMPOOL_F_NO_IOVA_CONTIG) ? 'y' : 'n');
1292                         printf("  - Size %u Cache %u element %u\n"
1293                                 "  - header %u trailer %u\n"
1294                                 "  - private data size %u\n",
1295                                 ptr->size,
1296                                 ptr->cache_size,
1297                                 ptr->elt_size,
1298                                 ptr->header_size,
1299                                 ptr->trailer_size,
1300                                 ptr->private_data_size);
1301                         printf("  - memezone - socket %d\n",
1302                                 ptr->mz->socket_id);
1303                         printf("  - Count: avail (%u), in use (%u)\n",
1304                                 rte_mempool_avail_count(ptr),
1305                                 rte_mempool_in_use_count(ptr));
1306                         printf("  - ops_index %d ops_name %s\n",
1307                                 ptr->ops_index, ops ? ops->name : "NA");
1308
1309                         return;
1310                 }
1311         }
1312
1313         rte_mempool_list_dump(stdout);
1314 }
1315
1316 static void
1317 mempool_itr_obj(struct rte_mempool *mp, void *opaque,
1318                 void *obj, unsigned int obj_idx)
1319 {
1320         printf("  - obj_idx %u opaque %p obj %p\n",
1321                         obj_idx, opaque, obj);
1322
1323         if (obj)
1324                 rte_hexdump(stdout, " Obj Content",
1325                                 obj, (mp->elt_size > 256)?256:mp->elt_size);
1326 }
1327
1328 static void
1329 iter_mempool(char *name)
1330 {
1331         snprintf(bdr_str, MAX_STRING_LEN, " iter - MEMPOOL ");
1332         STATS_BDR_STR(10, bdr_str);
1333
1334         if (name != NULL) {
1335                 struct rte_mempool *ptr = rte_mempool_lookup(name);
1336                 if (ptr != NULL) {
1337                         /* iterate each object */
1338                         uint32_t ret = rte_mempool_obj_iter(ptr,
1339                                         mempool_itr_obj, NULL);
1340                         printf("\n  - iterated %u objects\n", ret);
1341                         return;
1342                 }
1343         }
1344 }
1345
1346 int
1347 main(int argc, char **argv)
1348 {
1349         int ret;
1350         int i;
1351         char c_flag[] = "-c1";
1352         char n_flag[] = "-n4";
1353         char mp_flag[] = "--proc-type=secondary";
1354         char log_flag[] = "--log-level=6";
1355         char *argp[argc + 4];
1356         uint16_t nb_ports;
1357
1358         /* preparse app arguments */
1359         ret = proc_info_preparse_args(argc, argv);
1360         if (ret < 0) {
1361                 printf("Failed to parse arguments\n");
1362                 return -1;
1363         }
1364
1365         argp[0] = argv[0];
1366         argp[1] = c_flag;
1367         argp[2] = n_flag;
1368         argp[3] = mp_flag;
1369         argp[4] = log_flag;
1370
1371         for (i = 1; i < argc; i++)
1372                 argp[i + 4] = argv[i];
1373
1374         argc += 4;
1375
1376         ret = rte_eal_init(argc, argp);
1377         if (ret < 0)
1378                 rte_panic("Cannot init EAL\n");
1379
1380         argc -= ret;
1381         argv += ret - 4;
1382
1383         if (!rte_eal_primary_proc_alive(NULL))
1384                 rte_exit(EXIT_FAILURE, "No primary DPDK process is running.\n");
1385
1386         /* parse app arguments */
1387         ret = proc_info_parse_args(argc, argv);
1388         if (ret < 0)
1389                 rte_exit(EXIT_FAILURE, "Invalid argument\n");
1390
1391         if (mem_info) {
1392                 meminfo_display();
1393                 return 0;
1394         }
1395
1396         nb_ports = rte_eth_dev_count_avail();
1397         if (nb_ports == 0)
1398                 rte_exit(EXIT_FAILURE, "No Ethernet ports - bye\n");
1399
1400         /* If no port mask was specified*/
1401         if (enabled_port_mask == 0)
1402                 enabled_port_mask = 0xffff;
1403
1404         RTE_ETH_FOREACH_DEV(i) {
1405                 if (enabled_port_mask & (1 << i)) {
1406                         if (enable_stats)
1407                                 nic_stats_display(i);
1408                         else if (enable_xstats)
1409                                 nic_xstats_display(i);
1410                         else if (reset_stats)
1411                                 nic_stats_clear(i);
1412                         else if (reset_xstats)
1413                                 nic_xstats_clear(i);
1414                         else if (enable_xstats_name)
1415                                 nic_xstats_by_name_display(i, xstats_name);
1416                         else if (nb_xstats_ids > 0)
1417                                 nic_xstats_by_ids_display(i, xstats_ids,
1418                                                 nb_xstats_ids);
1419                         else if (enable_metrics)
1420                                 metrics_display(i);
1421                 }
1422         }
1423
1424         /* print port independent stats */
1425         if (enable_metrics)
1426                 metrics_display(RTE_METRICS_GLOBAL);
1427
1428         /* show information for PMD */
1429         if (enable_shw_port)
1430                 show_port();
1431         if (enable_shw_tm)
1432                 show_tm();
1433         if (enable_shw_crypto)
1434                 show_crypto();
1435         if (enable_shw_ring)
1436                 show_ring(ring_name);
1437         if (enable_shw_mempool)
1438                 show_mempool(mempool_name);
1439         if (enable_iter_mempool)
1440                 iter_mempool(mempool_iter_name);
1441
1442         RTE_ETH_FOREACH_DEV(i)
1443                 rte_eth_dev_close(i);
1444
1445         ret = rte_eal_cleanup();
1446         if (ret)
1447                 printf("Error from rte_eal_cleanup(), %d\n", ret);
1448
1449         return 0;
1450 }