Implement a loopback instance allocation scheme.
[vpp.git] / src / vpp / api / vpe.api
1 /*
2  * Copyright (c) 2015-2016 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 /** \file
17
18     This file defines vpe control-plane API messages which are generally
19     called through a shared memory interface. 
20 */
21
22 /* 
23  * Note: API placement cleanup in progress
24  * If you're looking for interface APIs, please
25  * see .../src/vnet/{interface.api,interface_api.c}
26  * IP APIs: see .../src/vnet/ip/{ip.api, ip_api.c}
27  * TAP APIs: see .../src/vnet/unix/{tap.api, tap_api.c}
28  * VXLAN APIs: see .../src/vnet/vxlan/{vxlan.api, vxlan_api.c}
29  * AF-PACKET APIs: see ... /vnet/devices/af_packet/{af_packet.api, af_packet_api.c}
30  * NETMAP APIs: see ... /src/vnet/devices/netmap/{netmap.api, netmap_api.c}
31  * VHOST-USER APIs: see .../vnet/devices/virtio/{vhost_user.api, vhost_user_api.c}
32  * VXLAN GPE APIs: see .../src/vnet/vxlan-gpe/{vxlan_gpe.api, vxlan_gpe_api.c}
33  * GRE APIs: see .../src/vnet/gre/{gre.api, gre_api.c}
34  * L2 APIs: see .../src/vnet/l2/{l2.api, l2_api.c}
35  * L2TP APIs: see .../src/vnet/l2tp/{l2tp.api, l2tp_api.c}
36  * BFD APIs: see .../src/vnet/bfd/{bfd.api, bfd_api.c}
37  * IPSEC APIs: see .../src/vnet/ipsec/{ipsec.api, ipsec_api.c}
38  * IPSEC-GRE APIs: see .../src/vnet/ipsec-gre/{ipsec_gre.api, ipsec_gre_api.c}
39  * LISP APIs: see .../src/vnet/lisp/{lisp.api, lisp_api.c}
40  * LISP-GPE APIs: see .../src/vnet/lisp-gpe/{lisp_gpe.api, lisp_gpe_api.c}
41  * SESSION APIs: .../vnet/session/{session.api session_api.c}
42  * MPLS APIs: see .../src/vnet/mpls/{mpls.api, mpls_api.c}
43  * SR APIs: see .../src/vnet/sr/{sr.api, sr_api.c}
44  * CLASSIFY APIs: see ... /src/vnet/classify/{classify.api, classify_api.c}
45  * FLOW APIs: see ... /src/vnet/flow/{flow.api, flow_api.c}
46  * DHCP APIs: see ... /src/vnet/dhcp/{dhcpk.api, dhcp_api.c}
47  * COP APIs: see ... /src/vnet/cop/{cop.api, cop_api.c}
48  * POLICER APIs: see ... /src/vnet/policer/{policer.api, policer_api.c}
49  */
50
51 /** \brief Create a new subinterface with the given vlan id
52     @param client_index - opaque cookie to identify the sender
53     @param context - sender context, to match reply w/ request
54     @param sw_if_index - software index of the new vlan's parent interface
55     @param vlan_id - vlan tag of the new interface
56 */
57 define create_vlan_subif
58 {
59   u32 client_index;
60   u32 context;
61   u32 sw_if_index;
62   u32 vlan_id;
63 };
64
65 /** \brief Reply for the vlan subinterface create request
66     @param context - returned sender context, to match reply w/ request
67     @param retval - return code
68     @param sw_if_index - software index allocated for the new subinterface
69 */
70 define create_vlan_subif_reply
71 {
72   u32 context;
73   i32 retval;
74   u32 sw_if_index;
75 };
76
77 /** \brief Enable or Disable MPLS on and interface
78     @param client_index - opaque cookie to identify the sender
79     @param context - sender context, to match reply w/ request
80     @param sw_if_index - index of the interface
81     @param enable - if non-zero enable, else disable
82 */
83 define sw_interface_set_mpls_enable
84 {
85   u32 client_index;
86   u32 context;
87   u32 sw_if_index;
88   u8 enable;
89 };
90
91 /** \brief Reply for MPLS state on an interface
92     @param context - returned sender context, to match reply w/ request
93     @param retval - return code
94 */
95 define sw_interface_set_mpls_enable_reply
96 {
97   u32 context;
98   i32 retval;
99 };
100
101 /** \brief Proxy ARP add / del request
102     @param client_index - opaque cookie to identify the sender
103     @param context - sender context, to match reply w/ request
104     @param vrf_id - VRF / Fib table ID
105     @param is_add - 1 if adding the Proxy ARP range, 0 if deleting
106     @param low_address[4] - Low address of the Proxy ARP range
107     @param hi_address[4] - High address of the Proxy ARP range
108 */
109 define proxy_arp_add_del
110 {
111   u32 client_index;
112   u32 context;
113   u32 vrf_id;
114   u8 is_add;
115   u8 low_address[4];
116   u8 hi_address[4];
117 };
118
119 /** \brief Reply for proxy arp add / del request
120     @param context - returned sender context, to match reply w/ request
121     @param retval - return code
122 */
123 define proxy_arp_add_del_reply
124 {
125   u32 context;
126   i32 retval;
127 };
128
129 /** \brief Proxy ARP add / del request
130     @param client_index - opaque cookie to identify the sender
131     @param context - sender context, to match reply w/ request
132     @param sw_if_index - Which interface to enable / disable Proxy Arp on
133     @param enable_disable - 1 to enable Proxy ARP on interface, 0 to disable
134 */
135 define proxy_arp_intfc_enable_disable
136 {
137   u32 client_index;
138   u32 context;
139   u32 sw_if_index;
140   /* 1 = on, 0 = off */
141   u8 enable_disable;
142 };
143
144 /** \brief Reply for Proxy ARP interface enable / disable request
145     @param context - returned sender context, to match reply w/ request
146     @param retval - return code
147 */
148 define proxy_arp_intfc_enable_disable_reply
149 {
150   u32 context;
151   i32 retval;
152 };
153
154 /** \brief Reset VRF (remove all routes etc) request
155     @param client_index - opaque cookie to identify the sender
156     @param context - sender context, to match reply w/ request
157     @param is_ipv6 - 1 for IPv6 neighbor, 0 for IPv4
158     @param vrf_id - ID of th FIB table / VRF to reset
159 */
160 define reset_vrf
161 {
162   u32 client_index;
163   u32 context;
164   u8 is_ipv6;
165   u32 vrf_id;
166 };
167
168 /** \brief Reply for Reset VRF request
169     @param context - returned sender context, to match reply w/ request
170     @param retval - return code
171 */
172 define reset_vrf_reply
173 {
174   u32 context;
175   i32 retval;
176 };
177
178 /** \brief Is Address Reachable request - DISABLED
179     @param client_index - opaque cookie to identify the sender
180     @param context - sender context, to match reply w/ request
181     @param next_hop_sw_if_index - index of interface used to get to next hop
182     @param is_ipv6 - 1 for IPv6, 0 for IPv4
183     @param is_error - address not found or does not match intf
184     @param address[] - Address in question 
185 */
186 define is_address_reachable
187 {
188   u32 client_index;             /* (api_main_t *) am->my_client_index */
189   u32 context;
190   u32 next_hop_sw_if_index;
191   u8 is_known;                  /* on reply, this is the answer */
192   u8 is_ipv6;
193   u8 is_error;                  /* address not found or does not match intf */
194   u8 address[16];
195 };
196
197 /** \brief Want Stats, register for stats updates
198     @param client_index - opaque cookie to identify the sender
199     @param context - sender context, to match reply w/ request
200     @param enable_disable - 1 = enable stats, 0 = disable
201     @param pid - pid of process requesting stats updates
202 */
203 define want_stats
204 {
205   u32 client_index;
206   u32 context;
207   u32 enable_disable;
208   u32 pid;
209 };
210
211 /** \brief Reply for Want Stats request
212     @param context - returned sender context, to match reply w/ request
213     @param retval - return code
214 */
215 define want_stats_reply
216 {
217   u32 context;
218   i32 retval;
219 };
220
221 typeonly manual_print manual_endian define ip4_fib_counter
222 {
223   u32 address;
224   u8 address_length;
225   u64 packets;
226   u64 bytes;
227 };
228
229 manual_print manual_endian define vnet_ip4_fib_counters
230 {
231   u32 vrf_id;
232   u32 count;
233   vl_api_ip4_fib_counter_t c[count];
234 };
235
236 typeonly manual_print manual_endian define ip4_nbr_counter
237 {
238   u32 address;
239   u8  link_type;
240   u64 packets;
241   u64 bytes;
242 };
243
244 /**
245  * @brief Per-neighbour (i.e. per-adjacency) coutners
246  * @param count The size of the array of counters
247  * @param sw_if_index The interface the adjacency is on
248  * @param begin Flag to indicate this is the first set of stats for this
249  *        interface. If this flag is not set the it is a continuation of
250  *        stats for this interface
251  * @param  c counters
252  */
253 manual_print manual_endian define vnet_ip4_nbr_counters
254 {
255   u32 count;
256   u32 sw_if_index;
257   u8 begin;
258   vl_api_ip4_nbr_counter_t c[count];
259 };
260
261 typeonly manual_print manual_endian define ip6_fib_counter
262 {
263   u64 address[2];
264   u8 address_length;
265   u64 packets;
266   u64 bytes;
267 };
268
269 manual_print manual_endian define vnet_ip6_fib_counters
270 {
271   u32 vrf_id;
272   u32 count;
273   vl_api_ip6_fib_counter_t c[count];
274 };
275
276 typeonly manual_print manual_endian define ip6_nbr_counter
277 {
278   u64 address[2];
279   u8  link_type;
280   u64 packets;
281   u64 bytes;
282 };
283
284 manual_print manual_endian define vnet_ip6_nbr_counters
285 {
286   u32 count;
287   u32 sw_if_index;
288   u8 begin;
289   vl_api_ip6_nbr_counter_t c[count];
290 };
291
292 /** \brief Request for a single block of summary stats
293     @param client_index - opaque cookie to identify the sender
294     @param context - sender context, to match reply w/ request
295 */
296 define vnet_get_summary_stats
297 {
298   u32 client_index;
299   u32 context;
300 };
301
302 /** \brief Reply for vnet_get_summary_stats request
303     @param context - sender context, to match reply w/ request
304     @param retval - return code for request
305     @param total_pkts -  
306     @param total_bytes -
307     @param vector_rate - 
308 */
309 define vnet_summary_stats_reply
310 {
311   u32 context;
312   i32 retval;
313   u64 total_pkts[2];
314   u64 total_bytes[2];
315   f64 vector_rate;
316 };
317
318 /** \brief OAM event structure
319     @param dst_address[] - 
320     @param state
321 */
322 define oam_event
323 {
324   u8 dst_address[4];
325   u8 state;
326 };
327
328 /** \brief Want OAM events request
329     @param client_index - opaque cookie to identify the sender
330     @param context - sender context, to match reply w/ request
331     @param enable_disable- enable if non-zero, else disable
332     @param pid - pid of the requesting process
333 */
334 define want_oam_events
335 {
336   u32 client_index;
337   u32 context;
338   u32 enable_disable;
339   u32 pid;
340 };
341
342 /** \brief Want OAM events response
343     @param context - sender context, to match reply w/ request
344     @param retval - return code for the want oam stats request
345 */
346 define want_oam_events_reply
347 {
348   u32 context;
349   i32 retval;
350 };
351
352 /** \brief OAM add / del target request
353     @param client_index - opaque cookie to identify the sender
354     @param context - sender context, to match reply w/ request
355     @param vrf_id - vrf_id of the target
356     @param src_address[] - source address to use for the updates 
357     @param dst_address[] - destination address of the target
358     @param is_add - add target if non-zero, else delete
359 */
360 define oam_add_del
361 {
362   u32 client_index;
363   u32 context;
364   u32 vrf_id;
365   u8 src_address[4];
366   u8 dst_address[4];
367   u8 is_add;
368 };
369
370 /** \brief OAM add / del target response
371     @param context - sender context, to match reply w/ request
372     @param retval - return code of the request
373 */
374 define oam_add_del_reply
375 {
376   u32 context;
377   i32 retval;
378 };
379
380 /** \brief Reset fib table request
381     @param client_index - opaque cookie to identify the sender
382     @param context - sender context, to match reply w/ request
383     @param vrf_id - vrf/table id of the fib table to reset
384     @param is_ipv6 - an ipv6 fib to reset if non-zero, else ipv4
385 */
386 define reset_fib
387 {
388   u32 client_index;
389   u32 context;
390   u32 vrf_id;
391   u8 is_ipv6;
392 };
393
394 /** \brief Reset fib response
395     @param context - sender context, to match reply w/ request
396     @param retval - return code for the reset bfib request
397 */
398 define reset_fib_reply
399 {
400   u32 context;
401   i32 retval;
402 };
403
404 /** \brief Create loopback interface request
405     @param client_index - opaque cookie to identify the sender
406     @param context - sender context, to match reply w/ request
407     @param mac_address - mac addr to assign to the interface if none-zero
408 */
409 define create_loopback
410 {
411   u32 client_index;
412   u32 context;
413   u8 mac_address[6];
414 };
415
416 /** \brief Create loopback interface response
417     @param context - sender context, to match reply w/ request
418     @param sw_if_index - sw index of the interface that was created
419     @param retval - return code for the request
420 */
421 define create_loopback_reply
422 {
423   u32 context;
424   i32 retval;
425   u32 sw_if_index;
426 };
427
428 /** \brief Create loopback interface instance request
429     @param client_index - opaque cookie to identify the sender
430     @param context - sender context, to match reply w/ request
431     @param mac_address - mac addr to assign to the interface if none-zero
432     @param is_specified - if non-0, a specific user_instance is being requested
433     @param user_instance - requested instance, ~0 => dynamically allocate
434 */
435 define create_loopback_instance
436 {
437   u32 client_index;
438   u32 context;
439   u8 mac_address[6];
440   u8 is_specified;
441   u32 user_instance;
442 };
443
444 /** \brief Create loopback interface instance response
445     @param context - sender context, to match reply w/ request
446     @param sw_if_index - sw index of the interface that was created
447     @param retval - return code for the request
448 */
449 define create_loopback_instance_reply
450 {
451   u32 context;
452   i32 retval;
453   u32 sw_if_index;
454 };
455
456 /** \brief Delete loopback interface request
457     @param client_index - opaque cookie to identify the sender
458     @param context - sender context, to match reply w/ request
459     @param sw_if_index - sw index of the interface that was created
460 */
461 define delete_loopback
462 {
463   u32 client_index;
464   u32 context;
465   u32 sw_if_index;
466 };
467
468 /** \brief Delete loopback interface response
469     @param context - sender context, to match reply w/ request
470     @param retval - return code for the request
471 */
472 define delete_loopback_reply
473 {
474   u32 context;
475   i32 retval;
476 };
477
478 /** \brief Control ping from client to api server request
479     @param client_index - opaque cookie to identify the sender
480     @param context - sender context, to match reply w/ request
481 */
482 define control_ping
483 {
484   u32 client_index;
485   u32 context;
486 };
487
488 /** \brief Control ping from the client to the server response
489     @param client_index - opaque cookie to identify the sender
490     @param context - sender context, to match reply w/ request
491     @param retval - return code for the request
492     @param vpe_pid - the pid of the vpe, returned by the server
493 */
494 define control_ping_reply
495 {
496   u32 context;
497   i32 retval;
498   u32 client_index;
499   u32 vpe_pid;
500 };
501
502 /** \brief Process a vpe parser cli string request
503     @param client_index - opaque cookie to identify the sender
504     @param context - sender context, to match reply w/ request
505     @param cmd_in_shmem - pointer to cli command string
506 */
507 define cli_request
508 {
509   u32 client_index;
510   u32 context;
511   u64 cmd_in_shmem;
512 };
513 define cli_inband
514 {
515   u32 client_index;
516   u32 context;
517   u32 length;
518   u8 cmd[length];
519 };
520
521 /** \brief vpe parser cli string response
522     @param context - sender context, to match reply w/ request
523     @param retval - return code for request
524     @param reply_in_shmem - Reply string from cli processing if any
525 */
526 define cli_reply
527 {
528   u32 context;
529   i32 retval;
530   u64 reply_in_shmem;
531 };
532 define cli_inband_reply
533 {
534   u32 context;
535   i32 retval;
536   u32 length;
537   u8 reply[length];
538 };
539
540 /** \brief Set max allowed ARP or ip6 neighbor entries request
541     @param client_index - opaque cookie to identify the sender
542     @param context - sender context, to match reply w/ request
543     @param is_ipv6 - neighbor limit if non-zero, else ARP limit
544     @param arp_neighbor_limit - the new limit, defaults are ~ 50k
545 */
546 define set_arp_neighbor_limit
547 {
548   u32 client_index;
549   u32 context;
550   u8 is_ipv6;
551   u32 arp_neighbor_limit;
552 };
553
554 /** \brief Set max allowed ARP or ip6 neighbor entries response
555     @param context - sender context, to match reply w/ request
556     @param retval - return code for request
557 */
558 define set_arp_neighbor_limit_reply
559 {
560   u32 context;
561   i32 retval;
562 };
563
564 /** \brief L2 interface patch add / del request
565     @param client_index - opaque cookie to identify the sender
566     @param context - sender context, to match reply w/ request
567     @param rx_sw_if_index - receive side interface 
568     @param tx_sw_if_index - transmit side interface
569     @param is_add - if non-zero set up the interface patch, else remove it
570 */
571 define l2_patch_add_del
572 {
573   u32 client_index;
574   u32 context;
575   u32 rx_sw_if_index;
576   u32 tx_sw_if_index;
577   u8 is_add;
578 };
579
580 /** \brief L2 interface patch add / del response
581     @param context - sender context, to match reply w/ request
582     @param retval - return code for the request
583 */
584 define l2_patch_add_del_reply
585 {
586   u32 context;
587   i32 retval;
588 };
589
590 /** \brief Interface set vpath request
591     @param client_index - opaque cookie to identify the sender
592     @param context - sender context, to match reply w/ request
593     @param sw_if_index - interface used to reach neighbor
594     @param enable - if non-zero enable, else disable
595 */
596 define sw_interface_set_vpath
597 {
598   u32 client_index;
599   u32 context;
600   u32 sw_if_index;
601   u8 enable;
602 };
603
604 /** \brief Interface set vpath response
605     @param context - sender context, to match reply w/ request
606     @param retval - return code for the request
607 */
608 define sw_interface_set_vpath_reply
609 {
610   u32 context;
611   i32 retval;
612 };
613
614 /** \brief Set L2 XConnect between two interfaces request
615     @param client_index - opaque cookie to identify the sender
616     @param context - sender context, to match reply w/ request
617     @param rx_sw_if_index - Receive interface index
618     @param tx_sw_if_index - Transmit interface index
619     @param enable - enable xconnect if not 0, else set to L3 mode
620 */
621 define sw_interface_set_l2_xconnect
622 {
623   u32 client_index;
624   u32 context;
625   u32 rx_sw_if_index;
626   u32 tx_sw_if_index;
627   u8 enable;
628 };
629
630 /** \brief Set L2 XConnect response
631     @param context - sender context, to match reply w/ request
632     @param retval - L2 XConnect request return code
633 */
634 define sw_interface_set_l2_xconnect_reply
635 {
636   u32 context;
637   i32 retval;
638 };
639
640 /** \brief Interface bridge mode request
641     @param client_index - opaque cookie to identify the sender
642     @param context - sender context, to match reply w/ request
643     @param rx_sw_if_index - the interface
644     @param bd_id - bridge domain id
645     @param bvi - Setup interface as a bvi, bridge mode only
646     @param shg - Shared horizon group, for bridge mode only
647     @param enable - Enable beige mode if not 0, else set to L3 mode
648 */
649 define sw_interface_set_l2_bridge
650 {
651   u32 client_index;
652   u32 context;
653   u32 rx_sw_if_index;
654   u32 bd_id;
655   u8 shg;
656   u8 bvi;
657   u8 enable;
658 };
659
660 /** \brief Interface bridge mode response
661     @param context - sender context, to match reply w/ request
662     @param retval - Bridge mode request return code
663 */
664 define sw_interface_set_l2_bridge_reply
665 {
666   u32 context;
667   i32 retval;
668 };
669
670 /** \brief Set bridge domain ip to mac entry request
671     @param client_index - opaque cookie to identify the sender
672     @param context - sender context, to match reply w/ request
673     @param bd_id - the bridge domain to set the flags for
674     @param is_add - if non-zero, add the entry, else clear it
675     @param is_ipv6 - if non-zero, ipv6 address, else ipv4 address
676     @param mac_address - MAC address
677     @param 
678 */
679 define bd_ip_mac_add_del
680 {
681   u32 client_index;
682   u32 context;
683   u32 bd_id;
684   u8 is_add;
685   u8 is_ipv6;
686   u8 ip_address[16];
687   u8 mac_address[6];
688 };
689
690 /** \brief Set bridge domain ip to mac entry response
691     @param context - sender context, to match reply w/ request
692     @param retval - return code for the set bridge flags request
693 */
694 define bd_ip_mac_add_del_reply
695 {
696   u32 context;
697   i32 retval;
698 };
699
700 /** \brief Set/unset the classification table for an interface request 
701     @param client_index - opaque cookie to identify the sender
702     @param context - sender context, to match reply w/ request
703     @param is_ipv6 - ipv6 if non-zero, else ipv4
704     @param sw_if_index - interface to associate with the table
705     @param table_index - index of the table, if ~0 unset the table
706 */
707 define classify_set_interface_ip_table
708 {
709   u32 client_index;
710   u32 context;
711   u8 is_ipv6;
712   u32 sw_if_index;
713   u32 table_index;              /* ~0 => off */
714 };
715
716 /** \brief Set/unset interface classification table response 
717     @param context - sender context, to match reply w/ request
718     @param retval - return code
719 */
720 define classify_set_interface_ip_table_reply
721 {
722   u32 context;
723   i32 retval;
724 };
725
726 /** \brief Set/unset l2 classification tables for an interface request
727     @param client_index - opaque cookie to identify the sender
728     @param context - sender context, to match reply w/ request
729     @param sw_if_index - interface to set/unset tables for
730     @param ip4_table_index - ip4 index, use ~0 for all 3 indexes to unset
731     @param ip6_table_index - ip6 index
732     @param other_table_index - other index
733 */
734 define classify_set_interface_l2_tables
735 {
736   u32 client_index;
737   u32 context;
738   u32 sw_if_index;
739   /* 3 x ~0 => off */
740   u32 ip4_table_index;
741   u32 ip6_table_index;
742   u32 other_table_index;
743   u8 is_input;
744 };
745
746 /** \brief Set/unset l2 classification tables for an interface response
747     @param context - sender context, to match reply w/ request
748     @param retval - return code for the request
749 */
750 define classify_set_interface_l2_tables_reply
751 {
752   u32 context;
753   i32 retval;
754 };
755
756 /** \brief Get node index using name request
757     @param client_index - opaque cookie to identify the sender
758     @param context - sender context, to match reply w/ request
759     @param node_name[] - name of the node
760 */
761 define get_node_index
762 {
763   u32 client_index;
764   u32 context;
765   u8 node_name[64];
766 };
767
768 /** \brief Get node index using name request
769     @param context - sender context, to match reply w/ request
770     @param retval - return code for the request
771     @param node_index - index of the desired node if found, else ~0
772 */
773 define get_node_index_reply
774 {
775   u32 context;
776   i32 retval;
777   u32 node_index;
778 };
779
780 /** \brief Set the next node for a given node request
781     @param client_index - opaque cookie to identify the sender
782     @param context - sender context, to match reply w/ request
783     @param node_name[] - node to add the next node to
784     @param next_name[] - node to add as the next node
785 */
786 define add_node_next
787 {
788   u32 client_index;
789   u32 context;
790   u8 node_name[64];
791   u8 next_name[64];
792 };
793
794 /** \brief IP Set the next node for a given node response
795     @param context - sender context, to match reply w/ request
796     @param retval - return code for the add next node request
797     @param next_index - the index of the next node if success, else ~0
798 */
799 define add_node_next_reply
800 {
801   u32 context;
802   i32 retval;
803   u32 next_index;
804 };
805
806 /** \brief L2 interface ethernet flow point filtering enable/disable request
807     @param client_index - opaque cookie to identify the sender
808     @param context - sender context, to match reply w/ request
809     @param sw_if_index - interface to enable/disable filtering on
810     @param enable_disable - if non-zero enable filtering, else disable
811 */
812 define l2_interface_efp_filter
813 {
814   u32 client_index;
815   u32 context;
816   u32 sw_if_index;
817   u32 enable_disable;
818 };
819
820 /** \brief L2 interface ethernet flow point filtering response
821     @param context - sender context, to match reply w/ request
822     @param retval - return code for the request
823 */
824 define l2_interface_efp_filter_reply
825 {
826   u32 context;
827   i32 retval;
828 };
829
830 define create_subif
831 {
832   u32 client_index;
833   u32 context;
834   u32 sw_if_index;
835   u32 sub_id;
836
837   /* These fields map directly onto the subif template */
838   u8 no_tags;
839   u8 one_tag;
840   u8 two_tags;
841   u8 dot1ad;                    // 0 = dot1q, 1=dot1ad
842   u8 exact_match;
843   u8 default_sub;
844   u8 outer_vlan_id_any;
845   u8 inner_vlan_id_any;
846   u16 outer_vlan_id;
847   u16 inner_vlan_id;
848 };
849
850 define create_subif_reply
851 {
852   u32 context;
853   i32 retval;
854   u32 sw_if_index;
855 };
856
857 /** \brief show version
858     @param client_index - opaque cookie to identify the sender
859     @param context - sender context, to match reply w/ request
860 */
861 define show_version
862 {
863   u32 client_index;
864   u32 context;
865 };
866
867 /** \brief show version response
868     @param context - sender context, to match reply w/ request
869     @param retval - return code for the request
870     @param program - name of the program (vpe)
871     @param version  - version of the program
872     @param build_directory - root of the workspace where the program was built
873 */
874 define show_version_reply
875 {
876   u32 context;
877   i32 retval;
878   u8 program[32];
879   u8 version[32];
880   u8 build_date[32];
881   u8 build_directory[256];
882 };
883
884 /* Gross kludge, DGMS */
885 define interface_name_renumber
886 {
887   u32 client_index;
888   u32 context;
889   u32 sw_if_index;
890   u32 new_show_dev_instance;
891 };
892
893 define interface_name_renumber_reply
894 {
895   u32 context;
896   i32 retval;
897 };
898
899 /** \brief Register for ip4 arp resolution events
900     @param client_index - opaque cookie to identify the sender
901     @param context - sender context, to match reply w/ request
902     @param enable_disable - 1 => register for events, 0 => cancel registration
903     @param pid - sender's pid
904     @param address - the exact ip4 address of interest
905 */
906 define want_ip4_arp_events
907 {
908   u32 client_index;
909   u32 context;
910   u8 enable_disable;
911   u32 pid;
912   u32 address;
913 };
914
915 /** \brief Reply for interface events registration
916     @param context - returned sender context, to match reply w/ request
917     @param retval - return code
918 */
919 define want_ip4_arp_events_reply
920 {
921   u32 context;
922   i32 retval;
923 };
924
925 /** \brief Tell client about an ip4 arp resolution event
926     @param client_index - opaque cookie to identify the sender
927     @param context - sender context, to match reply w/ request
928     @param address - the exact ip4 address of interest
929     @param pid - client pid registered to receive notification
930     @param sw_if_index - interface which received ARP packet
931     @param new_mac - the new mac address 
932     @param mac_ip - 0: resolution event, 1: mac/ip binding in bd
933 */
934 define ip4_arp_event
935 {
936   u32 client_index;
937   u32 context;
938   u32 address;
939   u32 pid;
940   u32 sw_if_index;
941   u8 new_mac[6];
942   u8 mac_ip;
943 };
944
945 /** \brief Register for ip6 nd resolution events
946     @param client_index - opaque cookie to identify the sender
947     @param context - sender context, to match reply w/ request
948     @param enable_disable - 1 => register for events, 0 => cancel registration
949     @param pid - sender's pid
950     @param address - the exact ip6 address of interest
951 */
952 define want_ip6_nd_events
953 {
954   u32 client_index;
955   u32 context;
956   u8 enable_disable;
957   u32 pid;
958   u8 address[16];
959 };
960
961 /** \brief Reply for ip6 nd resolution events registration
962     @param context - returned sender context, to match reply w/ request
963     @param retval - return code
964 */
965 define want_ip6_nd_events_reply
966 {
967   u32 context;
968   i32 retval;
969 };
970
971 /** \brief Tell client about an ip6 nd resolution or mac/ip event
972     @param client_index - opaque cookie to identify the sender
973     @param context - sender context, to match reply w/ request
974     @param pid - client pid registered to receive notification
975     @param sw_if_index - interface which received ARP packet
976     @param address - the exact ip6 address of interest
977     @param new_mac - the new mac address 
978     @param mac_ip - 0: resolution event, 1: mac/ip binding in bd
979 */
980 define ip6_nd_event
981 {
982   u32 client_index;
983   u32 context;
984   u32 pid;
985   u32 sw_if_index;
986   u8 address[16];
987   u8 new_mac[6];
988   u8 mac_ip;
989 };
990     
991 /** \brief Set/unset input ACL interface
992     @param client_index - opaque cookie to identify the sender
993     @param context - sender context, to match reply w/ request
994     @param sw_if_index - interface to set/unset input ACL
995     @param ip4_table_index - ip4 classify table index (~0 for skip)
996     @param ip6_table_index - ip6 classify table index (~0 for skip)
997     @param l2_table_index  -  l2 classify table index (~0 for skip)
998     @param is_add - Set input ACL if non-zero, else unset
999     Note: User is recommeneded to use just one valid table_index per call.
1000           (ip4_table_index, ip6_table_index, or l2_table_index)
1001 */
1002 define input_acl_set_interface
1003 {
1004   u32 client_index;
1005   u32 context;
1006   u32 sw_if_index;
1007   u32 ip4_table_index;
1008   u32 ip6_table_index;
1009   u32 l2_table_index;
1010   u8 is_add;
1011 };
1012
1013 /** \brief Set/unset input ACL interface response
1014     @param context - sender context, to match reply w/ request
1015     @param retval - return code for the request
1016 */
1017 define input_acl_set_interface_reply
1018 {
1019   u32 context;
1020   i32 retval;
1021 };
1022
1023 define get_node_graph
1024 {
1025   u32 client_index;
1026   u32 context;
1027 };
1028
1029 /** \brief get_node_graph_reply
1030     @param context - returned sender context, to match reply w/ request
1031     @param retval - return code
1032     @param reply_in_shmem - result from vlib_node_serialize, in shared
1033     memory. Process with vlib_node_unserialize, remember to switch
1034     heaps and free the result.
1035 */
1036
1037 define get_node_graph_reply
1038 {
1039   u32 context;
1040   i32 retval;
1041   u64 reply_in_shmem;
1042 };
1043
1044 /** \brief IOAM enable : Enable in-band OAM
1045     @param id - profile id
1046     @param seqno - To enable Seqno Processing
1047     @param analyse - Enabling analysis of iOAM at decap node 
1048     @param pow_enable - Proof of Work enabled or not flag
1049     @param trace_enable - iOAM Trace enabled or not flag
1050 */
1051 define ioam_enable
1052 {
1053   u32 client_index;
1054   u32 context;
1055   u16 id;
1056   u8 seqno;
1057   u8 analyse;
1058   u8 pot_enable;
1059   u8 trace_enable;
1060   u32 node_id;
1061 };
1062
1063 /** \brief iOAM Trace profile add / del response
1064     @param context - sender context, to match reply w/ request
1065     @param retval - return value for request
1066 */
1067 define ioam_enable_reply
1068 {
1069   u32 context;
1070   i32 retval;
1071 };
1072
1073 /** \brief iOAM disable
1074     @param client_index - opaque cookie to identify the sender
1075     @param context - sender context, to match reply w/ request
1076     @param index - MAP Domain index
1077 */
1078 define ioam_disable
1079 {
1080   u32 client_index;
1081   u32 context;
1082   u16 id;
1083 };
1084
1085 /** \brief iOAM disable response
1086     @param context - sender context, to match reply w/ request
1087     @param retval - return value for request
1088 */
1089 define ioam_disable_reply
1090 {
1091   u32 context;
1092   i32 retval;
1093 };
1094
1095 /** \brief Query relative index via node names
1096     @param client_index - opaque cookie to identify the sender
1097     @param context - sender context, to match reply w/ request
1098     @param node_name - name of node to find relative index from
1099     @param next_name - next node from node_name to find relative index of
1100 */
1101 define get_next_index
1102 {
1103   u32 client_index;
1104   u32 context;
1105   u8 node_name[64];
1106   u8 next_name[64];
1107 };
1108
1109 /** \brief Reply for get next node index
1110     @param context - sender context which was passed in the request
1111     @param retval - return value
1112     @param next_index - index of the next_node
1113 */
1114 define get_next_index_reply
1115 {
1116   u32 context;
1117   i32 retval;
1118   u32 next_index;
1119 };
1120
1121 /** \brief PacketGenerator create interface request
1122     @param client_index - opaque cookie to identify the sender
1123     @param context - sender context, to match reply w/ request
1124     @param interface_id - interface index
1125 */
1126 define pg_create_interface
1127 {
1128   u32 client_index;
1129   u32 context;
1130   u32 interface_id;
1131 };
1132
1133 /** \brief PacketGenerator create interface response
1134     @param context - sender context, to match reply w/ request
1135     @param retval - return value for request
1136 */
1137 define pg_create_interface_reply
1138 {
1139   u32 context;
1140   i32 retval;
1141   u32 sw_if_index;
1142 };
1143
1144 /** \brief PacketGenerator capture packets on given interface request
1145     @param client_index - opaque cookie to identify the sender
1146     @param context - sender context, to match reply w/ request
1147     @param interface_id - pg interface index
1148     @param is_enabled - 1 if enabling streams, 0 if disabling
1149     @param count - number of packets to be captured
1150     @param pcap_file - pacp file name to store captured packets
1151 */
1152 define pg_capture
1153 {
1154   u32 client_index;
1155   u32 context;
1156   u32 interface_id;
1157   u8 is_enabled;
1158   u32 count;
1159   u32 pcap_name_length;
1160   u8 pcap_file_name[pcap_name_length];
1161 };
1162
1163 /** \brief PacketGenerator capture packets response
1164     @param context - sender context, to match reply w/ request
1165     @param retval - return value for request
1166 */
1167 define pg_capture_reply
1168 {
1169   u32 context;
1170   i32 retval;
1171 };
1172
1173 /** \brief Enable / disable packet generator request
1174     @param client_index - opaque cookie to identify the sender
1175     @param context - sender context, to match reply w/ request
1176     @param is_enabled - 1 if enabling streams, 0 if disabling
1177     @param stream - stream name to be enable/disabled, if not specified handle all streams
1178 */
1179 define pg_enable_disable
1180 {
1181   u32 client_index;
1182   u32 context;
1183   u8 is_enabled;
1184   u32 stream_name_length;
1185   u8 stream_name[stream_name_length];
1186 };
1187
1188 /** \brief Reply for enable / disable packet generator
1189     @param context - returned sender context, to match reply w/ request
1190     @param retval - return code
1191 */
1192 define pg_enable_disable_reply
1193 {
1194   u32 context;
1195   i32 retval;
1196 };
1197
1198 /** \brief Configure IP source and L4 port-range check
1199     @param client_index - opaque cookie to identify the sender
1200     @param context - sender context, to match reply w/ request
1201     @param is_ip6 - 1 if source address type is IPv6
1202     @param is_add - 1 if add, 0 if delete
1203     @param mask_length - mask length for address entry
1204     @param address - array of address bytes
1205     @param number_of_ranges - length of low_port and high_port arrays (must match)
1206     @param low_ports[32] - up to 32 low end of port range entries (must have corresponding high_ports entry)
1207     @param high_ports[32] - up to 32 high end of port range entries (must have corresponding low_ports entry)
1208     @param vrf_id - fib table/vrf id to associate the source and port-range check with
1209     @note To specify a single port set low_port and high_port entry the same
1210 */
1211 define ip_source_and_port_range_check_add_del
1212 {
1213   u32 client_index;
1214   u32 context;
1215   u8 is_ipv6;
1216   u8 is_add;
1217   u8 mask_length;
1218   u8 address[16];
1219   u8 number_of_ranges;
1220   u16 low_ports[32];
1221   u16 high_ports[32];
1222   u32 vrf_id;
1223 };
1224
1225 /** \brief Configure IP source and L4 port-range check reply
1226     @param context - returned sender context, to match reply w/ request
1227     @param retval - return code
1228 */
1229 define ip_source_and_port_range_check_add_del_reply
1230 {
1231   u32 context;
1232   i32 retval;
1233 };
1234
1235 /** \brief Set interface source and L4 port-range request
1236     @param client_index - opaque cookie to identify the sender
1237     @param context - sender context, to match reply w/ request
1238     @param interface_id - interface index
1239     @param tcp_vrf_id - VRF associated with source and TCP port-range check
1240     @param udp_vrf_id - VRF associated with source and TCP port-range check
1241 */
1242 define ip_source_and_port_range_check_interface_add_del
1243 {
1244   u32 client_index;
1245   u32 context;
1246   u8 is_add;
1247   u32 sw_if_index;
1248   u32 tcp_in_vrf_id;
1249   u32 tcp_out_vrf_id;
1250   u32 udp_in_vrf_id;
1251   u32 udp_out_vrf_id;
1252 };
1253
1254 /** \brief Set interface source and L4 port-range response
1255     @param context - sender context, to match reply w/ request
1256     @param retval - return value for request
1257 */
1258 define ip_source_and_port_range_check_interface_add_del_reply
1259 {
1260   u32 context;
1261   i32 retval;
1262 };
1263
1264 /** \brief Delete sub interface request
1265     @param client_index - opaque cookie to identify the sender
1266     @param context - sender context, to match reply w/ request
1267     @param sw_if_index - sw index of the interface that was created by create_subif
1268 */
1269 define delete_subif {
1270   u32 client_index;
1271   u32 context;
1272   u32 sw_if_index;
1273 };
1274
1275 /** \brief Delete sub interface response
1276     @param context - sender context, to match reply w/ request
1277     @param retval - return code for the request
1278 */
1279 define delete_subif_reply {
1280   u32 context;
1281   i32 retval;
1282 };
1283
1284 /** \brief Punt traffic to the host
1285     @param client_index - opaque cookie to identify the sender
1286     @param context - sender context, to match reply w/ request
1287     @param is_add - add punt if non-zero, else delete
1288     @param ipv - L3 protocol 4 - IPv4, 6 - IPv6, ~0 - All
1289     @param l4_protocol - L4 protocol to be punted, only UDP (0x11) is supported
1290     @param l4_port - TCP/UDP port to be punted
1291 */
1292 define punt {
1293     u32 client_index;
1294     u32 context;
1295     u8 is_add;
1296     u8 ipv;
1297     u8 l4_protocol;
1298     u16 l4_port;
1299 };
1300
1301 /** \brief Reply to the punt request
1302     @param context - sender context which was passed in the request
1303     @param retval - return code of punt request
1304 */
1305 define punt_reply
1306 {
1307     u32 context;
1308     i32 retval;
1309 };
1310
1311 /** \brief Feature path enable/disable request
1312     @param client_index - opaque cookie to identify the sender
1313     @param context - sender context, to match reply w/ request
1314     @param sw_if_index - the interface
1315     @param enable - 1 = on, 0 = off
1316 */
1317 define feature_enable_disable {
1318     u32 client_index;
1319     u32 context;
1320     u32 sw_if_index;
1321     u8 enable;
1322     u8 arc_name[64];
1323     u8 feature_name[64];
1324 };
1325
1326 /** \brief Reply to the eature path enable/disable request
1327     @param context - sender context which was passed in the request
1328     @param retval - return code for the request
1329 */
1330 define feature_enable_disable_reply
1331 {
1332     u32 context;
1333     i32 retval;
1334 };
1335
1336 /*
1337  * Local Variables:
1338  * eval: (c-set-style "gnu")
1339  * End:
1340  */