Pavel Kotucek | abea966 | 2016-12-21 15:50:08 +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 | 58db6e1 | 2020-01-30 13:26:43 +0100 | [diff] [blame] | 16 | option version = "2.0.0"; |
| 17 | |
| 18 | import "vnet/interface_types.api"; |
| 19 | import "vnet/lisp-cp/lisp_types.api"; |
Dave Barach | 0d056e5 | 2017-09-28 15:11:16 -0400 | [diff] [blame] | 20 | |
Filip Tehlar | 82786c4 | 2017-02-20 15:20:37 +0100 | [diff] [blame] | 21 | /** \brief GPE locator structure |
Filip Tehlar | c3af7bf | 2017-01-13 14:13:09 +0100 | [diff] [blame] | 22 | @param is_ip4 - whether addr is IPv4 or v6 |
| 23 | @param weight - locator weight |
| 24 | @param addr - IPv4/6 address |
| 25 | */ |
Paul Vinciguerra | e717482 | 2019-08-07 00:05:59 -0400 | [diff] [blame] | 26 | typedef gpe_locator |
Filip Tehlar | c3af7bf | 2017-01-13 14:13:09 +0100 | [diff] [blame] | 27 | { |
Filip Tehlar | c3af7bf | 2017-01-13 14:13:09 +0100 | [diff] [blame] | 28 | u8 weight; |
Jakub Grajciar | 58db6e1 | 2020-01-30 13:26:43 +0100 | [diff] [blame] | 29 | vl_api_address_t addr; |
Filip Tehlar | c3af7bf | 2017-01-13 14:13:09 +0100 | [diff] [blame] | 30 | }; |
| 31 | |
Filip Tehlar | 82786c4 | 2017-02-20 15:20:37 +0100 | [diff] [blame] | 32 | /** \brief add or delete GPE tunnel |
Pavel Kotucek | abea966 | 2016-12-21 15:50:08 +0100 | [diff] [blame] | 33 | @param client_index - opaque cookie to identify the sender |
| 34 | @param context - sender context, to match reply w/ request |
| 35 | @param is_add - add address if non-zero, else delete |
Pavel Kotucek | abea966 | 2016-12-21 15:50:08 +0100 | [diff] [blame] | 36 | @param rmt_eid - remote eid |
| 37 | @param lcl_eid - local eid |
Pavel Kotucek | abea966 | 2016-12-21 15:50:08 +0100 | [diff] [blame] | 38 | @param vni - virtual network identifier |
| 39 | @param dp_table - vrf/bridge domain id |
Pavel Kotucek | abea966 | 2016-12-21 15:50:08 +0100 | [diff] [blame] | 40 | @param action - negative action when 0 locators configured |
Filip Tehlar | c3af7bf | 2017-01-13 14:13:09 +0100 | [diff] [blame] | 41 | @param loc_num - number of locators |
| 42 | @param locs - array of remote locators |
Pavel Kotucek | abea966 | 2016-12-21 15:50:08 +0100 | [diff] [blame] | 43 | */ |
Filip Tehlar | 560274d | 2017-06-05 13:40:13 +0200 | [diff] [blame] | 44 | manual_print manual_endian define gpe_add_del_fwd_entry |
Pavel Kotucek | abea966 | 2016-12-21 15:50:08 +0100 | [diff] [blame] | 45 | { |
| 46 | u32 client_index; |
| 47 | u32 context; |
Jakub Grajciar | 58db6e1 | 2020-01-30 13:26:43 +0100 | [diff] [blame] | 48 | bool is_add [default=true]; |
| 49 | vl_api_eid_t rmt_eid; |
| 50 | vl_api_eid_t lcl_eid; |
Pavel Kotucek | abea966 | 2016-12-21 15:50:08 +0100 | [diff] [blame] | 51 | u32 vni; |
| 52 | u32 dp_table; |
Pavel Kotucek | abea966 | 2016-12-21 15:50:08 +0100 | [diff] [blame] | 53 | u8 action; |
Filip Tehlar | c3af7bf | 2017-01-13 14:13:09 +0100 | [diff] [blame] | 54 | u32 loc_num; |
Filip Tehlar | 82786c4 | 2017-02-20 15:20:37 +0100 | [diff] [blame] | 55 | vl_api_gpe_locator_t locs[loc_num]; |
Pavel Kotucek | abea966 | 2016-12-21 15:50:08 +0100 | [diff] [blame] | 56 | }; |
| 57 | |
Filip Tehlar | 560274d | 2017-06-05 13:40:13 +0200 | [diff] [blame] | 58 | define gpe_add_del_fwd_entry_reply |
| 59 | { |
Filip Tehlar | 560274d | 2017-06-05 13:40:13 +0200 | [diff] [blame] | 60 | u32 context; |
Ondrej Fabry | b11f903 | 2018-08-14 12:39:40 +0200 | [diff] [blame] | 61 | i32 retval; |
Filip Tehlar | 560274d | 2017-06-05 13:40:13 +0200 | [diff] [blame] | 62 | u32 fwd_entry_index; |
| 63 | }; |
| 64 | |
Filip Tehlar | 82786c4 | 2017-02-20 15:20:37 +0100 | [diff] [blame] | 65 | /** \brief enable or disable gpe protocol |
Pavel Kotucek | abea966 | 2016-12-21 15:50:08 +0100 | [diff] [blame] | 66 | @param client_index - opaque cookie to identify the sender |
| 67 | @param context - sender context, to match reply w/ request |
Jakub Grajciar | 58db6e1 | 2020-01-30 13:26:43 +0100 | [diff] [blame] | 68 | @param is_enable [default=true] - enable protocol if non-zero, else disable |
Pavel Kotucek | abea966 | 2016-12-21 15:50:08 +0100 | [diff] [blame] | 69 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 70 | autoreply define gpe_enable_disable |
Pavel Kotucek | abea966 | 2016-12-21 15:50:08 +0100 | [diff] [blame] | 71 | { |
| 72 | u32 client_index; |
| 73 | u32 context; |
Jakub Grajciar | 58db6e1 | 2020-01-30 13:26:43 +0100 | [diff] [blame] | 74 | bool is_enable [default=true]; |
Pavel Kotucek | abea966 | 2016-12-21 15:50:08 +0100 | [diff] [blame] | 75 | }; |
| 76 | |
Pavel Kotucek | abea966 | 2016-12-21 15:50:08 +0100 | [diff] [blame] | 77 | /** \brief add or delete gpe_iface |
| 78 | @param client_index - opaque cookie to identify the sender |
| 79 | @param context - sender context, to match reply w/ request |
| 80 | @param is_add - add address if non-zero, else delete |
| 81 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 82 | autoreply define gpe_add_del_iface |
Pavel Kotucek | abea966 | 2016-12-21 15:50:08 +0100 | [diff] [blame] | 83 | { |
| 84 | u32 client_index; |
| 85 | u32 context; |
Jakub Grajciar | 58db6e1 | 2020-01-30 13:26:43 +0100 | [diff] [blame] | 86 | bool is_add [default=true]; |
| 87 | bool is_l2; |
Pavel Kotucek | abea966 | 2016-12-21 15:50:08 +0100 | [diff] [blame] | 88 | u32 dp_table; |
| 89 | u32 vni; |
| 90 | }; |
| 91 | |
Filip Tehlar | 0eb874e | 2017-05-18 14:23:32 +0200 | [diff] [blame] | 92 | define gpe_fwd_entry_vnis_get |
| 93 | { |
| 94 | u32 client_index; |
| 95 | u32 context; |
| 96 | }; |
| 97 | |
| 98 | manual_print manual_endian define gpe_fwd_entry_vnis_get_reply |
| 99 | { |
| 100 | u32 context; |
| 101 | i32 retval; |
| 102 | u32 count; |
| 103 | u32 vnis[count]; |
| 104 | }; |
| 105 | |
Filip Tehlar | 82786c4 | 2017-02-20 15:20:37 +0100 | [diff] [blame] | 106 | define gpe_fwd_entries_get |
Filip Tehlar | 5fae99c | 2017-01-18 12:57:37 +0100 | [diff] [blame] | 107 | { |
| 108 | u32 client_index; |
| 109 | u32 context; |
| 110 | u32 vni; |
| 111 | }; |
| 112 | |
Paul Vinciguerra | e717482 | 2019-08-07 00:05:59 -0400 | [diff] [blame] | 113 | typedef gpe_fwd_entry |
Filip Tehlar | 5fae99c | 2017-01-18 12:57:37 +0100 | [diff] [blame] | 114 | { |
| 115 | u32 fwd_entry_index; |
| 116 | u32 dp_table; |
Jakub Grajciar | 58db6e1 | 2020-01-30 13:26:43 +0100 | [diff] [blame] | 117 | vl_api_eid_t leid; |
| 118 | vl_api_eid_t reid; |
Filip Tehlar | 0eb874e | 2017-05-18 14:23:32 +0200 | [diff] [blame] | 119 | u32 vni; |
| 120 | u8 action; |
Filip Tehlar | 5fae99c | 2017-01-18 12:57:37 +0100 | [diff] [blame] | 121 | }; |
| 122 | |
Filip Tehlar | 82786c4 | 2017-02-20 15:20:37 +0100 | [diff] [blame] | 123 | manual_print manual_endian define gpe_fwd_entries_get_reply |
Filip Tehlar | 5fae99c | 2017-01-18 12:57:37 +0100 | [diff] [blame] | 124 | { |
| 125 | u32 context; |
| 126 | i32 retval; |
| 127 | u32 count; |
Filip Tehlar | 82786c4 | 2017-02-20 15:20:37 +0100 | [diff] [blame] | 128 | vl_api_gpe_fwd_entry_t entries[count]; |
Filip Tehlar | 5fae99c | 2017-01-18 12:57:37 +0100 | [diff] [blame] | 129 | }; |
| 130 | |
Filip Tehlar | 82786c4 | 2017-02-20 15:20:37 +0100 | [diff] [blame] | 131 | define gpe_fwd_entry_path_dump |
Filip Tehlar | 5fae99c | 2017-01-18 12:57:37 +0100 | [diff] [blame] | 132 | { |
| 133 | u32 client_index; |
| 134 | u32 context; |
| 135 | u32 fwd_entry_index; |
| 136 | }; |
| 137 | |
Filip Tehlar | 82786c4 | 2017-02-20 15:20:37 +0100 | [diff] [blame] | 138 | manual_endian manual_print define gpe_fwd_entry_path_details |
Filip Tehlar | 5fae99c | 2017-01-18 12:57:37 +0100 | [diff] [blame] | 139 | { |
Filip Tehlar | 5fae99c | 2017-01-18 12:57:37 +0100 | [diff] [blame] | 140 | u32 context; |
Filip Tehlar | 82786c4 | 2017-02-20 15:20:37 +0100 | [diff] [blame] | 141 | vl_api_gpe_locator_t lcl_loc; |
| 142 | vl_api_gpe_locator_t rmt_loc; |
Filip Tehlar | 5fae99c | 2017-01-18 12:57:37 +0100 | [diff] [blame] | 143 | }; |
| 144 | |
Filip Tehlar | 3e7b5693 | 2017-02-21 18:28:34 +0100 | [diff] [blame] | 145 | /** \brief Set GPE encapsulation mode |
| 146 | @param client_index - opaque cookie to identify the sender |
| 147 | @param context - sender context, to match reply w/ request |
| 148 | @param mode - LISP (value 0) or VXLAN (value 1) |
| 149 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 150 | autoreply define gpe_set_encap_mode |
Filip Tehlar | 3e7b5693 | 2017-02-21 18:28:34 +0100 | [diff] [blame] | 151 | { |
| 152 | u32 client_index; |
| 153 | u32 context; |
Jakub Grajciar | 58db6e1 | 2020-01-30 13:26:43 +0100 | [diff] [blame] | 154 | bool is_vxlan; |
Filip Tehlar | 3e7b5693 | 2017-02-21 18:28:34 +0100 | [diff] [blame] | 155 | }; |
| 156 | |
Filip Tehlar | 3e7b5693 | 2017-02-21 18:28:34 +0100 | [diff] [blame] | 157 | /** \brief get GPE encapsulation mode |
| 158 | @param client_index - opaque cookie to identify the sender |
| 159 | @param context - sender context, to match reply w/ request |
| 160 | @param mode - LISP (value 0) or VXLAN (value 1) |
| 161 | */ |
| 162 | define gpe_get_encap_mode |
| 163 | { |
| 164 | u32 client_index; |
| 165 | u32 context; |
| 166 | }; |
| 167 | |
| 168 | /** \brief Reply for set_encap_mode |
| 169 | @param context - returned sender context, to match reply w/ request |
| 170 | @param retval - return code |
| 171 | @param encap_mode - GPE encapsulation mode |
| 172 | */ |
| 173 | define gpe_get_encap_mode_reply |
| 174 | { |
| 175 | u32 context; |
| 176 | i32 retval; |
Jakub Grajciar | 58db6e1 | 2020-01-30 13:26:43 +0100 | [diff] [blame] | 177 | /* FIXME: gpe encap enum */ |
Filip Tehlar | 3e7b5693 | 2017-02-21 18:28:34 +0100 | [diff] [blame] | 178 | u8 encap_mode; |
| 179 | }; |
| 180 | |
Florin Coras | a4e63e5 | 2017-06-07 21:50:57 -0700 | [diff] [blame] | 181 | /** \brief Add native fwd rpath |
| 182 | @param context - returned sender context, to match reply w/ request |
| 183 | @param retval - return code |
| 184 | @param is_add - flag to indicate add or del |
| 185 | @param table_id - table id for route path |
| 186 | @param nh_sw_if_index - next-hop sw_if_index (~0 if not set) |
| 187 | @param is_ip4 - flag to indicate if nh is ip4 |
| 188 | @param nh_addr - next hop ip address |
| 189 | */ |
| 190 | autoreply define gpe_add_del_native_fwd_rpath |
| 191 | { |
| 192 | u32 client_index; |
| 193 | u32 context; |
Jakub Grajciar | 58db6e1 | 2020-01-30 13:26:43 +0100 | [diff] [blame] | 194 | bool is_add [default=true]; |
Florin Coras | a4e63e5 | 2017-06-07 21:50:57 -0700 | [diff] [blame] | 195 | u32 table_id; |
Jakub Grajciar | 58db6e1 | 2020-01-30 13:26:43 +0100 | [diff] [blame] | 196 | vl_api_interface_index_t nh_sw_if_index; |
| 197 | vl_api_address_t nh_addr; |
Florin Coras | a4e63e5 | 2017-06-07 21:50:57 -0700 | [diff] [blame] | 198 | }; |
| 199 | |
| 200 | /** \brief get GPE native fwd rpath |
| 201 | @param client_index - opaque cookie to identify the sender |
| 202 | @param context - sender context, to match reply w/ request |
| 203 | */ |
| 204 | define gpe_native_fwd_rpaths_get |
| 205 | { |
| 206 | u32 client_index; |
| 207 | u32 context; |
Jakub Grajciar | 58db6e1 | 2020-01-30 13:26:43 +0100 | [diff] [blame] | 208 | bool is_ip4; |
Florin Coras | a4e63e5 | 2017-06-07 21:50:57 -0700 | [diff] [blame] | 209 | }; |
| 210 | |
| 211 | /** \brief Reply for get native fwd rpath |
| 212 | @param context - returned sender context, to match reply w/ request |
| 213 | @param retval - return code |
| 214 | @param table_id - table id for route path |
| 215 | @param nh_sw_if_index - next-hop sw_if_index (~0 if not set) |
| 216 | @param nh_addr - next hop address |
| 217 | */ |
Paul Vinciguerra | e717482 | 2019-08-07 00:05:59 -0400 | [diff] [blame] | 218 | typedef gpe_native_fwd_rpath |
Florin Coras | a4e63e5 | 2017-06-07 21:50:57 -0700 | [diff] [blame] | 219 | { |
Florin Coras | a4e63e5 | 2017-06-07 21:50:57 -0700 | [diff] [blame] | 220 | u32 fib_index; |
Jakub Grajciar | 58db6e1 | 2020-01-30 13:26:43 +0100 | [diff] [blame] | 221 | vl_api_interface_index_t nh_sw_if_index; |
| 222 | vl_api_address_t nh_addr; |
Florin Coras | a4e63e5 | 2017-06-07 21:50:57 -0700 | [diff] [blame] | 223 | }; |
| 224 | |
| 225 | manual_print manual_endian define gpe_native_fwd_rpaths_get_reply |
| 226 | { |
| 227 | u32 context; |
| 228 | i32 retval; |
| 229 | u32 count; |
| 230 | vl_api_gpe_native_fwd_rpath_t entries[count]; |
| 231 | }; |
| 232 | |
Pavel Kotucek | abea966 | 2016-12-21 15:50:08 +0100 | [diff] [blame] | 233 | /* |
| 234 | * Local Variables: |
| 235 | * eval: (c-set-style "gnu") |
| 236 | * End: |
| 237 | */ |