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