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 | |
Neale Ranns | 31ed744 | 2018-02-23 05:29:09 -0800 | [diff] [blame] | 16 | option version = "1.1.0"; |
| 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"; |
Dave Barach | 0d056e5 | 2017-09-28 15:11:16 -0400 | [diff] [blame] | 19 | |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 20 | /** \brief Bind/Unbind an MPLS local label to an IP prefix. i.e. create |
| 21 | a per-prefix label entry. |
| 22 | @param client_index - opaque cookie to identify the sender |
| 23 | @param context - sender context, to match reply w/ request |
| 24 | @param mb_mpls_table_id - The MPLS table-id the MPLS entry will be added in |
| 25 | @param mb_label - The MPLS label value to bind |
| 26 | @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] | 27 | @param mb_is_bind - Bind or unbind |
| 28 | @param mb_is_ip4 - The prefix to bind to is IPv4 |
Ole Troan | 75761b9 | 2019-09-11 17:49:08 +0200 | [diff] [blame] | 29 | @param mb_prefix - IP prefix |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 30 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 31 | autoreply define mpls_ip_bind_unbind |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 32 | { |
| 33 | u32 client_index; |
| 34 | u32 context; |
| 35 | u32 mb_mpls_table_id; |
| 36 | u32 mb_label; |
| 37 | u32 mb_ip_table_id; |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 38 | u8 mb_is_bind; |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 39 | vl_api_prefix_t mb_prefix; |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 40 | }; |
| 41 | |
Paul Vinciguerra | e717482 | 2019-08-07 00:05:59 -0400 | [diff] [blame] | 42 | typedef mpls_tunnel |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 43 | { |
| 44 | u32 mt_sw_if_index; |
| 45 | u32 mt_tunnel_index; |
| 46 | u8 mt_l2_only; |
| 47 | u8 mt_is_multicast; |
| 48 | u8 mt_n_paths; |
| 49 | vl_api_fib_path_t mt_paths[mt_n_paths]; |
| 50 | }; |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 51 | define mpls_tunnel_add_del |
| 52 | { |
| 53 | u32 client_index; |
| 54 | u32 context; |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 55 | u8 mt_is_add; |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 56 | vl_api_mpls_tunnel_t mt_tunnel; |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 57 | }; |
| 58 | |
| 59 | /** \brief Reply for MPLS tunnel add / del request |
| 60 | @param context - returned sender context, to match reply w/ request |
| 61 | @param retval - return code |
| 62 | @param sw_if_index - SW interface index of the tunnel created |
| 63 | */ |
| 64 | define mpls_tunnel_add_del_reply |
| 65 | { |
| 66 | u32 context; |
| 67 | i32 retval; |
| 68 | u32 sw_if_index; |
Neale Ranns | f5fa5ae | 2018-09-26 05:07:25 -0700 | [diff] [blame] | 69 | u32 tunnel_index; |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 70 | }; |
| 71 | |
| 72 | /** \brief Dump mpls eth tunnel table |
| 73 | @param client_index - opaque cookie to identify the sender |
Neale Ranns | f5fa5ae | 2018-09-26 05:07:25 -0700 | [diff] [blame] | 74 | @param sw_if_index - sw_if_index of the MPLS tunnel |
| 75 | (as returned from the create) |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 76 | */ |
| 77 | define mpls_tunnel_dump |
| 78 | { |
| 79 | u32 client_index; |
| 80 | u32 context; |
Neale Ranns | f5fa5ae | 2018-09-26 05:07:25 -0700 | [diff] [blame] | 81 | u32 sw_if_index; |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 82 | }; |
| 83 | |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 84 | /** \brief mpls tunnel details |
| 85 | */ |
| 86 | manual_endian manual_print define mpls_tunnel_details |
| 87 | { |
| 88 | u32 context; |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 89 | vl_api_mpls_tunnel_t mt_tunnel; |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 90 | }; |
| 91 | |
| 92 | /** \brief MPLS Route Add / del route |
| 93 | @param client_index - opaque cookie to identify the sender |
| 94 | @param context - sender context, to match reply w/ request |
Neale Ranns | 28ab9cc | 2017-08-14 07:18:42 -0700 | [diff] [blame] | 95 | @param mt_table_id - The MPLS table-id the route is added in |
| 96 | @param mt_is_add - Is this a route add or delete |
Neale Ranns | 2297af0 | 2017-09-12 09:45:04 -0700 | [diff] [blame] | 97 | @param mt_name - A client provided name/tag for the table. If this |
| 98 | is not set by the client, then VPP will generate |
| 99 | something meaningfull. |
Neale Ranns | 28ab9cc | 2017-08-14 07:18:42 -0700 | [diff] [blame] | 100 | */ |
Paul Vinciguerra | e717482 | 2019-08-07 00:05:59 -0400 | [diff] [blame] | 101 | typedef mpls_table |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 102 | { |
| 103 | u32 mt_table_id; |
| 104 | u8 mt_name[64]; |
| 105 | }; |
Neale Ranns | 28ab9cc | 2017-08-14 07:18:42 -0700 | [diff] [blame] | 106 | autoreply define mpls_table_add_del |
| 107 | { |
| 108 | u32 client_index; |
| 109 | u32 context; |
Neale Ranns | 28ab9cc | 2017-08-14 07:18:42 -0700 | [diff] [blame] | 110 | u8 mt_is_add; |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 111 | vl_api_mpls_table_t mt_table; |
| 112 | }; |
| 113 | |
| 114 | /** \brief Dump MPLS fib table |
| 115 | @param client_index - opaque cookie to identify the sender |
| 116 | */ |
| 117 | define mpls_table_dump |
| 118 | { |
| 119 | u32 client_index; |
| 120 | u32 context; |
| 121 | }; |
| 122 | |
| 123 | define mpls_table_details |
| 124 | { |
| 125 | u32 context; |
| 126 | vl_api_mpls_table_t mt_table; |
| 127 | }; |
| 128 | |
| 129 | /** \brief MPLS Route |
| 130 | @param mr_label - The MPLS label value |
| 131 | @param mr_eos - The End of stack bit |
| 132 | @param mr_eos_proto - If EOS then this is the DPO packect's proto post pop |
| 133 | @param mr_table_id - The MPLS table-id the route is added in |
| 134 | @param mr_is_add - Is this a route add or delete |
| 135 | @param mr_is_multicast - Is this a multicast route |
| 136 | @param mr_n_paths - The number of paths |
| 137 | @param mr_paths - The paths |
| 138 | */ |
Paul Vinciguerra | e717482 | 2019-08-07 00:05:59 -0400 | [diff] [blame] | 139 | typedef mpls_route |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 140 | { |
| 141 | u32 mr_table_id; |
| 142 | u32 mr_label; |
| 143 | u8 mr_eos; |
| 144 | u8 mr_eos_proto; |
| 145 | u8 mr_is_multicast; |
| 146 | u8 mr_n_paths; |
| 147 | vl_api_fib_path_t mr_paths[mr_n_paths]; |
Neale Ranns | 28ab9cc | 2017-08-14 07:18:42 -0700 | [diff] [blame] | 148 | }; |
| 149 | |
| 150 | /** \brief MPLS Route Add / del route |
| 151 | @param client_index - opaque cookie to identify the sender |
| 152 | @param context - sender context, to match reply w/ request |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 153 | @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] | 154 | @param mr_is_add - Is this a route add or delete |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 155 | @param mr_is_multipath - Is this route update a multipath - i.e. is this |
| 156 | a path addition to an existing route |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 157 | @param mr_route - The Route |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 158 | */ |
Neale Ranns | 008dbe1 | 2018-09-07 09:32:36 -0700 | [diff] [blame] | 159 | define mpls_route_add_del |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 160 | { |
| 161 | u32 client_index; |
| 162 | u32 context; |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 163 | u8 mr_is_add; |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 164 | u8 mr_is_multipath; |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 165 | vl_api_mpls_route_t mr_route; |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 166 | }; |
| 167 | |
Neale Ranns | 008dbe1 | 2018-09-07 09:32:36 -0700 | [diff] [blame] | 168 | define mpls_route_add_del_reply |
| 169 | { |
| 170 | u32 context; |
| 171 | i32 retval; |
| 172 | u32 stats_index; |
| 173 | }; |
| 174 | |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 175 | /** \brief Dump MPLS fib table |
| 176 | @param client_index - opaque cookie to identify the sender |
| 177 | */ |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 178 | define mpls_route_dump |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 179 | { |
| 180 | u32 client_index; |
| 181 | u32 context; |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 182 | vl_api_mpls_table_t table; |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 183 | }; |
| 184 | |
| 185 | /** \brief mpls FIB table response |
| 186 | @param table_id - MPLS fib table id |
| 187 | @param s_bit - End-of-stack bit |
| 188 | @param label - MPLS label value |
| 189 | @param count - the number of fib_path in path |
| 190 | @param path - array of of fib_path structures |
| 191 | */ |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 192 | manual_endian manual_print define mpls_route_details |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 193 | { |
| 194 | u32 context; |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 195 | vl_api_mpls_route_t mr_route; |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 196 | }; |
| 197 | |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 198 | /** \brief Enable or Disable MPLS on and interface |
| 199 | @param client_index - opaque cookie to identify the sender |
| 200 | @param context - sender context, to match reply w/ request |
| 201 | @param sw_if_index - index of the interface |
| 202 | @param enable - if non-zero enable, else disable |
| 203 | */ |
| 204 | autoreply define sw_interface_set_mpls_enable |
| 205 | { |
| 206 | u32 client_index; |
| 207 | u32 context; |
| 208 | u32 sw_if_index; |
| 209 | u8 enable; |
| 210 | }; |
| 211 | |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 212 | /* |
| 213 | * Local Variables: |
| 214 | * eval: (c-set-style "gnu") |
| 215 | * End: |
| 216 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 217 | |