Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 1 | /* |
| 2 | *------------------------------------------------------------------ |
| 3 | * sr_api.c - ipv6 segment routing api |
| 4 | * |
| 5 | * Copyright (c) 2016 Cisco and/or its affiliates. |
| 6 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | * you may not use this file except in compliance with the License. |
| 8 | * You may obtain a copy of the License at: |
| 9 | * |
| 10 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | * |
| 12 | * Unless required by applicable law or agreed to in writing, software |
| 13 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | * See the License for the specific language governing permissions and |
| 16 | * limitations under the License. |
| 17 | *------------------------------------------------------------------ |
| 18 | */ |
| 19 | |
| 20 | #include <vnet/vnet.h> |
Pablo Camarillo | 5d73eec | 2017-04-24 17:51:56 +0200 | [diff] [blame] | 21 | #include <vnet/srv6/sr.h> |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 22 | #include <vlibmemory/api.h> |
| 23 | |
| 24 | #include <vnet/interface.h> |
| 25 | #include <vnet/api_errno.h> |
| 26 | #include <vnet/feature/feature.h> |
| 27 | |
| 28 | #include <vnet/vnet_msg_enum.h> |
| 29 | |
| 30 | #define vl_typedefs /* define message structures */ |
| 31 | #include <vnet/vnet_all_api_h.h> |
| 32 | #undef vl_typedefs |
| 33 | |
| 34 | #define vl_endianfun /* define message structures */ |
| 35 | #include <vnet/vnet_all_api_h.h> |
| 36 | #undef vl_endianfun |
| 37 | |
| 38 | /* instantiate all the print functions we know about */ |
| 39 | #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__) |
| 40 | #define vl_printfun |
| 41 | #include <vnet/vnet_all_api_h.h> |
| 42 | #undef vl_printfun |
| 43 | |
| 44 | #include <vlibapi/api_helper_macros.h> |
| 45 | |
| 46 | #define foreach_vpe_api_msg \ |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 47 | _(SR_LOCALSID_ADD_DEL, sr_localsid_add_del) \ |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 48 | _(SR_POLICY_ADD, sr_policy_add) \ |
| 49 | _(SR_POLICY_MOD, sr_policy_mod) \ |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 50 | _(SR_POLICY_DEL, sr_policy_del) \ |
Pablo Camarillo | 1a5e301 | 2017-11-16 16:02:50 +0100 | [diff] [blame] | 51 | _(SR_STEERING_ADD_DEL, sr_steering_add_del) \ |
| 52 | _(SR_SET_ENCAP_SOURCE, sr_set_encap_source) \ |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 53 | _(SR_LOCALSIDS_DUMP, sr_localsids_dump) \ |
| 54 | _(SR_POLICIES_DUMP, sr_policies_dump) \ |
| 55 | _(SR_STEERING_POL_DUMP, sr_steering_pol_dump) |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 56 | |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 57 | static void vl_api_sr_localsid_add_del_t_handler |
| 58 | (vl_api_sr_localsid_add_del_t * mp) |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 59 | { |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 60 | vl_api_sr_localsid_add_del_reply_t *rmp; |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 61 | int rv = 0; |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 62 | /* |
| 63 | * int sr_cli_localsid (char is_del, ip6_address_t *localsid_addr, |
| 64 | * char end_psp, u8 behavior, u32 sw_if_index, u32 vlan_index, u32 fib_table, |
| 65 | * ip46_address_t *nh_addr, void *ls_plugin_mem) |
| 66 | */ |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 67 | if (mp->behavior == SR_BEHAVIOR_X || |
| 68 | mp->behavior == SR_BEHAVIOR_DX6 || |
| 69 | mp->behavior == SR_BEHAVIOR_DX4 || mp->behavior == SR_BEHAVIOR_DX2) |
| 70 | VALIDATE_SW_IF_INDEX (mp); |
Chris Luke | 879ace3 | 2017-09-26 13:15:16 -0400 | [diff] [blame] | 71 | |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 72 | ip46_address_t prefix; |
| 73 | |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 74 | clib_memset (&prefix, 0, sizeof (ip46_address_t)); |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 75 | if ((mp->nh_addr4[0] | mp->nh_addr4[1] | mp-> |
| 76 | nh_addr4[2] | mp->nh_addr4[3]) != 0) |
| 77 | memcpy (&prefix.ip4, mp->nh_addr4, sizeof (prefix.ip4)); |
| 78 | else |
| 79 | memcpy (&prefix.ip6, mp->nh_addr6, sizeof (prefix.ip6)); |
Chris Luke | 879ace3 | 2017-09-26 13:15:16 -0400 | [diff] [blame] | 80 | |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 81 | rv = sr_cli_localsid (mp->is_del, |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 82 | (ip6_address_t *) & mp->localsid, |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 83 | mp->end_psp, |
| 84 | mp->behavior, |
| 85 | ntohl (mp->sw_if_index), |
| 86 | ntohl (mp->vlan_index), |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 87 | ntohl (mp->fib_table), &prefix, NULL); |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 88 | |
Chris Luke | 879ace3 | 2017-09-26 13:15:16 -0400 | [diff] [blame] | 89 | BAD_SW_IF_INDEX_LABEL; |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 90 | REPLY_MACRO (VL_API_SR_LOCALSID_ADD_DEL_REPLY); |
| 91 | } |
| 92 | |
| 93 | static void |
| 94 | vl_api_sr_policy_add_t_handler (vl_api_sr_policy_add_t * mp) |
| 95 | { |
| 96 | vl_api_sr_policy_add_reply_t *rmp; |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 97 | ip6_address_t *segments = 0, *seg; |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 98 | ip6_address_t *this_address = (ip6_address_t *) mp->sids.sids; |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 99 | |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 100 | int i; |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 101 | for (i = 0; i < mp->sids.num_sids; i++) |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 102 | { |
| 103 | vec_add2 (segments, seg, 1); |
| 104 | clib_memcpy (seg->as_u8, this_address->as_u8, sizeof (*this_address)); |
| 105 | this_address++; |
| 106 | } |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 107 | |
| 108 | /* |
| 109 | * sr_policy_add (ip6_address_t *bsid, ip6_address_t *segments, |
| 110 | * u32 weight, u8 behavior, u32 fib_table, u8 is_encap) |
| 111 | */ |
| 112 | int rv = 0; |
| 113 | rv = sr_policy_add ((ip6_address_t *) & mp->bsid_addr, |
| 114 | segments, |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 115 | ntohl (mp->sids.weight), |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 116 | mp->type, ntohl (mp->fib_table), mp->is_encap); |
John Lo | d23d39c | 2018-09-13 15:08:08 -0400 | [diff] [blame] | 117 | vec_free (segments); |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 118 | |
| 119 | REPLY_MACRO (VL_API_SR_POLICY_ADD_REPLY); |
| 120 | } |
| 121 | |
| 122 | static void |
| 123 | vl_api_sr_policy_mod_t_handler (vl_api_sr_policy_mod_t * mp) |
| 124 | { |
| 125 | vl_api_sr_policy_mod_reply_t *rmp; |
| 126 | |
| 127 | ip6_address_t *segments = 0, *seg; |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 128 | ip6_address_t *this_address = (ip6_address_t *) mp->sids.sids; |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 129 | |
| 130 | int i; |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 131 | for (i = 0; i < mp->sids.num_sids; i++) |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 132 | { |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 133 | vec_add2 (segments, seg, 1); |
| 134 | clib_memcpy (seg->as_u8, this_address->as_u8, sizeof (*this_address)); |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 135 | this_address++; |
| 136 | } |
| 137 | |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 138 | int rv = 0; |
| 139 | /* |
| 140 | * int |
| 141 | * sr_policy_mod(ip6_address_t *bsid, u32 index, u32 fib_table, |
| 142 | * u8 operation, ip6_address_t *segments, u32 sl_index, |
| 143 | * u32 weight, u8 is_encap) |
| 144 | */ |
| 145 | rv = sr_policy_mod ((ip6_address_t *) & mp->bsid_addr, |
| 146 | ntohl (mp->sr_policy_index), |
| 147 | ntohl (mp->fib_table), |
| 148 | mp->operation, |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 149 | segments, ntohl (mp->sl_index), |
| 150 | ntohl (mp->sids.weight)); |
John Lo | d23d39c | 2018-09-13 15:08:08 -0400 | [diff] [blame] | 151 | vec_free (segments); |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 152 | |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 153 | REPLY_MACRO (VL_API_SR_POLICY_MOD_REPLY); |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 154 | } |
| 155 | |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 156 | static void |
| 157 | vl_api_sr_policy_del_t_handler (vl_api_sr_policy_del_t * mp) |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 158 | { |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 159 | vl_api_sr_policy_del_reply_t *rmp; |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 160 | int rv = 0; |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 161 | /* |
| 162 | * int |
| 163 | * sr_policy_del (ip6_address_t *bsid, u32 index) |
| 164 | */ |
| 165 | rv = sr_policy_del ((ip6_address_t *) & mp->bsid_addr, |
| 166 | ntohl (mp->sr_policy_index)); |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 167 | |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 168 | REPLY_MACRO (VL_API_SR_POLICY_DEL_REPLY); |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 169 | } |
| 170 | |
Pablo Camarillo | 1a5e301 | 2017-11-16 16:02:50 +0100 | [diff] [blame] | 171 | static void |
| 172 | vl_api_sr_set_encap_source_t_handler (vl_api_sr_set_encap_source_t * mp) |
| 173 | { |
| 174 | vl_api_sr_set_encap_source_reply_t *rmp; |
| 175 | int rv = 0; |
| 176 | sr_set_source ((ip6_address_t *) & mp->encaps_source); |
| 177 | |
Vratko Polak | 1096b46 | 2019-08-21 18:40:03 +0200 | [diff] [blame] | 178 | REPLY_MACRO (VL_API_SR_SET_ENCAP_SOURCE_REPLY); |
Pablo Camarillo | 1a5e301 | 2017-11-16 16:02:50 +0100 | [diff] [blame] | 179 | } |
| 180 | |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 181 | static void vl_api_sr_steering_add_del_t_handler |
| 182 | (vl_api_sr_steering_add_del_t * mp) |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 183 | { |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 184 | vl_api_sr_steering_add_del_reply_t *rmp; |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 185 | int rv = 0; |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 186 | /* |
| 187 | * int |
| 188 | * sr_steering_policy(int is_del, ip6_address_t *bsid, u32 sr_policy_index, |
| 189 | * u32 table_id, ip46_address_t *prefix, u32 mask_width, u32 sw_if_index, |
| 190 | * u8 traffic_type) |
| 191 | */ |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 192 | if (mp->traffic_type == SR_STEER_L2) |
| 193 | VALIDATE_SW_IF_INDEX (mp); |
Chris Luke | 879ace3 | 2017-09-26 13:15:16 -0400 | [diff] [blame] | 194 | |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 195 | rv = sr_steering_policy (mp->is_del, |
| 196 | (ip6_address_t *) & mp->bsid_addr, |
| 197 | ntohl (mp->sr_policy_index), |
| 198 | ntohl (mp->table_id), |
| 199 | (ip46_address_t *) & mp->prefix_addr, |
| 200 | ntohl (mp->mask_width), |
| 201 | ntohl (mp->sw_if_index), mp->traffic_type); |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 202 | |
Chris Luke | 879ace3 | 2017-09-26 13:15:16 -0400 | [diff] [blame] | 203 | BAD_SW_IF_INDEX_LABEL; |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 204 | REPLY_MACRO (VL_API_SR_STEERING_ADD_DEL_REPLY); |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 205 | } |
| 206 | |
Pablo Camarillo | 1a5e301 | 2017-11-16 16:02:50 +0100 | [diff] [blame] | 207 | static void send_sr_localsid_details |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 208 | (ip6_sr_localsid_t * t, vl_api_registration_t * reg, u32 context) |
Pablo Camarillo | 1a5e301 | 2017-11-16 16:02:50 +0100 | [diff] [blame] | 209 | { |
| 210 | vl_api_sr_localsids_details_t *rmp; |
| 211 | |
| 212 | rmp = vl_msg_api_alloc (sizeof (*rmp)); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 213 | clib_memset (rmp, 0, sizeof (*rmp)); |
Pablo Camarillo | 1a5e301 | 2017-11-16 16:02:50 +0100 | [diff] [blame] | 214 | rmp->_vl_msg_id = ntohs (VL_API_SR_LOCALSIDS_DETAILS); |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 215 | clib_memcpy (rmp->addr.addr, &t->localsid, sizeof (ip6_address_t)); |
Pablo Camarillo | 1a5e301 | 2017-11-16 16:02:50 +0100 | [diff] [blame] | 216 | rmp->end_psp = t->end_psp; |
| 217 | rmp->behavior = htons (t->behavior); |
| 218 | rmp->fib_table = htonl (t->fib_table); |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 219 | rmp->vlan_index = htonl (t->vlan_index); |
| 220 | if (ip46_address_is_ip4 (&t->next_hop)) |
| 221 | clib_memcpy (rmp->xconnect_nh_addr4, &t->next_hop.ip4, |
| 222 | sizeof (ip4_address_t)); |
| 223 | else |
| 224 | clib_memcpy (rmp->xconnect_nh_addr6, &t->next_hop.ip6, |
| 225 | sizeof (ip6_address_t)); |
Pablo Camarillo | 1a5e301 | 2017-11-16 16:02:50 +0100 | [diff] [blame] | 226 | rmp->xconnect_iface_or_vrf_table = htonl (t->sw_if_index); |
| 227 | rmp->context = context; |
| 228 | |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 229 | vl_api_send_msg (reg, (u8 *) rmp); |
Pablo Camarillo | 1a5e301 | 2017-11-16 16:02:50 +0100 | [diff] [blame] | 230 | } |
| 231 | |
| 232 | static void vl_api_sr_localsids_dump_t_handler |
| 233 | (vl_api_sr_localsids_dump_t * mp) |
| 234 | { |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 235 | vl_api_registration_t *reg; |
Pablo Camarillo | 1a5e301 | 2017-11-16 16:02:50 +0100 | [diff] [blame] | 236 | ip6_sr_main_t *sm = &sr_main; |
| 237 | ip6_sr_localsid_t *t; |
| 238 | |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 239 | reg = vl_api_client_index_to_registration (mp->client_index); |
| 240 | if (!reg) |
| 241 | return; |
Pablo Camarillo | 1a5e301 | 2017-11-16 16:02:50 +0100 | [diff] [blame] | 242 | |
| 243 | /* *INDENT-OFF* */ |
| 244 | pool_foreach (t, sm->localsids, |
| 245 | ({ |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 246 | send_sr_localsid_details(t, reg, mp->context); |
Pablo Camarillo | 1a5e301 | 2017-11-16 16:02:50 +0100 | [diff] [blame] | 247 | })); |
| 248 | /* *INDENT-ON* */ |
| 249 | } |
| 250 | |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 251 | static void send_sr_policies_details |
| 252 | (ip6_sr_policy_t * t, vl_api_registration_t * reg, u32 context) |
| 253 | { |
| 254 | vl_api_sr_policies_details_t *rmp; |
| 255 | ip6_sr_main_t *sm = &sr_main; |
| 256 | |
| 257 | u32 *sl_index; |
| 258 | ip6_sr_sl_t *segment_list = 0; |
| 259 | vl_api_srv6_sid_list_t *write_sid_list; |
| 260 | |
| 261 | rmp = vl_msg_api_alloc (sizeof (*rmp) + |
| 262 | vec_len (t->segments_lists) * |
| 263 | sizeof (vl_api_srv6_sid_list_t)); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 264 | clib_memset (rmp, 0, |
| 265 | (sizeof (*rmp) + |
| 266 | vec_len (t->segments_lists) * |
| 267 | sizeof (vl_api_srv6_sid_list_t))); |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 268 | |
| 269 | rmp->_vl_msg_id = ntohs (VL_API_SR_POLICIES_DETAILS); |
| 270 | clib_memcpy (rmp->bsid.addr, &t->bsid, sizeof (ip6_address_t)); |
| 271 | rmp->is_encap = t->is_encap; |
| 272 | rmp->type = t->type; |
| 273 | rmp->fib_table = htonl (t->fib_table); |
| 274 | rmp->num_sid_lists = vec_len (t->segments_lists); |
| 275 | |
| 276 | /* Fill in all the segments lists */ |
| 277 | vec_foreach (sl_index, t->segments_lists) |
| 278 | { |
| 279 | segment_list = pool_elt_at_index (sm->sid_lists, *sl_index); |
| 280 | write_sid_list = &rmp->sid_lists[sl_index - t->segments_lists]; |
| 281 | write_sid_list->num_sids = vec_len (segment_list->segments); |
| 282 | write_sid_list->weight = htonl (segment_list->weight); |
| 283 | clib_memcpy (write_sid_list->sids, segment_list->segments, |
| 284 | vec_len (segment_list->segments) * sizeof (ip6_address_t)); |
| 285 | } |
| 286 | |
| 287 | rmp->context = context; |
| 288 | vl_api_send_msg (reg, (u8 *) rmp); |
| 289 | } |
| 290 | |
| 291 | static void |
| 292 | vl_api_sr_policies_dump_t_handler (vl_api_sr_policies_dump_t * mp) |
| 293 | { |
| 294 | vl_api_registration_t *reg; |
| 295 | ip6_sr_main_t *sm = &sr_main; |
| 296 | ip6_sr_policy_t *t; |
| 297 | |
| 298 | reg = vl_api_client_index_to_registration (mp->client_index); |
| 299 | if (!reg) |
| 300 | return; |
| 301 | |
| 302 | /* *INDENT-OFF* */ |
| 303 | pool_foreach (t, sm->sr_policies, |
| 304 | ({ |
| 305 | send_sr_policies_details(t, reg, mp->context); |
| 306 | })); |
| 307 | /* *INDENT-ON* */ |
| 308 | } |
| 309 | |
| 310 | static void send_sr_steering_pol_details |
| 311 | (ip6_sr_steering_policy_t * t, vl_api_registration_t * reg, u32 context) |
| 312 | { |
| 313 | vl_api_sr_steering_pol_details_t *rmp; |
| 314 | ip6_sr_main_t *sm = &sr_main; |
| 315 | |
| 316 | rmp = vl_msg_api_alloc (sizeof (*rmp)); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 317 | clib_memset (rmp, 0, sizeof (*rmp)); |
Pablo Camarillo | 3337bd2 | 2018-06-19 15:49:02 +0200 | [diff] [blame] | 318 | rmp->_vl_msg_id = ntohs (VL_API_SR_STEERING_POL_DETAILS); |
| 319 | |
| 320 | //Get the SR policy BSID |
| 321 | ip6_sr_policy_t *p; |
| 322 | p = pool_elt_at_index (sm->sr_policies, t->sr_policy); |
| 323 | clib_memcpy (rmp->bsid.addr, &p->bsid, sizeof (ip6_address_t)); |
| 324 | |
| 325 | //Get the steering |
| 326 | rmp->traffic_type = t->classify.traffic_type; |
| 327 | rmp->fib_table = htonl (t->classify.l3.fib_table); |
| 328 | rmp->mask_width = htonl (t->classify.l3.mask_width); |
| 329 | if (ip46_address_is_ip4 (&t->classify.l3.prefix)) |
| 330 | clib_memcpy (rmp->prefix_addr, &t->classify.l3.prefix.ip4, |
| 331 | sizeof (ip4_address_t)); |
| 332 | else |
| 333 | clib_memcpy (rmp->prefix_addr, &t->classify.l3.prefix.ip6, |
| 334 | sizeof (ip6_address_t)); |
| 335 | |
| 336 | rmp->sw_if_index = htonl (t->classify.l2.sw_if_index); |
| 337 | |
| 338 | rmp->context = context; |
| 339 | vl_api_send_msg (reg, (u8 *) rmp); |
| 340 | } |
| 341 | |
| 342 | static void vl_api_sr_steering_pol_dump_t_handler |
| 343 | (vl_api_sr_policies_dump_t * mp) |
| 344 | { |
| 345 | vl_api_registration_t *reg; |
| 346 | ip6_sr_main_t *sm = &sr_main; |
| 347 | ip6_sr_steering_policy_t *t; |
| 348 | |
| 349 | reg = vl_api_client_index_to_registration (mp->client_index); |
| 350 | if (!reg) |
| 351 | return; |
| 352 | |
| 353 | /* *INDENT-OFF* */ |
| 354 | pool_foreach (t, sm->steer_policies, |
| 355 | ({ |
| 356 | send_sr_steering_pol_details(t, reg, mp->context); |
| 357 | })); |
| 358 | /* *INDENT-ON* */ |
| 359 | } |
Pablo Camarillo | 1a5e301 | 2017-11-16 16:02:50 +0100 | [diff] [blame] | 360 | |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 361 | /* |
| 362 | * sr_api_hookup |
| 363 | * Add vpe's API message handlers to the table. |
Jim Thompson | f324dec | 2019-04-08 03:22:21 -0500 | [diff] [blame] | 364 | * vlib has already mapped shared memory and |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 365 | * added the client registration handlers. |
| 366 | * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process() |
| 367 | */ |
| 368 | #define vl_msg_name_crc_list |
| 369 | #include <vnet/vnet_all_api_h.h> |
| 370 | #undef vl_msg_name_crc_list |
| 371 | |
| 372 | static void |
| 373 | setup_message_id_table (api_main_t * am) |
| 374 | { |
| 375 | #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id); |
| 376 | foreach_vl_msg_name_crc_sr; |
| 377 | #undef _ |
| 378 | } |
| 379 | |
| 380 | static clib_error_t * |
| 381 | sr_api_hookup (vlib_main_t * vm) |
| 382 | { |
| 383 | api_main_t *am = &api_main; |
| 384 | |
| 385 | #define _(N,n) \ |
| 386 | vl_msg_api_set_handlers(VL_API_##N, #n, \ |
| 387 | vl_api_##n##_t_handler, \ |
| 388 | vl_noop_handler, \ |
| 389 | vl_api_##n##_t_endian, \ |
| 390 | vl_api_##n##_t_print, \ |
| 391 | sizeof(vl_api_##n##_t), 1); |
| 392 | foreach_vpe_api_msg; |
| 393 | #undef _ |
| 394 | |
| 395 | /* |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 396 | * Set up the (msg_name, crc, message-id) table |
| 397 | */ |
| 398 | setup_message_id_table (am); |
| 399 | |
| 400 | return 0; |
| 401 | } |
| 402 | |
| 403 | VLIB_API_INIT_FUNCTION (sr_api_hookup); |
| 404 | |
| 405 | /* |
| 406 | * fd.io coding-style-patch-verification: ON |
| 407 | * |
| 408 | * Local Variables: |
| 409 | * eval: (c-set-style "gnu") |
| 410 | * End: |
| 411 | */ |