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