3b3025d487df22303e1fd5da0d1e3dadf3c7142f
[vpp.git] / vpp / vpp-api / vpe.api
1 /* Hey Emacs use -*- mode: C -*- */
2 /*
3  * Copyright (c) 2015 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /** \file
18
19     This file defines vpe control-plane API messages which are generally
20     called through a shared memory interface. 
21 */
22
23
24 /** \brief Register for interface events
25     @param client_index - opaque cookie to identify the sender
26     @param context - sender context, to match reply w/ request
27     @param enable_disable - 1 => register for events, 0 => cancel registration
28     @param pid - sender's pid
29 */
30 define want_interface_events
31 {
32   u32 client_index;
33   u32 context;
34   u32 enable_disable;
35   u32 pid;
36 };
37
38 /** \brief Reply for interface events registration
39     @param context - returned sender context, to match reply w/ request
40     @param retval - return code
41 */
42 define want_interface_events_reply
43 {
44   u32 context;
45   i32 retval;
46 };
47
48 /** \brief Interface details structure (fix this) 
49     @param sw_if_index - index of the interface
50     @param sup_sw_if_index - index of parent interface if any, else same as sw_if_index  
51     @param l2_address_length - length of the interface's l2 address
52     @param pid - the interface's l2 address
53     @param interface_name - name of the interface
54     @param link_duplex - 1 if half duplex, 2 if full duplex
55     @param link_speed - 1 = 10M, 2 = 100M, 4 = 1G, 8 = 10G, 16 = 40G, 32 = 100G
56     @param link_MTU - max. transmittion unit 
57     @param sub_if_id - A number 0-N to uniquely identify this subif on super if
58     @param sub_dot1ad -  0 = dot1q, 1=dot1ad
59     @param sub_number_of_tags - Number of tags (0 - 2)
60     @param sub_outer_vlan_id
61     @param sub_inner_vlan_id
62     @param sub_exact_match
63     @param sub_default
64     @param sub_outer_vlan_id_any
65     @param sub_inner_vlan_id_any
66     @param vtr_op - vlan tag rewrite operation
67     @param vtr_push_dot1q
68     @param vtr_tag1
69     @param vtr_tag2
70 */
71 define sw_interface_details
72 {
73   u32 context;
74   u32 sw_if_index;
75
76   /* index of sup interface (e.g. hw interface).
77      equal to sw_if_index for super hw interface. */
78   u32 sup_sw_if_index;
79
80   /* Layer 2 address, if applicable */
81   u32 l2_address_length;
82   u8 l2_address[8];
83
84   /* Interface name */
85   u8 interface_name[64];
86
87   /* 1 = up, 0 = down */
88   u8 admin_up_down;
89   u8 link_up_down;
90
91   /* 1 = half duplex, 2 = full duplex */
92   u8 link_duplex;
93
94   /* 1 = 10M, 2 = 100M, 4 = 1G, 8 = 10G, 16 = 40G, 32 = 100G */
95   u8 link_speed;
96
97   /* MTU */
98   u16 link_mtu;
99
100   /* Subinterface ID. A number 0-N to uniquely identify this subinterface under the super interface */
101   u32 sub_id;
102
103   /* 0 = dot1q, 1=dot1ad */
104   u8 sub_dot1ad;
105
106   /* Number of tags 0-2 */
107   u8 sub_number_of_tags;
108   u16 sub_outer_vlan_id;
109   u16 sub_inner_vlan_id;
110   u8 sub_exact_match;
111   u8 sub_default;
112   u8 sub_outer_vlan_id_any;
113   u8 sub_inner_vlan_id_any;
114
115   /* vlan tag rewrite state */
116   u32 vtr_op;
117   u32 vtr_push_dot1q;           // ethertype of first pushed tag is dot1q/dot1ad
118   u32 vtr_tag1;                 // first pushed tag
119   u32 vtr_tag2;                 // second pushed tag
120 };
121
122 /** \brief Set flags on the interface
123     @param client_index - opaque cookie to identify the sender
124     @param context - sender context, to match reply w/ request
125     @param sw_if_index - index of the interface to set flags on
126     @param admin_up_down - set the admin state, 1 = up, 0 = down
127     @param link_up_down - Oper state sent on change event, not used in config.
128     @param deleted - interface was deleted
129 */
130 define sw_interface_set_flags
131 {
132   u32 client_index;
133   u32 context;
134   u32 sw_if_index;
135   /* 1 = up, 0 = down */
136   u8 admin_up_down;
137   u8 link_up_down;
138   u8 deleted;
139 };
140
141 /** \brief Reply to sw_interface_set_flags 
142     @param context - sender context which was passed in the request
143     @param retval - return code of the set flags request
144 */
145 define sw_interface_set_flags_reply
146 {
147   u32 context;
148   i32 retval;
149 };
150
151 /* works */
152 define sw_interface_dump
153 {
154   u32 client_index;
155   u32 context;
156   u8 name_filter_valid;
157   u8 name_filter[49];
158 };
159
160 /** \brief Set or delete one or all ip addresses on a specified interface
161     @param client_index - opaque cookie to identify the sender
162     @param context - sender context, to match reply w/ request
163     @param sw_if_index - index of the interface to add/del addresses 
164     @param is_add - add address if non-zero, else delete
165     @param is_ipv6 - if non-zero the address is ipv6, else ipv4
166     @param del_all - if non-zero delete all addresses on the interface
167     @param address_length - address length in bytes, 4 for ip4, 16 for ip6
168     @param address - array of address bytes
169 */
170 define sw_interface_add_del_address
171 {
172   u32 client_index;
173   u32 context;
174   u32 sw_if_index;
175   u8 is_add;
176   u8 is_ipv6;
177   u8 del_all;
178   u8 address_length;
179   u8 address[16];
180 };
181
182 /** \brief Reply for interface events registration
183     @param context - returned sender context, to match reply w/ request
184     @param retval - return code
185 */
186 define sw_interface_add_del_address_reply
187 {
188   u32 context;
189   i32 retval;
190 };
191
192 /** \brief Associate the specified interface with a fib table
193     @param client_index - opaque cookie to identify the sender
194     @param context - sender context, to match reply w/ request
195     @param sw_if_index - index of the interface
196     @param is_ipv6 - if non-zero ipv6, else ipv4
197     @param vrf_id - fib table/vrd id to associate the interface with
198 */
199 define sw_interface_set_table
200 {
201   u32 client_index;
202   u32 context;
203   u32 sw_if_index;
204   u8 is_ipv6;
205   u32 vrf_id;
206 };
207
208 /** \brief Reply for interface events registration
209     @param context - returned sender context, to match reply w/ request
210     @param retval - return code
211 */
212 define sw_interface_set_table_reply
213 {
214   u32 context;
215   i32 retval;
216 };
217
218 /** \brief Initialize a new tap interface with the given paramters 
219     @param client_index - opaque cookie to identify the sender
220     @param context - sender context, to match reply w/ request
221     @param use_random_mac - let the system generate a unique mac address
222     @param tap_name - name to associate with the new interface
223     @param mac_address - mac addr to assign to the interface if use_radom not set
224 */
225 define tap_connect
226 {
227   u32 client_index;
228   u32 context;
229   u8 use_random_mac;
230   u8 tap_name[64];
231   u8 mac_address[6];
232   u8 renumber;
233   u32 custom_dev_instance;
234 };
235
236 /** \brief Reply for tap connect request
237     @param context - returned sender context, to match reply w/ request
238     @param retval - return code
239     @param sw_if_index - software index allocated for the new tap interface
240 */
241 define tap_connect_reply
242 {
243   u32 context;
244   i32 retval;
245   u32 sw_if_index;
246 };
247
248 /** \brief Modify a tap interface with the given paramters 
249     @param client_index - opaque cookie to identify the sender
250     @param context - sender context, to match reply w/ request
251     @param sw_if_index - interface index of existing tap interface
252     @param use_random_mac - let the system generate a unique mac address
253     @param tap_name - name to associate with the new interface
254     @param mac_address - mac addr to assign to the interface if use_radom not set
255 */
256 define tap_modify
257 {
258   u32 client_index;
259   u32 context;
260   u32 sw_if_index;
261   u8 use_random_mac;
262   u8 tap_name[64];
263   u8 mac_address[6];
264   u8 renumber;
265   u32 custom_dev_instance;
266 };
267
268 /** \brief Reply for tap modify request
269     @param context - returned sender context, to match reply w/ request
270     @param retval - return code
271     @param sw_if_index - software index if the modified tap interface
272 */
273 define tap_modify_reply
274 {
275   u32 context;
276   i32 retval;
277   u32 sw_if_index;
278 };
279
280 /** \brief Delete tap interface
281     @param client_index - opaque cookie to identify the sender
282     @param context - sender context, to match reply w/ request
283     @param sw_if_index - interface index of existing tap interface
284 */
285 define tap_delete
286 {
287   u32 client_index;
288   u32 context;
289   u32 sw_if_index;
290 };
291
292 /** \brief Reply for tap delete request
293     @param context - returned sender context, to match reply w/ request
294     @param retval - return code
295 */
296 define tap_delete_reply
297 {
298   u32 context;
299   i32 retval;
300 };
301
302 /** \brief Dump tap interfaces request */
303 define sw_interface_tap_dump
304 {
305   u32 client_index;
306   u32 context;
307 };
308
309 /** \brief Reply for tap dump request
310     @param sw_if_index - software index of tap interface
311     @param dev_name - Linux tap device name
312 */
313 define sw_interface_tap_details
314 {
315   u32 context;
316   u32 sw_if_index;
317   u8 dev_name[64];
318 };
319
320 /** \brief Create a new subinterface with the given vlan id
321     @param client_index - opaque cookie to identify the sender
322     @param context - sender context, to match reply w/ request
323     @param sw_if_index - software index of the new vlan's parent interface
324     @param vlan_id - vlan tag of the new interface
325 */
326 define create_vlan_subif
327 {
328   u32 client_index;
329   u32 context;
330   u32 sw_if_index;
331   u32 vlan_id;
332 };
333
334 /** \brief Reply for the vlan subinterface create request
335     @param context - returned sender context, to match reply w/ request
336     @param retval - return code
337     @param sw_if_index - software index allocated for the new subinterface
338 */
339 define create_vlan_subif_reply
340 {
341   u32 context;
342   i32 retval;
343   u32 sw_if_index;
344 };
345
346 /** \brief Add / del route request
347     @param client_index - opaque cookie to identify the sender
348     @param context - sender context, to match reply w/ request
349     @param sw_if_index - software index of the new vlan's parent interface
350     @param vrf_id - fib table /vrf associated with the route
351     @param lookup_in_vrf - 
352     @param resolve_attempts - 
353     @param classify_table_index - 
354     @param create_vrf_if_needed - 
355     @param resolve_if_needed - 
356     @param is_add - 1 if adding the route, 0 if deleting
357     @param is_drop - 
358     @param is_ipv6 - 0 if an ip4 route, else ip6
359     @param is_local - 
360     @param is_classify - 
361     @param is_multipath - Set to 1 if this is a multipath route, else 0
362     @param not_last - Is last or not last msg in group of multiple add/del msgs
363     @param next_hop_weight - 
364     @param dst_address_length - 
365     @param dst_address[16] - 
366     @param next_hop_address[16] - 
367 */
368 define ip_add_del_route
369 {
370   u32 client_index;
371   u32 context;
372   u32 next_hop_sw_if_index;
373   u32 vrf_id;
374   u32 lookup_in_vrf;
375   u32 resolve_attempts;
376   u32 classify_table_index;
377   u8 create_vrf_if_needed;
378   u8 resolve_if_needed;
379   u8 is_add;
380   u8 is_drop;
381   u8 is_ipv6;
382   u8 is_local;
383   u8 is_classify;
384   /* Is last/not-last message in group of multiple add/del messages. */
385   u8 is_multipath;
386   u8 not_last;
387   u8 next_hop_weight;
388   u8 dst_address_length;
389   u8 dst_address[16];
390   u8 next_hop_address[16];
391 };
392
393 /** \brief Reply for add / del route request
394     @param context - returned sender context, to match reply w/ request
395     @param retval - return code
396 */
397 define ip_add_del_route_reply
398 {
399   u32 context;
400   i32 retval;
401 };
402
403 /* works */
404 /** \brief Add / del gre tunnel request
405     @param client_index - opaque cookie to identify the sender
406     @param context - sender context, to match reply w/ request
407     @param sw_if_index - software index of the new vlan's parent interface
408     @param inner_vrf_id -
409     @param outer_vrf_id - 
410     @param is_add - 1 if adding the tunnel, 0 if deleting
411     @param src_address[4] - tunnel source address
412     @param dst_address[4] - tunnel destination address
413     @param intf_address - 
414     @param intf_address_length - 
415 */
416 define mpls_gre_add_del_tunnel
417 {
418   u32 client_index;
419   u32 context;
420   u32 inner_vrf_id;
421   u32 outer_vrf_id;
422   u8 is_add;
423   u8 l2_only;
424   u8 src_address[4];
425   u8 dst_address[4];
426   u8 intfc_address[4];
427   u8 intfc_address_length;
428 };
429
430 /** \brief Reply for add / del tunnel request
431     @param context - returned sender context, to match reply w/ request
432     @param retval - return code
433 */
434 define mpls_gre_add_del_tunnel_reply
435 {
436   u32 context;
437   i32 retval;
438   u32 tunnel_sw_if_index;
439 };
440
441 /** \brief Add / del MPLS encapsulation request
442     @param client_index - opaque cookie to identify the sender
443     @param context - sender context, to match reply w/ request
444     @param vrf_id - vrf id
445     @param dst_address[4] - 
446     @param is_add - 1 if adding the encap, 0 if deleting
447     @param nlabels - number of labels 
448     @param labels - array of labels
449 */
450 define mpls_add_del_encap
451 {
452   u32 client_index;
453   u32 context;
454   u32 vrf_id;
455   u8 dst_address[4];
456   /* 1 = add, 0 = delete */
457   u8 is_add;
458   u8 nlabels;
459   u32 labels[0];
460 };
461
462 /** \brief Reply for add / del encapsulation request
463     @param context - returned sender context, to match reply w/ request
464     @param retval - return code
465 */
466 define mpls_add_del_encap_reply
467 {
468   u32 context;
469   i32 retval;
470 };
471
472 /** \brief Add / del MPLS decapsulation request
473     @param client_index - opaque cookie to identify the sender
474     @param context - sender context, to match reply w/ request
475     @param rx_vrf_id - receive vrf
476     @param tx_vrf_id - transmit vrf
477     @param label - 
478     @param next_index - 
479     @param s_bit - 
480     @param is_add - 1 if adding the encap, 0 if deleting
481 */
482 define mpls_add_del_decap
483 {
484   u32 client_index;
485   u32 context;
486   u32 rx_vrf_id;
487   u32 tx_vrf_id;
488   u32 label;
489   u32 next_index;
490   u8 s_bit;
491   u8 is_add;
492 };
493
494 /** \brief Reply for MPLS decap add / del request
495     @param context - returned sender context, to match reply w/ request
496     @param retval - return code
497 */
498 define mpls_add_del_decap_reply
499 {
500   u32 context;
501   i32 retval;
502 };
503
504 /** \brief Proxy ARP add / del request
505     @param client_index - opaque cookie to identify the sender
506     @param context - sender context, to match reply w/ request
507     @param vrf_id - VRF / Fib table ID
508     @param is_add - 1 if adding the Proxy ARP range, 0 if deleting
509     @param low_address[4] - Low address of the Proxy ARP range
510     @param hi_address[4] - High address of the Proxy ARP range
511 */
512 define proxy_arp_add_del
513 {
514   u32 client_index;
515   u32 context;
516   u32 vrf_id;
517   u8 is_add;
518   u8 low_address[4];
519   u8 hi_address[4];
520 };
521
522 /** \brief Reply for proxy arp add / del request
523     @param context - returned sender context, to match reply w/ request
524     @param retval - return code
525 */
526 define proxy_arp_add_del_reply
527 {
528   u32 context;
529   i32 retval;
530 };
531
532 /** \brief Proxy ARP add / del request
533     @param client_index - opaque cookie to identify the sender
534     @param context - sender context, to match reply w/ request
535     @param sw_if_index - Which interface to enable / disable Proxy Arp on
536     @param enable_disable - 1 to enable Proxy ARP on interface, 0 to disable
537 */
538 define proxy_arp_intfc_enable_disable
539 {
540   u32 client_index;
541   u32 context;
542   u32 sw_if_index;
543   /* 1 = on, 0 = off */
544   u8 enable_disable;
545 };
546
547 /** \brief Reply for Proxy ARP interface enable / disable request
548     @param context - returned sender context, to match reply w/ request
549     @param retval - return code
550 */
551 define proxy_arp_intfc_enable_disable_reply
552 {
553   u32 context;
554   i32 retval;
555 };
556
557 /** \brief IP neighbor add / del request
558     @param client_index - opaque cookie to identify the sender
559     @param context - sender context, to match reply w/ request
560     @param vrf_id - vrf_id, only for IP4
561     @param sw_if_index - interface used to reach neighbor
562     @param is_add - 1 to add neighbor, 0 to delete
563     @param is_ipv6 - 1 for IPv6 neighbor, 0 for IPv4
564     @param is_static - 
565     @param mac_address - l2 address of the neighbor
566     @param dst_address - ip4 or ip6 address of the neighbor
567 */
568 define ip_neighbor_add_del
569 {
570   u32 client_index;
571   u32 context;
572   u32 vrf_id;                   /* only makes sense for ip4 */
573   u32 sw_if_index;
574   /* 1 = add, 0 = delete */
575   u8 is_add;
576   u8 is_ipv6;
577   u8 is_static;
578   u8 mac_address[6];
579   u8 dst_address[16];
580 };
581
582 /** \brief Reply for IP Neighbor add / delete request
583     @param context - returned sender context, to match reply w/ request
584     @param retval - return code
585 */
586 define ip_neighbor_add_del_reply
587 {
588   u32 context;
589   i32 retval;
590 };
591
592 /** \brief Reset VRF (remove all routes etc) request
593     @param client_index - opaque cookie to identify the sender
594     @param context - sender context, to match reply w/ request
595     @param is_ipv6 - 1 for IPv6 neighbor, 0 for IPv4
596     @param vrf_id - ID of th FIB table / VRF to reset
597 */
598 define reset_vrf
599 {
600   u32 client_index;
601   u32 context;
602   u8 is_ipv6;
603   u32 vrf_id;
604 };
605
606 /** \brief Reply for Reset VRF request
607     @param context - returned sender context, to match reply w/ request
608     @param retval - return code
609 */
610 define reset_vrf_reply
611 {
612   u32 context;
613   i32 retval;
614 };
615
616 /** \brief Is Address Reachable request - DISABLED
617     @param client_index - opaque cookie to identify the sender
618     @param context - sender context, to match reply w/ request
619     @param next_hop_sw_if_index - index of interface used to get to next hop
620     @param is_ipv6 - 1 for IPv6, 0 for IPv4
621     @param is_error - address not found or does not match intf
622     @param address[] - Address in question 
623 */
624 define is_address_reachable
625 {
626   u32 client_index;             /* (api_main_t *) am->my_client_index */
627   u32 context;
628   u32 next_hop_sw_if_index;
629   u8 is_known;                  /* on reply, this is the answer */
630   u8 is_ipv6;
631   u8 is_error;                  /* address not found or does not match intf */
632   u8 address[16];
633 };
634
635 /** \brief Want Stats, register for stats updates
636     @param client_index - opaque cookie to identify the sender
637     @param context - sender context, to match reply w/ request
638     @param enable_disable - 1 = enable stats, 0 = disable
639     @param pid - pid of process requesting stats updates
640 */
641 define want_stats
642 {
643   u32 client_index;
644   u32 context;
645   u32 enable_disable;
646   u32 pid;
647 };
648
649 /** \brief Reply for Want Stats request
650     @param context - returned sender context, to match reply w/ request
651     @param retval - return code
652 */
653 define want_stats_reply
654 {
655   u32 context;
656   i32 retval;
657 };
658
659 /** \brief Want stats counters structure 
660     @param vnet_counter_type- such as ip4, ip6, punts, etc
661     @param is_combined - rx & tx total (all types) counts   
662     @param first_sw_if_index - first sw index in block of index, counts
663     @param count - number of interfaces this stats block includes counters for
664     @param data - contiguous block of vlib_counter_t structures 
665 */
666 define vnet_interface_counters
667 {
668   /* enums - plural - in vnet/interface.h */
669   u8 vnet_counter_type;
670   u8 is_combined;
671   u32 first_sw_if_index;
672   u32 count;
673   u8 data[count];
674 };
675
676 typeonly manual_print manual_endian define ip4_fib_counter
677 {
678   u32 address;
679   u8 address_length;
680   u64 packets;
681   u64 bytes;
682 };
683
684 manual_print manual_endian define vnet_ip4_fib_counters
685 {
686   u32 vrf_id;
687   u32 count;
688   vl_api_ip4_fib_counter_t c[count];
689 };
690
691 typeonly manual_print manual_endian define ip6_fib_counter
692 {
693   u64 address[2];
694   u8 address_length;
695   u64 packets;
696   u64 bytes;
697 };
698
699 manual_print manual_endian define vnet_ip6_fib_counters
700 {
701   u32 vrf_id;
702   u32 count;
703   vl_api_ip6_fib_counter_t c[count];
704 };
705
706 /** \brief Request for a single block of summary stats
707     @param client_index - opaque cookie to identify the sender
708     @param context - sender context, to match reply w/ request
709 */
710 define vnet_get_summary_stats
711 {
712   u32 client_index;
713   u32 context;
714 };
715
716 /** \brief Reply for vnet_get_summary_stats request
717     @param context - sender context, to match reply w/ request
718     @param retval - return code for request
719     @param total_pkts -  
720     @param total_bytes -
721     @param vector_rate - 
722 */
723 define vnet_summary_stats_reply
724 {
725   u32 context;
726   i32 retval;
727   u64 total_pkts[2];
728   u64 total_bytes[2];
729   f64 vector_rate;
730 };
731
732 /** \brief OAM event structure
733     @param dst_address[] - 
734     @param state
735 */
736 define oam_event
737 {
738   u8 dst_address[4];
739   u8 state;
740 };
741
742 /** \brief Want OAM events request
743     @param client_index - opaque cookie to identify the sender
744     @param context - sender context, to match reply w/ request
745     @param enable_disable- enable if non-zero, else disable
746     @param pid - pid of the requesting process
747 */
748 define want_oam_events
749 {
750   u32 client_index;
751   u32 context;
752   u32 enable_disable;
753   u32 pid;
754 };
755
756 /** \brief Want OAM events response
757     @param context - sender context, to match reply w/ request
758     @param retval - return code for the want oam stats request
759 */
760 define want_oam_events_reply
761 {
762   u32 context;
763   i32 retval;
764 };
765
766 /** \brief OAM add / del target request
767     @param client_index - opaque cookie to identify the sender
768     @param context - sender context, to match reply w/ request
769     @param vrf_id - vrf_id of the target
770     @param src_address[] - source address to use for the updates 
771     @param dst_address[] - destination address of the target
772     @param is_add - add target if non-zero, else delete
773 */
774 define oam_add_del
775 {
776   u32 client_index;
777   u32 context;
778   u32 vrf_id;
779   u8 src_address[4];
780   u8 dst_address[4];
781   u8 is_add;
782 };
783
784 /** \brief OAM add / del target response
785     @param context - sender context, to match reply w/ request
786     @param retval - return code of the request
787 */
788 define oam_add_del_reply
789 {
790   u32 context;
791   i32 retval;
792 };
793
794 /** \brief Reset fib table request
795     @param client_index - opaque cookie to identify the sender
796     @param context - sender context, to match reply w/ request
797     @param vrf_id - vrf/table id of the fib table to reset
798     @param is_ipv6 - an ipv6 fib to reset if non-zero, else ipv4
799 */
800 define reset_fib
801 {
802   u32 client_index;
803   u32 context;
804   u32 vrf_id;
805   u8 is_ipv6;
806 };
807
808 /** \brief Reset fib response
809     @param context - sender context, to match reply w/ request
810     @param retval - return code for the reset bfib request
811 */
812 define reset_fib_reply
813 {
814   u32 context;
815   i32 retval;
816 };
817
818 /** \brief DHCP Proxy config add / del request
819     @param client_index - opaque cookie to identify the sender
820     @param context - sender context, to match reply w/ request
821     @param vrf_id - vrf id
822     @param if_ipv6 - ipv6 if non-zero, else ipv4
823     @param is_add - add the config if non-zero, else delete
824     @param insert_circuit_id - option82 suboption 1 fib number
825     @param dhcp_server[] - server address
826     @param dhcp_src_address[] - <fix this, need details>
827 */
828 define dhcp_proxy_config
829 {
830   u32 client_index;
831   u32 context;
832   u32 vrf_id;
833   u8 is_ipv6;
834   u8 is_add;
835   u8 insert_circuit_id;
836   u8 dhcp_server[16];
837   u8 dhcp_src_address[16];
838 };
839
840 /** \brief DHCP Proxy config response
841     @param context - sender context, to match reply w/ request
842     @param retval - return code for the request
843 */
844 define dhcp_proxy_config_reply
845 {
846   u32 context;
847   i32 retval;
848 };
849
850 /** \brief DHCP Proxy set / unset vss request
851     @param client_index - opaque cookie to identify the sender
852     @param context - sender context, to match reply w/ request
853     @param tbl_id - table id
854     @param oui - first part of vpn id
855     @param fib_id - second part of vpn id
856     @param is_ipv6 - ip6 if non-zero, else ip4
857     @param is_add - set vss if non-zero, else delete
858 */
859 define dhcp_proxy_set_vss
860 {
861   u32 client_index;
862   u32 context;
863   u32 tbl_id;
864   u32 oui;
865   u32 fib_id;
866   u8 is_ipv6;
867   u8 is_add;
868 };
869
870 /** \brief DHCP proxy set / unset vss response
871     @param context - sender context, to match reply w/ request
872     @param retval - return code for the request
873 */
874 define dhcp_proxy_set_vss_reply
875 {
876   u32 context;
877   i32 retval;
878 };
879
880 /** \brief Set the ip flow hash config for a fib request
881     @param client_index - opaque cookie to identify the sender
882     @param context - sender context, to match reply w/ request
883     @param vrf_id - vrf/fib id
884     @param is_ipv6 - if non-zero the fib is ip6, else ip4
885     @param src - if non-zero include src in flow hash
886     @param dst - if non-zero include dst in flow hash
887     @param sport - if non-zero include sport in flow hash
888     @param dport - if non-zero include dport in flow hash
889     @param proto -if non-zero include proto in flow hash
890     @param reverse - if non-zero include reverse in flow hash
891 */
892 define set_ip_flow_hash
893 {
894   u32 client_index;
895   u32 context;
896   u32 vrf_id;
897   u8 is_ipv6;
898   u8 src;
899   u8 dst;
900   u8 sport;
901   u8 dport;
902   u8 proto;
903   u8 reverse;
904 };
905
906 /** \brief Set the ip flow hash config for a fib response
907     @param context - sender context, to match reply w/ request
908     @param retval - return code for the request
909 */
910 define set_ip_flow_hash_reply
911 {
912   u32 context;
913   i32 retval;
914 };
915
916 /** \brief IPv6 router advertisement config request
917     @param client_index - opaque cookie to identify the sender
918     @param context - sender context, to match reply w/ request
919     @param suppress -
920     @param managed -
921     @param other -
922     @param ll_option -
923     @param send_unicast -
924     @param cease -
925     @param is_no -
926     @param default_router -
927     @param max_interval -
928     @param min_interval -
929     @param lifetime -
930     @param initial_count -
931     @param initial_interval -
932 */
933 define sw_interface_ip6nd_ra_config
934 {
935   u32 client_index;
936   u32 context;
937   u32 sw_if_index;
938   u8 suppress;
939   u8 managed;
940   u8 other;
941   u8 ll_option;
942   u8 send_unicast;
943   u8 cease;
944   u8 is_no;
945   u8 default_router;
946   u32 max_interval;
947   u32 min_interval;
948   u32 lifetime;
949   u32 initial_count;
950   u32 initial_interval;
951 };
952
953 /** \brief IPv6 router advertisement config response
954     @param context - sender context, to match reply w/ request
955     @param retval - return code for the request
956 */
957 define sw_interface_ip6nd_ra_config_reply
958 {
959   u32 context;
960   i32 retval;
961 };
962
963 /** \brief IPv6 router advertisement prefix config request
964     @param client_index - opaque cookie to identify the sender
965     @param context - sender context, to match reply w/ request
966     @param sw_if_index - 
967     @param address[] -
968     @param address_length -
969     @param use_default -
970     @param no_advertise -
971     @param off_link -
972     @param no_autoconfig -
973     @param no_onlink -
974     @param is_no -
975     @param val_lifetime -
976     @param pref_lifetime -
977 */
978 define sw_interface_ip6nd_ra_prefix
979 {
980   u32 client_index;
981   u32 context;
982   u32 sw_if_index;
983   u8 address[16];
984   u8 address_length;
985   u8 use_default;
986   u8 no_advertise;
987   u8 off_link;
988   u8 no_autoconfig;
989   u8 no_onlink;
990   u8 is_no;
991   u32 val_lifetime;
992   u32 pref_lifetime;
993 };
994
995 /** \brief IPv6 router advertisement prefix config response
996     @param context - sender context, to match reply w/ request
997     @param retval - return code for the request
998 */
999 define sw_interface_ip6nd_ra_prefix_reply
1000 {
1001   u32 context;
1002   i32 retval;
1003 };
1004
1005 /** \brief IPv6 interface enable / disable request
1006     @param client_index - opaque cookie to identify the sender
1007     @param context - sender context, to match reply w/ request
1008     @param sw_if_index - interface used to reach neighbor
1009     @param enable - if non-zero enable ip6 on interface, else disable
1010 */
1011 define sw_interface_ip6_enable_disable
1012 {
1013   u32 client_index;
1014   u32 context;
1015   u32 sw_if_index;
1016   u8 enable;                    /* set to true if enable */
1017 };
1018
1019 /** \brief IPv6 interface enable / disable response
1020     @param context - sender context, to match reply w/ request
1021     @param retval - return code for the request
1022 */
1023 define sw_interface_ip6_enable_disable_reply
1024 {
1025   u32 context;
1026   i32 retval;
1027 };
1028
1029 /** \brief IPv6 set link local address on interface request
1030     @param client_index - opaque cookie to identify the sender
1031     @param context - sender context, to match reply w/ request
1032     @param sw_if_index - interface to set link local on
1033     @param address[] - the new link local address
1034     @param address_length - link local address length
1035 */
1036 define sw_interface_ip6_set_link_local_address
1037 {
1038   u32 client_index;
1039   u32 context;
1040   u32 sw_if_index;
1041   u8 address[16];
1042   u8 address_length;
1043 };
1044
1045 /** \brief IPv6 set link local address on interface response
1046     @param context - sender context, to match reply w/ request
1047     @param retval - error code for the request
1048 */
1049 define sw_interface_ip6_set_link_local_address_reply
1050 {
1051   u32 context;
1052   i32 retval;
1053 };
1054
1055 /** \brief Set unnumbered interface add / del request
1056     @param client_index - opaque cookie to identify the sender
1057     @param context - sender context, to match reply w/ request
1058     @param sw_if_index - interface with an IP address
1059     @param unnumbered_sw_if_index - interface which will use the address
1060     @param is_add - if non-zero set the association, else unset it
1061 */
1062 define sw_interface_set_unnumbered
1063 {
1064   u32 client_index;
1065   u32 context;
1066   u32 sw_if_index;              /* use this intfc address */
1067   u32 unnumbered_sw_if_index;   /* on this interface */
1068   u8 is_add;
1069 };
1070
1071 /** \brief Set unnumbered interface add / del response
1072     @param context - sender context, to match reply w/ request
1073     @param retval - return code for the request
1074 */
1075 define sw_interface_set_unnumbered_reply
1076 {
1077   u32 context;
1078   i32 retval;
1079 };
1080
1081 /** \brief Create loopback interface request
1082     @param client_index - opaque cookie to identify the sender
1083     @param context - sender context, to match reply w/ request
1084     @param mac_address - mac addr to assign to the interface if none-zero
1085 */
1086 define create_loopback
1087 {
1088   u32 client_index;
1089   u32 context;
1090   u8 mac_address[6];
1091 };
1092
1093 /** \brief Create loopback interface response
1094     @param context - sender context, to match reply w/ request
1095     @param sw_if_index - sw index of the interface that was created
1096     @param retval - return code for the request
1097 */
1098 define create_loopback_reply
1099 {
1100   u32 context;
1101   i32 retval;
1102   u32 sw_if_index;
1103 };
1104
1105 /** \brief Delete loopback interface request
1106     @param client_index - opaque cookie to identify the sender
1107     @param context - sender context, to match reply w/ request
1108     @param sw_if_index - sw index of the interface that was created
1109 */
1110 define delete_loopback
1111 {
1112   u32 client_index;
1113   u32 context;
1114   u32 sw_if_index;
1115 };
1116
1117 /** \brief Delete loopback interface response
1118     @param context - sender context, to match reply w/ request
1119     @param retval - return code for the request
1120 */
1121 define delete_loopback_reply
1122 {
1123   u32 context;
1124   i32 retval;
1125 };
1126
1127 /** \brief Control ping from client to api server request
1128     @param client_index - opaque cookie to identify the sender
1129     @param context - sender context, to match reply w/ request
1130 */
1131 define control_ping
1132 {
1133   u32 client_index;
1134   u32 context;
1135 };
1136
1137 /** \brief Control ping from the client to the server response
1138     @param client_index - opaque cookie to identify the sender
1139     @param context - sender context, to match reply w/ request
1140     @param retval - return code for the request
1141     @param vpe_pid - the pid of the vpe, returned by the server
1142 */
1143 define control_ping_reply
1144 {
1145   u32 context;
1146   i32 retval;
1147   u32 client_index;
1148   u32 vpe_pid;
1149 };
1150
1151 /** \brief Control ping from client to api server request, no print json output
1152     @param client_index - opaque cookie to identify the sender
1153     @param context - sender context, to match reply w/ request
1154 */
1155 define noprint_control_ping
1156 {
1157   u32 client_index;
1158   u32 context;
1159 };
1160
1161 /** \brief Control ping from the client to the server response
1162     @param client_index - opaque cookie to identify the sender
1163     @param context - sender context, to match reply w/ request
1164     @param retval - return code for the request
1165     @param vpe_pid - the pid of the vpe, returned by the server
1166 */
1167 define noprint_control_ping_reply
1168 {
1169   u32 context;
1170   i32 retval;
1171   u32 client_index;
1172   u32 vpe_pid;
1173 };
1174
1175 /** \brief Process a vpe parser cli string request
1176     @param client_index - opaque cookie to identify the sender
1177     @param context - sender context, to match reply w/ request
1178     @param cmd_in_shmem - pointer to cli command string
1179 */
1180 define cli_request
1181 {
1182   u32 client_index;
1183   u32 context;
1184   u64 cmd_in_shmem;
1185 };
1186
1187 /** \brief vpe parser cli string response
1188     @param context - sender context, to match reply w/ request
1189     @param retval - return code for request
1190     @param reply_in_shmem - Reply string from cli processing if any
1191 */
1192 define cli_reply
1193 {
1194   u32 context;
1195   i32 retval;
1196   u64 reply_in_shmem;
1197 };
1198
1199 /** \brief Set max allowed ARP or ip6 neighbor entries request
1200     @param client_index - opaque cookie to identify the sender
1201     @param context - sender context, to match reply w/ request
1202     @param is_ipv6 - neighbor limit if non-zero, else ARP limit
1203     @param arp_neighbor_limit - the new limit, defaults are ~ 50k
1204 */
1205 define set_arp_neighbor_limit
1206 {
1207   u32 client_index;
1208   u32 context;
1209   u8 is_ipv6;
1210   u32 arp_neighbor_limit;
1211 };
1212
1213 /** \brief Set max allowed ARP or ip6 neighbor entries response
1214     @param context - sender context, to match reply w/ request
1215     @param retval - return code for request
1216 */
1217 define set_arp_neighbor_limit_reply
1218 {
1219   u32 context;
1220   i32 retval;
1221 };
1222
1223 /** \brief L2 interface patch add / del request
1224     @param client_index - opaque cookie to identify the sender
1225     @param context - sender context, to match reply w/ request
1226     @param rx_sw_if_index - receive side interface 
1227     @param tx_sw_if_index - transmit side interface
1228     @param is_add - if non-zero set up the interface patch, else remove it
1229 */
1230 define l2_patch_add_del
1231 {
1232   u32 client_index;
1233   u32 context;
1234   u32 rx_sw_if_index;
1235   u32 tx_sw_if_index;
1236   u8 is_add;
1237 };
1238
1239 /** \brief L2 interface patch add / del response
1240     @param context - sender context, to match reply w/ request
1241     @param retval - return code for the request
1242 */
1243 define l2_patch_add_del_reply
1244 {
1245   u32 context;
1246   i32 retval;
1247 };
1248
1249 /** \brief IPv6 segment routing tunnel add / del request
1250     @param client_index - opaque cookie to identify the sender
1251     @param context - sender context, to match reply w/ request
1252     @param is_add - add the tunnel if non-zero, else delete it
1253     @param name[] - tunnel name (len. 64)
1254     @param src_address[] -
1255     @param dst_address[] -
1256     @param dst_mask_width -
1257     @param inner_vrf_id -
1258     @param outer_vrf_id -
1259     @param flags_net_byte_order -
1260     @param n_segments -
1261     @param n_tags -
1262     @param segs_and_tags[] -
1263     @param policy_name[] - name of policy to associate this tunnel to (len. 64)
1264 */
1265 define sr_tunnel_add_del
1266 {
1267   u32 client_index;
1268   u32 context;
1269   u8 is_add;
1270   u8 name[64];
1271   u8 src_address[16];
1272   u8 dst_address[16];
1273   u8 dst_mask_width;
1274   u32 inner_vrf_id;
1275   u32 outer_vrf_id;
1276   u16 flags_net_byte_order;
1277   u8 n_segments;
1278   u8 n_tags;
1279   u8 segs_and_tags[0];
1280   u8 policy_name[64];
1281 };
1282
1283 /** \brief IPv6 segment routing tunnel add / del response
1284     @param context - sender context, to match reply w/ request
1285     @param retval - return value for request
1286 */
1287 define sr_tunnel_add_del_reply
1288 {
1289   u32 context;
1290   i32 retval;
1291 };
1292
1293 /** \brief IPv6 segment routing policy add / del request
1294     @param client_index - opaque cookie to identify the sender
1295     @param context - sender context, to match reply w/ request
1296     @param is_add - add the tunnel if non-zero, else delete it
1297     @param name[] - policy name (len. 64)
1298     @param tunnel_names[] -
1299 */
1300 define sr_policy_add_del
1301 {
1302   u32 client_index;
1303   u32 context;
1304   u8 is_add;
1305   u8 name[64];
1306   u8 tunnel_names[0];
1307 };
1308
1309 /** \brief IPv6 segment routing policy add / del response
1310     @param context - sender context, to match reply w/ request
1311     @param retval - return value for request
1312 */
1313 define sr_policy_add_del_reply
1314 {
1315   u32 context;
1316   i32 retval;
1317 };
1318
1319 /** \brief IPv6 segment routing multicast map to policy add / del request
1320     @param client_index - opaque cookie to identify the sender
1321     @param context - sender context, to match reply w/ request
1322     @param is_add - add the tunnel if non-zero, else delete it
1323     @param multicast_address[] - IP6 multicast address
1324     @param policy_name[] = policy name (len.64)
1325 */
1326 define sr_multicast_map_add_del
1327 {
1328   u32 client_index;
1329   u32 context;
1330   u8 is_add;
1331   u8 multicast_address[16];
1332   u8 policy_name[64];
1333 };
1334
1335 /** \brief IPv6 segment routing multicast map to policy add / del response
1336     @param context - sender context, to match reply w/ request
1337     @param retval - return value for request
1338 */
1339 define sr_multicast_map_add_del_reply
1340 {
1341   u32 context;
1342   i32 retval;
1343 };
1344
1345 /** \brief Interface set vpath request
1346     @param client_index - opaque cookie to identify the sender
1347     @param context - sender context, to match reply w/ request
1348     @param sw_if_index - interface used to reach neighbor
1349     @param enable - if non-zero enable, else disable
1350 */
1351 define sw_interface_set_vpath
1352 {
1353   u32 client_index;
1354   u32 context;
1355   u32 sw_if_index;
1356   u8 enable;
1357 };
1358
1359 /** \brief Interface set vpath response
1360     @param context - sender context, to match reply w/ request
1361     @param retval - return code for the request
1362 */
1363 define sw_interface_set_vpath_reply
1364 {
1365   u32 context;
1366   i32 retval;
1367 };
1368
1369 /** \brief MPLS Ethernet add / del tunnel request
1370     @param client_index - opaque cookie to identify the sender
1371     @param context - sender context, to match reply w/ request
1372     @param vrf_id - vrf_id, only for IP4
1373     @param sw_if_index - interface used to reach neighbor
1374     @param is_add - add if set, tunnel delete if 0
1375     @param dst_mac_address - 
1376     @param adj_address - 
1377     @param adj_address_length -
1378 */
1379 define mpls_ethernet_add_del_tunnel
1380 {
1381   u32 client_index;
1382   u32 context;
1383   u32 vrf_id;
1384   u32 tx_sw_if_index;
1385   u8 is_add;
1386   u8 l2_only;
1387   u8 dst_mac_address[6];
1388   u8 adj_address[4];
1389   u8 adj_address_length;
1390 };
1391
1392 /** \brief Reply for MPLS Ethernet add / delete tunnel request
1393     @param context - sender context, to match reply w/ request
1394     @param retval - return code for the request
1395 */
1396 define mpls_ethernet_add_del_tunnel_reply
1397 {
1398   u32 context;
1399   i32 retval;
1400   u32 tunnel_sw_if_index;
1401 };
1402 /** \brief MPLS Ethernet add/ del tunnel 2
1403     @param client_index - opaque cookie to identify the sender
1404     @param context - sender context, to match reply w/ request
1405     @param inner_vrf_id - 
1406     @param outer_vrf_id - 
1407     @param resolve_attempts - 
1408     @param resolve_opaque - 
1409     @param resolve_if_needed -
1410     @param is_add -
1411     @param adj_address -
1412     @param adj_address_length -
1413     @param next_hop_ip4_address_in_outer_vrf -
1414 */
1415 define mpls_ethernet_add_del_tunnel_2
1416 {
1417   u32 client_index;
1418   u32 context;
1419   u32 inner_vrf_id;
1420   u32 outer_vrf_id;
1421   u32 resolve_attempts;
1422   u32 resolve_opaque;           /* no need to set this */
1423   u8 resolve_if_needed;
1424   u8 is_add;
1425   u8 l2_only;
1426   u8 adj_address[4];
1427   u8 adj_address_length;
1428   u8 next_hop_ip4_address_in_outer_vrf[4];
1429 };
1430
1431 /** \brief MPLS Ethernet add/ del tunnel 2
1432     @param context - sender context, to match reply w/ request
1433     @param retval - return code for add /del request
1434 */
1435 define mpls_ethernet_add_del_tunnel_2_reply
1436 {
1437   u32 context;
1438   i32 retval;
1439 };
1440
1441 /** \brief Set L2 XConnect between two interfaces request
1442     @param client_index - opaque cookie to identify the sender
1443     @param context - sender context, to match reply w/ request
1444     @param rx_sw_if_index - Receive interface index
1445     @param tx_sw_if_index - Transmit interface index
1446     @param enable - enable xconnect if not 0, else set to L3 mode
1447 */
1448 define sw_interface_set_l2_xconnect
1449 {
1450   u32 client_index;
1451   u32 context;
1452   u32 rx_sw_if_index;
1453   u32 tx_sw_if_index;
1454   u8 enable;
1455 };
1456
1457 /** \brief Set L2 XConnect response
1458     @param context - sender context, to match reply w/ request
1459     @param retval - L2 XConnect request return code
1460 */
1461 define sw_interface_set_l2_xconnect_reply
1462 {
1463   u32 context;
1464   i32 retval;
1465 };
1466
1467 /** \brief Interface bridge mode request
1468     @param client_index - opaque cookie to identify the sender
1469     @param context - sender context, to match reply w/ request
1470     @param rx_sw_if_index - the interface
1471     @param bd_id - bridge domain id
1472     @param bvi - Setup interface as a bvi, bridge mode only
1473     @param shg - Shared horizon group, for bridge mode only
1474     @param enable - Enable beige mode if not 0, else set to L3 mode
1475 */
1476 define sw_interface_set_l2_bridge
1477 {
1478   u32 client_index;
1479   u32 context;
1480   u32 rx_sw_if_index;
1481   u32 bd_id;
1482   u8 shg;
1483   u8 bvi;
1484   u8 enable;
1485 };
1486
1487 /** \brief Interface bridge mode response
1488     @param context - sender context, to match reply w/ request
1489     @param retval - Bridge mode request return code
1490 */
1491 define sw_interface_set_l2_bridge_reply
1492 {
1493   u32 context;
1494   i32 retval;
1495 };
1496
1497 /** \brief L2 FIB add entry request
1498     @param client_index - opaque cookie to identify the sender
1499     @param context - sender context, to match reply w/ request
1500     @param mac - the entry's mac address
1501     @param bd_id - the entry's bridge domain id
1502     @param sw_if_index - the interface
1503     @param is_add - If non zero add the entry, else delete it
1504     @param static_mac - 
1505     @param filter_mac -
1506 */
1507 define l2fib_add_del
1508 {
1509   u32 client_index;
1510   u32 context;
1511   u64 mac;
1512   u32 bd_id;
1513   u32 sw_if_index;
1514   u8 is_add;
1515   u8 static_mac;
1516   u8 filter_mac;
1517   u8 bvi_mac;
1518 };
1519
1520 /** \brief L2 FIB add entry response
1521     @param context - sender context, to match reply w/ request
1522     @param retval - return code for the add l2fib entry request
1523 */
1524 define l2fib_add_del_reply
1525 {
1526   u32 context;
1527   i32 retval;
1528 };
1529
1530 /** \brief Set L2 flags request !!! TODO - need more info, feature bits in l2_input.h
1531     @param client_index - opaque cookie to identify the sender
1532     @param context - sender context, to match reply w/ request
1533     @param sw_if_index - interface 
1534     @param is_set - if non-zero, set the bits, else clear them
1535     @param feature_bitmap - non-zero bits to set or clear
1536 */
1537 define l2_flags
1538 {
1539   u32 client_index;
1540   u32 context;
1541   u32 sw_if_index;
1542   u8 is_set;
1543   u32 feature_bitmap;
1544 };
1545
1546 /** \brief Set L2 bits response
1547     @param context - sender context, to match reply w/ request
1548     @param retval - return code for the set l2 bits request
1549 */
1550 define l2_flags_reply
1551 {
1552   u32 context;
1553   i32 retval;
1554   u32 resulting_feature_bitmap;
1555 };
1556
1557 /** \brief Set bridge flags (such as L2_LEARN, L2_FWD, L2_FLOOD, 
1558     L2_UU_FLOOD, or L2_ARP_TERM) request
1559     @param client_index - opaque cookie to identify the sender
1560     @param context - sender context, to match reply w/ request
1561     @param bd_id - the bridge domain to set the flags for
1562     @param is_set - if non-zero, set the flags, else clear them
1563     @param feature_bitmap - bits that are non-zero to set or clear
1564 */
1565 define bridge_flags
1566 {
1567   u32 client_index;
1568   u32 context;
1569   u32 bd_id;
1570   u8 is_set;
1571   u32 feature_bitmap;
1572 };
1573
1574 /** \brief Set bridge flags response
1575     @param context - sender context, to match reply w/ request
1576     @param retval - return code for the set bridge flags request
1577     @param resulting_feature_bitmap - the feature bitmap value after the request is implemented
1578 */
1579 define bridge_flags_reply
1580 {
1581   u32 context;
1582   i32 retval;
1583   u32 resulting_feature_bitmap;
1584 };
1585
1586 /** \brief Set bridge domain ip to mac entry request
1587     @param client_index - opaque cookie to identify the sender
1588     @param context - sender context, to match reply w/ request
1589     @param bd_id - the bridge domain to set the flags for
1590     @param is_add - if non-zero, add the entry, else clear it
1591     @param is_ipv6 - if non-zero, ipv6 address, else ipv4 address
1592     @param mac_address - MAC address
1593     @param 
1594 */
1595 define bd_ip_mac_add_del
1596 {
1597   u32 client_index;
1598   u32 context;
1599   u32 bd_id;
1600   u8 is_add;
1601   u8 is_ipv6;
1602   u8 ip_address[16];
1603   u8 mac_address[6];
1604 };
1605
1606 /** \brief Set bridge domain ip to mac entry response
1607     @param context - sender context, to match reply w/ request
1608     @param retval - return code for the set bridge flags request
1609 */
1610 define bd_ip_mac_add_del_reply
1611 {
1612   u32 context;
1613   i32 retval;
1614 };
1615
1616 /** \brief Add/Delete classification table request
1617     @param client_index - opaque cookie to identify the sender
1618     @param context - sender context, to match reply w/ request
1619     @param is_add- if non-zero add the table, else delete it
1620     @param table_index - if add, reuturns index of the created table, else specifies the table to delete  
1621     @param nbuckets - number of buckets when adding a table
1622     @param memory_size - memory size when adding a table
1623     @param match_n_vectors - number of match vectors
1624     @param next_table_index - index of next table
1625     @param miss_next_index - index of miss table
1626     @param mask[] - match mask
1627 */
1628 define classify_add_del_table
1629 {
1630   u32 client_index;
1631   u32 context;
1632   u8 is_add;
1633   u32 table_index;
1634   u32 nbuckets;
1635   u32 memory_size;
1636   u32 skip_n_vectors;
1637   u32 match_n_vectors;
1638   u32 next_table_index;
1639   u32 miss_next_index;
1640   u8 mask[0];
1641 };
1642
1643 /** \brief Add/Delete classification table response
1644     @param context - sender context, to match reply w/ request
1645     @param retval - return code for the table add/del requst
1646     @param new_table_index - for add, returned index of the new table
1647     @param skip_n_vectors - for add, returned value of skip_n_vectors in table
1648     @param match_n_vectors -for add, returned value of match_n_vectors in table
1649 */
1650 define classify_add_del_table_reply
1651 {
1652   u32 context;
1653   i32 retval;
1654   u32 new_table_index;
1655   u32 skip_n_vectors;
1656   u32 match_n_vectors;
1657 };
1658
1659 /** \brief Classify add / del session request
1660     @param client_index - opaque cookie to identify the sender
1661     @param context - sender context, to match reply w/ request
1662     @param is_add - add session if non-zero, else delete
1663     @param table_index - index of the table to add/del the session, required
1664     @param hit_next_index - for add, hit_next_index of new session, required
1665     @param opaque_index - for add, opaque_index of new session
1666     @param advance -for add, advance value for session
1667     @param match[] - for add, match value for session, required
1668 */
1669 define classify_add_del_session
1670 {
1671   u32 client_index;
1672   u32 context;
1673   u8 is_add;
1674   u32 table_index;
1675   u32 hit_next_index;
1676   u32 opaque_index;
1677   i32 advance;
1678   u8 match[0];
1679 };
1680
1681 /** \brief Classify add / del session response
1682     @param context - sender context, to match reply w/ request
1683     @param retval - return code for the add/del session request
1684 */
1685 define classify_add_del_session_reply
1686 {
1687   u32 context;
1688   i32 retval;
1689 };
1690
1691 /** \brief Set/unset the classification table for an interface request 
1692     @param client_index - opaque cookie to identify the sender
1693     @param context - sender context, to match reply w/ request
1694     @param is_ipv6 - ipv6 if non-zero, else ipv4
1695     @param sw_if_index - interface to associate with the table
1696     @param table_index - index of the table, if ~0 unset the table
1697 */
1698 define classify_set_interface_ip_table
1699 {
1700   u32 client_index;
1701   u32 context;
1702   u8 is_ipv6;
1703   u32 sw_if_index;
1704   u32 table_index;              /* ~0 => off */
1705 };
1706
1707 /** \brief Set/unset interface classification table response 
1708     @param context - sender context, to match reply w/ request
1709     @param retval - return code
1710 */
1711 define classify_set_interface_ip_table_reply
1712 {
1713   u32 context;
1714   i32 retval;
1715 };
1716
1717 /** \brief Set/unset l2 classification tables for an interface request
1718     @param client_index - opaque cookie to identify the sender
1719     @param context - sender context, to match reply w/ request
1720     @param sw_if_index - interface to set/unset tables for
1721     @param ip4_table_index - ip4 index, use ~0 for all 3 indexes to unset
1722     @param ip6_table_index - ip6 index
1723     @param other_table_index - other index
1724 */
1725 define classify_set_interface_l2_tables
1726 {
1727   u32 client_index;
1728   u32 context;
1729   u32 sw_if_index;
1730   /* 3 x ~0 => off */
1731   u32 ip4_table_index;
1732   u32 ip6_table_index;
1733   u32 other_table_index;
1734 };
1735
1736 /** \brief Set/unset l2 classification tables for an interface response
1737     @param context - sender context, to match reply w/ request
1738     @param retval - return code for the request
1739 */
1740 define classify_set_interface_l2_tables_reply
1741 {
1742   u32 context;
1743   i32 retval;
1744 };
1745
1746 /** \brief Get node index using name request
1747     @param client_index - opaque cookie to identify the sender
1748     @param context - sender context, to match reply w/ request
1749     @param node_name[] - name of the node
1750 */
1751 define get_node_index
1752 {
1753   u32 client_index;
1754   u32 context;
1755   u8 node_name[64];
1756 };
1757
1758 /** \brief Get node index using name request
1759     @param context - sender context, to match reply w/ request
1760     @param retval - return code for the request
1761     @param node_index - index of the desired node if found, else ~0
1762 */
1763 define get_node_index_reply
1764 {
1765   u32 context;
1766   i32 retval;
1767   u32 node_index;
1768 };
1769
1770 /** \brief Set the next node for a given node request
1771     @param client_index - opaque cookie to identify the sender
1772     @param context - sender context, to match reply w/ request
1773     @param node_name[] - node to add the next node to
1774     @param next_name[] - node to add as the next node
1775 */
1776 define add_node_next
1777 {
1778   u32 client_index;
1779   u32 context;
1780   u8 node_name[64];
1781   u8 next_name[64];
1782 };
1783
1784 /** \brief IP Set the next node for a given node response
1785     @param context - sender context, to match reply w/ request
1786     @param retval - return code for the add next node request
1787     @param next_index - the index of the next node if success, else ~0
1788 */
1789 define add_node_next_reply
1790 {
1791   u32 context;
1792   i32 retval;
1793   u32 next_index;
1794 };
1795
1796 /** \brief DHCP Proxy config 2 add / del request
1797     @param client_index - opaque cookie to identify the sender
1798     @param context - sender context, to match reply w/ request
1799     @param rx_vrf_id - receive vrf id
1800     @param server_vrf_id - server vrf id
1801     @param if_ipv6 - ipv6 if non-zero, else ipv4
1802     @param is_add - add the config if non-zero, else delete
1803     @param insert_circuit_id - option82 suboption 1 fib number
1804     @param dhcp_server[] - server address
1805     @param dhcp_src_address[] - <fix this, need details>
1806 */
1807 define dhcp_proxy_config_2
1808 {
1809   u32 client_index;
1810   u32 context;
1811   u32 rx_vrf_id;
1812   u32 server_vrf_id;
1813   u8 is_ipv6;
1814   u8 is_add;
1815   u8 insert_circuit_id;
1816   u8 dhcp_server[16];
1817   u8 dhcp_src_address[16];
1818 };
1819
1820 /** \brief DHCP Proxy config 2 add / del response
1821     @param context - sender context, to match reply w/ request
1822     @param retval - return code for request
1823 */
1824 define dhcp_proxy_config_2_reply
1825 {
1826   u32 context;
1827   i32 retval;
1828 };
1829
1830 /** \brief l2tpv3 tunnel interface create request
1831     @param client_index - opaque cookie to identify the sender
1832     @param context - sender context, to match reply w/ request
1833     @param client_address - remote client tunnel ip address
1834     @param client_address - local tunnel ip address
1835     @param is_ipv6 - ipv6 if non-zero, else ipv4
1836     @param local_session_id - local tunnel session id
1837     @param remote_session_id - remote tunnel session id
1838     @param local_cookie - local tunnel cookie
1839     @param l2_sublayer_present - l2 sublayer is present in packets if non-zero
1840     @param encap_vrf_id - fib identifier used for outgoing encapsulated packets
1841 */
1842 define l2tpv3_create_tunnel
1843 {
1844   u32 client_index;
1845   u32 context;
1846   u8 client_address[16];
1847   u8 our_address[16];
1848   u8 is_ipv6;
1849   u32 local_session_id;
1850   u32 remote_session_id;
1851   u64 local_cookie;
1852   u64 remote_cookie;
1853   u8 l2_sublayer_present;
1854   u32 encap_vrf_id;
1855 };
1856
1857 /** \brief l2tpv3 tunnel interface create response
1858     @param context - sender context, to match reply w/ request
1859     @param retval - return code for the request
1860     @param sw_if_index - index of the new tunnel interface
1861 */
1862 define l2tpv3_create_tunnel_reply
1863 {
1864   u32 context;
1865   i32 retval;
1866   u32 sw_if_index;
1867 };
1868
1869 define l2tpv3_set_tunnel_cookies
1870 {
1871   u32 client_index;
1872   u32 context;
1873   u32 sw_if_index;
1874   u64 new_local_cookie;
1875   u64 new_remote_cookie;
1876 };
1877
1878 /** \brief L2TP tunnel set cookies response
1879     @param context - sender context, to match reply w/ request
1880     @param retval - return code for the request
1881 */
1882 define l2tpv3_set_tunnel_cookies_reply
1883 {
1884   u32 context;
1885   i32 retval;
1886 };
1887
1888 define sw_if_l2tpv3_tunnel_details
1889 {
1890   u32 context;
1891   u32 sw_if_index;
1892   u8 interface_name[64];
1893   u8 client_address[16];
1894   u8 our_address[16];
1895   u32 local_session_id;
1896   u32 remote_session_id;
1897   u64 local_cookie[2];
1898   u64 remote_cookie;
1899   u8 l2_sublayer_present;
1900 };
1901
1902 define sw_if_l2tpv3_tunnel_dump
1903 {
1904   u32 client_index;
1905   u32 context;
1906 };
1907
1908 /** \brief L2 fib clear table request, clear all mac entries in the l2 fib
1909     @param client_index - opaque cookie to identify the sender
1910     @param context - sender context, to match reply w/ request
1911 */
1912 define l2_fib_clear_table
1913 {
1914   u32 client_index;
1915   u32 context;
1916 };
1917
1918 /** \brief L2 fib clear table response
1919     @param context - sender context, to match reply w/ request
1920     @param retval - return code for the request
1921 */
1922 define l2_fib_clear_table_reply
1923 {
1924   u32 context;
1925   i32 retval;
1926 };
1927
1928 /** \brief L2 interface ethernet flow point filtering enable/disable request
1929     @param client_index - opaque cookie to identify the sender
1930     @param context - sender context, to match reply w/ request
1931     @param sw_if_index - interface to enable/disable filtering on
1932     @param enable_disable - if non-zero enable filtering, else disable
1933 */
1934 define l2_interface_efp_filter
1935 {
1936   u32 client_index;
1937   u32 context;
1938   u32 sw_if_index;
1939   u32 enable_disable;
1940 };
1941
1942 /** \brief L2 interface ethernet flow point filtering response
1943     @param context - sender context, to match reply w/ request
1944     @param retval - return code for the request
1945 */
1946 define l2_interface_efp_filter_reply
1947 {
1948   u32 context;
1949   i32 retval;
1950 };
1951
1952 define l2tpv3_interface_enable_disable
1953 {
1954   u32 client_index;
1955   u32 context;
1956   u8 enable_disable;
1957   u32 sw_if_index;
1958 };
1959
1960 define l2tpv3_interface_enable_disable_reply
1961 {
1962   u32 context;
1963   i32 retval;
1964 };
1965
1966 define l2tpv3_set_lookup_key
1967 {
1968   u32 client_index;
1969   u32 context;
1970   /* 0 = ip6 src_address, 1 = ip6 dst_address, 2 = session_id */
1971   u8 key;
1972 };
1973
1974 define l2tpv3_set_lookup_key_reply
1975 {
1976   u32 context;
1977   i32 retval;
1978 };
1979
1980 define vxlan_add_del_tunnel
1981 {
1982   u32 client_index;
1983   u32 context;
1984   u8 is_add;
1985   u8 is_ipv6;
1986   u8 src_address[16];
1987   u8 dst_address[16];
1988   u32 encap_vrf_id;
1989   u32 decap_next_index;
1990   u32 vni;
1991 };
1992
1993 define vxlan_add_del_tunnel_reply
1994 {
1995   u32 context;
1996   i32 retval;
1997   u32 sw_if_index;
1998 };
1999
2000 define vxlan_tunnel_dump
2001 {
2002   u32 client_index;
2003   u32 context;
2004   u32 sw_if_index;
2005 };
2006
2007 define vxlan_tunnel_details
2008 {
2009   u32 context;
2010   u32 sw_if_index;
2011   u8 src_address[16];
2012   u8 dst_address[16];
2013   u32 encap_vrf_id;
2014   u32 decap_next_index;
2015   u32 vni;
2016   u8 is_ipv6;
2017 };
2018
2019 define gre_add_del_tunnel
2020 {
2021   u32 client_index;
2022   u32 context;
2023   u8 is_add;
2024   u8 is_ipv6;
2025   u8 src_address[16];
2026   u8 dst_address[16];
2027   u32 outer_fib_id;
2028 };
2029
2030 define gre_add_del_tunnel_reply
2031 {
2032   u32 context;
2033   i32 retval;
2034   u32 sw_if_index;
2035 };
2036
2037 define gre_tunnel_dump
2038 {
2039   u32 client_index;
2040   u32 context;
2041   u32 sw_if_index;
2042 };
2043
2044 define gre_tunnel_details
2045 {
2046   u32 context;
2047   u32 sw_if_index;
2048   u8 is_ipv6;
2049   u8 src_address[16];
2050   u8 dst_address[16];
2051   u32 outer_fib_id;
2052 };
2053
2054 /** \brief L2 interface vlan tag rewrite configure request
2055     @param client_index - opaque cookie to identify the sender
2056     @param context - sender context, to match reply w/ request
2057     @param sw_if_index - interface the operation is applied to
2058     @param vtr_op - Choose from l2_vtr_op_t enum values
2059     @param push_dot1q - first pushed flag dot1q id set, else dot1ad
2060     @param tag1 - Needed for any push or translate vtr op
2061     @param tag2 - Needed for any push 2 or translate x-2 vtr ops
2062 */
2063 define l2_interface_vlan_tag_rewrite
2064 {
2065   u32 client_index;
2066   u32 context;
2067   u32 sw_if_index;
2068   u32 vtr_op;
2069   u32 push_dot1q;               // ethertype of first pushed tag is dot1q/dot1ad
2070   u32 tag1;                     // first pushed tag
2071   u32 tag2;                     // second pushed tag
2072 };
2073
2074 /** \brief L2 interface vlan tag rewrite response
2075     @param context - sender context, to match reply w/ request
2076     @param retval - return code for the request
2077 */
2078 define l2_interface_vlan_tag_rewrite_reply
2079 {
2080   u32 context;
2081   i32 retval;
2082 };
2083
2084 /** \brief vhost-user interface create request
2085     @param client_index - opaque cookie to identify the sender
2086     @param is_server - our side is socket server
2087     @param sock_filename - unix socket filename, used to speak with frontend
2088     @param use_custom_mac - enable or disable the use of the provided hardware address
2089     @param mac_address - hardware address to use if 'use_custom_mac' is set
2090 */
2091 define create_vhost_user_if
2092 {
2093   u32 client_index;
2094   u32 context;
2095   u8 is_server;
2096   u8 sock_filename[256];
2097   u8 renumber;
2098   u32 custom_dev_instance;
2099   u8 use_custom_mac;
2100   u8 mac_address[6];
2101 };
2102
2103 /** \brief vhost-user interface create response
2104     @param context - sender context, to match reply w/ request
2105     @param retval - return code for the request
2106     @param sw_if_index - interface the operation is applied to
2107 */
2108 define create_vhost_user_if_reply
2109 {
2110   u32 context;
2111   i32 retval;
2112   u32 sw_if_index;
2113 };
2114
2115 /** \brief vhost-user interface modify request
2116     @param client_index - opaque cookie to identify the sender
2117     @param is_server - our side is socket server
2118     @param sock_filename - unix socket filename, used to speak with frontend
2119 */
2120 define modify_vhost_user_if
2121 {
2122   u32 client_index;
2123   u32 context;
2124   u32 sw_if_index;
2125   u8 is_server;
2126   u8 sock_filename[256];
2127   u8 renumber;
2128   u32 custom_dev_instance;
2129 };
2130
2131 /** \brief vhost-user interface modify response
2132     @param context - sender context, to match reply w/ request
2133     @param retval - return code for the request
2134 */
2135 define modify_vhost_user_if_reply
2136 {
2137   u32 context;
2138   i32 retval;
2139 };
2140
2141 /** \brief vhost-user interface delete request
2142     @param client_index - opaque cookie to identify the sender
2143 */
2144 define delete_vhost_user_if
2145 {
2146   u32 client_index;
2147   u32 context;
2148   u32 sw_if_index;
2149 };
2150
2151 /** \brief vhost-user interface delete response
2152     @param context - sender context, to match reply w/ request
2153     @param retval - return code for the request
2154 */
2155 define delete_vhost_user_if_reply
2156 {
2157   u32 context;
2158   i32 retval;
2159 };
2160
2161 define create_subif
2162 {
2163   u32 client_index;
2164   u32 context;
2165   u32 sw_if_index;
2166   u32 sub_id;
2167
2168   /* These fields map directly onto the subif template */
2169   u8 no_tags;
2170   u8 one_tag;
2171   u8 two_tags;
2172   u8 dot1ad;                    // 0 = dot1q, 1=dot1ad
2173   u8 exact_match;
2174   u8 default_sub;
2175   u8 outer_vlan_id_any;
2176   u8 inner_vlan_id_any;
2177   u16 outer_vlan_id;
2178   u16 inner_vlan_id;
2179 };
2180
2181 define create_subif_reply
2182 {
2183   u32 context;
2184   i32 retval;
2185   u32 sw_if_index;
2186 };
2187
2188 /** \brief show version
2189     @param client_index - opaque cookie to identify the sender
2190     @param context - sender context, to match reply w/ request
2191 */
2192 define show_version
2193 {
2194   u32 client_index;
2195   u32 context;
2196 };
2197
2198 /** \brief show version response
2199     @param context - sender context, to match reply w/ request
2200     @param retval - return code for the request
2201     @param program - name of the program (vpe)
2202     @param version  - version of the program
2203     @param build_directory - root of the workspace where the program was built
2204 */
2205 define show_version_reply
2206 {
2207   u32 context;
2208   i32 retval;
2209   u8 program[32];
2210   u8 version[32];
2211   u8 build_date[32];
2212   u8 build_directory[256];
2213 };
2214
2215 /** \brief Vhost-user interface details structure (fix this)
2216     @param sw_if_index - index of the interface
2217     @param interface_name - name of interface
2218     @param virtio_net_hdr_sz - net header size
2219     @param features - interface features
2220     @param is_server - vhost-user server socket
2221     @param sock_filename - socket filename
2222     @param num_regions - number of used memory regions
2223 */
2224 define sw_interface_vhost_user_details
2225 {
2226   u32 context;
2227   u32 sw_if_index;
2228   u8 interface_name[64];
2229   u32 virtio_net_hdr_sz;
2230   u64 features;
2231   u8 is_server;
2232   u8 sock_filename[256];
2233   u32 num_regions;
2234   i32 sock_errno;
2235 };
2236
2237 /* works */
2238 define sw_interface_vhost_user_dump
2239 {
2240   u32 client_index;
2241   u32 context;
2242 };
2243
2244 define ip_address_details
2245 {
2246   u32 client_index;
2247   u32 context;
2248   u8 ip[16];
2249   u8 prefix_length;
2250 };
2251
2252 define ip_address_dump
2253 {
2254   u32 client_index;
2255   u32 context;
2256   u32 sw_if_index;
2257   u8 is_ipv6;
2258 };
2259
2260 define ip_details
2261 {
2262   u32 sw_if_index;
2263   u32 context;
2264 };
2265
2266 define ip_dump
2267 {
2268   u32 client_index;
2269   u32 context;
2270   u8 is_ipv6;
2271 };
2272
2273 /** \brief l2 fib table entry structure
2274     @param bd_id - the l2 fib / bridge domain table id
2275     @param mac - the entry's mac address
2276     @param sw_if_index - index of the interface
2277     @param static_mac - the entry is statically configured.
2278     @param filter_mac - the entry is a mac filter entry.
2279     @param bvi_mac - the mac address is a bridge virtual interface
2280 */
2281 define l2_fib_table_entry
2282 {
2283   u32 context;
2284   u32 bd_id;
2285   u64 mac;
2286   u32 sw_if_index;
2287   u8 static_mac;
2288   u8 filter_mac;
2289   u8 bvi_mac;
2290 };
2291
2292 /** \brief Dump l2 fib (aka bridge domain) table
2293     @param client_index - opaque cookie to identify the sender
2294     @param bd_id - the l2 fib / bridge domain table identifier
2295 */
2296 define l2_fib_table_dump
2297 {
2298   u32 client_index;
2299   u32 context;
2300   u32 bd_id;
2301 };
2302
2303 define vxlan_gpe_add_del_tunnel
2304 {
2305   u32 client_index;
2306   u32 context;
2307   u8 is_ipv6;
2308   u8 local[16];
2309   u8 remote[16];
2310   u32 encap_vrf_id;
2311   u32 decap_vrf_id;
2312   u8 protocol;
2313   u32 vni;
2314   u8 is_add;
2315 };
2316
2317 define vxlan_gpe_add_del_tunnel_reply
2318 {
2319   u32 context;
2320   i32 retval;
2321   u32 sw_if_index;
2322 };
2323
2324 define vxlan_gpe_tunnel_dump
2325 {
2326   u32 client_index;
2327   u32 context;
2328   u32 sw_if_index;
2329 };
2330
2331 define vxlan_gpe_tunnel_details
2332 {
2333   u32 context;
2334   u32 sw_if_index;
2335   u8 local[16];
2336   u8 remote[16];
2337   u32 vni;
2338   u8 protocol;
2339   u32 encap_vrf_id;
2340   u32 decap_vrf_id;
2341   u8 is_ipv6;
2342 };
2343
2344 /** \brief add or delete locator_set
2345     @param client_index - opaque cookie to identify the sender
2346     @param context - sender context, to match reply w/ request
2347     @param is_add - add address if non-zero, else delete
2348     @param locator_set_name - locator name
2349     @param locator_num - number of locators
2350     @param locators - Lisp locator data
2351 */
2352 define lisp_add_del_locator_set
2353 {
2354   u32 client_index;
2355   u32 context;
2356   u8 is_add;
2357   u8 locator_set_name[64];
2358   u32 locator_num;
2359   u8 locators[locator_num];
2360 };
2361
2362 /** \brief Reply for locator_set add/del
2363     @param context - returned sender context, to match reply w/ request
2364     @param retval - return code
2365     @param ls_index - locator set index
2366 */
2367 define lisp_add_del_locator_set_reply
2368 {
2369   u32 context;
2370   i32 retval;
2371   u32 ls_index;
2372 };
2373
2374 /** \brief add or delete locator for locator_set
2375     @param client_index - opaque cookie to identify the sender
2376     @param context - sender context, to match reply w/ request
2377     @param is_add - add address if non-zero, else delete
2378     @param locator_set_name - name of locator_set to add/del locator
2379     @param sw_if_index - index of the interface
2380     @param priority - priority of the lisp locator
2381     @param weight - weight of the lisp locator
2382 */
2383 define lisp_add_del_locator
2384 {
2385   u32 client_index;
2386   u32 context;
2387   u8 is_add;
2388   u8 locator_set_name[64];
2389   u32 sw_if_index;
2390   u8 priority;
2391   u8 weight;
2392 };
2393
2394 /** \brief Reply for locator add/del
2395     @param context - returned sender context, to match reply w/ request
2396     @param retval - return code
2397 */
2398 define lisp_add_del_locator_reply
2399 {
2400   u32 context;
2401   i32 retval;
2402 };
2403
2404 /** \brief add or delete lisp eid-table
2405     @param client_index - opaque cookie to identify the sender
2406     @param context - sender context, to match reply w/ request
2407     @param is_add - add address if non-zero, else delete
2408     @param eid_type:
2409       0 : ipv4
2410       1 : ipv6
2411       2 : mac
2412     @param eid - EID can be ip4, ip6 or mac
2413     @param prefix_len - prefix len
2414     @param locator_set_name - name of locator_set to add/del eid-table
2415     @param vni - virtual network instance
2416 */
2417 define lisp_add_del_local_eid
2418 {
2419   u32 client_index;
2420   u32 context;
2421   u8 is_add;
2422   u8 eid_type;
2423   u8 eid[16];
2424   u8 prefix_len;
2425   u8 locator_set_name[64];
2426   u32 vni;
2427 };
2428
2429 /** \brief Reply for local_eid add/del
2430     @param context - returned sender context, to match reply w/ request
2431     @param retval - return code
2432 */
2433 define lisp_add_del_local_eid_reply
2434 {
2435   u32 context;
2436   i32 retval;
2437 };
2438
2439 /** \brief add or delete lisp gpe tunnel
2440     @param client_index - opaque cookie to identify the sender
2441     @param context - sender context, to match reply w/ request
2442     @param is_add - add address if non-zero, else delete
2443     @param eid_type -
2444       0 : ipv4
2445       1 : ipv6
2446       2 : mac
2447     @param rmt_eid - remote eid
2448     @param lcl_eid - local eid
2449     @param rmt_len - remote prefix len
2450     @param lcl_len - local prefix len
2451     @param vni - virtual network identifier
2452     @param dp_table - vrf/bridge domain id
2453     @param loc_num - number of locators
2454     @param lcl_locs - array of local locators
2455     @param rmt_locs - array of remote locators
2456     @param action - negative action when 0 locators configured
2457 */
2458 define lisp_gpe_add_del_fwd_entry
2459 {
2460   u32 client_index;
2461   u32 context;
2462   u8 is_add;
2463   u8 eid_type;
2464   u8 rmt_eid[16];
2465   u8 lcl_eid[16];
2466   u8 rmt_len;
2467   u8 lcl_len;
2468   u32 vni;
2469   u32 dp_table;
2470   u32 loc_num;
2471   u8 lcl_locs[loc_num];
2472   u8 rmt_locs[loc_num];
2473   u8 action;
2474 };
2475
2476 /** \brief Reply for gpe_fwd_entry add/del
2477     @param context - returned sender context, to match reply w/ request
2478     @param retval - return code
2479 */
2480 define lisp_gpe_add_del_fwd_entry_reply
2481 {
2482   u32 context;
2483   i32 retval;
2484 };
2485
2486 /** \brief add or delete map-resolver
2487     @param client_index - opaque cookie to identify the sender
2488     @param context - sender context, to match reply w/ request
2489     @param is_add - add address if non-zero, else delete
2490     @param is_ipv6 - if non-zero the address is ipv6, else ipv4
2491     @param ip_address - array of address bytes
2492 */
2493 define lisp_add_del_map_resolver
2494 {
2495   u32 client_index;
2496   u32 context;
2497   u8 is_add;
2498   u8 is_ipv6;
2499   u8 ip_address[16];
2500 };
2501
2502 /** \brief Reply for map_resolver add/del
2503     @param context - returned sender context, to match reply w/ request
2504     @param retval - return code
2505 */
2506 define lisp_add_del_map_resolver_reply
2507 {
2508   u32 context;
2509   i32 retval;
2510 };
2511
2512 /** \brief enable or disable lisp-gpe protocol
2513     @param client_index - opaque cookie to identify the sender
2514     @param context - sender context, to match reply w/ request
2515     @param is_en - enable protocol if non-zero, else disable
2516 */
2517 define lisp_gpe_enable_disable
2518 {
2519   u32 client_index;
2520   u32 context;
2521   u8 is_en;
2522 };
2523
2524 /** \brief Reply for gpe enable/disable
2525     @param context - returned sender context, to match reply w/ request
2526     @param retval - return code
2527 */
2528 define lisp_gpe_enable_disable_reply
2529 {
2530   u32 context;
2531   i32 retval;
2532 };
2533
2534 /** \brief enable or disable LISP feature
2535     @param client_index - opaque cookie to identify the sender
2536     @param context - sender context, to match reply w/ request
2537     @param is_en - enable protocol if non-zero, else disable
2538 */
2539 define lisp_enable_disable
2540 {
2541   u32 client_index;
2542   u32 context;
2543   u8 is_en;
2544 };
2545
2546 /** \brief Reply for gpe enable/disable
2547     @param context - returned sender context, to match reply w/ request
2548     @param retval - return code
2549 */
2550 define lisp_enable_disable_reply
2551 {
2552   u32 context;
2553   i32 retval;
2554 };
2555
2556 /** \brief add or delete gpe_iface
2557     @param client_index - opaque cookie to identify the sender
2558     @param context - sender context, to match reply w/ request
2559     @param is_add - add address if non-zero, else delete
2560 */
2561 define lisp_gpe_add_del_iface
2562 {
2563   u32 client_index;
2564   u32 context;
2565   u8 is_add;
2566   u8 is_l2;
2567   u32 dp_table;
2568   u32 vni;
2569 };
2570
2571 /** \brief Reply for gpe_iface add/del
2572     @param context - returned sender context, to match reply w/ request
2573     @param retval - return code
2574 */
2575 define lisp_gpe_add_del_iface_reply
2576 {
2577   u32 context;
2578   i32 retval;
2579 };
2580
2581 /** \brief configure or disable LISP PITR node
2582     @param client_index - opaque cookie to identify the sender
2583     @param context - sender context, to match reply w/ request
2584     @param ls_name - locator set name
2585     @param is_add - add locator set if non-zero, else disable pitr
2586 */
2587 define lisp_pitr_set_locator_set
2588 {
2589   u32 client_index;
2590   u32 context;
2591   u8 is_add;
2592   u8 ls_name[64];
2593 };
2594
2595 /** \brief Reply for lisp_pitr_set_locator_set
2596     @param context - returned sender context, to match reply w/ request
2597     @param retval - return code
2598 */
2599 define lisp_pitr_set_locator_set_reply
2600 {
2601   u32 context;
2602   i32 retval;
2603 };
2604
2605 /** \brief add or delete remote static mapping
2606     @param client_index - opaque cookie to identify the sender
2607     @param context - sender context, to match reply w/ request
2608     @param is_add - add address if non-zero, else delete
2609     @param is_src_dst - flag indicating src/dst based routing policy
2610     @param del_all - if set, delete all remote mappings
2611     @param vni - virtual network instance
2612     @param action - negative map-reply action
2613     @param eid_type -
2614       0 : ipv4
2615       1 : ipv6
2616       2 : mac
2617     @param deid - dst EID
2618     @param seid - src EID, valid only if is_src_dst is enabled
2619     @param rloc_num - number of remote locators
2620     @param rlocs - remote locator data
2621 */
2622 define lisp_add_del_remote_mapping
2623 {
2624   u32 client_index;
2625   u32 context;
2626   u8 is_add;
2627   u8 is_src_dst;
2628   u8 del_all;
2629   u32 vni;
2630   u8 action;
2631   u8 eid_type;
2632   u8 eid[16];
2633   u8 eid_len;
2634   u8 seid[16];
2635   u8 seid_len;
2636   u32 rloc_num;
2637   u8 rlocs[rloc_num];
2638 };
2639
2640 /** \brief Reply for lisp_add_del_remote_mapping
2641     @param context - returned sender context, to match reply w/ request
2642     @param retval - return code
2643 */
2644 define lisp_add_del_remote_mapping_reply
2645 {
2646   u32 context;
2647   i32 retval;
2648 };
2649
2650 /** \brief add or delete LISP adjacency adjacency
2651     @param client_index - opaque cookie to identify the sender
2652     @param context - sender context, to match reply w/ request
2653     @param is_add - add address if non-zero, else delete
2654     @param vni - virtual network instance
2655     @param eid_type -
2656       0 : ipv4
2657       1 : ipv6
2658       2 : mac
2659     @param deid - destination EID
2660     @param seid - source EID
2661 */
2662 define lisp_add_del_adjacency
2663 {
2664   u32 client_index;
2665   u32 context;
2666   u8 is_add;
2667   u32 vni;
2668   u8 eid_type;
2669   u8 deid[16];
2670   u8 seid[16];
2671   u8 deid_len;
2672   u8 seid_len;
2673 };
2674
2675 /** \brief Reply for lisp_add_del_adjacency
2676     @param context - returned sender context, to match reply w/ request
2677     @param retval - return code
2678 */
2679 define lisp_add_del_adjacency_reply
2680 {
2681   u32 context;
2682   i32 retval;
2683 };
2684
2685 /** \brief add or delete map request itr rlocs
2686     @param client_index - opaque cookie to identify the sender
2687     @param context - sender context, to match reply w/ request
2688     @param is_add - add address if non-zero, else delete
2689     @param locator_set_name - locator set name
2690 */
2691 define lisp_add_del_map_request_itr_rlocs
2692 {
2693   u32 client_index;
2694   u32 context;
2695   u8 is_add;
2696   u8 locator_set_name[64];
2697 };
2698
2699 /** \brief Reply for lisp_add_del_map_request_itr_rlocs
2700     @param context - returned sender context, to match reply w/ request
2701     @param retval - return code
2702 */
2703
2704 define lisp_add_del_map_request_itr_rlocs_reply
2705 {
2706   u32 context;
2707   i32 retval;
2708 };
2709
2710 /** \brief map/unmap vni/bd_index to vrf
2711     @param client_index - opaque cookie to identify the sender
2712     @param context - sender context, to match reply w/ request
2713     @param is_add - add or delete mapping
2714     @param dp_table - virtual network id/bridge domain index
2715     @param vrf - vrf
2716 */
2717 define lisp_eid_table_add_del_map
2718 {
2719   u32 client_index;
2720   u32 context;
2721   u8 is_add;
2722   u32 vni;
2723   u32 dp_table;
2724   u8 is_l2;
2725 };
2726
2727 /** \brief Reply for lisp_eid_table_add_del_map
2728     @param context - returned sender context, to match reply w/ request
2729     @param retval - return code
2730 */
2731 define lisp_eid_table_add_del_map_reply
2732 {
2733   u32 context;
2734   i32 retval;
2735 };
2736
2737 /** \brief Request for map lisp locator status
2738     @param client_index - opaque cookie to identify the sender
2739     @param context - sender context, to match reply w/ request
2740     @param locator_set_index - index of locator_set
2741     @param filter - filter type;
2742       Support value:
2743         0: all locator
2744         1: local locator
2745         2: remote locator
2746  */
2747 define lisp_locator_dump
2748 {
2749   u32 client_index;
2750   u32 context;
2751   u32 locator_set_index;
2752   u8 filter;
2753 };
2754
2755 /** \brief LISP locator_set status
2756     @param local - if is set, then locator is local
2757     @param locator_set_name - name of the locator_set
2758     @param sw_if_index - sw_if_index of the locator
2759     @param priority - locator priority
2760     @param weight - locator weight
2761   */
2762 define lisp_locator_details
2763 {
2764   u32 context;
2765   u8 local;
2766   u32 sw_if_index;
2767   u8 is_ipv6;
2768   u8 ip_address[16];
2769   u8 priority;
2770   u8 weight;
2771 };
2772
2773 /** \brief LISP locator_set status
2774     @param locator_set_name - name of the locator_set
2775     @param local - if is set, then locator_set is local
2776     @param locator_count - number of locator this stats block includes
2777     @param locator - locator data
2778  */
2779 define lisp_locator_set_details
2780 {
2781   u32 context;
2782   u8 local;
2783   u32 locator_set_index;
2784   u8 locator_set_name[64];
2785 };
2786
2787 /** \brief Request for locator_set summary status
2788     @param client_index - opaque cookie to identify the sender
2789     @param context - sender context, to match reply w/ request
2790     @param filter - filter type;
2791       Support value:
2792         0: all locator_set
2793         1: local locator_set
2794         2: remote locator_set
2795  */
2796 define lisp_locator_set_dump
2797 {
2798   u32 client_index;
2799   u32 context;
2800   u8 filter;
2801 };
2802
2803 /** \brief Dump lisp eid-table
2804     @param client_index - opaque cookie to identify the sender
2805     @param context - sender context, to match reply w/ request
2806     @param locator_set_index - index of locator_set
2807     @param is_local - local if non-zero, else remote
2808     @param eid_type:
2809       0 : ipv4
2810       1 : ipv6
2811       2 : mac
2812     @param eid - EID can be ip4, ip6 or mac
2813     @param prefix_len - prefix len
2814     @param vni - virtual network instance
2815     @param ttl - time to live
2816     @param authoritative - authoritative
2817 */
2818
2819 define lisp_eid_table_details
2820 {
2821   u32 context;
2822   u32 locator_set_index;
2823   u8 is_local;
2824   u8 eid_type;
2825   u32 vni;
2826   u8 eid[16];
2827   u8 eid_prefix_len;
2828   u32 ttl;
2829   u8 authoritative;
2830 };
2831
2832 /** \brief Request for eid table summary status
2833     @param client_index - opaque cookie to identify the sender
2834     @param context - sender context, to match reply w/ request
2835     @param eid_set - if non-zero request info about specific mapping
2836     @param vni - virtual network instance; valid only if eid_set != 0
2837     @param prefix_length - prefix length if EID is IP address;
2838       valid only if eid_set != 0
2839     @param eid_type - EID type; valid only if eid_set != 0
2840       Supported values:
2841         0: EID is IPv4
2842         1: EID is IPv6
2843         2: EID is ethernet address
2844     @param eid - endpoint identifier
2845     @param filter - filter type;
2846       Support values:
2847         0: all eid
2848         1: local eid
2849         2: remote eid
2850  */
2851 define lisp_eid_table_dump
2852 {
2853   u32 client_index;
2854   u32 context;
2855   u8 eid_set;
2856   u8 prefix_length;
2857   u32 vni;
2858   u8 eid_type;
2859   u8 eid[16];
2860   u8 filter;
2861 };
2862
2863 /** \brief Shows relationship between vni and vrf
2864     @param vrf - VRF index
2865     @param vni - vitual network instance
2866   */
2867 define lisp_eid_table_map_details
2868 {
2869   u32 context;
2870   u32 vni;
2871   u32 vrf;
2872 };
2873
2874 /** \brief Request for lisp_eid_table_map_details
2875     @param client_index - opaque cookie to identify the sender
2876     @param context - sender context, to match reply w/ request
2877  */
2878 define lisp_eid_table_map_dump
2879 {
2880   u32 client_index;
2881   u32 context;
2882 };
2883
2884 define lisp_gpe_tunnel_details
2885 {
2886   u32 context;
2887   u32 tunnels;
2888   u8 is_ipv6;
2889   u8 source_ip[16];
2890   u8 destination_ip[16];
2891   u32 encap_fib_id;
2892   u32 decap_fib_id;
2893   u32 dcap_next;
2894   u8 lisp_ver;
2895   u8 next_protocol;
2896   u8 flags;
2897   u8 ver_res;
2898   u8 res;
2899   u32 iid;
2900 };
2901
2902 /** \brief Request for gpe tunnel summary status
2903     @param client_index - opaque cookie to identify the sender
2904     @param context - sender context, to match reply w/ request
2905  */
2906 define lisp_gpe_tunnel_dump
2907 {
2908   u32 client_index;
2909   u32 context;
2910 };
2911
2912 /** \brief LISP map resolver status
2913     @param locator_set_name - name of the locator_set
2914     @param is_ipv6 - if non-zero the address is ipv6, else ipv4
2915     @param ip_address - array of address bytes
2916  */
2917 define lisp_map_resolver_details
2918 {
2919   u32 context;
2920   u8 is_ipv6;
2921   u8 ip_address[16];
2922 };
2923
2924 /** \brief Request for map resolver summary status
2925     @param client_index - opaque cookie to identify the sender
2926     @param context - sender context, to match reply w/ request
2927  */
2928 define lisp_map_resolver_dump
2929 {
2930   u32 client_index;
2931   u32 context;
2932 };
2933
2934 /** \brief Request for lisp-gpe protocol status
2935     @param client_index - opaque cookie to identify the sender
2936     @param context - sender context, to match reply w/ request
2937 */
2938 define show_lisp_status
2939 {
2940   u32 client_index;
2941   u32 context;
2942 };
2943
2944 /** \brief Status of lisp, enable or disable
2945     @param context - sender context, to match reply w/ request
2946     @param feature_status - lisp enable if non-zero, else disable
2947     @param gpe_status - lisp enable if non-zero, else disable
2948 */
2949 define show_lisp_status_reply
2950 {
2951   u32 context;
2952   i32 retval;
2953   u8 feature_status;
2954   u8 gpe_status;
2955 };
2956
2957 /** \brief Get LISP map request itr rlocs status
2958     @param context - sender context, to match reply w/ request
2959     @param locator_set_name - name of the locator_set
2960  */
2961 define lisp_get_map_request_itr_rlocs
2962 {
2963   u32 client_index;
2964   u32 context;
2965 };
2966
2967 /** \brief Request for map request itr rlocs summary status
2968  */
2969 define lisp_get_map_request_itr_rlocs_reply
2970 {
2971   u32 context;
2972   i32 retval;
2973   u8 locator_set_name[64];
2974 };
2975
2976 /** \brief Request for lisp pitr status
2977     @param client_index - opaque cookie to identify the sender
2978     @param context - sender context, to match reply w/ request
2979 */
2980 define show_lisp_pitr
2981 {
2982   u32 client_index;
2983   u32 context;
2984 };
2985
2986 /** \brief Status of lisp pitr, enable or disable
2987     @param context - sender context, to match reply w/ request
2988     @param status - lisp pitr enable if non-zero, else disable
2989     @param locator_set_name -  name of the locator_set
2990 */
2991 define show_lisp_pitr_reply
2992 {
2993   u32 context;
2994   i32 retval;
2995   u8 status;
2996   u8 locator_set_name[64];
2997 };
2998
2999 /* Gross kludge, DGMS */
3000 define interface_name_renumber
3001 {
3002   u32 client_index;
3003   u32 context;
3004   u32 sw_if_index;
3005   u32 new_show_dev_instance;
3006 };
3007
3008 define interface_name_renumber_reply
3009 {
3010   u32 context;
3011   i32 retval;
3012 };
3013
3014 /** \brief Register for ip4 arp resolution events
3015     @param client_index - opaque cookie to identify the sender
3016     @param context - sender context, to match reply w/ request
3017     @param enable_disable - 1 => register for events, 0 => cancel registration
3018     @param pid - sender's pid
3019     @param address - the exact ip4 address of interest
3020 */
3021 define want_ip4_arp_events
3022 {
3023   u32 client_index;
3024   u32 context;
3025   u8 enable_disable;
3026   u32 pid;
3027   u32 address;
3028 };
3029
3030 /** \brief Reply for interface events registration
3031     @param context - returned sender context, to match reply w/ request
3032     @param retval - return code
3033 */
3034 define want_ip4_arp_events_reply
3035 {
3036   u32 context;
3037   i32 retval;
3038 };
3039
3040 /** \brief Tell client about an ip4 arp resolution event
3041     @param client_index - opaque cookie to identify the sender
3042     @param context - sender context, to match reply w/ request
3043     @param address - the exact ip4 address of interest
3044     @param pid - client pid registered to receive notification
3045     @param sw_if_index - interface which received ARP packet
3046     @param new_mac - the new mac address 
3047 */
3048 define ip4_arp_event
3049 {
3050   u32 client_index;
3051   u32 context;
3052   u32 address;
3053   u32 pid;
3054   u32 sw_if_index;
3055   u8 new_mac[6];
3056 };
3057
3058 /** \brief L2 bridge domain add or delete request
3059     @param client_index - opaque cookie to identify the sender
3060     @param context - sender context, to match reply w/ request
3061     @param bd_id - the bridge domain to create
3062     @param flood - enable/disable bcast/mcast flooding in the bd
3063     @param uu_flood - enable/disable uknown unicast flood in the bd
3064     @param forward - enable/disable forwarding on all interfaces in the bd
3065     @param learn - enable/disable learning on all interfaces in the bd
3066     @param arp_term - enable/disable arp termination in the bd
3067     @param is_add - add or delete flag
3068 */
3069 define bridge_domain_add_del
3070 {
3071   u32 client_index;
3072   u32 context;
3073   u32 bd_id;
3074   u8 flood;
3075   u8 uu_flood;
3076   u8 forward;
3077   u8 learn;
3078   u8 arp_term;
3079   u8 is_add;
3080 };
3081
3082 /** \brief L2 bridge domain add or delete response
3083     @param context - sender context, to match reply w/ request
3084     @param retval - return code for the set bridge flags request
3085 */
3086 define bridge_domain_add_del_reply
3087 {
3088   u32 context;
3089   i32 retval;
3090 };
3091
3092 /** \brief L2 bridge domain request operational state details
3093     @param client_index - opaque cookie to identify the sender
3094     @param context - sender context, to match reply w/ request
3095     @param bd_id - the bridge domain id desired or ~0 to request all bds
3096 */
3097 define bridge_domain_dump
3098 {
3099   u32 client_index;
3100   u32 context;
3101   u32 bd_id;
3102 };
3103
3104 /** \brief L2 bridge domain operational state response
3105     @param bd_id - the bridge domain id
3106     @param flood - bcast/mcast flooding state on all interfaces in the bd
3107     @param uu_flood - uknown unicast flooding state on all interfaces in the bd
3108     @param forward - forwarding state on all interfaces in the bd
3109     @param learn - learning state on all interfaces in the bd
3110     @param arp_term - arp termination state on all interfaces in the bd
3111     @param n_sw_ifs - number of sw_if_index's in the domain
3112 */
3113 define bridge_domain_details
3114 {
3115   u32 context;
3116   u32 bd_id;
3117   u8 flood;
3118   u8 uu_flood;
3119   u8 forward;
3120   u8 learn;
3121   u8 arp_term;
3122   u32 bvi_sw_if_index;
3123   u32 n_sw_ifs;
3124 };
3125
3126 /** \brief L2 bridge domain sw interface operational state response
3127     @param bd_id - the bridge domain id
3128     @param sw_if_index - sw_if_index in the domain
3129     @param shg - split horizon group for the interface
3130 */
3131 define bridge_domain_sw_if_details
3132 {
3133   u32 context;
3134   u32 bd_id;
3135   u32 sw_if_index;
3136   u8 shg;
3137 };
3138
3139 /** \brief DHCP Client config add / del request
3140     @param client_index - opaque cookie to identify the sender
3141     @param context - sender context, to match reply w/ request
3142     @param sw_if_index - index of the interface for DHCP client
3143     @param hostname - hostname
3144     @param is_add - add the config if non-zero, else delete
3145     @param want_dhcp_event - DHCP event sent to the sender
3146            via dhcp_compl_event API message if non-zero
3147     @param pid - sender's pid
3148 */
3149 define dhcp_client_config
3150 {
3151   u32 client_index;
3152   u32 context;
3153   u32 sw_if_index;
3154   u8 hostname[64];
3155   u8 is_add;
3156   u8 want_dhcp_event;
3157   u32 pid;
3158 };
3159
3160 /** \brief DHCP Client config response
3161     @param context - sender context, to match reply w/ request
3162     @param retval - return code for the request
3163 */
3164 define dhcp_client_config_reply
3165 {
3166   u32 context;
3167   i32 retval;
3168 };
3169
3170 /** \brief Set/unset input ACL interface
3171     @param client_index - opaque cookie to identify the sender
3172     @param context - sender context, to match reply w/ request
3173     @param sw_if_index - interface to set/unset input ACL
3174     @param ip4_table_index - ip4 classify table index (~0 for skip)
3175     @param ip6_table_index - ip6 classify table index (~0 for skip)
3176     @param l2_table_index  -  l2 classify table index (~0 for skip)
3177     @param is_add - Set input ACL if non-zero, else unset
3178     Note: User is recommeneded to use just one valid table_index per call.
3179           (ip4_table_index, ip6_table_index, or l2_table_index)
3180 */
3181 define input_acl_set_interface
3182 {
3183   u32 client_index;
3184   u32 context;
3185   u32 sw_if_index;
3186   u32 ip4_table_index;
3187   u32 ip6_table_index;
3188   u32 l2_table_index;
3189   u8 is_add;
3190 };
3191
3192 /** \brief Set/unset input ACL interface response
3193     @param context - sender context, to match reply w/ request
3194     @param retval - return code for the request
3195 */
3196 define input_acl_set_interface_reply
3197 {
3198   u32 context;
3199   i32 retval;
3200 };
3201
3202 /** \brief IPsec: Add/delete Security Policy Database
3203     @param client_index - opaque cookie to identify the sender
3204     @param context - sender context, to match reply w/ request
3205     @param is_add - add SPD if non-zero, else delete
3206     @param spd_id - SPD instance id (control plane allocated)
3207 */
3208
3209 define ipsec_spd_add_del
3210 {
3211   u32 client_index;
3212   u32 context;
3213   u8 is_add;
3214   u32 spd_id;
3215 };
3216
3217 /** \brief Reply for IPsec: Add/delete Security Policy Database entry
3218     @param context - returned sender context, to match reply w/ request
3219     @param retval - return code
3220 */
3221
3222 define ipsec_spd_add_del_reply
3223 {
3224   u32 context;
3225   i32 retval;
3226 };
3227
3228 /** \brief IPsec: Add/delete SPD from interface
3229
3230     @param client_index - opaque cookie to identify the sender
3231     @param context - sender context, to match reply w/ request
3232     @param is_add - add security mode if non-zero, else delete
3233     @param sw_if_index - index of the interface
3234     @param spd_id - SPD instance id to use for lookups
3235 */
3236
3237
3238 define ipsec_interface_add_del_spd
3239 {
3240   u32 client_index;
3241   u32 context;
3242
3243   u8 is_add;
3244   u32 sw_if_index;
3245   u32 spd_id;
3246 };
3247
3248 /** \brief Reply for IPsec: Add/delete SPD from interface
3249     @param context - returned sender context, to match reply w/ request
3250     @param retval - return code
3251 */
3252
3253 define ipsec_interface_add_del_spd_reply
3254 {
3255   u32 context;
3256   i32 retval;
3257 };
3258
3259 /** \brief IPsec: Add/delete Security Policy Database entry
3260
3261     See RFC 4301, 4.4.1.1 on how to match packet to selectors
3262
3263     @param client_index - opaque cookie to identify the sender
3264     @param context - sender context, to match reply w/ request
3265     @param is_add - add SPD if non-zero, else delete
3266     @param spd_id - SPD instance id (control plane allocated)
3267     @param priority - priority of SPD entry (non-unique value).  Used to order SPD matching - higher priorities match before lower
3268     @param is_outbound - entry applies to outbound traffic if non-zero, otherwise applies to inbound traffic
3269     @param is_ipv6 - remote/local address are IPv6 if non-zero, else IPv4
3270     @param remote_address_start - start of remote address range to match
3271     @param remote_address_stop - end of remote address range to match
3272     @param local_address_start - start of local address range to match
3273     @param local_address_stop - end of local address range to match
3274     @param protocol - protocol type to match [0 means any]
3275     @param remote_port_start - start of remote port range to match ...
3276     @param remote_port_stop - end of remote port range to match [0 to 65535 means ANY, 65535 to 0 means OPAQUE]
3277     @param local_port_start - start of local port range to match ...
3278     @param local_port_stop - end of remote port range to match [0 to 65535 means ANY, 65535 to 0 means OPAQUE]
3279     @param policy - 0 = bypass (no IPsec processing), 1 = discard (discard packet with ICMP processing), 2 = resolve (send request to control plane for SA resolving, and discard without ICMP processing), 3 = protect (apply IPsec policy using following parameters)
3280     @param sa_id - SAD instance id (control plane allocated)
3281
3282 */
3283
3284 define ipsec_spd_add_del_entry
3285 {
3286   u32 client_index;
3287   u32 context;
3288   u8 is_add;
3289
3290   u32 spd_id;
3291   i32 priority;
3292   u8 is_outbound;
3293
3294   // Selector
3295   u8 is_ipv6;
3296   u8 is_ip_any;
3297   u8 remote_address_start[16];
3298   u8 remote_address_stop[16];
3299   u8 local_address_start[16];
3300   u8 local_address_stop[16];
3301
3302   u8 protocol;
3303
3304   u16 remote_port_start;
3305   u16 remote_port_stop;
3306   u16 local_port_start;
3307   u16 local_port_stop;
3308
3309   // Policy
3310   u8 policy;
3311   u32 sa_id;
3312 };
3313
3314 /** \brief Reply for IPsec: Add/delete Security Policy Database entry
3315     @param context - returned sender context, to match reply w/ request
3316     @param retval - return code
3317 */
3318
3319 define ipsec_spd_add_del_entry_reply
3320 {
3321   u32 context;
3322   i32 retval;
3323 };
3324
3325 /** \brief IPsec: Add/delete Security Association Database entry
3326     @param client_index - opaque cookie to identify the sender
3327     @param context - sender context, to match reply w/ request
3328     @param is_add - add SAD entry if non-zero, else delete
3329
3330     @param sad_id - sad id
3331
3332     @param spi - security parameter index
3333
3334     @param protocol - 0 = AH, 1 = ESP
3335
3336     @param crypto_algorithm - 0 = Null, 1 = AES-CBC-128, 2 = AES-CBC-192, 3 = AES-CBC-256, 4 = 3DES-CBC
3337     @param crypto_key_length - length of crypto_key in bytes
3338     @param crypto_key - crypto keying material
3339
3340     @param integrity_algorithm - 0 = None, 1 = MD5-96, 2 = SHA1-96, 3 = SHA-256, 4 = SHA-384, 5=SHA-512
3341     @param integrity_key_length - length of integrity_key in bytes
3342     @param integrity_key - integrity keying material
3343
3344     @param use_extended_sequence_number - use ESN when non-zero
3345
3346     @param is_tunnel - IPsec tunnel mode if non-zero, else transport mode
3347     @param is_tunnel_ipv6 - IPsec tunnel mode is IPv6 if non-zero, else IPv4 tunnel only valid if is_tunnel is non-zero
3348     @param tunnel_src_address - IPsec tunnel source address IPv6 if is_tunnel_ipv6 is non-zero, else IPv4. Only valid if is_tunnel is non-zero
3349     @param tunnel_dst_address - IPsec tunnel destination address IPv6 if is_tunnel_ipv6 is non-zero, else IPv4. Only valid if is_tunnel is non-zero
3350
3351     To be added:
3352      Anti-replay
3353      IPsec tunnel address copy mode (to support GDOI)
3354  */
3355
3356 define ipsec_sad_add_del_entry
3357 {
3358   u32 client_index;
3359   u32 context;
3360   u8 is_add;
3361
3362   u32 sad_id;
3363
3364   u32 spi;
3365
3366   u8 protocol;
3367
3368   u8 crypto_algorithm;
3369   u8 crypto_key_length;
3370   u8 crypto_key[128];
3371
3372   u8 integrity_algorithm;
3373   u8 integrity_key_length;
3374   u8 integrity_key[128];
3375
3376   u8 use_extended_sequence_number;
3377
3378   u8 is_tunnel;
3379   u8 is_tunnel_ipv6;
3380   u8 tunnel_src_address[16];
3381   u8 tunnel_dst_address[16];
3382 };
3383
3384 /** \brief Reply for IPsec: Add/delete Security Association Database entry
3385     @param context - returned sender context, to match reply w/ request
3386     @param retval - return code
3387 */
3388
3389 define ipsec_sad_add_del_entry_reply
3390 {
3391   u32 context;
3392   i32 retval;
3393 };
3394
3395 /** \brief IPsec: Update Security Association keys
3396     @param client_index - opaque cookie to identify the sender
3397     @param context - sender context, to match reply w/ request
3398
3399     @param sa_id - sa id
3400
3401     @param crypto_key_length - length of crypto_key in bytes
3402     @param crypto_key - crypto keying material
3403
3404     @param integrity_key_length - length of integrity_key in bytes
3405     @param integrity_key - integrity keying material
3406 */
3407
3408 define ipsec_sa_set_key
3409 {
3410   u32 client_index;
3411   u32 context;
3412
3413   u32 sa_id;
3414
3415   u8 crypto_key_length;
3416   u8 crypto_key[128];
3417
3418   u8 integrity_key_length;
3419   u8 integrity_key[128];
3420 };
3421
3422 /** \brief Reply for IPsec: Update Security Association keys
3423     @param context - returned sender context, to match reply w/ request
3424     @param retval - return code
3425 */
3426
3427 define ipsec_sa_set_key_reply
3428 {
3429   u32 context;
3430   i32 retval;
3431 };
3432
3433 /** \brief IKEv2: Add/delete profile
3434     @param client_index - opaque cookie to identify the sender
3435     @param context - sender context, to match reply w/ request
3436
3437     @param name - IKEv2 profile name
3438     @param is_add - Add IKEv2 profile if non-zero, else delete
3439 */
3440 define ikev2_profile_add_del
3441 {
3442   u32 client_index;
3443   u32 context;
3444
3445   u8 name[64];
3446   u8 is_add;
3447 };
3448
3449 /** \brief Reply for IKEv2: Add/delete profile
3450     @param context - returned sender context, to match reply w/ request
3451     @param retval - return code
3452 */
3453 define ikev2_profile_add_del_reply
3454 {
3455   u32 context;
3456   i32 retval;
3457 };
3458
3459 /** \brief IKEv2: Set IKEv2 profile authentication method
3460     @param client_index - opaque cookie to identify the sender
3461     @param context - sender context, to match reply w/ request
3462
3463     @param name - IKEv2 profile name
3464     @param auth_method - IKEv2 authentication method (shared-key-mic/rsa-sig)
3465     @param is_hex - Authentication data in hex format if non-zero, else string
3466     @param data_len - Authentication data length
3467     @param data - Authentication data (for rsa-sig cert file path)
3468 */
3469 define ikev2_profile_set_auth
3470 {
3471   u32 client_index;
3472   u32 context;
3473
3474   u8 name[64];
3475   u8 auth_method;
3476   u8 is_hex;
3477   u32 data_len;
3478   u8 data[0];
3479 };
3480
3481 /** \brief Reply for IKEv2: Set IKEv2 profile authentication method
3482     @param context - returned sender context, to match reply w/ request
3483     @param retval - return code
3484 */
3485 define ikev2_profile_set_auth_reply
3486 {
3487   u32 context;
3488   i32 retval;
3489 };
3490
3491 /** \brief IKEv2: Set IKEv2 profile local/remote identification
3492     @param client_index - opaque cookie to identify the sender
3493     @param context - sender context, to match reply w/ request
3494
3495     @param name - IKEv2 profile name
3496     @param is_local - Identification is local if non-zero, else remote
3497     @param id_type - Identification type
3498     @param data_len - Identification data length
3499     @param data - Identification data
3500 */
3501 define ikev2_profile_set_id
3502 {
3503   u32 client_index;
3504   u32 context;
3505
3506   u8 name[64];
3507   u8 is_local;
3508   u8 id_type;
3509   u32 data_len;
3510   u8 data[0];
3511 };
3512
3513 /** \brief Reply for IKEv2:
3514     @param context - returned sender context, to match reply w/ request
3515     @param retval - return code
3516 */
3517 define ikev2_profile_set_id_reply
3518 {
3519   u32 context;
3520   i32 retval;
3521 };
3522
3523 /** \brief IKEv2: Set IKEv2 profile traffic selector parameters
3524     @param client_index - opaque cookie to identify the sender
3525     @param context - sender context, to match reply w/ request
3526
3527     @param name - IKEv2 profile name
3528     @param is_local - Traffic selector is local if non-zero, else remote
3529     @param proto - Traffic selector IP protocol (if zero not relevant)
3530     @param start_port - The smallest port number allowed by traffic selector
3531     @param end_port - The largest port number allowed by traffic selector
3532     @param start_addr - The smallest address included in traffic selector
3533     @param end_addr - The largest address included in traffic selector
3534 */
3535 define ikev2_profile_set_ts
3536 {
3537   u32 client_index;
3538   u32 context;
3539
3540   u8 name[64];
3541   u8 is_local;
3542   u8 proto;
3543   u16 start_port;
3544   u16 end_port;
3545   u32 start_addr;
3546   u32 end_addr;
3547 };
3548
3549 /** \brief Reply for IKEv2: Set IKEv2 profile traffic selector parameters
3550     @param context - returned sender context, to match reply w/ request
3551     @param retval - return code
3552 */
3553 define ikev2_profile_set_ts_reply
3554 {
3555   u32 context;
3556   i32 retval;
3557 };
3558
3559 /** \brief IKEv2: Set IKEv2 local RSA private key
3560     @param client_index - opaque cookie to identify the sender
3561     @param context - sender context, to match reply w/ request
3562
3563     @param key_file - Key file absolute path
3564 */
3565 define ikev2_set_local_key
3566 {
3567   u32 client_index;
3568   u32 context;
3569
3570   u8 key_file[256];
3571 };
3572
3573 /** \brief Reply for IKEv2: Set IKEv2 local key
3574     @param context - returned sender context, to match reply w/ request
3575     @param retval - return code
3576 */
3577 define ikev2_set_local_key_reply
3578 {
3579   u32 context;
3580   i32 retval;
3581 };
3582
3583 /** \brief Tell client about a DHCP completion event
3584     @param client_index - opaque cookie to identify the sender
3585     @param pid - client pid registered to receive notification
3586     @param is_ipv6 - if non-zero the address is ipv6, else ipv4
3587     @param host_address - Host IP address
3588     @param router_address - Router IP address
3589     @param host_mac - Host MAC address
3590 */
3591 define dhcp_compl_event
3592 {
3593   u32 client_index;
3594   u32 pid;
3595   u8 hostname[64];
3596   u8 is_ipv6;
3597   u8 host_address[16];
3598   u8 router_address[16];
3599   u8 host_mac[6];
3600 };
3601
3602 /** \brief Add MAP domains
3603     @param client_index - opaque cookie to identify the sender
3604     @param context - sender context, to match reply w/ request
3605     @param ip6_prefix - Rule IPv6 prefix
3606     @param ip4_prefix - Rule IPv4 prefix
3607     @param ip6_src - MAP domain IPv6 BR address / Tunnel source
3608     @param ip6_prefix_len - Rule IPv6 prefix length
3609     @param ip4_prefix_len - Rule IPv4 prefix length
3610     @param ea_bits_len - Embedded Address bits length
3611     @param psid_offset - Port Set Identifider (PSID) offset
3612     @param psid_length - PSID length
3613     @param is_translation - MAP-E / MAP-T
3614     @param mtu - MTU
3615 */
3616 define map_add_domain
3617 {
3618   u32 client_index;
3619   u32 context;
3620   u8 ip6_prefix[16];
3621   u8 ip4_prefix[4];
3622   u8 ip6_src[16];
3623   u8 ip6_prefix_len;
3624   u8 ip4_prefix_len;
3625   u8 ip6_src_prefix_len;
3626   u8 ea_bits_len;
3627   u8 psid_offset;
3628   u8 psid_length;
3629   u8 is_translation;
3630   u16 mtu;
3631 };
3632
3633 /** \brief Reply for MAP domain add
3634     @param context - returned sender context, to match reply w/ request
3635     @param index - MAP domain index
3636     @param retval - return code
3637 */
3638 define map_add_domain_reply
3639 {
3640   u32 context;
3641   u32 index;
3642   i32 retval;
3643 };
3644
3645 /** \brief Delete MAP domain
3646     @param client_index - opaque cookie to identify the sender
3647     @param context - sender context, to match reply w/ request
3648     @param index - MAP Domain index
3649 */
3650 define map_del_domain
3651 {
3652   u32 client_index;
3653   u32 context;
3654   u32 index;
3655 };
3656
3657 /** \brief Reply for MAP domain del
3658     @param context - returned sender context, to match reply w/ request
3659     @param retval - return code
3660 */
3661 define map_del_domain_reply
3662 {
3663   u32 context;
3664   i32 retval;
3665 };
3666
3667 /** \brief Add or Delete MAP rule from a domain (Only used for shared IPv4 per subscriber)
3668     @param client_index - opaque cookie to identify the sender
3669     @param context - sender context, to match reply w/ request
3670     @param index - MAP Domain index
3671     @param is_add - If 1 add rule, if 0 delete rule
3672     @param ip6_dst - MAP CE IPv6 address
3673     @param psid - Rule PSID
3674 */
3675 define map_add_del_rule
3676 {
3677   u32 client_index;
3678   u32 context;
3679   u32 index;
3680   u32 is_add;
3681   u8 ip6_dst[16];
3682   u16 psid;
3683 };
3684
3685 /** \brief Reply for MAP rule add/del
3686     @param context - returned sender context, to match reply w/ request
3687     @param retval - return code
3688 */
3689 define map_add_del_rule_reply
3690 {
3691   u32 context;
3692   i32 retval;
3693 };
3694
3695 /** \brief Get list of map domains
3696     @param client_index - opaque cookie to identify the sender
3697 */
3698 define map_domain_dump
3699 {
3700   u32 client_index;
3701   u32 context;
3702 };
3703
3704 define map_domain_details
3705 {
3706   u32 context;
3707   u32 domain_index;
3708   u8 ip6_prefix[16];
3709   u8 ip4_prefix[4];
3710   u8 ip6_src[16];
3711   u8 ip6_prefix_len;
3712   u8 ip4_prefix_len;
3713   u8 ip6_src_len;
3714   u8 ea_bits_len;
3715   u8 psid_offset;
3716   u8 psid_length;
3717   u8 flags;
3718   u16 mtu;
3719   u8 is_translation;
3720 };
3721
3722 define map_rule_dump
3723 {
3724   u32 client_index;
3725   u32 context;
3726   u32 domain_index;
3727 };
3728
3729 define map_rule_details
3730 {
3731   u32 context;
3732   u8 ip6_dst[16];
3733   u16 psid;
3734 };
3735
3736 /** \brief Request for a single block of summary stats
3737     @param client_index - opaque cookie to identify the sender
3738     @param context - sender context, to match reply w/ request
3739 */
3740 define map_summary_stats
3741 {
3742   u32 client_index;
3743   u32 context;
3744 };
3745
3746 /** \brief Reply for map_summary_stats request
3747     @param context - sender context, to match reply w/ request
3748     @param retval - return code for request
3749     @param total_bindings -  
3750     @param total_pkts -  
3751     @param total_ip4_fragments -
3752     @param total_security_check - 
3753 */
3754 define map_summary_stats_reply
3755 {
3756   u32 context;
3757   i32 retval;
3758   u64 total_bindings;
3759   u64 total_pkts[2];
3760   u64 total_bytes[2];
3761   u64 total_ip4_fragments;
3762   u64 total_security_check[2];
3763 };
3764
3765 /** \brief cop: enable/disable junk filtration features on an interface
3766     @param client_index - opaque cookie to identify the sender
3767     @param context - sender context, to match reply w/ request
3768     @param sw_if_inded - desired interface
3769     @param enable_disable - 1 => enable, 0 => disable
3770 */
3771
3772 define cop_interface_enable_disable
3773 {
3774   u32 client_index;
3775   u32 context;
3776   u32 sw_if_index;
3777   u8 enable_disable;
3778 };
3779
3780 /** \brief cop: interface enable/disable junk filtration reply
3781     @param context - returned sender context, to match reply w/ request
3782     @param retval - return code
3783 */
3784
3785 define cop_interface_enable_disable_reply
3786 {
3787   u32 context;
3788   i32 retval;
3789 };
3790
3791 /** \brief cop: enable/disable whitelist filtration features on an interface
3792     Note: the supplied fib_id must match in order to remove the feature!
3793     
3794     @param client_index - opaque cookie to identify the sender
3795     @param context - sender context, to match reply w/ request
3796     @param sw_if_index - interface handle, physical interfaces only
3797     @param fib_id - fib identifier for the whitelist / blacklist fib
3798     @param ip4 - 1 => enable ip4 filtration, 0=> disable ip4 filtration
3799     @param ip6 - 1 => enable ip6 filtration, 0=> disable ip6 filtration
3800     @param default_cop -  1 => enable non-ip4, non-ip6 filtration 0=> disable it
3801 */
3802
3803 define cop_whitelist_enable_disable
3804 {
3805   u32 client_index;
3806   u32 context;
3807   u32 sw_if_index;
3808   u32 fib_id;
3809   u8 ip4;
3810   u8 ip6;
3811   u8 default_cop;
3812 };
3813
3814 /** \brief cop: interface enable/disable junk filtration reply
3815     @param context - returned sender context, to match reply w/ request
3816     @param retval - return code
3817 */
3818
3819 define cop_whitelist_enable_disable_reply
3820 {
3821   u32 context;
3822   i32 retval;
3823 };
3824
3825 /** \brief get_node_graph - get a copy of the vpp node graph
3826     including the current set of graph arcs.
3827
3828     @param client_index - opaque cookie to identify the sender
3829     @param context - sender context, to match reply w/ request
3830 */
3831
3832 define get_node_graph
3833 {
3834   u32 client_index;
3835   u32 context;
3836 };
3837
3838 /** \brief get_node_graph_reply
3839     @param context - returned sender context, to match reply w/ request
3840     @param retval - return code
3841     @param reply_in_shmem - result from vlib_node_serialize, in shared
3842     memory. Process with vlib_node_unserialize, remember to switch
3843     heaps and free the result.
3844 */
3845
3846 define get_node_graph_reply
3847 {
3848   u32 context;
3849   i32 retval;
3850   u64 reply_in_shmem;
3851 };
3852
3853 /** \brief Clear interface statistics
3854     @param client_index - opaque cookie to identify the sender
3855     @param context - sender context, to match reply w/ request
3856     @param sw_if_index - index of the interface to clear statistics
3857 */
3858 define sw_interface_clear_stats
3859 {
3860   u32 client_index;
3861   u32 context;
3862   u32 sw_if_index;
3863 };
3864
3865 /** \brief Reply to sw_interface_clear_stats 
3866     @param context - sender context which was passed in the request
3867     @param retval - return code of the set flags request
3868 */
3869 define sw_interface_clear_stats_reply
3870 {
3871   u32 context;
3872   i32 retval;
3873 };
3874
3875 /** \brief IOAM Trace : Set TRACE profile
3876     @param id - profile id
3877     @param trace_type - Trace type
3878     @param trace_num_elt - Number of nodes in trace path
3879     @param trace_ppc - Trace PPC (none/encap/decap)
3880     @param trace_tsp - Trace timestamp precision (0-sec,1-ms,2-us,3-ns)
3881     @param trace_app_data - Trace application data, can be any 4 bytes
3882     @param pow_enable - Proof of Work enabled or not flag
3883     @param node_id - Id of this node
3884 */
3885 define trace_profile_add
3886 {
3887   u32 client_index;
3888   u32 context;
3889   u16 id;
3890   u8 trace_type;
3891   u8 trace_num_elt;
3892   u8 trace_ppc;
3893   u8 trace_tsp;
3894   u32 trace_app_data;
3895   u8 pow_enable;
3896   u32 node_id;
3897 };
3898
3899 /** \brief Trace profile add / del response
3900     @param context - sender context, to match reply w/ request
3901     @param retval - return value for request
3902 */
3903 define trace_profile_add_reply
3904 {
3905   u32 context;
3906   i32 retval;
3907 };
3908
3909 /** \brief IOAM Trace enable trace profile for a flow
3910     @param id - id of the trace profile to be applied
3911     @param dest_ipv6 - Destination IPv6 address
3912     @param prefix_length - prefix mask
3913     @param vrf_id - VRF ID
3914     @param trace_op - Trace operation (add/mod/del)
3915     @param enable - apply/remove the trace profile for the flow
3916 */
3917 define trace_profile_apply
3918 {
3919   u32 client_index;
3920   u32 context;
3921   u16 id;
3922   u8 dest_ipv6[16];
3923   u32 prefix_length;
3924   u32 vrf_id;
3925   u8 trace_op;
3926   u8 enable;
3927 };
3928
3929 /** \brief Trace profile apply response
3930     @param context - sender context, to match reply w/ request   
3931     @param retval - return value for request
3932 */
3933 define trace_profile_apply_reply
3934 {
3935   u32 context;
3936   i32 retval;
3937 };
3938
3939 /** \brief Delete Trace Profile 
3940     @param client_index - opaque cookie to identify the sender
3941     @param context - sender context, to match reply w/ request
3942     @param index - MAP Domain index
3943 */
3944 define trace_profile_del
3945 {
3946   u32 client_index;
3947   u32 context;
3948   u16 id;
3949 };
3950
3951 /** \brief Trace profile add / del response
3952     @param context - sender context, to match reply w/ request
3953     @param retval - return value for request
3954 */
3955 define trace_profile_del_reply
3956 {
3957   u32 context;
3958   i32 retval;
3959 };
3960
3961 /** \brief Create host-interface
3962     @param client_index - opaque cookie to identify the sender
3963     @param context - sender context, to match reply w/ request
3964     @param host_if_name - interface name
3965     @param hw_addr - interface MAC
3966     @param use_random_hw_addr - use random generated MAC
3967 */
3968 define af_packet_create
3969 {
3970   u32 client_index;
3971   u32 context;
3972
3973   u8 host_if_name[64];
3974   u8 hw_addr[6];
3975   u8 use_random_hw_addr;
3976 };
3977
3978 /** \brief Create host-interface response
3979     @param context - sender context, to match reply w/ request
3980     @param retval - return value for request
3981 */
3982 define af_packet_create_reply
3983 {
3984   u32 context;
3985   i32 retval;
3986   u32 sw_if_index;
3987 };
3988
3989 /** \brief Delete host-interface
3990     @param client_index - opaque cookie to identify the sender
3991     @param context - sender context, to match reply w/ request
3992     @param host_if_name - interface name
3993 */
3994 define af_packet_delete
3995 {
3996   u32 client_index;
3997   u32 context;
3998
3999   u8 host_if_name[64];
4000 };
4001
4002 /** \brief Delete host-interface response
4003     @param context - sender context, to match reply w/ request
4004     @param retval - return value for request
4005 */
4006 define af_packet_delete_reply
4007 {
4008   u32 context;
4009   i32 retval;
4010 };
4011
4012 /** \brief Add/del policer
4013     @param client_index - opaque cookie to identify the sender
4014     @param context - sender context, to match reply w/ request
4015     @param is_add - add policer if non-zero, else delete
4016     @param name - policer name
4017     @param cir - CIR
4018     @param eir - EIR
4019     @param cb - Committed Burst
4020     @param eb - Excess or Peak Burst
4021     @param rate_type - rate type
4022     @param round_type - rounding type
4023     @param type - policer algorithm
4024     @param color_aware - 0=color-blind, 1=color-aware
4025     @param conform_action_type - conform action type
4026     @param conform_dscp - DSCP for conform mar-and-transmit action
4027     @param exceed_action_type - exceed action type
4028     @param exceed_dscp - DSCP for exceed mar-and-transmit action
4029     @param violate_action_type - violate action type
4030     @param violate_dscp - DSCP for violate mar-and-transmit action
4031 */
4032 define policer_add_del
4033 {
4034   u32 client_index;
4035   u32 context;
4036
4037   u8 is_add;
4038   u8 name[64];
4039   u32 cir;
4040   u32 eir;
4041   u64 cb;
4042   u64 eb;
4043   u8 rate_type;
4044   u8 round_type;
4045   u8 type;
4046   u8 color_aware;
4047   u8 conform_action_type;
4048   u8 conform_dscp;
4049   u8 exceed_action_type;
4050   u8 exceed_dscp;
4051   u8 violate_action_type;
4052   u8 violate_dscp;
4053 };
4054
4055 /** \brief Add/del policer response
4056     @param context - sender context, to match reply w/ request
4057     @param retval - return value for request
4058     @param policer_index - for add, returned index of the new policer
4059 */
4060 define policer_add_del_reply
4061 {
4062   u32 context;
4063   i32 retval;
4064   u32 policer_index;
4065 };
4066
4067 /** \brief Get list of policers
4068     @param client_index - opaque cookie to identify the sender
4069     @param context - sender context, to match reply w/ request
4070     @param match_name_valid - if 0 request all policers otherwise use match_name
4071     @param match_name - policer name
4072 */
4073 define policer_dump
4074 {
4075   u32 client_index;
4076   u32 context;
4077
4078   u8 match_name_valid;
4079   u8 match_name[64];
4080 };
4081
4082 /** \brief Policer operational state response.
4083     @param context - sender context, to match reply w/ request
4084     @param name - policer name
4085     @param cir - CIR
4086     @param eir - EIR
4087     @param cb - Committed Burst
4088     @param eb - Excess or Peak Burst
4089     @param rate_type - rate type
4090     @param round_type - rounding type
4091     @param type - policer algorithm
4092     @param conform_action_type - conform action type
4093     @param conform_dscp - DSCP for conform mar-and-transmit action
4094     @param exceed_action_type - exceed action type
4095     @param exceed_dscp - DSCP for exceed mar-and-transmit action
4096     @param violate_action_type - violate action type
4097     @param violate_dscp - DSCP for violate mar-and-transmit action
4098     @param single_rate - 1 = single rate policer, 0 = two rate policer
4099     @param color_aware - for hierarchical policing
4100     @param scale - power-of-2 shift amount for lower rates
4101     @param cir_tokens_per_period - number of tokens for each period
4102     @param pir_tokens_per_period - number of tokens for each period for 2-rate policer
4103     @param current_limit - current limit
4104     @param current_bucket - current bucket
4105     @param extended_limit - extended limit
4106     @param extended_bucket - extended bucket
4107     @param last_update_time - last update time
4108 */
4109 define policer_details
4110 {
4111   u32 context;
4112
4113   u8 name[64];
4114   u32 cir;
4115   u32 eir;
4116   u64 cb;
4117   u64 eb;
4118   u8 rate_type;
4119   u8 round_type;
4120   u8 type;
4121   u8 conform_action_type;
4122   u8 conform_dscp;
4123   u8 exceed_action_type;
4124   u8 exceed_dscp;
4125   u8 violate_action_type;
4126   u8 violate_dscp;
4127   u8 single_rate;
4128   u8 color_aware;
4129   u32 scale;
4130   u32 cir_tokens_per_period;
4131   u32 pir_tokens_per_period;
4132   u32 current_limit;
4133   u32 current_bucket;
4134   u32 extended_limit;
4135   u32 extended_bucket;
4136   u64 last_update_time;
4137 };
4138
4139 /** \brief Set/unset policer classify interface
4140     @param client_index - opaque cookie to identify the sender
4141     @param context - sender context, to match reply w/ request
4142     @param sw_if_index - interface to set/unset policer classify
4143     @param ip4_table_index - ip4 classify table index (~0 for skip)
4144     @param ip6_table_index - ip6 classify table index (~0 for skip)
4145     @param l2_table_index  -  l2 classify table index (~0 for skip)
4146     @param is_add - Set if non-zero, else unset
4147     Note: User is recommeneded to use just one valid table_index per call.
4148           (ip4_table_index, ip6_table_index, or l2_table_index)
4149 */
4150 define policer_classify_set_interface
4151 {
4152   u32 client_index;
4153   u32 context;
4154   u32 sw_if_index;
4155   u32 ip4_table_index;
4156   u32 ip6_table_index;
4157   u32 l2_table_index;
4158   u8 is_add;
4159 };
4160
4161 /** \brief Set/unset policer classify interface response
4162     @param context - sender context, to match reply w/ request
4163     @param retval - return value for request
4164 */
4165 define policer_classify_set_interface_reply
4166 {
4167   u32 context;
4168   i32 retval;
4169 };
4170
4171 /** \brief Get list of policer classify interfaces and tables
4172     @param client_index - opaque cookie to identify the sender
4173     @param context - sender context, to match reply w/ request
4174     @param type - classify table type
4175 */
4176 define policer_classify_dump
4177 {
4178   u32 client_index;
4179   u32 context;
4180   u8 type;
4181 };
4182
4183 /** \brief Policer iclassify operational state response.
4184     @param context - sender context, to match reply w/ request
4185     @param sw_if_index - software interface index
4186     @param table_index - classify table index
4187 */
4188 define policer_classify_details
4189 {
4190   u32 context;
4191   u32 sw_if_index;
4192   u32 table_index;
4193 };
4194
4195 /** \brief Create netmap
4196     @param client_index - opaque cookie to identify the sender
4197     @param context - sender context, to match reply w/ request
4198     @param netmap_if_name - interface name
4199     @param hw_addr - interface MAC
4200     @param use_random_hw_addr - use random generated MAC
4201     @param is_pipe - is pipe
4202     @param is_master - 0=slave, 1=master
4203 */
4204 define netmap_create
4205 {
4206   u32 client_index;
4207   u32 context;
4208
4209   u8 netmap_if_name[64];
4210   u8 hw_addr[6];
4211   u8 use_random_hw_addr;
4212   u8 is_pipe;
4213   u8 is_master;
4214 };
4215
4216 /** \brief Create netmap response
4217     @param context - sender context, to match reply w/ request
4218     @param retval - return value for request
4219 */
4220 define netmap_create_reply
4221 {
4222   u32 context;
4223   i32 retval;
4224 };
4225
4226 /** \brief Delete netmap
4227     @param client_index - opaque cookie to identify the sender
4228     @param context - sender context, to match reply w/ request
4229     @param netmap_if_name - interface name
4230 */
4231 define netmap_delete
4232 {
4233   u32 client_index;
4234   u32 context;
4235
4236   u8 netmap_if_name[64];
4237 };
4238
4239 /** \brief Delete netmap response
4240     @param context - sender context, to match reply w/ request
4241     @param retval - return value for request
4242 */
4243 define netmap_delete_reply
4244 {
4245   u32 context;
4246   i32 retval;
4247 };
4248
4249 /** \brief Dump mpls gre tunnel table
4250     @param client_index - opaque cookie to identify the sender
4251     @param tunnel_index - gre tunnel identifier or -1 in case of all tunnels
4252 */
4253 define mpls_gre_tunnel_dump
4254 {
4255   u32 client_index;
4256   u32 context;
4257   i32 tunnel_index;
4258 };
4259
4260 /** \brief mpls gre tunnel operational state response
4261     @param tunnel_index - gre tunnel identifier
4262     @param intfc_address - interface ipv4 addr
4263     @param mask_width - interface ipv4 addr mask
4264     @param hw_if_index - interface id
4265     @param l2_only -
4266     @param tunnel_src - tunnel source ipv4 addr
4267     @param tunnel_dst - tunnel destination ipv4 addr
4268     @param outer_fib_index - gre tunnel identifier
4269     @param encap_index - reference to mpls label table
4270     @param nlabels - number of resolved labels
4271     @param labels - resolved labels
4272 */
4273 define mpls_gre_tunnel_details
4274 {
4275   u32 context;
4276   u32 tunnel_index;
4277
4278   u32 intfc_address;
4279   u32 inner_fib_index;
4280   u32 mask_width;
4281   u32 encap_index;
4282   u32 hw_if_index;
4283   u8 l2_only;
4284   u32 tunnel_src;
4285   u32 tunnel_dst;
4286   u32 outer_fib_index;
4287   u32 nlabels;
4288   u32 labels[nlabels];
4289 };
4290
4291 /** \brief Dump mpls eth tunnel table
4292     @param client_index - opaque cookie to identify the sender
4293     @param tunnel_index - eth tunnel identifier or -1 in case of all tunnels
4294 */
4295 define mpls_eth_tunnel_dump
4296 {
4297   u32 client_index;
4298   u32 context;
4299   i32 tunnel_index;
4300 };
4301
4302 /** \brief mpls eth tunnel operational state response
4303     @param tunnel_index - eth tunnel identifier
4304     @param intfc_address - interface ipv4 addr
4305     @param mask_width - interface ipv4 addr mask
4306     @param hw_if_index - interface id
4307     @param l2_only -
4308     @param tunnel_dst_mac -
4309     @param tx_sw_if_index -
4310     @param encap_index - reference to mpls label table
4311     @param nlabels - number of resolved labels
4312     @param labels - resolved labels
4313 */
4314 define mpls_eth_tunnel_details
4315 {
4316   u32 context;
4317   u32 tunnel_index;
4318
4319   u32 intfc_address;
4320   u32 inner_fib_index;
4321   u32 mask_width;
4322   u32 encap_index;
4323   u32 hw_if_index;
4324   u8 l2_only;
4325   u8 tunnel_dst_mac[6];
4326   u32 tx_sw_if_index;
4327   u32 nlabels;
4328   u32 labels[nlabels];
4329 };
4330
4331 /** \brief Dump mpls fib table
4332     @param client_index - opaque cookie to identify the sender
4333     @param fib_index    - mpls fib entry identifier or -1 in case of all entries
4334 */
4335 define mpls_fib_encap_dump
4336 {
4337   u32 client_index;
4338   u32 context;
4339 };
4340
4341 /** \brief mpls fib encap table response
4342     @param fib_index - fib table id
4343     @param dest - destination ipv4 addr
4344     @param s_bit -
4345     @param entry_index - reference to mpls label table
4346     @param nlabels - number of resolved labels
4347     @param labels - resolved labels
4348 */
4349 define mpls_fib_encap_details
4350 {
4351   u32 context;
4352
4353   u32 fib_index;
4354   u32 entry_index;
4355   u32 dest;
4356   u32 s_bit;
4357   u32 nlabels;
4358   u32 labels[nlabels];
4359 };
4360
4361 /** \brief Dump mpls fib decap table
4362     @param client_index - opaque cookie to identify the sender
4363     @param fib_index    - mpls fib entry identifier or -1 in case of all entries
4364 */
4365 define mpls_fib_decap_dump
4366 {
4367   u32 client_index;
4368   u32 context;
4369 };
4370
4371 /** \brief mpls fib decap table response
4372     @param fib_index - fib table id
4373     @param entry_index - reference to mpls label table
4374     @param dest - destination ipv4 addr
4375     @param s_bit -
4376     @param label - mpls labels
4377     @param rx_table_id - rx fib id
4378     @param tx_table_id - tx fib id
4379     @param swif_tag -
4380 */
4381 define mpls_fib_decap_details
4382 {
4383   u32 context;
4384
4385   u32 fib_index;
4386   u32 entry_index;
4387   u32 dest;
4388   u32 s_bit;
4389   u32 label;
4390   u32 rx_table_id;
4391   u32 tx_table_id;
4392   u8 swif_tag[8];
4393 };
4394
4395 /** \brief Classify get table IDs request
4396     @param client_index - opaque cookie to identify the sender
4397     @param context - sender context, to match reply w/ request
4398 */
4399 define classify_table_ids
4400 {
4401   u32 client_index;
4402   u32 context;
4403 };
4404
4405 /** \brief Reply for classify get table IDs request
4406     @param context - sender context which was passed in the request
4407     @param count - number of ids returned in response
4408     @param ids - array of classify table ids
4409 */
4410 define classify_table_ids_reply
4411 {
4412   u32 context;
4413   i32 retval;
4414   u32 count;
4415   u32 ids[count];
4416 };
4417
4418 /** \brief Classify table ids by interface index request
4419     @param client_index - opaque cookie to identify the sender
4420     @param context - sender context, to match reply w/ request
4421     @param sw_if_index - index of the interface
4422 */
4423 define classify_table_by_interface
4424 {
4425   u32 client_index;
4426   u32 context;
4427   u32 sw_if_index;
4428 };
4429
4430 /** \brief Reply for classify table id by interface index request
4431     @param context - sender context which was passed in the request
4432     @param count - number of ids returned in response
4433     @param sw_if_index - index of the interface
4434     @param l2_table_id - l2 classify table index
4435     @param ip4_table_id - ip4 classify table index
4436     @param ip6_table_id - ip6 classify table index
4437 */
4438 define classify_table_by_interface_reply
4439 {
4440   u32 context;
4441   i32 retval;
4442   u32 sw_if_index;
4443   u32 l2_table_id;
4444   u32 ip4_table_id;
4445   u32 ip6_table_id;
4446 };
4447
4448 /** \brief Classify table info
4449     @param client_index - opaque cookie to identify the sender
4450     @param context - sender context, to match reply w/ request
4451     @param table_id - classify table index
4452 */
4453 define classify_table_info
4454 {
4455   u32 client_index;
4456   u32 context;
4457   u32 table_id;
4458 };
4459
4460 /** \brief Reply for classify table info request
4461     @param context - sender context which was passed in the request
4462     @param count - number of ids returned in response
4463     @param table_id - classify table index
4464     @param nbuckets - number of buckets when adding a table
4465     @param match_n_vectors - number of match vectors
4466     @param skip_n_vectors - number of skip_n_vectors
4467     @param active_sessions - number of sessions (active entries)
4468     @param next_table_index - index of next table
4469     @param miss_next_index - index of miss table
4470     @param mask[] - match mask
4471 */
4472 define classify_table_info_reply
4473 {
4474   u32 context;
4475   i32 retval;
4476   u32 table_id;
4477   u32 nbuckets;
4478   u32 match_n_vectors;
4479   u32 skip_n_vectors;
4480   u32 active_sessions;
4481   u32 next_table_index;
4482   u32 miss_next_index;
4483   u32 mask_length;
4484   u8 mask[mask_length];
4485 };
4486
4487 /** \brief Classify sessions dump request
4488     @param client_index - opaque cookie to identify the sender
4489     @param context - sender context, to match reply w/ request
4490     @param table_id - classify table index
4491 */
4492 define classify_session_dump
4493 {
4494   u32 client_index;
4495   u32 context;
4496   u32 table_id;
4497 };
4498
4499 /** \brief Reply for classify table session dump request
4500     @param context - sender context which was passed in the request
4501     @param count - number of ids returned in response
4502     @param table_id - classify table index
4503     @param hit_next_index - hit_next_index of session
4504     @param opaque_index - for add, opaque_index of session
4505     @param advance - advance value of session
4506     @param match[] - match value for session
4507 */
4508 define classify_session_details
4509 {
4510   u32 context;
4511   i32 retval;
4512   u32 table_id;
4513   u32 hit_next_index;
4514   i32 advance;
4515   u32 opaque_index;
4516   u32 match_length;
4517   u8 match[match_length];
4518 };
4519
4520 /** \brief Enable and configure IPFIX exporter process request
4521     @param client_index - opaque cookie to identify the sender
4522     @param context - sender context, to match reply w/ request
4523     @param collector_address - address of IPFIX collector
4524     @param collector_port - port of IPFIX IPFIX collector
4525     @param src_address - address of IPFIX exporter
4526     @param vrf_id - VRF / fib table ID
4527     @param path_mtu - Path MTU between exporter and collector
4528     @param template_interval - number of seconds after which to resend template
4529 */
4530 define ipfix_enable
4531 {
4532   u32 client_index;
4533   u32 context;
4534   u8 collector_address[16];
4535   u16 collector_port;
4536   u8 src_address[16];
4537   u32 vrf_id;
4538   u32 path_mtu;
4539   u32 template_interval;
4540 };
4541
4542 /** \brief Reply to IPFIX enable and configure request
4543     @param context - sender context which was passed in the request
4544 */
4545 define ipfix_enable_reply
4546 {
4547   u32 context;
4548   i32 retval;
4549 };
4550
4551 /** \brief IPFIX dump request
4552     @param client_index - opaque cookie to identify the sender
4553     @param context - sender context, to match reply w/ request
4554 */
4555 define ipfix_dump
4556 {
4557   u32 client_index;
4558   u32 context;
4559 };
4560
4561 /** \brief Reply to IPFIX dump request
4562     @param context - sender context which was passed in the request
4563     @param collector_address - address of IPFIX collector
4564     @param collector_port - port of IPFIX IPFIX collector
4565     @param src_address - address of IPFIX exporter
4566     @param fib_index - fib table index
4567     @param path_mtu - Path MTU between exporter and collector
4568     @param template_interval - number of seconds after which to resend template
4569 */
4570 define ipfix_details
4571 {
4572   u32 context;
4573   u8 collector_address[16];
4574   u16 collector_port;
4575   u8 src_address[16];
4576   u32 fib_index;
4577   u32 path_mtu;
4578   u32 template_interval;
4579 };
4580
4581 /** \brief Query relative index via node names
4582     @param client_index - opaque cookie to identify the sender
4583     @param context - sender context, to match reply w/ request
4584     @param node_name - name of node to find relative index from
4585     @param next_name - next node from node_name to find relative index of
4586 */
4587 define get_next_index
4588 {
4589   u32 client_index;
4590   u32 context;
4591   u8 node_name[64];
4592   u8 next_name[64];
4593 };
4594
4595 /** \brief Reply for get next node index
4596     @param context - sender context which was passed in the request
4597     @param retval - return value
4598     @param next_index - index of the next_node
4599 */
4600 define get_next_index_reply
4601 {
4602   u32 context;
4603   i32 retval;
4604   u32 next_index;
4605 };
4606
4607 /** \brief PacketGenerator create interface request
4608     @param client_index - opaque cookie to identify the sender
4609     @param context - sender context, to match reply w/ request
4610     @param interface_id - interface index
4611 */
4612 define pg_create_interface
4613 {
4614   u32 client_index;
4615   u32 context;
4616   u32 interface_id;
4617 };
4618
4619 /** \brief PacketGenerator create interface response
4620     @param context - sender context, to match reply w/ request
4621     @param retval - return value for request
4622 */
4623 define pg_create_interface_reply
4624 {
4625   u32 context;
4626   i32 retval;
4627   u32 sw_if_index;
4628 };
4629
4630 /** \brief PacketGenerator capture packets on given interface request
4631     @param client_index - opaque cookie to identify the sender
4632     @param context - sender context, to match reply w/ request
4633     @param interface_id - pg interface index
4634     @param is_enabled - 1 if enabling streams, 0 if disabling
4635     @param count - number of packets to be captured
4636     @param pcap_file - pacp file name to store captured packets
4637 */
4638 define pg_capture
4639 {
4640   u32 client_index;
4641   u32 context;
4642   u32 interface_id;
4643   u8 is_enabled;
4644   u32 count;
4645   u32 pcap_name_length;
4646   u8 pcap_file_name[pcap_name_length];
4647 };
4648
4649 /** \brief PacketGenerator capture packets response
4650     @param context - sender context, to match reply w/ request
4651     @param retval - return value for request
4652 */
4653 define pg_capture_reply
4654 {
4655   u32 context;
4656   i32 retval;
4657 };
4658
4659 /** \brief Enable / disable packet generator request
4660     @param client_index - opaque cookie to identify the sender
4661     @param context - sender context, to match reply w/ request
4662     @param is_enabled - 1 if enabling streams, 0 if disabling
4663     @param stream - stream name to be enable/disabled, if not specified handle all streams
4664 */
4665 define pg_enable_disable
4666 {
4667   u32 client_index;
4668   u32 context;
4669   u8 is_enabled;
4670   u32 stream_name_length;
4671   u8 stream_name[stream_name_length];
4672 };
4673
4674 /** \brief Reply for enable / disable packet generator
4675     @param context - returned sender context, to match reply w/ request
4676     @param retval - return code
4677 */
4678 define pg_enable_disable_reply
4679 {
4680   u32 context;
4681   i32 retval;
4682 };
4683
4684 /** \brief Configure IP source and L4 port-range check
4685     @param client_index - opaque cookie to identify the sender
4686     @param context - sender context, to match reply w/ request
4687     @param is_ip6 - 1 if source address type is IPv6
4688     @param is_add - 1 if add, 0 if delete
4689     @param mask_length - mask length for address entry
4690     @param address - array of address bytes
4691     @param number_of_ranges - length of low_port and high_port arrays (must match)
4692     @param low_ports[32] - up to 32 low end of port range entries (must have corresponding high_ports entry)
4693     @param high_ports[32] - up to 32 high end of port range entries (must have corresponding low_ports entry)
4694     @param vrf_id - fib table/vrf id to associate the source and port-range check with
4695     @note To specify a single port set low_port and high_port entry the same
4696 */
4697 define ip_source_and_port_range_check_add_del
4698 {
4699   u32 client_index;
4700   u32 context;
4701   u8 is_ipv6;
4702   u8 is_add;
4703   u8 mask_length;
4704   u8 address[16];
4705   u8 number_of_ranges;
4706   u16 low_ports[32];
4707   u16 high_ports[32];
4708   u32 vrf_id;
4709 };
4710
4711 /** \brief Configure IP source and L4 port-range check reply
4712     @param context - returned sender context, to match reply w/ request
4713     @param retval - return code
4714 */
4715 define ip_source_and_port_range_check_add_del_reply
4716 {
4717   u32 context;
4718   i32 retval;
4719 };
4720
4721 /** \brief Set interface source and L4 port-range request
4722     @param client_index - opaque cookie to identify the sender
4723     @param context - sender context, to match reply w/ request
4724     @param interface_id - interface index
4725     @param tcp_vrf_id - VRF associated with source and TCP port-range check
4726     @param udp_vrf_id - VRF associated with source and TCP port-range check
4727 */
4728 define ip_source_and_port_range_check_interface_add_del
4729 {
4730   u32 client_index;
4731   u32 context;
4732   u8 is_add;
4733   u32 sw_if_index;
4734   u32 tcp_in_vrf_id;
4735   u32 tcp_out_vrf_id;
4736   u32 udp_in_vrf_id;
4737   u32 udp_out_vrf_id;
4738 };
4739
4740 /** \brief Set interface source and L4 port-range response
4741     @param context - sender context, to match reply w/ request
4742     @param retval - return value for request
4743 */
4744 define ip_source_and_port_range_check_interface_add_del_reply
4745 {
4746   u32 context;
4747   i32 retval;
4748 };
4749
4750 /** \brief Add / del ipsec gre tunnel request
4751     @param client_index - opaque cookie to identify the sender
4752     @param context - sender context, to match reply w/ request
4753     @param local_sa_id - local SA id
4754     @param remote_sa_id - remote SA id
4755     @param is_add - 1 if adding the tunnel, 0 if deleting
4756     @param src_address - tunnel source address
4757     @param dst_address - tunnel destination address
4758 */
4759 define ipsec_gre_add_del_tunnel {
4760     u32 client_index;
4761     u32 context;
4762     u32 local_sa_id;
4763     u32 remote_sa_id;
4764     u8 is_add;
4765     u8 src_address[4];
4766     u8 dst_address[4];
4767 };
4768
4769 /** \brief Reply for add / del ipsec gre tunnel request
4770     @param context - returned sender context, to match reply w/ request
4771     @param retval - return code
4772     @param sw_if_index - software index of the new ipsec gre tunnel
4773 */
4774 define ipsec_gre_add_del_tunnel_reply {
4775     u32 context;
4776     i32 retval;
4777     u32 sw_if_index;
4778 };
4779
4780 /** \brief Dump ipsec gre tunnel table
4781     @param client_index - opaque cookie to identify the sender
4782     @param context - sender context, to match reply w/ request
4783     @param tunnel_index - gre tunnel identifier or -1 in case of all tunnels
4784 */
4785 define ipsec_gre_tunnel_dump {
4786     u32 client_index;
4787     u32 context;
4788     u32 sw_if_index;
4789 };
4790
4791 /** \brief mpls gre tunnel operational state response
4792     @param context - returned sender context, to match reply w/ request
4793     @param sw_if_index - software index of the ipsec gre tunnel
4794     @param local_sa_id - local SA id
4795     @param remote_sa_id - remote SA id
4796     @param src_address - tunnel source address
4797     @param dst_address - tunnel destination address
4798 */
4799 define ipsec_gre_tunnel_details {
4800     u32 context;
4801     u32 sw_if_index;
4802     u32 local_sa_id;
4803     u32 remote_sa_id;
4804     u8 src_address[4];
4805     u8 dst_address[4];
4806 };