Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015-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 | |
Jakub Grajciar | 3eb8f20 | 2020-01-03 09:59:07 +0100 | [diff] [blame] | 16 | option version = "1.1.1"; |
Neale Ranns | 31ed744 | 2018-02-23 05:29:09 -0800 | [diff] [blame] | 17 | import "vnet/fib/fib_types.api"; |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 18 | import "vnet/ip/ip_types.api"; |
Jakub Grajciar | 3eb8f20 | 2020-01-03 09:59:07 +0100 | [diff] [blame] | 19 | import "vnet/interface_types.api"; |
Dave Barach | 0d056e5 | 2017-09-28 15:11:16 -0400 | [diff] [blame] | 20 | |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 21 | /** \brief Bind/Unbind an MPLS local label to an IP prefix. i.e. create |
| 22 | a per-prefix label entry. |
| 23 | @param client_index - opaque cookie to identify the sender |
| 24 | @param context - sender context, to match reply w/ request |
| 25 | @param mb_mpls_table_id - The MPLS table-id the MPLS entry will be added in |
| 26 | @param mb_label - The MPLS label value to bind |
| 27 | @param mb_ip_table_id - The IP table-id of the IP prefix to bind to. |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 28 | @param mb_is_bind - Bind or unbind |
| 29 | @param mb_is_ip4 - The prefix to bind to is IPv4 |
Ole Troan | 75761b9 | 2019-09-11 17:49:08 +0200 | [diff] [blame] | 30 | @param mb_prefix - IP prefix |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 31 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 32 | autoreply define mpls_ip_bind_unbind |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 33 | { |
| 34 | u32 client_index; |
| 35 | u32 context; |
| 36 | u32 mb_mpls_table_id; |
| 37 | u32 mb_label; |
| 38 | u32 mb_ip_table_id; |
Jakub Grajciar | 3eb8f20 | 2020-01-03 09:59:07 +0100 | [diff] [blame] | 39 | bool mb_is_bind; |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 40 | vl_api_prefix_t mb_prefix; |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 41 | }; |
| 42 | |
Paul Vinciguerra | e717482 | 2019-08-07 00:05:59 -0400 | [diff] [blame] | 43 | typedef mpls_tunnel |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 44 | { |
Jakub Grajciar | 3eb8f20 | 2020-01-03 09:59:07 +0100 | [diff] [blame] | 45 | vl_api_interface_index_t mt_sw_if_index; |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 46 | u32 mt_tunnel_index; |
Jakub Grajciar | 3eb8f20 | 2020-01-03 09:59:07 +0100 | [diff] [blame] | 47 | bool mt_l2_only; |
| 48 | bool mt_is_multicast; |
IJsbrand Wijnands | 39ae0a0 | 2020-03-05 10:56:26 -0800 | [diff] [blame] | 49 | string mt_tag[64]; |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 50 | u8 mt_n_paths; |
| 51 | vl_api_fib_path_t mt_paths[mt_n_paths]; |
| 52 | }; |
IJsbrand Wijnands | 39ae0a0 | 2020-03-05 10:56:26 -0800 | [diff] [blame] | 53 | |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 54 | define mpls_tunnel_add_del |
| 55 | { |
| 56 | u32 client_index; |
| 57 | u32 context; |
Jakub Grajciar | 3eb8f20 | 2020-01-03 09:59:07 +0100 | [diff] [blame] | 58 | bool mt_is_add [default=true]; |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 59 | vl_api_mpls_tunnel_t mt_tunnel; |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 60 | }; |
| 61 | |
| 62 | /** \brief Reply for MPLS tunnel add / del request |
| 63 | @param context - returned sender context, to match reply w/ request |
| 64 | @param retval - return code |
| 65 | @param sw_if_index - SW interface index of the tunnel created |
| 66 | */ |
| 67 | define mpls_tunnel_add_del_reply |
| 68 | { |
| 69 | u32 context; |
| 70 | i32 retval; |
Jakub Grajciar | 3eb8f20 | 2020-01-03 09:59:07 +0100 | [diff] [blame] | 71 | vl_api_interface_index_t sw_if_index; |
Neale Ranns | f5fa5ae | 2018-09-26 05:07:25 -0700 | [diff] [blame] | 72 | u32 tunnel_index; |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 73 | }; |
| 74 | |
| 75 | /** \brief Dump mpls eth tunnel table |
| 76 | @param client_index - opaque cookie to identify the sender |
Neale Ranns | f5fa5ae | 2018-09-26 05:07:25 -0700 | [diff] [blame] | 77 | @param sw_if_index - sw_if_index of the MPLS tunnel |
| 78 | (as returned from the create) |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 79 | */ |
| 80 | define mpls_tunnel_dump |
| 81 | { |
| 82 | u32 client_index; |
| 83 | u32 context; |
Paul Vinciguerra | c0e9441 | 2020-04-28 01:12:04 -0400 | [diff] [blame] | 84 | vl_api_interface_index_t sw_if_index [default=0xffffffff]; |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 85 | }; |
| 86 | |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 87 | /** \brief mpls tunnel details |
| 88 | */ |
Ole Troan | df87f80 | 2020-11-18 19:17:48 +0100 | [diff] [blame] | 89 | define mpls_tunnel_details |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 90 | { |
| 91 | u32 context; |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 92 | vl_api_mpls_tunnel_t mt_tunnel; |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 93 | }; |
| 94 | |
Pim van Pelt | 8d61c59 | 2023-06-10 16:46:34 +0200 | [diff] [blame] | 95 | /** \brief Dump mpls enabled interface(s) |
| 96 | @param client_index - opaque cookie to identify the sender |
| 97 | @param sw_if_index - sw_if_index of a specific interface, or -1 (default) |
| 98 | to return all MPLS enabled interfaces |
| 99 | */ |
| 100 | define mpls_interface_dump |
| 101 | { |
| 102 | u32 client_index; |
| 103 | u32 context; |
| 104 | vl_api_interface_index_t sw_if_index [default=0xffffffff]; |
| 105 | }; |
| 106 | |
| 107 | /** \brief mpls enabled interface details |
| 108 | */ |
| 109 | define mpls_interface_details |
| 110 | { |
| 111 | u32 context; |
| 112 | vl_api_interface_index_t sw_if_index; |
| 113 | }; |
| 114 | |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 115 | /** \brief MPLS Route Add / del route |
| 116 | @param client_index - opaque cookie to identify the sender |
| 117 | @param context - sender context, to match reply w/ request |
Neale Ranns | 28ab9cc | 2017-08-14 07:18:42 -0700 | [diff] [blame] | 118 | @param mt_table_id - The MPLS table-id the route is added in |
| 119 | @param mt_is_add - Is this a route add or delete |
Neale Ranns | 2297af0 | 2017-09-12 09:45:04 -0700 | [diff] [blame] | 120 | @param mt_name - A client provided name/tag for the table. If this |
| 121 | is not set by the client, then VPP will generate |
Paul Vinciguerra | c0e9441 | 2020-04-28 01:12:04 -0400 | [diff] [blame] | 122 | something meaningful. |
Neale Ranns | 28ab9cc | 2017-08-14 07:18:42 -0700 | [diff] [blame] | 123 | */ |
Paul Vinciguerra | e717482 | 2019-08-07 00:05:59 -0400 | [diff] [blame] | 124 | typedef mpls_table |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 125 | { |
| 126 | u32 mt_table_id; |
Jakub Grajciar | 3eb8f20 | 2020-01-03 09:59:07 +0100 | [diff] [blame] | 127 | string mt_name[64]; |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 128 | }; |
Neale Ranns | 28ab9cc | 2017-08-14 07:18:42 -0700 | [diff] [blame] | 129 | autoreply define mpls_table_add_del |
| 130 | { |
| 131 | u32 client_index; |
| 132 | u32 context; |
Jakub Grajciar | 3eb8f20 | 2020-01-03 09:59:07 +0100 | [diff] [blame] | 133 | bool mt_is_add [default=true]; |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 134 | vl_api_mpls_table_t mt_table; |
| 135 | }; |
| 136 | |
| 137 | /** \brief Dump MPLS fib table |
| 138 | @param client_index - opaque cookie to identify the sender |
| 139 | */ |
| 140 | define mpls_table_dump |
| 141 | { |
| 142 | u32 client_index; |
| 143 | u32 context; |
| 144 | }; |
| 145 | |
| 146 | define mpls_table_details |
| 147 | { |
| 148 | u32 context; |
| 149 | vl_api_mpls_table_t mt_table; |
| 150 | }; |
| 151 | |
| 152 | /** \brief MPLS Route |
Jakub Grajciar | 3eb8f20 | 2020-01-03 09:59:07 +0100 | [diff] [blame] | 153 | @param mr_table_id - The MPLS table-id the route is added in |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 154 | @param mr_label - The MPLS label value |
| 155 | @param mr_eos - The End of stack bit |
Paul Vinciguerra | c0e9441 | 2020-04-28 01:12:04 -0400 | [diff] [blame] | 156 | @param mr_eos_proto - If EOS then this is the DPO packet's proto post pop |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 157 | @param mr_is_multicast - Is this a multicast route |
| 158 | @param mr_n_paths - The number of paths |
| 159 | @param mr_paths - The paths |
| 160 | */ |
Paul Vinciguerra | e717482 | 2019-08-07 00:05:59 -0400 | [diff] [blame] | 161 | typedef mpls_route |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 162 | { |
| 163 | u32 mr_table_id; |
| 164 | u32 mr_label; |
Jakub Grajciar | 3eb8f20 | 2020-01-03 09:59:07 +0100 | [diff] [blame] | 165 | /* TODO: check data type */ |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 166 | u8 mr_eos; |
| 167 | u8 mr_eos_proto; |
Jakub Grajciar | 3eb8f20 | 2020-01-03 09:59:07 +0100 | [diff] [blame] | 168 | bool mr_is_multicast; |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 169 | u8 mr_n_paths; |
| 170 | vl_api_fib_path_t mr_paths[mr_n_paths]; |
Neale Ranns | 28ab9cc | 2017-08-14 07:18:42 -0700 | [diff] [blame] | 171 | }; |
| 172 | |
| 173 | /** \brief MPLS Route Add / del route |
| 174 | @param client_index - opaque cookie to identify the sender |
| 175 | @param context - sender context, to match reply w/ request |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 176 | @param mr_table_id - The MPLS table-id the route is added in |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 177 | @param mr_is_add - Is this a route add or delete |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 178 | @param mr_is_multipath - Is this route update a multipath - i.e. is this |
| 179 | a path addition to an existing route |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 180 | @param mr_route - The Route |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 181 | */ |
Neale Ranns | 008dbe1 | 2018-09-07 09:32:36 -0700 | [diff] [blame] | 182 | define mpls_route_add_del |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 183 | { |
| 184 | u32 client_index; |
| 185 | u32 context; |
Jakub Grajciar | 3eb8f20 | 2020-01-03 09:59:07 +0100 | [diff] [blame] | 186 | bool mr_is_add; |
| 187 | bool mr_is_multipath; |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 188 | vl_api_mpls_route_t mr_route; |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 189 | }; |
| 190 | |
Neale Ranns | 008dbe1 | 2018-09-07 09:32:36 -0700 | [diff] [blame] | 191 | define mpls_route_add_del_reply |
| 192 | { |
| 193 | u32 context; |
| 194 | i32 retval; |
| 195 | u32 stats_index; |
| 196 | }; |
| 197 | |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 198 | /** \brief Dump MPLS fib table |
| 199 | @param client_index - opaque cookie to identify the sender |
| 200 | */ |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 201 | define mpls_route_dump |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 202 | { |
| 203 | u32 client_index; |
| 204 | u32 context; |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 205 | vl_api_mpls_table_t table; |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 206 | }; |
| 207 | |
| 208 | /** \brief mpls FIB table response |
| 209 | @param table_id - MPLS fib table id |
| 210 | @param s_bit - End-of-stack bit |
| 211 | @param label - MPLS label value |
| 212 | @param count - the number of fib_path in path |
| 213 | @param path - array of of fib_path structures |
| 214 | */ |
Ole Troan | df87f80 | 2020-11-18 19:17:48 +0100 | [diff] [blame] | 215 | define mpls_route_details |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 216 | { |
| 217 | u32 context; |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 218 | vl_api_mpls_route_t mr_route; |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 219 | }; |
| 220 | |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 221 | /** \brief Enable or Disable MPLS on and interface |
| 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 - index of the interface |
| 225 | @param enable - if non-zero enable, else disable |
| 226 | */ |
| 227 | autoreply define sw_interface_set_mpls_enable |
| 228 | { |
| 229 | u32 client_index; |
| 230 | u32 context; |
Jakub Grajciar | 3eb8f20 | 2020-01-03 09:59:07 +0100 | [diff] [blame] | 231 | vl_api_interface_index_t sw_if_index; |
| 232 | bool enable [default=true]; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 233 | }; |
| 234 | |
Neale Ranns | 41a85c0 | 2022-08-09 01:24:41 +0000 | [diff] [blame] | 235 | counters mpls { |
| 236 | none { |
| 237 | severity info; |
| 238 | type counter64; |
| 239 | units "packets"; |
| 240 | description "no error"; |
| 241 | }; |
| 242 | unknown_protocol { |
| 243 | severity error; |
| 244 | type counter64; |
| 245 | units "packets"; |
| 246 | description "unknown protocol"; |
| 247 | }; |
| 248 | unsupported_version { |
| 249 | severity error; |
| 250 | type counter64; |
| 251 | units "packets"; |
| 252 | description "unsupported version"; |
| 253 | }; |
| 254 | pkts_decap { |
| 255 | severity info; |
| 256 | type counter64; |
| 257 | units "packets"; |
| 258 | description "MPLS input packets decapsulated"; |
| 259 | }; |
| 260 | pkts_encap { |
| 261 | severity info; |
| 262 | type counter64; |
| 263 | units "packets"; |
| 264 | description "MPLS output packets encapsulated"; |
| 265 | }; |
| 266 | pkts_need_frag { |
| 267 | severity info; |
| 268 | type counter64; |
| 269 | units "packets"; |
| 270 | description "MPLS output packets needs fragmentation"; |
| 271 | }; |
| 272 | no_label { |
| 273 | severity error; |
| 274 | type counter64; |
| 275 | units "packets"; |
| 276 | description "MPLS no label for fib/dst"; |
| 277 | }; |
| 278 | ttl_expired { |
| 279 | severity error; |
| 280 | type counter64; |
| 281 | units "packets"; |
| 282 | description "MPLS ttl expired"; |
| 283 | }; |
| 284 | s_not_set { |
| 285 | severity error; |
| 286 | type counter64; |
| 287 | units "packets"; |
| 288 | description "MPLS s-bit not set"; |
| 289 | }; |
| 290 | bad_label { |
| 291 | severity error; |
| 292 | type counter64; |
| 293 | units "packets"; |
| 294 | description "invalid FIB id in label"; |
| 295 | }; |
| 296 | not_ip4 { |
| 297 | severity error; |
| 298 | type counter64; |
| 299 | units "packets"; |
| 300 | description "non-ip4 packets dropped"; |
| 301 | }; |
| 302 | disallowed_fib { |
| 303 | severity error; |
| 304 | type counter64; |
| 305 | units "packets"; |
| 306 | description "disallowed FIB id"; |
| 307 | }; |
| 308 | not_enabled { |
| 309 | severity error; |
| 310 | type counter64; |
| 311 | units "packets"; |
| 312 | description "MPLS not enabled"; |
| 313 | }; |
| 314 | drop { |
| 315 | severity error; |
| 316 | type counter64; |
| 317 | units "packets"; |
| 318 | description "MPLS DROP DPO"; |
| 319 | }; |
| 320 | punt { |
| 321 | severity error; |
| 322 | type counter64; |
| 323 | units "packets"; |
| 324 | description "MPLS PUNT DPO"; |
| 325 | }; |
| 326 | }; |
| 327 | |
| 328 | paths { |
| 329 | "/err/mpls-input" "mpls"; |
| 330 | "/err/mpls-output" "mpls"; |
| 331 | "/err/mpls-lookup" "mpls"; |
| 332 | "/err/mpls-midchain" "mpls"; |
| 333 | "/err/mpls-adj-incomplete" "mpls"; |
| 334 | "/err/mpls-frag" "mpls"; |
| 335 | }; |
| 336 | |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 337 | /* |
| 338 | * Local Variables: |
| 339 | * eval: (c-set-style "gnu") |
| 340 | * End: |
| 341 | */ |