Added support for VLAN in IPv6
[samplevnf.git] / VNFs / DPPD-PROX / cmd_parser.c
1 /*
2 // Copyright (c) 2010-2020 Intel Corporation
3 //
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
7 //
8 //     http://www.apache.org/licenses/LICENSE-2.0
9 //
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.
15 */
16
17 #include <stdio.h>
18 #include <string.h>
19 #include <unistd.h>
20 #include <rte_cycles.h>
21 #include <rte_version.h>
22
23 #include "input.h"
24 #include "cmd_parser.h"
25 #include "commands.h"
26 #include "run.h"
27 #include "display.h"
28 #include "log.h"
29 #include "prox_cfg.h"
30 #include "prox_port_cfg.h"
31 #include "task_base.h"
32 #include "lconf.h"
33 #include "main.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"
40
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"
48 #include "defines.h"
49 #include "prox_cfg.h"
50 #include "version.h"
51 #include "stats_latency.h"
52 #include "handle_cgnat.h"
53 #include "handle_impair.h"
54 #include "rx_pkt.h"
55 #include "prox_compat.h"
56 #include "igmp.h"
57
58 static int core_task_is_valid(int lcore_id, int task_id)
59 {
60         if (lcore_id >= RTE_MAX_LCORE) {
61                 plog_err("Invalid core id %u (lcore ID above %d)\n", lcore_id, RTE_MAX_LCORE);
62                 return 0;
63         }
64         else if (!prox_core_active(lcore_id, 0)) {
65                 plog_err("Invalid core id %u (lcore is not active)\n", lcore_id);
66                 return 0;
67         }
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);
71                 return 0;
72         }
73         return 1;
74 }
75
76 static int cores_task_are_valid(unsigned int *lcores, int task_id, unsigned int nb_cores)
77 {
78         unsigned int lcore_id;
79         for (unsigned int i = 0; i < nb_cores; i++) {
80                 lcore_id = lcores[i];
81                 if (core_task_is_valid(lcore_id, task_id) == 0)
82                         return 0;
83         }
84         return 1;
85 }
86
87 static int parse_cores_task(const char *str, uint32_t *lcore_id, uint32_t *task_id, unsigned *nb_cores)
88 {
89         char str_lcore_id[128];
90         int ret;
91
92         if (2 != sscanf(str, "%s %u", str_lcore_id, task_id))
93                 return -1;
94
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());
97                 return -1;
98         }
99         *nb_cores = ret;
100
101         return 0;
102 }
103
104 static int parse_cores_tasks(const char *str, uint32_t *lcore_id, uint32_t *task_id, unsigned *nb_cores, unsigned *nb_tasks)
105 {
106         char str_lcore_id[128], str_task_id[128];
107         int ret;
108
109         if (2 != sscanf(str, "%s %s", str_lcore_id, str_task_id))
110                 return -1;
111
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());
114                 return -1;
115         }
116         *nb_cores = ret;
117
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());
120                 return -1;
121         }
122         *nb_tasks = ret;
123
124         return 0;
125 }
126
127 static const char *strchr_skip_twice(const char *str, int chr)
128 {
129         str = strchr(str, chr);
130         if (!str)
131                 return NULL;
132         str = str + 1;
133
134         str = strchr(str, chr);
135         if (!str)
136                 return NULL;
137         return str + 1;
138 }
139
140 static int parse_cmd_quit(const char *str, struct input *input)
141 {
142         if (strcmp(str, "") != 0) {
143                 return -1;
144         }
145
146         quit();
147         return 0;
148 }
149
150 static int parse_cmd_quit_force(const char *str, struct input *input)
151 {
152         if (strcmp(str, "") != 0) {
153                 return -1;
154         }
155
156         abort();
157 }
158
159 static int parse_cmd_history(const char *str, struct input *input)
160 {
161         if (strcmp(str, "") != 0) {
162                 return -1;
163         }
164
165         if (input->history) {
166                 input->history(input);
167                 return 0;
168         }
169         plog_err("Invalid history comand ");
170         return -1;
171 }
172
173 static int parse_cmd_echo(const char *str, struct input *input)
174 {
175         if (strcmp(str, "") == 0) {
176                 return -1;
177         }
178
179         char resolved[2048];
180
181         if (parse_vars(resolved, sizeof(resolved), str)) {
182                 return 0;
183         }
184
185         if (input->reply) {
186                 if (strlen(resolved) + 2 < sizeof(resolved)) {
187                         resolved[strlen(resolved) + 1] = 0;
188                         resolved[strlen(resolved)] = '\n';
189                 }
190                 else
191                         return 0;
192
193                 input->reply(input, resolved, strlen(resolved));
194         } else
195                 plog_info("%s\n", resolved);
196
197         return 0;
198 }
199
200 static int parse_cmd_reset_stats(const char *str, struct input *input)
201 {
202         if (strcmp(str, "") != 0) {
203                 return -1;
204         }
205
206         stats_reset();
207         return 0;
208 }
209
210 static int parse_cmd_reset_lat_stats(const char *str, struct input *input)
211 {
212         if (strcmp(str, "") != 0) {
213                 return -1;
214         }
215
216         stats_latency_reset();
217         return 0;
218 }
219
220 static int parse_cmd_trace(const char *str, struct input *input)
221 {
222         unsigned lcores[RTE_MAX_LCORE], task_id, nb_packets, nb_cores;
223
224         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
225                 return -1;
226         if (!(str = strchr_skip_twice(str, ' ')))
227                 return -1;
228         if (sscanf(str, "%u", &nb_packets) != 1)
229                 return -1;
230
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);
234                 }
235         }
236         return 0;
237 }
238
239 static int parse_cmd_dump_rx(const char *str, struct input *input)
240 {
241         unsigned lcores[RTE_MAX_LCORE], task_id, nb_packets, nb_cores;
242
243         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
244                 return -1;
245         if (!(str = strchr_skip_twice(str, ' ')))
246                 return -1;
247         if (sscanf(str, "%u", &nb_packets) != 1) {
248                 return -1;
249         }
250
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);
255                                 return -1;
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);
258                                 return -1;
259                         } else {
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");
266                                         return -1;
267                                 }
268                         }
269                         cmd_dump(lcores[i], task_id, nb_packets, input, 1, 0);
270                 }
271         }
272         return 0;
273 }
274
275 static int parse_cmd_pps_unit(const char *str, struct input *input)
276 {
277         uint32_t val;
278
279         if (sscanf(str, "%u", &val) != 1) {
280                 return -1;
281         }
282         display_set_pps_unit(val);
283         return 0;
284 }
285
286 static int parse_cmd_dump_tx(const char *str, struct input *input)
287 {
288         unsigned lcores[RTE_MAX_LCORE], task_id, nb_packets, nb_cores;
289
290         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
291                 return -1;
292         if (!(str = strchr_skip_twice(str, ' ')))
293                 return -1;
294         if (sscanf(str, "%u", &nb_packets) != 1) {
295                 return -1;
296         }
297
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);
301                 }
302         }
303         return 0;
304 }
305
306 static int parse_cmd_rate(const char *str, struct input *input)
307 {
308         unsigned queue, port, rate;
309
310         if (sscanf(str, "%u %u %u", &queue, &port, &rate) != 3) {
311                 return -1;
312         }
313
314         if (port > PROX_MAX_PORTS) {
315                 plog_err("Max port id allowed is %u (specified %u)\n", PROX_MAX_PORTS, port);
316         }
317         else if (!prox_port_cfg[port].active) {
318                 plog_err("Port %u not active\n", port);
319         }
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);
323         }
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);
327         }
328         else {
329                 if (rate == 0) {
330                         plog_info("Disabling rate limiting on port %u queue %u\n",
331                                   port, queue);
332                 }
333                 else {
334                         plog_info("Setting rate limiting to %u Mbps on port %u queue %u\n",
335                                   rate, port, queue);
336                 }
337                 rte_eth_set_queue_rate_limit(port, queue, rate);
338         }
339         return 0;
340 }
341
342 int task_is_mode_and_submode(uint32_t lcore_id, uint32_t task_id, const char *mode, const char *sub_mode)
343 {
344         struct task_args *targs = &lcore_cfg[lcore_id].targs[task_id];
345
346         return !strcmp(targs->task_init->mode_str, mode) && !strcmp(targs->sub_mode_str, sub_mode);
347 }
348
349 int task_is_mode(uint32_t lcore_id, uint32_t task_id, const char *mode)
350 {
351         struct task_init *t = lcore_cfg[lcore_id].targs[task_id].task_init;
352
353         return !strcmp(t->mode_str, mode);
354 }
355
356 int task_is_sub_mode(uint32_t lcore_id, uint32_t task_id, const char *sub_mode)
357 {
358         struct task_args *targs = &lcore_cfg[lcore_id].targs[task_id];
359
360         return !strcmp(targs->sub_mode_str, sub_mode);
361 }
362
363 static void log_pkt_count(uint32_t count, uint32_t lcore_id, uint32_t task_id)
364 {
365         if (count == UINT32_MAX)
366                 plog_info("Core %u task %u will keep sending packets\n", lcore_id, task_id);
367         else if (count == 0)
368                 plog_info("Core %u task %u waits for next count command\n", lcore_id, task_id);
369         else
370                 plog_info("Core %u task %u stopping after %u packets\n", lcore_id, task_id, count);
371 }
372
373 static int parse_cmd_count(const char *str, struct input *input)
374 {
375         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, count, nb_cores;
376
377         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
378                 return -1;
379         if (!(str = strchr_skip_twice(str, ' ')))
380                 return -1;
381         if (sscanf(str, "%u", &count) != 1)
382                 return -1;
383
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);
389                         }
390                         else {
391                                 struct task_base *task = lcore_cfg[lcore_id].tasks_all[task_id];
392
393                                 log_pkt_count(count, lcore_id, task_id);
394                                 task_gen_set_pkt_count(task, count);
395                         }
396                 }
397         }
398         return 0;
399 }
400
401 static int parse_cmd_set_proba_no_drop(const char *str, struct input *input)
402 {
403         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
404         float proba_no_drop;
405
406         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
407                 return -1;
408         if (!(str = strchr_skip_twice(str, ' ')))
409                 return -1;
410         if (sscanf(str, "%f", &proba_no_drop) != 1)
411                 return -1;
412
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);
418                         } else {
419                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
420                                 task_impair_set_proba_no_drop(tbase, proba_no_drop);
421                         }
422                 }
423         }
424         return 0;
425 }
426
427 static int parse_cmd_set_proba_delay(const char *str, struct input *input)
428 {
429         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
430         float proba_delay;
431
432         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
433                 return -1;
434         if (!(str = strchr_skip_twice(str, ' ')))
435                 return -1;
436         if (sscanf(str, "%f", &proba_delay) != 1)
437                 return -1;
438
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);
444                         } else {
445                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
446                                 task_impair_set_proba_delay(tbase, proba_delay);
447                         }
448                 }
449         }
450         return 0;
451 }
452
453 static int parse_cmd_set_proba_duplicate(const char *str, struct input *input)
454 {
455         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
456         float proba_duplicate;
457
458         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
459                 return -1;
460         if (!(str = strchr_skip_twice(str, ' ')))
461                 return -1;
462         if (sscanf(str, "%f", &proba_duplicate) != 1)
463                 return -1;
464
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);
470                         } else {
471                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
472                                 task_impair_set_proba_duplicate(tbase, proba_duplicate);
473                         }
474                 }
475         }
476         return 0;
477 }
478
479 static int parse_cmd_delay_us(const char *str, struct input *input)
480 {
481         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, delay_us, nb_cores;
482
483         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
484                 return -1;
485         if (!(str = strchr_skip_twice(str, ' ')))
486                 return -1;
487         if (sscanf(str, "%d", &delay_us) != 1)
488                 return -1;
489
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);
495                         } else {
496                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
497                                 task_impair_set_delay_us(tbase, delay_us, 0);
498                         }
499                 }
500         }
501         return 0;
502 }
503
504 static int parse_cmd_random_delay_us(const char *str, struct input *input)
505 {
506         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, delay_us, nb_cores;
507
508         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
509                 return -1;
510         if (!(str = strchr_skip_twice(str, ' ')))
511                 return -1;
512         if (sscanf(str, "%d", &delay_us) != 1)
513                 return -1;
514
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);
520                         } else {
521                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
522                                 task_impair_set_delay_us(tbase, 0, delay_us);
523                         }
524                 }
525         }
526         return 0;
527 }
528
529 static int parse_cmd_bypass(const char *str, struct input *input)
530 {
531         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, pkt_size, nb_cores;
532
533         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
534                 return -1;
535         if ((prox_cfg.flags & DSF_ENABLE_BYPASS) == 0) {
536                 plog_err("enable bypass not set => command not supported\n");
537                 return -1;
538         }
539
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)
544                                 return -1;
545                 }
546         }
547         return 0;
548 }
549
550 static int parse_cmd_reconnect(const char *str, struct input *input)
551 {
552         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, pkt_size, nb_cores;
553
554         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
555                 return -1;
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)
560                                 return -1;
561                 }
562         }
563         return 0;
564 }
565
566 static int parse_cmd_pkt_size(const char *str, struct input *input)
567 {
568         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, pkt_size, nb_cores;
569
570         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
571                 return -1;
572         if (!(str = strchr_skip_twice(str, ' ')))
573                 return -1;
574         if (sscanf(str, "%d", &pkt_size) != 1)
575                 return -1;
576
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);
582                         } else {
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 */
585                         }
586                 }
587         }
588         return 0;
589 }
590
591 static int parse_cmd_imix(const char *str, struct input *input)
592 {
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;
596
597         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
598                 return -1;
599         if (!(str = strchr_skip_twice(str, ' ')))
600                 return -1;
601         while (pkt_index < MAX_IMIX_PKTS) {
602                 if (sscanf(str, "%d", &pkt_sizes[pkt_index]) != 1)
603                         break;
604                 pkt_index++;
605                 if ((str = strchr(str, ',')) == NULL)
606                         break;
607                 str = str + 1;
608         }
609         if (pkt_index == 0) {
610                 plog_err("No pkt size found\n");
611                 return -1;
612         }
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);
615                 return -1;
616         }
617
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);
623                         } else {
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 */
626                         }
627                 }
628         }
629         return 0;
630 }
631
632 static int parse_cmd_speed(const char *str, struct input *input)
633 {
634         unsigned lcores[RTE_MAX_LCORE], task_id, lcore_id, nb_cores;
635         float speed;
636         unsigned i;
637
638         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
639                 return -1;
640         if (!(str = strchr_skip_twice(str, ' ')))
641                 return -1;
642         if (sscanf(str, "%f", &speed) != 1) {
643                 return -1;
644         }
645
646         if (!cores_task_are_valid(lcores, task_id, nb_cores)) {
647                 return 0;
648         }
649
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);
654                 }
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");
657                 }
658                 else {
659                         struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
660                         uint64_t bps = speed * 12500000;
661
662                         plog_info("Setting rate to %"PRIu64" Bps\n", bps);
663
664                         task_gen_set_rate(tbase, bps);
665                 }
666         }
667         return 0;
668 }
669
670 static int parse_cmd_speed_byte(const char *str, struct input *input)
671 {
672         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
673         uint64_t bps;
674
675         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
676                 return -1;
677         if (!(str = strchr_skip_twice(str, ' ')))
678                 return -1;
679         if (sscanf(str, "%"PRIu64"", &bps) != 1)
680                 return -1;
681
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];
685
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);
688                         }
689                         else if (bps > 12500000000) {   // Up to 100Gbps
690                                 plog_err("Speed out of range (must be <= 12500000000)\n");
691                         }
692                         else {
693                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
694
695                                 plog_info("Setting rate to %"PRIu64" Bps\n", bps);
696                                 task_gen_set_rate(tbase, bps);
697                         }
698                 }
699         }
700         return 0;
701 }
702
703 static int parse_cmd_reset_randoms_all(const char *str, struct input *input)
704 {
705         if (strcmp(str, "") != 0) {
706                 return -1;
707         }
708
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);
715
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);
718                         }
719                 }
720         }
721         return 0;
722 }
723
724 static int parse_cmd_reset_values_all(const char *str, struct input *input)
725 {
726         if (strcmp(str, "") != 0) {
727                 return -1;
728         }
729
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];
735
736                                 plog_info("Resetting values on core %d task %d\n", lcore_id, task_id);
737                                 task_gen_reset_values(tbase);
738                         }
739                 }
740         }
741         return 0;
742 }
743
744 static int parse_cmd_reset_values(const char *str, struct input *input)
745 {
746         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
747
748         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
749                 return -1;
750
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);
756                         }
757                         else {
758                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
759
760                                 plog_info("Resetting values on core %d task %d\n", lcore_id, task_id);
761                                 task_gen_reset_values(tbase);
762                         }
763                 }
764         }
765         return 0;
766 }
767
768 static int parse_cmd_set_value(const char *str, struct input *input)
769 {
770         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, value, nb_cores;
771         unsigned short offset;
772         uint8_t value_len;
773
774         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
775                 return -1;
776         if (!(str = strchr_skip_twice(str, ' ')))
777                 return -1;
778         if (sscanf(str, "%hu %u %hhu", &offset, &value, &value_len) != 3) {
779                 return -1;
780         }
781
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);
787                         }
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");
791                         }
792                         else {
793                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
794
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);
797                                 else
798                                         plog_info("Setting Byte %"PRIu16" to %"PRIu32"\n", offset, value);
799                         }
800                 }
801         }
802         return 0;
803 }
804
805 static int parse_cmd_set_random(const char *str, struct input *input)
806 {
807         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
808         unsigned short offset;
809         uint8_t value_len;
810         char rand_str[64];
811         int16_t rand_id = -1;
812
813         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
814                 return -1;
815         if (!(str = strchr_skip_twice(str, ' ')))
816                 return -1;
817         if (sscanf(str, "%hu %32s %hhu", &offset, rand_str, &value_len) != 3) {
818                 return -1;
819         }
820
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);
826                         }
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);
829                         }
830                         else if (value_len > 4) {
831                                 plog_err("Length out of range (must be less then 4)\n");
832                         } else {
833                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
834
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);
837                                 }
838                         }
839                 }
840         }
841         return 0;
842 }
843
844 static int parse_cmd_thread_info(const char *str, struct input *input)
845 {
846         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
847
848         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
849                 return -1;
850         for (unsigned int i = 0; i < nb_cores; i++) {
851                 cmd_thread_info(lcores[i], task_id);
852         }
853         return 0;
854 }
855
856 static int parse_cmd_verbose(const char *str, struct input *input)
857 {
858         unsigned id;
859
860         if (sscanf(str, "%u", &id) != 1) {
861                 return -1;
862         }
863
864         if (plog_set_lvl(id) != 0) {
865                 plog_err("Cannot set log level to %u\n", id);
866         }
867         return 0;
868 }
869
870 static int parse_cmd_arp_add(const char *str, struct input *input)
871 {
872         struct arp_msg amsg;
873         struct arp_msg *pmsg = &amsg;
874         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
875         struct rte_ring *ring;
876
877         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
878                 return -1;
879         if (!(str = strchr_skip_twice(str, ' ')))
880                 return -1;
881         if (strcmp(str, ""))
882                 return -1;
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];
888                                 if (!ring) {
889                                         plog_err("No ring for control messages to core %u task %u\n", lcore_id, task_id);
890                                 }
891                                 else {
892 #if RTE_VERSION < RTE_VERSION_NUM(17,5,0,1)
893                                         while (rte_ring_sp_enqueue_bulk(ring, (void *const *)&pmsg, 1));
894 #else
895                                         while (rte_ring_sp_enqueue_bulk(ring, (void *const *)&pmsg, 1, NULL) == 0);
896 #endif
897                                         while (!rte_ring_empty(ring));
898                                 }
899                         }
900                         return 0;
901                 }
902         }
903         return -1;
904 }
905
906 static int parse_cmd_rule_add(const char *str, struct input *input)
907 {
908         struct rte_ring *ring;
909         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
910
911         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
912                 return -1;
913         if (!(str = strchr_skip_twice(str, ' ')))
914                 return -1;
915         if (strcmp(str, ""))
916                 return -1;
917         char *fields[9];
918         char str_cpy[255];
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, ' ');
922         if (ret != 8) {
923                 return -1;
924         }
925
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];
933                                 if (!ring) {
934                                         plog_err("No ring for control messages to core %u task %u\n", lcore_id, task_id);
935                                 }
936                                 else {
937 #if RTE_VERSION < RTE_VERSION_NUM(17,5,0,1)
938                                         while (rte_ring_sp_enqueue_bulk(ring, (void *const *)&prule, 1));
939 #else
940                                         while (rte_ring_sp_enqueue_bulk(ring, (void *const *)&prule, 1, NULL) == 0);
941 #endif
942                                         while (!rte_ring_empty(ring));
943                                 }
944                         }
945                         return 0;
946                 }
947         }
948         return -1;
949 }
950
951 static int parse_cmd_gateway_ip(const char *str, struct input *input)
952 {
953         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, ip[4], nb_cores, i;
954
955         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
956                 return -1;
957         if (!(str = strchr_skip_twice(str, ' ')))
958                 return -1;
959         if (!strcmp(str, ""))
960                 return -1;
961         if (sscanf(str, "%u.%u.%u.%u", ip, ip + 1, ip + 2, ip + 3) != 4) {
962                 return -1;
963         }
964         for (i = 0; i < nb_cores; i++) {
965                 lcore_id = lcores[i];
966
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);
969                 }
970                 else {
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);
975                 }
976         }
977         return 0;
978 }
979
980 static int parse_cmd_local_ip(const char *str, struct input *input)
981 {
982         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, ip[4], nb_cores, i;
983
984         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
985                 return -1;
986         if (!(str = strchr_skip_twice(str, ' ')))
987                 return -1;
988         if (!strcmp(str, ""))
989                 return -1;
990         if (sscanf(str, "%u.%u.%u.%u", ip, ip + 1, ip + 2, ip + 3) != 4) {
991                 return -1;
992         }
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                         if (!task_is_sub_mode(lcore_id, task_id, "l3")) {
999                                 plog_err("Core %u task %u is not in l3 mode\n", lcore_id, task_id);
1000                         } else {
1001                                 plog_info("Setting local ip to %s\n", str);
1002                                 task_set_local_ip(tbase, local_ip);
1003                         }
1004                 } else {
1005                         plog_info("Setting local ip to %s\n", str);
1006                         task_arp_set_local_ip(tbase, local_ip);
1007                 }
1008         }
1009         return 0;
1010 }
1011
1012 static int parse_cmd_route_add(const char *str, struct input *input)
1013 {
1014         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, prefix, next_hop_idx, ip[4], nb_cores;
1015
1016         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
1017                 return -1;
1018         if (!(str = strchr_skip_twice(str, ' ')))
1019                 return -1;
1020         if (strcmp(str, ""))
1021                 return -1;
1022         if (sscanf(str, "%u.%u.%u.%u/%u %u", ip, ip + 1, ip + 2, ip + 3,
1023                    &prefix, &next_hop_idx) != 8) {
1024                 return -1;
1025         }
1026         struct rte_ring *ring;
1027
1028         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
1029                 for (unsigned int i = 0; i < nb_cores; i++) {
1030                         lcore_id = lcores[i];
1031                         ring = ctrl_rings[lcore_id*MAX_TASKS_PER_CORE + task_id];
1032                         if (!ring) {
1033                                 plog_err("No ring for control messages to core %u task %u\n", lcore_id, task_id);
1034                         }
1035                         else {
1036                                 struct route_msg rmsg;
1037                                 struct route_msg *pmsg = &rmsg;
1038
1039                                 rmsg.ip_bytes[0] = ip[0];
1040                                 rmsg.ip_bytes[1] = ip[1];
1041                                 rmsg.ip_bytes[2] = ip[2];
1042                                 rmsg.ip_bytes[3] = ip[3];
1043                                 rmsg.prefix = prefix;
1044                                 rmsg.nh = next_hop_idx;
1045 #if RTE_VERSION < RTE_VERSION_NUM(17,5,0,1)
1046                                 while (rte_ring_sp_enqueue_bulk(ring, (void *const *)&pmsg, 1));
1047 #else
1048                                 while (rte_ring_sp_enqueue_bulk(ring, (void *const *)&pmsg, 1, NULL) == 0);
1049 #endif
1050                                 while (!rte_ring_empty(ring));
1051                         }
1052                 }
1053         }
1054         return 0;
1055 }
1056
1057 static int parse_cmd_start(const char *str, struct input *input)
1058 {
1059         int task_id = -1;
1060
1061         if (strncmp(str, "all", 3) == 0) {
1062                 str += 3;
1063                 sscanf(str, "%d", &task_id);
1064
1065                 start_core_all(task_id);
1066                 req_refresh();
1067                 return 0;
1068         }
1069
1070         uint32_t cores[64] = {0};
1071         int ret;
1072         ret = parse_list_set(cores, str, 64);
1073         if (ret < 0) {
1074                 return -1;
1075         }
1076         str = strchr(str, ' ');
1077
1078         if (str) {
1079                 sscanf(str, "%d", &task_id);
1080         }
1081         start_cores(cores, ret, task_id);
1082         req_refresh();
1083         return 0;
1084 }
1085
1086 static int parse_cmd_stop(const char *str, struct input *input)
1087 {
1088         int task_id = -1;
1089
1090         if (strncmp(str, "all", 3) == 0) {
1091                 str += 3;
1092                 sscanf(str, "%d", &task_id);
1093                 stop_core_all(task_id);
1094                 req_refresh();
1095                 return 0;
1096         }
1097
1098         uint32_t cores[64] = {0};
1099         int ret;
1100         ret = parse_list_set(cores, str, 64);
1101         if (ret < 0) {
1102                 return -1;
1103         }
1104         str = strchr(str, ' ');
1105
1106         if (str) {
1107                 sscanf(str, "%d", &task_id);
1108         }
1109         stop_cores(cores, ret, task_id);
1110         req_refresh();
1111
1112         return 0;
1113 }
1114
1115 static int parse_cmd_rx_distr_start(const char *str, struct input *input)
1116 {
1117         unsigned lcore_id[RTE_MAX_LCORE];
1118
1119         int nb_cores;
1120
1121         nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1122
1123         if (nb_cores <= 0) {
1124                 return -1;
1125         }
1126
1127         for (int i = 0; i < nb_cores; ++i)
1128                 cmd_rx_distr_start(lcore_id[i]);
1129         return 0;
1130 }
1131
1132 static int parse_cmd_tx_distr_start(const char *str, struct input *input)
1133 {
1134         unsigned lcore_id[RTE_MAX_LCORE];
1135
1136         int nb_cores;
1137
1138         nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1139
1140         if (nb_cores <= 0) {
1141                 return -1;
1142         }
1143
1144         for (int i = 0; i < nb_cores; ++i)
1145                 cmd_tx_distr_start(lcore_id[i]);
1146         return 0;
1147 }
1148
1149 static int parse_cmd_rx_distr_stop(const char *str, struct input *input)
1150 {
1151         unsigned lcore_id[RTE_MAX_LCORE];
1152
1153         int nb_cores;
1154
1155         nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1156
1157         if (nb_cores <= 0) {
1158                 return -1;
1159         }
1160
1161         for (int i = 0; i < nb_cores; ++i)
1162                 cmd_rx_distr_stop(lcore_id[i]);
1163         return 0;
1164 }
1165
1166 static int parse_cmd_tx_distr_stop(const char *str, struct input *input)
1167 {
1168         unsigned lcore_id[RTE_MAX_LCORE];
1169
1170         int nb_cores;
1171
1172         nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1173
1174         if (nb_cores <= 0) {
1175                 return -1;
1176         }
1177
1178         for (int i = 0; i < nb_cores; ++i)
1179                 cmd_tx_distr_stop(lcore_id[i]);
1180         return 0;
1181 }
1182
1183 static int parse_cmd_rx_distr_reset(const char *str, struct input *input)
1184 {
1185         unsigned lcore_id[RTE_MAX_LCORE];
1186
1187         int nb_cores;
1188
1189         nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1190
1191         if (nb_cores <= 0) {
1192                 return -1;
1193         }
1194
1195         for (int i = 0; i < nb_cores; ++i)
1196                 cmd_rx_distr_rst(lcore_id[i]);
1197         return 0;
1198 }
1199
1200 static int parse_cmd_tx_distr_reset(const char *str, struct input *input)
1201 {
1202         unsigned lcore_id[RTE_MAX_LCORE];
1203
1204         int nb_cores;
1205
1206         nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1207
1208         if (nb_cores <= 0) {
1209                 return -1;
1210         }
1211
1212         for (int i = 0; i < nb_cores; ++i)
1213                 cmd_tx_distr_rst(lcore_id[i]);
1214         return 0;
1215 }
1216
1217 static int parse_cmd_rx_distr_show(const char *str, struct input *input)
1218 {
1219         unsigned lcore_id[RTE_MAX_LCORE];
1220
1221         int nb_cores;
1222
1223         nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1224
1225         if (nb_cores <= 0) {
1226                 return -1;
1227         }
1228
1229         for (int i = 0; i < nb_cores; ++i)
1230                 cmd_rx_distr_show(lcore_id[i]);
1231         return 0;
1232 }
1233
1234 static int parse_cmd_tx_distr_show(const char *str, struct input *input)
1235 {
1236         unsigned lcore_id[RTE_MAX_LCORE];
1237
1238         int nb_cores;
1239
1240         nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1241
1242         if (nb_cores <= 0) {
1243                 return -1;
1244         }
1245
1246         for (int i = 0; i < nb_cores; ++i)
1247                 cmd_tx_distr_show(lcore_id[i]);
1248         return 0;
1249 }
1250
1251 static int parse_cmd_tot_stats(const char *str, struct input *input)
1252 {
1253         if (strcmp("", str) != 0) {
1254                 return -1;
1255         }
1256
1257         struct global_stats_sample *gsl = stats_get_global_stats(1);
1258         uint64_t tot_rx = gsl->host_rx_packets;
1259         uint64_t tot_tx = gsl->host_tx_packets;
1260         uint64_t last_tsc = gsl->tsc;
1261
1262         if (input->reply) {
1263                 char buf[128];
1264                 snprintf(buf, sizeof(buf), "%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64"\n",
1265                          tot_rx, tot_tx, last_tsc, rte_get_tsc_hz());
1266                 input->reply(input, buf, strlen(buf));
1267         }
1268         else {
1269                 plog_info("RX: %"PRIu64", TX: %"PRIu64"\n", tot_rx, tot_tx);
1270         }
1271         return 0;
1272 }
1273
1274 static int parse_cmd_update_interval(const char *str, struct input *input)
1275 {
1276         unsigned val;
1277
1278         if (sscanf(str, "%u", &val) != 1) {
1279                 return -1;
1280         }
1281
1282         if (val == 0) {
1283                 plog_err("Minimum update interval is 1 ms\n");
1284         }
1285         else {
1286                 plog_info("Setting update interval to %d ms\n", val);
1287                 set_update_interval(val);
1288         }
1289         return 0;
1290 }
1291
1292 static int parse_cmd_mem_info(const char *str, struct input *input)
1293 {
1294         if (strcmp("", str) != 0) {
1295                 return -1;
1296         }
1297
1298         cmd_mem_stats();
1299         cmd_mem_layout();
1300         return 0;
1301 }
1302
1303 static int parse_cmd_tot_ierrors_tot(const char *str, struct input *input)
1304 {
1305         if (strcmp(str, "") != 0) {
1306                 return -1;
1307         }
1308
1309         struct global_stats_sample *gsl = stats_get_global_stats(1);
1310         uint64_t tot = gsl->nics_ierrors;
1311         uint64_t last_tsc = gsl->tsc;
1312
1313         if (input->reply) {
1314                 char buf[128];
1315                 snprintf(buf, sizeof(buf),
1316                          "%"PRIu64",%"PRIu64",%"PRIu64"\n",
1317                          tot, last_tsc, rte_get_tsc_hz());
1318                 input->reply(input, buf, strlen(buf));
1319         }
1320         else {
1321                 plog_info("ierrors: %"PRIu64"\n", tot);
1322         }
1323         return 0;
1324 }
1325
1326 static int parse_cmd_tot_imissed_tot(const char *str, struct input *input)
1327 {
1328         if (strcmp(str, "") != 0) {
1329                 return -1;
1330         }
1331
1332         struct global_stats_sample *gsl = stats_get_global_stats(1);
1333         uint64_t tot = gsl->nics_imissed;
1334         uint64_t last_tsc = gsl->tsc;
1335
1336         if (input->reply) {
1337                 char buf[128];
1338                 snprintf(buf, sizeof(buf),
1339                          "%"PRIu64",%"PRIu64",%"PRIu64"\n",
1340                          tot, last_tsc, rte_get_tsc_hz());
1341                 input->reply(input, buf, strlen(buf));
1342         }
1343         else {
1344                 plog_info("imissed: %"PRIu64"\n", tot);
1345         }
1346         return 0;
1347 }
1348
1349 static int parse_cmd_enable_multicast(const char *str, struct input *input)
1350 {
1351         uint8_t port_id;
1352         prox_rte_ether_addr mac;
1353
1354         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) {
1355                 return -1;
1356         }
1357         cmd_multicast(port_id, 1, &mac);
1358         return 0;
1359 }
1360
1361 static int parse_cmd_disable_multicast(const char *str, struct input *input)
1362 {
1363         uint8_t port_id;
1364         prox_rte_ether_addr mac;
1365
1366         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) {
1367                 return -1;
1368         }
1369
1370         cmd_multicast(port_id, 0, &mac);
1371         return 0;
1372 }
1373
1374 static int parse_cmd_reset_port(const char *str, struct input *input)
1375 {
1376         uint32_t port_id;
1377
1378         if (sscanf(str, "%u", &port_id ) != 1) {
1379                 return -1;
1380         }
1381
1382         cmd_reset_port(port_id);
1383         return 0;
1384 }
1385
1386 static int parse_cmd_write_reg(const char *str, struct input *input)
1387 {
1388         uint32_t port_id;
1389         uint32_t id, val;
1390
1391         if (sscanf(str, "%u %x %u", &port_id, &id, &val) != 3) {
1392                 return -1;
1393         }
1394
1395         cmd_write_reg(port_id, id, val);
1396         return 0;
1397 }
1398
1399 static int parse_cmd_read_reg(const char *str, struct input *input)
1400 {
1401         uint32_t port_id;
1402         uint32_t id;
1403
1404         if (sscanf(str, "%u %x", &port_id, &id) != 2) {
1405                 return -1;
1406         }
1407
1408         cmd_read_reg(port_id, id);
1409         return 0;
1410 }
1411
1412 static int parse_cmd_cache_reset(const char *str, struct input *input)
1413 {
1414         cmd_cache_reset();
1415         return 0;
1416 }
1417
1418 static int parse_cmd_set_cache_class_mask(const char *str, struct input *input)
1419 {
1420         uint32_t lcore_id;
1421         uint32_t set;
1422         uint32_t val;
1423
1424         if (sscanf(str, "%u %u %u", &lcore_id, &set, &val) != 3) {
1425                 return -1;
1426         }
1427
1428         cmd_set_cache_class_mask(lcore_id, set, val);
1429         return 0;
1430 }
1431
1432 static int parse_cmd_set_cache_class(const char *str, struct input *input)
1433 {
1434         uint32_t lcore_id;
1435         uint32_t set;
1436
1437         if (sscanf(str, "%u %u", &lcore_id, &set) != 2) {
1438                 return -1;
1439         }
1440
1441         cmd_set_cache_class(lcore_id, set);
1442         return 0;
1443 }
1444
1445 static int parse_cmd_get_cache_class_mask(const char *str, struct input *input)
1446 {
1447         uint32_t lcore_id;
1448         uint32_t set;
1449         uint32_t val = 0;
1450
1451         if (sscanf(str, "%u %u", &lcore_id, &set) != 2) {
1452                 return -1;
1453         }
1454
1455         cmd_get_cache_class_mask(lcore_id, set, &val);
1456         if (input->reply) {
1457                 char buf[128];
1458                 snprintf(buf, sizeof(buf), "%d, %d, %x\n", lcore_id, set, val);
1459                 input->reply(input, buf, strlen(buf));
1460         } else {
1461                 plog_info("core=%d, set=%d, mask=%x\n", lcore_id, set, val);
1462         }
1463         return 0;
1464 }
1465
1466 static int parse_cmd_get_cache_class(const char *str, struct input *input)
1467 {
1468         uint32_t lcore_id;
1469         uint32_t set;
1470         uint32_t val;
1471
1472         if (sscanf(str, "%u", &lcore_id) != 1) {
1473                 return -1;
1474         }
1475
1476         cmd_get_cache_class(lcore_id, &set);
1477         if (input->reply) {
1478                 char buf[128];
1479                 snprintf(buf, sizeof(buf), "%d, %d\n", lcore_id, set);
1480                 input->reply(input, buf, strlen(buf));
1481         } else {
1482                 plog_info("core=%d, cos=%d\n", lcore_id, set);
1483         }
1484         return 0;
1485 }
1486
1487 static int parse_cmd_get_cache_mask(const char *str, struct input *input)
1488 {
1489         uint32_t lcore_id;
1490         uint32_t set;
1491         uint32_t mask;
1492
1493         if (sscanf(str, "%u", &lcore_id) != 1) {
1494                 return -1;
1495         }
1496
1497         cmd_get_cache_class(lcore_id, &set);
1498         cmd_get_cache_class_mask(lcore_id, set, &mask);
1499         if (input->reply) {
1500                 char buf[128];
1501                 snprintf(buf, sizeof(buf), "%d, %x\n", lcore_id, mask);
1502                 input->reply(input, buf, strlen(buf));
1503         } else {
1504                 plog_info("core=%d, mask=%x\n", lcore_id, mask);
1505         }
1506         return 0;
1507 }
1508
1509 static int parse_cmd_set_vlan_offload(const char *str, struct input *input)
1510 {
1511         uint32_t port_id;
1512         uint32_t val;
1513
1514         if (sscanf(str, "%u %u", &port_id, &val) != 2) {
1515                 return -1;
1516         }
1517
1518         cmd_set_vlan_offload(port_id, val);
1519         return 0;
1520 }
1521
1522 static int parse_cmd_set_vlan_filter(const char *str, struct input *input)
1523 {
1524         uint32_t port_id;
1525         uint32_t id, val;
1526
1527         if (sscanf(str, "%u %d %u", &port_id, &id, &val) != 3) {
1528                 return -1;
1529         }
1530
1531         cmd_set_vlan_filter(port_id, id, val);
1532         return 0;
1533 }
1534
1535 static int parse_cmd_ring_info_all(const char *str, struct input *input)
1536 {
1537         if (strcmp(str, "") != 0) {
1538                 return -1;
1539         }
1540         cmd_ringinfo_all();
1541         return 0;
1542 }
1543
1544 static int parse_cmd_port_up(const char *str, struct input *input)
1545 {
1546         unsigned val;
1547
1548         if (sscanf(str, "%u", &val) != 1) {
1549                 return -1;
1550         }
1551
1552         cmd_port_up(val);
1553         return 0;
1554 }
1555
1556 static int parse_cmd_port_down(const char *str, struct input *input)
1557 {
1558         unsigned val;
1559
1560         if (sscanf(str, "%u", &val) != 1) {
1561                 return -1;
1562         }
1563
1564         cmd_port_down(val);
1565         return 0;
1566 }
1567
1568 static int parse_cmd_port_link_state(const char *str, struct input *input)
1569 {
1570         unsigned val;
1571
1572         if (sscanf(str, "%u", &val) != 1) {
1573                 return -1;
1574         }
1575
1576         if (!port_is_active(val))
1577                 return -1;
1578
1579         int active = prox_port_cfg[val].link_up;
1580         const char *state = active? "up\n" : "down\n";
1581
1582         if (input->reply)
1583                 input->reply(input, state, strlen(state));
1584         else
1585                 plog_info("%s", state);
1586
1587         return 0;
1588 }
1589
1590 static int parse_cmd_xstats(const char *str, struct input *input)
1591 {
1592         unsigned val;
1593
1594         if (sscanf(str, "%u", &val) != 1) {
1595                 return -1;
1596         }
1597
1598         cmd_xstats(val);
1599         return 0;
1600 }
1601
1602 static int parse_cmd_stats(const char *str, struct input *input)
1603 {
1604         if (strcmp(str, "") == 0)
1605                 return -1;
1606
1607         char buf[32768];
1608         char ret2[32768];
1609         char *ret = ret2;
1610         int list = 0;
1611
1612         prox_strncpy(buf, str, sizeof(buf) - 1);
1613         char *tok;
1614         uint64_t stat_val;
1615
1616         while ((tok = strchr(str, ','))) {
1617                 *tok = 0;
1618                 stat_val = stats_parser_get(str);
1619
1620                 ret += sprintf(ret, "%s%"PRIu64"", list? "," :"", stat_val);
1621                 list = 1;
1622                 str = tok + 1;
1623         }
1624
1625         stat_val = stats_parser_get(str);
1626         ret += sprintf(ret, "%s%"PRIu64"", list? "," :"", stat_val);
1627
1628         sprintf(ret, "\n");
1629
1630         if (input->reply)
1631                 input->reply(input, ret2, strlen(ret2));
1632         else
1633                 plog_info("%s", ret2);
1634         return 0;
1635 }
1636
1637 static void replace_char(char *str, char to_replace, char by)
1638 {
1639         for (size_t i = 0; str[i] != '\0'; ++i) {
1640                 if (str[i] == to_replace)
1641                         str[i] = by;
1642         }
1643 }
1644
1645 static int parse_cmd_port_info(const char *str, struct input *input)
1646 {
1647         int val;
1648
1649         if (strcmp(str, "all") == 0) {
1650                 val = -1;
1651         }
1652         else if (sscanf(str, "%d", &val) != 1) {
1653                 return -1;
1654         }
1655
1656         char port_info[2048];
1657
1658         cmd_portinfo(val, port_info, sizeof(port_info));
1659
1660         if (input->reply) {
1661                 replace_char(port_info, '\n', ',');
1662                 port_info[strlen(port_info) - 1] = '\n';
1663                 input->reply(input, port_info, strlen(port_info));
1664         } else
1665                 plog_info("%s", port_info);
1666
1667         return 0;
1668 }
1669
1670 static int parse_cmd_ring_info(const char *str, struct input *input)
1671 {
1672         unsigned lcores[RTE_MAX_LCORE], task_id, nb_cores;
1673
1674         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
1675                 return -1;
1676
1677         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
1678                 for (unsigned int i = 0; i < nb_cores; i++) {
1679                         cmd_ringinfo(lcores[i], task_id);
1680                 }
1681         }
1682         return 0;
1683 }
1684
1685 static int parse_cmd_port_stats(const char *str, struct input *input)
1686 {
1687         unsigned val;
1688
1689         if (sscanf(str, "%u", &val) != 1) {
1690                 return -1;
1691         }
1692
1693         struct get_port_stats s;
1694         if (stats_port(val, &s)) {
1695                 plog_err("Invalid port %u\n", val);
1696                 return 0;
1697         }
1698         char buf[256];
1699         snprintf(buf, sizeof(buf),
1700                  "%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64","
1701                  "%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64","
1702                  "%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64"\n",
1703                  s.no_mbufs_diff, s.ierrors_diff + s.imissed_diff,
1704                  s.rx_bytes_diff, s.tx_bytes_diff,
1705                  s.rx_pkts_diff, s.tx_pkts_diff,
1706                  s.rx_tot, s.tx_tot,
1707                  s.no_mbufs_tot, s.ierrors_tot + s.imissed_tot,
1708                  s.last_tsc, s.prev_tsc);
1709         plog_info("%s", buf);
1710         if (input->reply)
1711                 input->reply(input, buf, strlen(buf));
1712         return 0;
1713 }
1714
1715 static int parse_cmd_multi_port_stats(const char *str, struct input *input)
1716 {
1717         uint32_t ports[PROX_MAX_PORTS];
1718         int nb_ports = parse_list_set(ports, str, PROX_MAX_PORTS);
1719         if (nb_ports <= 0) {
1720                 return -1;
1721         }
1722
1723         char buf[PROX_MAX_PORTS * (11+5*21) + 1], *pbuf = buf;
1724         int left = sizeof(buf);
1725         for (int i = 0; i < nb_ports; ++i) {
1726                 struct get_port_stats s;
1727                 if (stats_port(ports[i], &s)) {
1728                         plog_err("Invalid port %u\n", ports[i]);
1729                         return 0;
1730                 }
1731
1732                 int len = snprintf(pbuf, left,
1733                                 "%u,"
1734                                 "%"PRIu64",%"PRIu64","
1735                                 "%"PRIu64",%"PRIu64","
1736                                 "%"PRIu64";",
1737                                 //TODO: adjust buf size above when adding fields
1738                                 ports[i],
1739                                 s.rx_tot, s.tx_tot,
1740                                 s.no_mbufs_tot, s.ierrors_tot + s.imissed_tot,
1741                                 s.last_tsc);
1742                 if ((len < 0) || (len >= left)) {
1743                         plog_err("Cannot print stats for port %u\n", ports[i]);
1744                         return 0;
1745                 }
1746                 pbuf += len;
1747                 left -= len;
1748         }
1749         pbuf--;
1750         *pbuf = '\n';
1751
1752         plog_info("%s", buf);
1753         if (input->reply)
1754                 input->reply(input, buf, sizeof(buf) - left);
1755         return 0;
1756 }
1757
1758 static int parse_cmd_core_stats(const char *str, struct input *input)
1759 {
1760         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
1761
1762         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
1763                 return -1;
1764
1765         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
1766                 for (unsigned int i = 0; i < nb_cores; i++) {
1767                         lcore_id = lcores[i];
1768                         uint64_t tot_rx = stats_core_task_tot_rx(lcore_id, task_id);
1769                         uint64_t tot_tx = stats_core_task_tot_tx(lcore_id, task_id);
1770                         uint64_t tot_drop = stats_core_task_tot_drop(lcore_id, task_id);
1771                         uint64_t last_tsc = stats_core_task_last_tsc(lcore_id, task_id);
1772
1773                         if (input->reply) {
1774                                 char buf[128];
1775                                 snprintf(buf, sizeof(buf),
1776                                         "%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64"\n",
1777                                         tot_rx, tot_tx, tot_drop, last_tsc, rte_get_tsc_hz());
1778                                 input->reply(input, buf, strlen(buf));
1779                         }
1780                         else {
1781                                 plog_info("RX: %"PRIu64", TX: %"PRIu64", DROP: %"PRIu64"\n",
1782                                         tot_rx, tot_tx, tot_drop);
1783                         }
1784                 }
1785         }
1786         return 0;
1787 }
1788
1789 typedef void (*parser_handler)(unsigned, unsigned, struct input *);
1790 static int handle_cores_tasks(const char *str, struct input *input, const char *mode_str, const char *mode_name, parser_handler f)
1791 {
1792         // This function either outputs a single line, in case of syntax error on the lists of cores and/or tasks
1793         // or outputs (nb_cores * nb_tasks) lines, one line for each core/task pair:
1794         // - if the core/task pair is invalid, the output line reports an error
1795         // - otherwise, the output line provides the latency statistics for the core/task pair
1796
1797         unsigned lcores[RTE_MAX_LCORE], tasks[MAX_TASKS_PER_CORE], lcore_id, task_id, nb_cores, nb_tasks;
1798         if (parse_cores_tasks(str, lcores, tasks, &nb_cores, &nb_tasks)) {
1799                 if (input->reply) {
1800                         char buf[128];
1801                         snprintf(buf, sizeof(buf), "error: invalid syntax\n");
1802                         input->reply(input, buf, strlen(buf));
1803                 }
1804                 return -1;
1805         }
1806
1807         for (unsigned int i = 0; i < nb_cores; i++) {
1808                 for (unsigned int j = 0; j < nb_tasks; j++) {
1809                         lcore_id = lcores[i];
1810                         task_id = tasks[j];
1811                         if (core_task_is_valid(lcore_id, task_id) == 0) {
1812                                 if (input->reply) {
1813                                         char buf[128];
1814                                         snprintf(buf, sizeof(buf), "error: invalid core %u, task %u\n", lcore_id, task_id);
1815                                         input->reply(input, buf, strlen(buf));
1816                                 } else {
1817                                         plog_info("error: invalid core %u, task %u\n", lcore_id, task_id);
1818                                 }
1819                                 continue;
1820                         }
1821                         if ((mode_str) && (!task_is_mode(lcore_id, task_id, mode_str))) {
1822                                 if (input->reply) {
1823                                         char buf[128];
1824                                         snprintf(buf, sizeof(buf), "error: core %u task %u is not measuring %s\n", lcore_id, task_id, mode_name);
1825                                         input->reply(input, buf, strlen(buf));
1826                                 } else {
1827                                         plog_info("error: core %u task %u is not measuring %s\n", lcore_id, task_id, mode_name);
1828                                 }
1829                                 continue;
1830                         }
1831                         f(lcore_id, task_id, input);
1832                 }
1833         }
1834         return 0;
1835 }
1836
1837 static void handle_dp_core_stats(unsigned lcore_id, unsigned task_id, struct input *input)
1838 {
1839         uint64_t tot_rx = stats_core_task_tot_rx(lcore_id, task_id);
1840         uint64_t tot_tx = stats_core_task_tot_tx(lcore_id, task_id);
1841         uint64_t tot_tx_fail = stats_core_task_tot_tx_fail(lcore_id, task_id);
1842         uint64_t tot_rx_non_dp = stats_core_task_tot_rx_non_dp(lcore_id, task_id);
1843         uint64_t tot_tx_non_dp = stats_core_task_tot_tx_non_dp(lcore_id, task_id);
1844         uint64_t tot_drop = stats_core_task_tot_drop(lcore_id, task_id);
1845         uint64_t last_tsc = stats_core_task_last_tsc(lcore_id, task_id);
1846
1847         if (input->reply) {
1848                 char buf[128];
1849                 snprintf(buf, sizeof(buf),
1850                         "%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%u,%u\n",
1851                         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);
1852                 input->reply(input, buf, strlen(buf));
1853         }
1854         else {
1855                 plog_info("core: %u, task: %u, RX: %"PRIu64", TX: %"PRIu64", RX_NON_DP: %"PRIu64", TX_NON_DP: %"PRIu64", DROP: %"PRIu64", TX_FAIL: %"PRIu64"\n",
1856                         lcore_id, task_id, tot_rx, tot_tx, tot_rx_non_dp, tot_tx_non_dp, tot_drop, tot_tx_fail);
1857         }
1858 }
1859
1860 static void handle_lat_stats(unsigned lcore_id, unsigned task_id, struct input *input)
1861 {
1862         struct stats_latency *stats = stats_latency_find(lcore_id, task_id);
1863         struct stats_latency *tot = stats_latency_tot_find(lcore_id, task_id);
1864         if (!stats || !tot) {
1865                 if (input->reply) {
1866                         char buf[128];
1867                         snprintf(buf, sizeof(buf),
1868                                  "error: core %u task %u stats = %p tot = %p\n",
1869                                  lcore_id, task_id, stats, tot);
1870                         input->reply(input, buf, strlen(buf));
1871                 } else {
1872                         plog_info("error: core %u task %u stats = %p tot = %p\n",
1873                                   lcore_id, task_id, stats, tot);
1874                 }
1875                 return;
1876         }
1877
1878         uint64_t last_tsc = stats_core_task_last_tsc(lcore_id, task_id);
1879         uint64_t lat_min_usec = time_unit_to_usec(&stats->min.time);
1880         uint64_t lat_max_usec = time_unit_to_usec(&stats->max.time);
1881         uint64_t tot_lat_min_usec = time_unit_to_usec(&tot->min.time);
1882         uint64_t tot_lat_max_usec = time_unit_to_usec(&tot->max.time);
1883         uint64_t lat_avg_usec = time_unit_to_usec(&stats->avg.time);
1884
1885         if (input->reply) {
1886                 char buf[128];
1887                 snprintf(buf, sizeof(buf),
1888                          "%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%u,%u\n",
1889                          lat_min_usec,
1890                          lat_max_usec,
1891                          lat_avg_usec,
1892                          tot_lat_min_usec,
1893                          tot_lat_max_usec,
1894                          last_tsc,
1895                          rte_get_tsc_hz(),
1896                          lcore_id,
1897                          task_id);
1898                 input->reply(input, buf, strlen(buf));
1899         }
1900         else {
1901                 plog_info("core: %u, task: %u, min: %"PRIu64", max: %"PRIu64", avg: %"PRIu64", min since reset: %"PRIu64", max since reset: %"PRIu64"\n",
1902                           lcore_id,
1903                           task_id,
1904                           lat_min_usec,
1905                           lat_max_usec,
1906                           lat_avg_usec,
1907                           tot_lat_min_usec,
1908                           tot_lat_max_usec);
1909         }
1910 }
1911
1912 #ifdef LATENCY_HISTOGRAM
1913 static void handle_latency_histogram(unsigned lcore_id, unsigned task_id, struct input *input)
1914 {
1915         uint64_t *buckets;
1916
1917         stats_core_lat_histogram(lcore_id, task_id, &buckets);
1918
1919         if (buckets == NULL) {
1920                 if (input->reply) {
1921                         char buf[128];
1922                         snprintf(buf, sizeof(buf), "error: unexpected NULL bucket\n");
1923                         input->reply(input, buf, strlen(buf));
1924                 }
1925                 return;
1926         }
1927
1928         if (input->reply) {
1929                 char buf[4096] = {0};
1930                 for (size_t i = 0; i < LAT_BUCKET_COUNT; i++)
1931                         sprintf(buf+strlen(buf), "Bucket [%zu]: %"PRIu64"\n", i, buckets[i]);
1932                 input->reply(input, buf, strlen(buf));
1933         }
1934         else {
1935                 for (size_t i = 0; i < LAT_BUCKET_COUNT; i++)
1936                         if (buckets[i])
1937                                 plog_info("Bucket [%zu]: %"PRIu64"\n", i, buckets[i]);
1938         }
1939 }
1940
1941 static void handle_stats_and_packets(unsigned lcore_id, unsigned task_id, struct input *input)
1942 {
1943         handle_lat_stats(lcore_id, task_id, input);
1944         handle_latency_histogram(lcore_id, task_id, input);
1945 }
1946 #endif
1947
1948 static int parse_cmd_dp_core_stats(const char *str, struct input *input)
1949 {
1950         handle_cores_tasks(str, input, NULL, NULL, handle_dp_core_stats);
1951         return 0;
1952 }
1953
1954 static int parse_cmd_lat_stats(const char *str, struct input *input)
1955 {
1956         handle_cores_tasks(str, input, "lat", "latency", handle_lat_stats);
1957         return 0;
1958 }
1959
1960 static int parse_cmd_lat_packets(const char *str, struct input *input)
1961 {
1962 #ifdef LATENCY_HISTOGRAM
1963         handle_cores_tasks(str, input, "lat", "latency", handle_latency_histogram);
1964 #else
1965         if (input->reply) {
1966                 char buf[128];
1967                 snprintf(buf, sizeof(buf), "error: invalid syntax (LATENCY_HISTOGRAM disabled)\n");
1968                 input->reply(input, buf, strlen(buf));
1969         } else {
1970                 plog_info("LATENCY_HISTOGRAMS disabled\n");
1971         }
1972 #endif
1973         return 0;
1974 }
1975
1976 static int parse_cmd_lat_stats_and_packets(const char *str, struct input *input)
1977 {
1978 #ifdef LATENCY_HISTOGRAM
1979         handle_cores_tasks(str, input, "lat", "latency", handle_stats_and_packets);
1980 #else
1981         if (input->reply) {
1982                 char buf[128];
1983                 snprintf(buf, sizeof(buf), "error: invalid syntax (LATENCY_HISTOGRAMS disabled)\n");
1984                 input->reply(input, buf, strlen(buf));
1985         } else {
1986                 plog_info("LATENCY_HISTOGRAMS disabled\n");
1987         }
1988 #endif
1989         return 0;
1990 }
1991
1992 static int parse_cmd_show_irq_buckets(const char *str, struct input *input)
1993 {
1994         char buf[4096] = {0};
1995         unsigned int i, c;
1996         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
1997
1998         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
1999                 return -1;
2000
2001         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
2002                 for (c = 0; c < nb_cores; c++) {
2003                         lcore_id = lcores[c];
2004                         get_irq_buckets_by_core_task(buf, lcore_id, task_id);
2005                         plog_info("%s", buf);
2006                         if (input->reply)
2007                                 input->reply(input, buf, strlen(buf));
2008                         buf[0] = 0;
2009                 }
2010         }
2011         return 0;
2012 }
2013
2014 static int parse_cmd_irq(const char *str, struct input *input)
2015 {
2016         unsigned int i, c;
2017         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
2018
2019         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
2020                 return -1;
2021
2022         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
2023                 for (c = 0; c < nb_cores; c++) {
2024                         lcore_id = lcores[c];
2025                         if (!task_is_mode(lcore_id, task_id, "irq")) {
2026                                 plog_err("Core %u task %u is not in irq mode\n", lcore_id, task_id);
2027                         } else {
2028                                 struct task_irq *task_irq = (struct task_irq *)(lcore_cfg[lcore_id].tasks_all[task_id]);
2029
2030                                 task_irq_show_stats(task_irq, input);
2031                         }
2032                 }
2033         }
2034         return 0;
2035 }
2036
2037 static int parse_cmd_cgnat_public_hash(const char *str, struct input *input)
2038 {
2039         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
2040
2041         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
2042                 return -1;
2043
2044         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
2045                 for (unsigned int i = 0; i < nb_cores; i++) {
2046                         lcore_id = lcores[i];
2047
2048                         if (!task_is_mode(lcore_id, task_id, "cgnat")) {
2049                                 plog_err("Core %u task %u is not cgnat\n", lcore_id, task_id);
2050                         }
2051                         else {
2052                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
2053                                 task_cgnat_dump_public_hash((struct task_nat *)tbase);
2054                         }
2055                 }
2056         }
2057         return 0;
2058 }
2059
2060 static int parse_cmd_cgnat_private_hash(const char *str, struct input *input)
2061 {
2062         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
2063         uint32_t val;
2064
2065         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
2066                 return -1;
2067
2068         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
2069                 for (unsigned int i = 0; i < nb_cores; i++) {
2070                         lcore_id = lcores[i];
2071
2072                         if (!task_is_mode(lcore_id, task_id, "cgnat")) {
2073                                 plog_err("Core %u task %u is not cgnat\n", lcore_id, task_id);
2074                         }
2075                         else {
2076                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
2077                                 task_cgnat_dump_private_hash((struct task_nat *)tbase);
2078                         }
2079                 }
2080         }
2081         return 0;
2082 }
2083
2084 static int parse_cmd_accuracy(const char *str, struct input *input)
2085 {
2086         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
2087         uint32_t val;
2088
2089         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
2090                 return -1;
2091         if (!(str = strchr_skip_twice(str, ' ')))
2092                 return -1;
2093         if (sscanf(str, "%"PRIu32"", &val) != 1)
2094                 return -1;
2095
2096         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
2097                 for (unsigned int i = 0; i < nb_cores; i++) {
2098                         lcore_id = lcores[i];
2099
2100                         if (!task_is_mode(lcore_id, task_id, "lat")) {
2101                                 plog_err("Core %u task %u is not measuring latency\n", lcore_id, task_id);
2102                         }
2103                         else {
2104                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
2105
2106                                 task_lat_set_accuracy_limit((struct task_lat *)tbase, val);
2107                         }
2108                 }
2109         }
2110         return 0;
2111 }
2112
2113 static int parse_cmd_leave_igmp(const char *str, struct input *input)
2114 {
2115         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
2116
2117         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
2118                 return -1;
2119
2120         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
2121                 for (unsigned int i = 0; i < nb_cores; i++) {
2122                         lcore_id = lcores[i];
2123
2124                         if (!task_is_mode(lcore_id, task_id, "swap")) {
2125                                 plog_err("Core %u task %u is not running swap\n", lcore_id, task_id);
2126                         }
2127                         else {
2128                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
2129                                 igmp_leave_group(tbase);
2130                         }
2131                 }
2132         }
2133         return 0;
2134 }
2135
2136 static int parse_cmd_join_igmp(const char *str, struct input *input)
2137 {
2138         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
2139         uint32_t igmp_ip;
2140         uint8_t *igmp_bytes = (uint8_t *)&igmp_ip;
2141
2142         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
2143                 return -1;
2144         if (!(str = strchr_skip_twice(str, ' ')))
2145                 return -1;
2146         if (sscanf(str, "%hhu.%hhu.%hhu.%hhu", igmp_bytes, igmp_bytes + 1, igmp_bytes + 2, igmp_bytes + 3) != 4) {
2147                 return -1;
2148         }
2149         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
2150                 for (unsigned int i = 0; i < nb_cores; i++) {
2151                         lcore_id = lcores[i];
2152
2153                         if (!task_is_mode(lcore_id, task_id, "swap")) {
2154                                 plog_err("Core %u task %u is not running swap\n", lcore_id, task_id);
2155                         }
2156                         else {
2157                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
2158                                 igmp_join_group(tbase, igmp_ip);
2159                         }
2160                 }
2161         }
2162         return 0;
2163 }
2164
2165 static int parse_cmd_send_unsollicited_na(const char *str, struct input *input)
2166 {
2167         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
2168
2169         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
2170                 return -1;
2171
2172         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
2173                 for (unsigned int i = 0; i < nb_cores; i++) {
2174                         lcore_id = lcores[i];
2175
2176                         if (!task_is_sub_mode(lcore_id, task_id, "ndp")) {
2177                                 plog_err("Core %u task %u is not running ndp\n", lcore_id, task_id);
2178                         }
2179                         else {
2180                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
2181                                 send_unsollicited_neighbour_advertisement(tbase);
2182                         }
2183                 }
2184         }
2185         return 0;
2186 }
2187
2188 static int parse_cmd_rx_tx_info(const char *str, struct input *input)
2189 {
2190         if (strcmp(str, "") != 0) {
2191                 return -1;
2192         }
2193
2194         cmd_rx_tx_info();
2195         return 0;
2196 }
2197
2198 static int parse_cmd_version(const char *str, struct input *input)
2199 {
2200         if (strcmp(str, "") != 0) {
2201                 return -1;
2202         }
2203
2204         if (input->reply) {
2205                 uint64_t version =
2206                         ((uint64_t)VERSION_MAJOR) << 24 |
2207                         ((uint64_t)VERSION_MINOR) << 16 |
2208                         ((uint64_t)VERSION_REV) << 8;
2209
2210                 char buf[128];
2211                 snprintf(buf, sizeof(buf), "%"PRIu64",%"PRIu64"\n", version, (uint64_t)RTE_VERSION);
2212                 input->reply(input, buf, strlen(buf));
2213         }
2214         else {
2215                 plog_info("prox version: %d.%d, DPDK version: %s\n",
2216                           VERSION_MAJOR, VERSION_MINOR,
2217                           rte_version() + sizeof(RTE_VER_PREFIX));
2218         }
2219         return 0;
2220 }
2221
2222 struct cmd_str {
2223         const char *cmd;
2224         const char *args;
2225         const char *help;
2226         int (*parse)(const char *args, struct input *input);
2227 };
2228
2229 static int parse_cmd_help(const char *str, struct input *input);
2230
2231 static struct cmd_str cmd_strings[] = {
2232         {"history", "", "Print command history", parse_cmd_history},
2233         {"echo", "", "echo parameter, useful to resolving variables", parse_cmd_echo},
2234         {"quit", "", "Stop all cores and quit", parse_cmd_quit},
2235         {"quit_force", "", "Quit without waiting on cores to stop", parse_cmd_quit_force},
2236         {"help", "<substr>", "Show list of commands that have <substr> as a substring. If no substring is provided, all commands are shown.", parse_cmd_help},
2237         {"verbose", "<level>", "Set verbosity level", parse_cmd_verbose},
2238         {"thread info", "<core_id> <task_id>", "", parse_cmd_thread_info},
2239         {"mem info", "", "Show information about system memory (number of huge pages and addresses of these huge pages)", parse_cmd_mem_info},
2240         {"update interval", "<value>", "Update statistics refresh rate, in msec (must be >=10). Default is 1 second", parse_cmd_update_interval},
2241         {"rx tx info", "", "Print connections between tasks on all cores", parse_cmd_rx_tx_info},
2242         {"start", "<core list>|all <task_id>", "Start core <core_id> or all cores", parse_cmd_start},
2243         {"stop", "<core list>|all <task_id>", "Stop core <core id> or all cores", parse_cmd_stop},
2244
2245         {"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},
2246         {"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},
2247         {"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},
2248         {"rx distr start", "", "Start gathering statistical distribution of received packets", parse_cmd_rx_distr_start},
2249         {"rx distr stop", "", "Stop gathering statistical distribution of received packets", parse_cmd_rx_distr_stop},
2250         {"rx distr reset", "", "Reset gathered statistical distribution of received packets", parse_cmd_rx_distr_reset},
2251         {"rx distr show", "", "Display gathered statistical distribution of received packets", parse_cmd_rx_distr_show},
2252         {"tx distr start", "", "Start gathering statistical distribution of xmitted packets", parse_cmd_tx_distr_start},
2253         {"tx distr stop", "", "Stop gathering statistical distribution of xmitted packets", parse_cmd_tx_distr_stop},
2254         {"tx distr reset", "", "Reset gathered statistical distribution of xmitted packets", parse_cmd_tx_distr_reset},
2255         {"tx distr show", "", "Display gathered statistical distribution of xmitted packets", parse_cmd_tx_distr_show},
2256
2257         {"rate", "<port id> <queue id> <rate>", "rate does not include preamble, SFD and IFG", parse_cmd_rate},
2258         {"count","<core id> <task id> <count>", "Generate <count> packets", parse_cmd_count},
2259         {"bypass", "<core_id> <task_id>", "Bypass task", parse_cmd_bypass},
2260         {"reconnect", "<core_id> <task_id>", "Reconnect task", parse_cmd_reconnect},
2261         {"pkt_size", "<core_id> <task_id> <pkt_size>", "Set the packet size to <pkt_size>", parse_cmd_pkt_size},
2262         {"imix", "<core_id> <task_id> <pkt_size,pkt_size ... >", "Set the packet sizes to <pkt_size>", parse_cmd_imix},
2263         {"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},
2264         {"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},
2265         {"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},
2266         {"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},
2267         {"reset values all", "", "Undo all \"set value\" commands on all cores/tasks", parse_cmd_reset_values_all},
2268         {"reset randoms all", "", "Undo all \"set random\" commands on all cores/tasks", parse_cmd_reset_randoms_all},
2269         {"reset values", "<core id> <task id>", "Undo all \"set value\" commands on specified core/task", parse_cmd_reset_values},
2270
2271         {"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},
2272         {"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},
2273         {"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},
2274         {"gateway ip", "<core id> <task id> <ip>", "Define/Change IP address of destination gateway on core <core id> <task id>.", parse_cmd_gateway_ip},
2275         {"local ip", "<core id> <task id> <ip>", "Define/Change IP address of destination gateway on core <core id> <task id>.", parse_cmd_local_ip},
2276
2277         {"pps unit", "", "Change core stats pps unit", parse_cmd_pps_unit},
2278         {"reset stats", "", "Reset all statistics", parse_cmd_reset_stats},
2279         {"reset lat stats", "", "Reset all latency statistics", parse_cmd_reset_lat_stats},
2280         {"tot stats", "", "Print total RX and TX packets", parse_cmd_tot_stats},
2281         {"tot ierrors tot", "", "Print total number of ierrors since reset", parse_cmd_tot_ierrors_tot},
2282         {"tot imissed tot", "", "Print total number of imissed since reset", parse_cmd_tot_imissed_tot},
2283         {"lat stats", "<core id> <task id>", "Print min,max,avg latency as measured during last sampling interval", parse_cmd_lat_stats},
2284         {"irq stats", "<core id> <task id>", "Print irq related infos", parse_cmd_irq},
2285         {"show irq buckets", "<core id> <task id>", "Print irq buckets", parse_cmd_show_irq_buckets},
2286         {"lat packets", "<core id> <task id>", "Print the latency for each of the last set of packets", parse_cmd_lat_packets},
2287         {"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},
2288         {"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},
2289         {"core stats", "<core id> <task id>", "Print rx/tx/drop for task <task id> running on core <core id>", parse_cmd_core_stats},
2290         {"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},
2291         {"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},
2292         {"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},
2293         {"read reg", "", "Read register", parse_cmd_read_reg},
2294         {"write reg", "", "Read register", parse_cmd_write_reg},
2295         {"set vlan offload", "", "Set Vlan offload", parse_cmd_set_vlan_offload},
2296         {"set vlan filter", "", "Set Vlan filter", parse_cmd_set_vlan_filter},
2297         {"reset cache", "", "Reset cache", parse_cmd_cache_reset},
2298         {"set cache class mask", "<core id> <class> <mask>", "Set cache class mask for <core id>", parse_cmd_set_cache_class_mask},
2299         {"get cache class mask", "<core id> <class>", "Get cache class mask", parse_cmd_get_cache_class_mask},
2300         {"set cache class", "<core id> <class>", "Set cache class", parse_cmd_set_cache_class},
2301         {"get cache class", "<core id>", "Get cache class", parse_cmd_get_cache_class},
2302         {"get cache mask", "<core id>", "Get cache mask", parse_cmd_get_cache_mask},
2303         {"reset port", "<port id>", "Reset port", parse_cmd_reset_port},
2304         {"enable multicast", "<port id> <MAC>", "Enable multicast", parse_cmd_enable_multicast},
2305         {"disable multicast", "<port id> <MAC>", "Disable multicast", parse_cmd_disable_multicast},
2306         {"ring info all", "", "Get information about ring, such as ring size and number of elements in the ring", parse_cmd_ring_info_all},
2307         {"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},
2308         {"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},
2309         {"port up", "<port id>", "Set the port up", parse_cmd_port_up},
2310         {"port down", "<port id>", "Set the port down", parse_cmd_port_down},
2311         {"port link state", "<port id>", "Get link state (up or down) for port", parse_cmd_port_link_state},
2312         {"port xstats", "<port id>", "Get extra statistics for the port", parse_cmd_xstats},
2313         {"stats", "<stats_path>", "Get stats as specified by <stats_path>. A comma-separated list of <stats_path> can be supplied", parse_cmd_stats},
2314         {"cgnat dump public hash", "<core id> <task id>", "Dump cgnat public hash table", parse_cmd_cgnat_public_hash},
2315         {"cgnat dump private hash", "<core id> <task id>", "Dump cgnat private hash table", parse_cmd_cgnat_private_hash},
2316         {"delay_us", "<core_id> <task_id> <delay_us>", "Set the delay in usec for the impair mode to <delay_us>", parse_cmd_delay_us},
2317         {"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},
2318         {"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
2319         {"proba no drop", "<core_id> <task_id> <probability>", "Set the percent of forwarded packets for the impair mode", parse_cmd_set_proba_no_drop},
2320         {"proba delay", "<core_id> <task_id> <probability>", "Set the percent of delayed packets for the impair mode", parse_cmd_set_proba_delay},
2321 #if RTE_VERSION >= RTE_VERSION_NUM(19,11,0,0)
2322         {"proba duplicate", "<core_id> <task_id> <probability>", "Set the percent of duplicate packets for the impair mode", parse_cmd_set_proba_duplicate},
2323 #endif
2324         {"version", "", "Show version", parse_cmd_version},
2325         {"join igmp", "<core_id> <task_id> <ip>", "Send igmp membership report for group <ip>", parse_cmd_join_igmp},
2326         {"leave igmp", "<core_id> <task_id>", "Send igmp leave group", parse_cmd_leave_igmp},
2327         {"send unsollicited na", "<core_id> <task_id>", "Send Unsollicited Neighbor Advertisement", parse_cmd_send_unsollicited_na},
2328         {0,0,0,0},
2329 };
2330
2331 static int parse_cmd_help(const char *str, struct input *input)
2332 {
2333         /* str contains the arguments, all commands that have str as a
2334            substring will be shown. */
2335         size_t len, len2, longest_cmd = 0;
2336         for (size_t i = 0; i < cmd_parser_n_cmd(); ++i) {
2337                 if (longest_cmd <strlen(cmd_strings[i].cmd))
2338                         longest_cmd = strlen(cmd_strings[i].cmd);
2339         }
2340         /* A single call to log will be executed after the help string
2341            has been built. The reason for this is to make use of the
2342            built-in pager. */
2343         char buf[32768] = {0};
2344
2345         for (size_t i = 0; i < cmd_parser_n_cmd(); ++i) {
2346                 int is_substr = 0;
2347                 const size_t cmd_len = strlen(cmd_strings[i].cmd);
2348                 for (size_t j = 0; j < cmd_len; ++j) {
2349                         is_substr = 1;
2350                         for (size_t k = 0; k < strlen(str); ++k) {
2351                                 if (str[k] != (cmd_strings[i].cmd + j)[k]) {
2352                                         is_substr = 0;
2353                                         break;
2354                                 }
2355                         }
2356                         if (is_substr)
2357                                 break;
2358                 }
2359                 if (!is_substr)
2360                         continue;
2361
2362                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%s", cmd_strings[i].cmd);
2363                 len = strlen(cmd_strings[i].cmd);
2364                 while (len < longest_cmd) {
2365                         len++;
2366                         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " ");
2367                 }
2368
2369                 if (strlen(cmd_strings[i].args)) {
2370                         char tmp[256] = {0};
2371                         prox_strncpy(tmp, cmd_strings[i].args, 128);
2372                         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "Arguments: %s\n", tmp);
2373                         len2 = len;
2374                         if (strlen(cmd_strings[i].help)) {
2375                                 while (len2) {
2376                                         len2--;
2377                         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " ");
2378                                 }
2379                         }
2380                 }
2381
2382                 if (strlen(cmd_strings[i].help)) {
2383                         int add = 0;
2384                         const char *h = cmd_strings[i].help;
2385                         do {
2386                                 if (add) {
2387                                         len2 = len;
2388                                         while (len2) {
2389                                                 len2--;
2390                                                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " ");
2391                                         }
2392                                 }
2393                                 char tmp[128] = {0};
2394                                 const size_t max_len = strlen(h) > 80? 80 : strlen(h);
2395                                 size_t len3 = max_len;
2396                                 if (len3 == 80) {
2397                                         while (len3 && h[len3] != ' ')
2398                                                 len3--;
2399                                         if (len3 == 0)
2400                                                 len3 = max_len;
2401                                 }
2402
2403                                 // Use strncpy here and not prox_strncpy. The dest (tmp) has been initialized with 0.
2404                                 // The fact that we are copying 80 characters potentially not null terminated is hence not an issue.
2405                                 // Using prox_strncpy here might cause a PROX_PANIC
2406                                 strncpy(tmp, h, len3);
2407                                 h += len3;
2408                                 while (h[0] == ' ' && strlen(h))
2409                                         h++;
2410
2411                                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%s\n", tmp);
2412                                 add = 1;
2413                         } while(strlen(h));
2414                 }
2415                 if (strlen(cmd_strings[i].help) == 0&& strlen(cmd_strings[i].args) == 0) {
2416                         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "\n");
2417                 }
2418         }
2419         plog_info("%s", buf);
2420
2421         return 0;
2422 }
2423
2424 const char *cmd_parser_cmd(size_t i)
2425 {
2426         i = i < cmd_parser_n_cmd()? i: cmd_parser_n_cmd();
2427         return cmd_strings[i].cmd;
2428 }
2429
2430 size_t cmd_parser_n_cmd(void)
2431 {
2432         return sizeof(cmd_strings)/sizeof(cmd_strings[0]) - 1;
2433 }
2434
2435 void cmd_parser_parse(const char *str, struct input *input)
2436 {
2437         size_t skip;
2438
2439         for (size_t i = 0; i < cmd_parser_n_cmd(); ++i) {
2440                 skip = strlen(cmd_strings[i].cmd);
2441                 if (strncmp(cmd_strings[i].cmd, str, skip) == 0 &&
2442                     (str[skip] == ' ' || str[skip] == 0)) {
2443                         while (str[skip] == ' ')
2444                                 skip++;
2445
2446                         if (cmd_strings[i].parse(str + skip, input) != 0) {
2447                                 plog_warn("Invalid syntax for command '%s': %s %s\n",
2448                                           cmd_strings[i].cmd, cmd_strings[i].args, cmd_strings[i].help);
2449                         }
2450                         return ;
2451                 }
2452         }
2453
2454         plog_err("Unknown command: '%s'\n", str);
2455 }