2 // Copyright (c) 2010-2020 Intel Corporation
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
8 // http://www.apache.org/licenses/LICENSE-2.0
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
20 #include <rte_cycles.h>
21 #include <rte_version.h>
24 #include "cmd_parser.h"
30 #include "prox_port_cfg.h"
31 #include "task_base.h"
34 #include "parse_utils.h"
35 #include "stats_parser.h"
36 #include "stats_port.h"
37 #include "stats_latency.h"
38 #include "stats_global.h"
39 #include "stats_prio_task.h"
41 #include "handle_routing.h"
42 #include "handle_qinq_decap4.h"
43 #include "handle_lat.h"
44 #include "handle_arp.h"
45 #include "handle_gen.h"
46 #include "handle_acl.h"
47 #include "handle_irq.h"
51 #include "stats_latency.h"
52 #include "handle_cgnat.h"
53 #include "handle_impair.h"
55 #include "prox_compat.h"
58 static int core_task_is_valid(int lcore_id, int task_id)
60 if (lcore_id >= RTE_MAX_LCORE) {
61 plog_err("Invalid core id %u (lcore ID above %d)\n", lcore_id, RTE_MAX_LCORE);
64 else if (!prox_core_active(lcore_id, 0)) {
65 plog_err("Invalid core id %u (lcore is not active)\n", lcore_id);
68 else if (task_id >= lcore_cfg[lcore_id].n_tasks_all) {
69 plog_err("Invalid task id (valid task IDs for core %u are below %u)\n",
70 lcore_id, lcore_cfg[lcore_id].n_tasks_all);
76 static int cores_task_are_valid(unsigned int *lcores, int task_id, unsigned int nb_cores)
78 unsigned int lcore_id;
79 for (unsigned int i = 0; i < nb_cores; i++) {
81 if (core_task_is_valid(lcore_id, task_id) == 0)
87 static int parse_cores_task(const char *str, uint32_t *lcore_id, uint32_t *task_id, unsigned *nb_cores)
89 char str_lcore_id[128];
92 if (2 != sscanf(str, "%s %u", str_lcore_id, task_id))
95 if ((ret = parse_list_set(lcore_id, str_lcore_id, RTE_MAX_LCORE)) <= 0) {
96 plog_err("Invalid core while parsing command (%s)\n", get_parse_err());
104 static int parse_cores_tasks(const char *str, uint32_t *lcore_id, uint32_t *task_id, unsigned *nb_cores, unsigned *nb_tasks)
106 char str_lcore_id[128], str_task_id[128];
109 if (2 != sscanf(str, "%s %s", str_lcore_id, str_task_id))
112 if ((ret = parse_list_set(lcore_id, str_lcore_id, RTE_MAX_LCORE)) <= 0) {
113 plog_err("Invalid core while parsing command (%s)\n", get_parse_err());
118 if ((ret = parse_list_set(task_id, str_task_id, MAX_TASKS_PER_CORE)) <= 0) {
119 plog_err("Invalid task while parsing command (%s)\n", get_parse_err());
127 static const char *strchr_skip_twice(const char *str, int chr)
129 str = strchr(str, chr);
134 str = strchr(str, chr);
140 static int parse_cmd_quit(const char *str, struct input *input)
142 if (strcmp(str, "") != 0) {
150 static int parse_cmd_quit_force(const char *str, struct input *input)
152 if (strcmp(str, "") != 0) {
159 static int parse_cmd_history(const char *str, struct input *input)
161 if (strcmp(str, "") != 0) {
165 if (input->history) {
166 input->history(input);
169 plog_err("Invalid history comand ");
173 static int parse_cmd_echo(const char *str, struct input *input)
175 if (strcmp(str, "") == 0) {
181 if (parse_vars(resolved, sizeof(resolved), str)) {
186 if (strlen(resolved) + 2 < sizeof(resolved)) {
187 resolved[strlen(resolved) + 1] = 0;
188 resolved[strlen(resolved)] = '\n';
193 input->reply(input, resolved, strlen(resolved));
195 plog_info("%s\n", resolved);
200 static int parse_cmd_reset_stats(const char *str, struct input *input)
202 if (strcmp(str, "") != 0) {
210 static int parse_cmd_reset_lat_stats(const char *str, struct input *input)
212 if (strcmp(str, "") != 0) {
216 stats_latency_reset();
220 static int parse_cmd_trace(const char *str, struct input *input)
222 unsigned lcores[RTE_MAX_LCORE], task_id, nb_packets, nb_cores;
224 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
226 if (!(str = strchr_skip_twice(str, ' ')))
228 if (sscanf(str, "%u", &nb_packets) != 1)
231 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
232 for (unsigned int i = 0; i < nb_cores; i++) {
233 cmd_trace(lcores[i], task_id, nb_packets);
239 static int parse_cmd_dump_rx(const char *str, struct input *input)
241 unsigned lcores[RTE_MAX_LCORE], task_id, nb_packets, nb_cores;
243 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
245 if (!(str = strchr_skip_twice(str, ' ')))
247 if (sscanf(str, "%u", &nb_packets) != 1) {
251 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
252 for (unsigned int i = 0; i < nb_cores; i++) {
253 if (lcores[i] > RTE_MAX_LCORE) {
254 plog_warn("core_id too high, maximum allowed is: %u\n", RTE_MAX_LCORE);
256 } else if (task_id >= lcore_cfg[lcores[i]].n_tasks_all) {
257 plog_warn("task_id too high, should be in [0, %u]\n", lcore_cfg[lcores[i]].n_tasks_all - 1);
260 struct lcore_cfg *lconf = &lcore_cfg[lcores[i]];
261 struct task_base *tbase = lconf->tasks_all[task_id];
262 int prev_count = tbase->aux->rx_prev_count;
263 if (((prev_count) && (tbase->aux->rx_pkt_prev[prev_count - 1] == rx_pkt_dummy))
264 || (tbase->rx_pkt == rx_pkt_dummy)) {
265 plog_warn("Unable to dump_rx as rx_pkt_dummy\n");
269 cmd_dump(lcores[i], task_id, nb_packets, input, 1, 0);
275 static int parse_cmd_pps_unit(const char *str, struct input *input)
279 if (sscanf(str, "%u", &val) != 1) {
282 display_set_pps_unit(val);
286 static int parse_cmd_dump_tx(const char *str, struct input *input)
288 unsigned lcores[RTE_MAX_LCORE], task_id, nb_packets, nb_cores;
290 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
292 if (!(str = strchr_skip_twice(str, ' ')))
294 if (sscanf(str, "%u", &nb_packets) != 1) {
298 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
299 for (unsigned int i = 0; i < nb_cores; i++) {
300 cmd_dump(lcores[i], task_id, nb_packets, input, 0, 1);
306 static int parse_cmd_rate(const char *str, struct input *input)
308 unsigned queue, port, rate;
310 if (sscanf(str, "%u %u %u", &queue, &port, &rate) != 3) {
314 if (port > PROX_MAX_PORTS) {
315 plog_err("Max port id allowed is %u (specified %u)\n", PROX_MAX_PORTS, port);
317 else if (!prox_port_cfg[port].active) {
318 plog_err("Port %u not active\n", port);
320 else if (queue >= prox_port_cfg[port].n_txq) {
321 plog_err("Number of active queues is %u\n",
322 prox_port_cfg[port].n_txq);
324 else if (rate > prox_port_cfg[port].link_speed) {
325 plog_err("Max rate allowed on port %u queue %u is %u Mbps\n",
326 port, queue, prox_port_cfg[port].link_speed);
330 plog_info("Disabling rate limiting on port %u queue %u\n",
334 plog_info("Setting rate limiting to %u Mbps on port %u queue %u\n",
337 rte_eth_set_queue_rate_limit(port, queue, rate);
342 int task_is_mode_and_submode(uint32_t lcore_id, uint32_t task_id, const char *mode, const char *sub_mode)
344 struct task_args *targs = &lcore_cfg[lcore_id].targs[task_id];
346 return !strcmp(targs->task_init->mode_str, mode) && !strcmp(targs->sub_mode_str, sub_mode);
349 int task_is_mode(uint32_t lcore_id, uint32_t task_id, const char *mode)
351 struct task_init *t = lcore_cfg[lcore_id].targs[task_id].task_init;
353 return !strcmp(t->mode_str, mode);
356 int task_is_sub_mode(uint32_t lcore_id, uint32_t task_id, const char *sub_mode)
358 struct task_args *targs = &lcore_cfg[lcore_id].targs[task_id];
360 return !strcmp(targs->sub_mode_str, sub_mode);
363 static void log_pkt_count(uint32_t count, uint32_t lcore_id, uint32_t task_id)
365 if (count == UINT32_MAX)
366 plog_info("Core %u task %u will keep sending packets\n", lcore_id, task_id);
368 plog_info("Core %u task %u waits for next count command\n", lcore_id, task_id);
370 plog_info("Core %u task %u stopping after %u packets\n", lcore_id, task_id, count);
373 static int parse_cmd_count(const char *str, struct input *input)
375 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, count, nb_cores;
377 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
379 if (!(str = strchr_skip_twice(str, ' ')))
381 if (sscanf(str, "%u", &count) != 1)
384 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
385 for (unsigned int i = 0; i < nb_cores; i++) {
386 lcore_id = lcores[i];
387 if (!task_is_mode(lcore_id, task_id, "gen")) {
388 plog_err("Core %u task %u is not generating packets\n", lcore_id, task_id);
391 struct task_base *task = lcore_cfg[lcore_id].tasks_all[task_id];
393 log_pkt_count(count, lcore_id, task_id);
394 task_gen_set_pkt_count(task, count);
401 static int parse_cmd_set_proba_no_drop(const char *str, struct input *input)
403 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
406 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
408 if (!(str = strchr_skip_twice(str, ' ')))
410 if (sscanf(str, "%f", &proba_no_drop) != 1)
413 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
414 for (unsigned int i = 0; i < nb_cores; i++) {
415 lcore_id = lcores[i];
416 if (!task_is_mode(lcore_id, task_id, "impair")) {
417 plog_err("Core %u task %u is not impairing packets\n", lcore_id, task_id);
419 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
420 task_impair_set_proba_no_drop(tbase, proba_no_drop);
427 static int parse_cmd_set_proba_delay(const char *str, struct input *input)
429 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
432 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
434 if (!(str = strchr_skip_twice(str, ' ')))
436 if (sscanf(str, "%f", &proba_delay) != 1)
439 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
440 for (unsigned int i = 0; i < nb_cores; i++) {
441 lcore_id = lcores[i];
442 if (!task_is_mode(lcore_id, task_id, "impair")) {
443 plog_err("Core %u task %u is not impairing packets\n", lcore_id, task_id);
445 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
446 task_impair_set_proba_delay(tbase, proba_delay);
453 static int parse_cmd_set_proba_duplicate(const char *str, struct input *input)
455 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
456 float proba_duplicate;
458 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
460 if (!(str = strchr_skip_twice(str, ' ')))
462 if (sscanf(str, "%f", &proba_duplicate) != 1)
465 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
466 for (unsigned int i = 0; i < nb_cores; i++) {
467 lcore_id = lcores[i];
468 if (!task_is_mode(lcore_id, task_id, "impair")) {
469 plog_err("Core %u task %u is not impairing packets\n", lcore_id, task_id);
471 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
472 task_impair_set_proba_duplicate(tbase, proba_duplicate);
479 static int parse_cmd_delay_us(const char *str, struct input *input)
481 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, delay_us, nb_cores;
483 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
485 if (!(str = strchr_skip_twice(str, ' ')))
487 if (sscanf(str, "%d", &delay_us) != 1)
490 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
491 for (unsigned int i = 0; i < nb_cores; i++) {
492 lcore_id = lcores[i];
493 if (!task_is_mode(lcore_id, task_id, "impair")) {
494 plog_err("Core %u task %u is not impairing packets\n", lcore_id, task_id);
496 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
497 task_impair_set_delay_us(tbase, delay_us, 0);
504 static int parse_cmd_random_delay_us(const char *str, struct input *input)
506 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, delay_us, nb_cores;
508 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
510 if (!(str = strchr_skip_twice(str, ' ')))
512 if (sscanf(str, "%d", &delay_us) != 1)
515 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
516 for (unsigned int i = 0; i < nb_cores; i++) {
517 lcore_id = lcores[i];
518 if (!task_is_mode(lcore_id, task_id, "impair")) {
519 plog_err("Core %u task %u is not impairing packets\n", lcore_id, task_id);
521 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
522 task_impair_set_delay_us(tbase, 0, delay_us);
529 static int parse_cmd_bypass(const char *str, struct input *input)
531 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, pkt_size, nb_cores;
533 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
535 if ((prox_cfg.flags & DSF_ENABLE_BYPASS) == 0) {
536 plog_err("enable bypass not set => command not supported\n");
540 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
541 for (unsigned int i = 0; i < nb_cores; i++) {
542 lcore_id = lcores[i];
543 if (bypass_task(lcore_id, task_id) != 0)
550 static int parse_cmd_reconnect(const char *str, struct input *input)
552 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, pkt_size, nb_cores;
554 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
556 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
557 for (unsigned int i = 0; i < nb_cores; i++) {
558 lcore_id = lcores[i];
559 if (reconnect_task(lcore_id, task_id) != 0)
566 static int parse_cmd_pkt_size(const char *str, struct input *input)
568 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, pkt_size, nb_cores;
570 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
572 if (!(str = strchr_skip_twice(str, ' ')))
574 if (sscanf(str, "%d", &pkt_size) != 1)
577 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
578 for (unsigned int i = 0; i < nb_cores; i++) {
579 lcore_id = lcores[i];
580 if (!task_is_mode(lcore_id, task_id, "gen")) {
581 plog_err("Core %u task %u is not generating packets\n", lcore_id, task_id);
583 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
584 task_gen_set_pkt_size(tbase, pkt_size); /* error printed within function */
591 static int parse_cmd_imix(const char *str, struct input *input)
593 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
594 uint32_t pkt_sizes[MAX_IMIX_PKTS], tmp;
595 uint32_t pkt_index = 0;
597 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
599 if (!(str = strchr_skip_twice(str, ' ')))
601 while (pkt_index < MAX_IMIX_PKTS) {
602 if (sscanf(str, "%d", &pkt_sizes[pkt_index]) != 1)
605 if ((str = strchr(str, ',')) == NULL)
609 if (pkt_index == 0) {
610 plog_err("No pkt size found\n");
613 if ((pkt_index == MAX_IMIX_PKTS) && (str) && (sscanf(str, "%d", &tmp) == 1)) {
614 plog_err("Too many inputs - unexpected inputs starting at %s\n", str);
618 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
619 for (unsigned int i = 0; i < nb_cores; i++) {
620 lcore_id = lcores[i];
621 if ((!task_is_mode_and_submode(lcore_id, task_id, "gen", "")) && (!task_is_mode_and_submode(lcore_id, task_id, "gen", "l3"))) {
622 plog_err("Core %u task %u is not generating packets\n", lcore_id, task_id);
624 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
625 task_gen_set_imix(tbase, pkt_index, pkt_sizes); /* error printed within function */
632 static int parse_cmd_speed(const char *str, struct input *input)
634 unsigned lcores[RTE_MAX_LCORE], task_id, lcore_id, nb_cores;
638 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
640 if (!(str = strchr_skip_twice(str, ' ')))
642 if (sscanf(str, "%f", &speed) != 1) {
646 if (!cores_task_are_valid(lcores, task_id, nb_cores)) {
650 for (i = 0; i < nb_cores; i++) {
651 lcore_id = lcores[i];
652 if (!task_is_mode(lcore_id, task_id, "gen")) {
653 plog_err("Core %u task %u is not generating packets\n", lcore_id, task_id);
655 else if (speed > 1000.0f || speed < 0.0f) { // Up to 100 Gbps
656 plog_err("Speed out of range (must be betweeen 0%% and 1000%%)\n");
659 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
660 uint64_t bps = speed * 12500000;
662 plog_info("Setting rate to %"PRIu64" Bps\n", bps);
664 task_gen_set_rate(tbase, bps);
670 static int parse_cmd_speed_byte(const char *str, struct input *input)
672 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
675 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
677 if (!(str = strchr_skip_twice(str, ' ')))
679 if (sscanf(str, "%"PRIu64"", &bps) != 1)
682 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
683 for (unsigned int i = 0; i < nb_cores; i++) {
684 lcore_id = lcores[i];
686 if (!task_is_mode(lcore_id, task_id, "gen")) {
687 plog_err("Core %u task %u is not generating packets\n", lcore_id, task_id);
689 else if (bps > 12500000000) { // Up to 100Gbps
690 plog_err("Speed out of range (must be <= 12500000000)\n");
693 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
695 plog_info("Setting rate to %"PRIu64" Bps\n", bps);
696 task_gen_set_rate(tbase, bps);
703 static int parse_cmd_reset_randoms_all(const char *str, struct input *input)
705 if (strcmp(str, "") != 0) {
709 unsigned task_id, lcore_id = -1;
710 while (prox_core_next(&lcore_id, 0) == 0) {
711 for (task_id = 0; task_id < lcore_cfg[lcore_id].n_tasks_all; task_id++) {
712 if (task_is_mode(lcore_id, task_id, "gen")) {
713 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
714 uint32_t n_rands = task_gen_get_n_randoms(tbase);
716 plog_info("Resetting randoms on core %d task %d from %d randoms\n", lcore_id, task_id, n_rands);
717 task_gen_reset_randoms(tbase);
724 static int parse_cmd_reset_values_all(const char *str, struct input *input)
726 if (strcmp(str, "") != 0) {
730 unsigned task_id, lcore_id = -1;
731 while (prox_core_next(&lcore_id, 0) == 0) {
732 for (task_id = 0; task_id < lcore_cfg[lcore_id].n_tasks_all; task_id++) {
733 if (task_is_mode(lcore_id, task_id, "gen")) {
734 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
736 plog_info("Resetting values on core %d task %d\n", lcore_id, task_id);
737 task_gen_reset_values(tbase);
744 static int parse_cmd_reset_values(const char *str, struct input *input)
746 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
748 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
751 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
752 for (unsigned int i = 0; i < nb_cores; i++) {
753 lcore_id = lcores[i];
754 if (!task_is_mode(lcore_id, task_id, "gen")) {
755 plog_err("Core %u task %u is not generating packets\n", lcore_id, task_id);
758 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
760 plog_info("Resetting values on core %d task %d\n", lcore_id, task_id);
761 task_gen_reset_values(tbase);
768 static int parse_cmd_set_value(const char *str, struct input *input)
770 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, value, nb_cores;
771 unsigned short offset;
774 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
776 if (!(str = strchr_skip_twice(str, ' ')))
778 if (sscanf(str, "%hu %u %hhu", &offset, &value, &value_len) != 3) {
782 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
783 for (unsigned int i = 0; i < nb_cores; i++) {
784 lcore_id = lcores[i];
785 if (!task_is_mode(lcore_id, task_id, "gen")) {
786 plog_err("Core %u task %u is not generating packets\n", lcore_id, task_id);
788 // do not check offset here - gen knows better than us the maximum frame size
789 else if (value_len > 4) {
790 plog_err("Length out of range (must be less then 4)\n");
793 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
795 if (task_gen_set_value(tbase, value, offset, value_len))
796 plog_info("Unable to set Byte %"PRIu16" to %"PRIu8" - invalid offset/len\n", offset, value);
798 plog_info("Setting Byte %"PRIu16" to %"PRIu32"\n", offset, value);
805 static int parse_cmd_set_random(const char *str, struct input *input)
807 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
808 unsigned short offset;
811 int16_t rand_id = -1;
813 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
815 if (!(str = strchr_skip_twice(str, ' ')))
817 if (sscanf(str, "%hu %32s %hhu", &offset, rand_str, &value_len) != 3) {
821 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
822 for (unsigned int i = 0; i < nb_cores; i++) {
823 lcore_id = lcores[i];
824 if (!task_is_mode(lcore_id, task_id, "gen")) {
825 plog_err("Core %u task %u is not generating packets\n", lcore_id, task_id);
827 else if (offset > PROX_RTE_ETHER_MAX_LEN) {
828 plog_err("Offset out of range (must be less then %u)\n", PROX_RTE_ETHER_MAX_LEN);
830 else if (value_len > 4) {
831 plog_err("Length out of range (must be less then 4)\n");
833 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
835 if (task_gen_add_rand(tbase, rand_str, offset, rand_id)) {
836 plog_warn("Random not added on core %u task %u\n", lcore_id, task_id);
844 static int parse_cmd_thread_info(const char *str, struct input *input)
846 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
848 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
850 for (unsigned int i = 0; i < nb_cores; i++) {
851 cmd_thread_info(lcores[i], task_id);
856 static int parse_cmd_verbose(const char *str, struct input *input)
860 if (sscanf(str, "%u", &id) != 1) {
864 if (plog_set_lvl(id) != 0) {
865 plog_err("Cannot set log level to %u\n", id);
870 static int parse_cmd_arp_add(const char *str, struct input *input)
873 struct arp_msg *pmsg = &amsg;
874 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
875 struct rte_ring *ring;
877 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
879 if (!(str = strchr_skip_twice(str, ' ')))
883 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
884 if (str_to_arp_msg(&amsg, str) == 0) {
885 for (unsigned int i = 0; i < nb_cores; i++) {
886 lcore_id = lcores[i];
887 ring = ctrl_rings[lcore_id*MAX_TASKS_PER_CORE + task_id];
889 plog_err("No ring for control messages to core %u task %u\n", lcore_id, task_id);
892 #if RTE_VERSION < RTE_VERSION_NUM(17,5,0,1)
893 while (rte_ring_sp_enqueue_bulk(ring, (void *const *)&pmsg, 1));
895 while (rte_ring_sp_enqueue_bulk(ring, (void *const *)&pmsg, 1, NULL) == 0);
897 while (!rte_ring_empty(ring));
906 static int parse_cmd_rule_add(const char *str, struct input *input)
908 struct rte_ring *ring;
909 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
911 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
913 if (!(str = strchr_skip_twice(str, ' ')))
919 prox_strncpy(str_cpy, str, 255);
920 // example add rule command: rule add 15 0 1&0x0fff 1&0x0fff 0&0 128.0.0.0/1 128.0.0.0/1 5000-5000 5000-5000 allow
921 int ret = rte_strsplit(str_cpy, 255, fields, 9, ' ');
926 struct acl4_rule rule;
927 struct acl4_rule *prule = &rule;
928 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
929 if (str_to_rule(&rule, fields, -1, 1) == 0) {
930 for (unsigned int i = 0; i < nb_cores; i++) {
931 lcore_id = lcores[i];
932 ring = ctrl_rings[lcore_id*MAX_TASKS_PER_CORE + task_id];
934 plog_err("No ring for control messages to core %u task %u\n", lcore_id, task_id);
937 #if RTE_VERSION < RTE_VERSION_NUM(17,5,0,1)
938 while (rte_ring_sp_enqueue_bulk(ring, (void *const *)&prule, 1));
940 while (rte_ring_sp_enqueue_bulk(ring, (void *const *)&prule, 1, NULL) == 0);
942 while (!rte_ring_empty(ring));
951 static int parse_cmd_gateway_ip(const char *str, struct input *input)
953 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, ip[4], nb_cores, i;
955 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
957 if (!(str = strchr_skip_twice(str, ' ')))
959 if (!strcmp(str, ""))
961 if (sscanf(str, "%u.%u.%u.%u", ip, ip + 1, ip + 2, ip + 3) != 4) {
964 for (i = 0; i < nb_cores; i++) {
965 lcore_id = lcores[i];
967 if (!task_is_sub_mode(lcore_id, task_id, "l3")) {
968 plog_err("Core %u task %u is not in l3 mode\n", lcore_id, task_id);
971 uint32_t gateway_ip = ((ip[3] & 0xFF) << 24) | ((ip[2] & 0xFF) << 16) | ((ip[1] & 0xFF) << 8) | ((ip[0] & 0xFF) << 0);
972 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
973 plog_info("Setting gateway ip to %s\n", str);
974 task_set_gateway_ip(tbase, gateway_ip);
980 static int parse_cmd_local_ip(const char *str, struct input *input)
982 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, ip[4], nb_cores, i;
984 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
986 if (!(str = strchr_skip_twice(str, ' ')))
988 if (!strcmp(str, ""))
990 if (sscanf(str, "%u.%u.%u.%u", ip, ip + 1, ip + 2, ip + 3) != 4) {
993 for (i = 0; i < nb_cores; i++) {
994 lcore_id = lcores[i];
995 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
996 uint32_t local_ip = ((ip[3] & 0xFF) << 24) | ((ip[2] & 0xFF) << 16) | ((ip[1] & 0xFF) << 8) | ((ip[0] & 0xFF) << 0);
997 if (!task_is_mode_and_submode(lcore_id, task_id, "arp", "local")) {
998 plog_err("Core %u task %u is not in arp mode\n", lcore_id, task_id);
1000 plog_info("Setting local ip to %s\n", str);
1001 task_arp_set_local_ip(tbase, local_ip);
1007 static int parse_cmd_route_add(const char *str, struct input *input)
1009 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, prefix, next_hop_idx, ip[4], nb_cores;
1011 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
1013 if (!(str = strchr_skip_twice(str, ' ')))
1015 if (strcmp(str, ""))
1017 if (sscanf(str, "%u.%u.%u.%u/%u %u", ip, ip + 1, ip + 2, ip + 3,
1018 &prefix, &next_hop_idx) != 8) {
1021 struct rte_ring *ring;
1023 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
1024 for (unsigned int i = 0; i < nb_cores; i++) {
1025 lcore_id = lcores[i];
1026 ring = ctrl_rings[lcore_id*MAX_TASKS_PER_CORE + task_id];
1028 plog_err("No ring for control messages to core %u task %u\n", lcore_id, task_id);
1031 struct route_msg rmsg;
1032 struct route_msg *pmsg = &rmsg;
1034 rmsg.ip_bytes[0] = ip[0];
1035 rmsg.ip_bytes[1] = ip[1];
1036 rmsg.ip_bytes[2] = ip[2];
1037 rmsg.ip_bytes[3] = ip[3];
1038 rmsg.prefix = prefix;
1039 rmsg.nh = next_hop_idx;
1040 #if RTE_VERSION < RTE_VERSION_NUM(17,5,0,1)
1041 while (rte_ring_sp_enqueue_bulk(ring, (void *const *)&pmsg, 1));
1043 while (rte_ring_sp_enqueue_bulk(ring, (void *const *)&pmsg, 1, NULL) == 0);
1045 while (!rte_ring_empty(ring));
1052 static int parse_cmd_start(const char *str, struct input *input)
1056 if (strncmp(str, "all", 3) == 0) {
1058 sscanf(str, "%d", &task_id);
1060 start_core_all(task_id);
1065 uint32_t cores[64] = {0};
1067 ret = parse_list_set(cores, str, 64);
1071 str = strchr(str, ' ');
1074 sscanf(str, "%d", &task_id);
1076 start_cores(cores, ret, task_id);
1081 static int parse_cmd_stop(const char *str, struct input *input)
1085 if (strncmp(str, "all", 3) == 0) {
1087 sscanf(str, "%d", &task_id);
1088 stop_core_all(task_id);
1093 uint32_t cores[64] = {0};
1095 ret = parse_list_set(cores, str, 64);
1099 str = strchr(str, ' ');
1102 sscanf(str, "%d", &task_id);
1104 stop_cores(cores, ret, task_id);
1110 static int parse_cmd_rx_distr_start(const char *str, struct input *input)
1112 unsigned lcore_id[RTE_MAX_LCORE];
1116 nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1118 if (nb_cores <= 0) {
1122 for (int i = 0; i < nb_cores; ++i)
1123 cmd_rx_distr_start(lcore_id[i]);
1127 static int parse_cmd_tx_distr_start(const char *str, struct input *input)
1129 unsigned lcore_id[RTE_MAX_LCORE];
1133 nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1135 if (nb_cores <= 0) {
1139 for (int i = 0; i < nb_cores; ++i)
1140 cmd_tx_distr_start(lcore_id[i]);
1144 static int parse_cmd_rx_distr_stop(const char *str, struct input *input)
1146 unsigned lcore_id[RTE_MAX_LCORE];
1150 nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1152 if (nb_cores <= 0) {
1156 for (int i = 0; i < nb_cores; ++i)
1157 cmd_rx_distr_stop(lcore_id[i]);
1161 static int parse_cmd_tx_distr_stop(const char *str, struct input *input)
1163 unsigned lcore_id[RTE_MAX_LCORE];
1167 nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1169 if (nb_cores <= 0) {
1173 for (int i = 0; i < nb_cores; ++i)
1174 cmd_tx_distr_stop(lcore_id[i]);
1178 static int parse_cmd_rx_distr_reset(const char *str, struct input *input)
1180 unsigned lcore_id[RTE_MAX_LCORE];
1184 nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1186 if (nb_cores <= 0) {
1190 for (int i = 0; i < nb_cores; ++i)
1191 cmd_rx_distr_rst(lcore_id[i]);
1195 static int parse_cmd_tx_distr_reset(const char *str, struct input *input)
1197 unsigned lcore_id[RTE_MAX_LCORE];
1201 nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1203 if (nb_cores <= 0) {
1207 for (int i = 0; i < nb_cores; ++i)
1208 cmd_tx_distr_rst(lcore_id[i]);
1212 static int parse_cmd_rx_distr_show(const char *str, struct input *input)
1214 unsigned lcore_id[RTE_MAX_LCORE];
1218 nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1220 if (nb_cores <= 0) {
1224 for (int i = 0; i < nb_cores; ++i)
1225 cmd_rx_distr_show(lcore_id[i]);
1229 static int parse_cmd_tx_distr_show(const char *str, struct input *input)
1231 unsigned lcore_id[RTE_MAX_LCORE];
1235 nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1237 if (nb_cores <= 0) {
1241 for (int i = 0; i < nb_cores; ++i)
1242 cmd_tx_distr_show(lcore_id[i]);
1246 static int parse_cmd_tot_stats(const char *str, struct input *input)
1248 if (strcmp("", str) != 0) {
1252 struct global_stats_sample *gsl = stats_get_global_stats(1);
1253 uint64_t tot_rx = gsl->host_rx_packets;
1254 uint64_t tot_tx = gsl->host_tx_packets;
1255 uint64_t last_tsc = gsl->tsc;
1259 snprintf(buf, sizeof(buf), "%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64"\n",
1260 tot_rx, tot_tx, last_tsc, rte_get_tsc_hz());
1261 input->reply(input, buf, strlen(buf));
1264 plog_info("RX: %"PRIu64", TX: %"PRIu64"\n", tot_rx, tot_tx);
1269 static int parse_cmd_update_interval(const char *str, struct input *input)
1273 if (sscanf(str, "%u", &val) != 1) {
1278 plog_err("Minimum update interval is 1 ms\n");
1281 plog_info("Setting update interval to %d ms\n", val);
1282 set_update_interval(val);
1287 static int parse_cmd_mem_info(const char *str, struct input *input)
1289 if (strcmp("", str) != 0) {
1298 static int parse_cmd_tot_ierrors_tot(const char *str, struct input *input)
1300 if (strcmp(str, "") != 0) {
1304 struct global_stats_sample *gsl = stats_get_global_stats(1);
1305 uint64_t tot = gsl->nics_ierrors;
1306 uint64_t last_tsc = gsl->tsc;
1310 snprintf(buf, sizeof(buf),
1311 "%"PRIu64",%"PRIu64",%"PRIu64"\n",
1312 tot, last_tsc, rte_get_tsc_hz());
1313 input->reply(input, buf, strlen(buf));
1316 plog_info("ierrors: %"PRIu64"\n", tot);
1321 static int parse_cmd_tot_imissed_tot(const char *str, struct input *input)
1323 if (strcmp(str, "") != 0) {
1327 struct global_stats_sample *gsl = stats_get_global_stats(1);
1328 uint64_t tot = gsl->nics_imissed;
1329 uint64_t last_tsc = gsl->tsc;
1333 snprintf(buf, sizeof(buf),
1334 "%"PRIu64",%"PRIu64",%"PRIu64"\n",
1335 tot, last_tsc, rte_get_tsc_hz());
1336 input->reply(input, buf, strlen(buf));
1339 plog_info("imissed: %"PRIu64"\n", tot);
1344 static int parse_cmd_enable_multicast(const char *str, struct input *input)
1347 prox_rte_ether_addr mac;
1349 if (sscanf(str, "%hhu %hhx:%hhx:%hhx:%hhx:%hhx:%hhx", &port_id, mac.addr_bytes, mac.addr_bytes + 1, mac.addr_bytes + 2, mac.addr_bytes + 3, mac.addr_bytes + 4, mac.addr_bytes + 5 ) != 7) {
1352 cmd_multicast(port_id, 1, &mac);
1356 static int parse_cmd_disable_multicast(const char *str, struct input *input)
1359 prox_rte_ether_addr mac;
1361 if (sscanf(str, "%hhu %hhx:%hhx:%hhx:%hhx:%hhx:%hhx", &port_id, mac.addr_bytes, mac.addr_bytes + 1, mac.addr_bytes + 2, mac.addr_bytes + 3, mac.addr_bytes + 4, mac.addr_bytes + 5 ) != 7) {
1365 cmd_multicast(port_id, 0, &mac);
1369 static int parse_cmd_reset_port(const char *str, struct input *input)
1373 if (sscanf(str, "%u", &port_id ) != 1) {
1377 cmd_reset_port(port_id);
1381 static int parse_cmd_write_reg(const char *str, struct input *input)
1386 if (sscanf(str, "%u %x %u", &port_id, &id, &val) != 3) {
1390 cmd_write_reg(port_id, id, val);
1394 static int parse_cmd_read_reg(const char *str, struct input *input)
1399 if (sscanf(str, "%u %x", &port_id, &id) != 2) {
1403 cmd_read_reg(port_id, id);
1407 static int parse_cmd_cache_reset(const char *str, struct input *input)
1413 static int parse_cmd_set_cache_class_mask(const char *str, struct input *input)
1419 if (sscanf(str, "%u %u %u", &lcore_id, &set, &val) != 3) {
1423 cmd_set_cache_class_mask(lcore_id, set, val);
1427 static int parse_cmd_set_cache_class(const char *str, struct input *input)
1432 if (sscanf(str, "%u %u", &lcore_id, &set) != 2) {
1436 cmd_set_cache_class(lcore_id, set);
1440 static int parse_cmd_get_cache_class_mask(const char *str, struct input *input)
1446 if (sscanf(str, "%u %u", &lcore_id, &set) != 2) {
1450 cmd_get_cache_class_mask(lcore_id, set, &val);
1453 snprintf(buf, sizeof(buf), "%d, %d, %x\n", lcore_id, set, val);
1454 input->reply(input, buf, strlen(buf));
1456 plog_info("core=%d, set=%d, mask=%x\n", lcore_id, set, val);
1461 static int parse_cmd_get_cache_class(const char *str, struct input *input)
1467 if (sscanf(str, "%u", &lcore_id) != 1) {
1471 cmd_get_cache_class(lcore_id, &set);
1474 snprintf(buf, sizeof(buf), "%d, %d\n", lcore_id, set);
1475 input->reply(input, buf, strlen(buf));
1477 plog_info("core=%d, cos=%d\n", lcore_id, set);
1482 static int parse_cmd_get_cache_mask(const char *str, struct input *input)
1488 if (sscanf(str, "%u", &lcore_id) != 1) {
1492 cmd_get_cache_class(lcore_id, &set);
1493 cmd_get_cache_class_mask(lcore_id, set, &mask);
1496 snprintf(buf, sizeof(buf), "%d, %x\n", lcore_id, mask);
1497 input->reply(input, buf, strlen(buf));
1499 plog_info("core=%d, mask=%x\n", lcore_id, mask);
1504 static int parse_cmd_set_vlan_offload(const char *str, struct input *input)
1509 if (sscanf(str, "%u %u", &port_id, &val) != 2) {
1513 cmd_set_vlan_offload(port_id, val);
1517 static int parse_cmd_set_vlan_filter(const char *str, struct input *input)
1522 if (sscanf(str, "%u %d %u", &port_id, &id, &val) != 3) {
1526 cmd_set_vlan_filter(port_id, id, val);
1530 static int parse_cmd_ring_info_all(const char *str, struct input *input)
1532 if (strcmp(str, "") != 0) {
1539 static int parse_cmd_port_up(const char *str, struct input *input)
1543 if (sscanf(str, "%u", &val) != 1) {
1551 static int parse_cmd_port_down(const char *str, struct input *input)
1555 if (sscanf(str, "%u", &val) != 1) {
1563 static int parse_cmd_port_link_state(const char *str, struct input *input)
1567 if (sscanf(str, "%u", &val) != 1) {
1571 if (!port_is_active(val))
1574 int active = prox_port_cfg[val].link_up;
1575 const char *state = active? "up\n" : "down\n";
1578 input->reply(input, state, strlen(state));
1580 plog_info("%s", state);
1585 static int parse_cmd_xstats(const char *str, struct input *input)
1589 if (sscanf(str, "%u", &val) != 1) {
1597 static int parse_cmd_stats(const char *str, struct input *input)
1599 if (strcmp(str, "") == 0)
1607 prox_strncpy(buf, str, sizeof(buf) - 1);
1611 while ((tok = strchr(str, ','))) {
1613 stat_val = stats_parser_get(str);
1615 ret += sprintf(ret, "%s%"PRIu64"", list? "," :"", stat_val);
1620 stat_val = stats_parser_get(str);
1621 ret += sprintf(ret, "%s%"PRIu64"", list? "," :"", stat_val);
1626 input->reply(input, ret2, strlen(ret2));
1628 plog_info("%s", ret2);
1632 static void replace_char(char *str, char to_replace, char by)
1634 for (size_t i = 0; str[i] != '\0'; ++i) {
1635 if (str[i] == to_replace)
1640 static int parse_cmd_port_info(const char *str, struct input *input)
1644 if (strcmp(str, "all") == 0) {
1647 else if (sscanf(str, "%d", &val) != 1) {
1651 char port_info[2048];
1653 cmd_portinfo(val, port_info, sizeof(port_info));
1656 replace_char(port_info, '\n', ',');
1657 port_info[strlen(port_info) - 1] = '\n';
1658 input->reply(input, port_info, strlen(port_info));
1660 plog_info("%s", port_info);
1665 static int parse_cmd_ring_info(const char *str, struct input *input)
1667 unsigned lcores[RTE_MAX_LCORE], task_id, nb_cores;
1669 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
1672 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
1673 for (unsigned int i = 0; i < nb_cores; i++) {
1674 cmd_ringinfo(lcores[i], task_id);
1680 static int parse_cmd_port_stats(const char *str, struct input *input)
1684 if (sscanf(str, "%u", &val) != 1) {
1688 struct get_port_stats s;
1689 if (stats_port(val, &s)) {
1690 plog_err("Invalid port %u\n", val);
1694 snprintf(buf, sizeof(buf),
1695 "%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64","
1696 "%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64","
1697 "%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64"\n",
1698 s.no_mbufs_diff, s.ierrors_diff + s.imissed_diff,
1699 s.rx_bytes_diff, s.tx_bytes_diff,
1700 s.rx_pkts_diff, s.tx_pkts_diff,
1702 s.no_mbufs_tot, s.ierrors_tot + s.imissed_tot,
1703 s.last_tsc, s.prev_tsc);
1704 plog_info("%s", buf);
1706 input->reply(input, buf, strlen(buf));
1710 static int parse_cmd_multi_port_stats(const char *str, struct input *input)
1712 uint32_t ports[PROX_MAX_PORTS];
1713 int nb_ports = parse_list_set(ports, str, PROX_MAX_PORTS);
1714 if (nb_ports <= 0) {
1718 char buf[PROX_MAX_PORTS * (11+5*21) + 1], *pbuf = buf;
1719 int left = sizeof(buf);
1720 for (int i = 0; i < nb_ports; ++i) {
1721 struct get_port_stats s;
1722 if (stats_port(ports[i], &s)) {
1723 plog_err("Invalid port %u\n", ports[i]);
1727 int len = snprintf(pbuf, left,
1729 "%"PRIu64",%"PRIu64","
1730 "%"PRIu64",%"PRIu64","
1732 //TODO: adjust buf size above when adding fields
1735 s.no_mbufs_tot, s.ierrors_tot + s.imissed_tot,
1737 if ((len < 0) || (len >= left)) {
1738 plog_err("Cannot print stats for port %u\n", ports[i]);
1747 plog_info("%s", buf);
1749 input->reply(input, buf, sizeof(buf) - left);
1753 static int parse_cmd_core_stats(const char *str, struct input *input)
1755 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
1757 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
1760 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
1761 for (unsigned int i = 0; i < nb_cores; i++) {
1762 lcore_id = lcores[i];
1763 uint64_t tot_rx = stats_core_task_tot_rx(lcore_id, task_id);
1764 uint64_t tot_tx = stats_core_task_tot_tx(lcore_id, task_id);
1765 uint64_t tot_drop = stats_core_task_tot_drop(lcore_id, task_id);
1766 uint64_t last_tsc = stats_core_task_last_tsc(lcore_id, task_id);
1770 snprintf(buf, sizeof(buf),
1771 "%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64"\n",
1772 tot_rx, tot_tx, tot_drop, last_tsc, rte_get_tsc_hz());
1773 input->reply(input, buf, strlen(buf));
1776 plog_info("RX: %"PRIu64", TX: %"PRIu64", DROP: %"PRIu64"\n",
1777 tot_rx, tot_tx, tot_drop);
1784 typedef void (*parser_handler)(unsigned, unsigned, struct input *);
1785 static int handle_cores_tasks(const char *str, struct input *input, const char *mode_str, const char *mode_name, parser_handler f)
1787 // This function either outputs a single line, in case of syntax error on the lists of cores and/or tasks
1788 // or outputs (nb_cores * nb_tasks) lines, one line for each core/task pair:
1789 // - if the core/task pair is invalid, the output line reports an error
1790 // - otherwise, the output line provides the latency statistics for the core/task pair
1792 unsigned lcores[RTE_MAX_LCORE], tasks[MAX_TASKS_PER_CORE], lcore_id, task_id, nb_cores, nb_tasks;
1793 if (parse_cores_tasks(str, lcores, tasks, &nb_cores, &nb_tasks)) {
1796 snprintf(buf, sizeof(buf), "error: invalid syntax\n");
1797 input->reply(input, buf, strlen(buf));
1802 for (unsigned int i = 0; i < nb_cores; i++) {
1803 for (unsigned int j = 0; j < nb_tasks; j++) {
1804 lcore_id = lcores[i];
1806 if (core_task_is_valid(lcore_id, task_id) == 0) {
1809 snprintf(buf, sizeof(buf), "error: invalid core %u, task %u\n", lcore_id, task_id);
1810 input->reply(input, buf, strlen(buf));
1812 plog_info("error: invalid core %u, task %u\n", lcore_id, task_id);
1816 if ((mode_str) && (!task_is_mode(lcore_id, task_id, mode_str))) {
1819 snprintf(buf, sizeof(buf), "error: core %u task %u is not measuring %s\n", lcore_id, task_id, mode_name);
1820 input->reply(input, buf, strlen(buf));
1822 plog_info("error: core %u task %u is not measuring %s\n", lcore_id, task_id, mode_name);
1826 f(lcore_id, task_id, input);
1832 static void handle_dp_core_stats(unsigned lcore_id, unsigned task_id, struct input *input)
1834 uint64_t tot_rx = stats_core_task_tot_rx(lcore_id, task_id);
1835 uint64_t tot_tx = stats_core_task_tot_tx(lcore_id, task_id);
1836 uint64_t tot_tx_fail = stats_core_task_tot_tx_fail(lcore_id, task_id);
1837 uint64_t tot_rx_non_dp = stats_core_task_tot_rx_non_dp(lcore_id, task_id);
1838 uint64_t tot_tx_non_dp = stats_core_task_tot_tx_non_dp(lcore_id, task_id);
1839 uint64_t tot_drop = stats_core_task_tot_drop(lcore_id, task_id);
1840 uint64_t last_tsc = stats_core_task_last_tsc(lcore_id, task_id);
1844 snprintf(buf, sizeof(buf),
1845 "%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%u,%u\n",
1846 tot_rx, tot_tx, tot_rx_non_dp, tot_tx_non_dp, tot_drop, tot_tx_fail, last_tsc, rte_get_tsc_hz(), lcore_id, task_id);
1847 input->reply(input, buf, strlen(buf));
1850 plog_info("core: %u, task: %u, RX: %"PRIu64", TX: %"PRIu64", RX_NON_DP: %"PRIu64", TX_NON_DP: %"PRIu64", DROP: %"PRIu64", TX_FAIL: %"PRIu64"\n",
1851 lcore_id, task_id, tot_rx, tot_tx, tot_rx_non_dp, tot_tx_non_dp, tot_drop, tot_tx_fail);
1855 static void handle_lat_stats(unsigned lcore_id, unsigned task_id, struct input *input)
1857 struct stats_latency *stats = stats_latency_find(lcore_id, task_id);
1858 struct stats_latency *tot = stats_latency_tot_find(lcore_id, task_id);
1859 if (!stats || !tot) {
1862 snprintf(buf, sizeof(buf),
1863 "error: core %u task %u stats = %p tot = %p\n",
1864 lcore_id, task_id, stats, tot);
1865 input->reply(input, buf, strlen(buf));
1867 plog_info("error: core %u task %u stats = %p tot = %p\n",
1868 lcore_id, task_id, stats, tot);
1873 uint64_t last_tsc = stats_core_task_last_tsc(lcore_id, task_id);
1874 uint64_t lat_min_usec = time_unit_to_usec(&stats->min.time);
1875 uint64_t lat_max_usec = time_unit_to_usec(&stats->max.time);
1876 uint64_t tot_lat_min_usec = time_unit_to_usec(&tot->min.time);
1877 uint64_t tot_lat_max_usec = time_unit_to_usec(&tot->max.time);
1878 uint64_t lat_avg_usec = time_unit_to_usec(&stats->avg.time);
1882 snprintf(buf, sizeof(buf),
1883 "%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%u,%u,%"PRIu64",%"PRIu64",%"PRIu64"\n",
1896 input->reply(input, buf, strlen(buf));
1899 plog_info("core: %u, task: %u, min: %"PRIu64", max: %"PRIu64", avg: %"PRIu64", min since reset: %"PRIu64", max since reset: %"PRIu64", mis_ordered: %"PRIu64", extent: %"PRIu64", duplicates: %"PRIu64"\n",
1913 #ifdef LATENCY_HISTOGRAM
1914 static void handle_latency_histogram(unsigned lcore_id, unsigned task_id, struct input *input)
1918 stats_core_lat_histogram(lcore_id, task_id, &buckets);
1920 if (buckets == NULL) {
1923 snprintf(buf, sizeof(buf), "error: unexpected NULL bucket\n");
1924 input->reply(input, buf, strlen(buf));
1930 char buf[4096] = {0};
1931 for (size_t i = 0; i < LAT_BUCKET_COUNT; i++)
1932 sprintf(buf+strlen(buf), "Bucket [%zu]: %"PRIu64"\n", i, buckets[i]);
1933 input->reply(input, buf, strlen(buf));
1936 for (size_t i = 0; i < LAT_BUCKET_COUNT; i++)
1938 plog_info("Bucket [%zu]: %"PRIu64"\n", i, buckets[i]);
1942 static void handle_stats_and_packets(unsigned lcore_id, unsigned task_id, struct input *input)
1944 handle_lat_stats(lcore_id, task_id, input);
1945 handle_latency_histogram(lcore_id, task_id, input);
1949 static int parse_cmd_dp_core_stats(const char *str, struct input *input)
1951 handle_cores_tasks(str, input, NULL, NULL, handle_dp_core_stats);
1955 static int parse_cmd_lat_stats(const char *str, struct input *input)
1957 handle_cores_tasks(str, input, "lat", "latency", handle_lat_stats);
1961 static int parse_cmd_lat_packets(const char *str, struct input *input)
1963 #ifdef LATENCY_HISTOGRAM
1964 handle_cores_tasks(str, input, "lat", "latency", handle_latency_histogram);
1968 snprintf(buf, sizeof(buf), "error: invalid syntax (LATENCY_HISTOGRAM disabled)\n");
1969 input->reply(input, buf, strlen(buf));
1971 plog_info("LATENCY_HISTOGRAMS disabled\n");
1977 static int parse_cmd_lat_stats_and_packets(const char *str, struct input *input)
1979 #ifdef LATENCY_HISTOGRAM
1980 handle_cores_tasks(str, input, "lat", "latency", handle_stats_and_packets);
1984 snprintf(buf, sizeof(buf), "error: invalid syntax (LATENCY_HISTOGRAMS disabled)\n");
1985 input->reply(input, buf, strlen(buf));
1987 plog_info("LATENCY_HISTOGRAMS disabled\n");
1993 static int parse_cmd_show_irq_buckets(const char *str, struct input *input)
1995 char buf[4096] = {0};
1997 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
1999 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
2002 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
2003 for (c = 0; c < nb_cores; c++) {
2004 lcore_id = lcores[c];
2005 get_irq_buckets_by_core_task(buf, lcore_id, task_id);
2006 plog_info("%s", buf);
2008 input->reply(input, buf, strlen(buf));
2015 static int parse_cmd_irq(const char *str, struct input *input)
2018 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
2020 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
2023 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
2024 for (c = 0; c < nb_cores; c++) {
2025 lcore_id = lcores[c];
2026 if (!task_is_mode(lcore_id, task_id, "irq")) {
2027 plog_err("Core %u task %u is not in irq mode\n", lcore_id, task_id);
2029 struct task_irq *task_irq = (struct task_irq *)(lcore_cfg[lcore_id].tasks_all[task_id]);
2031 task_irq_show_stats(task_irq, input);
2038 static int parse_cmd_cgnat_public_hash(const char *str, struct input *input)
2040 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
2042 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
2045 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
2046 for (unsigned int i = 0; i < nb_cores; i++) {
2047 lcore_id = lcores[i];
2049 if (!task_is_mode(lcore_id, task_id, "cgnat")) {
2050 plog_err("Core %u task %u is not cgnat\n", lcore_id, task_id);
2053 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
2054 task_cgnat_dump_public_hash((struct task_nat *)tbase);
2061 static int parse_cmd_cgnat_private_hash(const char *str, struct input *input)
2063 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
2066 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
2069 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
2070 for (unsigned int i = 0; i < nb_cores; i++) {
2071 lcore_id = lcores[i];
2073 if (!task_is_mode(lcore_id, task_id, "cgnat")) {
2074 plog_err("Core %u task %u is not cgnat\n", lcore_id, task_id);
2077 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
2078 task_cgnat_dump_private_hash((struct task_nat *)tbase);
2085 static int parse_cmd_accuracy(const char *str, struct input *input)
2087 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
2090 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
2092 if (!(str = strchr_skip_twice(str, ' ')))
2094 if (sscanf(str, "%"PRIu32"", &val) != 1)
2097 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
2098 for (unsigned int i = 0; i < nb_cores; i++) {
2099 lcore_id = lcores[i];
2101 if (!task_is_mode(lcore_id, task_id, "lat")) {
2102 plog_err("Core %u task %u is not measuring latency\n", lcore_id, task_id);
2105 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
2107 task_lat_set_accuracy_limit((struct task_lat *)tbase, val);
2114 static int parse_cmd_leave_igmp(const char *str, struct input *input)
2116 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
2118 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
2121 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
2122 for (unsigned int i = 0; i < nb_cores; i++) {
2123 lcore_id = lcores[i];
2125 if (!task_is_mode(lcore_id, task_id, "swap")) {
2126 plog_err("Core %u task %u is not running swap\n", lcore_id, task_id);
2129 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
2130 igmp_leave_group(tbase);
2137 static int parse_cmd_join_igmp(const char *str, struct input *input)
2139 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
2141 uint8_t *igmp_bytes = (uint8_t *)&igmp_ip;
2143 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
2145 if (!(str = strchr_skip_twice(str, ' ')))
2147 if (sscanf(str, "%hhu.%hhu.%hhu.%hhu", igmp_bytes, igmp_bytes + 1, igmp_bytes + 2, igmp_bytes + 3) != 4) {
2150 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
2151 for (unsigned int i = 0; i < nb_cores; i++) {
2152 lcore_id = lcores[i];
2154 if (!task_is_mode(lcore_id, task_id, "swap")) {
2155 plog_err("Core %u task %u is not running swap\n", lcore_id, task_id);
2158 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
2159 igmp_join_group(tbase, igmp_ip);
2166 static int parse_cmd_send_unsollicited_na(const char *str, struct input *input)
2168 unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
2170 if (parse_cores_task(str, lcores, &task_id, &nb_cores))
2173 if (cores_task_are_valid(lcores, task_id, nb_cores)) {
2174 for (unsigned int i = 0; i < nb_cores; i++) {
2175 lcore_id = lcores[i];
2177 if (!task_is_sub_mode(lcore_id, task_id, "ndp")) {
2178 plog_err("Core %u task %u is not running ndp\n", lcore_id, task_id);
2181 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
2182 send_unsollicited_neighbour_advertisement(tbase);
2189 static int parse_cmd_rx_tx_info(const char *str, struct input *input)
2191 if (strcmp(str, "") != 0) {
2199 static int parse_cmd_version(const char *str, struct input *input)
2201 if (strcmp(str, "") != 0) {
2207 ((uint64_t)VERSION_MAJOR) << 24 |
2208 ((uint64_t)VERSION_MINOR) << 16 |
2209 ((uint64_t)VERSION_REV) << 8;
2212 snprintf(buf, sizeof(buf), "%"PRIu64",%"PRIu64"\n", version, (uint64_t)RTE_VERSION);
2213 input->reply(input, buf, strlen(buf));
2216 plog_info("prox version: %d.%d, DPDK version: %s\n",
2217 VERSION_MAJOR, VERSION_MINOR,
2218 rte_version() + sizeof(RTE_VER_PREFIX));
2227 int (*parse)(const char *args, struct input *input);
2230 static int parse_cmd_help(const char *str, struct input *input);
2232 static struct cmd_str cmd_strings[] = {
2233 {"history", "", "Print command history", parse_cmd_history},
2234 {"echo", "", "echo parameter, useful to resolving variables", parse_cmd_echo},
2235 {"quit", "", "Stop all cores and quit", parse_cmd_quit},
2236 {"quit_force", "", "Quit without waiting on cores to stop", parse_cmd_quit_force},
2237 {"help", "<substr>", "Show list of commands that have <substr> as a substring. If no substring is provided, all commands are shown.", parse_cmd_help},
2238 {"verbose", "<level>", "Set verbosity level", parse_cmd_verbose},
2239 {"thread info", "<core_id> <task_id>", "", parse_cmd_thread_info},
2240 {"mem info", "", "Show information about system memory (number of huge pages and addresses of these huge pages)", parse_cmd_mem_info},
2241 {"update interval", "<value>", "Update statistics refresh rate, in msec (must be >=10). Default is 1 second", parse_cmd_update_interval},
2242 {"rx tx info", "", "Print connections between tasks on all cores", parse_cmd_rx_tx_info},
2243 {"start", "<core list>|all <task_id>", "Start core <core_id> or all cores", parse_cmd_start},
2244 {"stop", "<core list>|all <task_id>", "Stop core <core id> or all cores", parse_cmd_stop},
2246 {"dump", "<core id> <task id> <nb packets>", "Create a hex dump of <nb_packets> from <task_id> on <core_id> showing how packets have changed between RX and TX.", parse_cmd_trace},
2247 {"dump_rx", "<core id> <task id> <nb packets>", "Create a hex dump of <nb_packets> from <task_id> on <core_id> at RX", parse_cmd_dump_rx},
2248 {"dump_tx", "<core id> <task id> <nb packets>", "Create a hex dump of <nb_packets> from <task_id> on <core_id> at TX", parse_cmd_dump_tx},
2249 {"rx distr start", "", "Start gathering statistical distribution of received packets", parse_cmd_rx_distr_start},
2250 {"rx distr stop", "", "Stop gathering statistical distribution of received packets", parse_cmd_rx_distr_stop},
2251 {"rx distr reset", "", "Reset gathered statistical distribution of received packets", parse_cmd_rx_distr_reset},
2252 {"rx distr show", "", "Display gathered statistical distribution of received packets", parse_cmd_rx_distr_show},
2253 {"tx distr start", "", "Start gathering statistical distribution of xmitted packets", parse_cmd_tx_distr_start},
2254 {"tx distr stop", "", "Stop gathering statistical distribution of xmitted packets", parse_cmd_tx_distr_stop},
2255 {"tx distr reset", "", "Reset gathered statistical distribution of xmitted packets", parse_cmd_tx_distr_reset},
2256 {"tx distr show", "", "Display gathered statistical distribution of xmitted packets", parse_cmd_tx_distr_show},
2258 {"rate", "<port id> <queue id> <rate>", "rate does not include preamble, SFD and IFG", parse_cmd_rate},
2259 {"count","<core id> <task id> <count>", "Generate <count> packets", parse_cmd_count},
2260 {"bypass", "<core_id> <task_id>", "Bypass task", parse_cmd_bypass},
2261 {"reconnect", "<core_id> <task_id>", "Reconnect task", parse_cmd_reconnect},
2262 {"pkt_size", "<core_id> <task_id> <pkt_size>", "Set the packet size to <pkt_size>", parse_cmd_pkt_size},
2263 {"imix", "<core_id> <task_id> <pkt_size,pkt_size ... >", "Set the packet sizes to <pkt_size>", parse_cmd_imix},
2264 {"speed", "<core_id> <task_id> <speed percentage>", "Change the speed to <speed percentage> at which packets are being generated on core <core_id> in task <task_id>.", parse_cmd_speed},
2265 {"speed_byte", "<core_id> <task_id> <speed>", "Change speed to <speed>. The speed is specified in units of bytes per second.", parse_cmd_speed_byte},
2266 {"set value", "<core_id> <task_id> <offset> <value> <value_len>", "Set <value_len> bytes to <value> at offset <offset> in packets generated on <core_id> <task_id>", parse_cmd_set_value},
2267 {"set random", "<core_id> <task_id> <offset> <random_str> <value_len>", "Set <value_len> bytes to <rand_str> at offset <offset> in packets generated on <core_id> <task_id>", parse_cmd_set_random},
2268 {"reset values all", "", "Undo all \"set value\" commands on all cores/tasks", parse_cmd_reset_values_all},
2269 {"reset randoms all", "", "Undo all \"set random\" commands on all cores/tasks", parse_cmd_reset_randoms_all},
2270 {"reset values", "<core id> <task id>", "Undo all \"set value\" commands on specified core/task", parse_cmd_reset_values},
2272 {"arp add", "<core id> <task id> <port id> <gre id> <svlan> <cvlan> <ip addr> <mac addr> <user>", "Add a single ARP entry into a CPE table on <core id>/<task id>.", parse_cmd_arp_add},
2273 {"rule add", "<core id> <task id> svlan_id&mask cvlan_id&mask ip_proto&mask source_ip/prefix destination_ip/prefix range dport_range action", "Add a rule to the ACL table on <core id>/<task id>", parse_cmd_rule_add},
2274 {"route add", "<core id> <task id> <ip/prefix> <next hop id>", "Add a route to the routing table on core <core id> <task id>. Example: route add 10.0.16.0/24 9", parse_cmd_route_add},
2275 {"gateway ip", "<core id> <task id> <ip>", "Define/Change IP address of destination gateway on core <core id> <task id>.", parse_cmd_gateway_ip},
2276 {"local ip", "<core id> <task id> <ip>", "Define/Change IP address of destination gateway on core <core id> <task id>.", parse_cmd_local_ip},
2278 {"pps unit", "", "Change core stats pps unit", parse_cmd_pps_unit},
2279 {"reset stats", "", "Reset all statistics", parse_cmd_reset_stats},
2280 {"reset lat stats", "", "Reset all latency statistics", parse_cmd_reset_lat_stats},
2281 {"tot stats", "", "Print total RX and TX packets", parse_cmd_tot_stats},
2282 {"tot ierrors tot", "", "Print total number of ierrors since reset", parse_cmd_tot_ierrors_tot},
2283 {"tot imissed tot", "", "Print total number of imissed since reset", parse_cmd_tot_imissed_tot},
2284 {"lat stats", "<core id> <task id>", "Print min,max,avg latency as measured during last sampling interval", parse_cmd_lat_stats},
2285 {"irq stats", "<core id> <task id>", "Print irq related infos", parse_cmd_irq},
2286 {"show irq buckets", "<core id> <task id>", "Print irq buckets", parse_cmd_show_irq_buckets},
2287 {"lat packets", "<core id> <task id>", "Print the latency for each of the last set of packets", parse_cmd_lat_packets},
2288 {"lat all stats", "<core id> <task id>", "Print the latency for each of the last set of packets as well as latency distribution", parse_cmd_lat_stats_and_packets},
2289 {"accuracy limit", "<core id> <task id> <nsec>", "Only consider latency of packets that were measured with an error no more than <nsec>", parse_cmd_accuracy},
2290 {"core stats", "<core id> <task id>", "Print rx/tx/drop for task <task id> running on core <core id>", parse_cmd_core_stats},
2291 {"dp core stats", "<core id> <task id>", "Print rx/tx/non_dp_rx/non_dp_tx/drop for task <task id> running on core <core id>", parse_cmd_dp_core_stats},
2292 {"port_stats", "<port id>", "Print rate for no_mbufs, ierrors + imissed, rx_bytes, tx_bytes, rx_pkts, tx_pkts; totals for RX, TX, no_mbufs, ierrors + imissed for port <port id>", parse_cmd_port_stats},
2293 {"multi port stats", "<port list>", "Get stats for multiple ports, semi-colon separated: port id, total for rx_pkts, tx_pkts, no_mbufs, ierrors + imissed, last_tsc", parse_cmd_multi_port_stats},
2294 {"read reg", "", "Read register", parse_cmd_read_reg},
2295 {"write reg", "", "Read register", parse_cmd_write_reg},
2296 {"set vlan offload", "", "Set Vlan offload", parse_cmd_set_vlan_offload},
2297 {"set vlan filter", "", "Set Vlan filter", parse_cmd_set_vlan_filter},
2298 {"reset cache", "", "Reset cache", parse_cmd_cache_reset},
2299 {"set cache class mask", "<core id> <class> <mask>", "Set cache class mask for <core id>", parse_cmd_set_cache_class_mask},
2300 {"get cache class mask", "<core id> <class>", "Get cache class mask", parse_cmd_get_cache_class_mask},
2301 {"set cache class", "<core id> <class>", "Set cache class", parse_cmd_set_cache_class},
2302 {"get cache class", "<core id>", "Get cache class", parse_cmd_get_cache_class},
2303 {"get cache mask", "<core id>", "Get cache mask", parse_cmd_get_cache_mask},
2304 {"reset port", "<port id>", "Reset port", parse_cmd_reset_port},
2305 {"enable multicast", "<port id> <MAC>", "Enable multicast", parse_cmd_enable_multicast},
2306 {"disable multicast", "<port id> <MAC>", "Disable multicast", parse_cmd_disable_multicast},
2307 {"ring info all", "", "Get information about ring, such as ring size and number of elements in the ring", parse_cmd_ring_info_all},
2308 {"ring info", "<core id> <task id>", "Get information about ring on core <core id> in task <task id>, such as ring size and number of elements in the ring", parse_cmd_ring_info},
2309 {"port info", "<port id> [brief?]", "Get port related information, such as MAC address, socket, number of descriptors..., . Adding \"brief\" after command prints short version of output.", parse_cmd_port_info},
2310 {"port up", "<port id>", "Set the port up", parse_cmd_port_up},
2311 {"port down", "<port id>", "Set the port down", parse_cmd_port_down},
2312 {"port link state", "<port id>", "Get link state (up or down) for port", parse_cmd_port_link_state},
2313 {"port xstats", "<port id>", "Get extra statistics for the port", parse_cmd_xstats},
2314 {"stats", "<stats_path>", "Get stats as specified by <stats_path>. A comma-separated list of <stats_path> can be supplied", parse_cmd_stats},
2315 {"cgnat dump public hash", "<core id> <task id>", "Dump cgnat public hash table", parse_cmd_cgnat_public_hash},
2316 {"cgnat dump private hash", "<core id> <task id>", "Dump cgnat private hash table", parse_cmd_cgnat_private_hash},
2317 {"delay_us", "<core_id> <task_id> <delay_us>", "Set the delay in usec for the impair mode to <delay_us>", parse_cmd_delay_us},
2318 {"random delay_us", "<core_id> <task_id> <random delay_us>", "Set the delay in usec for the impair mode to <random delay_us>", parse_cmd_random_delay_us},
2319 {"probability", "<core_id> <task_id> <probability>", "Old - Use <proba no drop> instead. Set the percent of forwarded packets for the impair mode", parse_cmd_set_proba_no_drop}, // old - backward compatibility
2320 {"proba no drop", "<core_id> <task_id> <probability>", "Set the percent of forwarded packets for the impair mode", parse_cmd_set_proba_no_drop},
2321 {"proba delay", "<core_id> <task_id> <probability>", "Set the percent of delayed packets for the impair mode", parse_cmd_set_proba_delay},
2322 #if RTE_VERSION >= RTE_VERSION_NUM(19,11,0,0)
2323 {"proba duplicate", "<core_id> <task_id> <probability>", "Set the percent of duplicate packets for the impair mode", parse_cmd_set_proba_duplicate},
2325 {"version", "", "Show version", parse_cmd_version},
2326 {"join igmp", "<core_id> <task_id> <ip>", "Send igmp membership report for group <ip>", parse_cmd_join_igmp},
2327 {"leave igmp", "<core_id> <task_id>", "Send igmp leave group", parse_cmd_leave_igmp},
2328 {"send unsollicited na", "<core_id> <task_id>", "Send Unsollicited Neighbor Advertisement", parse_cmd_send_unsollicited_na},
2332 static int parse_cmd_help(const char *str, struct input *input)
2334 /* str contains the arguments, all commands that have str as a
2335 substring will be shown. */
2336 size_t len, len2, longest_cmd = 0;
2337 for (size_t i = 0; i < cmd_parser_n_cmd(); ++i) {
2338 if (longest_cmd <strlen(cmd_strings[i].cmd))
2339 longest_cmd = strlen(cmd_strings[i].cmd);
2341 /* A single call to log will be executed after the help string
2342 has been built. The reason for this is to make use of the
2344 char buf[32768] = {0};
2346 for (size_t i = 0; i < cmd_parser_n_cmd(); ++i) {
2348 const size_t cmd_len = strlen(cmd_strings[i].cmd);
2349 for (size_t j = 0; j < cmd_len; ++j) {
2351 for (size_t k = 0; k < strlen(str); ++k) {
2352 if (str[k] != (cmd_strings[i].cmd + j)[k]) {
2363 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%s", cmd_strings[i].cmd);
2364 len = strlen(cmd_strings[i].cmd);
2365 while (len < longest_cmd) {
2367 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " ");
2370 if (strlen(cmd_strings[i].args)) {
2371 char tmp[256] = {0};
2372 prox_strncpy(tmp, cmd_strings[i].args, 128);
2373 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "Arguments: %s\n", tmp);
2375 if (strlen(cmd_strings[i].help)) {
2378 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " ");
2383 if (strlen(cmd_strings[i].help)) {
2385 const char *h = cmd_strings[i].help;
2391 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " ");
2394 char tmp[128] = {0};
2395 const size_t max_len = strlen(h) > 80? 80 : strlen(h);
2396 size_t len3 = max_len;
2398 while (len3 && h[len3] != ' ')
2404 // Use strncpy here and not prox_strncpy. The dest (tmp) has been initialized with 0.
2405 // The fact that we are copying 80 characters potentially not null terminated is hence not an issue.
2406 // Using prox_strncpy here might cause a PROX_PANIC
2407 strncpy(tmp, h, len3);
2409 while (h[0] == ' ' && strlen(h))
2412 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%s\n", tmp);
2416 if (strlen(cmd_strings[i].help) == 0&& strlen(cmd_strings[i].args) == 0) {
2417 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "\n");
2420 plog_info("%s", buf);
2425 const char *cmd_parser_cmd(size_t i)
2427 i = i < cmd_parser_n_cmd()? i: cmd_parser_n_cmd();
2428 return cmd_strings[i].cmd;
2431 size_t cmd_parser_n_cmd(void)
2433 return sizeof(cmd_strings)/sizeof(cmd_strings[0]) - 1;
2436 void cmd_parser_parse(const char *str, struct input *input)
2440 for (size_t i = 0; i < cmd_parser_n_cmd(); ++i) {
2441 skip = strlen(cmd_strings[i].cmd);
2442 if (strncmp(cmd_strings[i].cmd, str, skip) == 0 &&
2443 (str[skip] == ' ' || str[skip] == 0)) {
2444 while (str[skip] == ' ')
2447 if (cmd_strings[i].parse(str + skip, input) != 0) {
2448 plog_warn("Invalid syntax for command '%s': %s %s\n",
2449 cmd_strings[i].cmd, cmd_strings[i].args, cmd_strings[i].help);
2455 plog_err("Unknown command: '%s'\n", str);