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