blob: 4569c33ecea7e64ac09c52395a132e9d264e78ba [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
Neale Rannsd792d9c2017-10-21 10:53:20 -070022vl_api_version 1.0.1
Dave Barach0d056e52017-09-28 15:11:16 -040023
Neale Ranns28ab9cc2017-08-14 07:18:42 -070024/** \brief Add / del table request
25 A table can be added multiple times, but need be deleted only once.
26 @param client_index - opaque cookie to identify the sender
27 @param context - sender context, to match reply w/ request
28 @param is_ipv6 - V4 or V6 table
29 @param table_id - table ID associated with the route
30 This table ID will apply to both the unicats
31 and mlticast FIBs
Neale Ranns2297af02017-09-12 09:45:04 -070032 @param name - A client provided name/tag for the table. If this is
33 not set by the client, then VPP will generate something
34 meaningfull.
Neale Ranns28ab9cc2017-08-14 07:18:42 -070035*/
36autoreply define ip_table_add_del
37{
38 u32 client_index;
39 u32 context;
40 u32 table_id;
41 u8 is_ipv6;
42 u8 is_add;
Neale Ranns2297af02017-09-12 09:45:04 -070043 u8 name[64];
Neale Ranns28ab9cc2017-08-14 07:18:42 -070044};
45
Dave Barachb5e8a772016-12-06 12:04:42 -050046/** \brief Dump IP fib table
47 @param client_index - opaque cookie to identify the sender
48*/
49define ip_fib_dump
50{
51 u32 client_index;
52 u32 context;
53};
54
55/** \brief FIB path
56 @param sw_if_index - index of the interface
57 @param weight - The weight, for UCMP
Neale Ranns57b58602017-07-15 07:37:25 -070058 @param preference - The preference of the path. lowest preference is prefered
Dave Barachb5e8a772016-12-06 12:04:42 -050059 @param is_local - local if non-zero, else remote
60 @param is_drop - Drop the packet
61 @param is_unreach - Drop the packet and rate limit send ICMP unreachable
62 @param is_prohibit - Drop the packet and rate limit send ICMP prohibited
63 @param afi - the afi of the next hop, IP46_TYPE_IP4=1, IP46_TYPE_IP6=2
64 @param next_hop[16] - the next hop address
65
66 WARNING: this type is replicated, pending cleanup completion
67*/
68typeonly manual_print manual_endian define fib_path
69{
70 u32 sw_if_index;
Neale Rannsd792d9c2017-10-21 10:53:20 -070071 u32 table_id;
Neale Ranns57b58602017-07-15 07:37:25 -070072 u8 weight;
73 u8 preference;
Dave Barachb5e8a772016-12-06 12:04:42 -050074 u8 is_local;
75 u8 is_drop;
76 u8 is_unreach;
77 u8 is_prohibit;
78 u8 afi;
79 u8 next_hop[16];
80};
81
82/** \brief IP FIB table response
83 @param table_id - IP fib table id
84 @address_length - mask length
85 @address - ip4 prefix
86 @param count - the number of fib_path in path
87 @param path - array of of fib_path structures
88*/
89manual_endian manual_print define ip_fib_details
90{
91 u32 context;
92 u32 table_id;
Neale Ranns2297af02017-09-12 09:45:04 -070093 u8 table_name[64];
Dave Barachb5e8a772016-12-06 12:04:42 -050094 u8 address_length;
95 u8 address[4];
96 u32 count;
97 vl_api_fib_path_t path[count];
98};
99
100/** \brief Dump IP6 fib table
101 @param client_index - opaque cookie to identify the sender
102*/
103define ip6_fib_dump
104{
105 u32 client_index;
106 u32 context;
107};
108
Neale Ranns2297af02017-09-12 09:45:04 -0700109/** \brief IP6 FIB table entry response
Dave Barachb5e8a772016-12-06 12:04:42 -0500110 @param table_id - IP6 fib table id
Neale Ranns2297af02017-09-12 09:45:04 -0700111 @param address_length - mask length
112 @param address - ip6 prefix
Dave Barachb5e8a772016-12-06 12:04:42 -0500113 @param count - the number of fib_path in path
114 @param path - array of of fib_path structures
115*/
116manual_endian manual_print define ip6_fib_details
117{
118 u32 context;
119 u32 table_id;
Neale Ranns2297af02017-09-12 09:45:04 -0700120 u8 table_name[64];
Dave Barachb5e8a772016-12-06 12:04:42 -0500121 u8 address_length;
122 u8 address[16];
123 u32 count;
124 vl_api_fib_path_t path[count];
125};
126
127/** \brief Dump IP neighboors
128 @param client_index - opaque cookie to identify the sender
129 @param context - sender context, to match reply w/ request
Jon Loeligeraf8dfbf2017-11-08 13:07:39 -0600130 @param sw_if_index - the interface to dump neighboors, ~0 == all
Dave Barachb5e8a772016-12-06 12:04:42 -0500131 @param is_ipv6 - [1|0] to indicate if address family is ipv[6|4]
132*/
133define ip_neighbor_dump
134{
135 u32 client_index;
136 u32 context;
137 u32 sw_if_index;
138 u8 is_ipv6;
139};
140
141/** \brief IP neighboors dump response
142 @param context - sender context which was passed in the request
Jon Loeligeraf8dfbf2017-11-08 13:07:39 -0600143 @param sw_if_index - The interface used to reach the neighbor
Dave Barachb5e8a772016-12-06 12:04:42 -0500144 @param is_static - [1|0] to indicate if neighbor is statically configured
145 @param is_ipv6 - [1|0] to indicate if address family is ipv[6|4]
146*/
147define ip_neighbor_details {
148 u32 context;
Jon Loeligeraf8dfbf2017-11-08 13:07:39 -0600149 u32 sw_if_index;
Pavel Kotucek8cb07c92017-01-11 10:13:54 +0100150 u8 is_static;
Dave Barachb5e8a772016-12-06 12:04:42 -0500151 u8 is_ipv6;
152 u8 mac_address[6];
153 u8 ip_address[16];
154};
155
156/** \brief IP neighbor add / del request
157 @param client_index - opaque cookie to identify the sender
158 @param context - sender context, to match reply w/ request
Dave Barachb5e8a772016-12-06 12:04:42 -0500159 @param sw_if_index - interface used to reach neighbor
160 @param is_add - 1 to add neighbor, 0 to delete
161 @param is_ipv6 - 1 for IPv6 neighbor, 0 for IPv4
Neale Ranns239d3fe2017-03-08 08:56:58 -0800162 @param is_ipv6 - 1 for IPv6 neighbor, 0 for IPv4
163 @param is_static - A static neighbor Entry - there are not flushed
164 If the interface goes down.
165 @param is_no_adj_fib - Do not create a corresponding entry in the FIB
166 table for the neighbor.
Dave Barachb5e8a772016-12-06 12:04:42 -0500167 @param mac_address - l2 address of the neighbor
168 @param dst_address - ip4 or ip6 address of the neighbor
169*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400170autoreply define ip_neighbor_add_del
Dave Barachb5e8a772016-12-06 12:04:42 -0500171{
172 u32 client_index;
173 u32 context;
Dave Barachb5e8a772016-12-06 12:04:42 -0500174 u32 sw_if_index;
175 /* 1 = add, 0 = delete */
176 u8 is_add;
177 u8 is_ipv6;
178 u8 is_static;
Neale Ranns239d3fe2017-03-08 08:56:58 -0800179 u8 is_no_adj_fib;
Dave Barachb5e8a772016-12-06 12:04:42 -0500180 u8 mac_address[6];
181 u8 dst_address[16];
182};
183
Dave Barachb5e8a772016-12-06 12:04:42 -0500184/** \brief Set the ip flow hash config for a fib request
185 @param client_index - opaque cookie to identify the sender
186 @param context - sender context, to match reply w/ request
187 @param vrf_id - vrf/fib id
188 @param is_ipv6 - if non-zero the fib is ip6, else ip4
189 @param src - if non-zero include src in flow hash
190 @param dst - if non-zero include dst in flow hash
191 @param sport - if non-zero include sport in flow hash
192 @param dport - if non-zero include dport in flow hash
193 @param proto -if non-zero include proto in flow hash
194 @param reverse - if non-zero include reverse in flow hash
195*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400196autoreply define set_ip_flow_hash
Dave Barachb5e8a772016-12-06 12:04:42 -0500197{
198 u32 client_index;
199 u32 context;
200 u32 vrf_id;
201 u8 is_ipv6;
202 u8 src;
203 u8 dst;
204 u8 sport;
205 u8 dport;
206 u8 proto;
207 u8 reverse;
208};
209
Dave Barachb5e8a772016-12-06 12:04:42 -0500210/** \brief IPv6 router advertisement config request
211 @param client_index - opaque cookie to identify the sender
212 @param context - sender context, to match reply w/ request
213 @param suppress -
214 @param managed -
215 @param other -
216 @param ll_option -
217 @param send_unicast -
218 @param cease -
219 @param is_no -
220 @param default_router -
221 @param max_interval -
222 @param min_interval -
223 @param lifetime -
224 @param initial_count -
225 @param initial_interval -
226*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400227autoreply define sw_interface_ip6nd_ra_config
Dave Barachb5e8a772016-12-06 12:04:42 -0500228{
229 u32 client_index;
230 u32 context;
231 u32 sw_if_index;
232 u8 suppress;
233 u8 managed;
234 u8 other;
235 u8 ll_option;
236 u8 send_unicast;
237 u8 cease;
238 u8 is_no;
239 u8 default_router;
240 u32 max_interval;
241 u32 min_interval;
242 u32 lifetime;
243 u32 initial_count;
244 u32 initial_interval;
245};
246
Dave Barachb5e8a772016-12-06 12:04:42 -0500247/** \brief IPv6 router advertisement prefix config request
248 @param client_index - opaque cookie to identify the sender
249 @param context - sender context, to match reply w/ request
Neale Ranns87df12d2017-02-18 08:16:41 -0800250 @param sw_if_index - The interface the RA prefix information is for
251 @param address[] - The prefix to advertise
252 @param address_length - the prefix length
253 @param use_default - Revert to default settings
254 @param no_advertise - Do not advertise this prefix
255 @param off_link - The prefix is off link (it is not configured on the interface)
256 Configures the L-flag, When set, indicates that this
257 prefix can be used for on-link determination.
258 @param no_autoconfig - Setting for the A-flag. When
259 set indicates that this prefix can be used for
260 stateless address configuration.
261 @param no_onlink - The prefix is not on link. Make sure this is consistent
262 with the off_link parameter else YMMV
263 @param is_no - add/delete
264 @param val_lifetime - The length of time in
265 seconds (relative to the time the packet is sent)
266 that the prefix is valid for the purpose of on-link
267 determination. A value of all one bits
268 (0xffffffff) represents infinity
269 @param pref_lifetime - The length of time in
270 seconds (relative to the time the packet is sent)
271 that addresses generated from the prefix via
272 stateless address autoconfiguration remain
273 preferred [ADDRCONF]. A value of all one bits
274 (0xffffffff) represents infinity.
Dave Barachb5e8a772016-12-06 12:04:42 -0500275*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400276autoreply define sw_interface_ip6nd_ra_prefix
Dave Barachb5e8a772016-12-06 12:04:42 -0500277{
278 u32 client_index;
279 u32 context;
280 u32 sw_if_index;
281 u8 address[16];
282 u8 address_length;
283 u8 use_default;
284 u8 no_advertise;
285 u8 off_link;
286 u8 no_autoconfig;
287 u8 no_onlink;
288 u8 is_no;
289 u32 val_lifetime;
290 u32 pref_lifetime;
291};
292
Neale Ranns3f844d02017-02-18 00:03:54 -0800293/** \brief IPv6 ND proxy config
294 @param client_index - opaque cookie to identify the sender
295 @param context - sender context, to match reply w/ request
296 @param sw_if_index - The interface the host is on
297 @param address - The address of the host for which to proxy for
298 @param is_add - Adding or deleting
299*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400300autoreply define ip6nd_proxy_add_del
Neale Ranns3f844d02017-02-18 00:03:54 -0800301{
302 u32 client_index;
303 u32 context;
304 u32 sw_if_index;
305 u8 is_del;
306 u8 address[16];
307};
308
Neale Ranns3f844d02017-02-18 00:03:54 -0800309/** \brief IPv6 ND proxy details returned after request
310 @param context - sender context, to match reply w/ request
311 @param retval - return code for the request
312*/
313define ip6nd_proxy_details
314{
315 u32 client_index;
316 u32 context;
317 u32 sw_if_index;
318 u8 address[16];
319};
320
321/** \brief IPv6 ND proxy dump request
322 @param context - sender context, to match reply w/ request
323 @param retval - return code for the request
324 @param sw_if_index - The interface the host is on
325 @param address - The address of the host for which to proxy for
326*/
327define ip6nd_proxy_dump
328{
329 u32 client_index;
330 u32 context;
331};
332
Dave Barachb5e8a772016-12-06 12:04:42 -0500333/** \brief IPv6 interface enable / disable request
334 @param client_index - opaque cookie to identify the sender
335 @param context - sender context, to match reply w/ request
336 @param sw_if_index - interface used to reach neighbor
337 @param enable - if non-zero enable ip6 on interface, else disable
338*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400339autoreply define sw_interface_ip6_enable_disable
Dave Barachb5e8a772016-12-06 12:04:42 -0500340{
341 u32 client_index;
342 u32 context;
343 u32 sw_if_index;
344 u8 enable; /* set to true if enable */
345};
346
Dave Barachb5e8a772016-12-06 12:04:42 -0500347/** \brief IPv6 set link local address on interface request
348 @param client_index - opaque cookie to identify the sender
349 @param context - sender context, to match reply w/ request
350 @param sw_if_index - interface to set link local on
351 @param address[] - the new link local address
Dave Barachb5e8a772016-12-06 12:04:42 -0500352*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400353autoreply define sw_interface_ip6_set_link_local_address
Dave Barachb5e8a772016-12-06 12:04:42 -0500354{
355 u32 client_index;
356 u32 context;
357 u32 sw_if_index;
358 u8 address[16];
Dave Barachb5e8a772016-12-06 12:04:42 -0500359};
360
Dave Barachb5e8a772016-12-06 12:04:42 -0500361/** \brief Add / del route request
362 @param client_index - opaque cookie to identify the sender
363 @param context - sender context, to match reply w/ request
364 @param sw_if_index - software index of the new vlan's parent interface
365 @param vrf_id - fib table /vrf associated with the route
366 @param lookup_in_vrf -
367 @param classify_table_index -
Florin Corasd0a59722017-10-15 17:41:21 +0000368 @param create_vrf_if_needed -
Dave Barachb5e8a772016-12-06 12:04:42 -0500369 @param is_add - 1 if adding the route, 0 if deleting
370 @param is_drop - Drop the packet
371 @param is_unreach - Drop the packet and rate limit send ICMP unreachable
372 @param is_prohibit - Drop the packet and rate limit send ICMP prohibited
373 @param is_ipv6 - 0 if an ip4 route, else ip6
Neale Ranns810086d2017-11-05 16:26:46 -0800374 @param is_local - The route will result in packets sent to VPP IP stack
375 @param is_udp_encap - The path describes a UDP-o-IP encapsulation.
Dave Barachb5e8a772016-12-06 12:04:42 -0500376 @param is_classify -
377 @param is_multipath - Set to 1 if this is a multipath route, else 0
Neale Ranns054c03a2017-10-13 05:15:07 -0700378 @param is_source_lookup - The the path is a deaggregate path (i.e. a lookup
379 in another table) is the lookup on the packet's
380 source address or destination.
Neale Ranns810086d2017-11-05 16:26:46 -0800381 @param next_hop_weight - Weight for Unequal cost multi-path
382 @param next_hop_preference - Path that are up that have the best preference are
383 are used for forwarding. lower value is better.
384 @param next_hop_id - Used when the path resolves via an object that has a unique
385 identifier.
Dave Barachb5e8a772016-12-06 12:04:42 -0500386 @param dst_address_length -
387 @param dst_address[16] -
388 @param next_hop_address[16] -
389 @param next_hop_n_out_labels - the number of labels in the label stack
390 @param next_hop_out_label_stack - the next-hop output label stack, outer most first
391 @param next_hop_via_label - The next-hop is a resolved via a local label
392*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400393autoreply define ip_add_del_route
Dave Barachb5e8a772016-12-06 12:04:42 -0500394{
395 u32 client_index;
396 u32 context;
397 u32 next_hop_sw_if_index;
398 u32 table_id;
399 u32 classify_table_index;
400 u32 next_hop_table_id;
Neale Ranns810086d2017-11-05 16:26:46 -0800401 u32 next_hop_id;
Florin Corasd0a59722017-10-15 17:41:21 +0000402 u8 create_vrf_if_needed;
Dave Barachb5e8a772016-12-06 12:04:42 -0500403 u8 is_add;
404 u8 is_drop;
405 u8 is_unreach;
406 u8 is_prohibit;
407 u8 is_ipv6;
408 u8 is_local;
409 u8 is_classify;
410 u8 is_multipath;
411 u8 is_resolve_host;
412 u8 is_resolve_attached;
Neale Ranns6f631152017-10-03 08:20:21 -0700413 u8 is_l2_bridged;
Neale Ranns054c03a2017-10-13 05:15:07 -0700414 u8 is_source_lookup;
Neale Ranns810086d2017-11-05 16:26:46 -0800415 u8 is_udp_encap;
Dave Barachb5e8a772016-12-06 12:04:42 -0500416 u8 next_hop_weight;
Neale Ranns57b58602017-07-15 07:37:25 -0700417 u8 next_hop_preference;
Neale Ranns810086d2017-11-05 16:26:46 -0800418 u8 next_hop_proto;
Dave Barachb5e8a772016-12-06 12:04:42 -0500419 u8 dst_address_length;
420 u8 dst_address[16];
421 u8 next_hop_address[16];
422 u8 next_hop_n_out_labels;
423 u32 next_hop_via_label;
424 u32 next_hop_out_label_stack[next_hop_n_out_labels];
425};
426
Neale Ranns32e1c012016-11-22 17:07:28 +0000427/** \brief Add / del route request
428 @param client_index - opaque cookie to identify the sender
429 @param context - sender context, to match reply w/ request
430 @param sw_if_index - software index of the new vlan's parent interface
431 @param vrf_id - fib table /vrf associated with the route
Neale Rannsd792d9c2017-10-21 10:53:20 -0700432 @param next_hop_afi - Use dpo_proto_t
Neale Ranns32e1c012016-11-22 17:07:28 +0000433 FIXME
434*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400435autoreply define ip_mroute_add_del
Neale Ranns32e1c012016-11-22 17:07:28 +0000436{
437 u32 client_index;
438 u32 context;
439 u32 next_hop_sw_if_index;
440 u32 table_id;
441 u32 entry_flags;
442 u32 itf_flags;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800443 u32 rpf_id;
Neale Rannsd792d9c2017-10-21 10:53:20 -0700444 u32 bier_imp;
Neale Ranns32e1c012016-11-22 17:07:28 +0000445 u16 grp_address_length;
Neale Rannsd792d9c2017-10-21 10:53:20 -0700446 u8 next_hop_afi;
Florin Corasd0a59722017-10-15 17:41:21 +0000447 u8 create_vrf_if_needed;
Neale Ranns32e1c012016-11-22 17:07:28 +0000448 u8 is_add;
449 u8 is_ipv6;
450 u8 is_local;
451 u8 grp_address[16];
452 u8 src_address[16];
453};
454
Neale Ranns5a8123b2017-01-26 01:18:23 -0800455/** \brief Dump IP multicast fib table
456 @param client_index - opaque cookie to identify the sender
457*/
458define ip_mfib_dump
459{
460 u32 client_index;
461 u32 context;
462};
463
464/** \brief IP Multicast FIB table response
465 @param table_id - IP fib table id
466 @address_length - mask length
467 @grp_address - Group address/prefix
468 @src_address - Source address
469 @param count - the number of fib_path in path
470 @param path - array of of fib_path structures
471*/
472manual_endian manual_print define ip_mfib_details
473{
474 u32 context;
475 u32 table_id;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800476 u32 entry_flags;
477 u32 rpf_id;
Neale Ranns5a8123b2017-01-26 01:18:23 -0800478 u8 address_length;
479 u8 grp_address[4];
480 u8 src_address[4];
481 u32 count;
482 vl_api_fib_path_t path[count];
483};
484
485/** \brief Dump IP6 multicast fib table
486 @param client_index - opaque cookie to identify the sender
487*/
488define ip6_mfib_dump
489{
490 u32 client_index;
491 u32 context;
492};
493
494/** \brief IP6 Multicast FIB table response
495 @param table_id - IP fib table id
496 @address_length - mask length
497 @grp_address - Group address/prefix
498 @src_address - Source address
499 @param count - the number of fib_path in path
500 @param path - array of of fib_path structures
501*/
502manual_endian manual_print define ip6_mfib_details
503{
504 u32 context;
505 u32 table_id;
506 u8 address_length;
507 u8 grp_address[16];
508 u8 src_address[16];
509 u32 count;
510 vl_api_fib_path_t path[count];
511};
512
Dave Barachb5e8a772016-12-06 12:04:42 -0500513define ip_address_details
514{
515 u32 client_index;
516 u32 context;
517 u8 ip[16];
518 u8 prefix_length;
Jon Loeliger466f0d42017-02-09 12:17:50 -0600519 u32 sw_if_index;
520 u8 is_ipv6;
Dave Barachb5e8a772016-12-06 12:04:42 -0500521};
522
523define ip_address_dump
524{
525 u32 client_index;
526 u32 context;
527 u32 sw_if_index;
528 u8 is_ipv6;
529};
530
531define ip_details
532{
533 u32 sw_if_index;
534 u32 context;
Jon Loeliger466f0d42017-02-09 12:17:50 -0600535 u8 is_ipv6;
Dave Barachb5e8a772016-12-06 12:04:42 -0500536};
537
538define ip_dump
539{
540 u32 client_index;
541 u32 context;
542 u8 is_ipv6;
543};
544
Neale Ranns32e1c012016-11-22 17:07:28 +0000545define mfib_signal_dump
546{
547 u32 client_index;
548 u32 context;
549};
550
551define mfib_signal_details
552{
553 u32 client_index;
554 u32 context;
555 u32 sw_if_index;
556 u32 table_id;
557 u16 grp_address_len;
558 u8 grp_address[16];
559 u8 src_address[16];
560 u16 ip_packet_len;
561 u8 ip_packet_data[256];
562};
Dave Barachb5e8a772016-12-06 12:04:42 -0500563
Neale Rannsd91c1db2017-07-31 02:30:50 -0700564/** \brief IP punt policer
565 @param client_index - opaque cookie to identify the sender
566 @param context - sender context, to match reply w/ request
567 @param is_add - 1 to add neighbor, 0 to delete
568 @param is_ipv6 - 1 for IPv6 neighbor, 0 for IPv4
569 @param policer_index - Index of policer to use
570*/
571autoreply define ip_punt_police
572{
573 u32 client_index;
574 u32 context;
575 u32 policer_index;
576 u8 is_add;
577 u8 is_ip6;
578};
579
580/** \brief IP punt redirect
581 @param client_index - opaque cookie to identify the sender
582 @param context - sender context, to match reply w/ request
583 @param is_add - 1 to add neighbor, 0 to delete
584 @param is_ipv6 - 1 for IPv6 neighbor, 0 for IPv4
585 @param tx_sw_if_index - the TX interface to which traffic shoulde be
586 redirected.
587 @param nh - The next-hop to redirect the traffic to.
588*/
589autoreply define ip_punt_redirect
590{
591 u32 client_index;
592 u32 context;
593 u32 rx_sw_if_index;
594 u32 tx_sw_if_index;
595 u8 is_add;
596 u8 is_ip6;
597 u8 nh[16];
598};
599
Florin Coras595992c2017-11-06 17:17:08 -0800600autoreply define ip_container_proxy_add_del
601{
602 u32 client_index;
603 u32 context;
604 u8 ip[16];
605 u8 is_ip4;
606 u8 plen;
607 u32 sw_if_index;
608 u8 is_add;
609};
610
Neale Rannsb8d44812017-11-10 06:53:54 -0800611/** \brief Configure IP source and L4 port-range check
612 @param client_index - opaque cookie to identify the sender
613 @param context - sender context, to match reply w/ request
614 @param is_ip6 - 1 if source address type is IPv6
615 @param is_add - 1 if add, 0 if delete
616 @param mask_length - mask length for address entry
617 @param address - array of address bytes
618 @param number_of_ranges - length of low_port and high_port arrays (must match)
619 @param low_ports[32] - up to 32 low end of port range entries (must have corresponding high_ports entry)
620 @param high_ports[32] - up to 32 high end of port range entries (must have corresponding low_ports entry)
621 @param vrf_id - fib table/vrf id to associate the source and port-range check with
622 @note To specify a single port set low_port and high_port entry the same
623*/
624autoreply define ip_source_and_port_range_check_add_del
625{
626 u32 client_index;
627 u32 context;
628 u8 is_ipv6;
629 u8 is_add;
630 u8 mask_length;
631 u8 address[16];
632 u8 number_of_ranges;
633 u16 low_ports[32];
634 u16 high_ports[32];
635 u32 vrf_id;
636};
637
638/** \brief Set interface source and L4 port-range request
639 @param client_index - opaque cookie to identify the sender
640 @param context - sender context, to match reply w/ request
641 @param interface_id - interface index
642 @param tcp_vrf_id - VRF associated with source and TCP port-range check
643 @param udp_vrf_id - VRF associated with source and TCP port-range check
644*/
645autoreply define ip_source_and_port_range_check_interface_add_del
646{
647 u32 client_index;
648 u32 context;
649 u8 is_add;
650 u32 sw_if_index;
651 u32 tcp_in_vrf_id;
652 u32 tcp_out_vrf_id;
653 u32 udp_in_vrf_id;
654 u32 udp_out_vrf_id;
655};
656
657/** \brief Register for ip4 arp resolution events
658 @param client_index - opaque cookie to identify the sender
659 @param context - sender context, to match reply w/ request
660 @param enable_disable - 1 => register for events, 0 => cancel registration
661 @param pid - sender's pid
662 @param address - the exact ip4 address of interest
663*/
664autoreply define want_ip4_arp_events
665{
666 u32 client_index;
667 u32 context;
668 u8 enable_disable;
669 u32 pid;
670 u32 address;
671};
672
673/** \brief Tell client about an ip4 arp resolution event
674 @param client_index - opaque cookie to identify the sender
675 @param address - the exact ip4 address of interest
676 @param pid - client pid registered to receive notification
677 @param sw_if_index - interface which received ARP packet
678 @param new_mac - the new mac address
679 @param mac_ip - 0: resolution event, 1: mac/ip binding in bd
680*/
681define ip4_arp_event
682{
683 u32 client_index;
684 u32 address;
685 u32 pid;
686 u32 sw_if_index;
687 u8 new_mac[6];
688 u8 mac_ip;
689};
690
691/** \brief Register for ip6 nd resolution events
692 @param client_index - opaque cookie to identify the sender
693 @param context - sender context, to match reply w/ request
694 @param enable_disable - 1 => register for events, 0 => cancel registration
695 @param pid - sender's pid
696 @param address - the exact ip6 address of interest
697*/
698autoreply define want_ip6_nd_events
699{
700 u32 client_index;
701 u32 context;
702 u8 enable_disable;
703 u32 pid;
704 u8 address[16];
705};
706
707/** \brief Tell client about an ip6 nd resolution or mac/ip event
708 @param client_index - opaque cookie to identify the sender
709 @param pid - client pid registered to receive notification
710 @param sw_if_index - interface which received ARP packet
711 @param address - the exact ip6 address of interest
712 @param new_mac - the new mac address
713 @param mac_ip - 0: resolution event, 1: mac/ip binding in bd
714*/
715define ip6_nd_event
716{
717 u32 client_index;
718 u32 pid;
719 u32 sw_if_index;
720 u8 address[16];
721 u8 new_mac[6];
722 u8 mac_ip;
723};
724
725/** \brief Proxy ARP add / del request
726 @param client_index - opaque cookie to identify the sender
727 @param context - sender context, to match reply w/ request
728 @param vrf_id - VRF / Fib table ID
729 @param is_add - 1 if adding the Proxy ARP range, 0 if deleting
730 @param low_address[4] - Low address of the Proxy ARP range
731 @param hi_address[4] - High address of the Proxy ARP range
732*/
733autoreply define proxy_arp_add_del
734{
735 u32 client_index;
736 u32 context;
737 u32 vrf_id;
738 u8 is_add;
739 u8 low_address[4];
740 u8 hi_address[4];
741};
742
743/** \brief Proxy ARP add / del request
744 @param client_index - opaque cookie to identify the sender
745 @param context - sender context, to match reply w/ request
746 @param sw_if_index - Which interface to enable / disable Proxy Arp on
747 @param enable_disable - 1 to enable Proxy ARP on interface, 0 to disable
748*/
749autoreply define proxy_arp_intfc_enable_disable
750{
751 u32 client_index;
752 u32 context;
753 u32 sw_if_index;
754 /* 1 = on, 0 = off */
755 u8 enable_disable;
756};
757
758/** \brief Reset fib table request
759 @param client_index - opaque cookie to identify the sender
760 @param context - sender context, to match reply w/ request
761 @param vrf_id - vrf/table id of the fib table to reset
762 @param is_ipv6 - an ipv6 fib to reset if non-zero, else ipv4
763*/
764autoreply define reset_fib
765{
766 u32 client_index;
767 u32 context;
768 u32 vrf_id;
769 u8 is_ipv6;
770};
771
772/** \brief Set max allowed ARP or ip6 neighbor entries request
773 @param client_index - opaque cookie to identify the sender
774 @param context - sender context, to match reply w/ request
775 @param is_ipv6 - neighbor limit if non-zero, else ARP limit
776 @param arp_neighbor_limit - the new limit, defaults are ~ 50k
777*/
778autoreply define set_arp_neighbor_limit
779{
780 u32 client_index;
781 u32 context;
782 u8 is_ipv6;
783 u32 arp_neighbor_limit;
784};
785
786/** \brief IOAM enable : Enable in-band OAM
787 @param id - profile id
788 @param seqno - To enable Seqno Processing
789 @param analyse - Enabling analysis of iOAM at decap node
790 @param pow_enable - Proof of Work enabled or not flag
791 @param trace_enable - iOAM Trace enabled or not flag
792*/
793autoreply define ioam_enable
794{
795 u32 client_index;
796 u32 context;
797 u16 id;
798 u8 seqno;
799 u8 analyse;
800 u8 pot_enable;
801 u8 trace_enable;
802 u32 node_id;
803};
804
805/** \brief iOAM disable
806 @param client_index - opaque cookie to identify the sender
807 @param context - sender context, to match reply w/ request
808 @param index - MAP Domain index
809*/
810autoreply define ioam_disable
811{
812 u32 client_index;
813 u32 context;
814 u16 id;
815};
816
Dave Barachb5e8a772016-12-06 12:04:42 -0500817/*
818 * Local Variables:
819 * eval: (c-set-style "gnu")
820 * End:
821 */