Dave Barach | 0d056e5 | 2017-09-28 15:11:16 -0400 | [diff] [blame] | 1 | /* Hey Emacs use -*- mode: C -*- */ |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2015-2016 Cisco and/or its affiliates. |
| 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 | */ |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 16 | |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 17 | option version = "2.0.0"; |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 18 | |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 19 | import "vnet/interface_types.api"; |
| 20 | import "vnet/ip/ip_types.api"; |
| 21 | import "vnet/srv6/sr_types.api"; |
| 22 | |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 23 | |
Paul Vinciguerra | e717482 | 2019-08-07 00:05:59 -0400 | [diff] [blame] | 24 | typedef srv6_sid_list |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 25 | { |
| 26 | u8 num_sids; |
| 27 | u32 weight; |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 28 | vl_api_ip6_address_t sids[16]; |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 29 | }; |
Dave Barach | 0d056e5 | 2017-09-28 15:11:16 -0400 | [diff] [blame] | 30 | |
Chinmaya Agarwal | 30fa97d | 2020-07-13 22:34:12 +0530 | [diff] [blame] | 31 | typedef srv6_sid_list_with_sl_index |
| 32 | { |
| 33 | u8 num_sids; |
| 34 | u32 weight; |
| 35 | u32 sl_index; |
| 36 | vl_api_ip6_address_t sids[16]; |
| 37 | }; |
| 38 | |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 39 | /** \brief IPv6 SR LocalSID add/del request |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 40 | @param client_index - opaque cookie to identify the sender |
| 41 | @param context - sender context, to match reply w/ request |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 42 | @param is_del Boolean of whether its a delete instruction |
| 43 | @param localsid_addr IPv6 address of the localsid |
| 44 | @param end_psp Boolean of whether decapsulation is allowed in this function |
| 45 | @param behavior Type of behavior (function) for this localsid |
Dave Barach | 0d056e5 | 2017-09-28 15:11:16 -0400 | [diff] [blame] | 46 | @param sw_if_index Only for L2/L3 xconnect. OIF. In VRF variant the |
Paul Vinciguerra | c0e9441 | 2020-04-28 01:12:04 -0400 | [diff] [blame] | 47 | fib_table. Default:0xffffffff |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 48 | @param vlan_index Only for L2 xconnect. Outgoing VLAN tag. |
| 49 | @param fib_table FIB table in which we should install the localsid entry |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 50 | @param nh_addr Next Hop IPv46 address. Only for L2/L3 xconnect. |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 51 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 52 | autoreply define sr_localsid_add_del |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 53 | { |
| 54 | u32 client_index; |
| 55 | u32 context; |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 56 | bool is_del [default=false]; |
| 57 | vl_api_ip6_address_t localsid; |
| 58 | bool end_psp; |
| 59 | vl_api_sr_behavior_t behavior; |
Paul Vinciguerra | c0e9441 | 2020-04-28 01:12:04 -0400 | [diff] [blame] | 60 | vl_api_interface_index_t sw_if_index [default=0xffffffff]; |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 61 | u32 vlan_index; |
| 62 | u32 fib_table; |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 63 | vl_api_address_t nh_addr; |
Juraj Sloboda | e9fcf23 | 2018-04-23 10:14:37 +0200 | [diff] [blame] | 64 | }; |
| 65 | |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 66 | /** \brief IPv6 SR policy add |
| 67 | @param client_index - opaque cookie to identify the sender |
| 68 | @param context - sender context, to match reply w/ request |
| 69 | @param bsid is the bindingSID of the SR Policy |
| 70 | @param weight is the weight of the sid list. optional. |
| 71 | @param is_encap is the behavior of the SR policy. (0.SRH insert // 1.Encapsulation) |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 72 | @param is_spray is the type of the SR policy. (0.Default // 1.Spray) |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 73 | @param fib_table is the VRF where to install the FIB entry for the BSID |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 74 | @param sids is a srv6_sid_list object |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 75 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 76 | autoreply define sr_policy_add |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 77 | { |
| 78 | u32 client_index; |
| 79 | u32 context; |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 80 | vl_api_ip6_address_t bsid_addr; |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 81 | u32 weight; |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 82 | bool is_encap; |
| 83 | bool is_spray; |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 84 | u32 fib_table; |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 85 | vl_api_srv6_sid_list_t sids; |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 86 | }; |
| 87 | |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 88 | /** \brief IPv6 SR policy modification |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 89 | @param client_index - opaque cookie to identify the sender |
| 90 | @param context - sender context, to match reply w/ request |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 91 | @param bsid is the bindingSID of the SR Policy |
| 92 | @param sr_policy_index is the index of the SR policy |
| 93 | @param fib_table is the VRF where to install the FIB entry for the BSID |
| 94 | @param operation is the operation to perform (among the top ones) |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 95 | @param sl_index is the index of the Segment List to modify/delete |
| 96 | @param weight is the weight of the sid list. optional. |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 97 | @param sids is a srv6_sid_list object |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 98 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 99 | autoreply define sr_policy_mod |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 100 | { |
| 101 | u32 client_index; |
| 102 | u32 context; |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 103 | vl_api_ip6_address_t bsid_addr; |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 104 | u32 sr_policy_index; |
| 105 | u32 fib_table; |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 106 | vl_api_sr_policy_op_t operation; |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 107 | u32 sl_index; |
| 108 | u32 weight; |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 109 | vl_api_srv6_sid_list_t sids; |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 110 | }; |
| 111 | |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 112 | /** \brief IPv6 SR policy deletion |
| 113 | @param client_index - opaque cookie to identify the sender |
| 114 | @param context - sender context, to match reply w/ request |
| 115 | @param bsid is the bindingSID of the SR Policy |
| 116 | @param index is the index of the SR policy |
| 117 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 118 | autoreply define sr_policy_del |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 119 | { |
| 120 | u32 client_index; |
| 121 | u32 context; |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 122 | vl_api_ip6_address_t bsid_addr; |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 123 | u32 sr_policy_index; |
| 124 | }; |
| 125 | |
Pablo Camarillo | 1a5e301 | 2017-11-16 16:02:50 +0100 | [diff] [blame] | 126 | /** \brief IPv6 SR Set SRv6 encapsulation source |
| 127 | @param client_index - opaque cookie to identify the sender |
| 128 | @param context - sender context, to match reply w/ request |
| 129 | @param bsid is the bindingSID of the SR Policy |
| 130 | @param index is the index of the SR policy |
| 131 | */ |
| 132 | autoreply define sr_set_encap_source |
| 133 | { |
| 134 | u32 client_index; |
| 135 | u32 context; |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 136 | vl_api_ip6_address_t encaps_source; |
Pablo Camarillo | 1a5e301 | 2017-11-16 16:02:50 +0100 | [diff] [blame] | 137 | }; |
| 138 | |
Ignas Bačius | eeb5fb3 | 2019-10-03 17:15:38 +0300 | [diff] [blame] | 139 | /** \brief IPv6 SR Set SRv6 encapsulation hop-limit |
| 140 | @param client_index - opaque cookie to identify the sender |
| 141 | @param context - sender context, to match reply w/ request |
| 142 | @param hop_limit is the hop-limit value to set |
| 143 | */ |
| 144 | autoreply define sr_set_encap_hop_limit |
| 145 | { |
| 146 | u32 client_index; |
| 147 | u32 context; |
| 148 | u8 hop_limit; |
| 149 | }; |
| 150 | |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 151 | /** \brief IPv6 SR steering add/del |
| 152 | @param client_index - opaque cookie to identify the sender |
| 153 | @param context - sender context, to match reply w/ request |
| 154 | @param is_del |
| 155 | @param bsid is the bindingSID of the SR Policy (alt to sr_policy_index) |
| 156 | @param sr_policy is the index of the SR Policy (alt to bsid) |
| 157 | @param table_id is the VRF where to install the FIB entry for the BSID |
| 158 | @param prefix is the IPv4/v6 address for L3 traffic type |
| 159 | @param mask_width is the mask for L3 traffic type |
| 160 | @param sw_if_index is the incoming interface for L2 traffic |
| 161 | @param traffic_type describes the type of traffic |
| 162 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 163 | autoreply define sr_steering_add_del |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 164 | { |
| 165 | u32 client_index; |
| 166 | u32 context; |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 167 | bool is_del [default=false]; |
| 168 | vl_api_ip6_address_t bsid_addr; |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 169 | u32 sr_policy_index; |
| 170 | u32 table_id; |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 171 | vl_api_prefix_t prefix; |
| 172 | vl_api_interface_index_t sw_if_index; |
| 173 | vl_api_sr_steer_t traffic_type; |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 174 | }; |
| 175 | |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 176 | /** \brief Dump the list of SR LocalSIDs |
| 177 | @param client_index - opaque cookie to identify the sender |
| 178 | @param context - sender context, to match reply w/ request |
| 179 | */ |
Pablo Camarillo | 1a5e301 | 2017-11-16 16:02:50 +0100 | [diff] [blame] | 180 | define sr_localsids_dump |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 181 | { |
| 182 | u32 client_index; |
| 183 | u32 context; |
Pablo Camarillo | 1a5e301 | 2017-11-16 16:02:50 +0100 | [diff] [blame] | 184 | }; |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 185 | |
Pablo Camarillo | 1a5e301 | 2017-11-16 16:02:50 +0100 | [diff] [blame] | 186 | define sr_localsids_details |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 187 | { |
| 188 | u32 context; |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 189 | vl_api_ip6_address_t addr; |
| 190 | bool end_psp; |
| 191 | vl_api_sr_behavior_t behavior; |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 192 | u32 fib_table; |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 193 | u32 vlan_index; |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 194 | vl_api_address_t xconnect_nh_addr; |
Pablo Camarillo | 1a5e301 | 2017-11-16 16:02:50 +0100 | [diff] [blame] | 195 | u32 xconnect_iface_or_vrf_table; |
| 196 | }; |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 197 | |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 198 | /** \brief Dump the list of SR policies |
| 199 | @param client_index - opaque cookie to identify the sender |
| 200 | @param context - sender context, to match reply w/ request |
| 201 | */ |
| 202 | define sr_policies_dump |
| 203 | { |
| 204 | u32 client_index; |
| 205 | u32 context; |
| 206 | }; |
| 207 | |
Chinmaya Agarwal | 30fa97d | 2020-07-13 22:34:12 +0530 | [diff] [blame] | 208 | |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 209 | define sr_policies_details |
| 210 | { |
| 211 | u32 context; |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 212 | vl_api_ip6_address_t bsid; |
| 213 | bool is_spray; |
| 214 | bool is_encap; |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 215 | u32 fib_table; |
| 216 | u8 num_sid_lists; |
| 217 | vl_api_srv6_sid_list_t sid_lists[num_sid_lists]; |
| 218 | }; |
| 219 | |
Chinmaya Agarwal | 30fa97d | 2020-07-13 22:34:12 +0530 | [diff] [blame] | 220 | /** \brief Dump the list of SR policies along with actual segment list index on VPP |
| 221 | @param client_index - opaque cookie to identify the sender |
| 222 | @param context - sender context, to match reply w/ request |
| 223 | */ |
| 224 | define sr_policies_with_sl_index_dump |
| 225 | { |
| 226 | u32 client_index; |
| 227 | u32 context; |
| 228 | option status="in_progress"; |
| 229 | }; |
| 230 | |
| 231 | |
| 232 | define sr_policies_with_sl_index_details |
| 233 | { |
| 234 | u32 context; |
| 235 | vl_api_ip6_address_t bsid; |
| 236 | bool is_spray; |
| 237 | bool is_encap; |
| 238 | u32 fib_table; |
| 239 | u8 num_sid_lists; |
| 240 | vl_api_srv6_sid_list_with_sl_index_t sid_lists[num_sid_lists]; |
| 241 | option status="in_progress"; |
| 242 | }; |
| 243 | |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 244 | /** \brief Dump the steering policies |
| 245 | @param client_index - opaque cookie to identify the sender |
| 246 | @param context - sender context, to match reply w/ request |
| 247 | */ |
| 248 | define sr_steering_pol_dump |
| 249 | { |
| 250 | u32 client_index; |
| 251 | u32 context; |
| 252 | }; |
| 253 | |
| 254 | define sr_steering_pol_details |
| 255 | { |
| 256 | u32 context; |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 257 | vl_api_sr_steer_t traffic_type; |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 258 | u32 fib_table; |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 259 | vl_api_prefix_t prefix; |
| 260 | vl_api_interface_index_t sw_if_index; |
| 261 | vl_api_ip6_address_t bsid; |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 262 | }; |
| 263 | |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 264 | /* |
Dave Barach | 0d056e5 | 2017-09-28 15:11:16 -0400 | [diff] [blame] | 265 | * fd.io coding-style-patch-verification: OFF |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 266 | * Local Variables: |
| 267 | * eval: (c-set-style "gnu") |
| 268 | * End: |
| 269 | */ |