Neale Ranns | 008dbe1 | 2018-09-07 09:32:36 -0700 | [diff] [blame] | 1 | /* Hey Emacs use -*- mode: C -*- */ |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 2 | /* |
Neale Ranns | 008dbe1 | 2018-09-07 09:32:36 -0700 | [diff] [blame] | 3 | * Copyright (c) 2018 Cisco and/or its affiliates. |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at: |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | /** \file |
| 18 | |
| 19 | This file defines vpp IP control-plane API messages which are generally |
| 20 | called through a shared memory interface. |
| 21 | */ |
| 22 | |
Marek Gradzki | 7eaaf74 | 2018-05-25 15:50:05 +0200 | [diff] [blame] | 23 | option version = "1.3.0"; |
Neale Ranns | 947ea62 | 2018-06-07 23:48:20 -0700 | [diff] [blame] | 24 | import "vnet/ip/ip_types.api"; |
Neale Ranns | 31ed744 | 2018-02-23 05:29:09 -0800 | [diff] [blame] | 25 | import "vnet/fib/fib_types.api"; |
Neale Ranns | de5b08f | 2018-08-29 06:37:18 -0700 | [diff] [blame] | 26 | import "vnet/ethernet/ethernet_types.api"; |
Dave Barach | 0d056e5 | 2017-09-28 15:11:16 -0400 | [diff] [blame] | 27 | |
Neale Ranns | 28ab9cc | 2017-08-14 07:18:42 -0700 | [diff] [blame] | 28 | /** \brief Add / del table request |
| 29 | A table can be added multiple times, but need be deleted only once. |
| 30 | @param client_index - opaque cookie to identify the sender |
| 31 | @param context - sender context, to match reply w/ request |
| 32 | @param is_ipv6 - V4 or V6 table |
| 33 | @param table_id - table ID associated with the route |
| 34 | This table ID will apply to both the unicats |
| 35 | and mlticast FIBs |
Neale Ranns | 2297af0 | 2017-09-12 09:45:04 -0700 | [diff] [blame] | 36 | @param name - A client provided name/tag for the table. If this is |
| 37 | not set by the client, then VPP will generate something |
| 38 | meaningfull. |
Neale Ranns | 28ab9cc | 2017-08-14 07:18:42 -0700 | [diff] [blame] | 39 | */ |
| 40 | autoreply define ip_table_add_del |
| 41 | { |
| 42 | u32 client_index; |
| 43 | u32 context; |
| 44 | u32 table_id; |
| 45 | u8 is_ipv6; |
| 46 | u8 is_add; |
Neale Ranns | 2297af0 | 2017-09-12 09:45:04 -0700 | [diff] [blame] | 47 | u8 name[64]; |
Neale Ranns | 28ab9cc | 2017-08-14 07:18:42 -0700 | [diff] [blame] | 48 | }; |
| 49 | |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 50 | /** \brief Dump IP fib table |
| 51 | @param client_index - opaque cookie to identify the sender |
| 52 | */ |
| 53 | define ip_fib_dump |
| 54 | { |
| 55 | u32 client_index; |
| 56 | u32 context; |
| 57 | }; |
| 58 | |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 59 | /** \brief IP FIB table response |
| 60 | @param table_id - IP fib table id |
| 61 | @address_length - mask length |
| 62 | @address - ip4 prefix |
| 63 | @param count - the number of fib_path in path |
| 64 | @param path - array of of fib_path structures |
| 65 | */ |
| 66 | manual_endian manual_print define ip_fib_details |
| 67 | { |
| 68 | u32 context; |
| 69 | u32 table_id; |
Neale Ranns | 2297af0 | 2017-09-12 09:45:04 -0700 | [diff] [blame] | 70 | u8 table_name[64]; |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 71 | u8 address_length; |
| 72 | u8 address[4]; |
| 73 | u32 count; |
Neale Ranns | 008dbe1 | 2018-09-07 09:32:36 -0700 | [diff] [blame] | 74 | u32 stats_index; |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 75 | vl_api_fib_path_t path[count]; |
| 76 | }; |
| 77 | |
| 78 | /** \brief Dump IP6 fib table |
| 79 | @param client_index - opaque cookie to identify the sender |
| 80 | */ |
| 81 | define ip6_fib_dump |
| 82 | { |
| 83 | u32 client_index; |
| 84 | u32 context; |
| 85 | }; |
| 86 | |
Neale Ranns | 2297af0 | 2017-09-12 09:45:04 -0700 | [diff] [blame] | 87 | /** \brief IP6 FIB table entry response |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 88 | @param table_id - IP6 fib table id |
Neale Ranns | 2297af0 | 2017-09-12 09:45:04 -0700 | [diff] [blame] | 89 | @param address_length - mask length |
| 90 | @param address - ip6 prefix |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 91 | @param count - the number of fib_path in path |
| 92 | @param path - array of of fib_path structures |
| 93 | */ |
| 94 | manual_endian manual_print define ip6_fib_details |
| 95 | { |
| 96 | u32 context; |
| 97 | u32 table_id; |
Neale Ranns | 2297af0 | 2017-09-12 09:45:04 -0700 | [diff] [blame] | 98 | u8 table_name[64]; |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 99 | u8 address_length; |
| 100 | u8 address[16]; |
| 101 | u32 count; |
Neale Ranns | 008dbe1 | 2018-09-07 09:32:36 -0700 | [diff] [blame] | 102 | u32 stats_index; |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 103 | vl_api_fib_path_t path[count]; |
| 104 | }; |
| 105 | |
| 106 | /** \brief Dump IP neighboors |
| 107 | @param client_index - opaque cookie to identify the sender |
| 108 | @param context - sender context, to match reply w/ request |
Jon Loeliger | af8dfbf | 2017-11-08 13:07:39 -0600 | [diff] [blame] | 109 | @param sw_if_index - the interface to dump neighboors, ~0 == all |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 110 | @param is_ipv6 - [1|0] to indicate if address family is ipv[6|4] |
| 111 | */ |
| 112 | define ip_neighbor_dump |
| 113 | { |
| 114 | u32 client_index; |
| 115 | u32 context; |
| 116 | u32 sw_if_index; |
| 117 | u8 is_ipv6; |
| 118 | }; |
| 119 | |
| 120 | /** \brief IP neighboors dump response |
| 121 | @param context - sender context which was passed in the request |
Jon Loeliger | af8dfbf | 2017-11-08 13:07:39 -0600 | [diff] [blame] | 122 | @param sw_if_index - The interface used to reach the neighbor |
Neale Ranns | 1426039 | 2018-09-28 05:00:57 -0700 | [diff] [blame] | 123 | @param stats_index - An index in the stats segment that can be used to read |
| 124 | the counters for this neighbour. |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 125 | @param is_static - [1|0] to indicate if neighbor is statically configured |
| 126 | @param is_ipv6 - [1|0] to indicate if address family is ipv[6|4] |
| 127 | */ |
| 128 | define ip_neighbor_details { |
| 129 | u32 context; |
Jon Loeliger | af8dfbf | 2017-11-08 13:07:39 -0600 | [diff] [blame] | 130 | u32 sw_if_index; |
Neale Ranns | 1426039 | 2018-09-28 05:00:57 -0700 | [diff] [blame] | 131 | u32 stats_index; |
Pavel Kotucek | 8cb07c9 | 2017-01-11 10:13:54 +0100 | [diff] [blame] | 132 | u8 is_static; |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 133 | u8 is_ipv6; |
| 134 | u8 mac_address[6]; |
| 135 | u8 ip_address[16]; |
| 136 | }; |
| 137 | |
| 138 | /** \brief IP neighbor add / del request |
| 139 | @param client_index - opaque cookie to identify the sender |
| 140 | @param context - sender context, to match reply w/ request |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 141 | @param sw_if_index - interface used to reach neighbor |
| 142 | @param is_add - 1 to add neighbor, 0 to delete |
| 143 | @param is_ipv6 - 1 for IPv6 neighbor, 0 for IPv4 |
Neale Ranns | 239d3fe | 2017-03-08 08:56:58 -0800 | [diff] [blame] | 144 | @param is_ipv6 - 1 for IPv6 neighbor, 0 for IPv4 |
| 145 | @param is_static - A static neighbor Entry - there are not flushed |
| 146 | If the interface goes down. |
| 147 | @param is_no_adj_fib - Do not create a corresponding entry in the FIB |
| 148 | table for the neighbor. |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 149 | @param mac_address - l2 address of the neighbor |
| 150 | @param dst_address - ip4 or ip6 address of the neighbor |
| 151 | */ |
Neale Ranns | 1426039 | 2018-09-28 05:00:57 -0700 | [diff] [blame] | 152 | define ip_neighbor_add_del |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 153 | { |
| 154 | u32 client_index; |
| 155 | u32 context; |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 156 | u32 sw_if_index; |
| 157 | /* 1 = add, 0 = delete */ |
| 158 | u8 is_add; |
| 159 | u8 is_ipv6; |
| 160 | u8 is_static; |
Neale Ranns | 239d3fe | 2017-03-08 08:56:58 -0800 | [diff] [blame] | 161 | u8 is_no_adj_fib; |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 162 | u8 mac_address[6]; |
| 163 | u8 dst_address[16]; |
| 164 | }; |
| 165 | |
Neale Ranns | 1426039 | 2018-09-28 05:00:57 -0700 | [diff] [blame] | 166 | define ip_neighbor_add_del_reply |
| 167 | { |
| 168 | u32 context; |
| 169 | i32 retval; |
| 170 | u32 stats_index; |
| 171 | }; |
| 172 | |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 173 | /** \brief Set the ip flow hash config for a fib request |
| 174 | @param client_index - opaque cookie to identify the sender |
| 175 | @param context - sender context, to match reply w/ request |
| 176 | @param vrf_id - vrf/fib id |
| 177 | @param is_ipv6 - if non-zero the fib is ip6, else ip4 |
| 178 | @param src - if non-zero include src in flow hash |
| 179 | @param dst - if non-zero include dst in flow hash |
| 180 | @param sport - if non-zero include sport in flow hash |
| 181 | @param dport - if non-zero include dport in flow hash |
| 182 | @param proto -if non-zero include proto in flow hash |
| 183 | @param reverse - if non-zero include reverse in flow hash |
| 184 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 185 | autoreply define set_ip_flow_hash |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 186 | { |
| 187 | u32 client_index; |
| 188 | u32 context; |
| 189 | u32 vrf_id; |
| 190 | u8 is_ipv6; |
| 191 | u8 src; |
| 192 | u8 dst; |
| 193 | u8 sport; |
| 194 | u8 dport; |
| 195 | u8 proto; |
| 196 | u8 reverse; |
| 197 | }; |
| 198 | |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 199 | /** \brief IPv6 router advertisement config request |
| 200 | @param client_index - opaque cookie to identify the sender |
| 201 | @param context - sender context, to match reply w/ request |
| 202 | @param suppress - |
| 203 | @param managed - |
| 204 | @param other - |
| 205 | @param ll_option - |
| 206 | @param send_unicast - |
| 207 | @param cease - |
| 208 | @param is_no - |
| 209 | @param default_router - |
| 210 | @param max_interval - |
| 211 | @param min_interval - |
| 212 | @param lifetime - |
| 213 | @param initial_count - |
| 214 | @param initial_interval - |
| 215 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 216 | autoreply define sw_interface_ip6nd_ra_config |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 217 | { |
| 218 | u32 client_index; |
| 219 | u32 context; |
| 220 | u32 sw_if_index; |
| 221 | u8 suppress; |
| 222 | u8 managed; |
| 223 | u8 other; |
| 224 | u8 ll_option; |
| 225 | u8 send_unicast; |
| 226 | u8 cease; |
| 227 | u8 is_no; |
| 228 | u8 default_router; |
| 229 | u32 max_interval; |
| 230 | u32 min_interval; |
| 231 | u32 lifetime; |
| 232 | u32 initial_count; |
| 233 | u32 initial_interval; |
| 234 | }; |
| 235 | |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 236 | /** \brief IPv6 router advertisement prefix config request |
| 237 | @param client_index - opaque cookie to identify the sender |
| 238 | @param context - sender context, to match reply w/ request |
Neale Ranns | 87df12d | 2017-02-18 08:16:41 -0800 | [diff] [blame] | 239 | @param sw_if_index - The interface the RA prefix information is for |
| 240 | @param address[] - The prefix to advertise |
| 241 | @param address_length - the prefix length |
| 242 | @param use_default - Revert to default settings |
| 243 | @param no_advertise - Do not advertise this prefix |
| 244 | @param off_link - The prefix is off link (it is not configured on the interface) |
| 245 | Configures the L-flag, When set, indicates that this |
| 246 | prefix can be used for on-link determination. |
| 247 | @param no_autoconfig - Setting for the A-flag. When |
| 248 | set indicates that this prefix can be used for |
| 249 | stateless address configuration. |
| 250 | @param no_onlink - The prefix is not on link. Make sure this is consistent |
| 251 | with the off_link parameter else YMMV |
| 252 | @param is_no - add/delete |
| 253 | @param val_lifetime - The length of time in |
| 254 | seconds (relative to the time the packet is sent) |
| 255 | that the prefix is valid for the purpose of on-link |
| 256 | determination. A value of all one bits |
| 257 | (0xffffffff) represents infinity |
| 258 | @param pref_lifetime - The length of time in |
| 259 | seconds (relative to the time the packet is sent) |
| 260 | that addresses generated from the prefix via |
| 261 | stateless address autoconfiguration remain |
| 262 | preferred [ADDRCONF]. A value of all one bits |
| 263 | (0xffffffff) represents infinity. |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 264 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 265 | autoreply define sw_interface_ip6nd_ra_prefix |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 266 | { |
| 267 | u32 client_index; |
| 268 | u32 context; |
| 269 | u32 sw_if_index; |
| 270 | u8 address[16]; |
| 271 | u8 address_length; |
| 272 | u8 use_default; |
| 273 | u8 no_advertise; |
| 274 | u8 off_link; |
| 275 | u8 no_autoconfig; |
| 276 | u8 no_onlink; |
| 277 | u8 is_no; |
| 278 | u32 val_lifetime; |
| 279 | u32 pref_lifetime; |
| 280 | }; |
| 281 | |
Neale Ranns | 3f844d0 | 2017-02-18 00:03:54 -0800 | [diff] [blame] | 282 | /** \brief IPv6 ND proxy config |
| 283 | @param client_index - opaque cookie to identify the sender |
| 284 | @param context - sender context, to match reply w/ request |
| 285 | @param sw_if_index - The interface the host is on |
| 286 | @param address - The address of the host for which to proxy for |
| 287 | @param is_add - Adding or deleting |
| 288 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 289 | autoreply define ip6nd_proxy_add_del |
Neale Ranns | 3f844d0 | 2017-02-18 00:03:54 -0800 | [diff] [blame] | 290 | { |
| 291 | u32 client_index; |
| 292 | u32 context; |
| 293 | u32 sw_if_index; |
| 294 | u8 is_del; |
| 295 | u8 address[16]; |
| 296 | }; |
| 297 | |
Neale Ranns | 3f844d0 | 2017-02-18 00:03:54 -0800 | [diff] [blame] | 298 | /** \brief IPv6 ND proxy details returned after request |
| 299 | @param context - sender context, to match reply w/ request |
| 300 | @param retval - return code for the request |
| 301 | */ |
| 302 | define ip6nd_proxy_details |
| 303 | { |
Neale Ranns | 3f844d0 | 2017-02-18 00:03:54 -0800 | [diff] [blame] | 304 | u32 context; |
| 305 | u32 sw_if_index; |
| 306 | u8 address[16]; |
| 307 | }; |
| 308 | |
| 309 | /** \brief IPv6 ND proxy dump request |
| 310 | @param context - sender context, to match reply w/ request |
| 311 | @param retval - return code for the request |
| 312 | @param sw_if_index - The interface the host is on |
| 313 | @param address - The address of the host for which to proxy for |
| 314 | */ |
| 315 | define ip6nd_proxy_dump |
| 316 | { |
| 317 | u32 client_index; |
| 318 | u32 context; |
| 319 | }; |
| 320 | |
Juraj Sloboda | 4b9669d | 2018-01-15 10:39:21 +0100 | [diff] [blame] | 321 | /** \brief Start / stop sending router solicitation |
| 322 | @param client_index - opaque cookie to identify the sender |
| 323 | @param context - sender context, to match reply w/ request |
| 324 | @param irt - initial retransmission time |
| 325 | @param mrt - maximum retransmission time |
| 326 | @param mrc - maximum retransmission count |
| 327 | @param mrd - maximum retransmission duration |
| 328 | @param sw_if_index - software interface index of interface |
| 329 | for sending router solicitation |
| 330 | @param stop - if non-zero then stop sending router solicitation, |
| 331 | otherwise start sending router solicitation |
| 332 | */ |
| 333 | autoreply define ip6nd_send_router_solicitation |
| 334 | { |
| 335 | u32 client_index; |
| 336 | u32 context; |
| 337 | u32 irt; |
| 338 | u32 mrt; |
| 339 | u32 mrc; |
| 340 | u32 mrd; |
| 341 | u32 sw_if_index; |
| 342 | u8 stop; |
| 343 | }; |
| 344 | |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 345 | /** \brief IPv6 interface enable / disable 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 used to reach neighbor |
| 349 | @param enable - if non-zero enable ip6 on interface, else disable |
| 350 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 351 | autoreply define sw_interface_ip6_enable_disable |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 352 | { |
| 353 | u32 client_index; |
| 354 | u32 context; |
| 355 | u32 sw_if_index; |
| 356 | u8 enable; /* set to true if enable */ |
| 357 | }; |
| 358 | |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 359 | /** \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 Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 366 | @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 Ranns | 810086d | 2017-11-05 16:26:46 -0800 | [diff] [blame] | 371 | @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 Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 373 | @param is_classify - |
| 374 | @param is_multipath - Set to 1 if this is a multipath route, else 0 |
Neale Ranns | f068c3e | 2018-01-03 04:18:48 -0800 | [diff] [blame] | 375 | @param is_dvr - Does the route resolve via a DVR interface. |
Neale Ranns | 054c03a | 2017-10-13 05:15:07 -0700 | [diff] [blame] | 376 | @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 Ranns | 810086d | 2017-11-05 16:26:46 -0800 | [diff] [blame] | 379 | @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 Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 384 | @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 | */ |
Neale Ranns | 008dbe1 | 2018-09-07 09:32:36 -0700 | [diff] [blame] | 391 | define ip_add_del_route |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 392 | { |
| 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 Ranns | 810086d | 2017-11-05 16:26:46 -0800 | [diff] [blame] | 399 | u32 next_hop_id; |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 400 | 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 Ranns | f068c3e | 2018-01-03 04:18:48 -0800 | [diff] [blame] | 410 | u8 is_dvr; |
Neale Ranns | 054c03a | 2017-10-13 05:15:07 -0700 | [diff] [blame] | 411 | u8 is_source_lookup; |
Neale Ranns | 810086d | 2017-11-05 16:26:46 -0800 | [diff] [blame] | 412 | u8 is_udp_encap; |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 413 | u8 next_hop_weight; |
Neale Ranns | 57b5860 | 2017-07-15 07:37:25 -0700 | [diff] [blame] | 414 | u8 next_hop_preference; |
Neale Ranns | 810086d | 2017-11-05 16:26:46 -0800 | [diff] [blame] | 415 | u8 next_hop_proto; |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 416 | 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 Ranns | 31ed744 | 2018-02-23 05:29:09 -0800 | [diff] [blame] | 421 | vl_api_fib_mpls_label_t next_hop_out_label_stack[next_hop_n_out_labels]; |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 422 | }; |
| 423 | |
Neale Ranns | 008dbe1 | 2018-09-07 09:32:36 -0700 | [diff] [blame] | 424 | define ip_add_del_route_reply |
| 425 | { |
| 426 | u32 context; |
| 427 | i32 retval; |
| 428 | u32 stats_index; |
| 429 | }; |
| 430 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 431 | /** \brief Add / del route request |
Ian Wells | 412ecd3 | 2018-10-04 12:31:11 -0700 | [diff] [blame] | 432 | |
| 433 | Adds a route, consisting both of the MFIB entry to match packets |
| 434 | (which may already exist) and a path to send those packets down. |
| 435 | Routes can be entered repeatedly to add multiple paths. Deletions are |
| 436 | per-path. |
| 437 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 438 | @param client_index - opaque cookie to identify the sender |
| 439 | @param context - sender context, to match reply w/ request |
Ian Wells | 412ecd3 | 2018-10-04 12:31:11 -0700 | [diff] [blame] | 440 | @param table_id - fib table /vrf associated with the route |
| 441 | @param is_add - true if adding a route; false if deleting one |
| 442 | @param is_ipv6 - true iff all the addresses are v6 |
| 443 | @param entry_flags - see fib_entry_flag_t |
| 444 | @param itf_flags - see mfib_entry_flags_t |
| 445 | @param next_hop_afi - see dpo_proto_t; the type of destination description |
| 446 | @param src_address - the source of the packet |
| 447 | @param grp_address - the group the packet is destined to |
| 448 | @param nh_address - the nexthop to forward the packet to |
| 449 | @param next_hop_sw_if_index - interface to emit packet on |
| 450 | |
| 451 | BIER AFIs use the BIER imposition ID. v4 and v6 AFIs use either the |
| 452 | interface or the nexthop address. |
| 453 | |
| 454 | Note that if the route is source-specific (S is supplied, not all 0s), |
| 455 | the prefix match is treated as exact (prefixlen /32 or /128). |
| 456 | |
| 457 | FIXME not complete yet |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 458 | */ |
Neale Ranns | 28c142e | 2018-09-07 09:37:07 -0700 | [diff] [blame] | 459 | define ip_mroute_add_del |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 460 | { |
| 461 | u32 client_index; |
| 462 | u32 context; |
| 463 | u32 next_hop_sw_if_index; |
| 464 | u32 table_id; |
| 465 | u32 entry_flags; |
| 466 | u32 itf_flags; |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 467 | u32 rpf_id; |
Neale Ranns | d792d9c | 2017-10-21 10:53:20 -0700 | [diff] [blame] | 468 | u32 bier_imp; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 469 | u16 grp_address_length; |
Neale Ranns | d792d9c | 2017-10-21 10:53:20 -0700 | [diff] [blame] | 470 | u8 next_hop_afi; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 471 | u8 is_add; |
| 472 | u8 is_ipv6; |
| 473 | u8 is_local; |
| 474 | u8 grp_address[16]; |
| 475 | u8 src_address[16]; |
Neale Ranns | e821ab1 | 2017-06-01 07:45:05 -0700 | [diff] [blame] | 476 | u8 nh_address[16]; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 477 | }; |
| 478 | |
Neale Ranns | 28c142e | 2018-09-07 09:37:07 -0700 | [diff] [blame] | 479 | define ip_mroute_add_del_reply |
| 480 | { |
| 481 | u32 context; |
| 482 | i32 retval; |
| 483 | u32 stats_index; |
| 484 | }; |
| 485 | |
Neale Ranns | 5a8123b | 2017-01-26 01:18:23 -0800 | [diff] [blame] | 486 | /** \brief Dump IP multicast fib table |
| 487 | @param client_index - opaque cookie to identify the sender |
| 488 | */ |
| 489 | define ip_mfib_dump |
| 490 | { |
| 491 | u32 client_index; |
| 492 | u32 context; |
| 493 | }; |
| 494 | |
| 495 | /** \brief IP Multicast FIB table response |
| 496 | @param table_id - IP fib table id |
| 497 | @address_length - mask length |
| 498 | @grp_address - Group address/prefix |
| 499 | @src_address - Source address |
| 500 | @param count - the number of fib_path in path |
| 501 | @param path - array of of fib_path structures |
| 502 | */ |
| 503 | manual_endian manual_print define ip_mfib_details |
| 504 | { |
| 505 | u32 context; |
| 506 | u32 table_id; |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 507 | u32 entry_flags; |
| 508 | u32 rpf_id; |
Neale Ranns | 5a8123b | 2017-01-26 01:18:23 -0800 | [diff] [blame] | 509 | u8 address_length; |
| 510 | u8 grp_address[4]; |
| 511 | u8 src_address[4]; |
| 512 | u32 count; |
Neale Ranns | 28c142e | 2018-09-07 09:37:07 -0700 | [diff] [blame] | 513 | u32 stats_index; |
Neale Ranns | 5a8123b | 2017-01-26 01:18:23 -0800 | [diff] [blame] | 514 | vl_api_fib_path_t path[count]; |
| 515 | }; |
| 516 | |
| 517 | /** \brief Dump IP6 multicast fib table |
| 518 | @param client_index - opaque cookie to identify the sender |
| 519 | */ |
| 520 | define ip6_mfib_dump |
| 521 | { |
| 522 | u32 client_index; |
| 523 | u32 context; |
| 524 | }; |
| 525 | |
| 526 | /** \brief IP6 Multicast FIB table response |
| 527 | @param table_id - IP fib table id |
| 528 | @address_length - mask length |
| 529 | @grp_address - Group address/prefix |
| 530 | @src_address - Source address |
| 531 | @param count - the number of fib_path in path |
| 532 | @param path - array of of fib_path structures |
| 533 | */ |
| 534 | manual_endian manual_print define ip6_mfib_details |
| 535 | { |
| 536 | u32 context; |
| 537 | u32 table_id; |
| 538 | u8 address_length; |
| 539 | u8 grp_address[16]; |
| 540 | u8 src_address[16]; |
| 541 | u32 count; |
| 542 | vl_api_fib_path_t path[count]; |
| 543 | }; |
| 544 | |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 545 | define ip_address_details |
| 546 | { |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 547 | u32 context; |
| 548 | u8 ip[16]; |
| 549 | u8 prefix_length; |
Jon Loeliger | 466f0d4 | 2017-02-09 12:17:50 -0600 | [diff] [blame] | 550 | u32 sw_if_index; |
| 551 | u8 is_ipv6; |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 552 | }; |
| 553 | |
| 554 | define ip_address_dump |
| 555 | { |
| 556 | u32 client_index; |
| 557 | u32 context; |
| 558 | u32 sw_if_index; |
| 559 | u8 is_ipv6; |
| 560 | }; |
| 561 | |
Neale Ranns | 9e2f915 | 2018-05-18 02:27:10 -0700 | [diff] [blame] | 562 | /** \brief IP unnumbered configurations |
| 563 | @param sw_if_index The interface that has unnumbered configuration |
| 564 | @param ip_sw_if_index The IP interface that it is unnnumbered to |
| 565 | */ |
| 566 | define ip_unnumbered_details |
| 567 | { |
Neale Ranns | 9e2f915 | 2018-05-18 02:27:10 -0700 | [diff] [blame] | 568 | u32 context; |
| 569 | u32 sw_if_index; |
| 570 | u32 ip_sw_if_index; |
| 571 | }; |
| 572 | |
| 573 | /** \brief Dump IP unnumbered configurations |
| 574 | @param sw_if_index ~0 for all interfaces, else the interface desired |
| 575 | */ |
| 576 | define ip_unnumbered_dump |
| 577 | { |
| 578 | u32 client_index; |
| 579 | u32 context; |
| 580 | u32 sw_if_index; |
| 581 | }; |
| 582 | |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 583 | define ip_details |
| 584 | { |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 585 | u32 context; |
Ondrej Fabry | b11f903 | 2018-08-14 12:39:40 +0200 | [diff] [blame] | 586 | u32 sw_if_index; |
Jon Loeliger | 466f0d4 | 2017-02-09 12:17:50 -0600 | [diff] [blame] | 587 | u8 is_ipv6; |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 588 | }; |
| 589 | |
| 590 | define ip_dump |
| 591 | { |
| 592 | u32 client_index; |
| 593 | u32 context; |
| 594 | u8 is_ipv6; |
| 595 | }; |
| 596 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 597 | define mfib_signal_dump |
| 598 | { |
| 599 | u32 client_index; |
| 600 | u32 context; |
| 601 | }; |
| 602 | |
| 603 | define mfib_signal_details |
| 604 | { |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 605 | u32 context; |
| 606 | u32 sw_if_index; |
| 607 | u32 table_id; |
| 608 | u16 grp_address_len; |
| 609 | u8 grp_address[16]; |
| 610 | u8 src_address[16]; |
| 611 | u16 ip_packet_len; |
| 612 | u8 ip_packet_data[256]; |
| 613 | }; |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 614 | |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 615 | /** \brief IP punt policer |
| 616 | @param client_index - opaque cookie to identify the sender |
| 617 | @param context - sender context, to match reply w/ request |
| 618 | @param is_add - 1 to add neighbor, 0 to delete |
| 619 | @param is_ipv6 - 1 for IPv6 neighbor, 0 for IPv4 |
| 620 | @param policer_index - Index of policer to use |
| 621 | */ |
| 622 | autoreply define ip_punt_police |
| 623 | { |
| 624 | u32 client_index; |
| 625 | u32 context; |
| 626 | u32 policer_index; |
| 627 | u8 is_add; |
| 628 | u8 is_ip6; |
| 629 | }; |
| 630 | |
| 631 | /** \brief IP punt redirect |
| 632 | @param client_index - opaque cookie to identify the sender |
| 633 | @param context - sender context, to match reply w/ request |
| 634 | @param is_add - 1 to add neighbor, 0 to delete |
| 635 | @param is_ipv6 - 1 for IPv6 neighbor, 0 for IPv4 |
Neale Ranns | 47527b2 | 2018-11-16 00:53:53 -0800 | [diff] [blame^] | 636 | @param rx_sw_if_index - specify the original RX interface of traffic |
| 637 | that should be redirected. ~0 means any interface. |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 638 | @param tx_sw_if_index - the TX interface to which traffic shoulde be |
| 639 | redirected. |
| 640 | @param nh - The next-hop to redirect the traffic to. |
| 641 | */ |
| 642 | autoreply define ip_punt_redirect |
| 643 | { |
| 644 | u32 client_index; |
| 645 | u32 context; |
| 646 | u32 rx_sw_if_index; |
| 647 | u32 tx_sw_if_index; |
| 648 | u8 is_add; |
| 649 | u8 is_ip6; |
| 650 | u8 nh[16]; |
| 651 | }; |
| 652 | |
Florin Coras | 595992c | 2017-11-06 17:17:08 -0800 | [diff] [blame] | 653 | autoreply define ip_container_proxy_add_del |
| 654 | { |
| 655 | u32 client_index; |
| 656 | u32 context; |
| 657 | u8 ip[16]; |
| 658 | u8 is_ip4; |
| 659 | u8 plen; |
| 660 | u32 sw_if_index; |
| 661 | u8 is_add; |
| 662 | }; |
| 663 | |
Matus Fabian | 75b9f45 | 2018-10-02 23:27:21 -0700 | [diff] [blame] | 664 | define ip_container_proxy_dump |
| 665 | { |
| 666 | u32 client_index; |
| 667 | u32 context; |
| 668 | }; |
| 669 | |
| 670 | define ip_container_proxy_details |
| 671 | { |
| 672 | u32 context; |
| 673 | u32 sw_if_index; |
| 674 | vl_api_prefix_t prefix; |
| 675 | }; |
| 676 | |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 677 | /** \brief Configure IP source and L4 port-range check |
| 678 | @param client_index - opaque cookie to identify the sender |
| 679 | @param context - sender context, to match reply w/ request |
| 680 | @param is_ip6 - 1 if source address type is IPv6 |
| 681 | @param is_add - 1 if add, 0 if delete |
| 682 | @param mask_length - mask length for address entry |
| 683 | @param address - array of address bytes |
| 684 | @param number_of_ranges - length of low_port and high_port arrays (must match) |
| 685 | @param low_ports[32] - up to 32 low end of port range entries (must have corresponding high_ports entry) |
| 686 | @param high_ports[32] - up to 32 high end of port range entries (must have corresponding low_ports entry) |
| 687 | @param vrf_id - fib table/vrf id to associate the source and port-range check with |
| 688 | @note To specify a single port set low_port and high_port entry the same |
| 689 | */ |
| 690 | autoreply define ip_source_and_port_range_check_add_del |
| 691 | { |
| 692 | u32 client_index; |
| 693 | u32 context; |
| 694 | u8 is_ipv6; |
| 695 | u8 is_add; |
| 696 | u8 mask_length; |
| 697 | u8 address[16]; |
| 698 | u8 number_of_ranges; |
| 699 | u16 low_ports[32]; |
| 700 | u16 high_ports[32]; |
| 701 | u32 vrf_id; |
| 702 | }; |
| 703 | |
| 704 | /** \brief Set interface source and L4 port-range request |
| 705 | @param client_index - opaque cookie to identify the sender |
| 706 | @param context - sender context, to match reply w/ request |
| 707 | @param interface_id - interface index |
| 708 | @param tcp_vrf_id - VRF associated with source and TCP port-range check |
| 709 | @param udp_vrf_id - VRF associated with source and TCP port-range check |
| 710 | */ |
| 711 | autoreply define ip_source_and_port_range_check_interface_add_del |
| 712 | { |
| 713 | u32 client_index; |
| 714 | u32 context; |
| 715 | u8 is_add; |
| 716 | u32 sw_if_index; |
| 717 | u32 tcp_in_vrf_id; |
| 718 | u32 tcp_out_vrf_id; |
| 719 | u32 udp_in_vrf_id; |
| 720 | u32 udp_out_vrf_id; |
| 721 | }; |
| 722 | |
John Lo | 7f358b3 | 2018-04-28 01:19:24 -0400 | [diff] [blame] | 723 | /** \brief Enable/disable periodic IP neighbor scan |
| 724 | @param client_index - opaque cookie to identify the sender |
| 725 | @param context - sender context, to match reply w/ request |
| 726 | @param mode - 0: disable, 1: IPv4, 2: IPv6, 3: both IPv4/v6 |
| 727 | @param scan_interval - neighbor scan interval in minutes, 0: default to 1 |
| 728 | @param max_proc_time - max processing time per run in usec, 0: default to 20 |
| 729 | @param max_update - max neighbor probe/delete per run, 0: default to 10 |
| 730 | @param scan_int_delay - delay in msec to resume scan if exceed max proc |
| 731 | time or update, 0: default to 1 |
| 732 | @param stale_threshold - threshold in minutes for neighbor deletion, |
| 733 | 0: default to 4*scan_interval |
| 734 | */ |
| 735 | autoreply define ip_scan_neighbor_enable_disable |
| 736 | { |
| 737 | u32 client_index; |
| 738 | u32 context; |
| 739 | u8 mode; |
| 740 | u8 scan_interval; |
| 741 | u8 max_proc_time; |
| 742 | u8 max_update; |
| 743 | u8 scan_int_delay; |
| 744 | u8 stale_threshold; |
| 745 | }; |
| 746 | |
John Lo | c7b4304 | 2018-04-13 16:46:22 -0400 | [diff] [blame] | 747 | /** \brief IP probe neighbor address on an interface by sending an |
| 748 | ARP request (for IP4) or ICMP6 Neighbor Solicitation (for IP6) |
| 749 | @param client_index - opaque cookie to identify the sender |
| 750 | @param context - sender context, to match reply w/ request |
| 751 | @param sw_if_index - interface index |
| 752 | @param dst_address - target IP address to send IP addr resolution request |
| 753 | @param is_ipv6 - [1|0] to indicate if address family is IPv[6|4] |
| 754 | */ |
| 755 | autoreply define ip_probe_neighbor |
| 756 | { |
| 757 | u32 client_index; |
| 758 | u32 context; |
| 759 | u32 sw_if_index; |
| 760 | u8 dst_address[16]; |
| 761 | u8 is_ipv6; |
| 762 | }; |
| 763 | |
| 764 | /** \brief Register for IP4 ARP resolution event on receing ARP reply or |
| 765 | MAC/IP info from ARP requests in L2 BDs |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 766 | @param client_index - opaque cookie to identify the sender |
| 767 | @param context - sender context, to match reply w/ request |
| 768 | @param enable_disable - 1 => register for events, 0 => cancel registration |
| 769 | @param pid - sender's pid |
John Lo | c7b4304 | 2018-04-13 16:46:22 -0400 | [diff] [blame] | 770 | @param address - exact IP4 address of interested arp resolution event, or |
| 771 | 0 to get MAC/IP info from ARP requests in BDs |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 772 | */ |
| 773 | autoreply define want_ip4_arp_events |
| 774 | { |
| 775 | u32 client_index; |
| 776 | u32 context; |
| 777 | u8 enable_disable; |
| 778 | u32 pid; |
| 779 | u32 address; |
| 780 | }; |
| 781 | |
John Lo | c7b4304 | 2018-04-13 16:46:22 -0400 | [diff] [blame] | 782 | /** \brief Tell client about an IP4 ARP resolution event or |
| 783 | MAC/IP info from ARP requests in L2 BDs |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 784 | @param client_index - opaque cookie to identify the sender |
| 785 | @param address - the exact ip4 address of interest |
| 786 | @param pid - client pid registered to receive notification |
| 787 | @param sw_if_index - interface which received ARP packet |
| 788 | @param new_mac - the new mac address |
John Lo | c7b4304 | 2018-04-13 16:46:22 -0400 | [diff] [blame] | 789 | @param mac_ip - 0: ARP resolution event, 1: MAC/IP info from L2 BDs |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 790 | */ |
| 791 | define ip4_arp_event |
| 792 | { |
| 793 | u32 client_index; |
| 794 | u32 address; |
| 795 | u32 pid; |
| 796 | u32 sw_if_index; |
| 797 | u8 new_mac[6]; |
| 798 | u8 mac_ip; |
| 799 | }; |
| 800 | |
Marek Gradzki | 51e5968 | 2018-03-06 10:05:44 +0100 | [diff] [blame] | 801 | service { |
| 802 | rpc want_ip4_arp_events returns want_ip4_arp_events_reply |
| 803 | events ip4_arp_event; |
| 804 | }; |
| 805 | |
John Lo | c7b4304 | 2018-04-13 16:46:22 -0400 | [diff] [blame] | 806 | /** \brief Register for IP6 ND resolution event on recieving NA reply |
| 807 | MAC/IP info from ICMP6 Neighbor Solicitation in L2 BDs |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 808 | @param client_index - opaque cookie to identify the sender |
| 809 | @param context - sender context, to match reply w/ request |
| 810 | @param enable_disable - 1 => register for events, 0 => cancel registration |
| 811 | @param pid - sender's pid |
John Lo | c7b4304 | 2018-04-13 16:46:22 -0400 | [diff] [blame] | 812 | @param address - the exact IP6 address of interested ND resolution event, or |
| 813 | 0 to get MAC/IP info from ICMP6 NS in L2 BDs. |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 814 | */ |
| 815 | autoreply define want_ip6_nd_events |
| 816 | { |
| 817 | u32 client_index; |
| 818 | u32 context; |
| 819 | u8 enable_disable; |
| 820 | u32 pid; |
| 821 | u8 address[16]; |
| 822 | }; |
| 823 | |
John Lo | c7b4304 | 2018-04-13 16:46:22 -0400 | [diff] [blame] | 824 | /** \brief Tell client about an IP6 ND resolution or |
| 825 | MAC/IP info from ICMP6 Neighbor Solicitation in L2 BDs. |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 826 | @param client_index - opaque cookie to identify the sender |
| 827 | @param pid - client pid registered to receive notification |
| 828 | @param sw_if_index - interface which received ARP packet |
| 829 | @param address - the exact ip6 address of interest |
| 830 | @param new_mac - the new mac address |
John Lo | c7b4304 | 2018-04-13 16:46:22 -0400 | [diff] [blame] | 831 | @param mac_ip - 0: ND resolution event, 1: MAC/IP info from L2 BDs |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 832 | */ |
| 833 | define ip6_nd_event |
| 834 | { |
| 835 | u32 client_index; |
| 836 | u32 pid; |
| 837 | u32 sw_if_index; |
| 838 | u8 address[16]; |
| 839 | u8 new_mac[6]; |
| 840 | u8 mac_ip; |
| 841 | }; |
| 842 | |
Marek Gradzki | 51e5968 | 2018-03-06 10:05:44 +0100 | [diff] [blame] | 843 | service { |
Juraj Sloboda | 4b9669d | 2018-01-15 10:39:21 +0100 | [diff] [blame] | 844 | rpc want_ip6_ra_events returns want_ip6_ra_events_reply |
| 845 | events ip6_ra_event; |
| 846 | }; |
| 847 | |
| 848 | /** \brief Register for ip6 router advertisement events |
| 849 | @param client_index - opaque cookie to identify the sender |
| 850 | @param context - sender context, to match reply w/ request |
| 851 | @param enable_disable - 1 => register for events, 0 => cancel registration |
| 852 | @param pid - sender's pid |
| 853 | */ |
| 854 | autoreply define want_ip6_ra_events |
| 855 | { |
| 856 | u32 client_index; |
| 857 | u32 context; |
| 858 | u8 enable_disable; |
| 859 | u32 pid; |
| 860 | }; |
| 861 | |
| 862 | /** \brief Struct representing RA prefix info |
| 863 | @param dst_address - RA prefix info destination address |
| 864 | @param dst_address_length - RA prefix info destination address length |
| 865 | @param flags - RA prefix info flags |
| 866 | @param valid_time - RA prefix info valid time |
| 867 | @param preferred_time - RA prefix info preferred time |
| 868 | */ |
| 869 | typeonly define ip6_ra_prefix_info |
| 870 | { |
| 871 | u8 dst_address[16]; |
| 872 | u8 dst_address_length; |
| 873 | u8 flags; |
| 874 | u32 valid_time; |
| 875 | u32 preferred_time; |
| 876 | }; |
| 877 | |
| 878 | /** \brief Tell client about a router advertisement event |
| 879 | @param client_index - opaque cookie to identify the sender |
| 880 | @param pid - client pid registered to receive notification |
| 881 | @param current_hop_limit - RA current hop limit |
| 882 | @param flags - RA flags |
| 883 | @param router_lifetime_in_sec - RA lifetime in seconds |
| 884 | @param neighbor_reachable_time_in_msec - RA neighbor reachable time in msec |
| 885 | @param time_in_msec_between_retransmitted_neighbor_solicitations - |
| 886 | time in msec between retransmitted neighbor solicitations |
| 887 | @param n_prefixes - |
| 888 | @param prefixes - |
| 889 | */ |
| 890 | define ip6_ra_event |
| 891 | { |
| 892 | u32 client_index; |
| 893 | u32 pid; |
| 894 | u32 sw_if_index; |
| 895 | u8 router_address[16]; |
| 896 | u8 current_hop_limit; |
| 897 | u8 flags; |
| 898 | u16 router_lifetime_in_sec; |
| 899 | u32 neighbor_reachable_time_in_msec; |
| 900 | u32 time_in_msec_between_retransmitted_neighbor_solicitations; |
| 901 | u32 n_prefixes; |
| 902 | vl_api_ip6_ra_prefix_info_t prefixes[n_prefixes]; |
| 903 | }; |
| 904 | |
| 905 | service { |
Marek Gradzki | 51e5968 | 2018-03-06 10:05:44 +0100 | [diff] [blame] | 906 | rpc want_ip6_nd_events returns want_ip6_nd_events_reply |
| 907 | events ip6_nd_event; |
| 908 | }; |
| 909 | |
Neale Ranns | 0053de6 | 2018-05-22 08:40:52 -0700 | [diff] [blame] | 910 | /** \brief Proxy ARP configuration type |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 911 | @param vrf_id - VRF / Fib table ID |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 912 | @param low_address[4] - Low address of the Proxy ARP range |
| 913 | @param hi_address[4] - High address of the Proxy ARP range |
| 914 | */ |
Neale Ranns | 0053de6 | 2018-05-22 08:40:52 -0700 | [diff] [blame] | 915 | typeonly define proxy_arp |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 916 | { |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 917 | u32 vrf_id; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 918 | u8 low_address[4]; |
| 919 | u8 hi_address[4]; |
| 920 | }; |
| 921 | |
| 922 | /** \brief Proxy ARP add / del request |
| 923 | @param client_index - opaque cookie to identify the sender |
| 924 | @param context - sender context, to match reply w/ request |
Neale Ranns | 0053de6 | 2018-05-22 08:40:52 -0700 | [diff] [blame] | 925 | @param is_add - 1 if adding the Proxy ARP range, 0 if deleting |
| 926 | @param proxy - Proxy configuration |
| 927 | */ |
| 928 | autoreply define proxy_arp_add_del |
| 929 | { |
| 930 | u32 client_index; |
| 931 | u32 context; |
| 932 | u8 is_add; |
| 933 | vl_api_proxy_arp_t proxy; |
| 934 | }; |
| 935 | |
| 936 | /** \brief Proxy ARP dump request |
| 937 | */ |
| 938 | define proxy_arp_dump |
| 939 | { |
| 940 | u32 client_index; |
| 941 | u32 context; |
| 942 | }; |
| 943 | |
| 944 | /** \brief Proxy ARP dump details reply |
| 945 | * @param proxy - Same data as used to configure |
| 946 | */ |
| 947 | define proxy_arp_details |
| 948 | { |
| 949 | u32 context; |
| 950 | vl_api_proxy_arp_t proxy; |
| 951 | }; |
| 952 | |
| 953 | /** \brief Proxy ARP add / del interface request |
| 954 | @param client_index - opaque cookie to identify the sender |
| 955 | @param context - sender context, to match reply w/ request |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 956 | @param sw_if_index - Which interface to enable / disable Proxy Arp on |
| 957 | @param enable_disable - 1 to enable Proxy ARP on interface, 0 to disable |
| 958 | */ |
| 959 | autoreply define proxy_arp_intfc_enable_disable |
| 960 | { |
| 961 | u32 client_index; |
| 962 | u32 context; |
| 963 | u32 sw_if_index; |
| 964 | /* 1 = on, 0 = off */ |
| 965 | u8 enable_disable; |
| 966 | }; |
| 967 | |
Neale Ranns | 0053de6 | 2018-05-22 08:40:52 -0700 | [diff] [blame] | 968 | /** \brief Proxy ARP interface dump request |
| 969 | */ |
| 970 | define proxy_arp_intfc_dump |
| 971 | { |
| 972 | u32 client_index; |
| 973 | u32 context; |
| 974 | }; |
| 975 | |
| 976 | /** \brief Proxy ARP interface dump details reply |
| 977 | * @param sw_if_index The interface on which ARP proxy is enabled. |
| 978 | */ |
| 979 | define proxy_arp_intfc_details |
| 980 | { |
| 981 | u32 context; |
| 982 | u32 sw_if_index; |
| 983 | }; |
| 984 | |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 985 | /** \brief Reset fib table request |
| 986 | @param client_index - opaque cookie to identify the sender |
| 987 | @param context - sender context, to match reply w/ request |
| 988 | @param vrf_id - vrf/table id of the fib table to reset |
| 989 | @param is_ipv6 - an ipv6 fib to reset if non-zero, else ipv4 |
| 990 | */ |
| 991 | autoreply define reset_fib |
| 992 | { |
| 993 | u32 client_index; |
| 994 | u32 context; |
| 995 | u32 vrf_id; |
| 996 | u8 is_ipv6; |
| 997 | }; |
| 998 | |
| 999 | /** \brief Set max allowed ARP or ip6 neighbor entries request |
| 1000 | @param client_index - opaque cookie to identify the sender |
| 1001 | @param context - sender context, to match reply w/ request |
| 1002 | @param is_ipv6 - neighbor limit if non-zero, else ARP limit |
| 1003 | @param arp_neighbor_limit - the new limit, defaults are ~ 50k |
| 1004 | */ |
| 1005 | autoreply define set_arp_neighbor_limit |
| 1006 | { |
| 1007 | u32 client_index; |
| 1008 | u32 context; |
| 1009 | u8 is_ipv6; |
| 1010 | u32 arp_neighbor_limit; |
| 1011 | }; |
| 1012 | |
| 1013 | /** \brief IOAM enable : Enable in-band OAM |
| 1014 | @param id - profile id |
| 1015 | @param seqno - To enable Seqno Processing |
| 1016 | @param analyse - Enabling analysis of iOAM at decap node |
| 1017 | @param pow_enable - Proof of Work enabled or not flag |
| 1018 | @param trace_enable - iOAM Trace enabled or not flag |
| 1019 | */ |
| 1020 | autoreply define ioam_enable |
| 1021 | { |
| 1022 | u32 client_index; |
| 1023 | u32 context; |
| 1024 | u16 id; |
| 1025 | u8 seqno; |
| 1026 | u8 analyse; |
| 1027 | u8 pot_enable; |
| 1028 | u8 trace_enable; |
| 1029 | u32 node_id; |
| 1030 | }; |
| 1031 | |
| 1032 | /** \brief iOAM disable |
| 1033 | @param client_index - opaque cookie to identify the sender |
| 1034 | @param context - sender context, to match reply w/ request |
| 1035 | @param index - MAP Domain index |
| 1036 | */ |
| 1037 | autoreply define ioam_disable |
| 1038 | { |
| 1039 | u32 client_index; |
| 1040 | u32 context; |
| 1041 | u16 id; |
| 1042 | }; |
| 1043 | |
Klement Sekera | 75e7d13 | 2017-09-20 08:26:30 +0200 | [diff] [blame] | 1044 | autoreply define ip_reassembly_set |
| 1045 | { |
| 1046 | u32 client_index; |
| 1047 | u32 context; |
| 1048 | u32 timeout_ms; |
| 1049 | u32 max_reassemblies; |
| 1050 | u32 expire_walk_interval_ms; |
| 1051 | u8 is_ip6; |
| 1052 | }; |
| 1053 | |
| 1054 | define ip_reassembly_get |
| 1055 | { |
| 1056 | u32 client_index; |
| 1057 | u32 context; |
| 1058 | u8 is_ip6; |
| 1059 | }; |
| 1060 | |
| 1061 | define ip_reassembly_get_reply |
| 1062 | { |
Klement Sekera | 75e7d13 | 2017-09-20 08:26:30 +0200 | [diff] [blame] | 1063 | u32 context; |
| 1064 | i32 retval; |
| 1065 | u32 timeout_ms; |
| 1066 | u32 max_reassemblies; |
| 1067 | u32 expire_walk_interval_ms; |
| 1068 | u8 is_ip6; |
| 1069 | }; |
| 1070 | |
Klement Sekera | 4c53313 | 2018-02-22 11:41:12 +0100 | [diff] [blame] | 1071 | /** \brief Enable/disable reassembly feature |
| 1072 | @param client_index - opaque cookie to identify the sender |
| 1073 | @param context - sender context, to match reply w/ request |
| 1074 | @param sw_if_index - interface to enable/disable feature on |
| 1075 | @param enable_ip4 - enable ip4 reassembly if non-zero, disable if 0 |
| 1076 | @param enable_ip6 - enable ip6 reassembly if non-zero, disable if 0 |
| 1077 | */ |
| 1078 | autoreply define ip_reassembly_enable_disable |
| 1079 | { |
| 1080 | u32 client_index; |
| 1081 | u32 context; |
| 1082 | u32 sw_if_index; |
| 1083 | u8 enable_ip4; |
| 1084 | u8 enable_ip6; |
| 1085 | }; |
| 1086 | |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 1087 | /* |
| 1088 | * Local Variables: |
| 1089 | * eval: (c-set-style "gnu") |
| 1090 | * End: |
| 1091 | */ |