blob: 5624bcfaf6a71e299d2334021328a1fac405917a [file] [log] [blame]
Neale Ranns008dbe12018-09-07 09:32:36 -07001/* Hey Emacs use -*- mode: C -*- */
Dave Barachb5e8a772016-12-06 12:04:42 -05002/*
Neale Ranns008dbe12018-09-07 09:32:36 -07003 * Copyright (c) 2018 Cisco and/or its affiliates.
Dave Barachb5e8a772016-12-06 12:04:42 -05004 * 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 vpp IP control-plane API messages which are generally
Jakub Grajciar58989a32019-10-08 14:05:18 +020020 called through a shared memory interface.
Dave Barachb5e8a772016-12-06 12:04:42 -050021*/
22
Jakub Grajciar58989a32019-10-08 14:05:18 +020023option version = "3.0.1";
Neale Ranns097fa662018-05-01 05:17:55 -070024
Jakub Grajciar58989a32019-10-08 14:05:18 +020025import "vnet/interface_types.api";
Neale Ranns31ed7442018-02-23 05:29:09 -080026import "vnet/fib/fib_types.api";
Neale Rannsde5b08f2018-08-29 06:37:18 -070027import "vnet/ethernet/ethernet_types.api";
Neale Ranns097fa662018-05-01 05:17:55 -070028import "vnet/mfib/mfib_types.api";
Ole Troan668605f2019-12-09 16:08:27 +010029import "vnet/interface_types.api";
Dave Barach0d056e52017-09-28 15:11:16 -040030
Neale Ranns097fa662018-05-01 05:17:55 -070031/** \brief An IP table
Neale Ranns28ab9cc2017-08-14 07:18:42 -070032 @param is_ipv6 - V4 or V6 table
33 @param table_id - table ID associated with the route
Paul Vinciguerrac0e94412020-04-28 01:12:04 -040034 This table ID will apply to both the unicast
35 and multicast FIBs
Neale Ranns2297af02017-09-12 09:45:04 -070036 @param name - A client provided name/tag for the table. If this is
37 not set by the client, then VPP will generate something
Paul Vinciguerrac0e94412020-04-28 01:12:04 -040038 meaningful.
Neale Ranns28ab9cc2017-08-14 07:18:42 -070039*/
Paul Vinciguerrae7174822019-08-07 00:05:59 -040040typedef ip_table
Neale Ranns097fa662018-05-01 05:17:55 -070041{
42 u32 table_id;
Ole Troan668605f2019-12-09 16:08:27 +010043 bool is_ip6;
44 string name[64];
Neale Ranns097fa662018-05-01 05:17:55 -070045};
46
47/** \brief Add / del table request
48 A table can be added multiple times, but need be deleted only once.
49 @param client_index - opaque cookie to identify the sender
50 @param context - sender context, to match reply w/ request
51*/
Neale Ranns28ab9cc2017-08-14 07:18:42 -070052autoreply define ip_table_add_del
53{
54 u32 client_index;
55 u32 context;
Jakub Grajciar58989a32019-10-08 14:05:18 +020056 bool is_add [default=true];
Neale Ranns097fa662018-05-01 05:17:55 -070057 vl_api_ip_table_t table;
Neale Ranns28ab9cc2017-08-14 07:18:42 -070058};
59
Neale Ranns097fa662018-05-01 05:17:55 -070060/** \brief Dump IP all fib tables
Dave Barachb5e8a772016-12-06 12:04:42 -050061 @param client_index - opaque cookie to identify the sender
Neale Ranns097fa662018-05-01 05:17:55 -070062 @param context - sender context, to match reply w/ request
Dave Barachb5e8a772016-12-06 12:04:42 -050063*/
Neale Ranns097fa662018-05-01 05:17:55 -070064define ip_table_dump
Dave Barachb5e8a772016-12-06 12:04:42 -050065{
66 u32 client_index;
67 u32 context;
68};
69
Neale Ranns9db6ada2019-11-08 12:42:31 +000070/** \brief IP table replace being
71
72 The use-case is that, for some unspecified reason, the control plane
73 has a very different set of entries it wants in the table than VPP
74 currently has. The CP would thus like to 'replace' VPP's current table
75 only by specifying what the new set of entries shall be, i.e. it is not
Paul Vinciguerrac0e94412020-04-28 01:12:04 -040076 going to delete anything that already exists.
77 the CP declares the start of this procedure with this begin_replace
Neale Ranns9db6ada2019-11-08 12:42:31 +000078 API Call, and when it has populated all the entries it wants, it calls
Paul Vinciguerrac0e94412020-04-28 01:12:04 -040079 the below end_replace API. From this point on it is of course free
Neale Ranns9db6ada2019-11-08 12:42:31 +000080 to add and delete entries as usual.
81 The underlying mechanism by which VPP implements this replace is
82 purposefully left unspecified.
83
84 @param client_index - opaque cookie to identify the sender
85 @param context - sender context, to match reply w/ request
86 @param table - The table to resync
87*/
88autoreply define ip_table_replace_begin
89{
90 u32 client_index;
91 u32 context;
92 vl_api_ip_table_t table;
93};
94
95/** \brief IP table replace end
96
97 see replace start/
98
99 @param client_index - opaque cookie to identify the sender
100 @param context - sender context, to match reply w/ request
101 @param table - The table that has converged
102*/
103autoreply define ip_table_replace_end
104{
105 u32 client_index;
106 u32 context;
107 vl_api_ip_table_t table;
108};
109
110/** \brief IP table flush
111 Flush a table of all routes
112 @param client_index - opaque cookie to identify the sender
113 @param context - sender context, to match reply w/ request
114 @param table - The table to flush
115*/
116autoreply define ip_table_flush
117{
118 u32 client_index;
119 u32 context;
120 vl_api_ip_table_t table;
121};
122
Dave Barachb5e8a772016-12-06 12:04:42 -0500123/** \brief IP FIB table response
Neale Ranns097fa662018-05-01 05:17:55 -0700124 @param context - sender context
125 @param table - description of the table
Dave Barachb5e8a772016-12-06 12:04:42 -0500126*/
Neale Ranns097fa662018-05-01 05:17:55 -0700127manual_endian manual_print define ip_table_details
Dave Barachb5e8a772016-12-06 12:04:42 -0500128{
129 u32 context;
Neale Ranns097fa662018-05-01 05:17:55 -0700130 vl_api_ip_table_t table;
Dave Barachb5e8a772016-12-06 12:04:42 -0500131};
132
Neale Ranns097fa662018-05-01 05:17:55 -0700133/** \brief An IP route
134 @param table_id The IP table the route is in
135 @param stats_index The index of the route in the stats segment
136 @param prefix the prefix for the route
137 @param n_paths The number of paths the route has
138 @param paths The paths of the route
Dave Barachb5e8a772016-12-06 12:04:42 -0500139*/
Paul Vinciguerrae7174822019-08-07 00:05:59 -0400140typedef ip_route
Neale Ranns097fa662018-05-01 05:17:55 -0700141{
142 u32 table_id;
143 u32 stats_index;
144 vl_api_prefix_t prefix;
145 u8 n_paths;
146 vl_api_fib_path_t paths[n_paths];
147};
148
149/** \brief Add / del route request
150 @param client_index - opaque cookie to identify the sender
151 @param context - sender context, to match reply w/ request
152 @param is_multipath - Set to 1 if these paths will be added/removed
153 to/from the existing set, or 0 to replace
154 the existing set.
155 is_add=0 & is_multipath=0 implies delete all paths
156 @param is_add - Are the paths being added or removed
157*/
158define ip_route_add_del
Dave Barachb5e8a772016-12-06 12:04:42 -0500159{
160 u32 client_index;
161 u32 context;
Jakub Grajciar58989a32019-10-08 14:05:18 +0200162 bool is_add [default=true];
Ole Troan668605f2019-12-09 16:08:27 +0100163 bool is_multipath;
Neale Ranns097fa662018-05-01 05:17:55 -0700164 vl_api_ip_route_t route;
Dave Barachb5e8a772016-12-06 12:04:42 -0500165};
Neale Ranns097fa662018-05-01 05:17:55 -0700166define ip_route_add_del_reply
Dave Barachb5e8a772016-12-06 12:04:42 -0500167{
168 u32 context;
Neale Ranns097fa662018-05-01 05:17:55 -0700169 i32 retval;
Neale Ranns008dbe12018-09-07 09:32:36 -0700170 u32 stats_index;
Neale Ranns097fa662018-05-01 05:17:55 -0700171};
172
173/** \brief Dump IP routes from a table
174 @param client_index - opaque cookie to identify the sender
175 @param table - The table from which to dump routes (ony ID an AF are needed)
176*/
177define ip_route_dump
178{
179 u32 client_index;
180 u32 context;
181 vl_api_ip_table_t table;
182};
183
184/** \brief IP FIB table entry response
185 @param route The route entry in the table
186*/
187manual_endian manual_print define ip_route_details
188{
189 u32 context;
190 vl_api_ip_route_t route;
Dave Barachb5e8a772016-12-06 12:04:42 -0500191};
192
Dave Barachb5e8a772016-12-06 12:04:42 -0500193/** \brief Set the ip flow hash config for a fib request
194 @param client_index - opaque cookie to identify the sender
195 @param context - sender context, to match reply w/ request
196 @param vrf_id - vrf/fib id
197 @param is_ipv6 - if non-zero the fib is ip6, else ip4
198 @param src - if non-zero include src in flow hash
199 @param dst - if non-zero include dst in flow hash
200 @param sport - if non-zero include sport in flow hash
201 @param dport - if non-zero include dport in flow hash
202 @param proto -if non-zero include proto in flow hash
203 @param reverse - if non-zero include reverse in flow hash
Mohsin Kazmi2af0e3a2018-11-20 11:11:12 +0100204 @param symmetric - if non-zero include symmetry in flow hash
Dave Barachb5e8a772016-12-06 12:04:42 -0500205*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400206autoreply define set_ip_flow_hash
Dave Barachb5e8a772016-12-06 12:04:42 -0500207{
208 u32 client_index;
209 u32 context;
210 u32 vrf_id;
Ole Troan668605f2019-12-09 16:08:27 +0100211 bool is_ipv6;
Jakub Grajciar58989a32019-10-08 14:05:18 +0200212 bool src;
213 bool dst;
214 bool sport;
215 bool dport;
216 bool proto;
217 bool reverse;
218 bool symmetric;
Dave Barachb5e8a772016-12-06 12:04:42 -0500219};
220
Dave Barachb5e8a772016-12-06 12:04:42 -0500221/** \brief IPv6 interface enable / disable request
222 @param client_index - opaque cookie to identify the sender
223 @param context - sender context, to match reply w/ request
224 @param sw_if_index - interface used to reach neighbor
225 @param enable - if non-zero enable ip6 on interface, else disable
226*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400227autoreply define sw_interface_ip6_enable_disable
Dave Barachb5e8a772016-12-06 12:04:42 -0500228{
229 u32 client_index;
230 u32 context;
Ole Troan668605f2019-12-09 16:08:27 +0100231 vl_api_interface_index_t sw_if_index;
232 bool enable; /* set to true if enable */
Dave Barachb5e8a772016-12-06 12:04:42 -0500233};
234
Neale Ranns097fa662018-05-01 05:17:55 -0700235/** \brief Dump IP multicast fib table
236 @param client_index - opaque cookie to identify the sender
237*/
238define ip_mtable_dump
Neale Ranns008dbe12018-09-07 09:32:36 -0700239{
Neale Ranns097fa662018-05-01 05:17:55 -0700240 u32 client_index;
Neale Ranns008dbe12018-09-07 09:32:36 -0700241 u32 context;
Neale Ranns097fa662018-05-01 05:17:55 -0700242};
243define ip_mtable_details
244{
245 u32 client_index;
246 u32 context;
247 vl_api_ip_table_t table;
Neale Ranns008dbe12018-09-07 09:32:36 -0700248};
249
Neale Ranns32e1c012016-11-22 17:07:28 +0000250/** \brief Add / del route request
Ian Wells412ecd32018-10-04 12:31:11 -0700251
252 Adds a route, consisting both of the MFIB entry to match packets
253 (which may already exist) and a path to send those packets down.
254 Routes can be entered repeatedly to add multiple paths. Deletions are
255 per-path.
256
Neale Ranns32e1c012016-11-22 17:07:28 +0000257 @param client_index - opaque cookie to identify the sender
258 @param context - sender context, to match reply w/ request
Ian Wells412ecd32018-10-04 12:31:11 -0700259 @param table_id - fib table /vrf associated with the route
260 @param is_add - true if adding a route; false if deleting one
261 @param is_ipv6 - true iff all the addresses are v6
262 @param entry_flags - see fib_entry_flag_t
263 @param itf_flags - see mfib_entry_flags_t
264 @param next_hop_afi - see dpo_proto_t; the type of destination description
265 @param src_address - the source of the packet
266 @param grp_address - the group the packet is destined to
267 @param nh_address - the nexthop to forward the packet to
268 @param next_hop_sw_if_index - interface to emit packet on
269
270 BIER AFIs use the BIER imposition ID. v4 and v6 AFIs use either the
271 interface or the nexthop address.
272
273 Note that if the route is source-specific (S is supplied, not all 0s),
274 the prefix match is treated as exact (prefixlen /32 or /128).
275
276 FIXME not complete yet
Neale Ranns32e1c012016-11-22 17:07:28 +0000277*/
Neale Ranns097fa662018-05-01 05:17:55 -0700278typedef ip_mroute
279{
280 u32 table_id;
281 u32 entry_flags;
282 u32 rpf_id;
283 vl_api_mprefix_t prefix;
284 u8 n_paths;
285 vl_api_mfib_path_t paths[n_paths];
286};
287
Neale Ranns28c142e2018-09-07 09:37:07 -0700288define ip_mroute_add_del
Neale Ranns32e1c012016-11-22 17:07:28 +0000289{
290 u32 client_index;
291 u32 context;
Jakub Grajciar58989a32019-10-08 14:05:18 +0200292 bool is_add [default=true];
Ole Troan668605f2019-12-09 16:08:27 +0100293 bool is_multipath;
Neale Ranns097fa662018-05-01 05:17:55 -0700294 vl_api_ip_mroute_t route;
Neale Ranns32e1c012016-11-22 17:07:28 +0000295};
Neale Ranns28c142e2018-09-07 09:37:07 -0700296define ip_mroute_add_del_reply
297{
298 u32 context;
299 i32 retval;
300 u32 stats_index;
301};
302
Neale Ranns5a8123b2017-01-26 01:18:23 -0800303/** \brief Dump IP multicast fib table
Neale Ranns097fa662018-05-01 05:17:55 -0700304 @param table - The table from which to dump routes (ony ID an AF are needed)
Neale Ranns5a8123b2017-01-26 01:18:23 -0800305*/
Neale Ranns097fa662018-05-01 05:17:55 -0700306define ip_mroute_dump
Neale Ranns5a8123b2017-01-26 01:18:23 -0800307{
308 u32 client_index;
309 u32 context;
Neale Ranns097fa662018-05-01 05:17:55 -0700310 vl_api_ip_table_t table;
Neale Ranns5a8123b2017-01-26 01:18:23 -0800311};
312
Neale Ranns097fa662018-05-01 05:17:55 -0700313/** \brief IP Multicast Route Details
314 @param route - Details of the route
Neale Ranns5a8123b2017-01-26 01:18:23 -0800315*/
Neale Ranns097fa662018-05-01 05:17:55 -0700316manual_endian manual_print define ip_mroute_details
Neale Ranns5a8123b2017-01-26 01:18:23 -0800317{
318 u32 context;
Neale Ranns097fa662018-05-01 05:17:55 -0700319 vl_api_ip_mroute_t route;
Neale Ranns5a8123b2017-01-26 01:18:23 -0800320};
321
Dave Barachb5e8a772016-12-06 12:04:42 -0500322define ip_address_details
323{
Dave Barachb5e8a772016-12-06 12:04:42 -0500324 u32 context;
Ole Troan668605f2019-12-09 16:08:27 +0100325 vl_api_interface_index_t sw_if_index;
Ole Troan75761b92019-09-11 17:49:08 +0200326 vl_api_address_with_prefix_t prefix;
Dave Barachb5e8a772016-12-06 12:04:42 -0500327};
328
329define ip_address_dump
330{
331 u32 client_index;
332 u32 context;
Ole Troan668605f2019-12-09 16:08:27 +0100333 vl_api_interface_index_t sw_if_index;
334 bool is_ipv6;
Dave Barachb5e8a772016-12-06 12:04:42 -0500335};
336
Neale Ranns9e2f9152018-05-18 02:27:10 -0700337/** \brief IP unnumbered configurations
338 @param sw_if_index The interface that has unnumbered configuration
Paul Vinciguerrac0e94412020-04-28 01:12:04 -0400339 @param ip_sw_if_index The IP interface that it is unnumbered to
Neale Ranns9e2f9152018-05-18 02:27:10 -0700340*/
341define ip_unnumbered_details
342{
Neale Ranns9e2f9152018-05-18 02:27:10 -0700343 u32 context;
Ole Troan668605f2019-12-09 16:08:27 +0100344 vl_api_interface_index_t sw_if_index;
345 vl_api_interface_index_t ip_sw_if_index;
Neale Ranns9e2f9152018-05-18 02:27:10 -0700346};
347
348/** \brief Dump IP unnumbered configurations
349 @param sw_if_index ~0 for all interfaces, else the interface desired
350*/
351define ip_unnumbered_dump
352{
353 u32 client_index;
354 u32 context;
Paul Vinciguerrac0e94412020-04-28 01:12:04 -0400355 vl_api_interface_index_t sw_if_index [default=0xffffffff];
Neale Ranns9e2f9152018-05-18 02:27:10 -0700356};
357
Dave Barachb5e8a772016-12-06 12:04:42 -0500358define ip_details
359{
Dave Barachb5e8a772016-12-06 12:04:42 -0500360 u32 context;
Ole Troan668605f2019-12-09 16:08:27 +0100361 vl_api_interface_index_t sw_if_index;
362 bool is_ipv6;
Dave Barachb5e8a772016-12-06 12:04:42 -0500363};
364
365define ip_dump
366{
367 u32 client_index;
368 u32 context;
Ole Troan668605f2019-12-09 16:08:27 +0100369 bool is_ipv6;
Dave Barachb5e8a772016-12-06 12:04:42 -0500370};
371
Neale Ranns32e1c012016-11-22 17:07:28 +0000372define mfib_signal_dump
373{
374 u32 client_index;
375 u32 context;
376};
377
378define mfib_signal_details
379{
Neale Ranns32e1c012016-11-22 17:07:28 +0000380 u32 context;
Ole Troan668605f2019-12-09 16:08:27 +0100381 vl_api_interface_index_t sw_if_index;
Neale Ranns32e1c012016-11-22 17:07:28 +0000382 u32 table_id;
Neale Ranns097fa662018-05-01 05:17:55 -0700383 vl_api_mprefix_t prefix;
Neale Ranns32e1c012016-11-22 17:07:28 +0000384 u16 ip_packet_len;
385 u8 ip_packet_data[256];
386};
Dave Barachb5e8a772016-12-06 12:04:42 -0500387
Neale Rannsd91c1db2017-07-31 02:30:50 -0700388/** \brief IP punt policer
389 @param client_index - opaque cookie to identify the sender
390 @param context - sender context, to match reply w/ request
391 @param is_add - 1 to add neighbor, 0 to delete
392 @param is_ipv6 - 1 for IPv6 neighbor, 0 for IPv4
393 @param policer_index - Index of policer to use
394*/
395autoreply define ip_punt_police
396{
397 u32 client_index;
398 u32 context;
399 u32 policer_index;
Jakub Grajciar58989a32019-10-08 14:05:18 +0200400 bool is_add [default=true];
Ole Troan668605f2019-12-09 16:08:27 +0100401 bool is_ip6;
Neale Rannsd91c1db2017-07-31 02:30:50 -0700402};
403
Pavel Kotucek609e1212018-11-27 09:59:44 +0100404/** \brief Punt redirect type
Neale Ranns47527b22018-11-16 00:53:53 -0800405 @param rx_sw_if_index - specify the original RX interface of traffic
406 that should be redirected. ~0 means any interface.
Paul Vinciguerrac0e94412020-04-28 01:12:04 -0400407 @param tx_sw_if_index - the TX interface to which traffic should be
Neale Rannsd91c1db2017-07-31 02:30:50 -0700408 redirected.
Pavel Kotucek609e1212018-11-27 09:59:44 +0100409 @param nh - the next-hop to redirect the traffic to.
410 @param is_ipv6 - 1 for IPv6 neighbor, 0 for IPv4
411*/
Paul Vinciguerrae7174822019-08-07 00:05:59 -0400412typedef punt_redirect
Pavel Kotucek609e1212018-11-27 09:59:44 +0100413{
Ole Troan668605f2019-12-09 16:08:27 +0100414 vl_api_interface_index_t rx_sw_if_index;
415 vl_api_interface_index_t tx_sw_if_index;
Pavel Kotucek609e1212018-11-27 09:59:44 +0100416 vl_api_address_t nh;
417};
418
419/** \brief IP punt redirect
420 @param client_index - opaque cookie to identify the sender
421 @param context - sender context, to match reply w/ request
422 @param punt - punt definition
423 @param is_add - 1 to add neighbor, 0 to delete
Neale Rannsd91c1db2017-07-31 02:30:50 -0700424*/
425autoreply define ip_punt_redirect
426{
427 u32 client_index;
428 u32 context;
Pavel Kotucek609e1212018-11-27 09:59:44 +0100429 vl_api_punt_redirect_t punt;
Jakub Grajciar58989a32019-10-08 14:05:18 +0200430 bool is_add [default=true];
Pavel Kotucek609e1212018-11-27 09:59:44 +0100431};
432
433define ip_punt_redirect_dump
434{
435 u32 client_index;
436 u32 context;
Ole Troan668605f2019-12-09 16:08:27 +0100437 vl_api_interface_index_t sw_if_index;
438 bool is_ipv6;
Pavel Kotucek609e1212018-11-27 09:59:44 +0100439};
440
441define ip_punt_redirect_details
442{
443 u32 context;
444 vl_api_punt_redirect_t punt;
Neale Rannsd91c1db2017-07-31 02:30:50 -0700445};
446
Florin Coras595992c2017-11-06 17:17:08 -0800447autoreply define ip_container_proxy_add_del
448{
449 u32 client_index;
450 u32 context;
Neale Ranns37029302018-08-10 05:30:06 -0700451 vl_api_prefix_t pfx;
Ole Troan668605f2019-12-09 16:08:27 +0100452 vl_api_interface_index_t sw_if_index;
Jakub Grajciar58989a32019-10-08 14:05:18 +0200453 bool is_add [default=true];
Florin Coras595992c2017-11-06 17:17:08 -0800454};
455
Matus Fabian75b9f452018-10-02 23:27:21 -0700456define ip_container_proxy_dump
457{
458 u32 client_index;
459 u32 context;
460};
461
462define ip_container_proxy_details
463{
464 u32 context;
Ole Troan668605f2019-12-09 16:08:27 +0100465 vl_api_interface_index_t sw_if_index;
Matus Fabian75b9f452018-10-02 23:27:21 -0700466 vl_api_prefix_t prefix;
467};
468
Neale Rannsb8d44812017-11-10 06:53:54 -0800469/** \brief Configure IP source and L4 port-range check
470 @param client_index - opaque cookie to identify the sender
471 @param context - sender context, to match reply w/ request
472 @param is_ip6 - 1 if source address type is IPv6
473 @param is_add - 1 if add, 0 if delete
Neale Ranns37029302018-08-10 05:30:06 -0700474 @param ip - prefix to match
Neale Rannsb8d44812017-11-10 06:53:54 -0800475 @param number_of_ranges - length of low_port and high_port arrays (must match)
476 @param low_ports[32] - up to 32 low end of port range entries (must have corresponding high_ports entry)
477 @param high_ports[32] - up to 32 high end of port range entries (must have corresponding low_ports entry)
478 @param vrf_id - fib table/vrf id to associate the source and port-range check with
479 @note To specify a single port set low_port and high_port entry the same
480*/
481autoreply define ip_source_and_port_range_check_add_del
482{
483 u32 client_index;
484 u32 context;
Jakub Grajciar58989a32019-10-08 14:05:18 +0200485 bool is_add [default=true];
Neale Ranns37029302018-08-10 05:30:06 -0700486 vl_api_prefix_t prefix;
Neale Rannsb8d44812017-11-10 06:53:54 -0800487 u8 number_of_ranges;
488 u16 low_ports[32];
489 u16 high_ports[32];
490 u32 vrf_id;
491};
492
493/** \brief Set interface source and L4 port-range request
494 @param client_index - opaque cookie to identify the sender
495 @param context - sender context, to match reply w/ request
496 @param interface_id - interface index
497 @param tcp_vrf_id - VRF associated with source and TCP port-range check
498 @param udp_vrf_id - VRF associated with source and TCP port-range check
499*/
500autoreply define ip_source_and_port_range_check_interface_add_del
501{
502 u32 client_index;
503 u32 context;
Jakub Grajciar58989a32019-10-08 14:05:18 +0200504 bool is_add [default=true];
Ole Troan668605f2019-12-09 16:08:27 +0100505 vl_api_interface_index_t sw_if_index;
Neale Rannsb8d44812017-11-10 06:53:54 -0800506 u32 tcp_in_vrf_id;
507 u32 tcp_out_vrf_id;
508 u32 udp_in_vrf_id;
509 u32 udp_out_vrf_id;
510};
511
Neale Rannscbe25aa2019-09-30 10:53:31 +0000512/** \brief IPv6 set link local address on interface request
John Lo7f358b32018-04-28 01:19:24 -0400513 @param client_index - opaque cookie to identify the sender
514 @param context - sender context, to match reply w/ request
Neale Rannscbe25aa2019-09-30 10:53:31 +0000515 @param sw_if_index - interface to set link local on
516 @param ip - the new link local address
John Lo7f358b32018-04-28 01:19:24 -0400517*/
Neale Rannscbe25aa2019-09-30 10:53:31 +0000518autoreply define sw_interface_ip6_set_link_local_address
Neale Rannsb8d44812017-11-10 06:53:54 -0800519{
520 u32 client_index;
521 u32 context;
Ole Troan668605f2019-12-09 16:08:27 +0100522 vl_api_interface_index_t sw_if_index;
Neale Rannscbe25aa2019-09-30 10:53:31 +0000523 vl_api_ip6_address_t ip;
Neale Rannsb8d44812017-11-10 06:53:54 -0800524};
525
526/** \brief IOAM enable : Enable in-band OAM
527 @param id - profile id
528 @param seqno - To enable Seqno Processing
Jakub Grajciar58989a32019-10-08 14:05:18 +0200529 @param analyse - Enabling analysis of iOAM at decap node
530 @param pow_enable - Proof of Work enabled or not flag
Neale Rannsb8d44812017-11-10 06:53:54 -0800531 @param trace_enable - iOAM Trace enabled or not flag
532*/
533autoreply define ioam_enable
534{
535 u32 client_index;
536 u32 context;
537 u16 id;
Jakub Grajciar58989a32019-10-08 14:05:18 +0200538 bool seqno;
539 bool analyse;
540 bool pot_enable;
541 bool trace_enable;
Neale Rannsb8d44812017-11-10 06:53:54 -0800542 u32 node_id;
543};
544
545/** \brief iOAM disable
546 @param client_index - opaque cookie to identify the sender
547 @param context - sender context, to match reply w/ request
548 @param index - MAP Domain index
549*/
550autoreply define ioam_disable
551{
552 u32 client_index;
553 u32 context;
554 u16 id;
555};
556
Klement Sekerade34c352019-06-25 11:19:22 +0000557enum ip_reass_type
558{
559 IP_REASS_TYPE_FULL = 0,
560 IP_REASS_TYPE_SHALLOW_VIRTUAL = 0x1,
561};
562
Klement Sekera75e7d132017-09-20 08:26:30 +0200563autoreply define ip_reassembly_set
564{
565 u32 client_index;
566 u32 context;
567 u32 timeout_ms;
568 u32 max_reassemblies;
Klement Sekera3a343d42019-05-16 14:35:46 +0200569 u32 max_reassembly_length;
Klement Sekera75e7d132017-09-20 08:26:30 +0200570 u32 expire_walk_interval_ms;
Ole Troan668605f2019-12-09 16:08:27 +0100571 bool is_ip6;
Klement Sekerade34c352019-06-25 11:19:22 +0000572 vl_api_ip_reass_type_t type;
Klement Sekera75e7d132017-09-20 08:26:30 +0200573};
574
575define ip_reassembly_get
576{
577 u32 client_index;
578 u32 context;
Ole Troan668605f2019-12-09 16:08:27 +0100579 bool is_ip6;
Klement Sekerade34c352019-06-25 11:19:22 +0000580 vl_api_ip_reass_type_t type;
Klement Sekera75e7d132017-09-20 08:26:30 +0200581};
582
583define ip_reassembly_get_reply
584{
Klement Sekera75e7d132017-09-20 08:26:30 +0200585 u32 context;
586 i32 retval;
587 u32 timeout_ms;
588 u32 max_reassemblies;
Klement Sekera3a343d42019-05-16 14:35:46 +0200589 u32 max_reassembly_length;
Klement Sekera75e7d132017-09-20 08:26:30 +0200590 u32 expire_walk_interval_ms;
Ole Troan668605f2019-12-09 16:08:27 +0100591 bool is_ip6;
Klement Sekera75e7d132017-09-20 08:26:30 +0200592};
593
Klement Sekera4c533132018-02-22 11:41:12 +0100594/** \brief Enable/disable reassembly feature
595 @param client_index - opaque cookie to identify the sender
596 @param context - sender context, to match reply w/ request
597 @param sw_if_index - interface to enable/disable feature on
598 @param enable_ip4 - enable ip4 reassembly if non-zero, disable if 0
599 @param enable_ip6 - enable ip6 reassembly if non-zero, disable if 0
600*/
601autoreply define ip_reassembly_enable_disable
602{
603 u32 client_index;
604 u32 context;
Ole Troan668605f2019-12-09 16:08:27 +0100605 vl_api_interface_index_t sw_if_index;
606 bool enable_ip4;
607 bool enable_ip6;
Klement Sekerade34c352019-06-25 11:19:22 +0000608 vl_api_ip_reass_type_t type;
Klement Sekera4c533132018-02-22 11:41:12 +0100609};
610
Dave Barachb5e8a772016-12-06 12:04:42 -0500611/*
612 * Local Variables:
613 * eval: (c-set-style "gnu")
614 * End:
615 */