FD.io VPP  v21.01.1
Vector Packet Processing
custom_dump.c
Go to the documentation of this file.
1 /*
2  * ------------------------------------------------------------------
3  * custom_dump.c - pretty-print API messages for replay
4  *
5  * Copyright (c) 2014-2016 Cisco and/or its affiliates. Licensed under the
6  * Apache License, Version 2.0 (the "License"); you may not use this file
7  * except in compliance with the License. You may obtain a copy of the
8  * License at:
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15  * License for the specific language governing permissions and limitations
16  * under the License.
17  * ------------------------------------------------------------------
18  */
19 
20 #include <vnet/vnet.h>
21 #include <vnet/ip/ip.h>
23 #include <vnet/ip/ip_types_api.h>
24 #include <vnet/fib/fib_api.h>
25 #include <vnet/unix/tuntap.h>
26 #include <vnet/mpls/mpls.h>
27 #include <vnet/l2/l2_input.h>
28 #include <vnet/srv6/sr.h>
29 #include <vnet/srmpls/sr_mpls.h>
32 #include <vnet/policer/xlate.h>
33 #include <vnet/policer/policer.h>
35 #include <vlib/vlib.h>
36 #include <vlib/pci/pci.h>
37 #include <vlib/unix/unix.h>
38 #include <vlibapi/api.h>
39 #include <vlibmemory/api.h>
40 #include <vnet/qos/qos_types.h>
41 
42 #include <vnet/ethernet/ethernet.h>
44 #include <vnet/l2/l2_vtr.h>
45 
46 #include <vpp/api/vpe_msg_enum.h>
47 #include <vpp/api/types.h>
48 
49 #include <vnet/bonding/node.h>
50 
51 #include <vnet/format_fns.h>
52 
53 #define vl_typedefs /* define message structures */
54 #include <vpp/api/vpe_all_api_h.h>
55 #undef vl_typedefs
56 
57 #define vl_endianfun /* define message structures */
58 #include <vpp/api/vpe_all_api_h.h>
59 #undef vl_endianfun
60 
61 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
62 
63 #define FINISH \
64  vec_add1 (s, 0); \
65  vl_print (handle, (char *)s); \
66  vec_free (s); \
67  return handle;
68 
69 
71  (vl_api_create_loopback_t * mp, void *handle)
72 {
73  u8 *s;
74 
75  s = format (0, "SCRIPT: create_loopback ");
76  s = format (s, "mac %U ", format_ethernet_address, &mp->mac_address);
77 
78  FINISH;
79 }
80 
82  (vl_api_create_loopback_instance_t * mp, void *handle)
83 {
84  u8 *s;
85 
86  s = format (0, "SCRIPT: create_loopback ");
87  s = format (s, "mac %U ", format_ethernet_address, &mp->mac_address);
88  s = format (s, "instance %d ", mp->user_instance);
89 
90  FINISH;
91 }
92 
94  (vl_api_delete_loopback_t * mp, void *handle)
95 {
96  u8 *s;
97 
98  s = format (0, "SCRIPT: delete_loopback ");
99  s = format (s, "sw_if_index %d ", mp->sw_if_index);
100 
101  FINISH;
102 }
103 
105  (vl_api_sw_interface_set_flags_t * mp, void *handle)
106 {
107  u8 *s;
108  s = format (0, "SCRIPT: sw_interface_set_flags ");
109 
110  s = format (s, "sw_if_index %d ", mp->sw_if_index);
111 
113  s = format (s, "admin-up ");
114  else
115  s = format (s, "admin-down ");
116 
117  FINISH;
118 }
119 
120 __clib_unused
123 {
124  u8 *s;
125  s = format (0, "SCRIPT: sw_interface_set_rx_placement ");
126 
127  s = format (s, "sw_if_index %d ", mp->sw_if_index);
128 
129  s = format (s, "queue %d ", mp->queue_id);
130  if (mp->is_main)
131  s = format (s, "main ");
132  else
133  s = format (s, "worker %d ", mp->worker_id);
134 
135  FINISH;
136 }
137 
140 {
141  u8 *s;
142  u32 sw_if_index = (mp->sw_if_index);
143 
144  s = format (0, "SCRIPT: sw_interface_rx_placement_dump ");
145 
146  if (sw_if_index != ~0)
147  s = format (s, "sw_if_index %d ", sw_if_index);
148 
149  FINISH;
150 }
151 
153  (vl_api_sw_interface_event_t * mp, void *handle)
154 {
155  u8 *s;
156  s = format (0, "SCRIPT: sw_interface_event ");
157 
158  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
159 
161  s = format (s, "admin-up ");
162  else
163  s = format (s, "admin-down ");
164 
165  if ((mp->flags) & IF_STATUS_API_FLAG_LINK_UP)
166  s = format (s, "link-up");
167  else
168  s = format (s, "link-down");
169 
170  if (mp->deleted)
171  s = format (s, " deleted");
172 
173  FINISH;
174 }
175 
176 
179 {
180  u8 *s;
181 
182  s = format (0, "SCRIPT: sw_interface_add_del_address ");
183  s = format (s, "sw_if_index %d ", mp->sw_if_index);
184  s = format (s, "%U ", format_vl_api_prefix_t, &mp->prefix);
185  if (mp->is_add == 0)
186  s = format (s, "del ");
187  if (mp->del_all)
188  s = format (s, "del-all ");
189 
190  FINISH;
191 }
192 
194  (vl_api_sw_interface_set_table_t * mp, void *handle)
195 {
196  u8 *s;
197 
198  s = format (0, "SCRIPT: sw_interface_set_table ");
199 
200  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
201 
202  if (mp->vrf_id)
203  s = format (s, "vrf %d ", (mp->vrf_id));
204 
205  if (mp->is_ipv6)
206  s = format (s, "ipv6 ");
207 
208  FINISH;
209 }
210 
213 {
214  u8 *s;
215 
216  s = format (0, "SCRIPT: sw_interface_set_mpls_enable ");
217 
218  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
219 
220  if (mp->enable == 0)
221  s = format (s, "disable");
222 
223  FINISH;
224 }
225 
227  (vl_api_sw_interface_set_vpath_t * mp, void *handle)
228 {
229  u8 *s;
230 
231  s = format (0, "SCRIPT: sw_interface_set_vpath ");
232 
233  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
234 
235  if (mp->enable)
236  s = format (s, "enable ");
237  else
238  s = format (s, "disable ");
239 
240  FINISH;
241 }
242 
245 {
246  u8 *s;
247 
248  s = format (0, "SCRIPT: sw_interface_set_vxlan_bypass ");
249 
250  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
251 
252  if (mp->is_ipv6)
253  s = format (s, "ip6 ");
254 
255  if (mp->enable)
256  s = format (s, "enable ");
257  else
258  s = format (s, "disable ");
259 
260  FINISH;
261 }
262 
265 {
266  u8 *s;
267 
268  s = format (0, "SCRIPT: sw_interface_set_l2_xconnect ");
269 
270  s = format (s, "sw_if_index %d ", (mp->rx_sw_if_index));
271 
272  if (mp->enable)
273  {
274  s = format (s, "tx_sw_if_index %d ", (mp->tx_sw_if_index));
275  }
276  else
277  s = format (s, "delete ");
278 
279  FINISH;
280 }
281 
284 {
285  u8 *s;
286 
287  s = format (0, "SCRIPT: sw_interface_set_l2_bridge ");
288 
289  s = format (s, "sw_if_index %d ", (mp->rx_sw_if_index));
290 
291  if (mp->enable)
292  {
293  s = format (s, "bd_id %d shg %d ", (mp->bd_id), mp->shg);
294  if (L2_API_PORT_TYPE_BVI == (mp->port_type))
295  s = format (s, "bvi ");
296  if (L2_API_PORT_TYPE_UU_FWD == (mp->port_type))
297  s = format (s, "uu-fwd ");
298  s = format (s, "enable");
299  }
300  else
301  s = format (s, "disable ");
302 
303  FINISH;
304 }
305 
307  (vl_api_bridge_domain_add_del_t * mp, void *handle)
308 {
309  u8 *s;
310 
311  s = format (0, "SCRIPT: bridge_domain_add_del ");
312 
313  s = format (s, "bd_id %d ", (mp->bd_id));
314 
315  if (mp->is_add)
316  {
317  if (mp->bd_tag[0])
318  s = format (s, "bd_tag %s ", mp->bd_tag);
319  s = format (s, "flood %d uu-flood %d ", mp->flood, mp->uu_flood);
320  s = format (s, "forward %d learn %d ", mp->forward, mp->learn);
321  s = format (s, "arp-term %d mac-age %d", mp->arp_term, mp->mac_age);
322  }
323  else
324  s = format (s, "del ");
325 
326  FINISH;
327 }
328 
331 {
332  u8 *s;
333 
334  s = format (0, "SCRIPT: bridge_domain_set_mac_age ");
335 
336  s = format (s, "bd_id %d ", (mp->bd_id));
337 
338  s = format (s, "mac-age %d", mp->mac_age);
339 
340  FINISH;
341 }
342 
344  (vl_api_bridge_domain_dump_t * mp, void *handle)
345 {
346  u8 *s;
347  u32 bd_id = (mp->bd_id);
348 
349  s = format (0, "SCRIPT: bridge_domain_dump ");
350 
351  if (bd_id != ~0)
352  s = format (s, "bd_id %d ", bd_id);
353 
354  FINISH;
355 }
356 
358  (vl_api_l2fib_flush_all_t * mp, void *handle)
359 {
360  u8 *s;
361 
362  s = format (0, "SCRIPT: l2fib_flush_all ");
363 
364  FINISH;
365 }
366 
367 
369  (vl_api_l2fib_flush_bd_t * mp, void *handle)
370 {
371  u8 *s;
372  u32 bd_id = (mp->bd_id);
373 
374  s = format (0, "SCRIPT: l2fib_flush_bd ");
375  s = format (s, "bd_id %d ", bd_id);
376 
377  FINISH;
378 }
379 
381  (vl_api_l2fib_flush_int_t * mp, void *handle)
382 {
383  u8 *s;
384  u32 sw_if_index = (mp->sw_if_index);
385 
386  s = format (0, "SCRIPT: l2fib_flush_int ");
387  s = format (s, "sw_if_index %d ", sw_if_index);
388 
389  FINISH;
390 }
391 
392 static void *vl_api_l2fib_add_del_t_print
393  (vl_api_l2fib_add_del_t * mp, void *handle)
394 {
395  u8 *s;
396 
397  s = format (0, "SCRIPT: l2fib_add_del ");
398 
399  s = format (s, "mac %U ", format_ethernet_address, mp->mac);
400 
401  s = format (s, "bd_id %d ", (mp->bd_id));
402 
403 
404  if (mp->is_add)
405  {
406  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
407  if (mp->static_mac)
408  s = format (s, "%s", "static ");
409  if (mp->filter_mac)
410  s = format (s, "%s", "filter ");
411  if (mp->bvi_mac)
412  s = format (s, "%s", "bvi ");
413  }
414  else
415  {
416  s = format (s, "del ");
417  }
418 
419  FINISH;
420 }
421 
422 static void *
424 {
425  u8 *s;
426  u32 flags = (mp->feature_bitmap);
427 
428  s = format (0, "SCRIPT: l2_flags ");
429 
430  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
431 
432  if (flags & L2_LEARN)
433  s = format (s, "learn ");
434  if (flags & L2_FWD)
435  s = format (s, "forward ");
436  if (flags & L2_FLOOD)
437  s = format (s, "flood ");
438  if (flags & L2_UU_FLOOD)
439  s = format (s, "uu-flood ");
440  if (flags & L2_ARP_TERM)
441  s = format (s, "arp-term ");
442 
443  if (mp->is_set == 0)
444  s = format (s, "clear ");
445 
446  FINISH;
447 }
448 
449 static void *vl_api_bridge_flags_t_print
450  (vl_api_bridge_flags_t * mp, void *handle)
451 {
452  u8 *s;
453  u32 flags = (mp->flags);
454 
455  s = format (0, "SCRIPT: bridge_flags ");
456 
457  s = format (s, "bd_id %d ", (mp->bd_id));
458 
459  if (flags & BRIDGE_API_FLAG_LEARN)
460  s = format (s, "learn ");
461  if (flags & BRIDGE_API_FLAG_FWD)
462  s = format (s, "forward ");
463  if (flags & BRIDGE_API_FLAG_FLOOD)
464  s = format (s, "flood ");
465  if (flags & BRIDGE_API_FLAG_UU_FLOOD)
466  s = format (s, "uu-flood ");
467  if (flags & BRIDGE_API_FLAG_ARP_TERM)
468  s = format (s, "arp-term ");
469 
470  if (mp->is_set == 0)
471  s = format (s, "clear ");
472 
473  FINISH;
474 }
475 
477  (vl_api_bd_ip_mac_add_del_t * mp, void *handle)
478 {
479  u8 *s;
480 
481  s = format (0, "SCRIPT: bd_ip_mac_add_del ");
482  s = format (s, "bd_id %d ", (mp->entry.bd_id));
483 
484  s = format (s, "%U ", format_vl_api_address, &mp->entry.ip);
485  s = format (s, "%U ", format_vl_api_mac_address, &mp->entry.mac);
486  if (mp->is_add == 0)
487  s = format (s, "del ");
488 
489  FINISH;
490 }
491 
493  (vl_api_bd_ip_mac_flush_t * mp, void *handle)
494 {
495  u8 *s;
496 
497  s = format (0, "SCRIPT: bd_ip_mac_flush ");
498  s = format (s, "bd_id %d ", (mp->bd_id));
499 
500  FINISH;
501 }
502 
503 __clib_unused
504  static void *vl_api_bd_ip_mac_dump_t_print
505  (vl_api_bd_ip_mac_dump_t * mp, void *handle)
506 {
507  u8 *s;
508 
509  s = format (0, "SCRIPT: bd_ip_mac_dump ");
510 
511  FINISH;
512 }
513 
514 static void *vl_api_tap_create_v2_t_print
515  (vl_api_tap_create_v2_t * mp, void *handle)
516 {
517  u8 *s;
518  u8 null_mac[6];
519 
520  clib_memset (null_mac, 0, sizeof (null_mac));
521 
522  s = format (0, "SCRIPT: tap_create_v2 ");
523  s = format (s, "id %u ", (mp->id));
524  if (memcmp (mp->mac_address, null_mac, 6))
525  s = format (s, "mac-address %U ",
527  if (memcmp (mp->host_mac_addr, null_mac, 6))
528  s = format (s, "host-mac-addr %U ",
530  if (mp->host_if_name_set)
531  s = format (s, "host-if-name %s ", mp->host_if_name);
532  if (mp->host_namespace_set)
533  s = format (s, "host-ns %s ", mp->host_namespace);
534  if (mp->host_bridge_set)
535  s = format (s, "host-bridge %s ", mp->host_bridge);
536  if (mp->host_ip4_prefix_set)
537  s = format (s, "host-ip4-addr %U/%d ", format_ip4_address,
538  mp->host_ip4_prefix.address, mp->host_ip4_prefix.len);
539  if (mp->host_ip6_prefix_set)
540  s = format (s, "host-ip6-addr %U/%d ", format_ip6_address,
541  mp->host_ip6_prefix.address, mp->host_ip6_prefix.len);
542  if (mp->host_ip4_gw_set)
543  s =
544  format (s, "host-ip4-gw %U ", format_ip4_address,
545  mp->host_ip4_prefix.address);
546  if (mp->host_ip6_gw_set)
547  s =
548  format (s, "host-ip6-gw %U ", format_ip6_address,
549  mp->host_ip6_prefix.address);
550  if (mp->num_rx_queues)
551  s = format (s, "num_rx_queues %u ", mp->num_rx_queues);
552  if (mp->tx_ring_sz)
553  s = format (s, "tx-ring-size %u ", (mp->tx_ring_sz));
554  if (mp->rx_ring_sz)
555  s = format (s, "rx-ring-size %u ", (mp->rx_ring_sz));
556  if (mp->host_mtu_set)
557  s = format (s, "host-mtu-size %u ", (mp->host_mtu_size));
558  if ((mp->tap_flags) & TAP_API_FLAG_GSO)
559  s = format (s, "gso-enabled ");
561  s = format (s, "csum-offload-enabled ");
562  if ((mp->tap_flags) & TAP_API_FLAG_PERSIST)
563  s = format (s, "persist ");
564  if ((mp->tap_flags) & TAP_API_FLAG_ATTACH)
565  s = format (s, "attach ");
566  if ((mp->tap_flags) & TAP_API_FLAG_TUN)
567  s = format (s, "tun ");
569  s = format (s, "gro-coalesce-enabled ");
570  if ((mp->tap_flags) & TAP_API_FLAG_PACKED)
571  s = format (s, "packed ");
572  if ((mp->tap_flags) & TAP_API_FLAG_IN_ORDER)
573  s = format (s, "in-order ");
574  FINISH;
575 }
576 
577 static void *vl_api_tap_delete_v2_t_print
578  (vl_api_tap_delete_v2_t * mp, void *handle)
579 {
580  u8 *s;
581 
582  s = format (0, "SCRIPT: tap_delete_v2 ");
583  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
584 
585  FINISH;
586 }
587 
590 {
591  u8 *s;
592 
593  s = format (0, "SCRIPT: sw_interface_tap_v2_dump ");
594 
595  FINISH;
596 }
597 
598 __clib_unused
600  (vl_api_virtio_pci_create_t * mp, void *handle)
601 {
602  u8 *s;
603  u8 null_mac[6];
604 
605  clib_memset (null_mac, 0, sizeof (null_mac));
606 
607  s = format (0, "SCRIPT: virtio_pci_create ");
608  s = format (s, "pci_addr %U ", format_vlib_pci_addr, (mp->pci_addr));
609  if (memcmp (mp->mac_address, null_mac, 6))
610  s = format (s, "mac-address %U ",
612  if (mp->features)
613  s = format (s, "features 0x%llx ", clib_net_to_host_u64 (mp->features));
614  if (mp->gso_enabled)
615  s = format (s, "gso-enabled ");
616  if (mp->checksum_offload_enabled)
617  s = format (s, "checksum_offload_enabled");
618  FINISH;
619 }
620 
621 __clib_unused
623  (vl_api_virtio_pci_create_v2_t * mp, void *handle)
624 {
625  u8 *s;
626  u8 null_mac[6];
627 
628  clib_memset (null_mac, 0, sizeof (null_mac));
629 
630  s = format (0, "SCRIPT: virtio_pci_create_v2 ");
631  s = format (s, "pci_addr %U ", format_vlib_pci_addr, (mp->pci_addr));
632  if (memcmp (mp->mac_address, null_mac, 6))
633  s = format (s, "mac-address %U ",
635  if (mp->features)
636  s = format (s, "features 0x%llx ", clib_net_to_host_u64 (mp->features));
638  s = format (s, "gso-enabled ");
640  s = format (s, "checksum_offload_enabled ");
642  s = format (s, "gro-coalesce-enabled ");
644  s = format (s, "packed ");
646  s = format (s, "in-order ");
648  s = format (s, "buffering ");
649  FINISH;
650 }
651 
652 __clib_unused
654  (vl_api_virtio_pci_delete_t * mp, void *handle)
655 {
656  u8 *s;
657 
658  s = format (0, "SCRIPT: virtio_pci_delete ");
659  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
660 
661  FINISH;
662 }
663 
664 __clib_unused
667 {
668  u8 *s;
669 
670  s = format (0, "SCRIPT: sw_interface_virtio_pci_dump ");
671 
672  FINISH;
673 }
674 
675 static void *vl_api_bond_create_t_print
676  (vl_api_bond_create_t * mp, void *handle)
677 {
678  u8 *s;
679  u8 null_mac[6];
680 
681  clib_memset (null_mac, 0, sizeof (null_mac));
682 
683  s = format (0, "SCRIPT: bond_create ");
684  if (memcmp (mp->mac_address, null_mac, 6))
685  s = format (s, "mac-address %U ",
687  if (mp->mode)
688  s = format (s, "mode %U ", format_bond_mode, ntohl (mp->mode));
689  if (mp->lb)
690  s = format (s, "lb %U ", format_bond_load_balance, ntohl (mp->lb));
691  if (mp->numa_only)
692  s = format (s, "numa-only is set in lacp mode");
693  if (mp->id != ~0)
694  s = format (s, "id %u ", (mp->id));
695  FINISH;
696 }
697 
698 static void *vl_api_bond_create2_t_print
699  (vl_api_bond_create2_t * mp, void *handle)
700 {
701  u8 *s;
702  u8 null_mac[6];
703 
704  clib_memset (null_mac, 0, sizeof (null_mac));
705 
706  s = format (0, "SCRIPT: bond_create2 ");
707  if (memcmp (mp->mac_address, null_mac, 6))
708  s = format (s, "mac-address %U ",
710  if (mp->mode)
711  s = format (s, "mode %U ", format_bond_mode, ntohl (mp->mode));
712  if (mp->lb)
713  s = format (s, "lb %U ", format_bond_load_balance, ntohl (mp->lb));
714  if (mp->numa_only)
715  s = format (s, "numa-only ");
716  if (mp->enable_gso)
717  s = format (s, "gso ");
718  if (mp->id != ~0)
719  s = format (s, "id %u ", (mp->id));
720  FINISH;
721 }
722 
723 static void *vl_api_bond_delete_t_print
724  (vl_api_bond_delete_t * mp, void *handle)
725 {
726  u8 *s;
727 
728  s = format (0, "SCRIPT: bond_delete ");
729  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
730 
731  FINISH;
732 }
733 
735  (vl_api_bond_add_member_t * mp, void *handle)
736 {
737  u8 *s;
738 
739  s = format (0, "SCRIPT: bond_add_member ");
740  s = format (s, "bond_sw_if_index %u ", (mp->bond_sw_if_index));
741  s = format (s, "sw_if_index %u ", (mp->sw_if_index));
742  if (mp->is_passive)
743  s = format (s, "passive ");
744  if (mp->is_long_timeout)
745  s = format (s, "long-timeout ");
746 
747  FINISH;
748 }
749 
752 {
753  u8 *s;
754 
755  s = format (0, "SCRIPT: sw_interface_set_bond_weight ");
756  s = format (s, "sw_if_index %u ", ntohl (mp->sw_if_index));
757  s = format (s, "weight %u ", ntohl (mp->weight));
758 
759  FINISH;
760 }
761 
763  (vl_api_bond_detach_member_t * mp, void *handle)
764 {
765  u8 *s;
766 
767  s = format (0, "SCRIPT: bond_detach_member ");
768  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
769 
770  FINISH;
771 }
772 
774  (vl_api_sw_bond_interface_dump_t * mp, void *handle)
775 {
776  u8 *s;
777 
778  s = format (0, "SCRIPT: sw_bond_interface_dump ");
779  if (mp->sw_if_index != ~0)
780  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
781 
782  FINISH;
783 }
784 
787 {
788  u8 *s;
789 
790  s = format (0, "SCRIPT: sw_member_interface_dump ");
791  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
792 
793  FINISH;
794 }
795 
797  (vl_api_ip_route_add_del_t * mp, void *handle)
798 {
799  u8 *s, p;
800 
801  s = format (0, "SCRIPT: ip_route_add_del ");
802  if (mp->is_add == 0)
803  s = format (s, "del ");
804 
805  s = format (s, "%U", format_vl_api_prefix, &mp->route.prefix);
806 
807  for (p = 0; p < mp->route.n_paths; p++)
808  s = format (s, " [%U]", format_vl_api_fib_path, &mp->route.paths[p]);
809 
810  FINISH;
811 }
812 
814  (vl_api_mpls_route_add_del_t * mp, void *handle)
815 {
816  u8 *s, p;
817 
818  s = format (0, "SCRIPT: mpls_route_add_del ");
819 
820  if (mp->mr_is_add)
821  s = format (s, "add ");
822  else
823  s = format (s, "del ");
824 
825  s = format (s, "table %d ", (mp->mr_route.mr_table_id));
826  s = format (s, "%d ", (mp->mr_route.mr_label));
827 
828  if (mp->mr_route.mr_eos)
829  s = format (s, "eos ");
830  else
831  s = format (s, "non-eos ");
832 
833  if (mp->mr_route.mr_is_multicast)
834  s = format (s, "multicast ");
835 
836  for (p = 0; p < mp->mr_route.mr_n_paths; p++)
837  s =
838  format (s, " [%U]", format_vl_api_fib_path, &mp->mr_route.mr_paths[p]);
839 
840 
841  FINISH;
842 }
843 
845  (vl_api_ip_table_add_del_t * mp, void *handle)
846 {
847  u8 *s;
848 
849  s = format (0, "SCRIPT: ip_table_add_del ");
850  if (mp->is_add)
851  s = format (s, "add ");
852  else
853  s = format (s, "del ");
854  if (mp->table.is_ip6)
855  s = format (s, "ip6 ");
856  s = format (s, "table %d ", (mp->table.table_id));
857  s = format (s, "%s ", mp->table.name);
858 
859  FINISH;
860 }
861 
863  (vl_api_mpls_table_add_del_t * mp, void *handle)
864 {
865  u8 *s;
866 
867  s = format (0, "SCRIPT: mpls_table_add_del ");
868  if (mp->mt_is_add)
869  s = format (s, "add ");
870  else
871  s = format (s, "del ");
872  s = format (s, "table %d ", (mp->mt_table.mt_table_id));
873 
874  FINISH;
875 }
876 
878  (vl_api_mpls_tunnel_add_del_t * mp, void *handle)
879 {
880  u8 *s, p;
881 
882  s = format (0, "SCRIPT: mpls_tunnel_add_del ");
883 
884  if (mp->mt_is_add == 0)
885  s = format (s, "del sw_if_index %d ", (mp->mt_tunnel.mt_sw_if_index));
886  else
887  s = format (s, "sw_if_index %d ", (mp->mt_tunnel.mt_sw_if_index));
888 
889 
890  if (mp->mt_tunnel.mt_l2_only)
891  s = format (s, "l2-only ");
892  if (mp->mt_tunnel.mt_is_multicast)
893  s = format (s, "multicast ");
894  if (mp->mt_tunnel.mt_tunnel_index)
895  s = format (s, "tunnel-index ");
896 
897  for (p = 0; p < mp->mt_tunnel.mt_n_paths; p++)
898  s = format (s, " [%U]", format_vl_api_fib_path,
899  &mp->mt_tunnel.mt_paths[p]);
900 
901  FINISH;
902 }
903 
905  (vl_api_sr_mpls_policy_add_t * mp, void *handle)
906 {
907  u8 *s;
908 
909  s = format (0, "SCRIPT: sr_mpls_policy_add ");
910 
911  s = format (s, "bsid %d ", (mp->bsid));
912 
913  if (mp->weight != htonl ((u32) 1))
914  s = format (s, "%d ", (mp->weight));
915 
916  if (mp->is_spray)
917  s = format (s, "spray ");
918 
919  if (mp->n_segments)
920  {
921  int i;
922  for (i = 0; i < mp->n_segments; i++)
923  s = format (s, "next %d ", (mp->segments[i]));
924  }
925 
926  FINISH;
927 }
928 
930  (vl_api_sr_mpls_policy_del_t * mp, void *handle)
931 {
932  u8 *s;
933 
934  s = format (0, "SCRIPT: sr_mpls_policy_del ");
935 
936  s = format (s, "bsid %d ", (mp->bsid));
937 
938  FINISH;
939 }
940 
943 {
944  u8 *s;
945 
946  s = format (0, "SCRIPT: sw_interface_set_unnumbered ");
947 
948  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
949 
950  s = format (s, "unnum_if_index %d ", (mp->unnumbered_sw_if_index));
951 
952  if (mp->is_add == 0)
953  s = format (s, "del ");
954 
955  FINISH;
956 }
957 
959  (vl_api_create_vlan_subif_t * mp, void *handle)
960 {
961  u8 *s;
962 
963  s = format (0, "SCRIPT: create_vlan_subif ");
964 
965  if (mp->sw_if_index)
966  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
967 
968  if (mp->vlan_id)
969  s = format (s, "vlan_id %d ", (mp->vlan_id));
970 
971  FINISH;
972 }
973 
974 #define foreach_create_subif_flag \
975 _(0, "no_tags") \
976 _(1, "one_tag") \
977 _(2, "two_tags") \
978 _(3, "dot1ad") \
979 _(4, "exact_match") \
980 _(5, "default_sub") \
981 _(6, "outer_vlan_id_any") \
982 _(7, "inner_vlan_id_any")
983 
984 static void *vl_api_create_subif_t_print
985  (vl_api_create_subif_t * mp, void *handle)
986 {
987  u8 *s;
988 
989  s = format (0, "SCRIPT: create_subif ");
990 
991  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
992 
993  s = format (s, "sub_id %d ", (mp->sub_id));
994 
995  if (mp->outer_vlan_id)
996  s = format (s, "outer_vlan_id %d ", (mp->outer_vlan_id));
997 
998  if (mp->inner_vlan_id)
999  s = format (s, "inner_vlan_id %d ", (mp->inner_vlan_id));
1000 
1001 #define _(a,b) if (mp->sub_if_flags & (1 << a)) s = format (s, "%s ", b);
1003 #undef _
1004 
1005  FINISH;
1006 }
1007 
1008 static void *vl_api_delete_subif_t_print
1009  (vl_api_delete_subif_t * mp, void *handle)
1010 {
1011  u8 *s;
1012 
1013  s = format (0, "SCRIPT: delete_subif ");
1014  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
1015 
1016  FINISH;
1017 }
1018 
1019 static void *
1021  void *handle)
1022 {
1023  u8 *s;
1024 
1025  s = format (0, "SCRIPT: ip_table_replace_begin ");
1026 
1027  s = format (s, "v%s-table %d ",
1028  mp->table.is_ip6 ? "6" : "4", (mp->table.table_id));
1029 
1030  FINISH;
1031 }
1032 
1033 static void *
1035 {
1036  u8 *s;
1037 
1038  s = format (0, "SCRIPT: ip_table_flush ");
1039 
1040  s = format (s, "v%s-table %d ",
1041  mp->table.is_ip6 ? "6" : "4", (mp->table.table_id));
1042 
1043  FINISH;
1044 }
1045 
1046 static void *
1048  void *handle)
1049 {
1050  u8 *s;
1051 
1052  s = format (0, "SCRIPT: ip_table_replace_end ");
1053 
1054  s = format (s, "v%s-table %d ",
1055  mp->table.is_ip6 ? "6" : "4", (mp->table.table_id));
1056 
1057  FINISH;
1058 }
1059 
1061  (vl_api_set_ip_flow_hash_t * mp, void *handle)
1062 {
1063  u8 *s;
1064 
1065  s = format (0, "SCRIPT: set_ip_flow_hash ");
1066 
1067  s = format (s, "vrf_id %d ", (mp->vrf_id));
1068 
1069  if (mp->src)
1070  s = format (s, "src ");
1071 
1072  if (mp->dst)
1073  s = format (s, "dst ");
1074 
1075  if (mp->sport)
1076  s = format (s, "sport ");
1077 
1078  if (mp->dport)
1079  s = format (s, "dport ");
1080 
1081  if (mp->proto)
1082  s = format (s, "proto ");
1083 
1084  if (mp->reverse)
1085  s = format (s, "reverse ");
1086 
1087  if (mp->is_ipv6 != 0)
1088  s = format (s, "ipv6 ");
1089 
1090  FINISH;
1091 }
1092 
1093 
1095  (vl_api_l2_patch_add_del_t * mp, void *handle)
1096 {
1097  u8 *s;
1098 
1099  s = format (0, "SCRIPT: l2_patch_add_del ");
1100 
1101  s = format (s, "rx_sw_if_index %d ", (mp->rx_sw_if_index));
1102 
1103  s = format (s, "tx_sw_if_index %d ", (mp->tx_sw_if_index));
1104 
1105  if (mp->is_add == 0)
1106  s = format (s, "del ");
1107 
1108  FINISH;
1109 }
1110 
1112  (vl_api_sr_localsid_add_del_t * mp, void *handle)
1113 {
1114  vnet_main_t *vnm = vnet_get_main ();
1115  u8 *s;
1116 
1117  s = format (0, "SCRIPT: sr_localsid_add_del ");
1118 
1119  switch (mp->behavior)
1120  {
1121  case SR_BEHAVIOR_END:
1122  s = format (s, "Address: %U\nBehavior: End",
1123  format_ip6_address, (ip6_address_t *) mp->localsid);
1124  s = format (s, (mp->end_psp ? "End.PSP: True" : "End.PSP: False"));
1125  break;
1126  case SR_BEHAVIOR_X:
1127  s =
1128  format (s,
1129  "Address: %U\nBehavior: X (Endpoint with Layer-3 cross-connect)"
1130  "\nIface: %U\nNext hop: %U", format_ip6_address,
1131  (ip6_address_t *) mp->localsid,
1133  format_ip6_address, (ip6_address_t *) mp->nh_addr.un.ip6);
1134  s = format (s, (mp->end_psp ? "End.PSP: True" : "End.PSP: False"));
1135  break;
1136  case SR_BEHAVIOR_DX4:
1137  s =
1138  format (s,
1139  "Address: %U\nBehavior: DX4 (Endpoint with decapsulation with IPv4 cross-connect)"
1140  "\nIface: %U\nNext hop: %U", format_ip6_address,
1141  (ip6_address_t *) mp->localsid,
1143  format_ip4_address, (ip4_address_t *) mp->nh_addr.un.ip4);
1144  break;
1145  case SR_BEHAVIOR_DX6:
1146  s =
1147  format (s,
1148  "Address: %U\nBehavior: DX6 (Endpoint with decapsulation with IPv6 cross-connect)"
1149  "\nIface: %UNext hop: %U", format_ip6_address,
1150  (ip6_address_t *) mp->localsid,
1152  format_ip6_address, (ip6_address_t *) mp->nh_addr.un.ip6);
1153  break;
1154  case SR_BEHAVIOR_DX2:
1155  s =
1156  format (s,
1157  "Address: %U\nBehavior: DX2 (Endpoint with decapulation and Layer-2 cross-connect)"
1158  "\nIface: %U", format_ip6_address,
1159  (ip6_address_t *) mp->localsid,
1161  break;
1162  case SR_BEHAVIOR_DT6:
1163  s =
1164  format (s,
1165  "Address: %U\nBehavior: DT6 (Endpoint with decapsulation and specific IPv6 table lookup)"
1166  "\nTable: %u", format_ip6_address,
1167  (ip6_address_t *) mp->localsid, (mp->fib_table));
1168  break;
1169  case SR_BEHAVIOR_DT4:
1170  s =
1171  format (s,
1172  "Address: %U\nBehavior: DT4 (Endpoint with decapsulation and specific IPv4 table lookup)"
1173  "\nTable: %u", format_ip6_address,
1174  (ip6_address_t *) mp->localsid, (mp->fib_table));
1175  break;
1176  default:
1177  if (mp->behavior >= SR_BEHAVIOR_LAST)
1178  {
1179  s = format (s, "Address: %U\n Behavior: %u",
1180  format_ip6_address, (ip6_address_t *) mp->localsid,
1181  mp->behavior);
1182  }
1183  else
1184  //Should never get here...
1185  s = format (s, "Internal error");
1186  break;
1187  }
1188  FINISH;
1189 }
1190 
1192  (vl_api_sr_steering_add_del_t * mp, void *handle)
1193 {
1194  u8 *s;
1195 
1196  s = format (0, "SCRIPT: sr_steering_add_del ");
1197 
1198  s = format (s, (mp->is_del ? "Del: True" : "Del: False"));
1199 
1200  switch (mp->traffic_type)
1201  {
1202  case SR_STEER_L2:
1203  s = format (s, "Traffic type: L2 iface: %u", (mp->sw_if_index));
1204  break;
1205  case SR_STEER_IPV4:
1206  s = format (s, "Traffic type: IPv4 %U/%u", format_ip4_address,
1207  (ip4_address_t *) mp->prefix.address.un.ip4,
1208  (mp->prefix.len));
1209  break;
1210  case SR_STEER_IPV6:
1211  s = format (s, "Traffic type: IPv6 %U/%u", format_ip6_address,
1212  (ip6_address_t *) mp->prefix.address.un.ip6,
1213  (mp->prefix.len));
1214  break;
1215  default:
1216  s = format (s, "Traffic type: Unknown(%u)", mp->traffic_type);
1217  break;
1218  }
1219  s = format (s, "BindingSID: %U", format_ip6_address,
1220  (ip6_address_t *) mp->bsid_addr);
1221 
1222  s = format (s, "SR Policy Index: %u", (mp->sr_policy_index));
1223 
1224  s = format (s, "FIB_table: %u", (mp->table_id));
1225 
1226  FINISH;
1227 }
1228 
1229 static void *vl_api_sr_policy_add_t_print
1230  (vl_api_sr_policy_add_t * mp, void *handle)
1231 {
1232  u8 *s;
1233 
1234  ip6_address_t *segments = 0, *seg;
1235  ip6_address_t *this_address = (ip6_address_t *) mp->sids.sids;
1236 
1237  int i;
1238  for (i = 0; i < mp->sids.num_sids; i++)
1239  {
1240  vec_add2 (segments, seg, 1);
1241  clib_memcpy (seg->as_u8, this_address->as_u8, sizeof (*this_address));
1242  this_address++;
1243  }
1244 
1245  s = format (0, "SCRIPT: sr_policy_add ");
1246 
1247  s = format (s, "BSID: %U", format_ip6_address,
1248  (ip6_address_t *) mp->bsid_addr);
1249 
1250  s =
1251  format (s,
1252  (mp->is_encap ? "Behavior: Encapsulation" :
1253  "Behavior: SRH insertion"));
1254 
1255  s = format (s, "FIB_table: %u", (mp->fib_table));
1256 
1257  s = format (s, (mp->is_spray ? "Type: Default" : "Type: Spray"));
1258 
1259  s = format (s, "SID list weight: %u", (mp->weight));
1260 
1261  s = format (s, "{");
1262  vec_foreach (seg, segments)
1263  {
1264  s = format (s, "%U, ", format_ip6_address, seg);
1265  }
1266  s = format (s, "\b\b } ");
1267 
1268  FINISH;
1269 }
1270 
1271 static void *vl_api_sr_policy_mod_t_print
1272  (vl_api_sr_policy_mod_t * mp, void *handle)
1273 {
1274  u8 *s;
1275 
1276  ip6_address_t *segments = 0, *seg;
1277  ip6_address_t *this_address = (ip6_address_t *) mp->sids.sids;
1278 
1279  int i;
1280  for (i = 0; i < mp->sids.num_sids; i++)
1281  {
1282  vec_add2 (segments, seg, 1);
1283  clib_memcpy (seg->as_u8, this_address->as_u8, sizeof (*this_address));
1284  this_address++;
1285  }
1286 
1287  s = format (0, "SCRIPT: sr_policy_mod ");
1288 
1289  s = format (s, "BSID: %U", format_ip6_address,
1290  (ip6_address_t *) mp->bsid_addr);
1291 
1292  s = format (s, "SR Policy index: %u", (mp->sr_policy_index));
1293 
1294  s = format (s, "Operation: %u", mp->operation);
1295 
1296  s = format (s, "SID list index: %u", (mp->sl_index));
1297 
1298  s = format (s, "SID list weight: %u", (mp->weight));
1299 
1300  s = format (s, "{");
1301  vec_foreach (seg, segments)
1302  {
1303  s = format (s, "%U, ", format_ip6_address, seg);
1304  }
1305  s = format (s, "\b\b } ");
1306 
1307  FINISH;
1308 }
1309 
1310 static void *vl_api_sr_policy_del_t_print
1311  (vl_api_sr_policy_del_t * mp, void *handle)
1312 {
1313  u8 *s;
1314 
1315  s = format (0, "SCRIPT: sr_policy_del ");
1316  s = format (s, "To be delivered. Good luck.");
1317  FINISH;
1318 }
1319 
1321  (vl_api_classify_add_del_table_t * mp, void *handle)
1322 {
1323  u8 *s;
1324  int i;
1325 
1326  s = format (0, "SCRIPT: classify_add_del_table ");
1327 
1328  if (mp->is_add == 0)
1329  {
1330  s = format (s, "table %d ", (mp->table_index));
1331  s = format (s, "%s ", mp->del_chain ? "del-chain" : "del");
1332  }
1333  else
1334  {
1335  s = format (s, "nbuckets %d ", (mp->nbuckets));
1336  s = format (s, "memory_size %d ", (mp->memory_size));
1337  s = format (s, "skip %d ", (mp->skip_n_vectors));
1338  s = format (s, "match %d ", (mp->match_n_vectors));
1339  s = format (s, "next-table %d ", (mp->next_table_index));
1340  s = format (s, "miss-next %d ", (mp->miss_next_index));
1341  s = format (s, "current-data-flag %d ", (mp->current_data_flag));
1342  if (mp->current_data_flag)
1343  s = format (s, "current-data-offset %d ", (mp->current_data_offset));
1344  s = format (s, "mask hex ");
1345  for (i = 0; i < (mp->match_n_vectors) * sizeof (u32x4); i++)
1346  s = format (s, "%02x", mp->mask[i]);
1347  vec_add1 (s, ' ');
1348  }
1349 
1350  FINISH;
1351 }
1352 
1355 {
1356  u8 *s;
1357  int i, limit = 0;
1358 
1359  s = format (0, "SCRIPT: classify_add_del_session ");
1360 
1361  s = format (s, "table_index %d ", (mp->table_index));
1362  s = format (s, "hit_next_index %d ", (mp->hit_next_index));
1363  s = format (s, "opaque_index %d ", (mp->opaque_index));
1364  s = format (s, "advance %d ", (mp->advance));
1365  s = format (s, "action %d ", mp->action);
1366  if (mp->action)
1367  s = format (s, "metadata %d ", (mp->metadata));
1368  if (mp->is_add == 0)
1369  s = format (s, "del ");
1370 
1371  s = format (s, "match hex ");
1372  for (i = 5 * sizeof (u32x4) - 1; i > 0; i--)
1373  {
1374  if (mp->match[i] != 0)
1375  {
1376  limit = i + 1;
1377  break;
1378  }
1379  }
1380 
1381  for (i = 0; i < limit; i++)
1382  s = format (s, "%02x", mp->match[i]);
1383 
1384  FINISH;
1385 }
1386 
1389 {
1390  u8 *s;
1391 
1392  s = format (0, "SCRIPT: classify_set_interface_ip_table ");
1393 
1394  if (mp->is_ipv6)
1395  s = format (s, "ipv6 ");
1396 
1397  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
1398  s = format (s, "table %d ", (mp->table_index));
1399 
1400  FINISH;
1401 }
1402 
1405 {
1406  u8 *s;
1407 
1408  s = format (0, "SCRIPT: classify_set_interface_l2_tables ");
1409 
1410  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
1411  s = format (s, "ip4-table %d ", (mp->ip4_table_index));
1412  s = format (s, "ip6-table %d ", (mp->ip6_table_index));
1413  s = format (s, "other-table %d ", (mp->other_table_index));
1414  s = format (s, "is-input %d ", mp->is_input);
1415 
1416  FINISH;
1417 }
1418 
1419 static void *vl_api_add_node_next_t_print
1420  (vl_api_add_node_next_t * mp, void *handle)
1421 {
1422  u8 *s;
1423 
1424  s = format (0, "SCRIPT: add_node_next ");
1425 
1426  s = format (s, "node %s next %s ", mp->node_name, mp->next_name);
1427 
1428  FINISH;
1429 }
1430 
1432  (vl_api_vxlan_add_del_tunnel_t * mp, void *handle)
1433 {
1434  u8 *s;
1435  s = format (0, "SCRIPT: vxlan_add_del_tunnel ");
1436 
1437  ip46_address_t src =
1438  to_ip46 (mp->src_address.af, (u8 *) & mp->src_address.un);
1439  ip46_address_t dst =
1440  to_ip46 (mp->dst_address.af, (u8 *) & mp->dst_address.un);
1441 
1442  u8 is_grp = ip46_address_is_multicast (&dst);
1443  char *dst_name = is_grp ? "group" : "dst";
1444 
1445  s = format (s, "src %U ", format_ip46_address, &src, IP46_TYPE_ANY);
1446  s = format (s, "%s %U ", dst_name, format_ip46_address,
1447  &dst, IP46_TYPE_ANY);
1448 
1449  if (is_grp)
1450  s = format (s, "mcast_sw_if_index %d ", (mp->mcast_sw_if_index));
1451 
1452  if (mp->encap_vrf_id)
1453  s = format (s, "encap-vrf-id %d ", (mp->encap_vrf_id));
1454 
1455  s = format (s, "decap-next %d ", (mp->decap_next_index));
1456 
1457  s = format (s, "vni %d ", (mp->vni));
1458 
1459  s = format (s, "instance %d ", (mp->instance));
1460 
1461  if (mp->is_add == 0)
1462  s = format (s, "del ");
1463 
1464  FINISH;
1465 }
1466 
1468  (vl_api_vxlan_offload_rx_t * mp, void *handle)
1469 {
1470  u8 *s;
1471  s = format (0, "SCRIPT: vxlan_offload_rx ");
1472 
1473  s = format (s, "hw hw_if_index %d ", (mp->hw_if_index));
1474  s = format (s, "rx sw_if_index %d ", (mp->sw_if_index));
1475  if (!mp->enable)
1476  s = format (s, "del ");
1477 
1478  FINISH;
1479 }
1480 
1482  (vl_api_vxlan_tunnel_dump_t * mp, void *handle)
1483 {
1484  u8 *s;
1485 
1486  s = format (0, "SCRIPT: vxlan_tunnel_dump ");
1487 
1488  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
1489 
1490  FINISH;
1491 }
1492 
1495 {
1496  u8 *s;
1497  s = format (0, "SCRIPT: vxlan_gbp_tunnel_add_del ");
1498 
1499  if (mp->is_add)
1500  s = format (s, "add ");
1501  else
1502  s = format (s, "del ");
1503 
1504  s = format (s, "instance %d ", (mp->tunnel.instance));
1505  s = format (s, "src %U ", format_vl_api_address, &mp->tunnel.src);
1506  s = format (s, "dst %U ", format_vl_api_address, &mp->tunnel.dst);
1507  s = format (s, "mcast_sw_if_index %d ", (mp->tunnel.mcast_sw_if_index));
1508  s = format (s, "encap_table_id %d ", (mp->tunnel.encap_table_id));
1509  s = format (s, "vni %d ", (mp->tunnel.vni));
1510  s = format (s, "sw_if_index %d ", (mp->tunnel.sw_if_index));
1511 
1512  FINISH;
1513 }
1514 
1516  (vl_api_vxlan_gbp_tunnel_dump_t * mp, void *handle)
1517 {
1518  u8 *s;
1519 
1520  s = format (0, "SCRIPT: vxlan_gbp_tunnel_dump ");
1521 
1522  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
1523 
1524  FINISH;
1525 }
1526 
1529 {
1530  u8 *s;
1531 
1532  s = format (0, "SCRIPT: sw_interface_set_vxlan_gbp_bypass ");
1533 
1534  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
1535  s = format (s, "%s ", (mp->is_ipv6 != 0) ? "ipv6" : "ipv4");
1536  s = format (s, "%s ", (mp->enable != 0) ? "enable" : "disable");
1537 
1538  FINISH;
1539 }
1540 
1542  (vl_api_l2_fib_clear_table_t * mp, void *handle)
1543 {
1544  u8 *s;
1545 
1546  s = format (0, "SCRIPT: l2_fib_clear_table ");
1547 
1548  FINISH;
1549 }
1550 
1553 {
1554  u8 *s;
1555 
1556  s = format (0, "SCRIPT: l2_interface_efp_filter ");
1557 
1558  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
1559  if (mp->enable_disable)
1560  s = format (s, "enable ");
1561  else
1562  s = format (s, "disable ");
1563 
1564  FINISH;
1565 }
1566 
1569 {
1570  u8 *s;
1571 
1572  s = format (0, "SCRIPT: l2_interface_vlan_tag_rewrite ");
1573 
1574  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
1575  s = format (s, "vtr_op %d ", (mp->vtr_op));
1576  s = format (s, "push_dot1q %d ", (mp->push_dot1q));
1577  s = format (s, "tag1 %d ", (mp->tag1));
1578  s = format (s, "tag2 %d ", (mp->tag2));
1579 
1580  FINISH;
1581 }
1582 
1584  (vl_api_create_vhost_user_if_t * mp, void *handle)
1585 {
1586  u8 *s;
1587 
1588  s = format (0, "SCRIPT: create_vhost_user_if ");
1589 
1590  s = format (s, "socket %s ", mp->sock_filename);
1591  if (mp->is_server)
1592  s = format (s, "server ");
1593  if (mp->renumber)
1594  s = format (s, "renumber %d ", (mp->custom_dev_instance));
1595  if (mp->disable_mrg_rxbuf)
1596  s = format (s, "disable_mrg_rxbuf ");
1597  if (mp->disable_indirect_desc)
1598  s = format (s, "disable_indirect_desc ");
1599  if (mp->tag[0])
1600  s = format (s, "tag %s ", mp->tag);
1601  if (mp->enable_gso)
1602  s = format (s, "gso ");
1603  if (mp->enable_packed)
1604  s = format (s, "packed");
1605 
1606  FINISH;
1607 }
1608 
1610  (vl_api_modify_vhost_user_if_t * mp, void *handle)
1611 {
1612  u8 *s;
1613 
1614  s = format (0, "SCRIPT: modify_vhost_user_if ");
1615 
1616  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
1617  s = format (s, "socket %s ", mp->sock_filename);
1618  if (mp->is_server)
1619  s = format (s, "server ");
1620  if (mp->renumber)
1621  s = format (s, "renumber %d ", (mp->custom_dev_instance));
1622  if (mp->enable_gso)
1623  s = format (s, "gso ");
1624  if (mp->enable_packed)
1625  s = format (s, "packed");
1626 
1627  FINISH;
1628 }
1629 
1631  (vl_api_delete_vhost_user_if_t * mp, void *handle)
1632 {
1633  u8 *s;
1634 
1635  s = format (0, "SCRIPT: delete_vhost_user_if ");
1636  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
1637 
1638  FINISH;
1639 }
1640 
1643 {
1644  u8 *s;
1645 
1646  s = format (0, "SCRIPT: sw_interface_vhost_user_dump ");
1647  if (mp->sw_if_index != ~0)
1648  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
1649 
1650  FINISH;
1651 }
1652 
1654  (vl_api_sw_interface_dump_t * mp, void *handle)
1655 {
1656  u8 *s;
1657 
1658  s = format (0, "SCRIPT: sw_interface_dump ");
1659 
1660  if (mp->name_filter_valid)
1661  {
1662  u8 *v = vl_api_from_api_to_new_vec (mp, &mp->name_filter);
1663  s = format (s, "name_filter %v ", v);
1664  vec_free (v);
1665  }
1666  else
1667  s = format (s, "all ");
1668 
1669  FINISH;
1670 }
1671 
1673  (vl_api_l2_fib_table_dump_t * mp, void *handle)
1674 {
1675  u8 *s;
1676 
1677  s = format (0, "SCRIPT: l2_fib_table_dump ");
1678 
1679  s = format (s, "bd_id %d ", (mp->bd_id));
1680 
1681  FINISH;
1682 }
1683 
1684 static void *vl_api_control_ping_t_print
1685  (vl_api_control_ping_t * mp, void *handle)
1686 {
1687  u8 *s;
1688 
1689  s = format (0, "SCRIPT: control_ping ");
1690 
1691  FINISH;
1692 }
1693 
1695  (vl_api_want_interface_events_t * mp, void *handle)
1696 {
1697  u8 *s;
1698 
1699  s = format (0, "SCRIPT: want_interface_events pid %d enable %d ",
1700  (mp->pid), ntohl (mp->enable_disable));
1701 
1702  FINISH;
1703 }
1704 
1705 static void *
1706 vl_api_cli_t_print (vl_api_cli_t * mp, void *handle)
1707 {
1708  u8 *s;
1709 
1710  s = format (0, "SCRIPT: cli ");
1711 
1712  FINISH;
1713 }
1714 
1715 static void *vl_api_cli_inband_t_print
1716  (vl_api_cli_inband_t * mp, void *handle)
1717 {
1718  u8 *s;
1719  u8 *cmd = 0;
1720 
1721  cmd = vl_api_from_api_to_new_vec (mp, &mp->cmd);
1722 
1723  s = format (0, "SCRIPT: exec %v ", cmd);
1724 
1725  vec_free (cmd);
1726  FINISH;
1727 }
1728 
1729 static void *vl_api_memclnt_create_t_print
1730  (vl_api_memclnt_create_t * mp, void *handle)
1731 {
1732  u8 *s;
1733 
1734  s = format (0, "SCRIPT: memclnt_create name %s ", mp->name);
1735 
1736  FINISH;
1737 }
1738 
1739 static void *vl_api_sockclnt_create_t_print
1740  (vl_api_sockclnt_create_t * mp, void *handle)
1741 {
1742  u8 *s;
1743 
1744  s = format (0, "SCRIPT: sockclnt_create name %s ", mp->name);
1745 
1746  FINISH;
1747 }
1748 
1749 static void *vl_api_show_version_t_print
1750  (vl_api_show_version_t * mp, void *handle)
1751 {
1752  u8 *s;
1753 
1754  s = format (0, "SCRIPT: show_version ");
1755 
1756  FINISH;
1757 }
1758 
1759 __clib_unused
1760  static void *vl_api_show_threads_t_print
1761  (vl_api_show_threads_t * mp, void *handle)
1762 {
1763  u8 *s;
1764 
1765  s = format (0, "SCRIPT: show_threads ");
1766 
1767  FINISH;
1768 }
1769 
1772 {
1773  u8 *s;
1774 
1775  s = format (0, "SCRIPT: vxlan_gpe_add_del_tunnel ");
1776 
1777  ip46_address_t local, remote;
1778 
1779  ip_address_decode (&mp->local, &local);
1780  ip_address_decode (&mp->remote, &remote);
1781 
1782  u8 is_grp = ip46_address_is_multicast (&remote);
1783  char *remote_name = is_grp ? "group" : "remote";
1784 
1785  s = format (s, "local %U ", format_ip46_address, &local, IP46_TYPE_ANY);
1786  s = format (s, "%s %U ", remote_name, format_ip46_address,
1787  &remote, IP46_TYPE_ANY);
1788 
1789  if (is_grp)
1790  s = format (s, "mcast_sw_if_index %d ", (mp->mcast_sw_if_index));
1791  s = format (s, "protocol %d ", (mp->protocol));
1792 
1793  s = format (s, "vni %d ", (mp->vni));
1794 
1795  if (mp->is_add == 0)
1796  s = format (s, "del ");
1797 
1798  if (mp->encap_vrf_id)
1799  s = format (s, "encap-vrf-id %d ", (mp->encap_vrf_id));
1800 
1801  if (mp->decap_vrf_id)
1802  s = format (s, "decap-vrf-id %d ", (mp->decap_vrf_id));
1803 
1804  FINISH;
1805 }
1806 
1808  (vl_api_vxlan_gpe_tunnel_dump_t * mp, void *handle)
1809 {
1810  u8 *s;
1811 
1812  s = format (0, "SCRIPT: vxlan_gpe_tunnel_dump ");
1813 
1814  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
1815 
1816  FINISH;
1817 }
1818 
1821 {
1822  u8 *s;
1823 
1824  s = format (0, "SCRIPT: interface_renumber ");
1825 
1826  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
1827 
1828  s = format (s, "new_show_dev_instance %d ", (mp->new_show_dev_instance));
1829 
1830  FINISH;
1831 }
1832 
1834  (vl_api_want_l2_macs_events_t * mp, void *handle)
1835 {
1836  u8 *s;
1837 
1838  s = format (0, "SCRIPT: want_l2_macs_events ");
1839  s = format (s, "learn-limit %d ", (mp->learn_limit));
1840  s = format (s, "scan-delay %d ", (u32) mp->scan_delay);
1841  s = format (s, "max-entries %d ", (u32) mp->max_macs_in_event * 10);
1842  if (mp->enable_disable == 0)
1843  s = format (s, "disable");
1844 
1845  FINISH;
1846 }
1847 
1850 {
1851  u8 *s;
1852 
1853  s = format (0, "SCRIPT: input_acl_set_interface ");
1854 
1855  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
1856  s = format (s, "ip4-table %d ", (mp->ip4_table_index));
1857  s = format (s, "ip6-table %d ", (mp->ip6_table_index));
1858  s = format (s, "l2-table %d ", (mp->l2_table_index));
1859 
1860  if (mp->is_add == 0)
1861  s = format (s, "del ");
1862 
1863  FINISH;
1864 }
1865 
1868 {
1869  u8 *s;
1870 
1871  s = format (0, "SCRIPT: output_acl_set_interface ");
1872 
1873  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
1874  s = format (s, "ip4-table %d ", (mp->ip4_table_index));
1875  s = format (s, "ip6-table %d ", (mp->ip6_table_index));
1876  s = format (s, "l2-table %d ", (mp->l2_table_index));
1877 
1878  if (mp->is_add == 0)
1879  s = format (s, "del ");
1880 
1881  FINISH;
1882 }
1883 
1884 static void *vl_api_ip_address_dump_t_print
1885  (vl_api_ip_address_dump_t * mp, void *handle)
1886 {
1887  u8 *s;
1888 
1889  s = format (0, "SCRIPT: ip6_address_dump ");
1890  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
1891  s = format (s, "is_ipv6 %d ", mp->is_ipv6 != 0);
1892 
1893  FINISH;
1894 }
1895 
1896 static void *
1898 {
1899  u8 *s;
1900 
1901  s = format (0, "SCRIPT: ip_dump ");
1902  s = format (s, "is_ipv6 %d ", mp->is_ipv6 != 0);
1903 
1904  FINISH;
1905 }
1906 
1909 {
1910  u8 *s;
1911 
1912  s = format (0, "SCRIPT: cop_interface_enable_disable ");
1913  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
1914  if (mp->enable_disable)
1915  s = format (s, "enable ");
1916  else
1917  s = format (s, "disable ");
1918 
1919  FINISH;
1920 }
1921 
1924 {
1925  u8 *s;
1926 
1927  s = format (0, "SCRIPT: cop_whitelist_enable_disable ");
1928  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
1929  s = format (s, "fib-id %d ", (mp->fib_id));
1930  if (mp->ip4)
1931  s = format (s, "ip4 ");
1932  if (mp->ip6)
1933  s = format (s, "ip6 ");
1934  if (mp->default_cop)
1935  s = format (s, "default ");
1936 
1937  FINISH;
1938 }
1939 
1941  (vl_api_af_packet_create_t * mp, void *handle)
1942 {
1943  u8 *s;
1944 
1945  s = format (0, "SCRIPT: af_packet_create ");
1946  s = format (s, "host_if_name %s ", mp->host_if_name);
1947  if (mp->use_random_hw_addr)
1948  s = format (s, "hw_addr random ");
1949  else
1950  s = format (s, "hw_addr %U ", format_ethernet_address, mp->hw_addr);
1951 
1952  FINISH;
1953 }
1954 
1956  (vl_api_af_packet_delete_t * mp, void *handle)
1957 {
1958  u8 *s;
1959 
1960  s = format (0, "SCRIPT: af_packet_delete ");
1961  s = format (s, "host_if_name %s ", mp->host_if_name);
1962 
1963  FINISH;
1964 }
1965 
1966 static void *vl_api_af_packet_dump_t_print
1967  (vl_api_af_packet_dump_t * mp, void *handle)
1968 {
1969  u8 *s;
1970 
1971  s = format (0, "SCRIPT: af_packet_dump ");
1972 
1973  FINISH;
1974 }
1975 
1976 static u8 *
1977 format_policer_action (u8 * s, va_list * va)
1978 {
1979  u32 action = va_arg (*va, u32);
1980  u32 dscp = va_arg (*va, u32);
1981  char *t = 0;
1982 
1983  if (action == SSE2_QOS_ACTION_DROP)
1984  s = format (s, "drop");
1985  else if (action == SSE2_QOS_ACTION_TRANSMIT)
1986  s = format (s, "transmit");
1987  else if (action == SSE2_QOS_ACTION_MARK_AND_TRANSMIT)
1988  {
1989  s = format (s, "mark-and-transmit ");
1990  switch (dscp)
1991  {
1992 #define _(v,f,str) case VNET_DSCP_##f: t = str; break;
1994 #undef _
1995  default:
1996  break;
1997  }
1998  s = format (s, "%s", t);
1999  }
2000  return s;
2001 }
2002 
2003 static void *vl_api_policer_add_del_t_print
2004  (vl_api_policer_add_del_t * mp, void *handle)
2005 {
2006  u8 *s;
2007 
2008  s = format (0, "SCRIPT: policer_add_del ");
2009  s = format (s, "name %s ", mp->name);
2010  s = format (s, "cir %d ", mp->cir);
2011  s = format (s, "eir %d ", mp->eir);
2012  s = format (s, "cb %d ", mp->cb);
2013  s = format (s, "eb %d ", mp->eb);
2014 
2015  switch (mp->rate_type)
2016  {
2017  case SSE2_QOS_RATE_KBPS:
2018  s = format (s, "rate_type kbps ");
2019  break;
2020  case SSE2_QOS_RATE_PPS:
2021  s = format (s, "rate_type pps ");
2022  break;
2023  default:
2024  break;
2025  }
2026 
2027  switch (mp->round_type)
2028  {
2030  s = format (s, "round_type closest ");
2031  break;
2032  case SSE2_QOS_ROUND_TO_UP:
2033  s = format (s, "round_type up ");
2034  break;
2036  s = format (s, "round_type down ");
2037  break;
2038  default:
2039  break;
2040  }
2041 
2042  switch (mp->type)
2043  {
2045  s = format (s, "type 1r2c ");
2046  break;
2048  s = format (s, "type 1r3c ");
2049  break;
2051  s = format (s, "type 2r3c-2698 ");
2052  break;
2054  s = format (s, "type 2r3c-4115 ");
2055  break;
2057  s = format (s, "type 2r3c-mef5cf1 ");
2058  break;
2059  default:
2060  break;
2061  }
2062 
2063  s = format (s, "conform_action %U ", format_policer_action,
2064  mp->conform_action.type, mp->conform_action.dscp);
2065  s = format (s, "exceed_action %U ", format_policer_action,
2066  mp->exceed_action.type, mp->exceed_action.dscp);
2067  s = format (s, "violate_action %U ", format_policer_action,
2068  mp->violate_action.type, mp->violate_action.dscp);
2069 
2070  if (mp->color_aware)
2071  s = format (s, "color-aware ");
2072  if (mp->is_add == 0)
2073  s = format (s, "del ");
2074 
2075  FINISH;
2076 }
2077 
2078 static void *vl_api_policer_dump_t_print
2079  (vl_api_policer_dump_t * mp, void *handle)
2080 {
2081  u8 *s;
2082 
2083  s = format (0, "SCRIPT: policer_dump ");
2084  if (mp->match_name_valid)
2085  s = format (s, "name %s ", mp->match_name);
2086 
2087  FINISH;
2088 }
2089 
2092 {
2093  u8 *s;
2094 
2095  s = format (0, "SCRIPT: policer_classify_set_interface ");
2096  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
2097  if (mp->ip4_table_index != ~0)
2098  s = format (s, "ip4-table %d ", (mp->ip4_table_index));
2099  if (mp->ip6_table_index != ~0)
2100  s = format (s, "ip6-table %d ", (mp->ip6_table_index));
2101  if (mp->l2_table_index != ~0)
2102  s = format (s, "l2-table %d ", (mp->l2_table_index));
2103  if (mp->is_add == 0)
2104  s = format (s, "del ");
2105 
2106  FINISH;
2107 }
2108 
2110  (vl_api_policer_classify_dump_t * mp, void *handle)
2111 {
2112  u8 *s;
2113 
2114  s = format (0, "SCRIPT: policer_classify_dump ");
2115  switch (mp->type)
2116  {
2118  s = format (s, "type ip4 ");
2119  break;
2121  s = format (s, "type ip6 ");
2122  break;
2124  s = format (s, "type l2 ");
2125  break;
2126  default:
2127  break;
2128  }
2129 
2130  FINISH;
2131 }
2132 
2135 {
2136  u8 *s;
2137 
2138  s = format (0, "SCRIPT: sw_interface_clear_stats ");
2139  if (mp->sw_if_index != ~0)
2140  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
2141 
2142  FINISH;
2143 }
2144 
2146  (vl_api_mpls_tunnel_dump_t * mp, void *handle)
2147 {
2148  u8 *s;
2149 
2150  s = format (0, "SCRIPT: mpls_tunnel_dump ");
2151  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
2152 
2153  FINISH;
2154 }
2155 
2156 static void *vl_api_mpls_table_dump_t_print
2157  (vl_api_mpls_table_dump_t * mp, void *handle)
2158 {
2159  u8 *s;
2160 
2161  s = format (0, "SCRIPT: mpls_table_decap_dump ");
2162 
2163  FINISH;
2164 }
2165 
2166 static void *vl_api_mpls_route_dump_t_print
2167  (vl_api_mpls_route_dump_t * mp, void *handle)
2168 {
2169  u8 *s;
2170 
2171  s = format (0, "SCRIPT: mpls_route_decap_dump ");
2172 
2173  FINISH;
2174 }
2175 
2177  (vl_api_classify_table_ids_t * mp, void *handle)
2178 {
2179  u8 *s;
2180 
2181  s = format (0, "SCRIPT: classify_table_ids ");
2182 
2183  FINISH;
2184 }
2185 
2188 {
2189  u8 *s;
2190 
2191  s = format (0, "SCRIPT: classify_table_by_interface ");
2192  if (mp->sw_if_index != ~0)
2193  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
2194 
2195  FINISH;
2196 }
2197 
2199  (vl_api_classify_table_info_t * mp, void *handle)
2200 {
2201  u8 *s;
2202 
2203  s = format (0, "SCRIPT: classify_table_info ");
2204  if (mp->table_id != ~0)
2205  s = format (s, "table_id %d ", (mp->table_id));
2206 
2207  FINISH;
2208 }
2209 
2211  (vl_api_classify_session_dump_t * mp, void *handle)
2212 {
2213  u8 *s;
2214 
2215  s = format (0, "SCRIPT: classify_session_dump ");
2216  if (mp->table_id != ~0)
2217  s = format (s, "table_id %d ", (mp->table_id));
2218 
2219  FINISH;
2220 }
2221 
2223  (vl_api_set_ipfix_exporter_t * mp, void *handle)
2224 {
2225  u8 *s;
2226 
2227  s = format (0, "SCRIPT: set_ipfix_exporter ");
2228 
2229  s = format (s, "collector-address %U ", format_ip4_address,
2230  (ip4_address_t *) mp->collector_address.un.ip4);
2231  s = format (s, "collector-port %d ", (mp->collector_port));
2232  s = format (s, "src-address %U ", format_ip4_address,
2233  (ip4_address_t *) mp->src_address.un.ip4);
2234  s = format (s, "vrf-id %d ", (mp->vrf_id));
2235  s = format (s, "path-mtu %d ", (mp->path_mtu));
2236  s = format (s, "template-interval %d ", (mp->template_interval));
2237  s = format (s, "udp-checksum %d ", mp->udp_checksum);
2238 
2239  FINISH;
2240 }
2241 
2243  (vl_api_ipfix_exporter_dump_t * mp, void *handle)
2244 {
2245  u8 *s;
2246 
2247  s = format (0, "SCRIPT: ipfix_exporter_dump ");
2248 
2249  FINISH;
2250 }
2251 
2254 {
2255  u8 *s;
2256 
2257  s = format (0, "SCRIPT: set_ipfix_classify_stream ");
2258 
2259  s = format (s, "domain-id %d ", (mp->domain_id));
2260  s = format (s, "src-port %d ", (mp->src_port));
2261 
2262  FINISH;
2263 }
2264 
2267 {
2268  u8 *s;
2269 
2270  s = format (0, "SCRIPT: ipfix_classify_stream_dump ");
2271 
2272  FINISH;
2273 }
2274 
2277 {
2278  u8 *s;
2279 
2280  s = format (0, "SCRIPT: ipfix_classify_table_add_del ");
2281 
2282  s = format (s, "table-id %d ", (mp->table_id));
2283  s = format (s, "ip-version %d ", mp->ip_version);
2284  s = format (s, "transport-protocol %d ", mp->transport_protocol);
2285 
2286  FINISH;
2287 }
2288 
2291 {
2292  u8 *s;
2293 
2294  s = format (0, "SCRIPT: ipfix_classify_table_dump ");
2295 
2296  FINISH;
2297 }
2298 
2301 {
2302  u8 *s;
2303 
2304  s = format (0, "SCRIPT: sw_interface_span_enable_disable ");
2305  s = format (s, "src_sw_if_index %u ", (mp->sw_if_index_from));
2306  s = format (s, "dst_sw_if_index %u ", (mp->sw_if_index_to));
2307 
2308  if (mp->is_l2)
2309  s = format (s, "l2 ");
2310 
2311  switch (mp->state)
2312  {
2313  case 0:
2314  s = format (s, "disable ");
2315  break;
2316  case 1:
2317  s = format (s, "rx ");
2318  break;
2319  case 2:
2320  s = format (s, "tx ");
2321  break;
2322  case 3:
2323  default:
2324  s = format (s, "both ");
2325  break;
2326  }
2327 
2328  FINISH;
2329 }
2330 
2331 static void *
2333  void *handle)
2334 {
2335  u8 *s;
2336 
2337  s = format (0, "SCRIPT: sw_interface_span_dump ");
2338 
2339  if (mp->is_l2)
2340  s = format (s, "l2 ");
2341 
2342  FINISH;
2343 }
2344 
2345 static void *vl_api_get_next_index_t_print
2346  (vl_api_get_next_index_t * mp, void *handle)
2347 {
2348  u8 *s;
2349 
2350  s = format (0, "SCRIPT: get_next_index ");
2351  s = format (s, "node-name %s ", mp->node_name);
2352  s = format (s, "next-node-name %s ", mp->next_name);
2353 
2354  FINISH;
2355 }
2356 
2358  (vl_api_pg_create_interface_t * mp, void *handle)
2359 {
2360  u8 *s;
2361 
2362  s = format (0, "SCRIPT: pg_create_interface ");
2363  s = format (s, "if_id %d ", (mp->interface_id));
2364  s = format (s, "gso-enabled %u ", mp->gso_enabled);
2365  s = format (s, "gso-size %u", (mp->gso_size));
2366 
2367  FINISH;
2368 }
2369 
2370 static void *vl_api_pg_capture_t_print
2371  (vl_api_pg_capture_t * mp, void *handle)
2372 {
2373  u8 *s;
2374 
2375  s = format (0, "SCRIPT: pg_capture ");
2376  s = format (s, "if_id %d ", (mp->interface_id));
2377  s = format (s, "pcap %s", mp->pcap_file_name);
2378  if (mp->count != ~0)
2379  s = format (s, "count %d ", (mp->count));
2380  if (!mp->is_enabled)
2381  s = format (s, "disable");
2382 
2383  FINISH;
2384 }
2385 
2387  (vl_api_pg_enable_disable_t * mp, void *handle)
2388 {
2389  u8 *s;
2390 
2391  s = format (0, "SCRIPT: pg_enable_disable ");
2392  if (vl_api_string_len (&mp->stream_name) > 0)
2393  s =
2394  format (s, "stream %s",
2396  if (!mp->is_enabled)
2397  s = format (s, "disable");
2398 
2399  FINISH;
2400 }
2401 
2404 {
2405  u8 *s;
2406 
2407  s = format (0, "SCRIPT: pg_interface_enable_disable_coalesce ");
2408  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
2409  if (!mp->coalesce_enabled)
2410  s = format (s, "disable");
2411  else
2412  s = format (s, "enable");
2413  FINISH;
2414 }
2415 
2416 
2419 {
2420  u8 *s;
2421  int i;
2422 
2423  s = format (0, "SCRIPT: ip_source_and_port_range_check_add_del ");
2424  s = format (s, "%U ", format_vl_api_prefix, &mp->prefix);
2425 
2426  for (i = 0; i < mp->number_of_ranges; i++)
2427  {
2428  s = format (s, "range %d - %d ", mp->low_ports[i], mp->high_ports[i]);
2429  }
2430 
2431  s = format (s, "vrf %d ", (mp->vrf_id));
2432 
2433  if (mp->is_add == 0)
2434  s = format (s, "del ");
2435 
2436  FINISH;
2437 }
2438 
2441  void *handle)
2442 {
2443  u8 *s;
2444 
2445  s = format (0, "SCRIPT: ip_source_and_port_range_check_interface_add_del ");
2446 
2447  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
2448 
2449  if (mp->tcp_out_vrf_id != ~0)
2450  s = format (s, "tcp-out-vrf %d ", (mp->tcp_out_vrf_id));
2451 
2452  if (mp->udp_out_vrf_id != ~0)
2453  s = format (s, "udp-out-vrf %d ", (mp->udp_out_vrf_id));
2454 
2455  if (mp->tcp_in_vrf_id != ~0)
2456  s = format (s, "tcp-in-vrf %d ", (mp->tcp_in_vrf_id));
2457 
2458  if (mp->udp_in_vrf_id != ~0)
2459  s = format (s, "udp-in-vrf %d ", (mp->udp_in_vrf_id));
2460 
2461  if (mp->is_add == 0)
2462  s = format (s, "del ");
2463 
2464  FINISH;
2465 }
2466 
2469 {
2470  u8 *s;
2471 
2472  s = format (0, "SCRIPT: ipsec_tunnel_if_add_del ");
2473 
2474  if (mp->esn)
2475  s = format (s, "esn");
2476  if (mp->anti_replay)
2477  s = format (s, "anti-replay");
2478  if (mp->udp_encap)
2479  s = format (s, "udp-encap");
2480 
2481  s = format (s, "local-ip %U ", format_vl_api_address, &mp->remote_ip);
2482 
2483  s = format (s, "remote-ip %U ", format_vl_api_address, &mp->local_ip);
2484  s = format (s, "tx-table-id %d ", (mp->tx_table_id));
2485 
2486  s = format (s, "local-spi %d ", (mp->local_spi));
2487 
2488  s = format (s, "remote-spi %d ", (mp->remote_spi));
2489 
2490  s = format (s, "local-crypto-key-len %d ", mp->local_crypto_key_len);
2491  s = format (s, "local-crypto-key %U ", format_hex_bytes,
2493  s = format (s, "remote-crypto-key-len %d ", mp->remote_crypto_key_len);
2494  s = format (s, "remote-crypto-key %U ", format_hex_bytes,
2496  s = format (s, "local-integ-key-len %d ", mp->local_integ_key_len);
2497  s = format (s, "local-integ-key %U ", format_hex_bytes,
2498  mp->local_integ_key, mp->local_integ_key_len, 0);
2499  s = format (s, "remote-integ-key-len %d ", mp->remote_integ_key_len);
2500  s = format (s, "remote-integ-key %U ", format_hex_bytes,
2502 
2503  if (mp->is_add == 0)
2504  s = format (s, "del ");
2505 
2506  FINISH;
2507 }
2508 
2509 /* static u8 * */
2510 /* format_nsh_address_vat (u8 * s, va_list * args) */
2511 /* { */
2512 /* nsh_t *a = va_arg (*args, nsh_t *); */
2513 /* return format (s, "SPI:%d SI:%d", clib_net_to_host_u32 (a->spi), a->si); */
2514 /* } */
2515 
2516 static const char *policy_strs[] = {
2517  "BYPASS",
2518  "DISCARD",
2519  "RESOLVE",
2520  "PROTECT",
2521 };
2522 
2523 static const char *algo_strs[] = {
2524  "NONE",
2525  "AES_CBC_128",
2526  "AES_CBC_192",
2527  "AES_CBC_256",
2528  "AES_CTR_128",
2529  "AES_CTR_192",
2530  "AES_CTR_256",
2531  "AES_GCM_128",
2532  "AES_GCM_192",
2533  "AES_GCM_256",
2534  "DES_CBC",
2535  "3DES_CBC",
2536 };
2537 
2538 
2539 static const char *integ_strs[] = {
2540  "NONE",
2541  "MD5_96",
2542  "SHA1_96",
2543  "SHA_256_96",
2544  "SHA_256_128",
2545  "SHA_384_192",
2546  "SHA_512_256",
2547 };
2548 
2551 {
2552  u8 *s;
2553  const char *str;
2554  vl_api_ipsec_spd_entry_t *ep;
2555  int policy_host_byte_order;
2556 
2557  ep = (vl_api_ipsec_spd_entry_t *) & mp->entry;
2558 
2559  s = format (0, "SCRIPT: ipsec_spd_entry ");
2560  s = format (s, "is_add %d spd_id %u priority %d is_outbound %d sa_id %u\n",
2561  mp->is_add,
2562  (ep->spd_id), ntohl (ep->priority), ep->is_outbound,
2563  (ep->sa_id));
2564 
2565  policy_host_byte_order = (ep->policy);
2566 
2567  if (policy_host_byte_order < ARRAY_LEN (policy_strs))
2568  str = policy_strs[policy_host_byte_order];
2569  else
2570  str = "BOGUS!";
2571 
2572  s = format (s, " policy: %s protocol %d\n", str, ep->protocol);
2573 
2574  s = format (s, " remote_address_start %U remote_address_stop %U\n",
2576  &ep->remote_address_start,
2577  format_vl_api_address, &ep->remote_address_stop);
2578 
2579  s = format (s, " local_address_start %U local_address_stop %U\n",
2581  &ep->local_address_start,
2582  format_vl_api_address, &ep->local_address_stop);
2583 
2584  s = format (s, " remote_port_start %d remote_port_stop %d\n",
2585  (ep->remote_port_start), ntohs (ep->remote_port_stop));
2586 
2587  s = format (s, " local_port_start %d local_port_stop %d ",
2588  (ep->local_port_start), ntohs (ep->local_port_stop));
2589 
2590  FINISH;
2591 }
2592 
2595 {
2596  u8 *s;
2597 
2598  s = format (0, "SCRIPT: ipsec_interface_add_del_spd ");
2599  s = format (s, "is_add %d sw_if_index %d spd_id %u ",
2600  mp->is_add, (mp->sw_if_index), ntohl (mp->spd_id));
2601  FINISH;
2602 }
2603 
2605  (vl_api_ipsec_spd_add_del_t * mp, void *handle)
2606 {
2607  u8 *s;
2608 
2609  s = format (0, "SCRIPT: ipsec_spd_add_del ");
2610  s = format (s, "spd_id %u is_add %d ", (mp->spd_id), mp->is_add);
2611  FINISH;
2612 }
2613 
2616 {
2617  u8 *s;
2618  int tmp;
2619  vl_api_ipsec_sad_entry_t *ep;
2620  const char *protocol_str, *algo_str, *integ_str;
2621 
2622  protocol_str = "BOGUS protocol!";
2623  algo_str = "BOGUS crypto_algorithm!";
2624  integ_str = "BOGUS integrity_algorithm!";
2625 
2626  ep = (vl_api_ipsec_sad_entry_t *) & mp->entry;
2627 
2628  s = format (0, "SCRIPT: ipsec_sad_entry_add_del is_add %d ", mp->is_add);
2629 
2630  tmp = (ep->protocol);
2631  if (tmp == IPSEC_API_PROTO_ESP)
2632  protocol_str = "ESP";
2633  else if (tmp == IPSEC_API_PROTO_AH)
2634  protocol_str = "AH";
2635 
2636  tmp = (ep->crypto_algorithm);
2637  if (tmp < ARRAY_LEN (algo_strs))
2638  algo_str = algo_strs[tmp];
2639 
2640  tmp = (ep->integrity_algorithm);
2641  if (tmp < ARRAY_LEN (integ_strs))
2642  integ_str = integ_strs[tmp];
2643 
2644  s = format (s, "proto %s crypto alg %s integ alg %s\n",
2645  protocol_str, algo_str, integ_str);
2646  s = format (s, " crypto_key len %d value %U\n",
2647  ep->crypto_key.length, format_hex_bytes, ep->crypto_key.data,
2648  (int) (ep->crypto_key.length));
2649  s = format (s, " integ_key len %d value %U\n",
2650  ep->integrity_key.length, format_hex_bytes,
2651  ep->integrity_key.data, (int) (ep->integrity_key.length));
2652  s = format (s, " flags 0x%x ", (ep->flags));
2653 
2654  s = format (s, "tunnel_src %U tunnel_dst %U\n",
2656  &ep->tunnel_src, format_vl_api_address, &ep->tunnel_dst);
2657  s = format (s, " tx_table_id %u salt %u ",
2658  (ep->tx_table_id), ntohl (ep->salt));
2659  FINISH;
2660 }
2661 
2662 
2665 {
2666  u8 *s;
2667  u32 vtr_op = (mp->vtr_op);
2668 
2669  s = format (0, "SCRIPT: l2_interface_pbb_tag_rewrite ");
2670 
2671  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
2672  s = format (s, "vtr_op %d ", vtr_op);
2673  if (vtr_op != L2_VTR_DISABLED && vtr_op != L2_VTR_POP_2)
2674  {
2675  if (vtr_op == L2_VTR_TRANSLATE_2_2)
2676  s = format (s, "%d ", (mp->outer_tag));
2677  s = format (s, "dmac %U ", format_ethernet_address, &mp->b_dmac);
2678  s = format (s, "smac %U ", format_ethernet_address, &mp->b_smac);
2679  s = format (s, "sid %d ", (mp->i_sid));
2680  s = format (s, "vlanid %d ", (mp->b_vlanid));
2681  }
2682  FINISH;
2683 }
2684 
2687 {
2688  u8 *s;
2689 
2690  s = format (0, "SCRIPT: flow_classify_set_interface ");
2691  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
2692  if (mp->ip4_table_index != ~0)
2693  s = format (s, "ip4-table %d ", (mp->ip4_table_index));
2694  if (mp->ip6_table_index != ~0)
2695  s = format (s, "ip6-table %d ", (mp->ip6_table_index));
2696  if (mp->is_add == 0)
2697  s = format (s, "del ");
2698 
2699  FINISH;
2700 }
2701 
2702 static void *
2704 {
2705  u8 *s;
2706 
2707  s = format (0, "SCRIPT: punt ");
2708 
2709  switch (mp->punt.type)
2710  {
2711  case PUNT_API_TYPE_L4:
2712  s = format (s, "%U", format_vl_api_address_family, mp->punt.punt.l4.af);
2713 
2714  s = format (s, "protocol %d ", mp->punt.punt.l4.protocol);
2715 
2716  if (mp->punt.punt.l4.port != (u16) ~ 0)
2717  s = format (s, "port %d ", (mp->punt.punt.l4.port));
2718  break;
2719  default:
2720  break;
2721 
2722  }
2723 
2724  if (!mp->is_add)
2725  s = format (s, "del ");
2726 
2727  FINISH;
2728 }
2729 
2731  (vl_api_flow_classify_dump_t * mp, void *handle)
2732 {
2733  u8 *s;
2734 
2735  s = format (0, "SCRIPT: flow_classify_dump ");
2736  switch (mp->type)
2737  {
2739  s = format (s, "type ip4 ");
2740  break;
2742  s = format (s, "type ip6 ");
2743  break;
2744  default:
2745  break;
2746  }
2747 
2748  FINISH;
2749 }
2750 
2752  (vl_api_get_first_msg_id_t * mp, void *handle)
2753 {
2754  u8 *s;
2755 
2756  s = format (0, "SCRIPT: get_first_msg_id %s ", mp->name);
2757 
2758  FINISH;
2759 }
2760 
2761 static void *vl_api_ioam_enable_t_print
2762  (vl_api_ioam_enable_t * mp, void *handle)
2763 {
2764  u8 *s;
2765 
2766  s = format (0, "SCRIPT: ioam_enable ");
2767 
2768  if (mp->trace_enable)
2769  s = format (s, "trace enabled");
2770 
2771  if (mp->pot_enable)
2772  s = format (s, "POT enabled");
2773 
2774  if (mp->seqno)
2775  s = format (s, "Seqno enabled");
2776 
2777  if (mp->analyse)
2778  s = format (s, "Analyse enabled");
2779 
2780  FINISH;
2781 }
2782 
2783 static void *vl_api_ioam_disable_t_print
2784  (vl_api_ioam_disable_t * mp, void *handle)
2785 {
2786  u8 *s;
2787 
2788  s = format (0, "SCRIPT: ioam_disable ");
2789  s = format (s, "trace disabled");
2790  s = format (s, "POT disabled");
2791  s = format (s, "Seqno disabled");
2792  s = format (s, "Analyse disabled");
2793 
2794  FINISH;
2795 }
2796 
2798  (vl_api_feature_enable_disable_t * mp, void *handle)
2799 {
2800  u8 *s;
2801 
2802  s = format (0, "SCRIPT: feature_enable_disable ");
2803  s = format (s, "arc_name %s ", mp->arc_name);
2804  s = format (s, "feature_name %s ", mp->feature_name);
2805  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
2806  if (!mp->enable)
2807  s = format (s, "disable");
2808 
2809  FINISH;
2810 }
2811 
2814 {
2815  u8 *s;
2816 
2817  s = format (0, "SCRIPT: feature_gso_enable_disable ");
2818  s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
2819  if (mp->enable_disable)
2820  s = format (s, "enable");
2821  if (!mp->enable_disable)
2822  s = format (s, "disable");
2823 
2824  FINISH;
2825 }
2826 
2829 {
2830  u8 *s;
2831 
2832  s = format (0, "SCRIPT: sw_interface_tag_add_del ");
2833  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
2834  if (mp->is_add)
2835  s = format (s, "tag %s ", mp->tag);
2836  else
2837  s = format (s, "del ");
2838 
2839  FINISH;
2840 }
2841 
2843  (vl_api_hw_interface_set_mtu_t * mp, void *handle)
2844 {
2845  u8 *s;
2846 
2847  s = format (0, "SCRIPT: sw_interface_set_mtu ");
2848  s = format (s, "sw_if_index %d ", (mp->sw_if_index));
2849  s = format (s, "tag %d ", (mp->mtu));
2850 
2851  FINISH;
2852 }
2853 
2855  (vl_api_p2p_ethernet_add_t * mp, void *handle)
2856 {
2857  u8 *s;
2858 
2859  s = format (0, "SCRIPT: p2p_ethernet_add ");
2860  s = format (s, "sw_if_index %d ", (mp->parent_if_index));
2861  s = format (s, "remote_mac %U ", format_ethernet_address, mp->remote_mac);
2862 
2863  FINISH;
2864 }
2865 
2867  (vl_api_p2p_ethernet_del_t * mp, void *handle)
2868 {
2869  u8 *s;
2870 
2871  s = format (0, "SCRIPT: p2p_ethernet_del ");
2872  s = format (s, "sw_if_index %d ", (mp->parent_if_index));
2873  s = format (s, "remote_mac %U ", format_ethernet_address, mp->remote_mac);
2874 
2875  FINISH;
2876 }
2877 
2880 {
2881  u8 *s;
2882 
2883  s = format (0, "SCRIPT: tcp_configure_src_addresses ");
2884  s = format (s, "%U - %U ",
2887 
2888  if (mp->vrf_id)
2889  s = format (s, "vrf %d ", (mp->vrf_id));
2890 
2891  FINISH;
2892 }
2893 
2895  (vl_api_app_namespace_add_del_t * mp, void *handle)
2896 {
2897  u8 *s;
2898 
2899  s = format (0, "SCRIPT: app_namespace_add_del ");
2900  s = format (s, "ns-id %s secret %lu sw_if_index %d ipv4_fib_id %d "
2901  "ipv6_fib_id %d",
2903  mp->secret, (mp->sw_if_index), (mp->ip4_fib_id),
2904  (mp->ip6_fib_id));
2905  FINISH;
2906 }
2907 
2909  (vl_api_session_rule_add_del_t * mp, void *handle)
2910 {
2911  u8 *s;
2912  fib_prefix_t lcl, rmt;
2913  char *proto = mp->transport_proto == 0 ? "tcp" : "udp";
2914  s = format (0, "SCRIPT: session_rule_add_del ");
2915  mp->tag[sizeof (mp->tag) - 1] = 0;
2916  ip_prefix_decode (&mp->lcl, &lcl);
2917  ip_prefix_decode (&mp->rmt, &rmt);
2918 
2919  if (lcl.fp_proto == FIB_PROTOCOL_IP4)
2920  s = format (s, "appns %d scope %d %s %U/%d %d %U/%d %d action %u tag %s",
2921  mp->appns_index, mp->scope, proto, format_ip4_address,
2922  &lcl.fp_addr.ip4, lcl.fp_len,
2923  format_ip4_address, &rmt.fp_addr.ip4,
2924  rmt.fp_len, mp->action_index, mp->tag);
2925  else
2926  s = format (s, "appns %d scope %d %s %U/%d %d %U/%d %d action %u tag %s",
2927  mp->appns_index, mp->scope, proto, format_ip6_address,
2928  &lcl.fp_addr.ip6, lcl.fp_len,
2929  format_ip6_address, &rmt.fp_addr.ip6,
2930  rmt.fp_len, mp->action_index, mp->tag);
2931  FINISH;
2932 }
2933 
2934 __clib_unused
2937 {
2938  u8 *s;
2939  s = format (0, "SCRIPT: ip_container_proxy_add_del ");
2940  s = format (s, "is_add %d prefix %U sw_if_index %d",
2942 
2943  FINISH;
2944 }
2945 
2948 {
2949  u8 *s;
2950 
2951  s = format (0, "SCRIPT: qos_record_enable_disable ");
2952  s = format (s, "sw_if_index %d ", (mp->record.sw_if_index));
2953  s = format (s, "input_source %U ", format_qos_source,
2954  mp->record.input_source);
2955 
2956  if (!mp->enable)
2957  s = format (s, "disable ");
2958 
2959  FINISH;
2960 }
2961 
2962 #define foreach_no_print_function \
2963 _(memclnt_keepalive_reply)
2964 
2965 #define _(f) \
2966 static void * vl_api_ ## f ## _t_print \
2967  (vl_api_ ## f ## _t * mp, void * handle) \
2968 { \
2969  return handle; \
2970 }
2972 #undef _
2973 
2974 #define foreach_custom_print_function \
2975 _(CREATE_LOOPBACK, create_loopback) \
2976 _(CREATE_LOOPBACK_INSTANCE, create_loopback_instance) \
2977 _(SW_INTERFACE_SET_FLAGS, sw_interface_set_flags) \
2978 _(SW_INTERFACE_EVENT, sw_interface_event) \
2979 _(SW_INTERFACE_ADD_DEL_ADDRESS, sw_interface_add_del_address) \
2980 _(SW_INTERFACE_SET_TABLE, sw_interface_set_table) \
2981 _(SW_INTERFACE_SET_MPLS_ENABLE, sw_interface_set_mpls_enable) \
2982 _(SW_INTERFACE_SET_VPATH, sw_interface_set_vpath) \
2983 _(SW_INTERFACE_SET_VXLAN_BYPASS, sw_interface_set_vxlan_bypass) \
2984 _(BOND_CREATE, bond_create) \
2985 _(BOND_CREATE2, bond_create2) \
2986 _(BOND_DELETE, bond_delete) \
2987 _(BOND_ADD_MEMBER, bond_add_member) \
2988 _(BOND_DETACH_MEMBER, bond_detach_member) \
2989 _(SW_INTERFACE_SET_BOND_WEIGHT, sw_interface_set_bond_weight) \
2990 _(SW_MEMBER_INTERFACE_DUMP, sw_member_interface_dump) \
2991 _(SW_BOND_INTERFACE_DUMP, sw_bond_interface_dump) \
2992 _(SW_INTERFACE_RX_PLACEMENT_DUMP, sw_interface_rx_placement_dump) \
2993 _(TAP_CREATE_V2, tap_create_v2) \
2994 _(TAP_DELETE_V2, tap_delete_v2) \
2995 _(SW_INTERFACE_TAP_V2_DUMP, sw_interface_tap_v2_dump) \
2996 _(IP_TABLE_ADD_DEL, ip_table_add_del) \
2997 _(MPLS_ROUTE_ADD_DEL, mpls_route_add_del) \
2998 _(MPLS_TABLE_ADD_DEL, mpls_table_add_del) \
2999 _(IP_ROUTE_ADD_DEL, ip_route_add_del) \
3000 _(MPLS_TUNNEL_ADD_DEL, mpls_tunnel_add_del) \
3001 _(SR_MPLS_POLICY_ADD, sr_mpls_policy_add) \
3002 _(SR_MPLS_POLICY_DEL, sr_mpls_policy_del) \
3003 _(SW_INTERFACE_SET_UNNUMBERED, sw_interface_set_unnumbered) \
3004 _(CREATE_VLAN_SUBIF, create_vlan_subif) \
3005 _(CREATE_SUBIF, create_subif) \
3006 _(IP_TABLE_REPLACE_BEGIN, ip_table_replace_begin) \
3007 _(IP_TABLE_FLUSH, ip_table_flush) \
3008 _(IP_TABLE_REPLACE_END, ip_table_replace_end) \
3009 _(SET_IP_FLOW_HASH, set_ip_flow_hash) \
3010 _(L2_PATCH_ADD_DEL, l2_patch_add_del) \
3011 _(SR_LOCALSID_ADD_DEL, sr_localsid_add_del) \
3012 _(SR_STEERING_ADD_DEL, sr_steering_add_del) \
3013 _(SR_POLICY_ADD, sr_policy_add) \
3014 _(SR_POLICY_MOD, sr_policy_mod) \
3015 _(SR_POLICY_DEL, sr_policy_del) \
3016 _(SW_INTERFACE_SET_L2_XCONNECT, sw_interface_set_l2_xconnect) \
3017 _(L2FIB_ADD_DEL, l2fib_add_del) \
3018 _(L2FIB_FLUSH_ALL, l2fib_flush_all) \
3019 _(L2FIB_FLUSH_BD, l2fib_flush_bd) \
3020 _(L2FIB_FLUSH_INT, l2fib_flush_int) \
3021 _(L2_FLAGS, l2_flags) \
3022 _(BRIDGE_FLAGS, bridge_flags) \
3023 _(CLASSIFY_ADD_DEL_TABLE, classify_add_del_table) \
3024 _(CLASSIFY_ADD_DEL_SESSION, classify_add_del_session) \
3025 _(SW_INTERFACE_SET_L2_BRIDGE, sw_interface_set_l2_bridge) \
3026 _(BRIDGE_DOMAIN_ADD_DEL, bridge_domain_add_del) \
3027 _(BRIDGE_DOMAIN_DUMP, bridge_domain_dump) \
3028 _(BRIDGE_DOMAIN_SET_MAC_AGE, bridge_domain_set_mac_age) \
3029 _(CLASSIFY_SET_INTERFACE_IP_TABLE, classify_set_interface_ip_table) \
3030 _(CLASSIFY_SET_INTERFACE_L2_TABLES, classify_set_interface_l2_tables) \
3031 _(ADD_NODE_NEXT, add_node_next) \
3032 _(VXLAN_ADD_DEL_TUNNEL, vxlan_add_del_tunnel) \
3033 _(VXLAN_TUNNEL_DUMP, vxlan_tunnel_dump) \
3034 _(VXLAN_OFFLOAD_RX, vxlan_offload_rx) \
3035 _(L2_FIB_CLEAR_TABLE, l2_fib_clear_table) \
3036 _(L2_INTERFACE_EFP_FILTER, l2_interface_efp_filter) \
3037 _(L2_INTERFACE_VLAN_TAG_REWRITE, l2_interface_vlan_tag_rewrite) \
3038 _(CREATE_VHOST_USER_IF, create_vhost_user_if) \
3039 _(MODIFY_VHOST_USER_IF, modify_vhost_user_if) \
3040 _(DELETE_VHOST_USER_IF, delete_vhost_user_if) \
3041 _(SW_INTERFACE_DUMP, sw_interface_dump) \
3042 _(CONTROL_PING, control_ping) \
3043 _(WANT_INTERFACE_EVENTS, want_interface_events) \
3044 _(CLI, cli) \
3045 _(CLI_INBAND, cli_inband) \
3046 _(MEMCLNT_CREATE, memclnt_create) \
3047 _(SOCKCLNT_CREATE, sockclnt_create) \
3048 _(SW_INTERFACE_VHOST_USER_DUMP, sw_interface_vhost_user_dump) \
3049 _(SHOW_VERSION, show_version) \
3050 _(L2_FIB_TABLE_DUMP, l2_fib_table_dump) \
3051 _(VXLAN_GPE_ADD_DEL_TUNNEL, vxlan_gpe_add_del_tunnel) \
3052 _(VXLAN_GPE_TUNNEL_DUMP, vxlan_gpe_tunnel_dump) \
3053 _(VXLAN_GBP_TUNNEL_ADD_DEL, vxlan_gbp_tunnel_add_del) \
3054 _(VXLAN_GBP_TUNNEL_DUMP, vxlan_gbp_tunnel_dump) \
3055 _(SW_INTERFACE_SET_VXLAN_GBP_BYPASS, sw_interface_set_vxlan_gbp_bypass) \
3056 _(INTERFACE_NAME_RENUMBER, interface_name_renumber) \
3057 _(WANT_L2_MACS_EVENTS, want_l2_macs_events) \
3058 _(INPUT_ACL_SET_INTERFACE, input_acl_set_interface) \
3059 _(IP_ADDRESS_DUMP, ip_address_dump) \
3060 _(IP_DUMP, ip_dump) \
3061 _(DELETE_LOOPBACK, delete_loopback) \
3062 _(BD_IP_MAC_ADD_DEL, bd_ip_mac_add_del) \
3063 _(BD_IP_MAC_FLUSH, bd_ip_mac_flush) \
3064 _(COP_INTERFACE_ENABLE_DISABLE, cop_interface_enable_disable) \
3065 _(COP_WHITELIST_ENABLE_DISABLE, cop_whitelist_enable_disable) \
3066 _(AF_PACKET_CREATE, af_packet_create) \
3067 _(AF_PACKET_DELETE, af_packet_delete) \
3068 _(AF_PACKET_DUMP, af_packet_dump) \
3069 _(SW_INTERFACE_CLEAR_STATS, sw_interface_clear_stats) \
3070 _(MPLS_TABLE_DUMP, mpls_table_dump) \
3071 _(MPLS_ROUTE_DUMP, mpls_route_dump) \
3072 _(MPLS_TUNNEL_DUMP, mpls_tunnel_dump) \
3073 _(CLASSIFY_TABLE_IDS,classify_table_ids) \
3074 _(CLASSIFY_TABLE_BY_INTERFACE, classify_table_by_interface) \
3075 _(CLASSIFY_TABLE_INFO,classify_table_info) \
3076 _(CLASSIFY_SESSION_DUMP,classify_session_dump) \
3077 _(SET_IPFIX_EXPORTER, set_ipfix_exporter) \
3078 _(IPFIX_EXPORTER_DUMP, ipfix_exporter_dump) \
3079 _(SET_IPFIX_CLASSIFY_STREAM, set_ipfix_classify_stream) \
3080 _(IPFIX_CLASSIFY_STREAM_DUMP, ipfix_classify_stream_dump) \
3081 _(IPFIX_CLASSIFY_TABLE_ADD_DEL, ipfix_classify_table_add_del) \
3082 _(IPFIX_CLASSIFY_TABLE_DUMP, ipfix_classify_table_dump) \
3083 _(SW_INTERFACE_SPAN_ENABLE_DISABLE, sw_interface_span_enable_disable) \
3084 _(SW_INTERFACE_SPAN_DUMP, sw_interface_span_dump) \
3085 _(GET_NEXT_INDEX, get_next_index) \
3086 _(PG_CREATE_INTERFACE,pg_create_interface) \
3087 _(PG_CAPTURE, pg_capture) \
3088 _(PG_ENABLE_DISABLE, pg_enable_disable) \
3089 _(PG_INTERFACE_ENABLE_DISABLE_COALESCE, pg_interface_enable_disable_coalesce) \
3090 _(POLICER_ADD_DEL, policer_add_del) \
3091 _(POLICER_DUMP, policer_dump) \
3092 _(POLICER_CLASSIFY_SET_INTERFACE, policer_classify_set_interface) \
3093 _(POLICER_CLASSIFY_DUMP, policer_classify_dump) \
3094 _(IP_SOURCE_AND_PORT_RANGE_CHECK_ADD_DEL, \
3095  ip_source_and_port_range_check_add_del) \
3096 _(IP_SOURCE_AND_PORT_RANGE_CHECK_INTERFACE_ADD_DEL, \
3097  ip_source_and_port_range_check_interface_add_del) \
3098 _(IPSEC_INTERFACE_ADD_DEL_SPD, ipsec_interface_add_del_spd) \
3099 _(IPSEC_SAD_ENTRY_ADD_DEL, ipsec_sad_entry_add_del) \
3100 _(IPSEC_SPD_ADD_DEL, ipsec_spd_add_del) \
3101 _(IPSEC_SPD_ENTRY_ADD_DEL, ipsec_spd_entry_add_del) \
3102 _(IPSEC_TUNNEL_IF_ADD_DEL, ipsec_tunnel_if_add_del) \
3103 _(DELETE_SUBIF, delete_subif) \
3104 _(L2_INTERFACE_PBB_TAG_REWRITE, l2_interface_pbb_tag_rewrite) \
3105 _(SET_PUNT, set_punt) \
3106 _(FLOW_CLASSIFY_SET_INTERFACE, flow_classify_set_interface) \
3107 _(FLOW_CLASSIFY_DUMP, flow_classify_dump) \
3108 _(GET_FIRST_MSG_ID, get_first_msg_id) \
3109 _(IOAM_ENABLE, ioam_enable) \
3110 _(IOAM_DISABLE, ioam_disable) \
3111 _(FEATURE_ENABLE_DISABLE, feature_enable_disable) \
3112 _(FEATURE_GSO_ENABLE_DISABLE, feature_gso_enable_disable) \
3113 _(SW_INTERFACE_TAG_ADD_DEL, sw_interface_tag_add_del) \
3114 _(HW_INTERFACE_SET_MTU, hw_interface_set_mtu) \
3115 _(P2P_ETHERNET_ADD, p2p_ethernet_add) \
3116 _(P2P_ETHERNET_DEL, p2p_ethernet_del) \
3117 _(TCP_CONFIGURE_SRC_ADDRESSES, tcp_configure_src_addresses) \
3118 _(APP_NAMESPACE_ADD_DEL, app_namespace_add_del) \
3119 _(SESSION_RULE_ADD_DEL, session_rule_add_del) \
3120 _(OUTPUT_ACL_SET_INTERFACE, output_acl_set_interface) \
3121 _(QOS_RECORD_ENABLE_DISABLE, qos_record_enable_disable) \
3122 _(MEMCLNT_KEEPALIVE_REPLY, memclnt_keepalive_reply)
3123 
3124 void
3126 {
3127 #define _(n,f) am->msg_print_handlers[VL_API_##n] \
3128  = (void *) vl_api_##f##_t_print;
3130 #undef _
3131 }
3132 
3133 /*
3134  * fd.io coding-style-patch-verification: ON
3135  *
3136  * Local Variables:
3137  * eval: (c-set-style "gnu")
3138  * End:
3139  */
static void * vl_api_sw_interface_set_flags_t_print(vl_api_sw_interface_set_flags_t *mp, void *handle)
Definition: custom_dump.c:105
static void * vl_api_create_vhost_user_if_t_print(vl_api_create_vhost_user_if_t *mp, void *handle)
Definition: custom_dump.c:1584
vl_api_interface_index_t sw_if_index
Definition: vxlan.api:58
fib_protocol_t fp_proto
protocol type
Definition: fib_types.h:211
u32 match_n_vectors[default=1]
Definition: classify.api:55
static void * vl_api_sr_mpls_policy_add_t_print(vl_api_sr_mpls_policy_add_t *mp, void *handle)
Definition: custom_dump.c:905
bool is_add[default=true]
Definition: ip.api:162
static void * vl_api_bridge_domain_add_del_t_print(vl_api_bridge_domain_add_del_t *mp, void *handle)
Definition: custom_dump.c:307
static void * vl_api_classify_set_interface_l2_tables_t_print(vl_api_classify_set_interface_l2_tables_t *mp, void *handle)
Definition: custom_dump.c:1404
Get list of policers.
Definition: policer.api:75
vl_api_vxlan_gbp_tunnel_t tunnel
Definition: vxlan_gbp.api:58
vl_api_interface_index_t sw_if_index
Definition: interface.api:91
static void * vl_api_sw_interface_set_mpls_enable_t_print(vl_api_sw_interface_set_mpls_enable_t *mp, void *handle)
Definition: custom_dump.c:212
Classify get table IDs request.
Definition: classify.api:194
#define SR_STEER_IPV6
Definition: sr_mpls.h:42
IPsec: Add/delete Security Policy Database entry.
Definition: ipsec.api:122
vl_api_mac_address_t b_smac
Definition: l2.api:416
L2 FIB add entry request.
Definition: l2.api:130
cop: enable/disable whitelist filtration features on an interface Note: the supplied fib_id must matc...
Definition: cop.api:48
static void * vl_api_vxlan_offload_rx_t_print(vl_api_vxlan_offload_rx_t *mp, void *handle)
Definition: custom_dump.c:1468
static void * vl_api_delete_subif_t_print(vl_api_delete_subif_t *mp, void *handle)
Definition: custom_dump.c:1009
static void * vl_api_l2_patch_add_del_t_print(vl_api_l2_patch_add_del_t *mp, void *handle)
Definition: custom_dump.c:1095
vl_api_bond_mode_t mode
Definition: bond.api:64
Create a point-to-point (p2p) Ethernet sub-interface.
static void * vl_api_delete_loopback_t_print(vl_api_delete_loopback_t *mp, void *handle)
Definition: custom_dump.c:94
Dump MPLS fib table.
Definition: mpls.api:181
IPFIX classify tables dump request.
static __clib_unused void * vl_api_virtio_pci_delete_t_print(vl_api_virtio_pci_delete_t *mp, void *handle)
Definition: custom_dump.c:654
static void * vl_api_sw_member_interface_dump_t_print(vl_api_sw_member_interface_dump_t *mp, void *handle)
Definition: custom_dump.c:786
string node_name[64]
Definition: vpe.api:272
#define SR_STEER_IPV4
Definition: sr_mpls.h:41
bool is_add
Definition: ipsec.api:126
u8 * format_vl_api_mac_address(u8 *s, va_list *args)
Definition: types.c:98
static uword ip46_address_is_multicast(const ip46_address_t *a)
Definition: ip46_address.h:154
vl_api_mac_address_t mac_address
Definition: bond.api:63
static void * vl_api_sr_mpls_policy_del_t_print(vl_api_sr_mpls_policy_del_t *mp, void *handle)
Definition: custom_dump.c:930
string cmd[]
Definition: vpe.api:95
#define SR_BEHAVIOR_X
Definition: sr.h:38
u8 * format_vl_api_fib_path(u8 *s, va_list *args)
Definition: fib_api.c:510
vl_api_wireguard_peer_flags_t flags
Definition: wireguard.api:105
Create or delete a VXLAN-GBP tunnel.
Definition: vxlan_gbp.api:53
void ip_prefix_decode(const vl_api_prefix_t *in, fib_prefix_t *out)
Definition: ip_types_api.c:259
vl_api_sr_steer_t traffic_type
Definition: sr.api:173
vl_api_l2_port_type_t port_type
Definition: l2.api:484
static void * vl_api_vxlan_gbp_tunnel_dump_t_print(vl_api_vxlan_gbp_tunnel_dump_t *mp, void *handle)
Definition: custom_dump.c:1516
vl_api_interface_index_t sw_if_index
Definition: bond.api:170
#define ntohs(x)
Definition: af_xdp.bpf.c:29
static void * vl_api_cli_inband_t_print(vl_api_cli_inband_t *mp, void *handle)
Definition: custom_dump.c:1716
Interface set bond weight.
Definition: bond.api:342
string next_name[64]
Definition: vpe.api:151
vnet_main_t * vnet_get_main(void)
Definition: misc.c:46
static void * vl_api_bond_detach_member_t_print(vl_api_bond_detach_member_t *mp, void *handle)
Definition: custom_dump.c:763
static void * vl_api_ioam_enable_t_print(vl_api_ioam_enable_t *mp, void *handle)
Definition: custom_dump.c:2762
vl_api_interface_index_t unnumbered_sw_if_index
Definition: interface.api:320
string node_name[64]
Definition: vpe.api:150
Set/unset policer classify interface.
Definition: classify.api:145
Delete a point-to-point (p2p) Ethernet sub-interface.
static void * vl_api_sw_interface_tag_add_del_t_print(vl_api_sw_interface_tag_add_del_t *mp, void *handle)
Definition: custom_dump.c:2828
Set flags on the interface.
Definition: interface.api:35
vl_api_sse2_qos_policer_type_t type
Definition: policer.api:50
static __clib_unused void * vl_api_virtio_pci_create_t_print(vl_api_virtio_pci_create_t *mp, void *handle)
Definition: custom_dump.c:600
static __clib_unused void * vl_api_virtio_pci_create_v2_t_print(vl_api_virtio_pci_create_v2_t *mp, void *handle)
Definition: custom_dump.c:623
bool is_add[default=true]
Definition: l2.api:434
Control ping from client to api server request.
Definition: vpe.api:60
bool mt_is_add[default=true]
Definition: mpls.api:58
vl_api_interface_index_t sw_if_index
Definition: vxlan_gpe.api:46
vl_api_interface_index_t sw_if_index
Definition: interface.api:457
static void * vl_api_flow_classify_set_interface_t_print(vl_api_flow_classify_set_interface_t *mp, void *handle)
Definition: custom_dump.c:2686
static void * vl_api_interface_name_renumber_t_print(vl_api_interface_name_renumber_t *mp, void *handle)
Definition: custom_dump.c:1820
vl_api_transport_proto_t transport_proto
Definition: session.api:268
static void * vl_api_add_node_next_t_print(vl_api_add_node_next_t *mp, void *handle)
Definition: custom_dump.c:1420
static void * vl_api_l2_fib_clear_table_t_print(vl_api_l2_fib_clear_table_t *mp, void *handle)
Definition: custom_dump.c:1542
vl_api_ip_table_t table
Definition: ip.api:120
static void * vl_api_bd_ip_mac_flush_t_print(vl_api_bd_ip_mac_flush_t *mp, void *handle)
Definition: custom_dump.c:493
u32 id[default=0xffffffff]
Definition: tapv2.api:73
static void * vl_api_sr_steering_add_del_t_print(vl_api_sr_steering_add_del_t *mp, void *handle)
Definition: custom_dump.c:1192
iOAM disable
Definition: ip.api:576
vl_api_interface_index_t sw_if_index
Definition: bond.api:126
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
vl_api_interface_index_t sw_if_index
Definition: l2.api:557
static __clib_unused void * vl_api_show_threads_t_print(vl_api_show_threads_t *mp, void *handle)
Definition: custom_dump.c:1761
Interface set vxlan-bypass request.
Definition: vxlan.api:81
add/del session rule
Definition: session.api:265
u8 * format_vl_api_address(u8 *s, va_list *args)
Definition: types.c:39
bool is_add[default=true]
Definition: vxlan.api:37
static void * vl_api_input_acl_set_interface_t_print(vl_api_input_acl_set_interface_t *mp, void *handle)
Definition: custom_dump.c:1849
vl_api_session_rule_scope_t scope
Definition: session.api:276
vl_api_interface_index_t sw_if_index
Definition: pg.api:62
Set an interface&#39;s rx-placement Rx-Queue placement on specific thread is operational for only hardwar...
Definition: interface.api:437
VXLAN GPE definitions.
static void * vl_api_control_ping_t_print(vl_api_control_ping_t *mp, void *handle)
Definition: custom_dump.c:1685
Dump af_packet interfaces request.
Definition: af_packet.api:76
Definition: l2_bd.h:151
static void * vl_api_mpls_tunnel_add_del_t_print(vl_api_mpls_tunnel_add_del_t *mp, void *handle)
Definition: custom_dump.c:878
bool is_ipv6
Definition: ip.api:395
Initialize a new bond interface with the given paramters.
Definition: bond.api:166
Classify add / del session request.
Definition: classify.api:119
IPFIX exporter dump request.
vl_api_interface_index_t sw_if_index
Definition: interface.api:498
#define SR_BEHAVIOR_DT6
Definition: sr.h:44
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:592
vl_api_interface_index_t sw_if_index
Definition: virtio.api:109
vl_api_address_t first_address
Definition: tcp.api:42
u32 memory_size[default=2097152]
Definition: classify.api:53
static void * vl_api_bridge_domain_dump_t_print(vl_api_bridge_domain_dump_t *mp, void *handle)
Definition: custom_dump.c:344
bool is_add[default=true]
Definition: l2.api:276
vl_api_address_t src
Definition: gre.api:54
vl_api_prefix_t prefix
Definition: sr.api:171
vl_api_address_t nh_addr
Definition: sr.api:63
L2 bridge domain set mac age.
Definition: l2.api:242
static void * vl_api_l2_interface_vlan_tag_rewrite_t_print(vl_api_l2_interface_vlan_tag_rewrite_t *mp, void *handle)
Definition: custom_dump.c:1568
bool is_add[default=true]
Definition: l2.api:509
static void * vl_api_mpls_route_dump_t_print(vl_api_mpls_route_dump_t *mp, void *handle)
Definition: custom_dump.c:2167
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:630
for(i=1;i<=collision_buckets;i++)
static void * vl_api_bond_create_t_print(vl_api_bond_create_t *mp, void *handle)
Definition: custom_dump.c:676
vl_api_interface_index_t sw_if_index
Definition: l2.api:412
vl_api_interface_index_t rx_sw_if_index
Definition: l2.api:482
static void * vl_api_flow_classify_dump_t_print(vl_api_flow_classify_dump_t *mp, void *handle)
Definition: custom_dump.c:2731
vl_api_mac_address_t mac_address
Definition: interface.api:585
static void * vl_api_want_interface_events_t_print(vl_api_want_interface_events_t *mp, void *handle)
Definition: custom_dump.c:1695
static void * vl_api_sw_interface_clear_stats_t_print(vl_api_sw_interface_clear_stats_t *mp, void *handle)
Definition: custom_dump.c:2134
u32 table_index[default=0xffffffff]
Definition: classify.api:51
Add / del route request.
Definition: ip.api:158
Initialize a new virtio pci interface with the given parameters.
Definition: virtio.api:33
string stream_name[]
Definition: pg.api:96
Dump virtio pci interfaces request.
Definition: virtio.api:113
Add/Delete classification table request.
Definition: classify.api:45
static void * vl_api_sw_interface_set_bond_weight_t_print(vl_api_sw_interface_set_bond_weight_t *mp, void *handle)
Definition: custom_dump.c:751
bool is_add[default=true]
Definition: ip.api:56
u32 bd_id[default=0xffffffff]
Definition: l2.api:289
L2 bridge domain request operational state details.
Definition: l2.api:285
static void * vl_api_session_rule_add_del_t_print(vl_api_session_rule_add_del_t *mp, void *handle)
Definition: custom_dump.c:2909
static void * vl_api_output_acl_set_interface_t_print(vl_api_output_acl_set_interface_t *mp, void *handle)
Definition: custom_dump.c:1867
Enable / disable packet generator request.
Definition: pg.api:91
vl_api_interface_index_t mcast_sw_if_index
Definition: vxlan_gpe.api:27
static void * vl_api_classify_add_del_table_t_print(vl_api_classify_add_del_table_t *mp, void *handle)
Definition: custom_dump.c:1321
vhost-user interface create request
Definition: vhost_user.api:33
Initialize a new bond interface with the given paramters.
Definition: bond.api:92
vl_api_mac_address_t mac_address
Definition: tapv2.api:75
static void * vl_api_vxlan_gpe_add_del_tunnel_t_print(vl_api_vxlan_gpe_add_del_tunnel_t *mp, void *handle)
Definition: custom_dump.c:1771
vl_api_address_t src_address
Definition: vxlan.api:39
static void * vl_api_bridge_flags_t_print(vl_api_bridge_flags_t *mp, void *handle)
Definition: custom_dump.c:450
format_function_t format_vnet_sw_if_index_name
Delete virtio pci interface.
Definition: virtio.api:105
unsigned char u8
Definition: types.h:56
vl_api_interface_index_t sw_if_index
Definition: ip.api:359
vl_api_interface_index_t sw_if_index
Definition: bond.api:314
static void * vl_api_sw_interface_set_l2_xconnect_t_print(vl_api_sw_interface_set_l2_xconnect_t *mp, void *handle)
Definition: custom_dump.c:264
vl_api_address_t remote_ip
Definition: ipsec.api:366
vl_api_srv6_sid_list_t sids
Definition: sr.api:109
#define SR_BEHAVIOR_DT4
Definition: sr.h:45
static void * vl_api_ip_dump_t_print(vl_api_ip_dump_t *mp, void *handle)
Definition: custom_dump.c:1897
static void * vl_api_l2fib_add_del_t_print(vl_api_l2fib_add_del_t *mp, void *handle)
Definition: custom_dump.c:393
Dump bond interfaces request.
Definition: bond.api:243
Process a vpe parser cli string request.
Definition: vpe.api:85
vl_api_interface_index_t sw_if_index[default=0xffffffff]
Definition: sr.api:60
static void * vl_api_l2_flags_t_print(vl_api_l2_flags_t *mp, void *handle)
Definition: custom_dump.c:423
static void * vl_api_create_vlan_subif_t_print(vl_api_create_vlan_subif_t *mp, void *handle)
Definition: custom_dump.c:959
static void * vl_api_l2fib_flush_bd_t_print(vl_api_l2fib_flush_bd_t *mp, void *handle)
Definition: custom_dump.c:369
vl_api_interface_index_t sw_if_index
Definition: cop.api:32
#define clib_memcpy(d, s, n)
Definition: string.h:180
vl_api_mac_address_t mac_address
Definition: interface.api:559
static void * vl_api_sockclnt_create_t_print(vl_api_sockclnt_create_t *mp, void *handle)
Definition: custom_dump.c:1740
u8 max_macs_in_event[default=10]
Definition: l2.api:158
static void * vl_api_sr_policy_add_t_print(vl_api_sr_policy_add_t *mp, void *handle)
Definition: custom_dump.c:1230
Vhost-user interface dump request.
Definition: vhost_user.api:120
Dump tap interfaces request.
Definition: tapv2.api:128
vl_api_mac_address_t hw_addr
Definition: af_packet.api:33
static void * vl_api_p2p_ethernet_del_t_print(vl_api_p2p_ethernet_del_t *mp, void *handle)
Definition: custom_dump.c:2867
vl_api_interface_index_t parent_if_index
PacketGenerator capture packets on given interface request.
Definition: pg.api:75
vl_api_sse2_qos_action_t exceed_action
Definition: policer.api:53
vl_api_interface_index_t sw_if_index
Definition: interface.api:547
static void * vl_api_vxlan_gpe_tunnel_dump_t_print(vl_api_vxlan_gpe_tunnel_dump_t *mp, void *handle)
Definition: custom_dump.c:1808
format_function_t format_ip4_address
Definition: format.h:73
static void * vl_api_ipfix_classify_stream_dump_t_print(vl_api_ipfix_classify_stream_dump_t *mp, void *handle)
Definition: custom_dump.c:2266
static void * vl_api_feature_gso_enable_disable_t_print(vl_api_feature_gso_enable_disable_t *mp, void *handle)
Definition: custom_dump.c:2813
static __clib_unused void * vl_api_sw_interface_set_rx_placement_t_print(vl_api_sw_interface_set_rx_placement_t *mp, void *handle)
Definition: custom_dump.c:122
u8 * format_ethernet_address(u8 *s, va_list *args)
Definition: format.c:44
Clear interface statistics.
Definition: interface.api:329
static void * vl_api_memclnt_create_t_print(vl_api_memclnt_create_t *mp, void *handle)
Definition: custom_dump.c:1730
Add / del table request A table can be added multiple times, but need be deleted only once...
Definition: ip.api:52
vl_api_srv6_sid_list_t sids
Definition: sr.api:85
#define SR_BEHAVIOR_LAST
Definition: sr.h:48
vl_api_interface_index_t sw_if_index
Definition: classify.api:222
vl_api_address_with_prefix_t prefix
Definition: interface.api:228
Classify sessions dump request.
Definition: classify.api:287
u8 * format_vl_api_address_family(u8 *s, va_list *args)
Definition: types.c:26
static u8 * format_policer_action(u8 *s, va_list *va)
Definition: custom_dump.c:1977
bool enable[default=true]
Definition: l2.api:450
static __clib_unused void * vl_api_sw_interface_virtio_pci_dump_t_print(vl_api_sw_interface_virtio_pci_dump_t *mp, void *handle)
Definition: custom_dump.c:666
Enable or disable interface feature gso arc.
Definition: gso.api:26
vl_api_sr_policy_op_t operation
Definition: sr.api:106
Set interface source and L4 port-range request.
Definition: ip.api:526
Set/unset output ACL interface.
Definition: classify.api:434
static void * vl_api_ip_table_add_del_t_print(vl_api_ip_table_add_del_t *mp, void *handle)
Definition: custom_dump.c:845
description fragment has unexpected format
Definition: map.api:433
static void * vl_api_mpls_route_add_del_t_print(vl_api_mpls_route_add_del_t *mp, void *handle)
Definition: custom_dump.c:814
vl_api_interface_index_t sw_if_index
Definition: interface.api:611
static void * vl_api_get_next_index_t_print(vl_api_get_next_index_t *mp, void *handle)
Definition: custom_dump.c:2346
u32 feature_bitmap
Definition: l2.api:221
vl_api_address_t local_ip
Definition: ipsec.api:365
add/del application namespace
Definition: session.api:217
static void * vl_api_ip_address_dump_t_print(vl_api_ip_address_dump_t *mp, void *handle)
Definition: custom_dump.c:1885
static void * vl_api_qos_record_enable_disable_t_print(vl_api_qos_record_enable_disable_t *mp, void *handle)
Definition: custom_dump.c:2947
Aggregate type for a prefix.
Definition: fib_types.h:202
u8 * format_hex_bytes(u8 *s, va_list *va)
Definition: std-formats.c:84
static void * vl_api_policer_dump_t_print(vl_api_policer_dump_t *mp, void *handle)
Definition: custom_dump.c:2079
vl_api_sr_behavior_t behavior
Definition: sr.api:59
L2 FIB flush bridge domain entries.
Definition: l2.api:100
static void * vl_api_cli_t_print(vl_api_cli_t *mp, void *handle)
Definition: custom_dump.c:1706
vl_api_ip_table_t table
Definition: ip.api:57
Delete host-interface.
Definition: af_packet.api:54
Set/unset input ACL interface.
Definition: classify.api:412
static void * vl_api_set_ipfix_classify_stream_t_print(vl_api_set_ipfix_classify_stream_t *mp, void *handle)
Definition: custom_dump.c:2253
unsigned int u32
Definition: types.h:88
vl_api_interface_index_t interface_id
Definition: pg.api:36
static void * vl_api_sw_interface_set_table_t_print(vl_api_sw_interface_set_table_t *mp, void *handle)
Definition: custom_dump.c:194
static __clib_unused void * vl_api_bd_ip_mac_dump_t_print(vl_api_bd_ip_mac_dump_t *mp, void *handle)
Definition: custom_dump.c:505
u16 fp_len
The mask length.
Definition: fib_types.h:206
static void * vl_api_want_l2_macs_events_t_print(vl_api_want_l2_macs_events_t *mp, void *handle)
Definition: custom_dump.c:1834
vl_api_mac_address_t remote_mac
static void * vl_api_sr_localsid_add_del_t_print(vl_api_sr_localsid_add_del_t *mp, void *handle)
Definition: custom_dump.c:1112
u16 tx_ring_sz[default=256]
Definition: tapv2.api:77
static void * vl_api_bond_create2_t_print(vl_api_bond_create2_t *mp, void *handle)
Definition: custom_dump.c:699
static void * vl_api_ipsec_spd_entry_add_del_t_print(vl_api_ipsec_spd_entry_add_del_t *mp, void *handle)
Definition: custom_dump.c:2550
static void * vl_api_l2fib_flush_int_t_print(vl_api_l2fib_flush_int_t *mp, void *handle)
Definition: custom_dump.c:381
Dump mpls eth tunnel table.
Definition: mpls.api:80
vl_api_interface_index_t sw_if_index
Definition: vhost_user.api:89
static void * vl_api_sw_interface_set_unnumbered_t_print(vl_api_sw_interface_set_unnumbered_t *mp, void *handle)
Definition: custom_dump.c:942
u16 rx_ring_sz[default=256]
Definition: tapv2.api:78
ip46_type_t ip_address_decode(const vl_api_address_t *in, ip46_address_t *out)
Decode/Encode for struct/union types.
Definition: ip_types_api.c:186
vl_api_mac_address_t mac
Definition: l2.api:134
static void * vl_api_tap_delete_v2_t_print(vl_api_tap_delete_v2_t *mp, void *handle)
Definition: custom_dump.c:578
static void * vl_api_ip_source_and_port_range_check_add_del_t_print(vl_api_ip_source_and_port_range_check_add_del_t *mp, void *handle)
Definition: custom_dump.c:2418
Dump l2 fib (aka bridge domain) table.
Definition: l2.api:68
vl_api_if_status_flags_t flags
Definition: interface.api:92
vl_api_address_family_t ip_version
Configure IP source and L4 port-range check.
Definition: ip.api:507
u8 * format_qos_source(u8 *s, va_list *args)
format/unformat QoS source types
Definition: qos_types.c:27
IP table flush Flush a table of all routes.
Definition: ip.api:116
bool enable_disable[default=true]
Definition: l2.api:558
vl_api_interface_index_t parent_if_index
IP table replace end.
Definition: ip.api:103
vl_api_ip_dscp_t dscp
Definition: dhcp.api:163
static void * vl_api_sw_interface_set_vxlan_gbp_bypass_t_print(vl_api_sw_interface_set_vxlan_gbp_bypass_t *mp, void *handle)
Definition: custom_dump.c:1528
vl_api_interface_index_t sw_if_index
Definition: l2.api:389
IPsec: Add/delete Security Association Database entry.
Definition: ipsec.api:192
string match_name[64]
Definition: policer.api:81
Set interface L2 flags (such as L2_LEARN, L2_FWD, L2_FLOOD, L2_UU_FLOOD, or L2_ARP_TERM bits)...
Definition: l2.api:215
u8 * format_vl_api_prefix(u8 *s, va_list *args)
Definition: types.c:87
vl_api_interface_index_t sw_if_index[default=0xffffffff]
Definition: bond.api:247
PacketGenerator interface enable/disable packet coalesce.
Definition: pg.api:58
L2 FIB flush all entries.
Definition: l2.api:89
L2 fib clear table request, clear all mac entries in the l2 fib.
Definition: l2.api:79
vl_api_ip_route_t route
Definition: ip.api:164
vl_api_interface_index_t sw_if_index
Definition: classify.api:438
vl_api_interface_index_t sw_if_index
Definition: l2.api:571
Enable/Disable span to mirror traffic from one interface to another.
Definition: span.api:37
vl_api_mac_address_t mac_address
Definition: virtio.api:40
static void * vl_api_pg_create_interface_t_print(vl_api_pg_create_interface_t *mp, void *handle)
Definition: custom_dump.c:2358
static void * vl_api_sw_interface_set_vpath_t_print(vl_api_sw_interface_set_vpath_t *mp, void *handle)
Definition: custom_dump.c:227
static void * vl_api_sw_interface_rx_placement_dump_t_print(vl_api_sw_interface_rx_placement_dump_t *mp, void *handle)
Definition: custom_dump.c:139
ip46_address_t fp_addr
The address type is not deriveable from the fp_addr member.
Definition: fib_types.h:225
vl_api_ip_proto_t proto
Definition: acl_types.api:51
vl_api_interface_index_t sw_if_index
Definition: interface.api:333
static void * vl_api_af_packet_dump_t_print(vl_api_af_packet_dump_t *mp, void *handle)
Definition: custom_dump.c:1967
bool is_del[default=false]
Definition: sr.api:167
#define SR_BEHAVIOR_END
Definition: sr.h:37
static void * vl_api_ip_table_replace_begin_t_print(vl_api_ip_table_replace_begin_t *mp, void *handle)
Definition: custom_dump.c:1020
IPsec: Add/delete Security Policy Database.
Definition: ipsec.api:32
bool enable[default=true]
Definition: qos.api:113
bool enable_disable[default=true]
Definition: l2.api:159
u32 bd_id
Definition: gbp.api:188
unsigned short u16
Definition: types.h:57
static void * vl_api_sw_interface_span_dump_t_print(vl_api_sw_interface_span_dump_t *mp, void *handle)
Definition: custom_dump.c:2332
static void * vl_api_ipsec_sad_entry_add_del_t_print(vl_api_ipsec_sad_entry_add_del_t *mp, void *handle)
Definition: custom_dump.c:2615
static void * vl_api_pg_interface_enable_disable_coalesce_t_print(vl_api_pg_interface_enable_disable_coalesce_t *mp, void *handle)
Definition: custom_dump.c:2403
Set/unset l2 classification tables for an interface request.
Definition: classify.api:389
u32 opaque_index[default=0xffffffff]
Definition: classify.api:126
vl_api_interface_index_t sw_if_index
Definition: sr.api:172
vl_api_interface_index_t sw_if_index
Definition: interface.api:319
bool is_add[default=true]
Definition: ip.api:479
vl_api_flow_classify_table_t type
Definition: classify.api:350
static void * vl_api_l2fib_flush_all_t_print(vl_api_l2fib_flush_all_t *mp, void *handle)
Definition: custom_dump.c:358
vl_api_interface_index_t sw_if_index
Definition: ip.api:478
u32 id[default=0xFFFFFFFF]
Definition: bond.api:102
MPLS Route Add / del route.
Definition: mpls.api:162
vl_api_interface_index_t sw_if_index
Definition: feature.api:35
static void * vl_api_classify_add_del_session_t_print(vl_api_classify_add_del_session_t *mp, void *handle)
Definition: custom_dump.c:1354
static void * vl_api_bond_delete_t_print(vl_api_bond_delete_t *mp, void *handle)
Definition: custom_dump.c:724
static void * vl_api_p2p_ethernet_add_t_print(vl_api_p2p_ethernet_add_t *mp, void *handle)
Definition: custom_dump.c:2855
Initialize a new virtio pci interface with the given parameters.
Definition: virtio.api:77
static __clib_unused void * vl_api_ip_container_proxy_add_del_t_print(vl_api_ip_container_proxy_add_del_t *mp, void *handle)
Definition: custom_dump.c:2936
u32 vl_api_string_len(vl_api_string_t *astr)
Definition: api_shared.c:1170
vl_api_interface_index_t sw_if_index_to
Definition: span.api:41
bool enable[default=true]
Definition: l2.api:486
static void * vl_api_cop_whitelist_enable_disable_t_print(vl_api_cop_whitelist_enable_disable_t *mp, void *handle)
Definition: custom_dump.c:1923
vl_api_interface_index_t sw_if_index
Definition: l2.api:116
#define SR_BEHAVIOR_DX4
Definition: sr.h:43
Get list of flow classify interfaces and tables.
Definition: classify.api:347
static void * vl_api_af_packet_delete_t_print(vl_api_af_packet_delete_t *mp, void *handle)
Definition: custom_dump.c:1956
vl_api_address_t dst
Definition: gre.api:55
static void * vl_api_pg_enable_disable_t_print(vl_api_pg_enable_disable_t *mp, void *handle)
Definition: custom_dump.c:2387
Set or delete one or all ip addresses on a specified interface.
Definition: interface.api:220
vl_api_interface_index_t tx_sw_if_index
Definition: l2.api:449
Enable or Disable MPLS on and interface.
Definition: mpls.api:207
vl_api_interface_index_t sw_if_index
Definition: ipsec.api:56
vl_api_interface_index_t sw_if_index
Definition: interface.api:279
vl_api_mpls_route_t mr_route
Definition: mpls.api:168
vl_api_ip4_address_with_prefix_t host_ip4_prefix
Definition: tapv2.api:84
Enable/Disable QoS recording The QoS bits from the packet at the specified input layer are copied int...
Definition: qos.api:109
vl_api_address_t collector_address
u32 miss_next_index[default=0xffffffff]
Definition: classify.api:57
u32 next_table_index[default=0xffffffff]
Definition: classify.api:56
IOAM enable : Enable in-band OAM.
Definition: ip.api:559
vl_api_interface_index_t sw_if_index
Definition: vxlan.api:102
static void * vl_api_af_packet_create_t_print(vl_api_af_packet_create_t *mp, void *handle)
Definition: custom_dump.c:1941
static void * vl_api_sw_interface_event_t_print(vl_api_sw_interface_event_t *mp, void *handle)
Definition: custom_dump.c:153
Call from VLIB_INIT_FUNCTION to set the Linux kernel inject node name.
vl_api_address_t last_address
Definition: tcp.api:43
vl_api_interface_index_t sw_if_index
Definition: l2.api:219
string pcap_file_name[]
Definition: pg.api:82
vl_api_interface_index_t interface_id
Definition: pg.api:79
Classify table info.
Definition: classify.api:248
API main structure, used by both vpp and binary API clients.
Definition: api_common.h:227
format_function_t format_ip46_address
Definition: ip46_address.h:50
vl_api_interface_index_t sw_if_index
Definition: interface.api:523
static void * vl_api_modify_vhost_user_if_t_print(vl_api_modify_vhost_user_if_t *mp, void *handle)
Definition: custom_dump.c:1610
static void * vl_api_classify_table_by_interface_t_print(vl_api_classify_table_by_interface_t *mp, void *handle)
Definition: custom_dump.c:2187
static void * vl_api_show_version_t_print(vl_api_show_version_t *mp, void *handle)
Definition: custom_dump.c:1750
static void * vl_api_set_ip_flow_hash_t_print(vl_api_set_ip_flow_hash_t *mp, void *handle)
Definition: custom_dump.c:1061
IPsec: Add/delete SPD from interface.
Definition: ipsec.api:50
Offload vxlan rx request.
Definition: vxlan.api:97
IPFIX classify stream configure request.
vl_api_interface_index_t sw_if_index
Definition: vxlan.api:85
PacketGenerator create interface request.
Definition: pg.api:32
Set the ip flow hash config for a fib request.
Definition: ip.api:232
static void * vl_api_create_loopback_t_print(vl_api_create_loopback_t *mp, void *handle)
Definition: custom_dump.c:71
format_function_t format_ip6_address
Definition: format.h:91
vl_api_mac_address_t remote_mac
Create host-interface.
Definition: af_packet.api:28
static void * vl_api_policer_add_del_t_print(vl_api_policer_add_del_t *mp, void *handle)
Definition: custom_dump.c:2004
bool is_enabled[default=true]
Definition: pg.api:80
sll srl srl sll sra u16x4 i
Definition: vector_sse42.h:317
cop: enable/disable junk filtration features on an interface
Definition: cop.api:27
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:380
vl_api_ip6_address_t bsid_addr
Definition: sr.api:168
vl_api_virtio_flags_t virtio_flags
Definition: virtio.api:84
vl_api_ipsec_sad_entry_t entry
Definition: ipsec.api:197
static void * vl_api_cop_interface_enable_disable_t_print(vl_api_cop_interface_enable_disable_t *mp, void *handle)
Definition: custom_dump.c:1908
Set/unset the classification table for an interface request.
Definition: classify.api:372
vl_api_tap_flags_t tap_flags
Definition: tapv2.api:91
Initialize a new bond interface with the given paramters.
Definition: bond.api:56
vl_api_interface_index_t sw_if_index
Definition: interface.api:53
static void * vl_api_l2_interface_pbb_tag_rewrite_t_print(vl_api_l2_interface_pbb_tag_rewrite_t *mp, void *handle)
Definition: custom_dump.c:2664
static void * vl_api_policer_classify_dump_t_print(vl_api_policer_classify_dump_t *mp, void *handle)
Definition: custom_dump.c:2110
SPAN dump request.
Definition: span.api:51
Create or delete a VXLAN tunnel.
Definition: vxlan.api:33
#define FINISH
Definition: custom_dump.c:63
vl_api_bond_mode_t mode
Definition: bond.api:96
vl_api_sse2_qos_action_t violate_action
Definition: policer.api:54
static void * vl_api_set_ipfix_exporter_t_print(vl_api_set_ipfix_exporter_t *mp, void *handle)
Definition: custom_dump.c:2223
Feature path enable/disable request.
Definition: feature.api:32
vl_api_interface_index_t tx_sw_if_index
Definition: l2.api:433
char * vl_api_from_api_to_new_c_string(vl_api_string_t *astr)
Definition: api_shared.c:1204
static void * vl_api_ip_source_and_port_range_check_interface_add_del_t_print(vl_api_ip_source_and_port_range_check_interface_add_del_t *mp, void *handle)
Definition: custom_dump.c:2440
IPv6 SR steering add/del.
Definition: sr.api:163
bool is_add
Definition: ipsec.api:196
Initialize a new tap interface with the given parameters.
Definition: tapv2.api:69
Set/unset flow classify interface.
Definition: classify.api:326
Request all or filtered subset of sw_interface_details.
Definition: interface.api:203
static void * vl_api_sr_policy_del_t_print(vl_api_sr_policy_del_t *mp, void *handle)
Definition: custom_dump.c:1311
vl_api_sse2_qos_action_t conform_action
Definition: policer.api:52
static void * vl_api_hw_interface_set_mtu_t_print(vl_api_hw_interface_set_mtu_t *mp, void *handle)
Definition: custom_dump.c:2843
Delete sub interface request.
Definition: interface.api:544
#define ARRAY_LEN(x)
Definition: clib.h:67
u8 scan_delay[default=10]
Definition: l2.api:157
void vl_msg_api_custom_dump_configure(api_main_t *am)
Definition: custom_dump.c:3125
bool is_enabled[default=true]
Definition: pg.api:95
vl_api_interface_index_t rx_sw_if_index
Definition: l2.api:432
Delete loopback interface request.
Definition: interface.api:607
vl_api_ip6_address_t localsid
Definition: sr.api:57
Dump bridge domain IP to MAC entries.
Definition: l2.api:540
vl_api_interface_index_t sw_if_index[default=0xffffffff]
Definition: session.api:221
static void * vl_api_ipsec_tunnel_if_add_del_t_print(vl_api_ipsec_tunnel_if_add_del_t *mp, void *handle)
Definition: custom_dump.c:2468
vl_api_interface_index_t sw_if_index
Definition: tapv2.api:122
bool enable[default=0xffffffff]
Definition: l2.api:572
vhost-user interface modify request
Definition: vhost_user.api:69
u32 segments[n_segments]
Definition: sr_mpls.api:38
Register for interface events.
Definition: interface.api:102
vl_api_classify_action_t action[default=0]
Definition: classify.api:128
Set L2 XConnect between two interfaces request.
Definition: l2.api:444
static void * vl_api_tap_create_v2_t_print(vl_api_tap_create_v2_t *mp, void *handle)
Definition: custom_dump.c:515
vl_api_interface_index_t sw_if_index
Definition: mpls.api:211
IP table replace being.
Definition: ip.api:88
static void * vl_api_ipfix_classify_table_add_del_t_print(vl_api_ipfix_classify_table_add_del_t *mp, void *handle)
Definition: custom_dump.c:2276
vl_api_interface_index_t rx_sw_if_index
Definition: l2.api:448
static void * vl_api_ip_route_add_del_t_print(vl_api_ip_route_add_del_t *mp, void *handle)
Definition: custom_dump.c:797
static void * vl_api_ipsec_interface_add_del_spd_t_print(vl_api_ipsec_interface_add_del_spd_t *mp, void *handle)
Definition: custom_dump.c:2594
vl_api_interface_index_t sw_if_index
Definition: classify.api:416
vl_api_mpls_table_t mt_table
Definition: mpls.api:114
vl_api_interface_index_t sw_if_index
Definition: classify.api:377
bool enable[default=true]
Definition: vxlan.api:103
static void * vl_api_ioam_disable_t_print(vl_api_ioam_disable_t *mp, void *handle)
Definition: custom_dump.c:2784
bool is_add[default=true]
Definition: l2.api:137
static void * vl_api_create_subif_t_print(vl_api_create_subif_t *mp, void *handle)
Definition: custom_dump.c:985
vl_api_interface_index_t sw_if_index_from
Definition: span.api:40
vl_api_bond_lb_algo_t lb
Definition: bond.api:65
vl_api_qos_record_t record
Definition: qos.api:114
Get list of policer classify interfaces and tables.
Definition: classify.api:170
vl_api_interface_index_t bond_sw_if_index
Definition: bond.api:171
static void * vl_api_vxlan_add_del_tunnel_t_print(vl_api_vxlan_add_del_tunnel_t *mp, void *handle)
Definition: custom_dump.c:1432
static void * vl_api_create_loopback_instance_t_print(vl_api_create_loopback_instance_t *mp, void *handle)
Definition: custom_dump.c:82
vl_api_interface_index_t sw_if_index
Definition: classify.api:149
Register to receive L2 MAC events for learned and aged MAC.
Definition: l2.api:152
vl_api_policer_classify_table_t type
Definition: classify.api:174
static void * vl_api_set_punt_t_print(vl_api_set_punt_t *mp, void *handle)
Definition: custom_dump.c:2703
#define foreach_create_subif_flag
Definition: custom_dump.c:974
vl_api_interface_index_t hw_if_index
Definition: vxlan.api:101
IPv6 SR policy deletion.
Definition: sr.api:118
Delete bond interface.
Definition: bond.api:122
static void * vl_api_sw_interface_tap_v2_dump_t_print(vl_api_sw_interface_tap_v2_dump_t *mp, void *handle)
Definition: custom_dump.c:589
Set the next node for a given node request.
Definition: vpe.api:146
vl_api_interface_index_t sw_if_index
Definition: vxlan_gbp.api:96
vl_api_interface_index_t sw_if_index
Definition: interface.api:441
Query relative index via node names.
Definition: vpe.api:268
static void * vl_api_classify_session_dump_t_print(vl_api_classify_session_dump_t *mp, void *handle)
Definition: custom_dump.c:2211
show version
Definition: vpe.api:170
MPLS SR policy add.
Definition: sr_mpls.api:30
string host_namespace[64]
Definition: tapv2.api:93
static void * vl_api_get_first_msg_id_t_print(vl_api_get_first_msg_id_t *mp, void *handle)
Definition: custom_dump.c:2752
Punt traffic to the host.
Definition: punt.api:86
#define foreach_custom_print_function
Definition: custom_dump.c:2974
vl_api_interface_index_t sw_if_index
Definition: interface.api:490
static void * vl_api_ip_table_replace_end_t_print(vl_api_ip_table_replace_end_t *mp, void *handle)
Definition: custom_dump.c:1047
vl_api_interface_index_t sw_if_index
Definition: classify.api:329
i16 current_data_offset[default=0]
Definition: classify.api:59
static void * vl_api_sw_interface_add_del_address_t_print(vl_api_sw_interface_add_del_address_t *mp, void *handle)
Definition: custom_dump.c:178
static void * vl_api_sr_policy_mod_t_print(vl_api_sr_policy_mod_t *mp, void *handle)
Definition: custom_dump.c:1272
Classify table ids by interface index request.
Definition: classify.api:218
bond detach member
Definition: bond.api:204
Interface set vxlan-bypass request.
Definition: vxlan_gbp.api:92
#define SR_BEHAVIOR_DX2
Definition: sr.h:41
Interface Event generated by want_interface_events.
Definition: interface.api:87
vl_api_address_t src_address
MPLS SR policy deletion.
Definition: sr_mpls.api:70
IPv6 SR policy add.
Definition: sr.api:76
Configure TCP source addresses, for active-open TCP sessions.
Definition: tcp.api:38
static void * vl_api_bridge_domain_set_mac_age_t_print(vl_api_bridge_domain_set_mac_age_t *mp, void *handle)
Definition: custom_dump.c:330
vl_api_interface_index_t sw_if_index
Definition: interface.api:39
vl_api_ipsec_spd_entry_t entry
Definition: ipsec.api:127
static void * vl_api_classify_set_interface_ip_table_t_print(vl_api_classify_set_interface_ip_table_t *mp, void *handle)
Definition: custom_dump.c:1388
vl_api_punt_t punt
Definition: punt.api:90
static void * vl_api_classify_table_ids_t_print(vl_api_classify_table_ids_t *mp, void *handle)
Definition: custom_dump.c:2177
u8 num_rx_queues[default=1]
Definition: tapv2.api:76
Interface bridge mode request.
Definition: l2.api:478
vl_api_interface_index_t sw_if_index
Definition: l2.api:136
static void * vl_api_l2_interface_efp_filter_t_print(vl_api_l2_interface_efp_filter_t *mp, void *handle)
Definition: custom_dump.c:1552
Create loopback interface instance request.
Definition: interface.api:581
vl_api_interface_index_t sw_if_index[default=0xffffffff]
Definition: mpls.api:84
static void * vl_api_bd_ip_mac_add_del_t_print(vl_api_bd_ip_mac_add_del_t *mp, void *handle)
Definition: custom_dump.c:477
L2 FIB flush interface entries.
Definition: l2.api:112
vl_api_mac_address_t host_mac_addr
Definition: tapv2.api:82
vl_api_sse2_qos_round_type_t round_type
Definition: policer.api:49
static ip46_address_t to_ip46(u32 is_ipv6, u8 *buf)
Definition: ip46_address.h:137
vl_api_pci_address_t pci_addr
Definition: virtio.api:38
static void * vl_api_pg_capture_t_print(vl_api_pg_capture_t *mp, void *handle)
Definition: custom_dump.c:2371
vl_api_bd_flags_t flags
Definition: l2.api:361
vl_api_mac_address_t mac_address
Definition: virtio.api:83
vl_api_mac_event_action_t action
Definition: l2.api:181
Set interface physical MTU.
Definition: interface.api:49
vl_api_pci_address_t pci_addr
Definition: virtio.api:81
vl_api_interface_index_t sw_if_index
Definition: vhost_user.api:73
vl_api_bond_lb_algo_t lb
Definition: bond.api:97
u32 id[default=0xFFFFFFFF]
Definition: bond.api:61
static void * vl_api_delete_vhost_user_if_t_print(vl_api_delete_vhost_user_if_t *mp, void *handle)
Definition: custom_dump.c:1631
Configure IPFIX exporter process request.
#define foreach_no_print_function
Definition: custom_dump.c:2962
L2 interface ethernet flow point filtering enable/disable request.
Definition: l2.api:553
vl_api_sse2_qos_rate_type_t rate_type
Definition: policer.api:48
static void * vl_api_sw_interface_set_l2_bridge_t_print(vl_api_sw_interface_set_l2_bridge_t *mp, void *handle)
Definition: custom_dump.c:283
string next_name[64]
Definition: vpe.api:273
static void * vl_api_sw_interface_set_vxlan_bypass_t_print(vl_api_sw_interface_set_vxlan_bypass_t *mp, void *handle)
Definition: custom_dump.c:244
static void * vl_api_ipfix_classify_table_dump_t_print(vl_api_ipfix_classify_table_dump_t *mp, void *handle)
Definition: custom_dump.c:2290
Delete tap interface.
Definition: tapv2.api:118
vl_api_ip6_address_t bsid_addr
Definition: sr.api:103
static void * vl_api_ip_table_flush_t_print(vl_api_ip_table_flush_t *mp, void *handle)
Definition: custom_dump.c:1034
u32 hit_next_index[default=0xffffffff]
Definition: classify.api:125
Create loopback interface request.
Definition: interface.api:555
vl_api_mac_address_t b_dmac
Definition: l2.api:415
Set unnumbered interface add / del request.
Definition: interface.api:315
Segment Routing MPLS data structures definitions.
L2 interface vlan tag rewrite configure request.
Definition: l2.api:385
static u8 * format_bond_mode(u8 *s, va_list *args)
Definition: node.h:445
vl_api_interface_index_t sw_if_index
Definition: interface.api:224
Create a new subinterface with the given vlan id.
Definition: interface.api:519
vl_api_ip_table_t table
Definition: ip.api:92
static void * vl_api_mpls_table_dump_t_print(vl_api_mpls_table_dump_t *mp, void *handle)
Definition: custom_dump.c:2157
bool mt_is_add[default=true]
Definition: mpls.api:113
static void * vl_api_mpls_table_add_del_t_print(vl_api_mpls_table_add_del_t *mp, void *handle)
Definition: custom_dump.c:863
L2 interface patch add / del request.
Definition: l2.api:428
vl_api_interface_index_t sw_if_index
Definition: gso.api:30
dump the rx queue placement of interface(s)
Definition: interface.api:453
Interface set vpath request.
Definition: l2.api:567
static void * vl_api_ipfix_exporter_dump_t_print(vl_api_ipfix_exporter_dump_t *mp, void *handle)
Definition: custom_dump.c:2243
Add/del policer.
Definition: policer.api:37
vl_api_interface_index_t sw_if_index
Definition: bond.api:208
Segment Routing data structures definitions.
static void * vl_api_mpls_tunnel_dump_t_print(vl_api_mpls_tunnel_dump_t *mp, void *handle)
Definition: custom_dump.c:2146
L2 interface pbb tag rewrite configure request.
Definition: l2.api:408
static void * vl_api_l2_fib_table_dump_t_print(vl_api_l2_fib_table_dump_t *mp, void *handle)
Definition: custom_dump.c:1673
vl_api_if_status_flags_t flags
Definition: interface.api:40
u32 learn_limit[default=1000]
Definition: l2.api:156
static void * vl_api_ipsec_spd_add_del_t_print(vl_api_ipsec_spd_add_del_t *mp, void *handle)
Definition: custom_dump.c:2605
IPv6 SR policy modification.
Definition: sr.api:99
static void * vl_api_sw_interface_dump_t_print(vl_api_sw_interface_dump_t *mp, void *handle)
Definition: custom_dump.c:1654
#define vec_foreach(var, vec)
Vector iterator.
Set bridge flags request.
Definition: l2.api:355
unsigned long long u32x4
Definition: ixge.c:28
static void * vl_api_bond_add_member_t_print(vl_api_bond_add_member_t *mp, void *handle)
Definition: custom_dump.c:735
vl_api_interface_index_t sw_if_index[default=0xffffffff]
Definition: vxlan_gbp.api:74
IPFIX classify stream dump request.
static void * vl_api_vxlan_gbp_tunnel_add_del_t_print(vl_api_vxlan_gbp_tunnel_add_del_t *mp, void *handle)
Definition: custom_dump.c:1494
vl_api_interface_index_t sw_if_index
Definition: cop.api:53
static u8 * format_vl_api_prefix_t(u8 *s, va_list *args)
Definition: ip_format_fns.h:77
static u8 * format_bond_load_balance(u8 *s, va_list *args)
Definition: node.h:477
vl_api_bd_ip_mac_t entry
Definition: l2.api:510
vl_api_interface_index_t sw_if_index
Definition: classify.api:393
vl_api_ip_table_t table
Definition: ip.api:107
vhost-user interface delete request
Definition: vhost_user.api:85
#define SR_STEER_L2
Definition: sr.h:50
vl_api_mpls_tunnel_t mt_tunnel
Definition: mpls.api:59
Set / clear software interface tag.
Definition: interface.api:343
vl_api_ip6_address_t bsid_addr
Definition: sr.api:80
string host_if_name[64]
Definition: tapv2.api:95
Dump MPLS fib table.
Definition: mpls.api:120
static void * vl_api_tcp_configure_src_addresses_t_print(vl_api_tcp_configure_src_addresses_t *mp, void *handle)
Definition: custom_dump.c:2879
IPv6 SR LocalSID add/del request.
Definition: sr.api:52
static void * vl_api_sw_interface_span_enable_disable_t_print(vl_api_sw_interface_span_enable_disable_t *mp, void *handle)
Definition: custom_dump.c:2300
Associate the specified interface with a fib table.
Definition: interface.api:275
static void * vl_api_feature_enable_disable_t_print(vl_api_feature_enable_disable_t *mp, void *handle)
Definition: custom_dump.c:2798
static void * vl_api_app_namespace_add_del_t_print(vl_api_app_namespace_add_del_t *mp, void *handle)
Definition: custom_dump.c:2895
Flush bridge domain IP to MAC entries.
Definition: l2.api:517
vl_api_interface_index_t sw_if_index
Definition: bond.api:346
u8 * vl_api_from_api_to_new_vec(void *mp, vl_api_string_t *astr)
Definition: api_shared.c:1188
vl_api_interface_index_t mcast_sw_if_index
Definition: vxlan.api:41
Add or delete IPsec tunnel interface.
Definition: ipsec.api:358
vl_api_interface_index_t sw_if_index[default=0xffffffff]
Definition: vhost_user.api:124
IPFIX add or delete classifier table request.
string host_bridge[64]
Definition: tapv2.api:97
format_function_t format_vlib_pci_addr
Definition: pci.h:326
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:34
vl_api_mac_address_t mac_address
Definition: bond.api:101
static void * vl_api_policer_classify_set_interface_t_print(vl_api_policer_classify_set_interface_t *mp, void *handle)
Definition: custom_dump.c:2091
static void * vl_api_vxlan_tunnel_dump_t_print(vl_api_vxlan_tunnel_dump_t *mp, void *handle)
Definition: custom_dump.c:1482
#define SR_BEHAVIOR_DX6
Definition: sr.h:42
vl_api_interface_index_t sw_if_index
Definition: interface.api:348
static void * vl_api_sw_interface_vhost_user_dump_t_print(vl_api_sw_interface_vhost_user_dump_t *mp, void *handle)
Definition: custom_dump.c:1642
static void * vl_api_classify_table_info_t_print(vl_api_classify_table_info_t *mp, void *handle)
Definition: custom_dump.c:2199
vl_api_address_t dst_address
Definition: vxlan.api:40
static void * vl_api_sw_bond_interface_dump_t_print(vl_api_sw_bond_interface_dump_t *mp, void *handle)
Definition: custom_dump.c:774
vl_api_ip6_address_with_prefix_t host_ip6_prefix
Definition: tapv2.api:86
L2 bridge domain add or delete request.
Definition: l2.api:263
show_threads display the information about vpp threads running on system along with their process id...
Definition: vpe.api:198