3e71c569f783c4edc97de727105ffecc9ceea9a2
[samplevnf.git] / VNFs / DPPD-PROX / cmd_parser.c
1 /*
2 // Copyright (c) 2010-2019 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_and_submode(lcore_id, task_id, "gen", "")) && (!task_is_mode_and_submode(lcore_id, task_id, "gen", "l3"))) {
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_probability(const char *str, struct input *input)
402 {
403         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
404         float probability;
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", &probability) != 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_and_submode(lcore_id, task_id, "impair", "")) && (!task_is_mode_and_submode(lcore_id, task_id, "impair", "l3"))){
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(tbase, probability);
421                         }
422                 }
423         }
424         return 0;
425 }
426
427 static int parse_cmd_delay_us(const char *str, struct input *input)
428 {
429         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, delay_us, nb_cores;
430
431         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
432                 return -1;
433         if (!(str = strchr_skip_twice(str, ' ')))
434                 return -1;
435         if (sscanf(str, "%d", &delay_us) != 1)
436                 return -1;
437
438         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
439                 for (unsigned int i = 0; i < nb_cores; i++) {
440                         lcore_id = lcores[i];
441                         if ((!task_is_mode_and_submode(lcore_id, task_id, "impair", "")) && (!task_is_mode_and_submode(lcore_id, task_id, "impair", "l3"))){
442                                 plog_err("Core %u task %u is not impairing packets\n", lcore_id, task_id);
443                         } else {
444                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
445                                 task_impair_set_delay_us(tbase, delay_us, 0);
446                         }
447                 }
448         }
449         return 0;
450 }
451
452 static int parse_cmd_random_delay_us(const char *str, struct input *input)
453 {
454         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, delay_us, nb_cores;
455
456         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
457                 return -1;
458         if (!(str = strchr_skip_twice(str, ' ')))
459                 return -1;
460         if (sscanf(str, "%d", &delay_us) != 1)
461                 return -1;
462
463         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
464                 for (unsigned int i = 0; i < nb_cores; i++) {
465                         lcore_id = lcores[i];
466                         if ((!task_is_mode_and_submode(lcore_id, task_id, "impair", "")) && (!task_is_mode_and_submode(lcore_id, task_id, "impair", "l3"))){
467                                 plog_err("Core %u task %u is not impairing packets\n", lcore_id, task_id);
468                         } else {
469                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
470                                 task_impair_set_delay_us(tbase, 0, delay_us);
471                         }
472                 }
473         }
474         return 0;
475 }
476
477 static int parse_cmd_bypass(const char *str, struct input *input)
478 {
479         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, pkt_size, nb_cores;
480
481         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
482                 return -1;
483         if ((prox_cfg.flags & DSF_ENABLE_BYPASS) == 0) {
484                 plog_err("enable bypass not set => command not supported\n");
485                 return -1;
486         }
487
488         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
489                 for (unsigned int i = 0; i < nb_cores; i++) {
490                         lcore_id = lcores[i];
491                         if (bypass_task(lcore_id, task_id) != 0)
492                                 return -1;
493                 }
494         }
495         return 0;
496 }
497
498 static int parse_cmd_reconnect(const char *str, struct input *input)
499 {
500         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, pkt_size, nb_cores;
501
502         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
503                 return -1;
504         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
505                 for (unsigned int i = 0; i < nb_cores; i++) {
506                         lcore_id = lcores[i];
507                         if (reconnect_task(lcore_id, task_id) != 0)
508                                 return -1;
509                 }
510         }
511         return 0;
512 }
513
514 static int parse_cmd_pkt_size(const char *str, struct input *input)
515 {
516         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, pkt_size, nb_cores;
517
518         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
519                 return -1;
520         if (!(str = strchr_skip_twice(str, ' ')))
521                 return -1;
522         if (sscanf(str, "%d", &pkt_size) != 1)
523                 return -1;
524
525         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
526                 for (unsigned int i = 0; i < nb_cores; i++) {
527                         lcore_id = lcores[i];
528                         if ((!task_is_mode_and_submode(lcore_id, task_id, "gen", "")) && (!task_is_mode_and_submode(lcore_id, task_id, "gen", "l3"))) {
529                                 plog_err("Core %u task %u is not generating packets\n", lcore_id, task_id);
530                         } else {
531                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
532                                 task_gen_set_pkt_size(tbase, pkt_size); /* error printed within function */
533                         }
534                 }
535         }
536         return 0;
537 }
538
539 static int parse_cmd_speed(const char *str, struct input *input)
540 {
541         unsigned lcores[RTE_MAX_LCORE], task_id, lcore_id, nb_cores;
542         float speed;
543         unsigned i;
544
545         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
546                 return -1;
547         if (!(str = strchr_skip_twice(str, ' ')))
548                 return -1;
549         if (sscanf(str, "%f", &speed) != 1) {
550                 return -1;
551         }
552
553         if (!cores_task_are_valid(lcores, task_id, nb_cores)) {
554                 return 0;
555         }
556
557         for (i = 0; i < nb_cores; i++) {
558                 lcore_id = lcores[i];
559                 if ((!task_is_mode_and_submode(lcore_id, task_id, "gen", "")) && (!task_is_mode_and_submode(lcore_id, task_id, "gen", "l3"))) {
560                         plog_err("Core %u task %u is not generating packets\n", lcore_id, task_id);
561                 }
562                 else if (speed > 1000.0f || speed < 0.0f) {     // Up to 100 Gbps
563                         plog_err("Speed out of range (must be betweeen 0%% and 1000%%)\n");
564                 }
565                 else {
566                         struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
567                         uint64_t bps = speed * 12500000;
568
569                         plog_info("Setting rate to %"PRIu64" Bps\n", bps);
570
571                         task_gen_set_rate(tbase, bps);
572                 }
573         }
574         return 0;
575 }
576
577 static int parse_cmd_speed_byte(const char *str, struct input *input)
578 {
579         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
580         uint64_t bps;
581
582         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
583                 return -1;
584         if (!(str = strchr_skip_twice(str, ' ')))
585                 return -1;
586         if (sscanf(str, "%"PRIu64"", &bps) != 1)
587                 return -1;
588
589         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
590                 for (unsigned int i = 0; i < nb_cores; i++) {
591                         lcore_id = lcores[i];
592
593                         if ((!task_is_mode_and_submode(lcore_id, task_id, "gen", "")) && (!task_is_mode_and_submode(lcore_id, task_id, "gen", "l3"))) {
594                                 plog_err("Core %u task %u is not generating packets\n", lcore_id, task_id);
595                         }
596                         else if (bps > 12500000000) {   // Up to 100Gbps
597                                 plog_err("Speed out of range (must be <= 12500000000)\n");
598                         }
599                         else {
600                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
601
602                                 plog_info("Setting rate to %"PRIu64" Bps\n", bps);
603                                 task_gen_set_rate(tbase, bps);
604                         }
605                 }
606         }
607         return 0;
608 }
609
610 static int parse_cmd_reset_randoms_all(const char *str, struct input *input)
611 {
612         if (strcmp(str, "") != 0) {
613                 return -1;
614         }
615
616         unsigned task_id, lcore_id = -1;
617         while (prox_core_next(&lcore_id, 0) == 0) {
618                 for (task_id = 0; task_id < lcore_cfg[lcore_id].n_tasks_all; task_id++) {
619                         if ((task_is_mode_and_submode(lcore_id, task_id, "gen", "")) || (task_is_mode_and_submode(lcore_id, task_id, "gen", "l3"))) {
620                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
621                                 uint32_t n_rands = task_gen_get_n_randoms(tbase);
622
623                                 plog_info("Resetting randoms on core %d task %d from %d randoms\n", lcore_id, task_id, n_rands);
624                                 task_gen_reset_randoms(tbase);
625                         }
626                 }
627         }
628         return 0;
629 }
630
631 static int parse_cmd_reset_values_all(const char *str, struct input *input)
632 {
633         if (strcmp(str, "") != 0) {
634                 return -1;
635         }
636
637         unsigned task_id, lcore_id = -1;
638         while (prox_core_next(&lcore_id, 0) == 0) {
639                 for (task_id = 0; task_id < lcore_cfg[lcore_id].n_tasks_all; task_id++) {
640                         if ((task_is_mode_and_submode(lcore_id, task_id, "gen", "")) || (task_is_mode_and_submode(lcore_id, task_id, "gen", "l3"))) {
641                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
642
643                                 plog_info("Resetting values on core %d task %d\n", lcore_id, task_id);
644                                 task_gen_reset_values(tbase);
645                         }
646                 }
647         }
648         return 0;
649 }
650
651 static int parse_cmd_reset_values(const char *str, struct input *input)
652 {
653         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
654
655         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
656                 return -1;
657
658         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
659                 for (unsigned int i = 0; i < nb_cores; i++) {
660                         lcore_id = lcores[i];
661                         if ((!task_is_mode_and_submode(lcore_id, task_id, "gen", "")) && (!task_is_mode_and_submode(lcore_id, task_id, "gen", "l3"))) {
662                                 plog_err("Core %u task %u is not generating packets\n", lcore_id, task_id);
663                         }
664                         else {
665                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
666
667                                 plog_info("Resetting values on core %d task %d\n", lcore_id, task_id);
668                                 task_gen_reset_values(tbase);
669                         }
670                 }
671         }
672         return 0;
673 }
674
675 static int parse_cmd_set_value(const char *str, struct input *input)
676 {
677         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, value, nb_cores;
678         unsigned short offset;
679         uint8_t value_len;
680
681         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
682                 return -1;
683         if (!(str = strchr_skip_twice(str, ' ')))
684                 return -1;
685         if (sscanf(str, "%hu %u %hhu", &offset, &value, &value_len) != 3) {
686                 return -1;
687         }
688
689         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
690                 for (unsigned int i = 0; i < nb_cores; i++) {
691                         lcore_id = lcores[i];
692                         if ((!task_is_mode_and_submode(lcore_id, task_id, "gen", "")) && (!task_is_mode_and_submode(lcore_id, task_id, "gen", "l3"))) {
693                                 plog_err("Core %u task %u is not generating packets\n", lcore_id, task_id);
694                         }
695                         // do not check offset here - gen knows better than us the maximum frame size
696                         else if (value_len > 4) {
697                                 plog_err("Length out of range (must be less then 4)\n");
698                         }
699                         else {
700                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
701
702                                 if (task_gen_set_value(tbase, value, offset, value_len))
703                                         plog_info("Unable to set Byte %"PRIu16" to %"PRIu8" - invalid offset/len\n", offset, value);
704                                 else
705                                         plog_info("Setting Byte %"PRIu16" to %"PRIu32"\n", offset, value);
706                         }
707                 }
708         }
709         return 0;
710 }
711
712 static int parse_cmd_set_random(const char *str, struct input *input)
713 {
714         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
715         unsigned short offset;
716         uint8_t value_len;
717         char rand_str[64];
718         int16_t rand_id = -1;
719
720         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
721                 return -1;
722         if (!(str = strchr_skip_twice(str, ' ')))
723                 return -1;
724         if (sscanf(str, "%hu %32s %hhu", &offset, rand_str, &value_len) != 3) {
725                 return -1;
726         }
727
728         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
729                 for (unsigned int i = 0; i < nb_cores; i++) {
730                         lcore_id = lcores[i];
731                         if ((!task_is_mode_and_submode(lcore_id, task_id, "gen", "")) && (!task_is_mode_and_submode(lcore_id, task_id, "gen", "l3"))) {
732                                 plog_err("Core %u task %u is not generating packets\n", lcore_id, task_id);
733                         }
734                         else if (offset > PROX_RTE_ETHER_MAX_LEN) {
735                                 plog_err("Offset out of range (must be less then %u)\n", PROX_RTE_ETHER_MAX_LEN);
736                         }
737                         else if (value_len > 4) {
738                                 plog_err("Length out of range (must be less then 4)\n");
739                         } else {
740                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
741
742                                 if (task_gen_add_rand(tbase, rand_str, offset, rand_id)) {
743                                         plog_warn("Random not added on core %u task %u\n", lcore_id, task_id);
744                                 }
745                         }
746                 }
747         }
748         return 0;
749 }
750
751 static int parse_cmd_thread_info(const char *str, struct input *input)
752 {
753         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
754
755         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
756                 return -1;
757         for (unsigned int i = 0; i < nb_cores; i++) {
758                 cmd_thread_info(lcores[i], task_id);
759         }
760         return 0;
761 }
762
763 static int parse_cmd_verbose(const char *str, struct input *input)
764 {
765         unsigned id;
766
767         if (sscanf(str, "%u", &id) != 1) {
768                 return -1;
769         }
770
771         if (plog_set_lvl(id) != 0) {
772                 plog_err("Cannot set log level to %u\n", id);
773         }
774         return 0;
775 }
776
777 static int parse_cmd_arp_add(const char *str, struct input *input)
778 {
779         struct arp_msg amsg;
780         struct arp_msg *pmsg = &amsg;
781         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
782         struct rte_ring *ring;
783
784         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
785                 return -1;
786         if (!(str = strchr_skip_twice(str, ' ')))
787                 return -1;
788         if (strcmp(str, ""))
789                 return -1;
790         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
791                 if (str_to_arp_msg(&amsg, str) == 0) {
792                         for (unsigned int i = 0; i < nb_cores; i++) {
793                                 lcore_id = lcores[i];
794                                 ring = ctrl_rings[lcore_id*MAX_TASKS_PER_CORE + task_id];
795                                 if (!ring) {
796                                         plog_err("No ring for control messages to core %u task %u\n", lcore_id, task_id);
797                                 }
798                                 else {
799 #if RTE_VERSION < RTE_VERSION_NUM(17,5,0,1)
800                                         while (rte_ring_sp_enqueue_bulk(ring, (void *const *)&pmsg, 1));
801 #else
802                                         while (rte_ring_sp_enqueue_bulk(ring, (void *const *)&pmsg, 1, NULL) == 0);
803 #endif
804                                         while (!rte_ring_empty(ring));
805                                 }
806                         }
807                         return 0;
808                 }
809         }
810         return -1;
811 }
812
813 static int parse_cmd_rule_add(const char *str, struct input *input)
814 {
815         struct rte_ring *ring;
816         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
817
818         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
819                 return -1;
820         if (!(str = strchr_skip_twice(str, ' ')))
821                 return -1;
822         if (strcmp(str, ""))
823                 return -1;
824         char *fields[9];
825         char str_cpy[255];
826         prox_strncpy(str_cpy, str, 255);
827         // 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
828         int ret = rte_strsplit(str_cpy, 255, fields, 9, ' ');
829         if (ret != 8) {
830                 return -1;
831         }
832
833         struct acl4_rule rule;
834         struct acl4_rule *prule = &rule;
835         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
836                 if (str_to_rule(&rule, fields, -1, 1) == 0) {
837                         for (unsigned int i = 0; i < nb_cores; i++) {
838                                 lcore_id = lcores[i];
839                                 ring = ctrl_rings[lcore_id*MAX_TASKS_PER_CORE + task_id];
840                                 if (!ring) {
841                                         plog_err("No ring for control messages to core %u task %u\n", lcore_id, task_id);
842                                 }
843                                 else {
844 #if RTE_VERSION < RTE_VERSION_NUM(17,5,0,1)
845                                         while (rte_ring_sp_enqueue_bulk(ring, (void *const *)&prule, 1));
846 #else
847                                         while (rte_ring_sp_enqueue_bulk(ring, (void *const *)&prule, 1, NULL) == 0);
848 #endif
849                                         while (!rte_ring_empty(ring));
850                                 }
851                         }
852                         return 0;
853                 }
854         }
855         return -1;
856 }
857
858 static int parse_cmd_gateway_ip(const char *str, struct input *input)
859 {
860         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, ip[4], nb_cores, i;
861
862         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
863                 return -1;
864         if (!(str = strchr_skip_twice(str, ' ')))
865                 return -1;
866         if (!strcmp(str, ""))
867                 return -1;
868         if (sscanf(str, "%u.%u.%u.%u", ip, ip + 1, ip + 2, ip + 3) != 4) {
869                 return -1;
870         }
871         for (i = 0; i < nb_cores; i++) {
872                 lcore_id = lcores[i];
873
874                 if (!task_is_sub_mode(lcore_id, task_id, "l3")) {
875                         plog_err("Core %u task %u is not in l3 mode\n", lcore_id, task_id);
876                 }
877                 else {
878                         uint32_t gateway_ip = ((ip[3] & 0xFF) << 24) | ((ip[2] & 0xFF) << 16) | ((ip[1] & 0xFF) << 8) | ((ip[0] & 0xFF) << 0);
879                         struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
880                         plog_info("Setting gateway ip to %s\n", str);
881                         task_set_gateway_ip(tbase, gateway_ip);
882                 }
883         }
884         return 0;
885 }
886
887 static int parse_cmd_local_ip(const char *str, struct input *input)
888 {
889         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, ip[4], nb_cores, i;
890
891         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
892                 return -1;
893         if (!(str = strchr_skip_twice(str, ' ')))
894                 return -1;
895         if (!strcmp(str, ""))
896                 return -1;
897         if (sscanf(str, "%u.%u.%u.%u", ip, ip + 1, ip + 2, ip + 3) != 4) {
898                 return -1;
899         }
900         for (i = 0; i < nb_cores; i++) {
901                 lcore_id = lcores[i];
902                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
903                 uint32_t local_ip = ((ip[3] & 0xFF) << 24) | ((ip[2] & 0xFF) << 16) | ((ip[1] & 0xFF) << 8) | ((ip[0] & 0xFF) << 0);
904                 if (!task_is_mode_and_submode(lcore_id, task_id, "arp", "local")) {
905                         if (!task_is_sub_mode(lcore_id, task_id, "l3")) {
906                                 plog_err("Core %u task %u is not in l3 mode\n", lcore_id, task_id);
907                         } else {
908                                 plog_info("Setting local ip to %s\n", str);
909                                 task_set_local_ip(tbase, local_ip);
910                         }
911                 } else {
912                         plog_info("Setting local ip to %s\n", str);
913                         task_arp_set_local_ip(tbase, local_ip);
914                 }
915         }
916         return 0;
917 }
918
919 static int parse_cmd_route_add(const char *str, struct input *input)
920 {
921         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, prefix, next_hop_idx, ip[4], nb_cores;
922
923         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
924                 return -1;
925         if (!(str = strchr_skip_twice(str, ' ')))
926                 return -1;
927         if (strcmp(str, ""))
928                 return -1;
929         if (sscanf(str, "%u.%u.%u.%u/%u %u", ip, ip + 1, ip + 2, ip + 3,
930                    &prefix, &next_hop_idx) != 8) {
931                 return -1;
932         }
933         struct rte_ring *ring;
934
935         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
936                 for (unsigned int i = 0; i < nb_cores; i++) {
937                         lcore_id = lcores[i];
938                         ring = ctrl_rings[lcore_id*MAX_TASKS_PER_CORE + task_id];
939                         if (!ring) {
940                                 plog_err("No ring for control messages to core %u task %u\n", lcore_id, task_id);
941                         }
942                         else {
943                                 struct route_msg rmsg;
944                                 struct route_msg *pmsg = &rmsg;
945
946                                 rmsg.ip_bytes[0] = ip[0];
947                                 rmsg.ip_bytes[1] = ip[1];
948                                 rmsg.ip_bytes[2] = ip[2];
949                                 rmsg.ip_bytes[3] = ip[3];
950                                 rmsg.prefix = prefix;
951                                 rmsg.nh = next_hop_idx;
952 #if RTE_VERSION < RTE_VERSION_NUM(17,5,0,1)
953                                 while (rte_ring_sp_enqueue_bulk(ring, (void *const *)&pmsg, 1));
954 #else
955                                 while (rte_ring_sp_enqueue_bulk(ring, (void *const *)&pmsg, 1, NULL) == 0);
956 #endif
957                                 while (!rte_ring_empty(ring));
958                         }
959                 }
960         }
961         return 0;
962 }
963
964 static int parse_cmd_start(const char *str, struct input *input)
965 {
966         int task_id = -1;
967
968         if (strncmp(str, "all", 3) == 0) {
969                 str += 3;
970                 sscanf(str, "%d", &task_id);
971
972                 start_core_all(task_id);
973                 req_refresh();
974                 return 0;
975         }
976
977         uint32_t cores[64] = {0};
978         int ret;
979         ret = parse_list_set(cores, str, 64);
980         if (ret < 0) {
981                 return -1;
982         }
983         str = strchr(str, ' ');
984
985         if (str) {
986                 sscanf(str, "%d", &task_id);
987         }
988         start_cores(cores, ret, task_id);
989         req_refresh();
990         return 0;
991 }
992
993 static int parse_cmd_stop(const char *str, struct input *input)
994 {
995         int task_id = -1;
996
997         if (strncmp(str, "all", 3) == 0) {
998                 str += 3;
999                 sscanf(str, "%d", &task_id);
1000                 stop_core_all(task_id);
1001                 req_refresh();
1002                 return 0;
1003         }
1004
1005         uint32_t cores[64] = {0};
1006         int ret;
1007         ret = parse_list_set(cores, str, 64);
1008         if (ret < 0) {
1009                 return -1;
1010         }
1011         str = strchr(str, ' ');
1012
1013         if (str) {
1014                 sscanf(str, "%d", &task_id);
1015         }
1016         stop_cores(cores, ret, task_id);
1017         req_refresh();
1018
1019         return 0;
1020 }
1021
1022 static int parse_cmd_rx_distr_start(const char *str, struct input *input)
1023 {
1024         unsigned lcore_id[RTE_MAX_LCORE];
1025
1026         int nb_cores;
1027
1028         nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1029
1030         if (nb_cores <= 0) {
1031                 return -1;
1032         }
1033
1034         for (int i = 0; i < nb_cores; ++i)
1035                 cmd_rx_distr_start(lcore_id[i]);
1036         return 0;
1037 }
1038
1039 static int parse_cmd_tx_distr_start(const char *str, struct input *input)
1040 {
1041         unsigned lcore_id[RTE_MAX_LCORE];
1042
1043         int nb_cores;
1044
1045         nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1046
1047         if (nb_cores <= 0) {
1048                 return -1;
1049         }
1050
1051         for (int i = 0; i < nb_cores; ++i)
1052                 cmd_tx_distr_start(lcore_id[i]);
1053         return 0;
1054 }
1055
1056 static int parse_cmd_rx_distr_stop(const char *str, struct input *input)
1057 {
1058         unsigned lcore_id[RTE_MAX_LCORE];
1059
1060         int nb_cores;
1061
1062         nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1063
1064         if (nb_cores <= 0) {
1065                 return -1;
1066         }
1067
1068         for (int i = 0; i < nb_cores; ++i)
1069                 cmd_rx_distr_stop(lcore_id[i]);
1070         return 0;
1071 }
1072
1073 static int parse_cmd_tx_distr_stop(const char *str, struct input *input)
1074 {
1075         unsigned lcore_id[RTE_MAX_LCORE];
1076
1077         int nb_cores;
1078
1079         nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1080
1081         if (nb_cores <= 0) {
1082                 return -1;
1083         }
1084
1085         for (int i = 0; i < nb_cores; ++i)
1086                 cmd_tx_distr_stop(lcore_id[i]);
1087         return 0;
1088 }
1089
1090 static int parse_cmd_rx_distr_reset(const char *str, struct input *input)
1091 {
1092         unsigned lcore_id[RTE_MAX_LCORE];
1093
1094         int nb_cores;
1095
1096         nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1097
1098         if (nb_cores <= 0) {
1099                 return -1;
1100         }
1101
1102         for (int i = 0; i < nb_cores; ++i)
1103                 cmd_rx_distr_rst(lcore_id[i]);
1104         return 0;
1105 }
1106
1107 static int parse_cmd_tx_distr_reset(const char *str, struct input *input)
1108 {
1109         unsigned lcore_id[RTE_MAX_LCORE];
1110
1111         int nb_cores;
1112
1113         nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1114
1115         if (nb_cores <= 0) {
1116                 return -1;
1117         }
1118
1119         for (int i = 0; i < nb_cores; ++i)
1120                 cmd_tx_distr_rst(lcore_id[i]);
1121         return 0;
1122 }
1123
1124 static int parse_cmd_rx_distr_show(const char *str, struct input *input)
1125 {
1126         unsigned lcore_id[RTE_MAX_LCORE];
1127
1128         int nb_cores;
1129
1130         nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1131
1132         if (nb_cores <= 0) {
1133                 return -1;
1134         }
1135
1136         for (int i = 0; i < nb_cores; ++i)
1137                 cmd_rx_distr_show(lcore_id[i]);
1138         return 0;
1139 }
1140
1141 static int parse_cmd_tx_distr_show(const char *str, struct input *input)
1142 {
1143         unsigned lcore_id[RTE_MAX_LCORE];
1144
1145         int nb_cores;
1146
1147         nb_cores = parse_list_set(lcore_id, str, sizeof(lcore_id)/sizeof(lcore_id[0]));
1148
1149         if (nb_cores <= 0) {
1150                 return -1;
1151         }
1152
1153         for (int i = 0; i < nb_cores; ++i)
1154                 cmd_tx_distr_show(lcore_id[i]);
1155         return 0;
1156 }
1157
1158 static int parse_cmd_tot_stats(const char *str, struct input *input)
1159 {
1160         if (strcmp("", str) != 0) {
1161                 return -1;
1162         }
1163
1164         struct global_stats_sample *gsl = stats_get_global_stats(1);
1165         uint64_t tot_rx = gsl->host_rx_packets;
1166         uint64_t tot_tx = gsl->host_tx_packets;
1167         uint64_t last_tsc = gsl->tsc;
1168
1169         if (input->reply) {
1170                 char buf[128];
1171                 snprintf(buf, sizeof(buf), "%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64"\n",
1172                          tot_rx, tot_tx, last_tsc, rte_get_tsc_hz());
1173                 input->reply(input, buf, strlen(buf));
1174         }
1175         else {
1176                 plog_info("RX: %"PRIu64", TX: %"PRIu64"\n", tot_rx, tot_tx);
1177         }
1178         return 0;
1179 }
1180
1181 static int parse_cmd_update_interval(const char *str, struct input *input)
1182 {
1183         unsigned val;
1184
1185         if (sscanf(str, "%u", &val) != 1) {
1186                 return -1;
1187         }
1188
1189         if (val == 0) {
1190                 plog_err("Minimum update interval is 1 ms\n");
1191         }
1192         else {
1193                 plog_info("Setting update interval to %d ms\n", val);
1194                 set_update_interval(val);
1195         }
1196         return 0;
1197 }
1198
1199 static int parse_cmd_mem_info(const char *str, struct input *input)
1200 {
1201         if (strcmp("", str) != 0) {
1202                 return -1;
1203         }
1204
1205         cmd_mem_stats();
1206         cmd_mem_layout();
1207         return 0;
1208 }
1209
1210 static int parse_cmd_tot_ierrors_tot(const char *str, struct input *input)
1211 {
1212         if (strcmp(str, "") != 0) {
1213                 return -1;
1214         }
1215
1216         struct global_stats_sample *gsl = stats_get_global_stats(1);
1217         uint64_t tot = gsl->nics_ierrors;
1218         uint64_t last_tsc = gsl->tsc;
1219
1220         if (input->reply) {
1221                 char buf[128];
1222                 snprintf(buf, sizeof(buf),
1223                          "%"PRIu64",%"PRIu64",%"PRIu64"\n",
1224                          tot, last_tsc, rte_get_tsc_hz());
1225                 input->reply(input, buf, strlen(buf));
1226         }
1227         else {
1228                 plog_info("ierrors: %"PRIu64"\n", tot);
1229         }
1230         return 0;
1231 }
1232
1233 static int parse_cmd_tot_imissed_tot(const char *str, struct input *input)
1234 {
1235         if (strcmp(str, "") != 0) {
1236                 return -1;
1237         }
1238
1239         struct global_stats_sample *gsl = stats_get_global_stats(1);
1240         uint64_t tot = gsl->nics_imissed;
1241         uint64_t last_tsc = gsl->tsc;
1242
1243         if (input->reply) {
1244                 char buf[128];
1245                 snprintf(buf, sizeof(buf),
1246                          "%"PRIu64",%"PRIu64",%"PRIu64"\n",
1247                          tot, last_tsc, rte_get_tsc_hz());
1248                 input->reply(input, buf, strlen(buf));
1249         }
1250         else {
1251                 plog_info("imissed: %"PRIu64"\n", tot);
1252         }
1253         return 0;
1254 }
1255
1256 static int parse_cmd_enable_multicast(const char *str, struct input *input)
1257 {
1258         uint8_t port_id;
1259         prox_rte_ether_addr mac;
1260
1261         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) {
1262                 return -1;
1263         }
1264         cmd_multicast(port_id, 1, &mac);
1265         return 0;
1266 }
1267
1268 static int parse_cmd_disable_multicast(const char *str, struct input *input)
1269 {
1270         uint8_t port_id;
1271         prox_rte_ether_addr mac;
1272
1273         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) {
1274                 return -1;
1275         }
1276
1277         cmd_multicast(port_id, 0, &mac);
1278         return 0;
1279 }
1280
1281 static int parse_cmd_reset_port(const char *str, struct input *input)
1282 {
1283         uint32_t port_id;
1284
1285         if (sscanf(str, "%u", &port_id ) != 1) {
1286                 return -1;
1287         }
1288
1289         cmd_reset_port(port_id);
1290         return 0;
1291 }
1292
1293 static int parse_cmd_write_reg(const char *str, struct input *input)
1294 {
1295         uint32_t port_id;
1296         uint32_t id, val;
1297
1298         if (sscanf(str, "%u %x %u", &port_id, &id, &val) != 3) {
1299                 return -1;
1300         }
1301
1302         cmd_write_reg(port_id, id, val);
1303         return 0;
1304 }
1305
1306 static int parse_cmd_read_reg(const char *str, struct input *input)
1307 {
1308         uint32_t port_id;
1309         uint32_t id;
1310
1311         if (sscanf(str, "%u %x", &port_id, &id) != 2) {
1312                 return -1;
1313         }
1314
1315         cmd_read_reg(port_id, id);
1316         return 0;
1317 }
1318
1319 static int parse_cmd_cache_reset(const char *str, struct input *input)
1320 {
1321         cmd_cache_reset();
1322         return 0;
1323 }
1324
1325 static int parse_cmd_set_cache_class_mask(const char *str, struct input *input)
1326 {
1327         uint32_t lcore_id;
1328         uint32_t set;
1329         uint32_t val;
1330
1331         if (sscanf(str, "%u %u %u", &lcore_id, &set, &val) != 3) {
1332                 return -1;
1333         }
1334
1335         cmd_set_cache_class_mask(lcore_id, set, val);
1336         return 0;
1337 }
1338
1339 static int parse_cmd_set_cache_class(const char *str, struct input *input)
1340 {
1341         uint32_t lcore_id;
1342         uint32_t set;
1343
1344         if (sscanf(str, "%u %u", &lcore_id, &set) != 2) {
1345                 return -1;
1346         }
1347
1348         cmd_set_cache_class(lcore_id, set);
1349         return 0;
1350 }
1351
1352 static int parse_cmd_get_cache_class_mask(const char *str, struct input *input)
1353 {
1354         uint32_t lcore_id;
1355         uint32_t set;
1356         uint32_t val = 0;
1357
1358         if (sscanf(str, "%u %u", &lcore_id, &set) != 2) {
1359                 return -1;
1360         }
1361
1362         cmd_get_cache_class_mask(lcore_id, set, &val);
1363         if (input->reply) {
1364                 char buf[128];
1365                 snprintf(buf, sizeof(buf), "%d, %d, %x\n", lcore_id, set, val);
1366                 input->reply(input, buf, strlen(buf));
1367         } else {
1368                 plog_info("core=%d, set=%d, mask=%x\n", lcore_id, set, val);
1369         }
1370         return 0;
1371 }
1372
1373 static int parse_cmd_get_cache_class(const char *str, struct input *input)
1374 {
1375         uint32_t lcore_id;
1376         uint32_t set;
1377         uint32_t val;
1378
1379         if (sscanf(str, "%u", &lcore_id) != 1) {
1380                 return -1;
1381         }
1382
1383         cmd_get_cache_class(lcore_id, &set);
1384         if (input->reply) {
1385                 char buf[128];
1386                 snprintf(buf, sizeof(buf), "%d, %d\n", lcore_id, set);
1387                 input->reply(input, buf, strlen(buf));
1388         } else {
1389                 plog_info("core=%d, cos=%d\n", lcore_id, set);
1390         }
1391         return 0;
1392 }
1393
1394 static int parse_cmd_get_cache_mask(const char *str, struct input *input)
1395 {
1396         uint32_t lcore_id;
1397         uint32_t set;
1398         uint32_t mask;
1399
1400         if (sscanf(str, "%u", &lcore_id) != 1) {
1401                 return -1;
1402         }
1403
1404         cmd_get_cache_class(lcore_id, &set);
1405         cmd_get_cache_class_mask(lcore_id, set, &mask);
1406         if (input->reply) {
1407                 char buf[128];
1408                 snprintf(buf, sizeof(buf), "%d, %x\n", lcore_id, mask);
1409                 input->reply(input, buf, strlen(buf));
1410         } else {
1411                 plog_info("core=%d, mask=%x\n", lcore_id, mask);
1412         }
1413         return 0;
1414 }
1415
1416 static int parse_cmd_set_vlan_offload(const char *str, struct input *input)
1417 {
1418         uint32_t port_id;
1419         uint32_t val;
1420
1421         if (sscanf(str, "%u %u", &port_id, &val) != 2) {
1422                 return -1;
1423         }
1424
1425         cmd_set_vlan_offload(port_id, val);
1426         return 0;
1427 }
1428
1429 static int parse_cmd_set_vlan_filter(const char *str, struct input *input)
1430 {
1431         uint32_t port_id;
1432         uint32_t id, val;
1433
1434         if (sscanf(str, "%u %d %u", &port_id, &id, &val) != 3) {
1435                 return -1;
1436         }
1437
1438         cmd_set_vlan_filter(port_id, id, val);
1439         return 0;
1440 }
1441
1442 static int parse_cmd_ring_info_all(const char *str, struct input *input)
1443 {
1444         if (strcmp(str, "") != 0) {
1445                 return -1;
1446         }
1447         cmd_ringinfo_all();
1448         return 0;
1449 }
1450
1451 static int parse_cmd_port_up(const char *str, struct input *input)
1452 {
1453         unsigned val;
1454
1455         if (sscanf(str, "%u", &val) != 1) {
1456                 return -1;
1457         }
1458
1459         cmd_port_up(val);
1460         return 0;
1461 }
1462
1463 static int parse_cmd_port_down(const char *str, struct input *input)
1464 {
1465         unsigned val;
1466
1467         if (sscanf(str, "%u", &val) != 1) {
1468                 return -1;
1469         }
1470
1471         cmd_port_down(val);
1472         return 0;
1473 }
1474
1475 static int parse_cmd_port_link_state(const char *str, struct input *input)
1476 {
1477         unsigned val;
1478
1479         if (sscanf(str, "%u", &val) != 1) {
1480                 return -1;
1481         }
1482
1483         if (!port_is_active(val))
1484                 return -1;
1485
1486         int active = prox_port_cfg[val].link_up;
1487         const char *state = active? "up\n" : "down\n";
1488
1489         if (input->reply)
1490                 input->reply(input, state, strlen(state));
1491         else
1492                 plog_info("%s", state);
1493
1494         return 0;
1495 }
1496
1497 static int parse_cmd_xstats(const char *str, struct input *input)
1498 {
1499         unsigned val;
1500
1501         if (sscanf(str, "%u", &val) != 1) {
1502                 return -1;
1503         }
1504
1505         cmd_xstats(val);
1506         return 0;
1507 }
1508
1509 static int parse_cmd_stats(const char *str, struct input *input)
1510 {
1511         if (strcmp(str, "") == 0)
1512                 return -1;
1513
1514         char buf[32768];
1515         char ret2[32768];
1516         char *ret = ret2;
1517         int list = 0;
1518
1519         prox_strncpy(buf, str, sizeof(buf) - 1);
1520         char *tok;
1521         uint64_t stat_val;
1522
1523         while ((tok = strchr(str, ','))) {
1524                 *tok = 0;
1525                 stat_val = stats_parser_get(str);
1526
1527                 ret += sprintf(ret, "%s%"PRIu64"", list? "," :"", stat_val);
1528                 list = 1;
1529                 str = tok + 1;
1530         }
1531
1532         stat_val = stats_parser_get(str);
1533         ret += sprintf(ret, "%s%"PRIu64"", list? "," :"", stat_val);
1534
1535         sprintf(ret, "\n");
1536
1537         if (input->reply)
1538                 input->reply(input, ret2, strlen(ret2));
1539         else
1540                 plog_info("%s", ret2);
1541         return 0;
1542 }
1543
1544 static void replace_char(char *str, char to_replace, char by)
1545 {
1546         for (size_t i = 0; str[i] != '\0'; ++i) {
1547                 if (str[i] == to_replace)
1548                         str[i] = by;
1549         }
1550 }
1551
1552 static int parse_cmd_port_info(const char *str, struct input *input)
1553 {
1554         int val;
1555
1556         if (strcmp(str, "all") == 0) {
1557                 val = -1;
1558         }
1559         else if (sscanf(str, "%d", &val) != 1) {
1560                 return -1;
1561         }
1562
1563         char port_info[2048];
1564
1565         cmd_portinfo(val, port_info, sizeof(port_info));
1566
1567         if (input->reply) {
1568                 replace_char(port_info, '\n', ',');
1569                 port_info[strlen(port_info) - 1] = '\n';
1570                 input->reply(input, port_info, strlen(port_info));
1571         } else
1572                 plog_info("%s", port_info);
1573
1574         return 0;
1575 }
1576
1577 static int parse_cmd_ring_info(const char *str, struct input *input)
1578 {
1579         unsigned lcores[RTE_MAX_LCORE], task_id, nb_cores;
1580
1581         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
1582                 return -1;
1583
1584         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
1585                 for (unsigned int i = 0; i < nb_cores; i++) {
1586                         cmd_ringinfo(lcores[i], task_id);
1587                 }
1588         }
1589         return 0;
1590 }
1591
1592 static int parse_cmd_port_stats(const char *str, struct input *input)
1593 {
1594         unsigned val;
1595
1596         if (sscanf(str, "%u", &val) != 1) {
1597                 return -1;
1598         }
1599
1600         struct get_port_stats s;
1601         if (stats_port(val, &s)) {
1602                 plog_err("Invalid port %u\n", val);
1603                 return 0;
1604         }
1605         char buf[256];
1606         snprintf(buf, sizeof(buf),
1607                  "%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64","
1608                  "%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64","
1609                  "%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64"\n",
1610                  s.no_mbufs_diff, s.ierrors_diff + s.imissed_diff,
1611                  s.rx_bytes_diff, s.tx_bytes_diff,
1612                  s.rx_pkts_diff, s.tx_pkts_diff,
1613                  s.rx_tot, s.tx_tot,
1614                  s.no_mbufs_tot, s.ierrors_tot + s.imissed_tot,
1615                  s.last_tsc, s.prev_tsc);
1616         plog_info("%s", buf);
1617         if (input->reply)
1618                 input->reply(input, buf, strlen(buf));
1619         return 0;
1620 }
1621
1622 static int parse_cmd_multi_port_stats(const char *str, struct input *input)
1623 {
1624         uint32_t ports[PROX_MAX_PORTS];
1625         int nb_ports = parse_list_set(ports, str, PROX_MAX_PORTS);
1626         if (nb_ports <= 0) {
1627                 return -1;
1628         }
1629
1630         char buf[PROX_MAX_PORTS * (11+5*21) + 1], *pbuf = buf;
1631         int left = sizeof(buf);
1632         for (int i = 0; i < nb_ports; ++i) {
1633                 struct get_port_stats s;
1634                 if (stats_port(ports[i], &s)) {
1635                         plog_err("Invalid port %u\n", ports[i]);
1636                         return 0;
1637                 }
1638
1639                 int len = snprintf(pbuf, left,
1640                                 "%u,"
1641                                 "%"PRIu64",%"PRIu64","
1642                                 "%"PRIu64",%"PRIu64","
1643                                 "%"PRIu64";",
1644                                 //TODO: adjust buf size above when adding fields
1645                                 ports[i],
1646                                 s.rx_tot, s.tx_tot,
1647                                 s.no_mbufs_tot, s.ierrors_tot + s.imissed_tot,
1648                                 s.last_tsc);
1649                 if ((len < 0) || (len >= left)) {
1650                         plog_err("Cannot print stats for port %u\n", ports[i]);
1651                         return 0;
1652                 }
1653                 pbuf += len;
1654                 left -= len;
1655         }
1656         pbuf--;
1657         *pbuf = '\n';
1658
1659         plog_info("%s", buf);
1660         if (input->reply)
1661                 input->reply(input, buf, sizeof(buf) - left);
1662         return 0;
1663 }
1664
1665 static int parse_cmd_core_stats(const char *str, struct input *input)
1666 {
1667         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
1668
1669         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
1670                 return -1;
1671
1672         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
1673                 for (unsigned int i = 0; i < nb_cores; i++) {
1674                         lcore_id = lcores[i];
1675                         uint64_t tot_rx = stats_core_task_tot_rx(lcore_id, task_id);
1676                         uint64_t tot_tx = stats_core_task_tot_tx(lcore_id, task_id);
1677                         uint64_t tot_drop = stats_core_task_tot_drop(lcore_id, task_id);
1678                         uint64_t last_tsc = stats_core_task_last_tsc(lcore_id, task_id);
1679
1680                         if (input->reply) {
1681                                 char buf[128];
1682                                 snprintf(buf, sizeof(buf),
1683                                         "%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64"\n",
1684                                         tot_rx, tot_tx, tot_drop, last_tsc, rte_get_tsc_hz());
1685                                 input->reply(input, buf, strlen(buf));
1686                         }
1687                         else {
1688                                 plog_info("RX: %"PRIu64", TX: %"PRIu64", DROP: %"PRIu64"\n",
1689                                         tot_rx, tot_tx, tot_drop);
1690                         }
1691                 }
1692         }
1693         return 0;
1694 }
1695
1696 static int parse_cmd_dp_core_stats(const char *str, struct input *input)
1697 {
1698         unsigned lcores[RTE_MAX_LCORE], tasks[MAX_TASKS_PER_CORE], lcore_id, task_id, nb_cores, nb_tasks;
1699
1700         // This function either outputs a single line, in case of syntax error on the lists of cores and/or tasks
1701         if (parse_cores_tasks(str, lcores, tasks, &nb_cores, &nb_tasks)) {
1702                 if (input->reply) {
1703                         char buf[128];
1704                         snprintf(buf, sizeof(buf), "error: invalid syntax\n");
1705                         input->reply(input, buf, strlen(buf));
1706                 }
1707                 return -1;
1708         }
1709
1710         // or outputs (nb_cores * nb_tasks) lines, one line for each core/task pair:
1711         // - if the core/task pair is invalid, the output line reports an error
1712         // - otherwise, the output line provides the dataplane statistics for the core/task pair
1713         for (unsigned int i = 0; i < nb_cores; i++) {
1714                 for (unsigned int j = 0; j < nb_tasks; j++) {
1715                         lcore_id = lcores[i];
1716                         task_id = tasks[j];
1717                         if (core_task_is_valid(lcore_id, task_id) == 0) {
1718                                 if (input->reply) {
1719                                         char buf[128];
1720                                         snprintf(buf, sizeof(buf), "error: invalid core %u, task %u\n", lcore_id, task_id);
1721                                         input->reply(input, buf, strlen(buf));
1722                                 } else {
1723                                         plog_info("error: invalid core %u, task %u\n", lcore_id, task_id);
1724                                 }
1725                                 continue;
1726                         }
1727                         uint64_t tot_rx = stats_core_task_tot_rx(lcore_id, task_id);
1728                         uint64_t tot_tx = stats_core_task_tot_tx(lcore_id, task_id);
1729                         uint64_t tot_tx_fail = stats_core_task_tot_tx_fail(lcore_id, task_id);
1730                         uint64_t tot_rx_non_dp = stats_core_task_tot_rx_non_dp(lcore_id, task_id);
1731                         uint64_t tot_tx_non_dp = stats_core_task_tot_tx_non_dp(lcore_id, task_id);
1732                         uint64_t tot_drop = stats_core_task_tot_drop(lcore_id, task_id);
1733                         uint64_t last_tsc = stats_core_task_last_tsc(lcore_id, task_id);
1734
1735                         if (input->reply) {
1736                                 char buf[128];
1737                                 snprintf(buf, sizeof(buf),
1738                                         "%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%u,%u\n",
1739                                         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);
1740                                 input->reply(input, buf, strlen(buf));
1741                         }
1742                         else {
1743                                 plog_info("core: %u, task: %u, RX: %"PRIu64", TX: %"PRIu64", RX_NON_DP: %"PRIu64", TX_NON_DP: %"PRIu64", DROP: %"PRIu64", TX_FAIL: %"PRIu64"\n",
1744                                         lcore_id, task_id, tot_rx, tot_tx, tot_rx_non_dp, tot_tx_non_dp, tot_drop, tot_tx_fail);
1745                         }
1746                 }
1747         }
1748         return 0;
1749 }
1750
1751 static int parse_cmd_lat_stats(const char *str, struct input *input)
1752 {
1753         unsigned lcores[RTE_MAX_LCORE], tasks[MAX_TASKS_PER_CORE], lcore_id, task_id, nb_cores, nb_tasks;
1754
1755         // This function either outputs a single line, in case of syntax error on the lists of cores and/or tasks
1756         if (parse_cores_tasks(str, lcores, tasks, &nb_cores, &nb_tasks)) {
1757                 if (input->reply) {
1758                         char buf[128];
1759                         snprintf(buf, sizeof(buf), "error: invalid syntax\n");
1760                         input->reply(input, buf, strlen(buf));
1761                 }
1762                 return -1;
1763         }
1764
1765         // or outputs (nb_cores * nb_tasks) lines, one line for each core/task pair:
1766         // - if the core/task pair is invalid, the output line reports an error
1767         // - otherwise, the output line provides the latency statistics for the core/task pair
1768         for (unsigned int i = 0; i < nb_cores; i++) {
1769                 for (unsigned int j = 0; j < nb_tasks; j++) {
1770                         lcore_id = lcores[i];
1771                         task_id = tasks[j];
1772                         if (core_task_is_valid(lcore_id, task_id) == 0) {
1773                                 if (input->reply) {
1774                                         char buf[128];
1775                                         snprintf(buf, sizeof(buf), "error: invalid core %u, task %u\n", lcore_id, task_id);
1776                                         input->reply(input, buf, strlen(buf));
1777                                 } else {
1778                                         plog_info("error: invalid core %u, task %u\n", lcore_id, task_id);
1779                                 }
1780                                 continue;
1781                         }
1782                         if (!task_is_mode(lcore_id, task_id, "lat")) {
1783                                 if (input->reply) {
1784                                         char buf[128];
1785                                         snprintf(buf, sizeof(buf), "error: core %u task %u is not measuring latency\n", lcore_id, task_id);
1786                                         input->reply(input, buf, strlen(buf));
1787                                 } else {
1788                                         plog_info("error: core %u task %u is not measuring latency\n", lcore_id, task_id);
1789                                 }
1790                                 continue;
1791                         }
1792
1793                         struct stats_latency *stats = stats_latency_find(lcore_id, task_id);
1794                         struct stats_latency *tot = stats_latency_tot_find(lcore_id, task_id);
1795                         if (!stats || !tot) {
1796                                 if (input->reply) {
1797                                         char buf[128];
1798                                         snprintf(buf, sizeof(buf),
1799                                                  "error: core %u task %u stats = %p tot = %p\n",
1800                                                  lcore_id, task_id, stats, tot);
1801                                         input->reply(input, buf, strlen(buf));
1802                                 } else {
1803                                         plog_info("error: core %u task %u stats = %p tot = %p\n",
1804                                                   lcore_id, task_id, stats, tot);
1805                                 }
1806                                 continue;
1807                         }
1808
1809                         uint64_t last_tsc = stats_core_task_last_tsc(lcore_id, task_id);
1810                         uint64_t lat_min_usec = time_unit_to_usec(&stats->min.time);
1811                         uint64_t lat_max_usec = time_unit_to_usec(&stats->max.time);
1812                         uint64_t tot_lat_min_usec = time_unit_to_usec(&tot->min.time);
1813                         uint64_t tot_lat_max_usec = time_unit_to_usec(&tot->max.time);
1814                         uint64_t lat_avg_usec = time_unit_to_usec(&stats->avg.time);
1815
1816                         if (input->reply) {
1817                                 char buf[128];
1818                                 snprintf(buf, sizeof(buf),
1819                                          "%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%u,%u\n",
1820                                          lat_min_usec,
1821                                          lat_max_usec,
1822                                          lat_avg_usec,
1823                                          tot_lat_min_usec,
1824                                          tot_lat_max_usec,
1825                                          last_tsc,
1826                                          rte_get_tsc_hz(),
1827                                          lcore_id,
1828                                          task_id);
1829                                 input->reply(input, buf, strlen(buf));
1830                         }
1831                         else {
1832                                 plog_info("core: %u, task: %u, min: %"PRIu64", max: %"PRIu64", avg: %"PRIu64", min since reset: %"PRIu64", max since reset: %"PRIu64"\n",
1833                                           lcore_id,
1834                                           task_id,
1835                                           lat_min_usec,
1836                                           lat_max_usec,
1837                                           lat_avg_usec,
1838                                           tot_lat_min_usec,
1839                                           tot_lat_max_usec);
1840                         }
1841                 }
1842         }
1843         return 0;
1844 }
1845
1846 static int parse_cmd_show_irq_buckets(const char *str, struct input *input)
1847 {
1848         char buf[4096] = {0};
1849         unsigned int i, c;
1850         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
1851
1852         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
1853                 return -1;
1854
1855         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
1856                 for (c = 0; c < nb_cores; c++) {
1857                         lcore_id = lcores[c];
1858                         get_irq_buckets_by_core_task(buf, lcore_id, task_id);
1859                         plog_info("%s", buf);
1860                         if (input->reply)
1861                                 input->reply(input, buf, strlen(buf));
1862                         buf[0] = 0;
1863                 }
1864         }
1865         return 0;
1866 }
1867
1868 static int parse_cmd_irq(const char *str, struct input *input)
1869 {
1870         unsigned int i, c;
1871         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
1872
1873         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
1874                 return -1;
1875
1876         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
1877                 for (c = 0; c < nb_cores; c++) {
1878                         lcore_id = lcores[c];
1879                         if (!task_is_mode(lcore_id, task_id, "irq")) {
1880                                 plog_err("Core %u task %u is not in irq mode\n", lcore_id, task_id);
1881                         } else {
1882                                 struct task_irq *task_irq = (struct task_irq *)(lcore_cfg[lcore_id].tasks_all[task_id]);
1883
1884                                 task_irq_show_stats(task_irq, input);
1885                         }
1886                 }
1887         }
1888         return 0;
1889 }
1890
1891 static void task_lat_show_latency_histogram(uint8_t lcore_id, uint8_t task_id, struct input *input)
1892 {
1893 #ifdef LATENCY_HISTOGRAM
1894         uint64_t *buckets;
1895
1896         stats_core_lat_histogram(lcore_id, task_id, &buckets);
1897
1898         if (buckets == NULL)
1899                 return;
1900
1901         if (input->reply) {
1902                 char buf[4096] = {0};
1903                 for (size_t i = 0; i < 128; i++)
1904                         sprintf(buf+strlen(buf), "Bucket [%zu]: %"PRIu64"\n", i, buckets[i]);
1905                 input->reply(input, buf, strlen(buf));
1906         }
1907         else {
1908                 for (size_t i = 0; i < 128; i++)
1909                         if (buckets[i])
1910                                 plog_info("Bucket [%zu]: %"PRIu64"\n", i, buckets[i]);
1911         }
1912 #else
1913         plog_info("LATENCY_HISTOGRAM disabled\n");
1914 #endif
1915 }
1916
1917 static int parse_cmd_lat_packets(const char *str, struct input *input)
1918 {
1919         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
1920
1921         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
1922                 return -1;
1923
1924         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
1925                 for (unsigned int i = 0; i < nb_cores; i++) {
1926                         lcore_id = lcores[i];
1927                         if (!task_is_mode(lcore_id, task_id, "lat")) {
1928                                 plog_err("Core %u task %u is not measuring latency\n", lcore_id, task_id);
1929                         }
1930                         else {
1931                                 task_lat_show_latency_histogram(lcore_id, task_id, input);
1932                         }
1933                 }
1934         }
1935         return 0;
1936 }
1937
1938 static int parse_cmd_cgnat_public_hash(const char *str, struct input *input)
1939 {
1940         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
1941
1942         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
1943                 return -1;
1944
1945         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
1946                 for (unsigned int i = 0; i < nb_cores; i++) {
1947                         lcore_id = lcores[i];
1948
1949                         if (!task_is_mode(lcore_id, task_id, "cgnat")) {
1950                                 plog_err("Core %u task %u is not cgnat\n", lcore_id, task_id);
1951                         }
1952                         else {
1953                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
1954                                 task_cgnat_dump_public_hash((struct task_nat *)tbase);
1955                         }
1956                 }
1957         }
1958         return 0;
1959 }
1960
1961 static int parse_cmd_cgnat_private_hash(const char *str, struct input *input)
1962 {
1963         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
1964         uint32_t val;
1965
1966         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
1967                 return -1;
1968
1969         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
1970                 for (unsigned int i = 0; i < nb_cores; i++) {
1971                         lcore_id = lcores[i];
1972
1973                         if (!task_is_mode(lcore_id, task_id, "cgnat")) {
1974                                 plog_err("Core %u task %u is not cgnat\n", lcore_id, task_id);
1975                         }
1976                         else {
1977                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
1978                                 task_cgnat_dump_private_hash((struct task_nat *)tbase);
1979                         }
1980                 }
1981         }
1982         return 0;
1983 }
1984
1985 static int parse_cmd_accuracy(const char *str, struct input *input)
1986 {
1987         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
1988         uint32_t val;
1989
1990         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
1991                 return -1;
1992         if (!(str = strchr_skip_twice(str, ' ')))
1993                 return -1;
1994         if (sscanf(str, "%"PRIu32"", &val) != 1)
1995                 return -1;
1996
1997         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
1998                 for (unsigned int i = 0; i < nb_cores; i++) {
1999                         lcore_id = lcores[i];
2000
2001                         if (!task_is_mode(lcore_id, task_id, "lat")) {
2002                                 plog_err("Core %u task %u is not measuring latency\n", lcore_id, task_id);
2003                         }
2004                         else {
2005                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
2006
2007                                 task_lat_set_accuracy_limit((struct task_lat *)tbase, val);
2008                         }
2009                 }
2010         }
2011         return 0;
2012 }
2013
2014 static int parse_cmd_leave_igmp(const char *str, struct input *input)
2015 {
2016         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
2017
2018         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
2019                 return -1;
2020
2021         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
2022                 for (unsigned int i = 0; i < nb_cores; i++) {
2023                         lcore_id = lcores[i];
2024
2025                         if (!task_is_mode(lcore_id, task_id, "swap")) {
2026                                 plog_err("Core %u task %u is not running swap\n", lcore_id, task_id);
2027                         }
2028                         else {
2029                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
2030                                 igmp_leave_group(tbase);
2031                         }
2032                 }
2033         }
2034         return 0;
2035 }
2036
2037 static int parse_cmd_join_igmp(const char *str, struct input *input)
2038 {
2039         unsigned lcores[RTE_MAX_LCORE], lcore_id, task_id, nb_cores;
2040         uint32_t igmp_ip;
2041         uint8_t *igmp_bytes = (uint8_t *)&igmp_ip;
2042
2043         if (parse_cores_task(str, lcores, &task_id, &nb_cores))
2044                 return -1;
2045         if (!(str = strchr_skip_twice(str, ' ')))
2046                 return -1;
2047         if (sscanf(str, "%hhu.%hhu.%hhu.%hhu", igmp_bytes, igmp_bytes + 1, igmp_bytes + 2, igmp_bytes + 3) != 4) {
2048                 return -1;
2049         }
2050         if (cores_task_are_valid(lcores, task_id, nb_cores)) {
2051                 for (unsigned int i = 0; i < nb_cores; i++) {
2052                         lcore_id = lcores[i];
2053
2054                         if (!task_is_mode(lcore_id, task_id, "swap")) {
2055                                 plog_err("Core %u task %u is not running swap\n", lcore_id, task_id);
2056                         }
2057                         else {
2058                                 struct task_base *tbase = lcore_cfg[lcore_id].tasks_all[task_id];
2059                                 igmp_join_group(tbase, igmp_ip);
2060                         }
2061                 }
2062         }
2063         return 0;
2064 }
2065
2066 static int parse_cmd_rx_tx_info(const char *str, struct input *input)
2067 {
2068         if (strcmp(str, "") != 0) {
2069                 return -1;
2070         }
2071
2072         cmd_rx_tx_info();
2073         return 0;
2074 }
2075
2076 static int parse_cmd_version(const char *str, struct input *input)
2077 {
2078         if (strcmp(str, "") != 0) {
2079                 return -1;
2080         }
2081
2082         if (input->reply) {
2083                 uint64_t version =
2084                         ((uint64_t)VERSION_MAJOR) << 24 |
2085                         ((uint64_t)VERSION_MINOR) << 16 |
2086                         ((uint64_t)VERSION_REV) << 8;
2087
2088                 char buf[128];
2089                 snprintf(buf, sizeof(buf), "%"PRIu64",%"PRIu64"\n", version, (uint64_t)RTE_VERSION);
2090                 input->reply(input, buf, strlen(buf));
2091         }
2092         else {
2093                 plog_info("prox version: %d.%d, DPDK version: %s\n",
2094                           VERSION_MAJOR, VERSION_MINOR,
2095                           rte_version() + sizeof(RTE_VER_PREFIX));
2096         }
2097         return 0;
2098 }
2099
2100 struct cmd_str {
2101         const char *cmd;
2102         const char *args;
2103         const char *help;
2104         int (*parse)(const char *args, struct input *input);
2105 };
2106
2107 static int parse_cmd_help(const char *str, struct input *input);
2108
2109 static struct cmd_str cmd_strings[] = {
2110         {"history", "", "Print command history", parse_cmd_history},
2111         {"echo", "", "echo parameter, useful to resolving variables", parse_cmd_echo},
2112         {"quit", "", "Stop all cores and quit", parse_cmd_quit},
2113         {"quit_force", "", "Quit without waiting on cores to stop", parse_cmd_quit_force},
2114         {"help", "<substr>", "Show list of commands that have <substr> as a substring. If no substring is provided, all commands are shown.", parse_cmd_help},
2115         {"verbose", "<level>", "Set verbosity level", parse_cmd_verbose},
2116         {"thread info", "<core_id> <task_id>", "", parse_cmd_thread_info},
2117         {"mem info", "", "Show information about system memory (number of huge pages and addresses of these huge pages)", parse_cmd_mem_info},
2118         {"update interval", "<value>", "Update statistics refresh rate, in msec (must be >=10). Default is 1 second", parse_cmd_update_interval},
2119         {"rx tx info", "", "Print connections between tasks on all cores", parse_cmd_rx_tx_info},
2120         {"start", "<core list>|all <task_id>", "Start core <core_id> or all cores", parse_cmd_start},
2121         {"stop", "<core list>|all <task_id>", "Stop core <core id> or all cores", parse_cmd_stop},
2122
2123         {"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},
2124         {"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},
2125         {"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},
2126         {"rx distr start", "", "Start gathering statistical distribution of received packets", parse_cmd_rx_distr_start},
2127         {"rx distr stop", "", "Stop gathering statistical distribution of received packets", parse_cmd_rx_distr_stop},
2128         {"rx distr reset", "", "Reset gathered statistical distribution of received packets", parse_cmd_rx_distr_reset},
2129         {"rx distr show", "", "Display gathered statistical distribution of received packets", parse_cmd_rx_distr_show},
2130         {"tx distr start", "", "Start gathering statistical distribution of xmitted packets", parse_cmd_tx_distr_start},
2131         {"tx distr stop", "", "Stop gathering statistical distribution of xmitted packets", parse_cmd_tx_distr_stop},
2132         {"tx distr reset", "", "Reset gathered statistical distribution of xmitted packets", parse_cmd_tx_distr_reset},
2133         {"tx distr show", "", "Display gathered statistical distribution of xmitted packets", parse_cmd_tx_distr_show},
2134
2135         {"rate", "<port id> <queue id> <rate>", "rate does not include preamble, SFD and IFG", parse_cmd_rate},
2136         {"count","<core id> <task id> <count>", "Generate <count> packets", parse_cmd_count},
2137         {"bypass", "<core_id> <task_id>", "Bypass task", parse_cmd_bypass},
2138         {"reconnect", "<core_id> <task_id>", "Reconnect task", parse_cmd_reconnect},
2139         {"pkt_size", "<core_id> <task_id> <pkt_size>", "Set the packet size to <pkt_size>", parse_cmd_pkt_size},
2140         {"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},
2141         {"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},
2142         {"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},
2143         {"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},
2144         {"reset values all", "", "Undo all \"set value\" commands on all cores/tasks", parse_cmd_reset_values_all},
2145         {"reset randoms all", "", "Undo all \"set random\" commands on all cores/tasks", parse_cmd_reset_randoms_all},
2146         {"reset values", "<core id> <task id>", "Undo all \"set value\" commands on specified core/task", parse_cmd_reset_values},
2147
2148         {"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},
2149         {"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},
2150         {"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},
2151         {"gateway ip", "<core id> <task id> <ip>", "Define/Change IP address of destination gateway on core <core id> <task id>.", parse_cmd_gateway_ip},
2152         {"local ip", "<core id> <task id> <ip>", "Define/Change IP address of destination gateway on core <core id> <task id>.", parse_cmd_local_ip},
2153
2154         {"pps unit", "", "Change core stats pps unit", parse_cmd_pps_unit},
2155         {"reset stats", "", "Reset all statistics", parse_cmd_reset_stats},
2156         {"reset lat stats", "", "Reset all latency statistics", parse_cmd_reset_lat_stats},
2157         {"tot stats", "", "Print total RX and TX packets", parse_cmd_tot_stats},
2158         {"tot ierrors tot", "", "Print total number of ierrors since reset", parse_cmd_tot_ierrors_tot},
2159         {"tot imissed tot", "", "Print total number of imissed since reset", parse_cmd_tot_imissed_tot},
2160         {"lat stats", "<core id> <task id>", "Print min,max,avg latency as measured during last sampling interval", parse_cmd_lat_stats},
2161         {"irq stats", "<core id> <task id>", "Print irq related infos", parse_cmd_irq},
2162         {"show irq buckets", "<core id> <task id>", "Print irq buckets", parse_cmd_show_irq_buckets},
2163         {"lat packets", "<core id> <task id>", "Print the latency for each of the last set of packets", parse_cmd_lat_packets},
2164         {"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},
2165         {"core stats", "<core id> <task id>", "Print rx/tx/drop for task <task id> running on core <core id>", parse_cmd_core_stats},
2166         {"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},
2167         {"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},
2168         {"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},
2169         {"read reg", "", "Read register", parse_cmd_read_reg},
2170         {"write reg", "", "Read register", parse_cmd_write_reg},
2171         {"set vlan offload", "", "Set Vlan offload", parse_cmd_set_vlan_offload},
2172         {"set vlan filter", "", "Set Vlan filter", parse_cmd_set_vlan_filter},
2173         {"reset cache", "", "Reset cache", parse_cmd_cache_reset},
2174         {"set cache class mask", "<core id> <class> <mask>", "Set cache class mask for <core id>", parse_cmd_set_cache_class_mask},
2175         {"get cache class mask", "<core id> <class>", "Get cache class mask", parse_cmd_get_cache_class_mask},
2176         {"set cache class", "<core id> <class>", "Set cache class", parse_cmd_set_cache_class},
2177         {"get cache class", "<core id>", "Get cache class", parse_cmd_get_cache_class},
2178         {"get cache mask", "<core id>", "Get cache mask", parse_cmd_get_cache_mask},
2179         {"reset port", "<port id>", "Reset port", parse_cmd_reset_port},
2180         {"enable multicast", "<port id> <MAC>", "Enable multicast", parse_cmd_enable_multicast},
2181         {"disable multicast", "<port id> <MAC>", "Disable multicast", parse_cmd_disable_multicast},
2182         {"ring info all", "", "Get information about ring, such as ring size and number of elements in the ring", parse_cmd_ring_info_all},
2183         {"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},
2184         {"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},
2185         {"port up", "<port id>", "Set the port up", parse_cmd_port_up},
2186         {"port down", "<port id>", "Set the port down", parse_cmd_port_down},
2187         {"port link state", "<port id>", "Get link state (up or down) for port", parse_cmd_port_link_state},
2188         {"port xstats", "<port id>", "Get extra statistics for the port", parse_cmd_xstats},
2189         {"stats", "<stats_path>", "Get stats as specified by <stats_path>. A comma-separated list of <stats_path> can be supplied", parse_cmd_stats},
2190         {"cgnat dump public hash", "<core id> <task id>", "Dump cgnat public hash table", parse_cmd_cgnat_public_hash},
2191         {"cgnat dump private hash", "<core id> <task id>", "Dump cgnat private hash table", parse_cmd_cgnat_private_hash},
2192         {"delay_us", "<core_id> <task_id> <delay_us>", "Set the delay in usec for the impair mode to <delay_us>", parse_cmd_delay_us},
2193         {"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},
2194         {"probability", "<core_id> <task_id> <probability>", "Set the percent of forwarded packets for the impair mode", parse_cmd_set_probability},
2195         {"version", "", "Show version", parse_cmd_version},
2196         {"join igmp", "<core_id> <task_id> <ip>", "Send igmp membership report for group <ip>", parse_cmd_join_igmp},
2197         {"leave igmp", "<core_id> <task_id>", "Send igmp leave group", parse_cmd_leave_igmp},
2198         {0,0,0,0},
2199 };
2200
2201 static int parse_cmd_help(const char *str, struct input *input)
2202 {
2203         /* str contains the arguments, all commands that have str as a
2204            substring will be shown. */
2205         size_t len, len2, longest_cmd = 0;
2206         for (size_t i = 0; i < cmd_parser_n_cmd(); ++i) {
2207                 if (longest_cmd <strlen(cmd_strings[i].cmd))
2208                         longest_cmd = strlen(cmd_strings[i].cmd);
2209         }
2210         /* A single call to log will be executed after the help string
2211            has been built. The reason for this is to make use of the
2212            built-in pager. */
2213         char buf[32768] = {0};
2214
2215         for (size_t i = 0; i < cmd_parser_n_cmd(); ++i) {
2216                 int is_substr = 0;
2217                 const size_t cmd_len = strlen(cmd_strings[i].cmd);
2218                 for (size_t j = 0; j < cmd_len; ++j) {
2219                         is_substr = 1;
2220                         for (size_t k = 0; k < strlen(str); ++k) {
2221                                 if (str[k] != (cmd_strings[i].cmd + j)[k]) {
2222                                         is_substr = 0;
2223                                         break;
2224                                 }
2225                         }
2226                         if (is_substr)
2227                                 break;
2228                 }
2229                 if (!is_substr)
2230                         continue;
2231
2232                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%s", cmd_strings[i].cmd);
2233                 len = strlen(cmd_strings[i].cmd);
2234                 while (len < longest_cmd) {
2235                         len++;
2236                         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " ");
2237                 }
2238
2239                 if (strlen(cmd_strings[i].args)) {
2240                         char tmp[256] = {0};
2241                         prox_strncpy(tmp, cmd_strings[i].args, 128);
2242                         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "Arguments: %s\n", tmp);
2243                         len2 = len;
2244                         if (strlen(cmd_strings[i].help)) {
2245                                 while (len2) {
2246                                         len2--;
2247                         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " ");
2248                                 }
2249                         }
2250                 }
2251
2252                 if (strlen(cmd_strings[i].help)) {
2253                         int add = 0;
2254                         const char *h = cmd_strings[i].help;
2255                         do {
2256                                 if (add) {
2257                                         len2 = len;
2258                                         while (len2) {
2259                                                 len2--;
2260                                                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " ");
2261                                         }
2262                                 }
2263                                 char tmp[128] = {0};
2264                                 const size_t max_len = strlen(h) > 80? 80 : strlen(h);
2265                                 size_t len3 = max_len;
2266                                 if (len3 == 80) {
2267                                         while (len3 && h[len3] != ' ')
2268                                                 len3--;
2269                                         if (len3 == 0)
2270                                                 len3 = max_len;
2271                                 }
2272
2273                                 // Use strncpy here and not prox_strncpy. The dest (tmp) has been initialized with 0.
2274                                 // The fact that we are copying 80 characters potentially not null terminated is hence not an issue.
2275                                 // Using prox_strncpy here might cause a PROX_PANIC
2276                                 strncpy(tmp, h, len3);
2277                                 h += len3;
2278                                 while (h[0] == ' ' && strlen(h))
2279                                         h++;
2280
2281                                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%s\n", tmp);
2282                                 add = 1;
2283                         } while(strlen(h));
2284                 }
2285                 if (strlen(cmd_strings[i].help) == 0&& strlen(cmd_strings[i].args) == 0) {
2286                         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "\n");
2287                 }
2288         }
2289         plog_info("%s", buf);
2290
2291         return 0;
2292 }
2293
2294 const char *cmd_parser_cmd(size_t i)
2295 {
2296         i = i < cmd_parser_n_cmd()? i: cmd_parser_n_cmd();
2297         return cmd_strings[i].cmd;
2298 }
2299
2300 size_t cmd_parser_n_cmd(void)
2301 {
2302         return sizeof(cmd_strings)/sizeof(cmd_strings[0]) - 1;
2303 }
2304
2305 void cmd_parser_parse(const char *str, struct input *input)
2306 {
2307         size_t skip;
2308
2309         for (size_t i = 0; i < cmd_parser_n_cmd(); ++i) {
2310                 skip = strlen(cmd_strings[i].cmd);
2311                 if (strncmp(cmd_strings[i].cmd, str, skip) == 0 &&
2312                     (str[skip] == ' ' || str[skip] == 0)) {
2313                         while (str[skip] == ' ')
2314                                 skip++;
2315
2316                         if (cmd_strings[i].parse(str + skip, input) != 0) {
2317                                 plog_warn("Invalid syntax for command '%s': %s %s\n",
2318                                           cmd_strings[i].cmd, cmd_strings[i].args, cmd_strings[i].help);
2319                         }
2320                         return ;
2321                 }
2322         }
2323
2324         plog_err("Unknown command: '%s'\n", str);
2325 }