blob: 228e59158fff686b708422c01951d1b1be38257e [file] [log] [blame]
Dave Barachb5e8a772016-12-06 12:04:42 -05001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16/** \file
17
18 This file defines vpp IP control-plane API messages which are generally
19 called through a shared memory interface.
20*/
21
Marek Gradzki7eaaf742018-05-25 15:50:05 +020022option version = "1.3.0";
Neale Ranns31ed7442018-02-23 05:29:09 -080023import "vnet/fib/fib_types.api";
Dave Barach0d056e52017-09-28 15:11:16 -040024
Neale Ranns28ab9cc2017-08-14 07:18:42 -070025/** \brief Add / del table request
26 A table can be added multiple times, but need be deleted only once.
27 @param client_index - opaque cookie to identify the sender
28 @param context - sender context, to match reply w/ request
29 @param is_ipv6 - V4 or V6 table
30 @param table_id - table ID associated with the route
31 This table ID will apply to both the unicats
32 and mlticast FIBs
Neale Ranns2297af02017-09-12 09:45:04 -070033 @param name - A client provided name/tag for the table. If this is
34 not set by the client, then VPP will generate something
35 meaningfull.
Neale Ranns28ab9cc2017-08-14 07:18:42 -070036*/
37autoreply define ip_table_add_del
38{
39 u32 client_index;
40 u32 context;
41 u32 table_id;
42 u8 is_ipv6;
43 u8 is_add;
Neale Ranns2297af02017-09-12 09:45:04 -070044 u8 name[64];
Neale Ranns28ab9cc2017-08-14 07:18:42 -070045};
46
Dave Barachb5e8a772016-12-06 12:04:42 -050047/** \brief Dump IP fib table
48 @param client_index - opaque cookie to identify the sender
49*/
50define ip_fib_dump
51{
52 u32 client_index;
53 u32 context;
54};
55
Dave Barachb5e8a772016-12-06 12:04:42 -050056/** \brief IP FIB table response
57 @param table_id - IP fib table id
58 @address_length - mask length
59 @address - ip4 prefix
60 @param count - the number of fib_path in path
61 @param path - array of of fib_path structures
62*/
63manual_endian manual_print define ip_fib_details
64{
65 u32 context;
66 u32 table_id;
Neale Ranns2297af02017-09-12 09:45:04 -070067 u8 table_name[64];
Dave Barachb5e8a772016-12-06 12:04:42 -050068 u8 address_length;
69 u8 address[4];
70 u32 count;
71 vl_api_fib_path_t path[count];
72};
73
74/** \brief Dump IP6 fib table
75 @param client_index - opaque cookie to identify the sender
76*/
77define ip6_fib_dump
78{
79 u32 client_index;
80 u32 context;
81};
82
Neale Ranns2297af02017-09-12 09:45:04 -070083/** \brief IP6 FIB table entry response
Dave Barachb5e8a772016-12-06 12:04:42 -050084 @param table_id - IP6 fib table id
Neale Ranns2297af02017-09-12 09:45:04 -070085 @param address_length - mask length
86 @param address - ip6 prefix
Dave Barachb5e8a772016-12-06 12:04:42 -050087 @param count - the number of fib_path in path
88 @param path - array of of fib_path structures
89*/
90manual_endian manual_print define ip6_fib_details
91{
92 u32 context;
93 u32 table_id;
Neale Ranns2297af02017-09-12 09:45:04 -070094 u8 table_name[64];
Dave Barachb5e8a772016-12-06 12:04:42 -050095 u8 address_length;
96 u8 address[16];
97 u32 count;
98 vl_api_fib_path_t path[count];
99};
100
101/** \brief Dump IP neighboors
102 @param client_index - opaque cookie to identify the sender
103 @param context - sender context, to match reply w/ request
Jon Loeligeraf8dfbf2017-11-08 13:07:39 -0600104 @param sw_if_index - the interface to dump neighboors, ~0 == all
Dave Barachb5e8a772016-12-06 12:04:42 -0500105 @param is_ipv6 - [1|0] to indicate if address family is ipv[6|4]
106*/
107define ip_neighbor_dump
108{
109 u32 client_index;
110 u32 context;
111 u32 sw_if_index;
112 u8 is_ipv6;
113};
114
115/** \brief IP neighboors dump response
116 @param context - sender context which was passed in the request
Jon Loeligeraf8dfbf2017-11-08 13:07:39 -0600117 @param sw_if_index - The interface used to reach the neighbor
Dave Barachb5e8a772016-12-06 12:04:42 -0500118 @param is_static - [1|0] to indicate if neighbor is statically configured
119 @param is_ipv6 - [1|0] to indicate if address family is ipv[6|4]
120*/
121define ip_neighbor_details {
122 u32 context;
Jon Loeligeraf8dfbf2017-11-08 13:07:39 -0600123 u32 sw_if_index;
Pavel Kotucek8cb07c92017-01-11 10:13:54 +0100124 u8 is_static;
Dave Barachb5e8a772016-12-06 12:04:42 -0500125 u8 is_ipv6;
126 u8 mac_address[6];
127 u8 ip_address[16];
128};
129
130/** \brief IP neighbor add / del request
131 @param client_index - opaque cookie to identify the sender
132 @param context - sender context, to match reply w/ request
Dave Barachb5e8a772016-12-06 12:04:42 -0500133 @param sw_if_index - interface used to reach neighbor
134 @param is_add - 1 to add neighbor, 0 to delete
135 @param is_ipv6 - 1 for IPv6 neighbor, 0 for IPv4
Neale Ranns239d3fe2017-03-08 08:56:58 -0800136 @param is_ipv6 - 1 for IPv6 neighbor, 0 for IPv4
137 @param is_static - A static neighbor Entry - there are not flushed
138 If the interface goes down.
139 @param is_no_adj_fib - Do not create a corresponding entry in the FIB
140 table for the neighbor.
Dave Barachb5e8a772016-12-06 12:04:42 -0500141 @param mac_address - l2 address of the neighbor
142 @param dst_address - ip4 or ip6 address of the neighbor
143*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400144autoreply define ip_neighbor_add_del
Dave Barachb5e8a772016-12-06 12:04:42 -0500145{
146 u32 client_index;
147 u32 context;
Dave Barachb5e8a772016-12-06 12:04:42 -0500148 u32 sw_if_index;
149 /* 1 = add, 0 = delete */
150 u8 is_add;
151 u8 is_ipv6;
152 u8 is_static;
Neale Ranns239d3fe2017-03-08 08:56:58 -0800153 u8 is_no_adj_fib;
Dave Barachb5e8a772016-12-06 12:04:42 -0500154 u8 mac_address[6];
155 u8 dst_address[16];
156};
157
Dave Barachb5e8a772016-12-06 12:04:42 -0500158/** \brief Set the ip flow hash config for a fib request
159 @param client_index - opaque cookie to identify the sender
160 @param context - sender context, to match reply w/ request
161 @param vrf_id - vrf/fib id
162 @param is_ipv6 - if non-zero the fib is ip6, else ip4
163 @param src - if non-zero include src in flow hash
164 @param dst - if non-zero include dst in flow hash
165 @param sport - if non-zero include sport in flow hash
166 @param dport - if non-zero include dport in flow hash
167 @param proto -if non-zero include proto in flow hash
168 @param reverse - if non-zero include reverse in flow hash
169*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400170autoreply define set_ip_flow_hash
Dave Barachb5e8a772016-12-06 12:04:42 -0500171{
172 u32 client_index;
173 u32 context;
174 u32 vrf_id;
175 u8 is_ipv6;
176 u8 src;
177 u8 dst;
178 u8 sport;
179 u8 dport;
180 u8 proto;
181 u8 reverse;
182};
183
Dave Barachb5e8a772016-12-06 12:04:42 -0500184/** \brief IPv6 router advertisement config request
185 @param client_index - opaque cookie to identify the sender
186 @param context - sender context, to match reply w/ request
187 @param suppress -
188 @param managed -
189 @param other -
190 @param ll_option -
191 @param send_unicast -
192 @param cease -
193 @param is_no -
194 @param default_router -
195 @param max_interval -
196 @param min_interval -
197 @param lifetime -
198 @param initial_count -
199 @param initial_interval -
200*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400201autoreply define sw_interface_ip6nd_ra_config
Dave Barachb5e8a772016-12-06 12:04:42 -0500202{
203 u32 client_index;
204 u32 context;
205 u32 sw_if_index;
206 u8 suppress;
207 u8 managed;
208 u8 other;
209 u8 ll_option;
210 u8 send_unicast;
211 u8 cease;
212 u8 is_no;
213 u8 default_router;
214 u32 max_interval;
215 u32 min_interval;
216 u32 lifetime;
217 u32 initial_count;
218 u32 initial_interval;
219};
220
Dave Barachb5e8a772016-12-06 12:04:42 -0500221/** \brief IPv6 router advertisement prefix config request
222 @param client_index - opaque cookie to identify the sender
223 @param context - sender context, to match reply w/ request
Neale Ranns87df12d2017-02-18 08:16:41 -0800224 @param sw_if_index - The interface the RA prefix information is for
225 @param address[] - The prefix to advertise
226 @param address_length - the prefix length
227 @param use_default - Revert to default settings
228 @param no_advertise - Do not advertise this prefix
229 @param off_link - The prefix is off link (it is not configured on the interface)
230 Configures the L-flag, When set, indicates that this
231 prefix can be used for on-link determination.
232 @param no_autoconfig - Setting for the A-flag. When
233 set indicates that this prefix can be used for
234 stateless address configuration.
235 @param no_onlink - The prefix is not on link. Make sure this is consistent
236 with the off_link parameter else YMMV
237 @param is_no - add/delete
238 @param val_lifetime - The length of time in
239 seconds (relative to the time the packet is sent)
240 that the prefix is valid for the purpose of on-link
241 determination. A value of all one bits
242 (0xffffffff) represents infinity
243 @param pref_lifetime - The length of time in
244 seconds (relative to the time the packet is sent)
245 that addresses generated from the prefix via
246 stateless address autoconfiguration remain
247 preferred [ADDRCONF]. A value of all one bits
248 (0xffffffff) represents infinity.
Dave Barachb5e8a772016-12-06 12:04:42 -0500249*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400250autoreply define sw_interface_ip6nd_ra_prefix
Dave Barachb5e8a772016-12-06 12:04:42 -0500251{
252 u32 client_index;
253 u32 context;
254 u32 sw_if_index;
255 u8 address[16];
256 u8 address_length;
257 u8 use_default;
258 u8 no_advertise;
259 u8 off_link;
260 u8 no_autoconfig;
261 u8 no_onlink;
262 u8 is_no;
263 u32 val_lifetime;
264 u32 pref_lifetime;
265};
266
Neale Ranns3f844d02017-02-18 00:03:54 -0800267/** \brief IPv6 ND proxy config
268 @param client_index - opaque cookie to identify the sender
269 @param context - sender context, to match reply w/ request
270 @param sw_if_index - The interface the host is on
271 @param address - The address of the host for which to proxy for
272 @param is_add - Adding or deleting
273*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400274autoreply define ip6nd_proxy_add_del
Neale Ranns3f844d02017-02-18 00:03:54 -0800275{
276 u32 client_index;
277 u32 context;
278 u32 sw_if_index;
279 u8 is_del;
280 u8 address[16];
281};
282
Neale Ranns3f844d02017-02-18 00:03:54 -0800283/** \brief IPv6 ND proxy details returned after request
284 @param context - sender context, to match reply w/ request
285 @param retval - return code for the request
286*/
287define ip6nd_proxy_details
288{
289 u32 client_index;
290 u32 context;
291 u32 sw_if_index;
292 u8 address[16];
293};
294
295/** \brief IPv6 ND proxy dump request
296 @param context - sender context, to match reply w/ request
297 @param retval - return code for the request
298 @param sw_if_index - The interface the host is on
299 @param address - The address of the host for which to proxy for
300*/
301define ip6nd_proxy_dump
302{
303 u32 client_index;
304 u32 context;
305};
306
Juraj Sloboda4b9669d2018-01-15 10:39:21 +0100307/** \brief Start / stop sending router solicitation
308 @param client_index - opaque cookie to identify the sender
309 @param context - sender context, to match reply w/ request
310 @param irt - initial retransmission time
311 @param mrt - maximum retransmission time
312 @param mrc - maximum retransmission count
313 @param mrd - maximum retransmission duration
314 @param sw_if_index - software interface index of interface
315 for sending router solicitation
316 @param stop - if non-zero then stop sending router solicitation,
317 otherwise start sending router solicitation
318*/
319autoreply define ip6nd_send_router_solicitation
320{
321 u32 client_index;
322 u32 context;
323 u32 irt;
324 u32 mrt;
325 u32 mrc;
326 u32 mrd;
327 u32 sw_if_index;
328 u8 stop;
329};
330
Dave Barachb5e8a772016-12-06 12:04:42 -0500331/** \brief IPv6 interface enable / disable request
332 @param client_index - opaque cookie to identify the sender
333 @param context - sender context, to match reply w/ request
334 @param sw_if_index - interface used to reach neighbor
335 @param enable - if non-zero enable ip6 on interface, else disable
336*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400337autoreply define sw_interface_ip6_enable_disable
Dave Barachb5e8a772016-12-06 12:04:42 -0500338{
339 u32 client_index;
340 u32 context;
341 u32 sw_if_index;
342 u8 enable; /* set to true if enable */
343};
344
Dave Barachb5e8a772016-12-06 12:04:42 -0500345/** \brief IPv6 set link local address on interface request
346 @param client_index - opaque cookie to identify the sender
347 @param context - sender context, to match reply w/ request
348 @param sw_if_index - interface to set link local on
349 @param address[] - the new link local address
Dave Barachb5e8a772016-12-06 12:04:42 -0500350*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400351autoreply define sw_interface_ip6_set_link_local_address
Dave Barachb5e8a772016-12-06 12:04:42 -0500352{
353 u32 client_index;
354 u32 context;
355 u32 sw_if_index;
356 u8 address[16];
Dave Barachb5e8a772016-12-06 12:04:42 -0500357};
358
Dave Barachb5e8a772016-12-06 12:04:42 -0500359/** \brief Add / del route request
360 @param client_index - opaque cookie to identify the sender
361 @param context - sender context, to match reply w/ request
362 @param sw_if_index - software index of the new vlan's parent interface
363 @param vrf_id - fib table /vrf associated with the route
364 @param lookup_in_vrf -
365 @param classify_table_index -
Dave Barachb5e8a772016-12-06 12:04:42 -0500366 @param is_add - 1 if adding the route, 0 if deleting
367 @param is_drop - Drop the packet
368 @param is_unreach - Drop the packet and rate limit send ICMP unreachable
369 @param is_prohibit - Drop the packet and rate limit send ICMP prohibited
370 @param is_ipv6 - 0 if an ip4 route, else ip6
Neale Ranns810086d2017-11-05 16:26:46 -0800371 @param is_local - The route will result in packets sent to VPP IP stack
372 @param is_udp_encap - The path describes a UDP-o-IP encapsulation.
Dave Barachb5e8a772016-12-06 12:04:42 -0500373 @param is_classify -
374 @param is_multipath - Set to 1 if this is a multipath route, else 0
Neale Rannsf068c3e2018-01-03 04:18:48 -0800375 @param is_dvr - Does the route resolve via a DVR interface.
Neale Ranns054c03a2017-10-13 05:15:07 -0700376 @param is_source_lookup - The the path is a deaggregate path (i.e. a lookup
377 in another table) is the lookup on the packet's
378 source address or destination.
Neale Ranns810086d2017-11-05 16:26:46 -0800379 @param next_hop_weight - Weight for Unequal cost multi-path
380 @param next_hop_preference - Path that are up that have the best preference are
381 are used for forwarding. lower value is better.
382 @param next_hop_id - Used when the path resolves via an object that has a unique
383 identifier.
Dave Barachb5e8a772016-12-06 12:04:42 -0500384 @param dst_address_length -
385 @param dst_address[16] -
386 @param next_hop_address[16] -
387 @param next_hop_n_out_labels - the number of labels in the label stack
388 @param next_hop_out_label_stack - the next-hop output label stack, outer most first
389 @param next_hop_via_label - The next-hop is a resolved via a local label
390*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400391autoreply define ip_add_del_route
Dave Barachb5e8a772016-12-06 12:04:42 -0500392{
393 u32 client_index;
394 u32 context;
395 u32 next_hop_sw_if_index;
396 u32 table_id;
397 u32 classify_table_index;
398 u32 next_hop_table_id;
Neale Ranns810086d2017-11-05 16:26:46 -0800399 u32 next_hop_id;
Dave Barachb5e8a772016-12-06 12:04:42 -0500400 u8 is_add;
401 u8 is_drop;
402 u8 is_unreach;
403 u8 is_prohibit;
404 u8 is_ipv6;
405 u8 is_local;
406 u8 is_classify;
407 u8 is_multipath;
408 u8 is_resolve_host;
409 u8 is_resolve_attached;
Neale Rannsf068c3e2018-01-03 04:18:48 -0800410 u8 is_dvr;
Neale Ranns054c03a2017-10-13 05:15:07 -0700411 u8 is_source_lookup;
Neale Ranns810086d2017-11-05 16:26:46 -0800412 u8 is_udp_encap;
Dave Barachb5e8a772016-12-06 12:04:42 -0500413 u8 next_hop_weight;
Neale Ranns57b58602017-07-15 07:37:25 -0700414 u8 next_hop_preference;
Neale Ranns810086d2017-11-05 16:26:46 -0800415 u8 next_hop_proto;
Dave Barachb5e8a772016-12-06 12:04:42 -0500416 u8 dst_address_length;
417 u8 dst_address[16];
418 u8 next_hop_address[16];
419 u8 next_hop_n_out_labels;
420 u32 next_hop_via_label;
Neale Ranns31ed7442018-02-23 05:29:09 -0800421 vl_api_fib_mpls_label_t next_hop_out_label_stack[next_hop_n_out_labels];
Dave Barachb5e8a772016-12-06 12:04:42 -0500422};
423
Neale Ranns32e1c012016-11-22 17:07:28 +0000424/** \brief Add / del route request
425 @param client_index - opaque cookie to identify the sender
426 @param context - sender context, to match reply w/ request
427 @param sw_if_index - software index of the new vlan's parent interface
428 @param vrf_id - fib table /vrf associated with the route
Neale Rannsd792d9c2017-10-21 10:53:20 -0700429 @param next_hop_afi - Use dpo_proto_t
Neale Ranns32e1c012016-11-22 17:07:28 +0000430 FIXME
431*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400432autoreply define ip_mroute_add_del
Neale Ranns32e1c012016-11-22 17:07:28 +0000433{
434 u32 client_index;
435 u32 context;
436 u32 next_hop_sw_if_index;
437 u32 table_id;
438 u32 entry_flags;
439 u32 itf_flags;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800440 u32 rpf_id;
Neale Rannsd792d9c2017-10-21 10:53:20 -0700441 u32 bier_imp;
Neale Ranns32e1c012016-11-22 17:07:28 +0000442 u16 grp_address_length;
Neale Rannsd792d9c2017-10-21 10:53:20 -0700443 u8 next_hop_afi;
Neale Ranns32e1c012016-11-22 17:07:28 +0000444 u8 is_add;
445 u8 is_ipv6;
446 u8 is_local;
447 u8 grp_address[16];
448 u8 src_address[16];
Neale Rannse821ab12017-06-01 07:45:05 -0700449 u8 nh_address[16];
Neale Ranns32e1c012016-11-22 17:07:28 +0000450};
451
Neale Ranns5a8123b2017-01-26 01:18:23 -0800452/** \brief Dump IP multicast fib table
453 @param client_index - opaque cookie to identify the sender
454*/
455define ip_mfib_dump
456{
457 u32 client_index;
458 u32 context;
459};
460
461/** \brief IP Multicast FIB table response
462 @param table_id - IP fib table id
463 @address_length - mask length
464 @grp_address - Group address/prefix
465 @src_address - Source address
466 @param count - the number of fib_path in path
467 @param path - array of of fib_path structures
468*/
469manual_endian manual_print define ip_mfib_details
470{
471 u32 context;
472 u32 table_id;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800473 u32 entry_flags;
474 u32 rpf_id;
Neale Ranns5a8123b2017-01-26 01:18:23 -0800475 u8 address_length;
476 u8 grp_address[4];
477 u8 src_address[4];
478 u32 count;
479 vl_api_fib_path_t path[count];
480};
481
482/** \brief Dump IP6 multicast fib table
483 @param client_index - opaque cookie to identify the sender
484*/
485define ip6_mfib_dump
486{
487 u32 client_index;
488 u32 context;
489};
490
491/** \brief IP6 Multicast FIB table response
492 @param table_id - IP fib table id
493 @address_length - mask length
494 @grp_address - Group address/prefix
495 @src_address - Source address
496 @param count - the number of fib_path in path
497 @param path - array of of fib_path structures
498*/
499manual_endian manual_print define ip6_mfib_details
500{
501 u32 context;
502 u32 table_id;
503 u8 address_length;
504 u8 grp_address[16];
505 u8 src_address[16];
506 u32 count;
507 vl_api_fib_path_t path[count];
508};
509
Dave Barachb5e8a772016-12-06 12:04:42 -0500510define ip_address_details
511{
512 u32 client_index;
513 u32 context;
514 u8 ip[16];
515 u8 prefix_length;
Jon Loeliger466f0d42017-02-09 12:17:50 -0600516 u32 sw_if_index;
517 u8 is_ipv6;
Dave Barachb5e8a772016-12-06 12:04:42 -0500518};
519
520define ip_address_dump
521{
522 u32 client_index;
523 u32 context;
524 u32 sw_if_index;
525 u8 is_ipv6;
526};
527
Neale Ranns9e2f9152018-05-18 02:27:10 -0700528/** \brief IP unnumbered configurations
529 @param sw_if_index The interface that has unnumbered configuration
530 @param ip_sw_if_index The IP interface that it is unnnumbered to
531*/
532define ip_unnumbered_details
533{
534 u32 client_index;
535 u32 context;
536 u32 sw_if_index;
537 u32 ip_sw_if_index;
538};
539
540/** \brief Dump IP unnumbered configurations
541 @param sw_if_index ~0 for all interfaces, else the interface desired
542*/
543define ip_unnumbered_dump
544{
545 u32 client_index;
546 u32 context;
547 u32 sw_if_index;
548};
549
Dave Barachb5e8a772016-12-06 12:04:42 -0500550define ip_details
551{
552 u32 sw_if_index;
553 u32 context;
Jon Loeliger466f0d42017-02-09 12:17:50 -0600554 u8 is_ipv6;
Dave Barachb5e8a772016-12-06 12:04:42 -0500555};
556
557define ip_dump
558{
559 u32 client_index;
560 u32 context;
561 u8 is_ipv6;
562};
563
Neale Ranns32e1c012016-11-22 17:07:28 +0000564define mfib_signal_dump
565{
566 u32 client_index;
567 u32 context;
568};
569
570define mfib_signal_details
571{
572 u32 client_index;
573 u32 context;
574 u32 sw_if_index;
575 u32 table_id;
576 u16 grp_address_len;
577 u8 grp_address[16];
578 u8 src_address[16];
579 u16 ip_packet_len;
580 u8 ip_packet_data[256];
581};
Dave Barachb5e8a772016-12-06 12:04:42 -0500582
Neale Rannsd91c1db2017-07-31 02:30:50 -0700583/** \brief IP punt policer
584 @param client_index - opaque cookie to identify the sender
585 @param context - sender context, to match reply w/ request
586 @param is_add - 1 to add neighbor, 0 to delete
587 @param is_ipv6 - 1 for IPv6 neighbor, 0 for IPv4
588 @param policer_index - Index of policer to use
589*/
590autoreply define ip_punt_police
591{
592 u32 client_index;
593 u32 context;
594 u32 policer_index;
595 u8 is_add;
596 u8 is_ip6;
597};
598
599/** \brief IP punt redirect
600 @param client_index - opaque cookie to identify the sender
601 @param context - sender context, to match reply w/ request
602 @param is_add - 1 to add neighbor, 0 to delete
603 @param is_ipv6 - 1 for IPv6 neighbor, 0 for IPv4
604 @param tx_sw_if_index - the TX interface to which traffic shoulde be
605 redirected.
606 @param nh - The next-hop to redirect the traffic to.
607*/
608autoreply define ip_punt_redirect
609{
610 u32 client_index;
611 u32 context;
612 u32 rx_sw_if_index;
613 u32 tx_sw_if_index;
614 u8 is_add;
615 u8 is_ip6;
616 u8 nh[16];
617};
618
Florin Coras595992c2017-11-06 17:17:08 -0800619autoreply define ip_container_proxy_add_del
620{
621 u32 client_index;
622 u32 context;
623 u8 ip[16];
624 u8 is_ip4;
625 u8 plen;
626 u32 sw_if_index;
627 u8 is_add;
628};
629
Neale Rannsb8d44812017-11-10 06:53:54 -0800630/** \brief Configure IP source and L4 port-range check
631 @param client_index - opaque cookie to identify the sender
632 @param context - sender context, to match reply w/ request
633 @param is_ip6 - 1 if source address type is IPv6
634 @param is_add - 1 if add, 0 if delete
635 @param mask_length - mask length for address entry
636 @param address - array of address bytes
637 @param number_of_ranges - length of low_port and high_port arrays (must match)
638 @param low_ports[32] - up to 32 low end of port range entries (must have corresponding high_ports entry)
639 @param high_ports[32] - up to 32 high end of port range entries (must have corresponding low_ports entry)
640 @param vrf_id - fib table/vrf id to associate the source and port-range check with
641 @note To specify a single port set low_port and high_port entry the same
642*/
643autoreply define ip_source_and_port_range_check_add_del
644{
645 u32 client_index;
646 u32 context;
647 u8 is_ipv6;
648 u8 is_add;
649 u8 mask_length;
650 u8 address[16];
651 u8 number_of_ranges;
652 u16 low_ports[32];
653 u16 high_ports[32];
654 u32 vrf_id;
655};
656
657/** \brief Set interface source and L4 port-range request
658 @param client_index - opaque cookie to identify the sender
659 @param context - sender context, to match reply w/ request
660 @param interface_id - interface index
661 @param tcp_vrf_id - VRF associated with source and TCP port-range check
662 @param udp_vrf_id - VRF associated with source and TCP port-range check
663*/
664autoreply define ip_source_and_port_range_check_interface_add_del
665{
666 u32 client_index;
667 u32 context;
668 u8 is_add;
669 u32 sw_if_index;
670 u32 tcp_in_vrf_id;
671 u32 tcp_out_vrf_id;
672 u32 udp_in_vrf_id;
673 u32 udp_out_vrf_id;
674};
675
John Lo7f358b32018-04-28 01:19:24 -0400676/** \brief Enable/disable periodic IP neighbor scan
677 @param client_index - opaque cookie to identify the sender
678 @param context - sender context, to match reply w/ request
679 @param mode - 0: disable, 1: IPv4, 2: IPv6, 3: both IPv4/v6
680 @param scan_interval - neighbor scan interval in minutes, 0: default to 1
681 @param max_proc_time - max processing time per run in usec, 0: default to 20
682 @param max_update - max neighbor probe/delete per run, 0: default to 10
683 @param scan_int_delay - delay in msec to resume scan if exceed max proc
684 time or update, 0: default to 1
685 @param stale_threshold - threshold in minutes for neighbor deletion,
686 0: default to 4*scan_interval
687*/
688autoreply define ip_scan_neighbor_enable_disable
689{
690 u32 client_index;
691 u32 context;
692 u8 mode;
693 u8 scan_interval;
694 u8 max_proc_time;
695 u8 max_update;
696 u8 scan_int_delay;
697 u8 stale_threshold;
698};
699
John Loc7b43042018-04-13 16:46:22 -0400700/** \brief IP probe neighbor address on an interface by sending an
701 ARP request (for IP4) or ICMP6 Neighbor Solicitation (for IP6)
702 @param client_index - opaque cookie to identify the sender
703 @param context - sender context, to match reply w/ request
704 @param sw_if_index - interface index
705 @param dst_address - target IP address to send IP addr resolution request
706 @param is_ipv6 - [1|0] to indicate if address family is IPv[6|4]
707*/
708autoreply define ip_probe_neighbor
709{
710 u32 client_index;
711 u32 context;
712 u32 sw_if_index;
713 u8 dst_address[16];
714 u8 is_ipv6;
715};
716
717/** \brief Register for IP4 ARP resolution event on receing ARP reply or
718 MAC/IP info from ARP requests in L2 BDs
Neale Rannsb8d44812017-11-10 06:53:54 -0800719 @param client_index - opaque cookie to identify the sender
720 @param context - sender context, to match reply w/ request
721 @param enable_disable - 1 => register for events, 0 => cancel registration
722 @param pid - sender's pid
John Loc7b43042018-04-13 16:46:22 -0400723 @param address - exact IP4 address of interested arp resolution event, or
724 0 to get MAC/IP info from ARP requests in BDs
Neale Rannsb8d44812017-11-10 06:53:54 -0800725*/
726autoreply define want_ip4_arp_events
727{
728 u32 client_index;
729 u32 context;
730 u8 enable_disable;
731 u32 pid;
732 u32 address;
733};
734
John Loc7b43042018-04-13 16:46:22 -0400735/** \brief Tell client about an IP4 ARP resolution event or
736 MAC/IP info from ARP requests in L2 BDs
Neale Rannsb8d44812017-11-10 06:53:54 -0800737 @param client_index - opaque cookie to identify the sender
738 @param address - the exact ip4 address of interest
739 @param pid - client pid registered to receive notification
740 @param sw_if_index - interface which received ARP packet
741 @param new_mac - the new mac address
John Loc7b43042018-04-13 16:46:22 -0400742 @param mac_ip - 0: ARP resolution event, 1: MAC/IP info from L2 BDs
Neale Rannsb8d44812017-11-10 06:53:54 -0800743*/
744define ip4_arp_event
745{
746 u32 client_index;
747 u32 address;
748 u32 pid;
749 u32 sw_if_index;
750 u8 new_mac[6];
751 u8 mac_ip;
752};
753
Marek Gradzki51e59682018-03-06 10:05:44 +0100754service {
755 rpc want_ip4_arp_events returns want_ip4_arp_events_reply
756 events ip4_arp_event;
757};
758
John Loc7b43042018-04-13 16:46:22 -0400759/** \brief Register for IP6 ND resolution event on recieving NA reply
760 MAC/IP info from ICMP6 Neighbor Solicitation in L2 BDs
Neale Rannsb8d44812017-11-10 06:53:54 -0800761 @param client_index - opaque cookie to identify the sender
762 @param context - sender context, to match reply w/ request
763 @param enable_disable - 1 => register for events, 0 => cancel registration
764 @param pid - sender's pid
John Loc7b43042018-04-13 16:46:22 -0400765 @param address - the exact IP6 address of interested ND resolution event, or
766 0 to get MAC/IP info from ICMP6 NS in L2 BDs.
Neale Rannsb8d44812017-11-10 06:53:54 -0800767*/
768autoreply define want_ip6_nd_events
769{
770 u32 client_index;
771 u32 context;
772 u8 enable_disable;
773 u32 pid;
774 u8 address[16];
775};
776
John Loc7b43042018-04-13 16:46:22 -0400777/** \brief Tell client about an IP6 ND resolution or
778 MAC/IP info from ICMP6 Neighbor Solicitation in L2 BDs.
Neale Rannsb8d44812017-11-10 06:53:54 -0800779 @param client_index - opaque cookie to identify the sender
780 @param pid - client pid registered to receive notification
781 @param sw_if_index - interface which received ARP packet
782 @param address - the exact ip6 address of interest
783 @param new_mac - the new mac address
John Loc7b43042018-04-13 16:46:22 -0400784 @param mac_ip - 0: ND resolution event, 1: MAC/IP info from L2 BDs
Neale Rannsb8d44812017-11-10 06:53:54 -0800785*/
786define ip6_nd_event
787{
788 u32 client_index;
789 u32 pid;
790 u32 sw_if_index;
791 u8 address[16];
792 u8 new_mac[6];
793 u8 mac_ip;
794};
795
Marek Gradzki51e59682018-03-06 10:05:44 +0100796service {
Juraj Sloboda4b9669d2018-01-15 10:39:21 +0100797 rpc want_ip6_ra_events returns want_ip6_ra_events_reply
798 events ip6_ra_event;
799};
800
801/** \brief Register for ip6 router advertisement events
802 @param client_index - opaque cookie to identify the sender
803 @param context - sender context, to match reply w/ request
804 @param enable_disable - 1 => register for events, 0 => cancel registration
805 @param pid - sender's pid
806*/
807autoreply define want_ip6_ra_events
808{
809 u32 client_index;
810 u32 context;
811 u8 enable_disable;
812 u32 pid;
813};
814
815/** \brief Struct representing RA prefix info
816 @param dst_address - RA prefix info destination address
817 @param dst_address_length - RA prefix info destination address length
818 @param flags - RA prefix info flags
819 @param valid_time - RA prefix info valid time
820 @param preferred_time - RA prefix info preferred time
821*/
822typeonly define ip6_ra_prefix_info
823{
824 u8 dst_address[16];
825 u8 dst_address_length;
826 u8 flags;
827 u32 valid_time;
828 u32 preferred_time;
829};
830
831/** \brief Tell client about a router advertisement event
832 @param client_index - opaque cookie to identify the sender
833 @param pid - client pid registered to receive notification
834 @param current_hop_limit - RA current hop limit
835 @param flags - RA flags
836 @param router_lifetime_in_sec - RA lifetime in seconds
837 @param neighbor_reachable_time_in_msec - RA neighbor reachable time in msec
838 @param time_in_msec_between_retransmitted_neighbor_solicitations -
839 time in msec between retransmitted neighbor solicitations
840 @param n_prefixes -
841 @param prefixes -
842*/
843define ip6_ra_event
844{
845 u32 client_index;
846 u32 pid;
847 u32 sw_if_index;
848 u8 router_address[16];
849 u8 current_hop_limit;
850 u8 flags;
851 u16 router_lifetime_in_sec;
852 u32 neighbor_reachable_time_in_msec;
853 u32 time_in_msec_between_retransmitted_neighbor_solicitations;
854 u32 n_prefixes;
855 vl_api_ip6_ra_prefix_info_t prefixes[n_prefixes];
856};
857
858service {
Marek Gradzki51e59682018-03-06 10:05:44 +0100859 rpc want_ip6_nd_events returns want_ip6_nd_events_reply
860 events ip6_nd_event;
861};
862
Neale Ranns0053de62018-05-22 08:40:52 -0700863/** \brief Proxy ARP configuration type
Neale Rannsb8d44812017-11-10 06:53:54 -0800864 @param vrf_id - VRF / Fib table ID
Neale Rannsb8d44812017-11-10 06:53:54 -0800865 @param low_address[4] - Low address of the Proxy ARP range
866 @param hi_address[4] - High address of the Proxy ARP range
867*/
Neale Ranns0053de62018-05-22 08:40:52 -0700868typeonly define proxy_arp
Neale Rannsb8d44812017-11-10 06:53:54 -0800869{
Neale Rannsb8d44812017-11-10 06:53:54 -0800870 u32 vrf_id;
Neale Rannsb8d44812017-11-10 06:53:54 -0800871 u8 low_address[4];
872 u8 hi_address[4];
873};
874
875/** \brief Proxy ARP add / del request
876 @param client_index - opaque cookie to identify the sender
877 @param context - sender context, to match reply w/ request
Neale Ranns0053de62018-05-22 08:40:52 -0700878 @param is_add - 1 if adding the Proxy ARP range, 0 if deleting
879 @param proxy - Proxy configuration
880*/
881autoreply define proxy_arp_add_del
882{
883 u32 client_index;
884 u32 context;
885 u8 is_add;
886 vl_api_proxy_arp_t proxy;
887};
888
889/** \brief Proxy ARP dump request
890 */
891define proxy_arp_dump
892{
893 u32 client_index;
894 u32 context;
895};
896
897/** \brief Proxy ARP dump details reply
898 * @param proxy - Same data as used to configure
899 */
900define proxy_arp_details
901{
902 u32 context;
903 vl_api_proxy_arp_t proxy;
904};
905
906/** \brief Proxy ARP add / del interface request
907 @param client_index - opaque cookie to identify the sender
908 @param context - sender context, to match reply w/ request
Neale Rannsb8d44812017-11-10 06:53:54 -0800909 @param sw_if_index - Which interface to enable / disable Proxy Arp on
910 @param enable_disable - 1 to enable Proxy ARP on interface, 0 to disable
911*/
912autoreply define proxy_arp_intfc_enable_disable
913{
914 u32 client_index;
915 u32 context;
916 u32 sw_if_index;
917 /* 1 = on, 0 = off */
918 u8 enable_disable;
919};
920
Neale Ranns0053de62018-05-22 08:40:52 -0700921/** \brief Proxy ARP interface dump request
922 */
923define proxy_arp_intfc_dump
924{
925 u32 client_index;
926 u32 context;
927};
928
929/** \brief Proxy ARP interface dump details reply
930 * @param sw_if_index The interface on which ARP proxy is enabled.
931 */
932define proxy_arp_intfc_details
933{
934 u32 context;
935 u32 sw_if_index;
936};
937
Neale Rannsb8d44812017-11-10 06:53:54 -0800938/** \brief Reset fib table request
939 @param client_index - opaque cookie to identify the sender
940 @param context - sender context, to match reply w/ request
941 @param vrf_id - vrf/table id of the fib table to reset
942 @param is_ipv6 - an ipv6 fib to reset if non-zero, else ipv4
943*/
944autoreply define reset_fib
945{
946 u32 client_index;
947 u32 context;
948 u32 vrf_id;
949 u8 is_ipv6;
950};
951
952/** \brief Set max allowed ARP or ip6 neighbor entries request
953 @param client_index - opaque cookie to identify the sender
954 @param context - sender context, to match reply w/ request
955 @param is_ipv6 - neighbor limit if non-zero, else ARP limit
956 @param arp_neighbor_limit - the new limit, defaults are ~ 50k
957*/
958autoreply define set_arp_neighbor_limit
959{
960 u32 client_index;
961 u32 context;
962 u8 is_ipv6;
963 u32 arp_neighbor_limit;
964};
965
966/** \brief IOAM enable : Enable in-band OAM
967 @param id - profile id
968 @param seqno - To enable Seqno Processing
969 @param analyse - Enabling analysis of iOAM at decap node
970 @param pow_enable - Proof of Work enabled or not flag
971 @param trace_enable - iOAM Trace enabled or not flag
972*/
973autoreply define ioam_enable
974{
975 u32 client_index;
976 u32 context;
977 u16 id;
978 u8 seqno;
979 u8 analyse;
980 u8 pot_enable;
981 u8 trace_enable;
982 u32 node_id;
983};
984
985/** \brief iOAM disable
986 @param client_index - opaque cookie to identify the sender
987 @param context - sender context, to match reply w/ request
988 @param index - MAP Domain index
989*/
990autoreply define ioam_disable
991{
992 u32 client_index;
993 u32 context;
994 u16 id;
995};
996
Klement Sekera75e7d132017-09-20 08:26:30 +0200997autoreply define ip_reassembly_set
998{
999 u32 client_index;
1000 u32 context;
1001 u32 timeout_ms;
1002 u32 max_reassemblies;
1003 u32 expire_walk_interval_ms;
1004 u8 is_ip6;
1005};
1006
1007define ip_reassembly_get
1008{
1009 u32 client_index;
1010 u32 context;
1011 u8 is_ip6;
1012};
1013
1014define ip_reassembly_get_reply
1015{
1016 u32 client_index;
1017 u32 context;
1018 i32 retval;
1019 u32 timeout_ms;
1020 u32 max_reassemblies;
1021 u32 expire_walk_interval_ms;
1022 u8 is_ip6;
1023};
1024
Klement Sekera4c533132018-02-22 11:41:12 +01001025/** \brief Enable/disable reassembly feature
1026 @param client_index - opaque cookie to identify the sender
1027 @param context - sender context, to match reply w/ request
1028 @param sw_if_index - interface to enable/disable feature on
1029 @param enable_ip4 - enable ip4 reassembly if non-zero, disable if 0
1030 @param enable_ip6 - enable ip6 reassembly if non-zero, disable if 0
1031*/
1032autoreply define ip_reassembly_enable_disable
1033{
1034 u32 client_index;
1035 u32 context;
1036 u32 sw_if_index;
1037 u8 enable_ip4;
1038 u8 enable_ip6;
1039};
1040
Dave Barachb5e8a772016-12-06 12:04:42 -05001041/*
1042 * Local Variables:
1043 * eval: (c-set-style "gnu")
1044 * End:
1045 */