VPP-1506: dump local punts and registered punt sockets
[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/ip_neighbor.h>
23 #include <vnet/unix/tuntap.h>
24 #include <vnet/mpls/mpls.h>
25 #include <vnet/dhcp/dhcp_proxy.h>
26 #include <vnet/l2tp/l2tp.h>
27 #include <vnet/l2/l2_input.h>
28 #include <vnet/srv6/sr.h>
29 #include <vnet/srmpls/sr_mpls.h>
30 #include <vnet/gre/gre.h>
31 #include <vnet/vxlan-gpe/vxlan_gpe.h>
32 #include <vnet/geneve/geneve.h>
33 #include <vnet/classify/policer_classify.h>
34 #include <vnet/policer/xlate.h>
35 #include <vnet/policer/policer.h>
36 #include <vnet/classify/flow_classify.h>
37 #include <vlib/vlib.h>
38 #include <vlib/unix/unix.h>
39 #include <vlibapi/api.h>
40 #include <vlibmemory/api.h>
41 #include <vnet/lisp-cp/lisp_types.h>
42 #include <vnet/qos/qos_types.h>
43 #include <vpp/oam/oam.h>
44
45 #include <vnet/ethernet/ethernet.h>
46 #include <vnet/l2/l2_vtr.h>
47
48 #include <vpp/api/vpe_msg_enum.h>
49 #include <vpp/api/types.h>
50
51 #include <vnet/bonding/node.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 ", ntohl (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 ", ntohl (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 ", ntohl (mp->sw_if_index));
111
112   if (mp->admin_up_down)
113     s = format (s, "admin-up ");
114   else
115     s = format (s, "admin-down ");
116
117   FINISH;
118 }
119
120 static void *vl_api_sw_interface_set_rx_placement_t_print
121   (vl_api_sw_interface_set_rx_placement_t * mp, void *handle)
122 {
123   u8 *s;
124   s = format (0, "SCRIPT: sw_interface_set_rx_placement ");
125
126   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
127
128   s = format (s, "queue %d ", ntohl (mp->queue_id));
129   if (mp->is_main)
130     s = format (s, "main ");
131   else
132     s = format (s, "worker %d ", ntohl (mp->worker_id));
133
134   FINISH;
135 }
136
137 static void *vl_api_sw_interface_rx_placement_dump_t_print
138   (vl_api_sw_interface_rx_placement_dump_t * mp, void *handle)
139 {
140   u8 *s;
141   u32 sw_if_index = ntohl (mp->sw_if_index);
142
143   s = format (0, "SCRIPT: sw_interface_rx_placement_dump ");
144
145   if (sw_if_index != ~0)
146     s = format (s, "sw_if_index %d ", sw_if_index);
147
148   FINISH;
149 }
150
151 static void *vl_api_sw_interface_event_t_print
152   (vl_api_sw_interface_event_t * mp, void *handle)
153 {
154   u8 *s;
155   s = format (0, "SCRIPT: sw_interface_event ");
156
157   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
158
159   if (mp->admin_up_down)
160     s = format (s, "admin-up ");
161   else
162     s = format (s, "admin-down ");
163
164   if (mp->link_up_down)
165     s = format (s, "link-up");
166   else
167     s = format (s, "link-down");
168
169   if (mp->deleted)
170     s = format (s, " deleted");
171
172   FINISH;
173 }
174
175 static void *vl_api_sw_interface_add_del_address_t_print
176   (vl_api_sw_interface_add_del_address_t * mp, void *handle)
177 {
178   u8 *s;
179
180   s = format (0, "SCRIPT: sw_interface_add_del_address ");
181
182   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
183
184   if (mp->is_ipv6)
185     s = format (s, "%U/%d ", format_ip6_address,
186                 (ip6_address_t *) mp->address, mp->address_length);
187   else
188     s = format (s, "%U/%d ", format_ip4_address,
189                 (ip4_address_t *) mp->address, mp->address_length);
190
191   if (mp->is_add == 0)
192     s = format (s, "del ");
193   if (mp->del_all)
194     s = format (s, "del-all ");
195
196   FINISH;
197 }
198
199 static void *vl_api_sw_interface_set_table_t_print
200   (vl_api_sw_interface_set_table_t * mp, void *handle)
201 {
202   u8 *s;
203
204   s = format (0, "SCRIPT: sw_interface_set_table ");
205
206   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
207
208   if (mp->vrf_id)
209     s = format (s, "vrf %d ", ntohl (mp->vrf_id));
210
211   if (mp->is_ipv6)
212     s = format (s, "ipv6 ");
213
214   FINISH;
215 }
216
217 static void *vl_api_sw_interface_set_mpls_enable_t_print
218   (vl_api_sw_interface_set_mpls_enable_t * mp, void *handle)
219 {
220   u8 *s;
221
222   s = format (0, "SCRIPT: sw_interface_set_mpls_enable ");
223
224   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
225
226   if (mp->enable == 0)
227     s = format (s, "disable");
228
229   FINISH;
230 }
231
232 static void *vl_api_sw_interface_set_vpath_t_print
233   (vl_api_sw_interface_set_vpath_t * mp, void *handle)
234 {
235   u8 *s;
236
237   s = format (0, "SCRIPT: sw_interface_set_vpath ");
238
239   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
240
241   if (mp->enable)
242     s = format (s, "enable ");
243   else
244     s = format (s, "disable ");
245
246   FINISH;
247 }
248
249 static void *vl_api_sw_interface_set_vxlan_bypass_t_print
250   (vl_api_sw_interface_set_vxlan_bypass_t * mp, void *handle)
251 {
252   u8 *s;
253
254   s = format (0, "SCRIPT: sw_interface_set_vxlan_bypass ");
255
256   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
257
258   if (mp->is_ipv6)
259     s = format (s, "ip6 ");
260
261   if (mp->enable)
262     s = format (s, "enable ");
263   else
264     s = format (s, "disable ");
265
266   FINISH;
267 }
268
269 static void *vl_api_sw_interface_set_geneve_bypass_t_print
270   (vl_api_sw_interface_set_geneve_bypass_t * mp, void *handle)
271 {
272   u8 *s;
273
274   s = format (0, "SCRIPT: sw_interface_set_geneve_bypass ");
275
276   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
277
278   if (mp->is_ipv6)
279     s = format (s, "ip6 ");
280
281   if (mp->enable)
282     s = format (s, "enable ");
283   else
284     s = format (s, "disable ");
285
286   FINISH;
287 }
288
289 static void *vl_api_sw_interface_set_l2_xconnect_t_print
290   (vl_api_sw_interface_set_l2_xconnect_t * mp, void *handle)
291 {
292   u8 *s;
293
294   s = format (0, "SCRIPT: sw_interface_set_l2_xconnect ");
295
296   s = format (s, "sw_if_index %d ", ntohl (mp->rx_sw_if_index));
297
298   if (mp->enable)
299     {
300       s = format (s, "tx_sw_if_index %d ", ntohl (mp->tx_sw_if_index));
301     }
302   else
303     s = format (s, "delete ");
304
305   FINISH;
306 }
307
308 static void *vl_api_sw_interface_set_l2_bridge_t_print
309   (vl_api_sw_interface_set_l2_bridge_t * mp, void *handle)
310 {
311   u8 *s;
312
313   s = format (0, "SCRIPT: sw_interface_set_l2_bridge ");
314
315   s = format (s, "sw_if_index %d ", ntohl (mp->rx_sw_if_index));
316
317   if (mp->enable)
318     {
319       s = format (s, "bd_id %d shg %d ", ntohl (mp->bd_id), mp->shg);
320       if (L2_API_PORT_TYPE_BVI == ntohl (mp->port_type))
321         s = format (s, "bvi ");
322       if (L2_API_PORT_TYPE_UU_FWD == ntohl (mp->port_type))
323         s = format (s, "uu-fwd ");
324       s = format (s, "enable");
325     }
326   else
327     s = format (s, "disable ");
328
329   FINISH;
330 }
331
332 static void *vl_api_bridge_domain_add_del_t_print
333   (vl_api_bridge_domain_add_del_t * mp, void *handle)
334 {
335   u8 *s;
336
337   s = format (0, "SCRIPT: bridge_domain_add_del ");
338
339   s = format (s, "bd_id %d ", ntohl (mp->bd_id));
340
341   if (mp->is_add)
342     {
343       if (mp->bd_tag[0])
344         s = format (s, "bd_tag %s ", mp->bd_tag);
345       s = format (s, "flood %d uu-flood %d ", mp->flood, mp->uu_flood);
346       s = format (s, "forward %d learn %d ", mp->forward, mp->learn);
347       s = format (s, "arp-term %d mac-age %d", mp->arp_term, mp->mac_age);
348     }
349   else
350     s = format (s, "del ");
351
352   FINISH;
353 }
354
355 static void *vl_api_bridge_domain_set_mac_age_t_print
356   (vl_api_bridge_domain_set_mac_age_t * mp, void *handle)
357 {
358   u8 *s;
359
360   s = format (0, "SCRIPT: bridge_domain_set_mac_age ");
361
362   s = format (s, "bd_id %d ", ntohl (mp->bd_id));
363
364   s = format (s, "mac-age %d", mp->mac_age);
365
366   FINISH;
367 }
368
369 static void *vl_api_bridge_domain_dump_t_print
370   (vl_api_bridge_domain_dump_t * mp, void *handle)
371 {
372   u8 *s;
373   u32 bd_id = ntohl (mp->bd_id);
374
375   s = format (0, "SCRIPT: bridge_domain_dump ");
376
377   if (bd_id != ~0)
378     s = format (s, "bd_id %d ", bd_id);
379
380   FINISH;
381 }
382
383 static void *vl_api_l2fib_flush_all_t_print
384   (vl_api_l2fib_flush_all_t * mp, void *handle)
385 {
386   u8 *s;
387
388   s = format (0, "SCRIPT: l2fib_flush_all ");
389
390   FINISH;
391 }
392
393
394 static void *vl_api_l2fib_flush_bd_t_print
395   (vl_api_l2fib_flush_bd_t * mp, void *handle)
396 {
397   u8 *s;
398   u32 bd_id = ntohl (mp->bd_id);
399
400   s = format (0, "SCRIPT: l2fib_flush_bd ");
401   s = format (s, "bd_id %d ", bd_id);
402
403   FINISH;
404 }
405
406 static void *vl_api_l2fib_flush_int_t_print
407   (vl_api_l2fib_flush_int_t * mp, void *handle)
408 {
409   u8 *s;
410   u32 sw_if_index = ntohl (mp->sw_if_index);
411
412   s = format (0, "SCRIPT: l2fib_flush_int ");
413   s = format (s, "sw_if_index %d ", sw_if_index);
414
415   FINISH;
416 }
417
418 static void *vl_api_l2fib_add_del_t_print
419   (vl_api_l2fib_add_del_t * mp, void *handle)
420 {
421   u8 *s;
422
423   s = format (0, "SCRIPT: l2fib_add_del ");
424
425   s = format (s, "mac %U ", format_ethernet_address, mp->mac);
426
427   s = format (s, "bd_id %d ", ntohl (mp->bd_id));
428
429
430   if (mp->is_add)
431     {
432       s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
433       if (mp->static_mac)
434         s = format (s, "%s", "static ");
435       if (mp->filter_mac)
436         s = format (s, "%s", "filter ");
437       if (mp->bvi_mac)
438         s = format (s, "%s", "bvi ");
439     }
440   else
441     {
442       s = format (s, "del ");
443     }
444
445   FINISH;
446 }
447
448 static void *
449 vl_api_l2_flags_t_print (vl_api_l2_flags_t * mp, void *handle)
450 {
451   u8 *s;
452   u32 flags = ntohl (mp->feature_bitmap);
453
454   s = format (0, "SCRIPT: l2_flags ");
455
456   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
457
458   if (flags & L2_LEARN)
459     s = format (s, "learn ");
460   if (flags & L2_FWD)
461     s = format (s, "forward ");
462   if (flags & L2_FLOOD)
463     s = format (s, "flood ");
464   if (flags & L2_UU_FLOOD)
465     s = format (s, "uu-flood ");
466   if (flags & L2_ARP_TERM)
467     s = format (s, "arp-term ");
468
469   if (mp->is_set == 0)
470     s = format (s, "clear ");
471
472   FINISH;
473 }
474
475 static void *vl_api_bridge_flags_t_print
476   (vl_api_bridge_flags_t * mp, void *handle)
477 {
478   u8 *s;
479   u32 flags = ntohl (mp->flags);
480
481   s = format (0, "SCRIPT: bridge_flags ");
482
483   s = format (s, "bd_id %d ", ntohl (mp->bd_id));
484
485   if (flags & BRIDGE_API_FLAG_LEARN)
486     s = format (s, "learn ");
487   if (flags & BRIDGE_API_FLAG_FWD)
488     s = format (s, "forward ");
489   if (flags & BRIDGE_API_FLAG_FLOOD)
490     s = format (s, "flood ");
491   if (flags & BRIDGE_API_FLAG_UU_FLOOD)
492     s = format (s, "uu-flood ");
493   if (flags & BRIDGE_API_FLAG_ARP_TERM)
494     s = format (s, "arp-term ");
495
496   if (mp->is_set == 0)
497     s = format (s, "clear ");
498
499   FINISH;
500 }
501
502 static void *vl_api_bd_ip_mac_add_del_t_print
503   (vl_api_bd_ip_mac_add_del_t * mp, void *handle)
504 {
505   u8 *s;
506
507   s = format (0, "SCRIPT: bd_ip_mac_add_del ");
508   s = format (s, "bd_id %d ", ntohl (mp->bd_id));
509
510   s = format (s, "%U ", format_vl_api_address, &mp->ip);
511   s = format (s, "%U ", format_vl_api_mac_address, &mp->mac);
512   if (mp->is_add == 0)
513     s = format (s, "del ");
514
515   FINISH;
516 }
517
518 static void *vl_api_bd_ip_mac_dump_t_print
519   (vl_api_bd_ip_mac_dump_t * mp, void *handle)
520 {
521   u8 *s;
522
523   s = format (0, "SCRIPT: bd_ip_mac_dump ");
524
525   FINISH;
526 }
527
528 static void *vl_api_tap_connect_t_print
529   (vl_api_tap_connect_t * mp, void *handle)
530 {
531   u8 *s;
532   u8 null_mac[6];
533
534   clib_memset (null_mac, 0, sizeof (null_mac));
535
536   s = format (0, "SCRIPT: tap_connect ");
537   s = format (s, "tapname %s ", mp->tap_name);
538   if (mp->use_random_mac)
539     s = format (s, "random-mac ");
540   if (mp->tag[0])
541     s = format (s, "tag %s ", mp->tag);
542   if (memcmp (mp->mac_address, null_mac, 6))
543     s = format (s, "mac %U ", format_ethernet_address, mp->mac_address);
544   if (mp->ip4_address_set)
545     s = format (s, "address %U/%d ", format_ip4_address, mp->ip4_address,
546                 mp->ip4_mask_width);
547   if (mp->ip6_address_set)
548     s = format (s, "address %U/%d ", format_ip6_address, mp->ip6_address,
549                 mp->ip6_mask_width);
550   FINISH;
551 }
552
553 static void *vl_api_tap_modify_t_print
554   (vl_api_tap_modify_t * mp, void *handle)
555 {
556   u8 *s;
557   u8 null_mac[6];
558
559   clib_memset (null_mac, 0, sizeof (null_mac));
560
561   s = format (0, "SCRIPT: tap_modify ");
562   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
563   s = format (s, "tapname %s ", mp->tap_name);
564   if (mp->use_random_mac)
565     s = format (s, "random-mac ");
566
567   if (memcmp (mp->mac_address, null_mac, 6))
568     s = format (s, "mac %U ", format_ethernet_address, mp->mac_address);
569
570   FINISH;
571 }
572
573 static void *vl_api_tap_delete_t_print
574   (vl_api_tap_delete_t * mp, void *handle)
575 {
576   u8 *s;
577
578   s = format (0, "SCRIPT: tap_delete ");
579   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
580
581   FINISH;
582 }
583
584 static void *vl_api_sw_interface_tap_dump_t_print
585   (vl_api_sw_interface_tap_dump_t * mp, void *handle)
586 {
587   u8 *s;
588
589   s = format (0, "SCRIPT: sw_interface_tap_dump ");
590
591   FINISH;
592 }
593
594 static void *vl_api_tap_create_v2_t_print
595   (vl_api_tap_create_v2_t * mp, void *handle)
596 {
597   u8 *s;
598   u8 null_mac[6];
599
600   clib_memset (null_mac, 0, sizeof (null_mac));
601
602   s = format (0, "SCRIPT: tap_create_v2 ");
603   s = format (s, "id %u ", ntohl (mp->id));
604   if (memcmp (mp->mac_address, null_mac, 6))
605     s = format (s, "mac-address %U ",
606                 format_ethernet_address, mp->mac_address);
607   if (memcmp (mp->host_mac_addr, null_mac, 6))
608     s = format (s, "host-mac-addr %U ",
609                 format_ethernet_address, mp->host_mac_addr);
610   if (mp->host_if_name_set)
611     s = format (s, "host-if-name %s ", mp->host_if_name);
612   if (mp->host_namespace_set)
613     s = format (s, "host-ns %s ", mp->host_namespace);
614   if (mp->host_bridge_set)
615     s = format (s, "host-bridge %s ", mp->host_bridge);
616   if (mp->host_ip4_addr_set)
617     s = format (s, "host-ip4-addr %U/%d ", format_ip4_address,
618                 mp->host_ip4_addr, mp->host_ip4_prefix_len);
619   if (mp->host_ip6_addr_set)
620     s = format (s, "host-ip6-addr %U/%d ", format_ip6_address,
621                 mp->host_ip6_addr, mp->host_ip6_prefix_len);
622   if (mp->host_ip4_gw_set)
623     s = format (s, "host-ip4-gw %U ", format_ip4_address, mp->host_ip4_addr);
624   if (mp->host_ip6_gw_set)
625     s = format (s, "host-ip6-gw %U ", format_ip6_address, mp->host_ip6_addr);
626   if (mp->tx_ring_sz)
627     s = format (s, "tx-ring-size %u ", ntohs (mp->tx_ring_sz));
628   if (mp->rx_ring_sz)
629     s = format (s, "rx-ring-size %u ", ntohs (mp->rx_ring_sz));
630   FINISH;
631 }
632
633 static void *vl_api_tap_delete_v2_t_print
634   (vl_api_tap_delete_v2_t * mp, void *handle)
635 {
636   u8 *s;
637
638   s = format (0, "SCRIPT: tap_delete_v2 ");
639   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
640
641   FINISH;
642 }
643
644 static void *vl_api_sw_interface_tap_v2_dump_t_print
645   (vl_api_sw_interface_tap_v2_dump_t * mp, void *handle)
646 {
647   u8 *s;
648
649   s = format (0, "SCRIPT: sw_interface_tap_v2_dump ");
650
651   FINISH;
652 }
653
654 static void *vl_api_bond_create_t_print
655   (vl_api_bond_create_t * mp, void *handle)
656 {
657   u8 *s;
658   u8 null_mac[6];
659
660   clib_memset (null_mac, 0, sizeof (null_mac));
661
662   s = format (0, "SCRIPT: bond_create ");
663   if (memcmp (mp->mac_address, null_mac, 6))
664     s = format (s, "mac-address %U ",
665                 format_ethernet_address, mp->mac_address);
666   if (mp->mode)
667     s = format (s, "mode %U", format_bond_mode, mp->mode);
668   if (mp->lb)
669     s = format (s, "lb %U", format_bond_load_balance, mp->lb);
670   FINISH;
671 }
672
673 static void *vl_api_bond_delete_t_print
674   (vl_api_bond_delete_t * mp, void *handle)
675 {
676   u8 *s;
677
678   s = format (0, "SCRIPT: bond_delete ");
679   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
680
681   FINISH;
682 }
683
684 static void *vl_api_bond_enslave_t_print
685   (vl_api_bond_enslave_t * mp, void *handle)
686 {
687   u8 *s;
688
689   s = format (0, "SCRIPT: bond_enslave ");
690   s = format (s, "bond_sw_if_index %u ", mp->bond_sw_if_index);
691   s = format (s, "sw_if_index %u ", mp->sw_if_index);
692   if (mp->is_passive)
693     s = format (s, "passive ");
694   if (mp->is_long_timeout)
695     s = format (s, "long-timeout ");
696
697   FINISH;
698 }
699
700 static void *vl_api_bond_detach_slave_t_print
701   (vl_api_bond_detach_slave_t * mp, void *handle)
702 {
703   u8 *s;
704
705   s = format (0, "SCRIPT: bond_detach_slave ");
706   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
707
708   FINISH;
709 }
710
711 static void *vl_api_sw_interface_bond_dump_t_print
712   (vl_api_sw_interface_bond_dump_t * mp, void *handle)
713 {
714   u8 *s;
715
716   s = format (0, "SCRIPT: sw_interface_bond_dump ");
717
718   FINISH;
719 }
720
721 static void *vl_api_sw_interface_slave_dump_t_print
722   (vl_api_sw_interface_slave_dump_t * mp, void *handle)
723 {
724   u8 *s;
725
726   s = format (0, "SCRIPT: sw_interface_slave_dump ");
727   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
728
729   FINISH;
730 }
731
732 static void *vl_api_ip_add_del_route_t_print
733   (vl_api_ip_add_del_route_t * mp, void *handle)
734 {
735   u8 *s;
736
737   s = format (0, "SCRIPT: ip_add_del_route ");
738   if (mp->is_add == 0)
739     s = format (s, "del ");
740
741   if (mp->is_ipv6)
742     s = format (s, "%U/%d ", format_ip6_address, mp->dst_address,
743                 mp->dst_address_length);
744   else
745     s = format (s, "%U/%d ", format_ip4_address, mp->dst_address,
746                 mp->dst_address_length);
747
748   if (mp->table_id != 0)
749     s = format (s, "vrf %d ", ntohl (mp->table_id));
750
751   if (mp->is_local)
752     s = format (s, "local ");
753   else if (mp->is_drop)
754     s = format (s, "drop ");
755   else if (mp->is_classify)
756     s = format (s, "classify %d", ntohl (mp->classify_table_index));
757   else if (mp->next_hop_via_label != htonl (MPLS_LABEL_INVALID))
758     s = format (s, "via via_label %d ", ntohl (mp->next_hop_via_label));
759   else
760     {
761       if (mp->is_ipv6)
762         s = format (s, "via %U ", format_ip6_address, mp->next_hop_address);
763       else
764         s = format (s, "via %U ", format_ip4_address, mp->next_hop_address);
765       if (mp->next_hop_sw_if_index != ~0)
766         s = format (s, "sw_if_index %d ", ntohl (mp->next_hop_sw_if_index));
767
768     }
769
770   if (mp->next_hop_weight != 1)
771     s = format (s, "weight %d ", (u32) mp->next_hop_weight);
772
773   if (mp->is_multipath)
774     s = format (s, "multipath ");
775
776   if (mp->next_hop_table_id)
777     s = format (s, "lookup-in-vrf %d ", ntohl (mp->next_hop_table_id));
778
779   if (mp->next_hop_n_out_labels)
780     {
781       u8 i;
782       for (i = 0; i < mp->next_hop_n_out_labels; i++)
783         {
784           s = format (s, "out-label %d ",
785                       ntohl (mp->next_hop_out_label_stack[i].label));
786         }
787     }
788
789   FINISH;
790 }
791
792 static void *vl_api_mpls_route_add_del_t_print
793   (vl_api_mpls_route_add_del_t * mp, void *handle)
794 {
795   u8 *s;
796
797   s = format (0, "SCRIPT: mpls_route_add_del ");
798
799   if (mp->mr_is_add)
800     s = format (s, "add ");
801   else
802     s = format (s, "del ");
803
804   s = format (s, "%d ", ntohl (mp->mr_label));
805
806   if (mp->mr_eos)
807     s = format (s, "eos ");
808   else
809     s = format (s, "non-eos ");
810
811
812   if (mp->mr_next_hop_proto == DPO_PROTO_IP4)
813     {
814       ip4_address_t ip4_null = {.as_u32 = 0, };
815       if (memcmp (mp->mr_next_hop, &ip4_null, sizeof (ip4_null)))
816         s = format (s, "via %U ", format_ip4_address, mp->mr_next_hop);
817       else
818         s = format (s, "via lookup-in-ip4-table %d ",
819                     ntohl (mp->mr_next_hop_table_id));
820     }
821   else if (mp->mr_next_hop_proto == DPO_PROTO_IP6)
822     {
823       ip6_address_t ip6_null = { {0}
824       };
825       if (memcmp (mp->mr_next_hop, &ip6_null, sizeof (ip6_null)))
826         s = format (s, "via %U ", format_ip6_address, mp->mr_next_hop);
827       else
828         s = format (s, "via lookup-in-ip6-table %d ",
829                     ntohl (mp->mr_next_hop_table_id));
830     }
831   else if (mp->mr_next_hop_proto == DPO_PROTO_ETHERNET)
832     {
833       s = format (s, "via l2-input-on ");
834     }
835   else if (mp->mr_next_hop_proto == DPO_PROTO_MPLS)
836     {
837       if (mp->mr_next_hop_via_label != htonl (MPLS_LABEL_INVALID))
838         s =
839           format (s, "via via-label %d ", ntohl (mp->mr_next_hop_via_label));
840       else
841         s = format (s, "via next-hop-table %d ",
842                     ntohl (mp->mr_next_hop_table_id));
843     }
844   if (mp->mr_next_hop_sw_if_index != ~0)
845     s = format (s, "sw_if_index %d ", ntohl (mp->mr_next_hop_sw_if_index));
846
847   if (mp->mr_next_hop_weight != 1)
848     s = format (s, "weight %d ", (u32) mp->mr_next_hop_weight);
849
850   if (mp->mr_is_multipath)
851     s = format (s, "multipath ");
852
853   if (mp->mr_is_classify)
854     s = format (s, "classify %d", ntohl (mp->mr_classify_table_index));
855
856   if (mp->mr_next_hop_n_out_labels)
857     {
858       u8 i;
859       for (i = 0; i < mp->mr_next_hop_n_out_labels; i++)
860         {
861           s = format (s, "out-label %d ",
862                       ntohl (mp->mr_next_hop_out_label_stack[i].label));
863         }
864     }
865
866   FINISH;
867 }
868
869 static void *vl_api_ip_table_add_del_t_print
870   (vl_api_ip_table_add_del_t * mp, void *handle)
871 {
872   u8 *s;
873
874   s = format (0, "SCRIPT: ip_table_add_del ");
875   if (mp->is_add)
876     s = format (s, "add ");
877   else
878     s = format (s, "del ");
879   if (mp->is_ipv6)
880     s = format (s, "ip6 ");
881   s = format (s, "table %d ", ntohl (mp->table_id));
882
883   FINISH;
884 }
885
886 static void *vl_api_mpls_table_add_del_t_print
887   (vl_api_mpls_table_add_del_t * mp, void *handle)
888 {
889   u8 *s;
890
891   s = format (0, "SCRIPT: mpls_table_add_del ");
892   if (mp->mt_is_add)
893     s = format (s, "add ");
894   else
895     s = format (s, "del ");
896   s = format (s, "table %d ", ntohl (mp->mt_table_id));
897
898   FINISH;
899 }
900
901 static void *vl_api_proxy_arp_add_del_t_print
902   (vl_api_proxy_arp_add_del_t * mp, void *handle)
903 {
904   u8 *s;
905
906   s = format (0, "SCRIPT: proxy_arp_add_del ");
907
908   s = format (s, "%U - %U ",
909               format_ip4_address, mp->proxy.low_address,
910               format_ip4_address, mp->proxy.hi_address);
911
912   if (mp->proxy.vrf_id)
913     s = format (s, "vrf %d ", ntohl (mp->proxy.vrf_id));
914
915   if (mp->is_add == 0)
916     s = format (s, "del ");
917
918   FINISH;
919 }
920
921 static void *vl_api_proxy_arp_intfc_enable_disable_t_print
922   (vl_api_proxy_arp_intfc_enable_disable_t * mp, void *handle)
923 {
924   u8 *s;
925
926   s = format (0, "SCRIPT: proxy_arp_intfc_enable_disable ");
927
928   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
929
930   s = format (s, "enable %d ", mp->enable_disable);
931
932   FINISH;
933 }
934
935 static void *vl_api_mpls_tunnel_add_del_t_print
936   (vl_api_mpls_tunnel_add_del_t * mp, void *handle)
937 {
938   u8 *s;
939
940   s = format (0, "SCRIPT: mpls_tunnel_add_del ");
941
942   if (mp->mt_is_add == 0)
943     s = format (s, "del sw_if_index %d ", ntohl (mp->mt_sw_if_index));
944
945   mpls_label_t label = ntohl (mp->mt_next_hop_via_label);
946   if (label != MPLS_LABEL_INVALID)
947     s = format (s, "via-label %d ", label);
948   else if (mp->mt_next_hop_proto_is_ip4)
949     s = format (s, "via %U ", format_ip4_address, mp->mt_next_hop);
950   else
951     s = format (s, "via %U ", format_ip6_address, mp->mt_next_hop);
952
953   if (mp->mt_next_hop_sw_if_index != ~0)
954     s = format (s, "sw_if_index %d ", ntohl (mp->mt_next_hop_sw_if_index));
955   else if (mp->mt_next_hop_table_id)
956     s = format (s, "next-hop-table %d ", ntohl (mp->mt_next_hop_table_id));
957
958   if (mp->mt_l2_only)
959     s = format (s, "l2-only ");
960
961   if (mp->mt_next_hop_n_out_labels)
962     {
963       u8 i;
964       for (i = 0; i < mp->mt_next_hop_n_out_labels; i++)
965         {
966           s = format (s, "out-label %d ",
967                       ntohl (mp->mt_next_hop_out_label_stack[i].label));
968         }
969     }
970
971   FINISH;
972 }
973
974 static void *vl_api_sr_mpls_policy_add_t_print
975   (vl_api_sr_mpls_policy_add_t * mp, void *handle)
976 {
977   u8 *s;
978
979   s = format (0, "SCRIPT: sr_mpls_policy_add ");
980
981   s = format (s, "bsid %d ", ntohl (mp->bsid));
982
983   if (mp->weight != htonl ((u32) 1))
984     s = format (s, "%d ", ntohl (mp->weight));
985
986   if (mp->type)
987     s = format (s, "spray ");
988
989   if (mp->n_segments)
990     {
991       int i;
992       for (i = 0; i < mp->n_segments; i++)
993         s = format (s, "next %d ", ntohl (mp->segments[i]));
994     }
995
996   FINISH;
997 }
998
999 static void *vl_api_sr_mpls_policy_del_t_print
1000   (vl_api_sr_mpls_policy_del_t * mp, void *handle)
1001 {
1002   u8 *s;
1003
1004   s = format (0, "SCRIPT: sr_mpls_policy_del ");
1005
1006   s = format (s, "bsid %d ", ntohl (mp->bsid));
1007
1008   FINISH;
1009 }
1010
1011 static void *vl_api_sw_interface_set_unnumbered_t_print
1012   (vl_api_sw_interface_set_unnumbered_t * mp, void *handle)
1013 {
1014   u8 *s;
1015
1016   s = format (0, "SCRIPT: sw_interface_set_unnumbered ");
1017
1018   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
1019
1020   s = format (s, "unnum_if_index %d ", ntohl (mp->unnumbered_sw_if_index));
1021
1022   if (mp->is_add == 0)
1023     s = format (s, "del ");
1024
1025   FINISH;
1026 }
1027
1028 static void *vl_api_ip_neighbor_add_del_t_print
1029   (vl_api_ip_neighbor_add_del_t * mp, void *handle)
1030 {
1031   u8 *s;
1032   u8 null_mac[6];
1033
1034   clib_memset (null_mac, 0, sizeof (null_mac));
1035
1036   s = format (0, "SCRIPT: ip_neighbor_add_del ");
1037
1038   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
1039
1040   if (mp->is_static)
1041     s = format (s, "is_static ");
1042
1043   if (mp->is_no_adj_fib)
1044     s = format (s, "is_no_fib_entry ");
1045
1046   if (memcmp (mp->mac_address, null_mac, 6))
1047     s = format (s, "mac %U ", format_ethernet_address, mp->mac_address);
1048
1049   if (mp->is_ipv6)
1050     s =
1051       format (s, "dst %U ", format_ip6_address,
1052               (ip6_address_t *) mp->dst_address);
1053   else
1054     s =
1055       format (s, "dst %U ", format_ip4_address,
1056               (ip4_address_t *) mp->dst_address);
1057
1058   if (mp->is_add == 0)
1059     s = format (s, "del ");
1060
1061   FINISH;
1062 }
1063
1064 static void *vl_api_create_vlan_subif_t_print
1065   (vl_api_create_vlan_subif_t * mp, void *handle)
1066 {
1067   u8 *s;
1068
1069   s = format (0, "SCRIPT: create_vlan_subif ");
1070
1071   if (mp->sw_if_index)
1072     s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
1073
1074   if (mp->vlan_id)
1075     s = format (s, "vlan_id %d ", ntohl (mp->vlan_id));
1076
1077   FINISH;
1078 }
1079
1080 #define foreach_create_subif_bit                \
1081 _(no_tags)                                      \
1082 _(one_tag)                                      \
1083 _(two_tags)                                     \
1084 _(dot1ad)                                       \
1085 _(exact_match)                                  \
1086 _(default_sub)                                  \
1087 _(outer_vlan_id_any)                            \
1088 _(inner_vlan_id_any)
1089
1090 static void *vl_api_create_subif_t_print
1091   (vl_api_create_subif_t * mp, void *handle)
1092 {
1093   u8 *s;
1094
1095   s = format (0, "SCRIPT: create_subif ");
1096
1097   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
1098
1099   s = format (s, "sub_id %d ", ntohl (mp->sub_id));
1100
1101   if (mp->outer_vlan_id)
1102     s = format (s, "outer_vlan_id %d ", ntohs (mp->outer_vlan_id));
1103
1104   if (mp->inner_vlan_id)
1105     s = format (s, "inner_vlan_id %d ", ntohs (mp->inner_vlan_id));
1106
1107 #define _(a) if (mp->a) s = format (s, "%s ", #a);
1108   foreach_create_subif_bit;
1109 #undef _
1110
1111   FINISH;
1112 }
1113
1114 static void *vl_api_delete_subif_t_print
1115   (vl_api_delete_subif_t * mp, void *handle)
1116 {
1117   u8 *s;
1118
1119   s = format (0, "SCRIPT: delete_subif ");
1120   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
1121
1122   FINISH;
1123 }
1124
1125 static void *vl_api_oam_add_del_t_print
1126   (vl_api_oam_add_del_t * mp, void *handle)
1127 {
1128   u8 *s;
1129
1130   s = format (0, "SCRIPT: oam_add_del ");
1131
1132   if (mp->vrf_id)
1133     s = format (s, "vrf %d ", ntohl (mp->vrf_id));
1134
1135   s = format (s, "src %U ", format_ip4_address, mp->src_address);
1136
1137   s = format (s, "dst %U ", format_ip4_address, mp->dst_address);
1138
1139   if (mp->is_add == 0)
1140     s = format (s, "del ");
1141
1142   FINISH;
1143 }
1144
1145 static void *
1146 vl_api_reset_fib_t_print (vl_api_reset_fib_t * mp, void *handle)
1147 {
1148   u8 *s;
1149
1150   s = format (0, "SCRIPT: reset_fib ");
1151
1152   if (mp->vrf_id)
1153     s = format (s, "vrf %d ", ntohl (mp->vrf_id));
1154
1155   if (mp->is_ipv6 != 0)
1156     s = format (s, "ipv6 ");
1157
1158   FINISH;
1159 }
1160
1161 static void *vl_api_dhcp_proxy_config_t_print
1162   (vl_api_dhcp_proxy_config_t * mp, void *handle)
1163 {
1164   u8 *s;
1165
1166   s = format (0, "SCRIPT: dhcp_proxy_config_2 ");
1167
1168   s = format (s, "rx_vrf_id %d ", ntohl (mp->rx_vrf_id));
1169   s = format (s, "server_vrf_id %d ", ntohl (mp->server_vrf_id));
1170
1171   if (mp->is_ipv6)
1172     {
1173       s = format (s, "svr %U ", format_ip6_address,
1174                   (ip6_address_t *) mp->dhcp_server);
1175       s = format (s, "src %U ", format_ip6_address,
1176                   (ip6_address_t *) mp->dhcp_src_address);
1177     }
1178   else
1179     {
1180       s = format (s, "svr %U ", format_ip4_address,
1181                   (ip4_address_t *) mp->dhcp_server);
1182       s = format (s, "src %U ", format_ip4_address,
1183                   (ip4_address_t *) mp->dhcp_src_address);
1184     }
1185   if (mp->is_add == 0)
1186     s = format (s, "del ");
1187
1188   FINISH;
1189 }
1190
1191 static void *vl_api_dhcp_proxy_set_vss_t_print
1192   (vl_api_dhcp_proxy_set_vss_t * mp, void *handle)
1193 {
1194   u8 *s;
1195
1196   s = format (0, "SCRIPT: dhcp_proxy_set_vss ");
1197
1198   s = format (s, "tbl_id %d ", ntohl (mp->tbl_id));
1199
1200   if (mp->vss_type == VSS_TYPE_VPN_ID)
1201     {
1202       s = format (s, "fib_id %d ", ntohl (mp->vpn_index));
1203       s = format (s, "oui %d ", ntohl (mp->oui));
1204     }
1205   else if (mp->vss_type == VSS_TYPE_ASCII)
1206     s = format (s, "vpn_ascii_id %s", mp->vpn_ascii_id);
1207
1208   if (mp->is_ipv6 != 0)
1209     s = format (s, "ipv6 ");
1210
1211   if (mp->is_add == 0)
1212     s = format (s, "del ");
1213
1214   FINISH;
1215 }
1216
1217 static void *vl_api_dhcp_client_config_t_print
1218   (vl_api_dhcp_client_config_t * mp, void *handle)
1219 {
1220   u8 *s;
1221
1222   s = format (0, "SCRIPT: dhcp_client_config ");
1223
1224   s = format (s, "sw_if_index %d ", ntohl (mp->client.sw_if_index));
1225
1226   s = format (s, "hostname %s ", mp->client.hostname);
1227
1228   s = format (s, "want_dhcp_event %d ", mp->client.want_dhcp_event);
1229
1230   s = format (s, "pid %d ", ntohl (mp->client.pid));
1231
1232   if (mp->is_add == 0)
1233     s = format (s, "del ");
1234
1235   FINISH;
1236 }
1237
1238
1239 static void *vl_api_set_ip_flow_hash_t_print
1240   (vl_api_set_ip_flow_hash_t * mp, void *handle)
1241 {
1242   u8 *s;
1243
1244   s = format (0, "SCRIPT: set_ip_flow_hash ");
1245
1246   s = format (s, "vrf_id %d ", ntohl (mp->vrf_id));
1247
1248   if (mp->src)
1249     s = format (s, "src ");
1250
1251   if (mp->dst)
1252     s = format (s, "dst ");
1253
1254   if (mp->sport)
1255     s = format (s, "sport ");
1256
1257   if (mp->dport)
1258     s = format (s, "dport ");
1259
1260   if (mp->proto)
1261     s = format (s, "proto ");
1262
1263   if (mp->reverse)
1264     s = format (s, "reverse ");
1265
1266   if (mp->is_ipv6 != 0)
1267     s = format (s, "ipv6 ");
1268
1269   FINISH;
1270 }
1271
1272 static void *vl_api_sw_interface_ip6nd_ra_prefix_t_print
1273   (vl_api_sw_interface_ip6nd_ra_prefix_t * mp, void *handle)
1274 {
1275   u8 *s;
1276
1277   s = format (0, "SCRIPT: sw_interface_ip6nd_ra_prefix ");
1278
1279   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
1280
1281   s = format (s, "%U/%d ", format_ip6_address, mp->address,
1282               mp->address_length);
1283
1284   s = format (s, "val_life %d ", ntohl (mp->val_lifetime));
1285
1286   s = format (s, "pref_life %d ", ntohl (mp->pref_lifetime));
1287
1288   if (mp->use_default)
1289     s = format (s, "def ");
1290
1291   if (mp->no_advertise)
1292     s = format (s, "noadv ");
1293
1294   if (mp->off_link)
1295     s = format (s, "offl ");
1296
1297   if (mp->no_autoconfig)
1298     s = format (s, "noauto ");
1299
1300   if (mp->no_onlink)
1301     s = format (s, "nolink ");
1302
1303   if (mp->is_no)
1304     s = format (s, "isno ");
1305
1306   FINISH;
1307 }
1308
1309 static void *vl_api_sw_interface_ip6nd_ra_config_t_print
1310   (vl_api_sw_interface_ip6nd_ra_config_t * mp, void *handle)
1311 {
1312   u8 *s;
1313
1314   s = format (0, "SCRIPT: sw_interface_ip6nd_ra_config ");
1315
1316   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
1317
1318   s = format (s, "maxint %d ", ntohl (mp->max_interval));
1319
1320   s = format (s, "minint %d ", ntohl (mp->min_interval));
1321
1322   s = format (s, "life %d ", ntohl (mp->lifetime));
1323
1324   s = format (s, "count %d ", ntohl (mp->initial_count));
1325
1326   s = format (s, "interval %d ", ntohl (mp->initial_interval));
1327
1328   if (mp->suppress)
1329     s = format (s, "suppress ");
1330
1331   if (mp->managed)
1332     s = format (s, "managed ");
1333
1334   if (mp->other)
1335     s = format (s, "other ");
1336
1337   if (mp->ll_option)
1338     s = format (s, "ll ");
1339
1340   if (mp->send_unicast)
1341     s = format (s, "send ");
1342
1343   if (mp->cease)
1344     s = format (s, "cease ");
1345
1346   if (mp->is_no)
1347     s = format (s, "isno ");
1348
1349   if (mp->default_router)
1350     s = format (s, "def ");
1351
1352   FINISH;
1353 }
1354
1355 static void *vl_api_set_arp_neighbor_limit_t_print
1356   (vl_api_set_arp_neighbor_limit_t * mp, void *handle)
1357 {
1358   u8 *s;
1359
1360   s = format (0, "SCRIPT: set_arp_neighbor_limit ");
1361
1362   s = format (s, "arp_nbr_limit %d ", ntohl (mp->arp_neighbor_limit));
1363
1364   if (mp->is_ipv6 != 0)
1365     s = format (s, "ipv6 ");
1366
1367   FINISH;
1368 }
1369
1370 static void *vl_api_l2_patch_add_del_t_print
1371   (vl_api_l2_patch_add_del_t * mp, void *handle)
1372 {
1373   u8 *s;
1374
1375   s = format (0, "SCRIPT: l2_patch_add_del ");
1376
1377   s = format (s, "rx_sw_if_index %d ", ntohl (mp->rx_sw_if_index));
1378
1379   s = format (s, "tx_sw_if_index %d ", ntohl (mp->tx_sw_if_index));
1380
1381   if (mp->is_add == 0)
1382     s = format (s, "del ");
1383
1384   FINISH;
1385 }
1386
1387 static void *vl_api_sr_localsid_add_del_t_print
1388   (vl_api_sr_localsid_add_del_t * mp, void *handle)
1389 {
1390   vnet_main_t *vnm = vnet_get_main ();
1391   u8 *s;
1392
1393   s = format (0, "SCRIPT: sr_localsid_add_del ");
1394
1395   switch (mp->behavior)
1396     {
1397     case SR_BEHAVIOR_END:
1398       s = format (s, "Address: %U\nBehavior: End",
1399                   format_ip6_address, (ip6_address_t *) mp->localsid.addr);
1400       s = format (s, (mp->end_psp ? "End.PSP: True" : "End.PSP: False"));
1401       break;
1402     case SR_BEHAVIOR_X:
1403       s =
1404         format (s,
1405                 "Address: %U\nBehavior: X (Endpoint with Layer-3 cross-connect)"
1406                 "\nIface: %U\nNext hop: %U", format_ip6_address,
1407                 (ip6_address_t *) mp->localsid.addr,
1408                 format_vnet_sw_if_index_name, vnm, ntohl (mp->sw_if_index),
1409                 format_ip6_address, (ip6_address_t *) mp->nh_addr6);
1410       s = format (s, (mp->end_psp ? "End.PSP: True" : "End.PSP: False"));
1411       break;
1412     case SR_BEHAVIOR_DX4:
1413       s =
1414         format (s,
1415                 "Address: %U\nBehavior: DX4 (Endpoint with decapsulation with IPv4 cross-connect)"
1416                 "\nIface: %U\nNext hop: %U", format_ip6_address,
1417                 (ip6_address_t *) mp->localsid.addr,
1418                 format_vnet_sw_if_index_name, vnm, ntohl (mp->sw_if_index),
1419                 format_ip4_address, (ip4_address_t *) mp->nh_addr4);
1420       break;
1421     case SR_BEHAVIOR_DX6:
1422       s =
1423         format (s,
1424                 "Address: %U\nBehavior: DX6 (Endpoint with decapsulation with IPv6 cross-connect)"
1425                 "\nIface: %UNext hop: %U", format_ip6_address,
1426                 (ip6_address_t *) mp->localsid.addr,
1427                 format_vnet_sw_if_index_name, vnm, ntohl (mp->sw_if_index),
1428                 format_ip6_address, (ip6_address_t *) mp->nh_addr6);
1429       break;
1430     case SR_BEHAVIOR_DX2:
1431       s =
1432         format (s,
1433                 "Address: %U\nBehavior: DX2 (Endpoint with decapulation and Layer-2 cross-connect)"
1434                 "\nIface: %U", format_ip6_address,
1435                 (ip6_address_t *) mp->localsid.addr,
1436                 format_vnet_sw_if_index_name, vnm, ntohl (mp->sw_if_index));
1437       break;
1438     case SR_BEHAVIOR_DT6:
1439       s =
1440         format (s,
1441                 "Address: %U\nBehavior: DT6 (Endpoint with decapsulation and specific IPv6 table lookup)"
1442                 "\nTable: %u", format_ip6_address,
1443                 (ip6_address_t *) mp->localsid.addr, ntohl (mp->fib_table));
1444       break;
1445     case SR_BEHAVIOR_DT4:
1446       s =
1447         format (s,
1448                 "Address: %U\nBehavior: DT4 (Endpoint with decapsulation and specific IPv4 table lookup)"
1449                 "\nTable: %u", format_ip6_address,
1450                 (ip6_address_t *) mp->localsid.addr, ntohl (mp->fib_table));
1451       break;
1452     default:
1453       if (mp->behavior >= SR_BEHAVIOR_LAST)
1454         {
1455           s = format (s, "Address: %U\n Behavior: %u",
1456                       format_ip6_address, (ip6_address_t *) mp->localsid.addr,
1457                       mp->behavior);
1458         }
1459       else
1460         //Should never get here...
1461         s = format (s, "Internal error");
1462       break;
1463     }
1464   FINISH;
1465 }
1466
1467 static void *vl_api_sr_steering_add_del_t_print
1468   (vl_api_sr_steering_add_del_t * mp, void *handle)
1469 {
1470   u8 *s;
1471
1472   s = format (0, "SCRIPT: sr_steering_add_del ");
1473
1474   s = format (s, (mp->is_del ? "Del: True" : "Del: False"));
1475
1476   switch (mp->traffic_type)
1477     {
1478     case SR_STEER_L2:
1479       s = format (s, "Traffic type: L2 iface: %u", ntohl (mp->sw_if_index));
1480       break;
1481     case SR_STEER_IPV4:
1482       s = format (s, "Traffic type: IPv4 %U/%u", format_ip4_address,
1483                   (ip4_address_t *) mp->prefix_addr, ntohl (mp->mask_width));
1484       break;
1485     case SR_STEER_IPV6:
1486       s = format (s, "Traffic type: IPv6 %U/%u", format_ip6_address,
1487                   (ip6_address_t *) mp->prefix_addr, ntohl (mp->mask_width));
1488       break;
1489     default:
1490       s = format (s, "Traffic type: Unknown(%u)", mp->traffic_type);
1491       break;
1492     }
1493   s = format (s, "BindingSID: %U", format_ip6_address,
1494               (ip6_address_t *) mp->bsid_addr);
1495
1496   s = format (s, "SR Policy Index: %u", ntohl (mp->sr_policy_index));
1497
1498   s = format (s, "FIB_table: %u", ntohl (mp->table_id));
1499
1500   FINISH;
1501 }
1502
1503 static void *vl_api_sr_policy_add_t_print
1504   (vl_api_sr_policy_add_t * mp, void *handle)
1505 {
1506   u8 *s;
1507
1508   ip6_address_t *segments = 0, *seg;
1509   ip6_address_t *this_address = (ip6_address_t *) mp->sids.sids;
1510
1511   int i;
1512   for (i = 0; i < mp->sids.num_sids; i++)
1513     {
1514       vec_add2 (segments, seg, 1);
1515       clib_memcpy (seg->as_u8, this_address->as_u8, sizeof (*this_address));
1516       this_address++;
1517     }
1518
1519   s = format (0, "SCRIPT: sr_policy_add ");
1520
1521   s = format (s, "BSID: %U", format_ip6_address,
1522               (ip6_address_t *) mp->bsid_addr);
1523
1524   s =
1525     format (s,
1526             (mp->is_encap ? "Behavior: Encapsulation" :
1527              "Behavior: SRH insertion"));
1528
1529   s = format (s, "FIB_table: %u", ntohl (mp->fib_table));
1530
1531   s = format (s, (mp->type ? "Type: Default" : "Type: Spray"));
1532
1533   s = format (s, "SID list weight: %u", ntohl (mp->weight));
1534
1535   s = format (s, "{");
1536   vec_foreach (seg, segments)
1537   {
1538     s = format (s, "%U, ", format_ip6_address, seg);
1539   }
1540   s = format (s, "\b\b } ");
1541
1542   FINISH;
1543 }
1544
1545 static void *vl_api_sr_policy_mod_t_print
1546   (vl_api_sr_policy_mod_t * mp, void *handle)
1547 {
1548   u8 *s;
1549
1550   ip6_address_t *segments = 0, *seg;
1551   ip6_address_t *this_address = (ip6_address_t *) mp->sids.sids;
1552
1553   int i;
1554   for (i = 0; i < mp->sids.num_sids; i++)
1555     {
1556       vec_add2 (segments, seg, 1);
1557       clib_memcpy (seg->as_u8, this_address->as_u8, sizeof (*this_address));
1558       this_address++;
1559     }
1560
1561   s = format (0, "SCRIPT: sr_policy_mod ");
1562
1563   s = format (s, "BSID: %U", format_ip6_address,
1564               (ip6_address_t *) mp->bsid_addr);
1565
1566   s = format (s, "SR Policy index: %u", ntohl (mp->sr_policy_index));
1567
1568   s = format (s, "Operation: %u", mp->operation);
1569
1570   s = format (s, "SID list index: %u", ntohl (mp->sl_index));
1571
1572   s = format (s, "SID list weight: %u", ntohl (mp->weight));
1573
1574   s = format (s, "{");
1575   vec_foreach (seg, segments)
1576   {
1577     s = format (s, "%U, ", format_ip6_address, seg);
1578   }
1579   s = format (s, "\b\b } ");
1580
1581   FINISH;
1582 }
1583
1584 static void *vl_api_sr_policy_del_t_print
1585   (vl_api_sr_policy_del_t * mp, void *handle)
1586 {
1587   u8 *s;
1588
1589   s = format (0, "SCRIPT: sr_policy_del ");
1590   s = format (s, "To be delivered. Good luck.");
1591   FINISH;
1592 }
1593
1594 static void *vl_api_classify_add_del_table_t_print
1595   (vl_api_classify_add_del_table_t * mp, void *handle)
1596 {
1597   u8 *s;
1598   int i;
1599
1600   s = format (0, "SCRIPT: classify_add_del_table ");
1601
1602   if (mp->is_add == 0)
1603     {
1604       s = format (s, "table %d ", ntohl (mp->table_index));
1605       s = format (s, "%s ", mp->del_chain ? "del-chain" : "del");
1606     }
1607   else
1608     {
1609       s = format (s, "nbuckets %d ", ntohl (mp->nbuckets));
1610       s = format (s, "memory_size %d ", ntohl (mp->memory_size));
1611       s = format (s, "skip %d ", ntohl (mp->skip_n_vectors));
1612       s = format (s, "match %d ", ntohl (mp->match_n_vectors));
1613       s = format (s, "next-table %d ", ntohl (mp->next_table_index));
1614       s = format (s, "miss-next %d ", ntohl (mp->miss_next_index));
1615       s = format (s, "current-data-flag %d ", ntohl (mp->current_data_flag));
1616       if (mp->current_data_flag)
1617         s = format (s, "current-data-offset %d ",
1618                     ntohl (mp->current_data_offset));
1619       s = format (s, "mask hex ");
1620       for (i = 0; i < ntohl (mp->match_n_vectors) * sizeof (u32x4); i++)
1621         s = format (s, "%02x", mp->mask[i]);
1622       vec_add1 (s, ' ');
1623     }
1624
1625   FINISH;
1626 }
1627
1628 static void *vl_api_classify_add_del_session_t_print
1629   (vl_api_classify_add_del_session_t * mp, void *handle)
1630 {
1631   u8 *s;
1632   int i, limit = 0;
1633
1634   s = format (0, "SCRIPT: classify_add_del_session ");
1635
1636   s = format (s, "table_index %d ", ntohl (mp->table_index));
1637   s = format (s, "hit_next_index %d ", ntohl (mp->hit_next_index));
1638   s = format (s, "opaque_index %d ", ntohl (mp->opaque_index));
1639   s = format (s, "advance %d ", ntohl (mp->advance));
1640   s = format (s, "action %d ", mp->action);
1641   if (mp->action)
1642     s = format (s, "metadata %d ", ntohl (mp->metadata));
1643   if (mp->is_add == 0)
1644     s = format (s, "del ");
1645
1646   s = format (s, "match hex ");
1647   for (i = 5 * sizeof (u32x4) - 1; i > 0; i--)
1648     {
1649       if (mp->match[i] != 0)
1650         {
1651           limit = i + 1;
1652           break;
1653         }
1654     }
1655
1656   for (i = 0; i < limit; i++)
1657     s = format (s, "%02x", mp->match[i]);
1658
1659   FINISH;
1660 }
1661
1662 static void *vl_api_classify_set_interface_ip_table_t_print
1663   (vl_api_classify_set_interface_ip_table_t * mp, void *handle)
1664 {
1665   u8 *s;
1666
1667   s = format (0, "SCRIPT: classify_set_interface_ip_table ");
1668
1669   if (mp->is_ipv6)
1670     s = format (s, "ipv6 ");
1671
1672   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
1673   s = format (s, "table %d ", ntohl (mp->table_index));
1674
1675   FINISH;
1676 }
1677
1678 static void *vl_api_classify_set_interface_l2_tables_t_print
1679   (vl_api_classify_set_interface_l2_tables_t * mp, void *handle)
1680 {
1681   u8 *s;
1682
1683   s = format (0, "SCRIPT: classify_set_interface_l2_tables ");
1684
1685   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
1686   s = format (s, "ip4-table %d ", ntohl (mp->ip4_table_index));
1687   s = format (s, "ip6-table %d ", ntohl (mp->ip6_table_index));
1688   s = format (s, "other-table %d ", ntohl (mp->other_table_index));
1689   s = format (s, "is-input %d ", mp->is_input);
1690
1691   FINISH;
1692 }
1693
1694 static void *vl_api_add_node_next_t_print
1695   (vl_api_add_node_next_t * mp, void *handle)
1696 {
1697   u8 *s;
1698
1699   s = format (0, "SCRIPT: add_node_next ");
1700
1701   s = format (0, "node %s next %s ", mp->node_name, mp->next_name);
1702
1703   FINISH;
1704 }
1705
1706 static void *vl_api_l2tpv3_create_tunnel_t_print
1707   (vl_api_l2tpv3_create_tunnel_t * mp, void *handle)
1708 {
1709   u8 *s;
1710
1711   s = format (0, "SCRIPT: l2tpv3_create_tunnel ");
1712
1713   s = format (s, "client_address %U our_address %U ",
1714               format_ip6_address, (ip6_address_t *) (mp->client_address),
1715               format_ip6_address, (ip6_address_t *) (mp->our_address));
1716   s = format (s, "local_session_id %d ", ntohl (mp->local_session_id));
1717   s = format (s, "remote_session_id %d ", ntohl (mp->remote_session_id));
1718   s = format (s, "local_cookie %lld ",
1719               clib_net_to_host_u64 (mp->local_cookie));
1720   s = format (s, "remote_cookie %lld ",
1721               clib_net_to_host_u64 (mp->remote_cookie));
1722   if (mp->l2_sublayer_present)
1723     s = format (s, "l2-sublayer-present ");
1724
1725   FINISH;
1726 }
1727
1728 static void *vl_api_l2tpv3_set_tunnel_cookies_t_print
1729   (vl_api_l2tpv3_set_tunnel_cookies_t * mp, void *handle)
1730 {
1731   u8 *s;
1732
1733   s = format (0, "SCRIPT: l2tpv3_set_tunnel_cookies ");
1734
1735   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
1736
1737   s = format (s, "new_local_cookie %llu ",
1738               clib_net_to_host_u64 (mp->new_local_cookie));
1739
1740   s = format (s, "new_remote_cookie %llu ",
1741               clib_net_to_host_u64 (mp->new_remote_cookie));
1742
1743   FINISH;
1744 }
1745
1746 static void *vl_api_l2tpv3_interface_enable_disable_t_print
1747   (vl_api_l2tpv3_interface_enable_disable_t * mp, void *handle)
1748 {
1749   u8 *s;
1750
1751   s = format (0, "SCRIPT: l2tpv3_interface_enable_disable ");
1752
1753   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
1754
1755   if (mp->enable_disable == 0)
1756     s = format (s, "del ");
1757
1758   FINISH;
1759 }
1760
1761 static void *vl_api_l2tpv3_set_lookup_key_t_print
1762   (vl_api_l2tpv3_set_lookup_key_t * mp, void *handle)
1763 {
1764   u8 *s;
1765   char *str = "unknown";
1766
1767   s = format (0, "SCRIPT: l2tpv3_set_lookup_key ");
1768
1769   switch (mp->key)
1770     {
1771     case L2T_LOOKUP_SRC_ADDRESS:
1772       str = "lookup_v6_src";
1773       break;
1774     case L2T_LOOKUP_DST_ADDRESS:
1775       str = "lookup_v6_dst";
1776       break;
1777     case L2T_LOOKUP_SESSION_ID:
1778       str = "lookup_session_id";
1779       break;
1780     default:
1781       break;
1782     }
1783
1784   s = format (s, "%s ", str);
1785
1786   FINISH;
1787 }
1788
1789 static void *vl_api_sw_if_l2tpv3_tunnel_dump_t_print
1790   (vl_api_sw_if_l2tpv3_tunnel_dump_t * mp, void *handle)
1791 {
1792   u8 *s;
1793
1794   s = format (0, "SCRIPT: sw_if_l2tpv3_tunnel_dump ");
1795
1796   FINISH;
1797 }
1798
1799 static void *vl_api_vxlan_add_del_tunnel_t_print
1800   (vl_api_vxlan_add_del_tunnel_t * mp, void *handle)
1801 {
1802   u8 *s;
1803   s = format (0, "SCRIPT: vxlan_add_del_tunnel ");
1804
1805   ip46_address_t src = to_ip46 (mp->is_ipv6, mp->src_address);
1806   ip46_address_t dst = to_ip46 (mp->is_ipv6, mp->dst_address);
1807
1808   u8 is_grp = ip46_address_is_multicast (&dst);
1809   char *dst_name = is_grp ? "group" : "dst";
1810
1811   s = format (s, "src %U ", format_ip46_address, &src, IP46_TYPE_ANY);
1812   s = format (s, "%s %U ", dst_name, format_ip46_address,
1813               &dst, IP46_TYPE_ANY);
1814
1815   if (is_grp)
1816     s = format (s, "mcast_sw_if_index %d ", ntohl (mp->mcast_sw_if_index));
1817
1818   if (mp->encap_vrf_id)
1819     s = format (s, "encap-vrf-id %d ", ntohl (mp->encap_vrf_id));
1820
1821   s = format (s, "decap-next %d ", ntohl (mp->decap_next_index));
1822
1823   s = format (s, "vni %d ", ntohl (mp->vni));
1824
1825   s = format (s, "instance %d ", ntohl (mp->instance));
1826
1827   if (mp->is_add == 0)
1828     s = format (s, "del ");
1829
1830   FINISH;
1831 }
1832
1833 static void *vl_api_vxlan_offload_rx_t_print
1834   (vl_api_vxlan_offload_rx_t * mp, void *handle)
1835 {
1836   u8 *s;
1837   s = format (0, "SCRIPT: vxlan_offload_rx ");
1838
1839   s = format (s, "hw hw_if_index %d ", ntohl (mp->hw_if_index));
1840   s = format (s, "rx sw_if_index %d ", ntohl (mp->sw_if_index));
1841   if (!mp->enable)
1842     s = format (s, "del ");
1843
1844   FINISH;
1845 }
1846
1847 static void *vl_api_vxlan_tunnel_dump_t_print
1848   (vl_api_vxlan_tunnel_dump_t * mp, void *handle)
1849 {
1850   u8 *s;
1851
1852   s = format (0, "SCRIPT: vxlan_tunnel_dump ");
1853
1854   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
1855
1856   FINISH;
1857 }
1858
1859 static void *vl_api_geneve_add_del_tunnel_t_print
1860   (vl_api_geneve_add_del_tunnel_t * mp, void *handle)
1861 {
1862   u8 *s;
1863   s = format (0, "SCRIPT: geneve_add_del_tunnel ");
1864
1865   ip46_address_t local = to_ip46 (mp->is_ipv6, mp->local_address);
1866   ip46_address_t remote = to_ip46 (mp->is_ipv6, mp->remote_address);
1867
1868   u8 is_grp = ip46_address_is_multicast (&remote);
1869   char *remote_name = is_grp ? "group" : "dst";
1870
1871   s = format (s, "src %U ", format_ip46_address, &local, IP46_TYPE_ANY);
1872   s = format (s, "%s %U ", remote_name, format_ip46_address,
1873               &remote, IP46_TYPE_ANY);
1874
1875   if (is_grp)
1876     s = format (s, "mcast_sw_if_index %d ", ntohl (mp->mcast_sw_if_index));
1877
1878   if (mp->encap_vrf_id)
1879     s = format (s, "encap-vrf-id %d ", ntohl (mp->encap_vrf_id));
1880
1881   s = format (s, "decap-next %d ", ntohl (mp->decap_next_index));
1882
1883   s = format (s, "vni %d ", ntohl (mp->vni));
1884
1885   if (mp->is_add == 0)
1886     s = format (s, "del ");
1887
1888   FINISH;
1889 }
1890
1891 static void *vl_api_geneve_tunnel_dump_t_print
1892   (vl_api_geneve_tunnel_dump_t * mp, void *handle)
1893 {
1894   u8 *s;
1895
1896   s = format (0, "SCRIPT: geneve_tunnel_dump ");
1897
1898   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
1899
1900   FINISH;
1901 }
1902
1903 static void *vl_api_gre_add_del_tunnel_t_print
1904   (vl_api_gre_add_del_tunnel_t * mp, void *handle)
1905 {
1906   u8 *s;
1907
1908   s = format (0, "SCRIPT: gre_add_del_tunnel ");
1909
1910   s = format (s, "dst %U ", format_ip46_address,
1911               (ip46_address_t *) & (mp->dst_address),
1912               mp->is_ipv6 ? IP46_TYPE_IP6 : IP46_TYPE_IP4);
1913
1914   s = format (s, "src %U ", format_ip46_address,
1915               (ip46_address_t *) & (mp->src_address),
1916               mp->is_ipv6 ? IP46_TYPE_IP6 : IP46_TYPE_IP4);
1917
1918   s = format (s, "instance %d ", ntohl (mp->instance));
1919
1920   if (mp->tunnel_type == GRE_TUNNEL_TYPE_TEB)
1921     s = format (s, "teb ");
1922
1923   if (mp->tunnel_type == GRE_TUNNEL_TYPE_ERSPAN)
1924     s = format (s, "erspan %d ", ntohs (mp->session_id));
1925
1926   if (mp->outer_fib_id)
1927     s = format (s, "outer-fib-id %d ", ntohl (mp->outer_fib_id));
1928
1929   if (mp->is_add == 0)
1930     s = format (s, "del ");
1931
1932   FINISH;
1933 }
1934
1935 static void *vl_api_gre_tunnel_dump_t_print
1936   (vl_api_gre_tunnel_dump_t * mp, void *handle)
1937 {
1938   u8 *s;
1939
1940   s = format (0, "SCRIPT: gre_tunnel_dump ");
1941
1942   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
1943
1944   FINISH;
1945 }
1946
1947 static void *vl_api_l2_fib_clear_table_t_print
1948   (vl_api_l2_fib_clear_table_t * mp, void *handle)
1949 {
1950   u8 *s;
1951
1952   s = format (0, "SCRIPT: l2_fib_clear_table ");
1953
1954   FINISH;
1955 }
1956
1957 static void *vl_api_l2_interface_efp_filter_t_print
1958   (vl_api_l2_interface_efp_filter_t * mp, void *handle)
1959 {
1960   u8 *s;
1961
1962   s = format (0, "SCRIPT: l2_interface_efp_filter ");
1963
1964   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
1965   if (mp->enable_disable)
1966     s = format (s, "enable ");
1967   else
1968     s = format (s, "disable ");
1969
1970   FINISH;
1971 }
1972
1973 static void *vl_api_l2_interface_vlan_tag_rewrite_t_print
1974   (vl_api_l2_interface_vlan_tag_rewrite_t * mp, void *handle)
1975 {
1976   u8 *s;
1977
1978   s = format (0, "SCRIPT: l2_interface_vlan_tag_rewrite ");
1979
1980   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
1981   s = format (s, "vtr_op %d ", ntohl (mp->vtr_op));
1982   s = format (s, "push_dot1q %d ", ntohl (mp->push_dot1q));
1983   s = format (s, "tag1 %d ", ntohl (mp->tag1));
1984   s = format (s, "tag2 %d ", ntohl (mp->tag2));
1985
1986   FINISH;
1987 }
1988
1989 static void *vl_api_create_vhost_user_if_t_print
1990   (vl_api_create_vhost_user_if_t * mp, void *handle)
1991 {
1992   u8 *s;
1993
1994   s = format (0, "SCRIPT: create_vhost_user_if ");
1995
1996   s = format (s, "socket %s ", mp->sock_filename);
1997   if (mp->is_server)
1998     s = format (s, "server ");
1999   if (mp->renumber)
2000     s = format (s, "renumber %d ", ntohl (mp->custom_dev_instance));
2001   if (mp->disable_mrg_rxbuf)
2002     s = format (s, "disable_mrg_rxbuf ");
2003   if (mp->disable_indirect_desc)
2004     s = format (s, "disable_indirect_desc ");
2005   if (mp->tag[0])
2006     s = format (s, "tag %s", mp->tag);
2007
2008   FINISH;
2009 }
2010
2011 static void *vl_api_modify_vhost_user_if_t_print
2012   (vl_api_modify_vhost_user_if_t * mp, void *handle)
2013 {
2014   u8 *s;
2015
2016   s = format (0, "SCRIPT: modify_vhost_user_if ");
2017
2018   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
2019   s = format (s, "socket %s ", mp->sock_filename);
2020   if (mp->is_server)
2021     s = format (s, "server ");
2022   if (mp->renumber)
2023     s = format (s, "renumber %d ", ntohl (mp->custom_dev_instance));
2024
2025   FINISH;
2026 }
2027
2028 static void *vl_api_delete_vhost_user_if_t_print
2029   (vl_api_delete_vhost_user_if_t * mp, void *handle)
2030 {
2031   u8 *s;
2032
2033   s = format (0, "SCRIPT: delete_vhost_user_if ");
2034   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
2035
2036   FINISH;
2037 }
2038
2039 static void *vl_api_sw_interface_vhost_user_dump_t_print
2040   (vl_api_sw_interface_vhost_user_dump_t * mp, void *handle)
2041 {
2042   u8 *s;
2043
2044   s = format (0, "SCRIPT: sw_interface_vhost_user_dump ");
2045
2046   FINISH;
2047 }
2048
2049 static void *vl_api_sw_interface_dump_t_print
2050   (vl_api_sw_interface_dump_t * mp, void *handle)
2051 {
2052   u8 *s;
2053
2054   s = format (0, "SCRIPT: sw_interface_dump ");
2055
2056   if (mp->name_filter_valid)
2057     s = format (s, "name_filter %s ", mp->name_filter);
2058   else
2059     s = format (s, "all ");
2060
2061   FINISH;
2062 }
2063
2064 static void *vl_api_l2_fib_table_dump_t_print
2065   (vl_api_l2_fib_table_dump_t * mp, void *handle)
2066 {
2067   u8 *s;
2068
2069   s = format (0, "SCRIPT: l2_fib_table_dump ");
2070
2071   s = format (s, "bd_id %d ", ntohl (mp->bd_id));
2072
2073   FINISH;
2074 }
2075
2076 static void *vl_api_control_ping_t_print
2077   (vl_api_control_ping_t * mp, void *handle)
2078 {
2079   u8 *s;
2080
2081   s = format (0, "SCRIPT: control_ping ");
2082
2083   FINISH;
2084 }
2085
2086 static void *vl_api_want_interface_events_t_print
2087   (vl_api_want_interface_events_t * mp, void *handle)
2088 {
2089   u8 *s;
2090
2091   s = format (0, "SCRIPT: want_interface_events pid %d enable %d ",
2092               ntohl (mp->pid), ntohl (mp->enable_disable));
2093
2094   FINISH;
2095 }
2096
2097 static void *
2098 vl_api_cli_t_print (vl_api_cli_t * mp, void *handle)
2099 {
2100   u8 *s;
2101
2102   s = format (0, "SCRIPT: cli ");
2103
2104   FINISH;
2105 }
2106
2107 static void *vl_api_cli_inband_t_print
2108   (vl_api_cli_inband_t * mp, void *handle)
2109 {
2110   u8 *s;
2111   u8 *cmd = 0;
2112   u32 length = ntohl (mp->length);
2113
2114   vec_validate (cmd, length);
2115   clib_memcpy (cmd, mp->cmd, length);
2116
2117   s = format (0, "SCRIPT: exec %v ", cmd);
2118
2119   vec_free (cmd);
2120   FINISH;
2121 }
2122
2123 static void *vl_api_memclnt_create_t_print
2124   (vl_api_memclnt_create_t * mp, void *handle)
2125 {
2126   u8 *s;
2127
2128   s = format (0, "SCRIPT: memclnt_create name %s ", mp->name);
2129
2130   FINISH;
2131 }
2132
2133 static void *vl_api_sockclnt_create_t_print
2134   (vl_api_sockclnt_create_t * mp, void *handle)
2135 {
2136   u8 *s;
2137
2138   s = format (0, "SCRIPT: sockclnt_create name %s ", mp->name);
2139
2140   FINISH;
2141 }
2142
2143 static void *vl_api_show_version_t_print
2144   (vl_api_show_version_t * mp, void *handle)
2145 {
2146   u8 *s;
2147
2148   s = format (0, "SCRIPT: show_version ");
2149
2150   FINISH;
2151 }
2152
2153 static void *vl_api_show_threads_t_print
2154   (vl_api_show_threads_t * mp, void *handle)
2155 {
2156   u8 *s;
2157
2158   s = format (0, "SCRIPT: show_threads ");
2159
2160   FINISH;
2161 }
2162
2163 static void *vl_api_vxlan_gpe_add_del_tunnel_t_print
2164   (vl_api_vxlan_gpe_add_del_tunnel_t * mp, void *handle)
2165 {
2166   u8 *s;
2167
2168   s = format (0, "SCRIPT: vxlan_gpe_add_del_tunnel ");
2169
2170   ip46_address_t local = to_ip46 (mp->is_ipv6, mp->local);
2171   ip46_address_t remote = to_ip46 (mp->is_ipv6, mp->remote);
2172
2173   u8 is_grp = ip46_address_is_multicast (&remote);
2174   char *remote_name = is_grp ? "group" : "remote";
2175
2176   s = format (s, "local %U ", format_ip46_address, &local, IP46_TYPE_ANY);
2177   s = format (s, "%s %U ", remote_name, format_ip46_address,
2178               &remote, IP46_TYPE_ANY);
2179
2180   if (is_grp)
2181     s = format (s, "mcast_sw_if_index %d ", ntohl (mp->mcast_sw_if_index));
2182   s = format (s, "protocol %d ", ntohl (mp->protocol));
2183
2184   s = format (s, "vni %d ", ntohl (mp->vni));
2185
2186   if (mp->is_add == 0)
2187     s = format (s, "del ");
2188
2189   if (mp->encap_vrf_id)
2190     s = format (s, "encap-vrf-id %d ", ntohl (mp->encap_vrf_id));
2191
2192   if (mp->decap_vrf_id)
2193     s = format (s, "decap-vrf-id %d ", ntohl (mp->decap_vrf_id));
2194
2195   FINISH;
2196 }
2197
2198 static void *vl_api_vxlan_gpe_tunnel_dump_t_print
2199   (vl_api_vxlan_gpe_tunnel_dump_t * mp, void *handle)
2200 {
2201   u8 *s;
2202
2203   s = format (0, "SCRIPT: vxlan_gpe_tunnel_dump ");
2204
2205   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
2206
2207   FINISH;
2208 }
2209
2210 static void *vl_api_interface_name_renumber_t_print
2211   (vl_api_interface_name_renumber_t * mp, void *handle)
2212 {
2213   u8 *s;
2214
2215   s = format (0, "SCRIPT: interface_renumber ");
2216
2217   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
2218
2219   s = format (s, "new_show_dev_instance %d ",
2220               ntohl (mp->new_show_dev_instance));
2221
2222   FINISH;
2223 }
2224
2225 static void *vl_api_ip_probe_neighbor_t_print
2226   (vl_api_ip_probe_neighbor_t * mp, void *handle)
2227 {
2228   u8 *s;
2229
2230   s = format (0, "SCRIPT: ip_probe_neighbor ");
2231   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
2232   if (mp->is_ipv6)
2233     s = format (s, "address %U ", format_ip6_address, &mp->dst_address);
2234   else
2235     s = format (s, "address %U ", format_ip4_address, &mp->dst_address);
2236
2237   FINISH;
2238 }
2239
2240 static void *vl_api_ip_scan_neighbor_enable_disable_t_print
2241   (vl_api_ip_scan_neighbor_enable_disable_t * mp, void *handle)
2242 {
2243   u8 *s;
2244
2245   s = format (0, "SCRIPT: ip_scan_neighbor_enable_disable ");
2246
2247   switch (mp->mode)
2248     {
2249     case IP_SCAN_V4_NEIGHBORS:
2250       s = format (s, "ip4 ");
2251       break;
2252     case IP_SCAN_V6_NEIGHBORS:
2253       s = format (s, "ip6 ");
2254       break;
2255     case IP_SCAN_V46_NEIGHBORS:
2256       s = format (s, "both ");
2257       break;
2258     default:
2259       s = format (s, "disable ");
2260     }
2261
2262   s = format (s, "interval %d ", mp->scan_interval);
2263   s = format (s, "max-time %d ", mp->max_proc_time);
2264   s = format (s, "max-update %d ", mp->max_update);
2265   s = format (s, "delay %d ", mp->scan_int_delay);
2266   s = format (s, "stale %d ", mp->stale_threshold);
2267
2268   FINISH;
2269 }
2270
2271 static void *vl_api_want_ip4_arp_events_t_print
2272   (vl_api_want_ip4_arp_events_t * mp, void *handle)
2273 {
2274   u8 *s;
2275
2276   s = format (0, "SCRIPT: want_ip4_arp_events ");
2277   s = format (s, "pid %d address %U ", ntohl (mp->pid),
2278               format_ip4_address, &mp->address);
2279   if (mp->enable_disable == 0)
2280     s = format (s, "del ");
2281
2282   FINISH;
2283 }
2284
2285 static void *vl_api_want_ip6_nd_events_t_print
2286   (vl_api_want_ip6_nd_events_t * mp, void *handle)
2287 {
2288   u8 *s;
2289
2290   s = format (0, "SCRIPT: want_ip6_nd_events ");
2291   s = format (s, "pid %d address %U ", ntohl (mp->pid),
2292               format_ip6_address, mp->address);
2293   if (mp->enable_disable == 0)
2294     s = format (s, "del ");
2295
2296   FINISH;
2297 }
2298
2299 static void *vl_api_want_l2_macs_events_t_print
2300   (vl_api_want_l2_macs_events_t * mp, void *handle)
2301 {
2302   u8 *s;
2303
2304   s = format (0, "SCRIPT: want_l2_macs_events ");
2305   s = format (s, "learn-limit %d ", ntohl (mp->learn_limit));
2306   s = format (s, "scan-delay %d ", (u32) mp->scan_delay);
2307   s = format (s, "max-entries %d ", (u32) mp->max_macs_in_event * 10);
2308   if (mp->enable_disable == 0)
2309     s = format (s, "disable");
2310
2311   FINISH;
2312 }
2313
2314 static void *vl_api_input_acl_set_interface_t_print
2315   (vl_api_input_acl_set_interface_t * mp, void *handle)
2316 {
2317   u8 *s;
2318
2319   s = format (0, "SCRIPT: input_acl_set_interface ");
2320
2321   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
2322   s = format (s, "ip4-table %d ", ntohl (mp->ip4_table_index));
2323   s = format (s, "ip6-table %d ", ntohl (mp->ip6_table_index));
2324   s = format (s, "l2-table %d ", ntohl (mp->l2_table_index));
2325
2326   if (mp->is_add == 0)
2327     s = format (s, "del ");
2328
2329   FINISH;
2330 }
2331
2332 static void *vl_api_output_acl_set_interface_t_print
2333   (vl_api_output_acl_set_interface_t * mp, void *handle)
2334 {
2335   u8 *s;
2336
2337   s = format (0, "SCRIPT: output_acl_set_interface ");
2338
2339   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
2340   s = format (s, "ip4-table %d ", ntohl (mp->ip4_table_index));
2341   s = format (s, "ip6-table %d ", ntohl (mp->ip6_table_index));
2342   s = format (s, "l2-table %d ", ntohl (mp->l2_table_index));
2343
2344   if (mp->is_add == 0)
2345     s = format (s, "del ");
2346
2347   FINISH;
2348 }
2349
2350 static void *vl_api_ip_address_dump_t_print
2351   (vl_api_ip_address_dump_t * mp, void *handle)
2352 {
2353   u8 *s;
2354
2355   s = format (0, "SCRIPT: ip6_address_dump ");
2356   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
2357   s = format (s, "is_ipv6 %d ", mp->is_ipv6 != 0);
2358
2359   FINISH;
2360 }
2361
2362 static void *
2363 vl_api_ip_dump_t_print (vl_api_ip_dump_t * mp, void *handle)
2364 {
2365   u8 *s;
2366
2367   s = format (0, "SCRIPT: ip_dump ");
2368   s = format (s, "is_ipv6 %d ", mp->is_ipv6 != 0);
2369
2370   FINISH;
2371 }
2372
2373 static void *vl_api_cop_interface_enable_disable_t_print
2374   (vl_api_cop_interface_enable_disable_t * mp, void *handle)
2375 {
2376   u8 *s;
2377
2378   s = format (0, "SCRIPT: cop_interface_enable_disable ");
2379   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
2380   if (mp->enable_disable)
2381     s = format (s, "enable ");
2382   else
2383     s = format (s, "disable ");
2384
2385   FINISH;
2386 }
2387
2388 static void *vl_api_cop_whitelist_enable_disable_t_print
2389   (vl_api_cop_whitelist_enable_disable_t * mp, void *handle)
2390 {
2391   u8 *s;
2392
2393   s = format (0, "SCRIPT: cop_whitelist_enable_disable ");
2394   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
2395   s = format (s, "fib-id %d ", ntohl (mp->fib_id));
2396   if (mp->ip4)
2397     s = format (s, "ip4 ");
2398   if (mp->ip6)
2399     s = format (s, "ip6 ");
2400   if (mp->default_cop)
2401     s = format (s, "default ");
2402
2403   FINISH;
2404 }
2405
2406 static void *vl_api_af_packet_create_t_print
2407   (vl_api_af_packet_create_t * mp, void *handle)
2408 {
2409   u8 *s;
2410
2411   s = format (0, "SCRIPT: af_packet_create ");
2412   s = format (s, "host_if_name %s ", mp->host_if_name);
2413   if (mp->use_random_hw_addr)
2414     s = format (s, "hw_addr random ");
2415   else
2416     s = format (s, "hw_addr %U ", format_ethernet_address, mp->hw_addr);
2417
2418   FINISH;
2419 }
2420
2421 static void *vl_api_af_packet_delete_t_print
2422   (vl_api_af_packet_delete_t * mp, void *handle)
2423 {
2424   u8 *s;
2425
2426   s = format (0, "SCRIPT: af_packet_delete ");
2427   s = format (s, "host_if_name %s ", mp->host_if_name);
2428
2429   FINISH;
2430 }
2431
2432 static void *vl_api_af_packet_dump_t_print
2433   (vl_api_af_packet_dump_t * mp, void *handle)
2434 {
2435   u8 *s;
2436
2437   s = format (0, "SCRIPT: af_packet_dump ");
2438
2439   FINISH;
2440 }
2441
2442 static u8 *
2443 format_policer_action (u8 * s, va_list * va)
2444 {
2445   u32 action = va_arg (*va, u32);
2446   u32 dscp = va_arg (*va, u32);
2447   char *t = 0;
2448
2449   if (action == SSE2_QOS_ACTION_DROP)
2450     s = format (s, "drop");
2451   else if (action == SSE2_QOS_ACTION_TRANSMIT)
2452     s = format (s, "transmit");
2453   else if (action == SSE2_QOS_ACTION_MARK_AND_TRANSMIT)
2454     {
2455       s = format (s, "mark-and-transmit ");
2456       switch (dscp)
2457         {
2458 #define _(v,f,str) case VNET_DSCP_##f: t = str; break;
2459           foreach_vnet_dscp
2460 #undef _
2461         default:
2462           break;
2463         }
2464       s = format (s, "%s", t);
2465     }
2466   return s;
2467 }
2468
2469 static void *vl_api_policer_add_del_t_print
2470   (vl_api_policer_add_del_t * mp, void *handle)
2471 {
2472   u8 *s;
2473
2474   s = format (0, "SCRIPT: policer_add_del ");
2475   s = format (s, "name %s ", mp->name);
2476   s = format (s, "cir %d ", mp->cir);
2477   s = format (s, "eir %d ", mp->eir);
2478   s = format (s, "cb %d ", mp->cb);
2479   s = format (s, "eb %d ", mp->eb);
2480
2481   switch (mp->rate_type)
2482     {
2483     case SSE2_QOS_RATE_KBPS:
2484       s = format (s, "rate_type kbps ");
2485       break;
2486     case SSE2_QOS_RATE_PPS:
2487       s = format (s, "rate_type pps ");
2488       break;
2489     default:
2490       break;
2491     }
2492
2493   switch (mp->round_type)
2494     {
2495     case SSE2_QOS_ROUND_TO_CLOSEST:
2496       s = format (s, "round_type closest ");
2497       break;
2498     case SSE2_QOS_ROUND_TO_UP:
2499       s = format (s, "round_type up ");
2500       break;
2501     case SSE2_QOS_ROUND_TO_DOWN:
2502       s = format (s, "round_type down ");
2503       break;
2504     default:
2505       break;
2506     }
2507
2508   switch (mp->type)
2509     {
2510     case SSE2_QOS_POLICER_TYPE_1R2C:
2511       s = format (s, "type 1r2c ");
2512       break;
2513     case SSE2_QOS_POLICER_TYPE_1R3C_RFC_2697:
2514       s = format (s, "type 1r3c ");
2515       break;
2516     case SSE2_QOS_POLICER_TYPE_2R3C_RFC_2698:
2517       s = format (s, "type 2r3c-2698 ");
2518       break;
2519     case SSE2_QOS_POLICER_TYPE_2R3C_RFC_4115:
2520       s = format (s, "type 2r3c-4115 ");
2521       break;
2522     case SSE2_QOS_POLICER_TYPE_2R3C_RFC_MEF5CF1:
2523       s = format (s, "type 2r3c-mef5cf1 ");
2524       break;
2525     default:
2526       break;
2527     }
2528
2529   s = format (s, "conform_action %U ", format_policer_action,
2530               mp->conform_action_type, mp->conform_dscp);
2531   s = format (s, "exceed_action %U ", format_policer_action,
2532               mp->exceed_action_type, mp->exceed_dscp);
2533   s = format (s, "violate_action %U ", format_policer_action,
2534               mp->violate_action_type, mp->violate_dscp);
2535
2536   if (mp->color_aware)
2537     s = format (s, "color-aware ");
2538   if (mp->is_add == 0)
2539     s = format (s, "del ");
2540
2541   FINISH;
2542 }
2543
2544 static void *vl_api_policer_dump_t_print
2545   (vl_api_policer_dump_t * mp, void *handle)
2546 {
2547   u8 *s;
2548
2549   s = format (0, "SCRIPT: policer_dump ");
2550   if (mp->match_name_valid)
2551     s = format (s, "name %s ", mp->match_name);
2552
2553   FINISH;
2554 }
2555
2556 static void *vl_api_policer_classify_set_interface_t_print
2557   (vl_api_policer_classify_set_interface_t * mp, void *handle)
2558 {
2559   u8 *s;
2560
2561   s = format (0, "SCRIPT: policer_classify_set_interface ");
2562   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
2563   if (mp->ip4_table_index != ~0)
2564     s = format (s, "ip4-table %d ", ntohl (mp->ip4_table_index));
2565   if (mp->ip6_table_index != ~0)
2566     s = format (s, "ip6-table %d ", ntohl (mp->ip6_table_index));
2567   if (mp->l2_table_index != ~0)
2568     s = format (s, "l2-table %d ", ntohl (mp->l2_table_index));
2569   if (mp->is_add == 0)
2570     s = format (s, "del ");
2571
2572   FINISH;
2573 }
2574
2575 static void *vl_api_policer_classify_dump_t_print
2576   (vl_api_policer_classify_dump_t * mp, void *handle)
2577 {
2578   u8 *s;
2579
2580   s = format (0, "SCRIPT: policer_classify_dump ");
2581   switch (mp->type)
2582     {
2583     case POLICER_CLASSIFY_TABLE_IP4:
2584       s = format (s, "type ip4 ");
2585       break;
2586     case POLICER_CLASSIFY_TABLE_IP6:
2587       s = format (s, "type ip6 ");
2588       break;
2589     case POLICER_CLASSIFY_TABLE_L2:
2590       s = format (s, "type l2 ");
2591       break;
2592     default:
2593       break;
2594     }
2595
2596   FINISH;
2597 }
2598
2599 static void *vl_api_sw_interface_clear_stats_t_print
2600   (vl_api_sw_interface_clear_stats_t * mp, void *handle)
2601 {
2602   u8 *s;
2603
2604   s = format (0, "SCRIPT: sw_interface_clear_stats ");
2605   if (mp->sw_if_index != ~0)
2606     s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
2607
2608   FINISH;
2609 }
2610
2611 static void *vl_api_mpls_tunnel_dump_t_print
2612   (vl_api_mpls_tunnel_dump_t * mp, void *handle)
2613 {
2614   u8 *s;
2615
2616   s = format (0, "SCRIPT: mpls_tunnel_dump ");
2617
2618   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
2619
2620   FINISH;
2621 }
2622
2623 static void *vl_api_mpls_fib_dump_t_print
2624   (vl_api_mpls_fib_dump_t * mp, void *handle)
2625 {
2626   u8 *s;
2627
2628   s = format (0, "SCRIPT: mpls_fib_decap_dump ");
2629
2630   FINISH;
2631 }
2632
2633 static void *vl_api_ip_fib_dump_t_print
2634   (vl_api_ip_fib_dump_t * mp, void *handle)
2635 {
2636   u8 *s;
2637
2638   s = format (0, "SCRIPT: ip_fib_dump ");
2639
2640   FINISH;
2641 }
2642
2643 static void *vl_api_ip6_fib_dump_t_print
2644   (vl_api_ip6_fib_dump_t * mp, void *handle)
2645 {
2646   u8 *s;
2647
2648   s = format (0, "SCRIPT: ip6_fib_dump ");
2649
2650   FINISH;
2651 }
2652
2653 static void *vl_api_classify_table_ids_t_print
2654   (vl_api_classify_table_ids_t * mp, void *handle)
2655 {
2656   u8 *s;
2657
2658   s = format (0, "SCRIPT: classify_table_ids ");
2659
2660   FINISH;
2661 }
2662
2663 static void *vl_api_classify_table_by_interface_t_print
2664   (vl_api_classify_table_by_interface_t * mp, void *handle)
2665 {
2666   u8 *s;
2667
2668   s = format (0, "SCRIPT: classify_table_by_interface ");
2669   if (mp->sw_if_index != ~0)
2670     s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
2671
2672   FINISH;
2673 }
2674
2675 static void *vl_api_classify_table_info_t_print
2676   (vl_api_classify_table_info_t * mp, void *handle)
2677 {
2678   u8 *s;
2679
2680   s = format (0, "SCRIPT: classify_table_info ");
2681   if (mp->table_id != ~0)
2682     s = format (s, "table_id %d ", ntohl (mp->table_id));
2683
2684   FINISH;
2685 }
2686
2687 static void *vl_api_classify_session_dump_t_print
2688   (vl_api_classify_session_dump_t * mp, void *handle)
2689 {
2690   u8 *s;
2691
2692   s = format (0, "SCRIPT: classify_session_dump ");
2693   if (mp->table_id != ~0)
2694     s = format (s, "table_id %d ", ntohl (mp->table_id));
2695
2696   FINISH;
2697 }
2698
2699 static void *vl_api_set_ipfix_exporter_t_print
2700   (vl_api_set_ipfix_exporter_t * mp, void *handle)
2701 {
2702   u8 *s;
2703
2704   s = format (0, "SCRIPT: set_ipfix_exporter ");
2705
2706   s = format (s, "collector-address %U ", format_ip4_address,
2707               (ip4_address_t *) mp->collector_address);
2708   s = format (s, "collector-port %d ", ntohs (mp->collector_port));
2709   s = format (s, "src-address %U ", format_ip4_address,
2710               (ip4_address_t *) mp->src_address);
2711   s = format (s, "vrf-id %d ", ntohl (mp->vrf_id));
2712   s = format (s, "path-mtu %d ", ntohl (mp->path_mtu));
2713   s = format (s, "template-interval %d ", ntohl (mp->template_interval));
2714   s = format (s, "udp-checksum %d ", mp->udp_checksum);
2715
2716   FINISH;
2717 }
2718
2719 static void *vl_api_ipfix_exporter_dump_t_print
2720   (vl_api_ipfix_exporter_dump_t * mp, void *handle)
2721 {
2722   u8 *s;
2723
2724   s = format (0, "SCRIPT: ipfix_exporter_dump ");
2725
2726   FINISH;
2727 }
2728
2729 static void *vl_api_set_ipfix_classify_stream_t_print
2730   (vl_api_set_ipfix_classify_stream_t * mp, void *handle)
2731 {
2732   u8 *s;
2733
2734   s = format (0, "SCRIPT: set_ipfix_classify_stream ");
2735
2736   s = format (s, "domain-id %d ", ntohl (mp->domain_id));
2737   s = format (s, "src-port %d ", ntohs (mp->src_port));
2738
2739   FINISH;
2740 }
2741
2742 static void *vl_api_ipfix_classify_stream_dump_t_print
2743   (vl_api_ipfix_classify_stream_dump_t * mp, void *handle)
2744 {
2745   u8 *s;
2746
2747   s = format (0, "SCRIPT: ipfix_classify_stream_dump ");
2748
2749   FINISH;
2750 }
2751
2752 static void *vl_api_ipfix_classify_table_add_del_t_print
2753   (vl_api_ipfix_classify_table_add_del_t * mp, void *handle)
2754 {
2755   u8 *s;
2756
2757   s = format (0, "SCRIPT: ipfix_classify_table_add_del ");
2758
2759   s = format (s, "table-id %d ", ntohl (mp->table_id));
2760   s = format (s, "ip-version %d ", mp->ip_version);
2761   s = format (s, "transport-protocol %d ", mp->transport_protocol);
2762
2763   FINISH;
2764 }
2765
2766 static void *vl_api_ipfix_classify_table_dump_t_print
2767   (vl_api_ipfix_classify_table_dump_t * mp, void *handle)
2768 {
2769   u8 *s;
2770
2771   s = format (0, "SCRIPT: ipfix_classify_table_dump ");
2772
2773   FINISH;
2774 }
2775
2776 static void *vl_api_sw_interface_span_enable_disable_t_print
2777   (vl_api_sw_interface_span_enable_disable_t * mp, void *handle)
2778 {
2779   u8 *s;
2780
2781   s = format (0, "SCRIPT: sw_interface_span_enable_disable ");
2782   s = format (s, "src_sw_if_index %u ", ntohl (mp->sw_if_index_from));
2783   s = format (s, "dst_sw_if_index %u ", ntohl (mp->sw_if_index_to));
2784
2785   if (mp->is_l2)
2786     s = format (s, "l2 ");
2787
2788   switch (mp->state)
2789     {
2790     case 0:
2791       s = format (s, "disable ");
2792       break;
2793     case 1:
2794       s = format (s, "rx ");
2795       break;
2796     case 2:
2797       s = format (s, "tx ");
2798       break;
2799     case 3:
2800     default:
2801       s = format (s, "both ");
2802       break;
2803     }
2804
2805   FINISH;
2806 }
2807
2808 static void *
2809 vl_api_sw_interface_span_dump_t_print (vl_api_sw_interface_span_dump_t * mp,
2810                                        void *handle)
2811 {
2812   u8 *s;
2813
2814   s = format (0, "SCRIPT: sw_interface_span_dump ");
2815
2816   if (mp->is_l2)
2817     s = format (s, "l2 ");
2818
2819   FINISH;
2820 }
2821
2822 static void *vl_api_get_next_index_t_print
2823   (vl_api_get_next_index_t * mp, void *handle)
2824 {
2825   u8 *s;
2826
2827   s = format (0, "SCRIPT: get_next_index ");
2828   s = format (s, "node-name %s ", mp->node_name);
2829   s = format (s, "next-node-name %s ", mp->next_name);
2830
2831   FINISH;
2832 }
2833
2834 static void *vl_api_pg_create_interface_t_print
2835   (vl_api_pg_create_interface_t * mp, void *handle)
2836 {
2837   u8 *s;
2838
2839   s = format (0, "SCRIPT: pg_create_interface ");
2840   s = format (0, "if_id %d", ntohl (mp->interface_id));
2841
2842   FINISH;
2843 }
2844
2845 static void *vl_api_pg_capture_t_print
2846   (vl_api_pg_capture_t * mp, void *handle)
2847 {
2848   u8 *s;
2849
2850   s = format (0, "SCRIPT: pg_capture ");
2851   s = format (0, "if_id %d ", ntohl (mp->interface_id));
2852   s = format (0, "pcap %s", mp->pcap_file_name);
2853   if (mp->count != ~0)
2854     s = format (s, "count %d ", ntohl (mp->count));
2855   if (!mp->is_enabled)
2856     s = format (s, "disable");
2857
2858   FINISH;
2859 }
2860
2861 static void *vl_api_pg_enable_disable_t_print
2862   (vl_api_pg_enable_disable_t * mp, void *handle)
2863 {
2864   u8 *s;
2865
2866   s = format (0, "SCRIPT: pg_enable_disable ");
2867   if (ntohl (mp->stream_name_length) > 0)
2868     s = format (s, "stream %s", mp->stream_name);
2869   if (!mp->is_enabled)
2870     s = format (s, "disable");
2871
2872   FINISH;
2873 }
2874
2875 static void *vl_api_ip_source_and_port_range_check_add_del_t_print
2876   (vl_api_ip_source_and_port_range_check_add_del_t * mp, void *handle)
2877 {
2878   u8 *s;
2879   int i;
2880
2881   s = format (0, "SCRIPT: ip_source_and_port_range_check_add_del ");
2882   if (mp->is_ipv6)
2883     s = format (s, "%U/%d ", format_ip6_address, mp->address,
2884                 mp->mask_length);
2885   else
2886     s = format (s, "%U/%d ", format_ip4_address, mp->address,
2887                 mp->mask_length);
2888
2889   for (i = 0; i < mp->number_of_ranges; i++)
2890     {
2891       s = format (s, "range %d - %d ", mp->low_ports[i], mp->high_ports[i]);
2892     }
2893
2894   s = format (s, "vrf %d ", ntohl (mp->vrf_id));
2895
2896   if (mp->is_add == 0)
2897     s = format (s, "del ");
2898
2899   FINISH;
2900 }
2901
2902 static void *vl_api_ip_source_and_port_range_check_interface_add_del_t_print
2903   (vl_api_ip_source_and_port_range_check_interface_add_del_t * mp,
2904    void *handle)
2905 {
2906   u8 *s;
2907
2908   s = format (0, "SCRIPT: ip_source_and_port_range_check_interface_add_del ");
2909
2910   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
2911
2912   if (mp->tcp_out_vrf_id != ~0)
2913     s = format (s, "tcp-out-vrf %d ", ntohl (mp->tcp_out_vrf_id));
2914
2915   if (mp->udp_out_vrf_id != ~0)
2916     s = format (s, "udp-out-vrf %d ", ntohl (mp->udp_out_vrf_id));
2917
2918   if (mp->tcp_in_vrf_id != ~0)
2919     s = format (s, "tcp-in-vrf %d ", ntohl (mp->tcp_in_vrf_id));
2920
2921   if (mp->udp_in_vrf_id != ~0)
2922     s = format (s, "udp-in-vrf %d ", ntohl (mp->udp_in_vrf_id));
2923
2924   if (mp->is_add == 0)
2925     s = format (s, "del ");
2926
2927   FINISH;
2928 }
2929
2930 static void *vl_api_lisp_enable_disable_t_print
2931   (vl_api_lisp_enable_disable_t * mp, void *handle)
2932 {
2933   u8 *s;
2934
2935   s = format (0, "SCRIPT: lisp_enable_disable %s",
2936               mp->is_en ? "enable" : "disable");
2937
2938   FINISH;
2939 }
2940
2941 static void *vl_api_gpe_add_del_iface_t_print
2942   (vl_api_gpe_add_del_iface_t * mp, void *handle)
2943 {
2944   u8 *s;
2945
2946   s = format (0, "SCRIPT: gpe_add_del_iface ");
2947
2948   s = format (s, "%s ", mp->is_add ? "up" : "down");
2949   s = format (s, "vni %d ", mp->vni);
2950   s = format (s, "%s %d ", mp->is_l2 ? "bd_id" : "table_id", mp->dp_table);
2951
2952   FINISH;
2953 }
2954
2955 static void *vl_api_lisp_pitr_set_locator_set_t_print
2956   (vl_api_lisp_pitr_set_locator_set_t * mp, void *handle)
2957 {
2958   u8 *s;
2959
2960   s = format (0, "SCRIPT: lisp_pitr_set_locator_set ");
2961
2962   if (mp->is_add)
2963     s = format (s, "locator-set %s ", mp->ls_name);
2964   else
2965     s = format (s, "del");
2966
2967   FINISH;
2968 }
2969
2970 static u8 *
2971 format_lisp_flat_eid (u8 * s, va_list * args)
2972 {
2973   u32 type = va_arg (*args, u32);
2974   u8 *eid = va_arg (*args, u8 *);
2975   u32 eid_len = va_arg (*args, u32);
2976
2977   switch (type)
2978     {
2979     case 0:
2980       return format (s, "%U/%d", format_ip4_address, eid, eid_len);
2981     case 1:
2982       return format (s, "%U/%d", format_ip6_address, eid, eid_len);
2983     case 3:
2984       return format (s, "%U", format_ethernet_address, eid);
2985     }
2986   return 0;
2987 }
2988
2989 static void *vl_api_lisp_add_del_remote_mapping_t_print
2990   (vl_api_lisp_add_del_remote_mapping_t * mp, void *handle)
2991 {
2992   u8 *s;
2993   u32 rloc_num = 0;
2994
2995   s = format (0, "SCRIPT: lisp_add_del_remote_mapping ");
2996
2997   if (mp->del_all)
2998     s = format (s, "del-all ");
2999
3000   s = format (s, "%s ", mp->is_add ? "add" : "del");
3001   s = format (s, "vni %d ", clib_net_to_host_u32 (mp->vni));
3002
3003   s = format (s, "eid %U ", format_lisp_flat_eid,
3004               mp->eid_type, mp->eid, mp->eid_len);
3005
3006   if (mp->is_src_dst)
3007     {
3008       s = format (s, "seid %U ", format_lisp_flat_eid,
3009                   mp->eid_type, mp->seid, mp->seid_len);
3010     }
3011   rloc_num = clib_net_to_host_u32 (mp->rloc_num);
3012
3013   if (0 == rloc_num)
3014     s = format (s, "action %d", mp->action);
3015
3016   FINISH;
3017 }
3018
3019 static void *vl_api_lisp_add_del_adjacency_t_print
3020   (vl_api_lisp_add_del_adjacency_t * mp, void *handle)
3021 {
3022   u8 *s;
3023
3024   s = format (0, "SCRIPT: lisp_add_del_adjacency ");
3025
3026   s = format (s, "%s ", mp->is_add ? "add" : "del");
3027   s = format (s, "vni %d ", clib_net_to_host_u32 (mp->vni));
3028   s = format (s, "reid %U leid %U ",
3029               format_lisp_flat_eid, mp->eid_type, mp->reid, mp->reid_len,
3030               format_lisp_flat_eid, mp->eid_type, mp->leid, mp->leid_len);
3031
3032   FINISH;
3033 }
3034
3035 static void *vl_api_lisp_add_del_map_request_itr_rlocs_t_print
3036   (vl_api_lisp_add_del_map_request_itr_rlocs_t * mp, void *handle)
3037 {
3038   u8 *s;
3039
3040   s = format (0, "SCRIPT: lisp_add_del_map_request_itr_rlocs ");
3041
3042   if (mp->is_add)
3043     s = format (s, "%s", mp->locator_set_name);
3044   else
3045     s = format (s, "del");
3046
3047   FINISH;
3048 }
3049
3050 static void *vl_api_lisp_eid_table_add_del_map_t_print
3051   (vl_api_lisp_eid_table_add_del_map_t * mp, void *handle)
3052 {
3053   u8 *s;
3054
3055   s = format (0, "SCRIPT: lisp_eid_table_add_del_map ");
3056
3057   if (!mp->is_add)
3058     s = format (s, "del ");
3059
3060   s = format (s, "vni %d ", clib_net_to_host_u32 (mp->vni));
3061   s = format (s, "%s %d ",
3062               mp->is_l2 ? "bd_index" : "vrf",
3063               clib_net_to_host_u32 (mp->dp_table));
3064   FINISH;
3065 }
3066
3067 static void *vl_api_lisp_add_del_local_eid_t_print
3068   (vl_api_lisp_add_del_local_eid_t * mp, void *handle)
3069 {
3070   u8 *s;
3071
3072   s = format (0, "SCRIPT: lisp_add_del_local_eid ");
3073
3074   if (!mp->is_add)
3075     s = format (s, "del ");
3076
3077   s = format (s, "vni %d ", clib_net_to_host_u32 (mp->vni));
3078   s = format (s, "eid %U ", format_lisp_flat_eid, mp->eid_type, mp->eid,
3079               mp->prefix_len);
3080   s = format (s, "locator-set %s ", mp->locator_set_name);
3081   if (*mp->key)
3082     {
3083       u32 key_id = mp->key_id;
3084       s = format (s, "key-id %U", format_hmac_key_id, key_id);
3085       s = format (s, "secret-key %s", mp->key);
3086     }
3087   FINISH;
3088 }
3089
3090 static void *vl_api_gpe_add_del_fwd_entry_t_print
3091   (vl_api_gpe_add_del_fwd_entry_t * mp, void *handle)
3092 {
3093   u8 *s;
3094
3095   s = format (0, "SCRIPT: gpe_add_del_fwd_entry TODO");
3096
3097   FINISH;
3098 }
3099
3100 static void *vl_api_lisp_add_del_map_resolver_t_print
3101   (vl_api_lisp_add_del_map_resolver_t * mp, void *handle)
3102 {
3103   u8 *s;
3104
3105   s = format (0, "SCRIPT: lisp_add_del_map_resolver ");
3106
3107   if (!mp->is_add)
3108     s = format (s, "del ");
3109
3110   if (mp->is_ipv6)
3111     s = format (s, "%U ", format_ip6_address, mp->ip_address);
3112   else
3113     s = format (s, "%U ", format_ip4_address, mp->ip_address);
3114
3115   FINISH;
3116 }
3117
3118 static void *vl_api_gpe_enable_disable_t_print
3119   (vl_api_gpe_enable_disable_t * mp, void *handle)
3120 {
3121   u8 *s;
3122
3123   s = format (0, "SCRIPT: gpe_enable_disable ");
3124
3125   s = format (s, "%s ", mp->is_en ? "enable" : "disable");
3126
3127   FINISH;
3128 }
3129
3130 static void *vl_api_lisp_add_del_locator_set_t_print
3131   (vl_api_lisp_add_del_locator_set_t * mp, void *handle)
3132 {
3133   u8 *s;
3134
3135   s = format (0, "SCRIPT: lisp_add_del_locator_set ");
3136
3137   if (!mp->is_add)
3138     s = format (s, "del ");
3139
3140   s = format (s, "locator-set %s ", mp->locator_set_name);
3141
3142   FINISH;
3143 }
3144
3145 static void *vl_api_lisp_add_del_locator_t_print
3146   (vl_api_lisp_add_del_locator_t * mp, void *handle)
3147 {
3148   u8 *s;
3149
3150   s = format (0, "SCRIPT: lisp_add_del_locator ");
3151
3152   if (!mp->is_add)
3153     s = format (s, "del ");
3154
3155   s = format (s, "locator-set %s ", mp->locator_set_name);
3156   s = format (s, "sw_if_index %d ", mp->sw_if_index);
3157   s = format (s, "p %d w %d ", mp->priority, mp->weight);
3158
3159   FINISH;
3160 }
3161
3162 static void *vl_api_lisp_locator_set_dump_t_print
3163   (vl_api_lisp_locator_set_dump_t * mp, void *handle)
3164 {
3165   u8 *s;
3166
3167   s = format (0, "SCRIPT: lisp_locator_set_dump ");
3168   if (mp->filter == 1)
3169     s = format (s, "local");
3170   else if (mp->filter == 2)
3171     s = format (s, "remote");
3172
3173   FINISH;
3174 }
3175
3176 static void *vl_api_lisp_locator_dump_t_print
3177   (vl_api_lisp_locator_dump_t * mp, void *handle)
3178 {
3179   u8 *s;
3180
3181   s = format (0, "SCRIPT: lisp_locator_dump ");
3182   if (mp->is_index_set)
3183     s = format (s, "ls_index %d", clib_net_to_host_u32 (mp->ls_index));
3184   else
3185     s = format (s, "ls_name %s", mp->ls_name);
3186
3187   FINISH;
3188 }
3189
3190 static void *vl_api_lisp_map_request_mode_t_print
3191   (vl_api_lisp_map_request_mode_t * mp, void *handle)
3192 {
3193   u8 *s;
3194
3195   s = format (0, "SCRIPT: lisp_map_request_mode ");
3196
3197   switch (mp->mode)
3198     {
3199     case 0:
3200       s = format (s, "dst-only");
3201       break;
3202     case 1:
3203       s = format (s, "src-dst");
3204     default:
3205       break;
3206     }
3207
3208   FINISH;
3209 }
3210
3211 static void *vl_api_lisp_eid_table_dump_t_print
3212   (vl_api_lisp_eid_table_dump_t * mp, void *handle)
3213 {
3214   u8 *s;
3215
3216   s = format (0, "SCRIPT: lisp_eid_table_dump ");
3217
3218   if (mp->eid_set)
3219     {
3220       s = format (s, "vni %d ", clib_net_to_host_u32 (mp->vni));
3221       s = format (s, "eid %U ", format_lisp_flat_eid, mp->eid_type,
3222                   mp->eid, mp->prefix_length);
3223       switch (mp->filter)
3224         {
3225         case 1:
3226           s = format (s, "local ");
3227           break;
3228         case 2:
3229           s = format (s, "remote ");
3230           break;
3231         }
3232     }
3233   FINISH;
3234 }
3235
3236 static void *vl_api_lisp_rloc_probe_enable_disable_t_print
3237   (vl_api_lisp_rloc_probe_enable_disable_t * mp, void *handle)
3238 {
3239   u8 *s;
3240
3241   s = format (0, "SCRIPT: lisp_rloc_probe_enable_disable ");
3242   if (mp->is_enabled)
3243     s = format (s, "enable");
3244   else
3245     s = format (s, "disable");
3246
3247   FINISH;
3248 }
3249
3250 static void *vl_api_lisp_map_register_enable_disable_t_print
3251   (vl_api_lisp_map_register_enable_disable_t * mp, void *handle)
3252 {
3253   u8 *s;
3254
3255   s = format (0, "SCRIPT: lisp_map_register_enable_disable ");
3256   if (mp->is_enabled)
3257     s = format (s, "enable");
3258   else
3259     s = format (s, "disable");
3260
3261   FINISH;
3262 }
3263
3264 static void *vl_api_lisp_adjacencies_get_t_print
3265   (vl_api_lisp_adjacencies_get_t * mp, void *handle)
3266 {
3267   u8 *s;
3268
3269   s = format (0, "SCRIPT: lisp_adjacencies_get ");
3270   s = format (s, "vni %d", clib_net_to_host_u32 (mp->vni));
3271
3272   FINISH;
3273 }
3274
3275 static void *vl_api_lisp_eid_table_map_dump_t_print
3276   (vl_api_lisp_eid_table_map_dump_t * mp, void *handle)
3277 {
3278   u8 *s;
3279
3280   s = format (0, "SCRIPT: lisp_eid_table_map_dump ");
3281
3282   if (mp->is_l2)
3283     s = format (s, "l2");
3284   else
3285     s = format (s, "l3");
3286
3287   FINISH;
3288 }
3289
3290 static void *vl_api_ipsec_gre_add_del_tunnel_t_print
3291   (vl_api_ipsec_gre_add_del_tunnel_t * mp, void *handle)
3292 {
3293   u8 *s;
3294
3295   s = format (0, "SCRIPT: ipsec_gre_add_del_tunnel ");
3296
3297   s = format (s, "dst %U ", format_ip4_address,
3298               (ip4_address_t *) & (mp->dst_address));
3299
3300   s = format (s, "src %U ", format_ip4_address,
3301               (ip4_address_t *) & (mp->src_address));
3302
3303   s = format (s, "local_sa %d ", ntohl (mp->local_sa_id));
3304
3305   s = format (s, "remote_sa %d ", ntohl (mp->remote_sa_id));
3306
3307   if (mp->is_add == 0)
3308     s = format (s, "del ");
3309
3310   FINISH;
3311 }
3312
3313 static void *vl_api_ipsec_gre_tunnel_dump_t_print
3314   (vl_api_ipsec_gre_tunnel_dump_t * mp, void *handle)
3315 {
3316   u8 *s;
3317
3318   s = format (0, "SCRIPT: ipsec_gre_tunnel_dump ");
3319
3320   if (mp->sw_if_index != ~0)
3321     s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
3322
3323   FINISH;
3324 }
3325
3326 static void *vl_api_l2_interface_pbb_tag_rewrite_t_print
3327   (vl_api_l2_interface_pbb_tag_rewrite_t * mp, void *handle)
3328 {
3329   u8 *s;
3330   u32 vtr_op = ntohl (mp->vtr_op);
3331
3332   s = format (0, "SCRIPT: l2_interface_pbb_tag_rewrite ");
3333
3334   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
3335   s = format (s, "vtr_op %d ", vtr_op);
3336   if (vtr_op != L2_VTR_DISABLED && vtr_op != L2_VTR_POP_2)
3337     {
3338       if (vtr_op == L2_VTR_TRANSLATE_2_2)
3339         s = format (s, "%d ", ntohs (mp->outer_tag));
3340       s = format (s, "dmac %U ", format_ethernet_address, &mp->b_dmac);
3341       s = format (s, "smac %U ", format_ethernet_address, &mp->b_smac);
3342       s = format (s, "sid %d ", ntohl (mp->i_sid));
3343       s = format (s, "vlanid %d ", ntohs (mp->b_vlanid));
3344     }
3345   FINISH;
3346 }
3347
3348 static void *vl_api_flow_classify_set_interface_t_print
3349   (vl_api_flow_classify_set_interface_t * mp, void *handle)
3350 {
3351   u8 *s;
3352
3353   s = format (0, "SCRIPT: flow_classify_set_interface ");
3354   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
3355   if (mp->ip4_table_index != ~0)
3356     s = format (s, "ip4-table %d ", ntohl (mp->ip4_table_index));
3357   if (mp->ip6_table_index != ~0)
3358     s = format (s, "ip6-table %d ", ntohl (mp->ip6_table_index));
3359   if (mp->is_add == 0)
3360     s = format (s, "del ");
3361
3362   FINISH;
3363 }
3364
3365 static void *
3366 vl_api_set_punt_t_print (vl_api_set_punt_t * mp, void *handle)
3367 {
3368   u8 *s;
3369
3370   s = format (0, "SCRIPT: punt ");
3371
3372   if (mp->punt.ipv != (u8) ~ 0)
3373     s = format (s, "ip %d ", mp->punt.ipv);
3374
3375   s = format (s, "protocol %d ", mp->punt.l4_protocol);
3376
3377   if (mp->punt.l4_port != (u16) ~ 0)
3378     s = format (s, "port %d ", ntohs (mp->punt.l4_port));
3379
3380   if (!mp->is_add)
3381     s = format (s, "del ");
3382
3383   FINISH;
3384 }
3385
3386 static void *vl_api_flow_classify_dump_t_print
3387   (vl_api_flow_classify_dump_t * mp, void *handle)
3388 {
3389   u8 *s;
3390
3391   s = format (0, "SCRIPT: flow_classify_dump ");
3392   switch (mp->type)
3393     {
3394     case FLOW_CLASSIFY_TABLE_IP4:
3395       s = format (s, "type ip4 ");
3396       break;
3397     case FLOW_CLASSIFY_TABLE_IP6:
3398       s = format (s, "type ip6 ");
3399       break;
3400     default:
3401       break;
3402     }
3403
3404   FINISH;
3405 }
3406
3407 static void *vl_api_get_first_msg_id_t_print
3408   (vl_api_get_first_msg_id_t * mp, void *handle)
3409 {
3410   u8 *s;
3411
3412   s = format (0, "SCRIPT: get_first_msg_id %s ", mp->name);
3413
3414   FINISH;
3415 }
3416
3417 static void *vl_api_ioam_enable_t_print
3418   (vl_api_ioam_enable_t * mp, void *handle)
3419 {
3420   u8 *s;
3421
3422   s = format (0, "SCRIPT: ioam_enable ");
3423
3424   if (mp->trace_enable)
3425     s = format (s, "trace enabled");
3426
3427   if (mp->pot_enable)
3428     s = format (s, "POT enabled");
3429
3430   if (mp->seqno)
3431     s = format (s, "Seqno enabled");
3432
3433   if (mp->analyse)
3434     s = format (s, "Analyse enabled");
3435
3436   FINISH;
3437 }
3438
3439 static void *vl_api_ioam_disable_t_print
3440   (vl_api_ioam_disable_t * mp, void *handle)
3441 {
3442   u8 *s;
3443
3444   s = format (0, "SCRIPT: ioam_disable ");
3445   s = format (s, "trace disabled");
3446   s = format (s, "POT disabled");
3447   s = format (s, "Seqno disabled");
3448   s = format (s, "Analyse disabled");
3449
3450   FINISH;
3451 }
3452
3453 static void *vl_api_feature_enable_disable_t_print
3454   (vl_api_feature_enable_disable_t * mp, void *handle)
3455 {
3456   u8 *s;
3457
3458   s = format (0, "SCRIPT: feature_enable_disable ");
3459   s = format (s, "arc_name %s ", mp->arc_name);
3460   s = format (s, "feature_name %s ", mp->feature_name);
3461   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
3462   if (!mp->enable)
3463     s = format (s, "disable");
3464
3465   FINISH;
3466 }
3467
3468 static void *vl_api_sw_interface_tag_add_del_t_print
3469   (vl_api_sw_interface_tag_add_del_t * mp, void *handle)
3470 {
3471   u8 *s;
3472
3473   s = format (0, "SCRIPT: sw_interface_tag_add_del ");
3474   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
3475   if (mp->is_add)
3476     s = format (s, "tag %s ", mp->tag);
3477   else
3478     s = format (s, "del ");
3479
3480   FINISH;
3481 }
3482
3483 static void *vl_api_hw_interface_set_mtu_t_print
3484   (vl_api_hw_interface_set_mtu_t * mp, void *handle)
3485 {
3486   u8 *s;
3487
3488   s = format (0, "SCRIPT: sw_interface_set_mtu ");
3489   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
3490   s = format (s, "tag %d ", ntohs (mp->mtu));
3491
3492   FINISH;
3493 }
3494
3495 static void *vl_api_p2p_ethernet_add_t_print
3496   (vl_api_p2p_ethernet_add_t * mp, void *handle)
3497 {
3498   u8 *s;
3499
3500   s = format (0, "SCRIPT: p2p_ethernet_add ");
3501   s = format (s, "sw_if_index %d ", ntohl (mp->parent_if_index));
3502   s = format (s, "remote_mac %U ", format_ethernet_address, mp->remote_mac);
3503
3504   FINISH;
3505 }
3506
3507 static void *vl_api_p2p_ethernet_del_t_print
3508   (vl_api_p2p_ethernet_del_t * mp, void *handle)
3509 {
3510   u8 *s;
3511
3512   s = format (0, "SCRIPT: p2p_ethernet_del ");
3513   s = format (s, "sw_if_index %d ", ntohl (mp->parent_if_index));
3514   s = format (s, "remote_mac %U ", format_ethernet_address, mp->remote_mac);
3515
3516   FINISH;
3517 }
3518
3519 static void *vl_api_tcp_configure_src_addresses_t_print
3520   (vl_api_tcp_configure_src_addresses_t * mp, void *handle)
3521 {
3522   u8 *s;
3523
3524   s = format (0, "SCRIPT: tcp_configure_src_addresses ");
3525   if (mp->is_ipv6)
3526     s = format (s, "%U - %U ",
3527                 format_ip6_address, (ip6_address_t *) mp->first_address,
3528                 format_ip6_address, (ip6_address_t *) mp->last_address);
3529   else
3530     s = format (s, "%U - %U ",
3531                 format_ip4_address, (ip4_address_t *) mp->first_address,
3532                 format_ip4_address, (ip4_address_t *) mp->last_address);
3533
3534   if (mp->vrf_id)
3535     s = format (s, "vrf %d ", ntohl (mp->vrf_id));
3536
3537   FINISH;
3538 }
3539
3540 static void *vl_api_app_namespace_add_del_t_print
3541   (vl_api_app_namespace_add_del_t * mp, void *handle)
3542 {
3543   u8 *s, *ns_id = 0;
3544   u8 len = clib_min (mp->namespace_id_len,
3545                      ARRAY_LEN (mp->namespace_id) - 1);
3546   mp->namespace_id[len] = 0;
3547   s = format (0, "SCRIPT: app_namespace_add_del ");
3548   s = format (s, "ns-id %s secret %lu sw_if_index %d ipv4_fib_id %d "
3549               "ipv6_fib_id %d", (char *) mp->namespace_id, mp->secret,
3550               clib_net_to_host_u32 (mp->sw_if_index),
3551               clib_net_to_host_u32 (mp->ip4_fib_id),
3552               clib_net_to_host_u32 (mp->ip6_fib_id));
3553   FINISH;
3554 }
3555
3556 static void *vl_api_lldp_config_t_print
3557   (vl_api_lldp_config_t * mp, void *handle)
3558 {
3559   u8 *s;
3560
3561   s = format (0, "SCRIPT: lldp_config ");
3562   s = format (s, "system_name %s ", mp->system_name);
3563   s = format (s, "tx_hold %d ", ntohl (mp->tx_hold));
3564   s = format (s, "tx_interval %d ", ntohl (mp->tx_interval));
3565   FINISH;
3566 }
3567
3568 static void *vl_api_dns_enable_disable_t_print
3569   (vl_api_dns_enable_disable_t * mp, void *handle)
3570 {
3571   u8 *s;
3572
3573   s = format (0, "SCRIPT: dns_enable_disable ");
3574   s = format (s, "%s ", mp->enable ? "enable" : "disable");
3575
3576   FINISH;
3577 }
3578
3579 static void *vl_api_sw_interface_set_lldp_t_print
3580   (vl_api_sw_interface_set_lldp_t * mp, void *handle)
3581 {
3582   u8 *s;
3583   u8 null_data[256];
3584
3585   clib_memset (null_data, 0, sizeof (null_data));
3586
3587   s = format (0, "SCRIPT: sw_interface_set_lldp ");
3588   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
3589
3590   if (memcmp (mp->port_desc, null_data, sizeof (mp->port_desc)))
3591     s = format (s, "port_desc %s ", mp->port_desc);
3592
3593   if (memcmp (mp->mgmt_ip4, null_data, sizeof (mp->mgmt_ip4)))
3594     s = format (s, "mgmt_ip4 %U ", format_ip4_address, mp->mgmt_ip4);
3595
3596   if (memcmp (mp->mgmt_ip6, null_data, sizeof (mp->mgmt_ip6)))
3597     s = format (s, "mgmt_ip6 %U ", format_ip6_address, mp->mgmt_ip6);
3598
3599   if (memcmp (mp->mgmt_oid, null_data, sizeof (mp->mgmt_oid)))
3600     s = format (s, "mgmt_oid %s ", mp->mgmt_oid);
3601
3602   if (mp->enable == 0)
3603     s = format (s, "disable ");
3604
3605   FINISH;
3606 }
3607
3608 static void *vl_api_dns_name_server_add_del_t_print
3609   (vl_api_dns_name_server_add_del_t * mp, void *handle)
3610 {
3611   u8 *s;
3612
3613   s = format (0, "SCRIPT: dns_name_server_add_del ");
3614   if (mp->is_ip6)
3615     s = format (s, "%U ", format_ip6_address,
3616                 (ip6_address_t *) mp->server_address);
3617   else
3618     s = format (s, "%U ", format_ip4_address,
3619                 (ip4_address_t *) mp->server_address);
3620
3621   if (mp->is_add == 0)
3622     s = format (s, "del ");
3623
3624   FINISH;
3625 }
3626
3627 static void *vl_api_dns_resolve_name_t_print
3628   (vl_api_dns_resolve_name_t * mp, void *handle)
3629 {
3630   u8 *s;
3631
3632   s = format (0, "SCRIPT: dns_resolve_name ");
3633   s = format (s, "%s ", mp->name);
3634   FINISH;
3635 }
3636
3637 static void *vl_api_dns_resolve_ip_t_print
3638   (vl_api_dns_resolve_ip_t * mp, void *handle)
3639 {
3640   u8 *s;
3641
3642   s = format (0, "SCRIPT: dns_resolve_ip ");
3643   if (mp->is_ip6)
3644     s = format (s, "%U ", format_ip6_address, mp->address);
3645   else
3646     s = format (s, "%U ", format_ip4_address, mp->address);
3647   FINISH;
3648 }
3649
3650 static void *vl_api_session_rule_add_del_t_print
3651   (vl_api_session_rule_add_del_t * mp, void *handle)
3652 {
3653   u8 *s;
3654   char *proto = mp->transport_proto == 0 ? "tcp" : "udp";
3655   s = format (0, "SCRIPT: session_rule_add_del ");
3656   mp->tag[sizeof (mp->tag) - 1] = 0;
3657   if (mp->is_ip4)
3658     s = format (s, "appns %d scope %d %s %U/%d %d %U/%d %d action %u tag %s",
3659                 mp->appns_index, mp->scope, proto, format_ip4_address,
3660                 (ip4_address_t *) mp->lcl_ip, mp->lcl_plen,
3661                 format_ip4_address, (ip4_address_t *) mp->rmt_ip,
3662                 mp->rmt_plen, mp->action_index, mp->tag);
3663   else
3664     s = format (s, "appns %d scope %d %s %U/%d %d %U/%d %d action %u tag %s",
3665                 mp->appns_index, mp->scope, proto, format_ip6_address,
3666                 (ip6_address_t *) mp->lcl_ip, mp->lcl_plen,
3667                 format_ip6_address, (ip6_address_t *) mp->rmt_ip,
3668                 mp->rmt_plen, mp->action_index, mp->tag);
3669   FINISH;
3670 }
3671
3672 static void *vl_api_ip_container_proxy_add_del_t_print
3673   (vl_api_ip_container_proxy_add_del_t * mp, void *handle)
3674 {
3675   u8 *s;
3676   s = format (0, "SCRIPT: ip_container_proxy_add_del ");
3677   if (mp->is_ip4)
3678     s = format (s, "is_add %d address %U/%d sw_if_index %d",
3679                 mp->is_add, format_ip4_address,
3680                 (ip4_address_t *) mp->ip, mp->plen, mp->sw_if_index);
3681   else
3682     s = format (s, "is_add %d address %U/%d sw_if_index %d",
3683                 mp->is_add, format_ip6_address,
3684                 (ip6_address_t *) mp->ip, mp->plen, mp->sw_if_index);
3685   FINISH;
3686 }
3687
3688 static void *vl_api_qos_record_enable_disable_t_print
3689   (vl_api_qos_record_enable_disable_t * mp, void *handle)
3690 {
3691   u8 *s;
3692
3693   s = format (0, "SCRIPT: qos_record_enable_disable ");
3694   s = format (s, "sw_if_index %d ", ntohl (mp->sw_if_index));
3695   s =
3696     format (s, "input_source %U ", format_qos_source,
3697             ntohl (mp->input_source));
3698
3699   if (!mp->enable)
3700     s = format (s, "disable ");
3701
3702   FINISH;
3703 }
3704
3705 #define foreach_custom_print_no_arg_function                            \
3706 _(lisp_eid_table_vni_dump)                                              \
3707 _(lisp_map_resolver_dump)                                               \
3708 _(lisp_map_server_dump)                                                 \
3709 _(show_lisp_rloc_probe_state)                                           \
3710 _(show_lisp_map_register_state)                                         \
3711 _(show_lisp_map_request_mode)
3712
3713 #define _(f)                                                            \
3714 static void * vl_api_ ## f ## _t_print                                  \
3715   (vl_api_ ## f ## _t * mp, void * handle)                              \
3716 {                                                                       \
3717   u8 * s;                                                               \
3718   s = format (0, "SCRIPT: " #f );                                       \
3719   FINISH;                                                               \
3720 }
3721 foreach_custom_print_no_arg_function
3722 #undef _
3723 #define foreach_custom_print_function                                   \
3724 _(CREATE_LOOPBACK, create_loopback)                                     \
3725 _(CREATE_LOOPBACK_INSTANCE, create_loopback_instance)                   \
3726 _(SW_INTERFACE_SET_FLAGS, sw_interface_set_flags)                       \
3727 _(SW_INTERFACE_EVENT, sw_interface_event)                               \
3728 _(SW_INTERFACE_ADD_DEL_ADDRESS, sw_interface_add_del_address)           \
3729 _(SW_INTERFACE_SET_TABLE, sw_interface_set_table)                       \
3730 _(SW_INTERFACE_SET_MPLS_ENABLE, sw_interface_set_mpls_enable)           \
3731 _(SW_INTERFACE_SET_VPATH, sw_interface_set_vpath)                       \
3732 _(SW_INTERFACE_SET_VXLAN_BYPASS, sw_interface_set_vxlan_bypass)         \
3733 _(SW_INTERFACE_SET_GENEVE_BYPASS, sw_interface_set_geneve_bypass)       \
3734 _(TAP_CONNECT, tap_connect)                                             \
3735 _(TAP_MODIFY, tap_modify)                                               \
3736 _(TAP_DELETE, tap_delete)                                               \
3737 _(SW_INTERFACE_TAP_DUMP, sw_interface_tap_dump)                         \
3738 _(BOND_CREATE, bond_create)                                             \
3739 _(BOND_DELETE, bond_delete)                                             \
3740 _(BOND_ENSLAVE, bond_enslave)                                           \
3741 _(BOND_DETACH_SLAVE, bond_detach_slave)                                 \
3742 _(TAP_CREATE_V2, tap_create_v2)                                         \
3743 _(TAP_DELETE_V2, tap_delete_v2)                                         \
3744 _(SW_INTERFACE_TAP_V2_DUMP, sw_interface_tap_v2_dump)                   \
3745 _(IP_ADD_DEL_ROUTE, ip_add_del_route)                                   \
3746 _(IP_TABLE_ADD_DEL, ip_table_add_del)                                   \
3747 _(MPLS_ROUTE_ADD_DEL, mpls_route_add_del)                               \
3748 _(MPLS_TABLE_ADD_DEL, mpls_table_add_del)                               \
3749 _(PROXY_ARP_ADD_DEL, proxy_arp_add_del)                                 \
3750 _(PROXY_ARP_INTFC_ENABLE_DISABLE, proxy_arp_intfc_enable_disable)       \
3751 _(MPLS_TUNNEL_ADD_DEL, mpls_tunnel_add_del)                             \
3752 _(SR_MPLS_POLICY_ADD, sr_mpls_policy_add)                               \
3753 _(SR_MPLS_POLICY_DEL, sr_mpls_policy_del)                               \
3754 _(SW_INTERFACE_SET_UNNUMBERED, sw_interface_set_unnumbered)             \
3755 _(IP_NEIGHBOR_ADD_DEL, ip_neighbor_add_del)                             \
3756 _(CREATE_VLAN_SUBIF, create_vlan_subif)                                 \
3757 _(CREATE_SUBIF, create_subif)                                           \
3758 _(OAM_ADD_DEL, oam_add_del)                                             \
3759 _(RESET_FIB, reset_fib)                                                 \
3760 _(DHCP_PROXY_CONFIG, dhcp_proxy_config)                                 \
3761 _(DHCP_PROXY_SET_VSS, dhcp_proxy_set_vss)                               \
3762 _(SET_IP_FLOW_HASH, set_ip_flow_hash)                                   \
3763 _(SW_INTERFACE_IP6ND_RA_PREFIX, sw_interface_ip6nd_ra_prefix)           \
3764 _(SW_INTERFACE_IP6ND_RA_CONFIG, sw_interface_ip6nd_ra_config)           \
3765 _(SET_ARP_NEIGHBOR_LIMIT, set_arp_neighbor_limit)                       \
3766 _(L2_PATCH_ADD_DEL, l2_patch_add_del)                                   \
3767 _(SR_LOCALSID_ADD_DEL, sr_localsid_add_del)                             \
3768 _(SR_STEERING_ADD_DEL, sr_steering_add_del)                             \
3769 _(SR_POLICY_ADD, sr_policy_add)                                         \
3770 _(SR_POLICY_MOD, sr_policy_mod)                                         \
3771 _(SR_POLICY_DEL, sr_policy_del)                                         \
3772 _(SW_INTERFACE_SET_L2_XCONNECT, sw_interface_set_l2_xconnect)           \
3773 _(L2FIB_ADD_DEL, l2fib_add_del)                                         \
3774 _(L2FIB_FLUSH_ALL, l2fib_flush_all)                                     \
3775 _(L2FIB_FLUSH_BD, l2fib_flush_bd)                                       \
3776 _(L2FIB_FLUSH_INT, l2fib_flush_int)                                     \
3777 _(L2_FLAGS, l2_flags)                                                   \
3778 _(BRIDGE_FLAGS, bridge_flags)                                           \
3779 _(CLASSIFY_ADD_DEL_TABLE, classify_add_del_table)                       \
3780 _(CLASSIFY_ADD_DEL_SESSION, classify_add_del_session)                   \
3781 _(SW_INTERFACE_SET_L2_BRIDGE, sw_interface_set_l2_bridge)               \
3782 _(BRIDGE_DOMAIN_ADD_DEL, bridge_domain_add_del)                         \
3783 _(BRIDGE_DOMAIN_DUMP, bridge_domain_dump)                               \
3784 _(BRIDGE_DOMAIN_SET_MAC_AGE, bridge_domain_set_mac_age)                 \
3785 _(CLASSIFY_SET_INTERFACE_IP_TABLE, classify_set_interface_ip_table)     \
3786 _(CLASSIFY_SET_INTERFACE_L2_TABLES, classify_set_interface_l2_tables)   \
3787 _(ADD_NODE_NEXT, add_node_next)                                         \
3788 _(DHCP_CLIENT_CONFIG, dhcp_client_config)                               \
3789 _(L2TPV3_CREATE_TUNNEL, l2tpv3_create_tunnel)                           \
3790 _(L2TPV3_SET_TUNNEL_COOKIES, l2tpv3_set_tunnel_cookies)                 \
3791 _(L2TPV3_INTERFACE_ENABLE_DISABLE, l2tpv3_interface_enable_disable)     \
3792 _(L2TPV3_SET_LOOKUP_KEY, l2tpv3_set_lookup_key)                         \
3793 _(SW_IF_L2TPV3_TUNNEL_DUMP, sw_if_l2tpv3_tunnel_dump)                   \
3794 _(VXLAN_ADD_DEL_TUNNEL, vxlan_add_del_tunnel)                           \
3795 _(VXLAN_TUNNEL_DUMP, vxlan_tunnel_dump)                                 \
3796 _(VXLAN_OFFLOAD_RX, vxlan_offload_rx)                                   \
3797 _(GENEVE_ADD_DEL_TUNNEL, geneve_add_del_tunnel)                         \
3798 _(GENEVE_TUNNEL_DUMP, geneve_tunnel_dump)                               \
3799 _(GRE_ADD_DEL_TUNNEL, gre_add_del_tunnel)                               \
3800 _(GRE_TUNNEL_DUMP, gre_tunnel_dump)                                     \
3801 _(L2_FIB_CLEAR_TABLE, l2_fib_clear_table)                               \
3802 _(L2_INTERFACE_EFP_FILTER, l2_interface_efp_filter)                     \
3803 _(L2_INTERFACE_VLAN_TAG_REWRITE, l2_interface_vlan_tag_rewrite)         \
3804 _(CREATE_VHOST_USER_IF, create_vhost_user_if)                           \
3805 _(MODIFY_VHOST_USER_IF, modify_vhost_user_if)                           \
3806 _(DELETE_VHOST_USER_IF, delete_vhost_user_if)                           \
3807 _(SW_INTERFACE_DUMP, sw_interface_dump)                                 \
3808 _(CONTROL_PING, control_ping)                                           \
3809 _(WANT_INTERFACE_EVENTS, want_interface_events)                         \
3810 _(CLI, cli)                                                             \
3811 _(CLI_INBAND, cli_inband)                                               \
3812 _(MEMCLNT_CREATE, memclnt_create)                                       \
3813 _(SOCKCLNT_CREATE, sockclnt_create)                                     \
3814 _(SW_INTERFACE_VHOST_USER_DUMP, sw_interface_vhost_user_dump)           \
3815 _(SHOW_VERSION, show_version)                                           \
3816 _(L2_FIB_TABLE_DUMP, l2_fib_table_dump)                                 \
3817 _(VXLAN_GPE_ADD_DEL_TUNNEL, vxlan_gpe_add_del_tunnel)                   \
3818 _(VXLAN_GPE_TUNNEL_DUMP, vxlan_gpe_tunnel_dump)                         \
3819 _(INTERFACE_NAME_RENUMBER, interface_name_renumber)                     \
3820 _(IP_PROBE_NEIGHBOR, ip_probe_neighbor)                                 \
3821 _(IP_SCAN_NEIGHBOR_ENABLE_DISABLE, ip_scan_neighbor_enable_disable)     \
3822 _(WANT_IP4_ARP_EVENTS, want_ip4_arp_events)                             \
3823 _(WANT_IP6_ND_EVENTS, want_ip6_nd_events)                               \
3824 _(WANT_L2_MACS_EVENTS, want_l2_macs_events)                             \
3825 _(INPUT_ACL_SET_INTERFACE, input_acl_set_interface)                     \
3826 _(IP_ADDRESS_DUMP, ip_address_dump)                                     \
3827 _(IP_DUMP, ip_dump)                                                     \
3828 _(DELETE_LOOPBACK, delete_loopback)                                     \
3829 _(BD_IP_MAC_ADD_DEL, bd_ip_mac_add_del)                                 \
3830 _(COP_INTERFACE_ENABLE_DISABLE, cop_interface_enable_disable)           \
3831 _(COP_WHITELIST_ENABLE_DISABLE, cop_whitelist_enable_disable)           \
3832 _(AF_PACKET_CREATE, af_packet_create)                                   \
3833 _(AF_PACKET_DELETE, af_packet_delete)                                   \
3834 _(AF_PACKET_DUMP, af_packet_dump)                                       \
3835 _(SW_INTERFACE_CLEAR_STATS, sw_interface_clear_stats)                   \
3836 _(MPLS_FIB_DUMP, mpls_fib_dump)                                         \
3837 _(MPLS_TUNNEL_DUMP, mpls_tunnel_dump)                                   \
3838 _(CLASSIFY_TABLE_IDS,classify_table_ids)                                \
3839 _(CLASSIFY_TABLE_BY_INTERFACE, classify_table_by_interface)             \
3840 _(CLASSIFY_TABLE_INFO,classify_table_info)                              \
3841 _(CLASSIFY_SESSION_DUMP,classify_session_dump)                          \
3842 _(SET_IPFIX_EXPORTER, set_ipfix_exporter)                               \
3843 _(IPFIX_EXPORTER_DUMP, ipfix_exporter_dump)                             \
3844 _(SET_IPFIX_CLASSIFY_STREAM, set_ipfix_classify_stream)                 \
3845 _(IPFIX_CLASSIFY_STREAM_DUMP, ipfix_classify_stream_dump)               \
3846 _(IPFIX_CLASSIFY_TABLE_ADD_DEL, ipfix_classify_table_add_del)           \
3847 _(IPFIX_CLASSIFY_TABLE_DUMP, ipfix_classify_table_dump)                 \
3848 _(SW_INTERFACE_SPAN_ENABLE_DISABLE, sw_interface_span_enable_disable)   \
3849 _(SW_INTERFACE_SPAN_DUMP, sw_interface_span_dump)                       \
3850 _(GET_NEXT_INDEX, get_next_index)                                       \
3851 _(PG_CREATE_INTERFACE,pg_create_interface)                              \
3852 _(PG_CAPTURE, pg_capture)                                               \
3853 _(PG_ENABLE_DISABLE, pg_enable_disable)                                 \
3854 _(POLICER_ADD_DEL, policer_add_del)                                     \
3855 _(POLICER_DUMP, policer_dump)                                           \
3856 _(POLICER_CLASSIFY_SET_INTERFACE, policer_classify_set_interface)       \
3857 _(POLICER_CLASSIFY_DUMP, policer_classify_dump)                         \
3858 _(IP_SOURCE_AND_PORT_RANGE_CHECK_ADD_DEL,                               \
3859   ip_source_and_port_range_check_add_del)                               \
3860 _(IP_SOURCE_AND_PORT_RANGE_CHECK_INTERFACE_ADD_DEL,                     \
3861   ip_source_and_port_range_check_interface_add_del)                     \
3862 _(LISP_ENABLE_DISABLE, lisp_enable_disable)                             \
3863 _(GPE_ENABLE_DISABLE, gpe_enable_disable)                               \
3864 _(GPE_ADD_DEL_IFACE, gpe_add_del_iface)                                 \
3865 _(LISP_PITR_SET_LOCATOR_SET, lisp_pitr_set_locator_set)                 \
3866 _(LISP_MAP_REQUEST_MODE, lisp_map_request_mode)                         \
3867 _(SHOW_LISP_MAP_REQUEST_MODE, show_lisp_map_request_mode)               \
3868 _(LISP_ADD_DEL_REMOTE_MAPPING, lisp_add_del_remote_mapping)             \
3869 _(LISP_ADD_DEL_ADJACENCY, lisp_add_del_adjacency)                       \
3870 _(LISP_ADD_DEL_MAP_REQUEST_ITR_RLOCS,                                   \
3871   lisp_add_del_map_request_itr_rlocs)                                   \
3872 _(LISP_EID_TABLE_ADD_DEL_MAP, lisp_eid_table_add_del_map)               \
3873 _(LISP_ADD_DEL_LOCAL_EID, lisp_add_del_local_eid)                       \
3874 _(GPE_ADD_DEL_FWD_ENTRY, gpe_add_del_fwd_entry)                         \
3875 _(LISP_ADD_DEL_LOCATOR_SET, lisp_add_del_locator_set)                   \
3876 _(LISP_ADD_DEL_MAP_RESOLVER, lisp_add_del_map_resolver)                 \
3877 _(LISP_ADD_DEL_LOCATOR, lisp_add_del_locator)                           \
3878 _(LISP_EID_TABLE_DUMP, lisp_eid_table_dump)                             \
3879 _(LISP_EID_TABLE_MAP_DUMP, lisp_eid_table_map_dump)                     \
3880 _(LISP_EID_TABLE_VNI_DUMP, lisp_eid_table_vni_dump)                     \
3881 _(LISP_MAP_RESOLVER_DUMP, lisp_map_resolver_dump)                       \
3882 _(LISP_MAP_SERVER_DUMP, lisp_map_server_dump)                           \
3883 _(LISP_LOCATOR_SET_DUMP, lisp_locator_set_dump)                         \
3884 _(LISP_LOCATOR_DUMP, lisp_locator_dump)                                 \
3885 _(LISP_ADJACENCIES_GET, lisp_adjacencies_get)                           \
3886 _(SHOW_LISP_RLOC_PROBE_STATE, show_lisp_rloc_probe_state)               \
3887 _(SHOW_LISP_MAP_REGISTER_STATE, show_lisp_map_register_state)           \
3888 _(LISP_RLOC_PROBE_ENABLE_DISABLE, lisp_rloc_probe_enable_disable)       \
3889 _(LISP_MAP_REGISTER_ENABLE_DISABLE, lisp_map_register_enable_disable)   \
3890 _(IPSEC_GRE_ADD_DEL_TUNNEL, ipsec_gre_add_del_tunnel)                   \
3891 _(IPSEC_GRE_TUNNEL_DUMP, ipsec_gre_tunnel_dump)                         \
3892 _(DELETE_SUBIF, delete_subif)                                           \
3893 _(L2_INTERFACE_PBB_TAG_REWRITE, l2_interface_pbb_tag_rewrite)           \
3894 _(SET_PUNT, set_punt)                                                   \
3895 _(FLOW_CLASSIFY_SET_INTERFACE, flow_classify_set_interface)             \
3896 _(FLOW_CLASSIFY_DUMP, flow_classify_dump)                               \
3897 _(GET_FIRST_MSG_ID, get_first_msg_id)                                   \
3898 _(IOAM_ENABLE, ioam_enable)                                             \
3899 _(IOAM_DISABLE, ioam_disable)                                           \
3900 _(IP_FIB_DUMP, ip_fib_dump)                                             \
3901 _(IP6_FIB_DUMP, ip6_fib_dump)                                           \
3902 _(FEATURE_ENABLE_DISABLE, feature_enable_disable)                       \
3903 _(SW_INTERFACE_TAG_ADD_DEL, sw_interface_tag_add_del)                   \
3904 _(HW_INTERFACE_SET_MTU, hw_interface_set_mtu)                           \
3905 _(P2P_ETHERNET_ADD, p2p_ethernet_add)                                   \
3906 _(P2P_ETHERNET_DEL, p2p_ethernet_del)                                   \
3907 _(TCP_CONFIGURE_SRC_ADDRESSES, tcp_configure_src_addresses)             \
3908 _(APP_NAMESPACE_ADD_DEL, app_namespace_add_del)                         \
3909 _(LLDP_CONFIG, lldp_config)                                             \
3910 _(SW_INTERFACE_SET_LLDP, sw_interface_set_lldp)                         \
3911 _(DNS_ENABLE_DISABLE, dns_enable_disable)                               \
3912 _(DNS_NAME_SERVER_ADD_DEL, dns_name_server_add_del)                     \
3913 _(DNS_RESOLVE_NAME, dns_resolve_name)                                   \
3914 _(DNS_RESOLVE_IP, dns_resolve_ip)                                       \
3915 _(SESSION_RULE_ADD_DEL, session_rule_add_del)                           \
3916 _(OUTPUT_ACL_SET_INTERFACE, output_acl_set_interface)                   \
3917 _(QOS_RECORD_ENABLE_DISABLE, qos_record_enable_disable)
3918   void
3919 vl_msg_api_custom_dump_configure (api_main_t * am)
3920 {
3921 #define _(n,f) am->msg_print_handlers[VL_API_##n]       \
3922     = (void *) vl_api_##f##_t_print;
3923   foreach_custom_print_function;
3924 #undef _
3925 }
3926
3927 /*
3928  * fd.io coding-style-patch-verification: ON
3929  *
3930  * Local Variables: eval: (c-set-style "gnu") End:
3931  */