fib: Source Address Selection
[vpp.git] / src / vpp / api / custom_dump.c
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>
22 #include <vnet/ip-neighbor/ip_neighbor.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>
30 #include <vnet/vxlan-gpe/vxlan_gpe.h>
31 #include <vnet/classify/policer_classify.h>
32 #include <vnet/policer/xlate.h>
33 #include <vnet/policer/policer.h>
34 #include <vnet/classify/flow_classify.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>
43 #include <vnet/ethernet/ethernet_types_api.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
70 static void *vl_api_create_loopback_t_print
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
81 static void *vl_api_create_loopback_instance_t_print
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
93 static void *vl_api_delete_loopback_t_print
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
104 static void *vl_api_sw_interface_set_flags_t_print
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
112   if ((mp->flags) & IF_STATUS_API_FLAG_ADMIN_UP)
113     s = format (s, "admin-up ");
114   else
115     s = format (s, "admin-down ");
116
117   FINISH;
118 }
119
120 __clib_unused
121   static void *vl_api_sw_interface_set_rx_placement_t_print
122   (vl_api_sw_interface_set_rx_placement_t * mp, void *handle)
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
138 static void *vl_api_sw_interface_rx_placement_dump_t_print
139   (vl_api_sw_interface_rx_placement_dump_t * mp, void *handle)
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
152 static void *vl_api_sw_interface_event_t_print
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
160   if ((mp->flags) & IF_STATUS_API_FLAG_ADMIN_UP)
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
177 static void *vl_api_sw_interface_add_del_address_t_print
178   (vl_api_sw_interface_add_del_address_t * mp, void *handle)
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
193 static void *vl_api_sw_interface_set_table_t_print
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
211 static void *vl_api_sw_interface_set_mpls_enable_t_print
212   (vl_api_sw_interface_set_mpls_enable_t * mp, void *handle)
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
226 static void *vl_api_sw_interface_set_vpath_t_print
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
243 static void *vl_api_sw_interface_set_vxlan_bypass_t_print
244   (vl_api_sw_interface_set_vxlan_bypass_t * mp, void *handle)
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
263 static void *vl_api_sw_interface_set_l2_xconnect_t_print
264   (vl_api_sw_interface_set_l2_xconnect_t * mp, void *handle)
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
282 static void *vl_api_sw_interface_set_l2_bridge_t_print
283   (vl_api_sw_interface_set_l2_bridge_t * mp, void *handle)
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
306 static void *vl_api_bridge_domain_add_del_t_print
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
329 static void *vl_api_bridge_domain_set_mac_age_t_print
330   (vl_api_bridge_domain_set_mac_age_t * mp, void *handle)
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
343 static void *vl_api_bridge_domain_dump_t_print
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
357 static void *vl_api_l2fib_flush_all_t_print
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
368 static void *vl_api_l2fib_flush_bd_t_print
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
380 static void *vl_api_l2fib_flush_int_t_print
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 *
423 vl_api_l2_flags_t_print (vl_api_l2_flags_t * mp, void *handle)
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
476 static void *vl_api_bd_ip_mac_add_del_t_print
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
492 static void *vl_api_bd_ip_mac_flush_t_print
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 ",
526                 format_ethernet_address, mp->mac_address);
527   if (memcmp (mp->host_mac_addr, null_mac, 6))
528     s = format (s, "host-mac-addr %U ",
529                 format_ethernet_address, mp->host_mac_addr);
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 ");
560   if ((mp->tap_flags) & TAP_API_FLAG_CSUM_OFFLOAD)
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 ");
568   if ((mp->tap_flags) & TAP_API_FLAG_GRO_COALESCE)
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
588 static void *vl_api_sw_interface_tap_v2_dump_t_print
589   (vl_api_sw_interface_tap_v2_dump_t * mp, void *handle)
590 {
591   u8 *s;
592
593   s = format (0, "SCRIPT: sw_interface_tap_v2_dump ");
594
595   FINISH;
596 }
597
598 __clib_unused
599   static void *vl_api_virtio_pci_create_t_print
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 ",
611                 format_ethernet_address, mp->mac_address);
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
622   static void *vl_api_virtio_pci_create_v2_t_print
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 ",
634                 format_ethernet_address, mp->mac_address);
635   if (mp->features)
636     s = format (s, "features 0x%llx ", clib_net_to_host_u64 (mp->features));
637   if (mp->virtio_flags & VIRTIO_API_FLAG_GSO)
638     s = format (s, "gso-enabled ");
639   if (mp->virtio_flags & VIRTIO_API_FLAG_CSUM_OFFLOAD)
640     s = format (s, "checksum_offload_enabled ");
641   if ((mp->virtio_flags) & VIRTIO_API_FLAG_GRO_COALESCE)
642     s = format (s, "gro-coalesce-enabled ");
643   if ((mp->virtio_flags) & VIRTIO_API_FLAG_PACKED)
644     s = format (s, "packed ");
645   if ((mp->virtio_flags) & VIRTIO_API_FLAG_IN_ORDER)
646     s = format (s, "in-order ");
647   if ((mp->virtio_flags) & VIRTIO_API_FLAG_BUFFERING)
648     s = format (s, "buffering ");
649   FINISH;
650 }
651
652 __clib_unused
653   static void *vl_api_virtio_pci_delete_t_print
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
665   static void *vl_api_sw_interface_virtio_pci_dump_t_print
666   (vl_api_sw_interface_virtio_pci_dump_t * mp, void *handle)
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 ",
686                 format_ethernet_address, mp->mac_address);
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 ",
709                 format_ethernet_address, mp->mac_address);
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
734 static void *vl_api_bond_add_member_t_print
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
750 static void *vl_api_sw_interface_set_bond_weight_t_print
751   (vl_api_sw_interface_set_bond_weight_t * mp, void *handle)
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
762 static void *vl_api_bond_detach_member_t_print
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
773 static void *vl_api_sw_bond_interface_dump_t_print
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
785 static void *vl_api_sw_member_interface_dump_t_print
786   (vl_api_sw_member_interface_dump_t * mp, void *handle)
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
796 static void *vl_api_ip_route_add_del_t_print
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
813 static void *vl_api_mpls_route_add_del_t_print
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
844 static void *vl_api_ip_table_add_del_t_print
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
862 static void *vl_api_mpls_table_add_del_t_print
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
877 static void *vl_api_mpls_tunnel_add_del_t_print
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
904 static void *vl_api_sr_mpls_policy_add_t_print
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
929 static void *vl_api_sr_mpls_policy_del_t_print
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
941 static void *vl_api_sw_interface_set_unnumbered_t_print
942   (vl_api_sw_interface_set_unnumbered_t * mp, void *handle)
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
958 static void *vl_api_create_vlan_subif_t_print
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);
1002   foreach_create_subif_flag;
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 *
1020 vl_api_ip_table_replace_begin_t_print (vl_api_ip_table_replace_begin_t * mp,
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 *
1034 vl_api_ip_table_flush_t_print (vl_api_ip_table_flush_t * mp, void *handle)
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 *
1047 vl_api_ip_table_replace_end_t_print (vl_api_ip_table_replace_end_t * mp,
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
1060 static void *vl_api_set_ip_flow_hash_t_print
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
1094 static void *vl_api_l2_patch_add_del_t_print
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
1111 static void *vl_api_sr_localsid_add_del_t_print
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,
1132                 format_vnet_sw_if_index_name, vnm, (mp->sw_if_index),
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,
1142                 format_vnet_sw_if_index_name, vnm, (mp->sw_if_index),
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,
1151                 format_vnet_sw_if_index_name, vnm, (mp->sw_if_index),
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,
1160                 format_vnet_sw_if_index_name, vnm, (mp->sw_if_index));
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
1191 static void *vl_api_sr_steering_add_del_t_print
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
1320 static void *vl_api_classify_add_del_table_t_print
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
1353 static void *vl_api_classify_add_del_session_t_print
1354   (vl_api_classify_add_del_session_t * mp, void *handle)
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
1387 static void *vl_api_classify_set_interface_ip_table_t_print
1388   (vl_api_classify_set_interface_ip_table_t * mp, void *handle)
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
1403 static void *vl_api_classify_set_interface_l2_tables_t_print
1404   (vl_api_classify_set_interface_l2_tables_t * mp, void *handle)
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
1431 static void *vl_api_vxlan_add_del_tunnel_t_print
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
1467 static void *vl_api_vxlan_offload_rx_t_print
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
1481 static void *vl_api_vxlan_tunnel_dump_t_print
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
1493 static void *vl_api_vxlan_gbp_tunnel_add_del_t_print
1494   (vl_api_vxlan_gbp_tunnel_add_del_t * mp, void *handle)
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
1515 static void *vl_api_vxlan_gbp_tunnel_dump_t_print
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
1527 static void *vl_api_sw_interface_set_vxlan_gbp_bypass_t_print
1528   (vl_api_sw_interface_set_vxlan_gbp_bypass_t * mp, void *handle)
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
1541 static void *vl_api_l2_fib_clear_table_t_print
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
1551 static void *vl_api_l2_interface_efp_filter_t_print
1552   (vl_api_l2_interface_efp_filter_t * mp, void *handle)
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
1567 static void *vl_api_l2_interface_vlan_tag_rewrite_t_print
1568   (vl_api_l2_interface_vlan_tag_rewrite_t * mp, void *handle)
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
1583 static void *vl_api_create_vhost_user_if_t_print
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
1609 static void *vl_api_modify_vhost_user_if_t_print
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
1630 static void *vl_api_delete_vhost_user_if_t_print
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
1641 static void *vl_api_sw_interface_vhost_user_dump_t_print
1642   (vl_api_sw_interface_vhost_user_dump_t * mp, void *handle)
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
1653 static void *vl_api_sw_interface_dump_t_print
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
1672 static void *vl_api_l2_fib_table_dump_t_print
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
1694 static void *vl_api_want_interface_events_t_print
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
1770 static void *vl_api_vxlan_gpe_add_del_tunnel_t_print
1771   (vl_api_vxlan_gpe_add_del_tunnel_t * mp, void *handle)
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
1807 static void *vl_api_vxlan_gpe_tunnel_dump_t_print
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
1819 static void *vl_api_interface_name_renumber_t_print
1820   (vl_api_interface_name_renumber_t * mp, void *handle)
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
1833 static void *vl_api_want_l2_macs_events_t_print
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
1848 static void *vl_api_input_acl_set_interface_t_print
1849   (vl_api_input_acl_set_interface_t * mp, void *handle)
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
1866 static void *vl_api_output_acl_set_interface_t_print
1867   (vl_api_output_acl_set_interface_t * mp, void *handle)
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 *
1897 vl_api_ip_dump_t_print (vl_api_ip_dump_t * mp, void *handle)
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
1907 static void *vl_api_cop_interface_enable_disable_t_print
1908   (vl_api_cop_interface_enable_disable_t * mp, void *handle)
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
1922 static void *vl_api_cop_whitelist_enable_disable_t_print
1923   (vl_api_cop_whitelist_enable_disable_t * mp, void *handle)
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
1940 static void *vl_api_af_packet_create_t_print
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
1955 static void *vl_api_af_packet_delete_t_print
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;
1993           foreach_vnet_dscp
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     {
2029     case SSE2_QOS_ROUND_TO_CLOSEST:
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;
2035     case SSE2_QOS_ROUND_TO_DOWN:
2036       s = format (s, "round_type down ");
2037       break;
2038     default:
2039       break;
2040     }
2041
2042   switch (mp->type)
2043     {
2044     case SSE2_QOS_POLICER_TYPE_1R2C:
2045       s = format (s, "type 1r2c ");
2046       break;
2047     case SSE2_QOS_POLICER_TYPE_1R3C_RFC_2697:
2048       s = format (s, "type 1r3c ");
2049       break;
2050     case SSE2_QOS_POLICER_TYPE_2R3C_RFC_2698:
2051       s = format (s, "type 2r3c-2698 ");
2052       break;
2053     case SSE2_QOS_POLICER_TYPE_2R3C_RFC_4115:
2054       s = format (s, "type 2r3c-4115 ");
2055       break;
2056     case SSE2_QOS_POLICER_TYPE_2R3C_RFC_MEF5CF1:
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
2090 static void *vl_api_policer_classify_set_interface_t_print
2091   (vl_api_policer_classify_set_interface_t * mp, void *handle)
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
2109 static void *vl_api_policer_classify_dump_t_print
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     {
2117     case POLICER_CLASSIFY_API_TABLE_IP4:
2118       s = format (s, "type ip4 ");
2119       break;
2120     case POLICER_CLASSIFY_API_TABLE_IP6:
2121       s = format (s, "type ip6 ");
2122       break;
2123     case POLICER_CLASSIFY_API_TABLE_L2:
2124       s = format (s, "type l2 ");
2125       break;
2126     default:
2127       break;
2128     }
2129
2130   FINISH;
2131 }
2132
2133 static void *vl_api_sw_interface_clear_stats_t_print
2134   (vl_api_sw_interface_clear_stats_t * mp, void *handle)
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
2145 static void *vl_api_mpls_tunnel_dump_t_print
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
2176 static void *vl_api_classify_table_ids_t_print
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
2186 static void *vl_api_classify_table_by_interface_t_print
2187   (vl_api_classify_table_by_interface_t * mp, void *handle)
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
2198 static void *vl_api_classify_table_info_t_print
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
2210 static void *vl_api_classify_session_dump_t_print
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
2222 static void *vl_api_set_ipfix_exporter_t_print
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
2242 static void *vl_api_ipfix_exporter_dump_t_print
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
2252 static void *vl_api_set_ipfix_classify_stream_t_print
2253   (vl_api_set_ipfix_classify_stream_t * mp, void *handle)
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
2265 static void *vl_api_ipfix_classify_stream_dump_t_print
2266   (vl_api_ipfix_classify_stream_dump_t * mp, void *handle)
2267 {
2268   u8 *s;
2269
2270   s = format (0, "SCRIPT: ipfix_classify_stream_dump ");
2271
2272   FINISH;
2273 }
2274
2275 static void *vl_api_ipfix_classify_table_add_del_t_print
2276   (vl_api_ipfix_classify_table_add_del_t * mp, void *handle)
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
2289 static void *vl_api_ipfix_classify_table_dump_t_print
2290   (vl_api_ipfix_classify_table_dump_t * mp, void *handle)
2291 {
2292   u8 *s;
2293
2294   s = format (0, "SCRIPT: ipfix_classify_table_dump ");
2295
2296   FINISH;
2297 }
2298
2299 static void *vl_api_sw_interface_span_enable_disable_t_print
2300   (vl_api_sw_interface_span_enable_disable_t * mp, void *handle)
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 *
2332 vl_api_sw_interface_span_dump_t_print (vl_api_sw_interface_span_dump_t * mp,
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
2357 static void *vl_api_pg_create_interface_t_print
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
2386 static void *vl_api_pg_enable_disable_t_print
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",
2395               vl_api_from_api_to_new_c_string (&mp->stream_name));
2396   if (!mp->is_enabled)
2397     s = format (s, "disable");
2398
2399   FINISH;
2400 }
2401
2402 static void *vl_api_pg_interface_enable_disable_coalesce_t_print
2403   (vl_api_pg_interface_enable_disable_coalesce_t * mp, void *handle)
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
2417 static void *vl_api_ip_source_and_port_range_check_add_del_t_print
2418   (vl_api_ip_source_and_port_range_check_add_del_t * mp, void *handle)
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
2439 static void *vl_api_ip_source_and_port_range_check_interface_add_del_t_print
2440   (vl_api_ip_source_and_port_range_check_interface_add_del_t * mp,
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
2467 static void *vl_api_ipsec_tunnel_if_add_del_t_print
2468   (vl_api_ipsec_tunnel_if_add_del_t * mp, void *handle)
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,
2492               mp->local_crypto_key, mp->local_crypto_key_len, 0);
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,
2495               mp->remote_crypto_key, mp->remote_crypto_key_len, 0);
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,
2501               mp->remote_integ_key, mp->remote_integ_key_len, 0);
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
2549 static void *vl_api_ipsec_spd_entry_add_del_t_print
2550   (vl_api_ipsec_spd_entry_add_del_t * mp, void *handle)
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",
2575               format_vl_api_address,
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",
2580               format_vl_api_address,
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
2593 static void *vl_api_ipsec_interface_add_del_spd_t_print
2594   (vl_api_ipsec_interface_add_del_spd_t * mp, void *handle)
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
2604 static void *vl_api_ipsec_spd_add_del_t_print
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
2614 static void *vl_api_ipsec_sad_entry_add_del_t_print
2615   (vl_api_ipsec_sad_entry_add_del_t * mp, void *handle)
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",
2655               format_vl_api_address,
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
2663 static void *vl_api_l2_interface_pbb_tag_rewrite_t_print
2664   (vl_api_l2_interface_pbb_tag_rewrite_t * mp, void *handle)
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
2685 static void *vl_api_flow_classify_set_interface_t_print
2686   (vl_api_flow_classify_set_interface_t * mp, void *handle)
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 *
2703 vl_api_set_punt_t_print (vl_api_set_punt_t * mp, void *handle)
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
2730 static void *vl_api_flow_classify_dump_t_print
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     {
2738     case FLOW_CLASSIFY_API_TABLE_IP4:
2739       s = format (s, "type ip4 ");
2740       break;
2741     case FLOW_CLASSIFY_API_TABLE_IP6:
2742       s = format (s, "type ip6 ");
2743       break;
2744     default:
2745       break;
2746     }
2747
2748   FINISH;
2749 }
2750
2751 static void *vl_api_get_first_msg_id_t_print
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
2797 static void *vl_api_feature_enable_disable_t_print
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
2812 static void *vl_api_feature_gso_enable_disable_t_print
2813   (vl_api_feature_gso_enable_disable_t * mp, void *handle)
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
2827 static void *vl_api_sw_interface_tag_add_del_t_print
2828   (vl_api_sw_interface_tag_add_del_t * mp, void *handle)
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
2842 static void *vl_api_hw_interface_set_mtu_t_print
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
2854 static void *vl_api_p2p_ethernet_add_t_print
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
2866 static void *vl_api_p2p_ethernet_del_t_print
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
2878 static void *vl_api_tcp_configure_src_addresses_t_print
2879   (vl_api_tcp_configure_src_addresses_t * mp, void *handle)
2880 {
2881   u8 *s;
2882
2883   s = format (0, "SCRIPT: tcp_configure_src_addresses ");
2884   s = format (s, "%U - %U ",
2885               format_vl_api_address, &mp->first_address,
2886               format_vl_api_address, &mp->last_address);
2887
2888   if (mp->vrf_id)
2889     s = format (s, "vrf %d ", (mp->vrf_id));
2890
2891   FINISH;
2892 }
2893
2894 static void *vl_api_app_namespace_add_del_t_print
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",
2902               vl_api_from_api_to_new_c_string (&mp->namespace_id),
2903               mp->secret, (mp->sw_if_index), (mp->ip4_fib_id),
2904               (mp->ip6_fib_id));
2905   FINISH;
2906 }
2907
2908 static void *vl_api_session_rule_add_del_t_print
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
2935   static void *vl_api_ip_container_proxy_add_del_t_print
2936   (vl_api_ip_container_proxy_add_del_t * mp, void *handle)
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",
2941               mp->is_add, format_vl_api_prefix, mp->sw_if_index);
2942
2943   FINISH;
2944 }
2945
2946 static void *vl_api_qos_record_enable_disable_t_print
2947   (vl_api_qos_record_enable_disable_t * mp, void *handle)
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 }
2971 foreach_no_print_function;
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
3125 vl_msg_api_custom_dump_configure (api_main_t * am)
3126 {
3127 #define _(n,f) am->msg_print_handlers[VL_API_##n]       \
3128     = (void *) vl_api_##f##_t_print;
3129   foreach_custom_print_function;
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  */