Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 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 | |
| 16 | #include <vnet/lisp-gpe/lisp_gpe_fwd_entry.h> |
| 17 | #include <vnet/lisp-gpe/lisp_gpe_adjacency.h> |
| 18 | #include <vnet/lisp-gpe/lisp_gpe_tenant.h> |
| 19 | #include <vnet/lisp-cp/lisp_cp_dpo.h> |
| 20 | #include <vnet/fib/fib_table.h> |
| 21 | #include <vnet/fib/fib_entry.h> |
| 22 | #include <vnet/fib/fib_path_list.h> |
| 23 | #include <vnet/fib/ip6_fib.h> |
| 24 | #include <vnet/fib/ip4_fib.h> |
| 25 | #include <vnet/dpo/drop_dpo.h> |
| 26 | #include <vnet/dpo/lookup_dpo.h> |
| 27 | #include <vnet/dpo/load_balance.h> |
| 28 | #include <vnet/adj/adj_midchain.h> |
| 29 | |
| 30 | /** |
| 31 | * @brief Add route to IP4 or IP6 Destination FIB. |
| 32 | * |
| 33 | * Add a route to the destination FIB that results in the lookup |
| 34 | * in the SRC FIB. The SRC FIB is created is it does not yet exist. |
| 35 | * |
| 36 | * @param[in] dst_table_id Destination FIB Table-ID |
| 37 | * @param[in] dst_prefix Destination IP prefix. |
| 38 | * |
| 39 | * @return src_fib_index The index/ID of the SRC FIB created. |
| 40 | */ |
| 41 | static u32 |
| 42 | ip_dst_fib_add_route (u32 dst_fib_index, const ip_prefix_t * dst_prefix) |
| 43 | { |
| 44 | fib_node_index_t src_fib_index; |
| 45 | fib_prefix_t dst_fib_prefix; |
| 46 | fib_node_index_t dst_fei; |
| 47 | |
| 48 | ASSERT (NULL != dst_prefix); |
| 49 | |
| 50 | ip_prefix_to_fib_prefix (dst_prefix, &dst_fib_prefix); |
| 51 | |
| 52 | /* |
| 53 | * lookup the destination prefix in the VRF table and retrieve the |
| 54 | * LISP associated data |
| 55 | */ |
| 56 | dst_fei = fib_table_lookup_exact_match (dst_fib_index, &dst_fib_prefix); |
| 57 | |
| 58 | /* |
| 59 | * If the FIB entry is not present, or not LISP sourced, add it |
| 60 | */ |
| 61 | if (dst_fei == FIB_NODE_INDEX_INVALID || |
| 62 | NULL == fib_entry_get_source_data (dst_fei, FIB_SOURCE_LISP)) |
| 63 | { |
Neale Ranns | 948e00f | 2016-10-20 13:39:34 +0100 | [diff] [blame] | 64 | dpo_id_t src_lkup_dpo = DPO_INVALID; |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 65 | |
| 66 | /* create a new src FIB. */ |
| 67 | src_fib_index = |
| 68 | fib_table_create_and_lock (dst_fib_prefix.fp_proto, |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 69 | FIB_SOURCE_LISP, |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 70 | "LISP-src for [%d,%U]", |
| 71 | dst_fib_index, |
| 72 | format_fib_prefix, &dst_fib_prefix); |
Filip Tehlar | d5fcc46 | 2016-10-17 16:20:18 +0200 | [diff] [blame] | 73 | /* |
| 74 | * add src fib default route |
| 75 | */ |
| 76 | fib_prefix_t prefix = { |
| 77 | .fp_proto = dst_fib_prefix.fp_proto, |
| 78 | }; |
| 79 | fib_table_entry_special_dpo_add (src_fib_index, &prefix, |
| 80 | FIB_SOURCE_LISP, |
| 81 | FIB_ENTRY_FLAG_EXCLUSIVE, |
| 82 | lisp_cp_dpo_get (fib_proto_to_dpo |
| 83 | (dst_fib_prefix.fp_proto))); |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 84 | /* |
| 85 | * create a data-path object to perform the source address lookup |
| 86 | * in the SRC FIB |
| 87 | */ |
| 88 | lookup_dpo_add_or_lock_w_fib_index (src_fib_index, |
| 89 | (ip_prefix_version (dst_prefix) == |
| 90 | IP6 ? DPO_PROTO_IP6 : |
| 91 | DPO_PROTO_IP4), |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 92 | LOOKUP_UNICAST, |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 93 | LOOKUP_INPUT_SRC_ADDR, |
| 94 | LOOKUP_TABLE_FROM_CONFIG, |
| 95 | &src_lkup_dpo); |
| 96 | |
| 97 | /* |
| 98 | * add the entry to the destination FIB that uses the lookup DPO |
| 99 | */ |
| 100 | dst_fei = fib_table_entry_special_dpo_add (dst_fib_index, |
| 101 | &dst_fib_prefix, |
| 102 | FIB_SOURCE_LISP, |
| 103 | FIB_ENTRY_FLAG_EXCLUSIVE, |
| 104 | &src_lkup_dpo); |
| 105 | |
| 106 | /* |
| 107 | * the DPO is locked by the FIB entry, and we have no further |
| 108 | * need for it. |
| 109 | */ |
| 110 | dpo_unlock (&src_lkup_dpo); |
| 111 | |
| 112 | /* |
| 113 | * save the SRC FIB index on the entry so we can retrieve it for |
| 114 | * subsequent routes. |
| 115 | */ |
| 116 | fib_entry_set_source_data (dst_fei, FIB_SOURCE_LISP, &src_fib_index); |
| 117 | } |
| 118 | else |
| 119 | { |
| 120 | /* |
| 121 | * destination FIB entry already present |
| 122 | */ |
| 123 | src_fib_index = *(u32 *) fib_entry_get_source_data (dst_fei, |
| 124 | FIB_SOURCE_LISP); |
| 125 | } |
| 126 | |
| 127 | return (src_fib_index); |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * @brief Del route to IP4 or IP6 SD FIB. |
| 132 | * |
| 133 | * Remove routes from both destination and source FIBs. |
| 134 | * |
| 135 | * @param[in] src_fib_index The index/ID of the SRC FIB |
| 136 | * @param[in] src_prefix Source IP prefix. |
| 137 | * @param[in] dst_fib_index The index/ID of the DST FIB |
| 138 | * @param[in] dst_prefix Destination IP prefix. |
| 139 | */ |
| 140 | static void |
| 141 | ip_src_dst_fib_del_route (u32 src_fib_index, |
| 142 | const ip_prefix_t * src_prefix, |
| 143 | u32 dst_fib_index, const ip_prefix_t * dst_prefix) |
| 144 | { |
| 145 | fib_prefix_t dst_fib_prefix, src_fib_prefix; |
Florin Coras | 8479440 | 2016-11-29 17:14:06 -0800 | [diff] [blame] | 146 | u8 have_default = 0; |
| 147 | u32 n_entries; |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 148 | |
| 149 | ASSERT (NULL != dst_prefix); |
| 150 | ASSERT (NULL != src_prefix); |
| 151 | |
| 152 | ip_prefix_to_fib_prefix (dst_prefix, &dst_fib_prefix); |
| 153 | ip_prefix_to_fib_prefix (src_prefix, &src_fib_prefix); |
| 154 | |
| 155 | fib_table_entry_delete (src_fib_index, &src_fib_prefix, FIB_SOURCE_LISP); |
| 156 | |
Florin Coras | 8479440 | 2016-11-29 17:14:06 -0800 | [diff] [blame] | 157 | /* check if only default left or empty */ |
| 158 | fib_prefix_t default_pref = { |
| 159 | .fp_proto = dst_fib_prefix.fp_proto |
| 160 | }; |
| 161 | |
| 162 | if (fib_table_lookup_exact_match (src_fib_index, |
| 163 | &default_pref) != FIB_NODE_INDEX_INVALID) |
| 164 | have_default = 1; |
| 165 | |
| 166 | n_entries = fib_table_get_num_entries (src_fib_index, |
| 167 | src_fib_prefix.fp_proto, |
| 168 | FIB_SOURCE_LISP); |
| 169 | if (n_entries == 0 || (have_default && n_entries == 1)) |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 170 | { |
| 171 | /* |
Florin Coras | feeebfe | 2016-11-27 22:33:01 -0800 | [diff] [blame] | 172 | * remove src FIB default route |
| 173 | */ |
Florin Coras | 8479440 | 2016-11-29 17:14:06 -0800 | [diff] [blame] | 174 | if (have_default) |
| 175 | fib_table_entry_special_remove (src_fib_index, &default_pref, |
| 176 | FIB_SOURCE_LISP); |
Florin Coras | feeebfe | 2016-11-27 22:33:01 -0800 | [diff] [blame] | 177 | |
| 178 | /* |
| 179 | * there's nothing left now, unlock the source FIB and the |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 180 | * destination route |
| 181 | */ |
| 182 | fib_table_entry_special_remove (dst_fib_index, |
| 183 | &dst_fib_prefix, FIB_SOURCE_LISP); |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 184 | fib_table_unlock (src_fib_index, src_fib_prefix.fp_proto, |
| 185 | FIB_SOURCE_LISP); |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 186 | } |
| 187 | } |
| 188 | |
| 189 | /** |
| 190 | * @brief Add route to IP4 or IP6 SRC FIB. |
| 191 | * |
| 192 | * Adds a route to in the LISP SRC FIB with the result of the route |
| 193 | * being the DPO passed. |
| 194 | * |
| 195 | * @param[in] src_fib_index The index/ID of the SRC FIB |
| 196 | * @param[in] src_prefix Source IP prefix. |
| 197 | * @param[in] src_dpo The DPO the route will link to. |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 198 | * |
| 199 | * @return fib index of the inserted prefix |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 200 | */ |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 201 | static fib_node_index_t |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 202 | ip_src_fib_add_route_w_dpo (u32 src_fib_index, |
| 203 | const ip_prefix_t * src_prefix, |
| 204 | const dpo_id_t * src_dpo) |
| 205 | { |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 206 | fib_node_index_t fei = ~0; |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 207 | fib_prefix_t src_fib_prefix; |
| 208 | |
| 209 | ip_prefix_to_fib_prefix (src_prefix, &src_fib_prefix); |
| 210 | |
| 211 | /* |
| 212 | * add the entry into the source fib. |
| 213 | */ |
| 214 | fib_node_index_t src_fei; |
| 215 | |
| 216 | src_fei = fib_table_lookup_exact_match (src_fib_index, &src_fib_prefix); |
| 217 | |
| 218 | if (FIB_NODE_INDEX_INVALID == src_fei || |
| 219 | !fib_entry_is_sourced (src_fei, FIB_SOURCE_LISP)) |
| 220 | { |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 221 | fei = fib_table_entry_special_dpo_add (src_fib_index, |
| 222 | &src_fib_prefix, |
| 223 | FIB_SOURCE_LISP, |
| 224 | FIB_ENTRY_FLAG_EXCLUSIVE, |
| 225 | src_dpo); |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 226 | } |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 227 | return fei; |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 228 | } |
| 229 | |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 230 | static fib_route_path_t * |
| 231 | lisp_gpe_mk_fib_paths (const lisp_fwd_path_t * paths) |
| 232 | { |
| 233 | const lisp_gpe_adjacency_t *ladj; |
| 234 | fib_route_path_t *rpaths = NULL; |
Neale Ranns | da78f95 | 2017-05-24 09:15:43 -0700 | [diff] [blame] | 235 | fib_protocol_t fp; |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 236 | u8 best_priority; |
| 237 | u32 ii; |
| 238 | |
| 239 | vec_validate (rpaths, vec_len (paths) - 1); |
| 240 | |
| 241 | best_priority = paths[0].priority; |
| 242 | |
| 243 | vec_foreach_index (ii, paths) |
| 244 | { |
| 245 | if (paths[0].priority != best_priority) |
| 246 | break; |
| 247 | |
| 248 | ladj = lisp_gpe_adjacency_get (paths[ii].lisp_adj); |
| 249 | |
Neale Ranns | da78f95 | 2017-05-24 09:15:43 -0700 | [diff] [blame] | 250 | ip_address_to_46 (&ladj->remote_rloc, &rpaths[ii].frp_addr, &fp); |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 251 | |
Neale Ranns | da78f95 | 2017-05-24 09:15:43 -0700 | [diff] [blame] | 252 | rpaths[ii].frp_proto = fib_proto_to_dpo (fp); |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 253 | rpaths[ii].frp_sw_if_index = ladj->sw_if_index; |
| 254 | rpaths[ii].frp_weight = (paths[ii].weight ? paths[ii].weight : 1); |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 255 | } |
| 256 | |
| 257 | ASSERT (0 != vec_len (rpaths)); |
| 258 | |
| 259 | return (rpaths); |
| 260 | } |
| 261 | |
| 262 | /** |
| 263 | * @brief Add route to IP4 or IP6 SRC FIB. |
| 264 | * |
| 265 | * Adds a route to in the LISP SRC FIB for the tunnel. |
| 266 | * |
| 267 | * @param[in] src_fib_index The index/ID of the SRC FIB |
| 268 | * @param[in] src_prefix Source IP prefix. |
| 269 | * @param[in] paths The paths from which to construct the |
| 270 | * load balance |
| 271 | */ |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 272 | static fib_node_index_t |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 273 | ip_src_fib_add_route (u32 src_fib_index, |
| 274 | const ip_prefix_t * src_prefix, |
| 275 | const lisp_fwd_path_t * paths) |
| 276 | { |
| 277 | fib_prefix_t src_fib_prefix; |
| 278 | fib_route_path_t *rpaths; |
| 279 | |
| 280 | ip_prefix_to_fib_prefix (src_prefix, &src_fib_prefix); |
| 281 | |
| 282 | rpaths = lisp_gpe_mk_fib_paths (paths); |
| 283 | |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 284 | fib_node_index_t fib_entry_index = |
| 285 | fib_table_entry_update (src_fib_index, &src_fib_prefix, FIB_SOURCE_LISP, |
| 286 | FIB_ENTRY_FLAG_NONE, rpaths); |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 287 | vec_free (rpaths); |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 288 | return fib_entry_index; |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 289 | } |
| 290 | |
Florin Coras | a4e63e5 | 2017-06-07 21:50:57 -0700 | [diff] [blame] | 291 | static void |
| 292 | gpe_native_fwd_add_del_lfe (lisp_gpe_fwd_entry_t * lfe, u8 is_add) |
| 293 | { |
| 294 | lisp_gpe_main_t *lgm = vnet_lisp_gpe_get_main (); |
| 295 | u8 found = 0, ip_version; |
| 296 | u32 *lfei, new_lfei; |
| 297 | ip_version = ip_prefix_version (&lfe->key->rmt.ippref); |
| 298 | |
| 299 | new_lfei = lfe - lgm->lisp_fwd_entry_pool; |
| 300 | vec_foreach (lfei, lgm->native_fwd_lfes[ip_version]) |
| 301 | { |
| 302 | lfe = pool_elt_at_index (lgm->lisp_fwd_entry_pool, lfei[0]); |
| 303 | if (lfei[0] == new_lfei) |
| 304 | { |
| 305 | found = 1; |
| 306 | break; |
| 307 | } |
| 308 | } |
| 309 | |
| 310 | if (is_add) |
| 311 | { |
| 312 | if (!found) |
| 313 | vec_add1 (lgm->native_fwd_lfes[ip_version], new_lfei); |
| 314 | } |
| 315 | else |
| 316 | { |
| 317 | if (found) |
| 318 | vec_del1 (lgm->native_fwd_lfes[ip_version], lfei[0]); |
| 319 | } |
| 320 | } |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 321 | |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 322 | static index_t |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 323 | create_fib_entries (lisp_gpe_fwd_entry_t * lfe) |
| 324 | { |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 325 | fib_node_index_t fi; |
| 326 | fib_entry_t *fe; |
Florin Coras | a4e63e5 | 2017-06-07 21:50:57 -0700 | [diff] [blame] | 327 | lisp_gpe_main_t *lgm = vnet_lisp_gpe_get_main (); |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 328 | dpo_proto_t dproto; |
Filip Tehlar | 25ad0ea | 2017-04-04 15:26:54 +0200 | [diff] [blame] | 329 | ip_prefix_t ippref; |
Florin Coras | a4e63e5 | 2017-06-07 21:50:57 -0700 | [diff] [blame] | 330 | fib_prefix_t fib_prefix; |
| 331 | u8 ip_version = ip_prefix_version (&lfe->key->rmt.ippref); |
| 332 | dproto = (ip_version == IP4 ? DPO_PROTO_IP4 : DPO_PROTO_IP6); |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 333 | |
Filip Tehlar | 25ad0ea | 2017-04-04 15:26:54 +0200 | [diff] [blame] | 334 | if (lfe->is_src_dst) |
| 335 | { |
| 336 | lfe->src_fib_index = ip_dst_fib_add_route (lfe->eid_fib_index, |
| 337 | &lfe->key->rmt.ippref); |
| 338 | memcpy (&ippref, &lfe->key->lcl.ippref, sizeof (ippref)); |
| 339 | } |
| 340 | else |
| 341 | { |
| 342 | lfe->src_fib_index = lfe->eid_fib_index; |
| 343 | memcpy (&ippref, &lfe->key->rmt.ippref, sizeof (ippref)); |
| 344 | } |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 345 | |
| 346 | if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE == lfe->type) |
| 347 | { |
Neale Ranns | 948e00f | 2016-10-20 13:39:34 +0100 | [diff] [blame] | 348 | dpo_id_t dpo = DPO_INVALID; |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 349 | |
| 350 | switch (lfe->action) |
| 351 | { |
Florin Coras | a4e63e5 | 2017-06-07 21:50:57 -0700 | [diff] [blame] | 352 | case LISP_FORWARD_NATIVE: |
| 353 | /* TODO handle route overlaps with fib and default route */ |
| 354 | if (vec_len (lgm->native_fwd_rpath[ip_version])) |
| 355 | { |
| 356 | ip_prefix_to_fib_prefix (&lfe->key->rmt.ippref, &fib_prefix); |
Florin Coras | a4393be | 2017-09-12 20:24:00 -0400 | [diff] [blame^] | 357 | fi = fib_table_entry_update (lfe->eid_fib_index, &fib_prefix, |
| 358 | FIB_SOURCE_LISP, |
| 359 | FIB_ENTRY_FLAG_NONE, |
| 360 | lgm->native_fwd_rpath[ip_version]); |
Florin Coras | a4e63e5 | 2017-06-07 21:50:57 -0700 | [diff] [blame] | 361 | gpe_native_fwd_add_del_lfe (lfe, 1); |
Florin Coras | a4393be | 2017-09-12 20:24:00 -0400 | [diff] [blame^] | 362 | goto done; |
Florin Coras | a4e63e5 | 2017-06-07 21:50:57 -0700 | [diff] [blame] | 363 | } |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 364 | case LISP_NO_ACTION: |
| 365 | /* TODO update timers? */ |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 366 | case LISP_SEND_MAP_REQUEST: |
| 367 | /* insert tunnel that always sends map-request */ |
| 368 | dpo_copy (&dpo, lisp_cp_dpo_get (dproto)); |
| 369 | break; |
| 370 | case LISP_DROP: |
| 371 | /* for drop fwd entries, just add route, no need to add encap tunnel */ |
| 372 | dpo_copy (&dpo, drop_dpo_get (dproto)); |
| 373 | break; |
| 374 | } |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 375 | fi = ip_src_fib_add_route_w_dpo (lfe->src_fib_index, &ippref, &dpo); |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 376 | dpo_reset (&dpo); |
| 377 | } |
| 378 | else |
| 379 | { |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 380 | fi = ip_src_fib_add_route (lfe->src_fib_index, &ippref, lfe->paths); |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 381 | } |
Florin Coras | a4393be | 2017-09-12 20:24:00 -0400 | [diff] [blame^] | 382 | done: |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 383 | fe = fib_entry_get (fi); |
| 384 | return fe->fe_lb.dpoi_index; |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | static void |
| 388 | delete_fib_entries (lisp_gpe_fwd_entry_t * lfe) |
| 389 | { |
Filip Tehlar | ed6b52b | 2017-03-22 09:02:33 +0100 | [diff] [blame] | 390 | fib_prefix_t dst_fib_prefix; |
| 391 | |
| 392 | if (lfe->is_src_dst) |
| 393 | ip_src_dst_fib_del_route (lfe->src_fib_index, |
| 394 | &lfe->key->lcl.ippref, |
| 395 | lfe->eid_fib_index, &lfe->key->rmt.ippref); |
| 396 | else |
| 397 | { |
| 398 | ip_prefix_to_fib_prefix (&lfe->key->rmt.ippref, &dst_fib_prefix); |
| 399 | fib_table_entry_delete (lfe->src_fib_index, &dst_fib_prefix, |
| 400 | FIB_SOURCE_LISP); |
Florin Coras | a4e63e5 | 2017-06-07 21:50:57 -0700 | [diff] [blame] | 401 | gpe_native_fwd_add_del_lfe (lfe, 0); |
Filip Tehlar | ed6b52b | 2017-03-22 09:02:33 +0100 | [diff] [blame] | 402 | } |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 403 | } |
| 404 | |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 405 | static lisp_gpe_fwd_entry_t * |
| 406 | find_fwd_entry (lisp_gpe_main_t * lgm, |
| 407 | vnet_lisp_gpe_add_del_fwd_entry_args_t * a, |
| 408 | lisp_gpe_fwd_entry_key_t * key) |
| 409 | { |
| 410 | uword *p; |
| 411 | |
| 412 | memset (key, 0, sizeof (*key)); |
| 413 | |
| 414 | if (GID_ADDR_IP_PREFIX == gid_address_type (&a->rmt_eid)) |
| 415 | { |
| 416 | /* |
| 417 | * the ip version of the source is not set to ip6 when the |
| 418 | * source is all zeros. force it. |
| 419 | */ |
| 420 | ip_prefix_version (&gid_address_ippref (&a->lcl_eid)) = |
| 421 | ip_prefix_version (&gid_address_ippref (&a->rmt_eid)); |
| 422 | } |
| 423 | |
| 424 | gid_to_dp_address (&a->rmt_eid, &key->rmt); |
| 425 | gid_to_dp_address (&a->lcl_eid, &key->lcl); |
| 426 | key->vni = a->vni; |
| 427 | |
| 428 | p = hash_get_mem (lgm->lisp_gpe_fwd_entries, key); |
| 429 | |
| 430 | if (NULL != p) |
| 431 | { |
| 432 | return (pool_elt_at_index (lgm->lisp_fwd_entry_pool, p[0])); |
| 433 | } |
| 434 | return (NULL); |
| 435 | } |
| 436 | |
| 437 | static int |
| 438 | lisp_gpe_fwd_entry_path_sort (void *a1, void *a2) |
| 439 | { |
| 440 | lisp_fwd_path_t *p1 = a1, *p2 = a2; |
| 441 | |
| 442 | return (p1->priority - p2->priority); |
| 443 | } |
| 444 | |
| 445 | static void |
| 446 | lisp_gpe_fwd_entry_mk_paths (lisp_gpe_fwd_entry_t * lfe, |
| 447 | vnet_lisp_gpe_add_del_fwd_entry_args_t * a) |
| 448 | { |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 449 | lisp_fwd_path_t *path; |
| 450 | u32 index; |
| 451 | |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 452 | vec_validate (lfe->paths, vec_len (a->locator_pairs) - 1); |
| 453 | |
| 454 | vec_foreach_index (index, a->locator_pairs) |
| 455 | { |
| 456 | path = &lfe->paths[index]; |
| 457 | |
| 458 | path->priority = a->locator_pairs[index].priority; |
| 459 | path->weight = a->locator_pairs[index].weight; |
| 460 | |
| 461 | path->lisp_adj = |
| 462 | lisp_gpe_adjacency_find_or_create_and_lock (&a->locator_pairs |
| 463 | [index], |
Filip Tehlar | d5fcc46 | 2016-10-17 16:20:18 +0200 | [diff] [blame] | 464 | a->dp_table, lfe->key->vni); |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 465 | } |
| 466 | vec_sort_with_function (lfe->paths, lisp_gpe_fwd_entry_path_sort); |
| 467 | } |
| 468 | |
Filip Tehlar | 2151191 | 2017-04-07 10:41:42 +0200 | [diff] [blame] | 469 | void |
| 470 | vnet_lisp_gpe_add_fwd_counters (vnet_lisp_gpe_add_del_fwd_entry_args_t * a, |
| 471 | u32 fwd_entry_index) |
| 472 | { |
| 473 | const lisp_gpe_adjacency_t *ladj; |
| 474 | lisp_fwd_path_t *path; |
| 475 | lisp_gpe_main_t *lgm = vnet_lisp_gpe_get_main (); |
| 476 | u8 *dummy_elt; |
| 477 | lisp_gpe_fwd_entry_t *lfe; |
| 478 | lisp_gpe_fwd_entry_key_t fe_key; |
| 479 | lisp_stats_key_t key; |
| 480 | |
| 481 | lfe = find_fwd_entry (lgm, a, &fe_key); |
| 482 | |
Filip Tehlar | 761787b | 2017-06-06 15:32:52 +0200 | [diff] [blame] | 483 | if (!lfe) |
| 484 | return; |
| 485 | |
Filip Tehlar | 2151191 | 2017-04-07 10:41:42 +0200 | [diff] [blame] | 486 | if (LISP_GPE_FWD_ENTRY_TYPE_NORMAL != lfe->type) |
| 487 | return; |
| 488 | |
| 489 | memset (&key, 0, sizeof (key)); |
| 490 | key.fwd_entry_index = fwd_entry_index; |
| 491 | |
| 492 | vec_foreach (path, lfe->paths) |
| 493 | { |
| 494 | ladj = lisp_gpe_adjacency_get (path->lisp_adj); |
| 495 | key.tunnel_index = ladj->tunnel_index; |
| 496 | lisp_stats_key_t *key_copy = clib_mem_alloc (sizeof (*key_copy)); |
| 497 | memcpy (key_copy, &key, sizeof (*key_copy)); |
| 498 | pool_get (lgm->dummy_stats_pool, dummy_elt); |
| 499 | hash_set_mem (lgm->lisp_stats_index_by_key, key_copy, |
| 500 | dummy_elt - lgm->dummy_stats_pool); |
| 501 | |
| 502 | vlib_validate_combined_counter (&lgm->counters, |
| 503 | dummy_elt - lgm->dummy_stats_pool); |
| 504 | vlib_zero_combined_counter (&lgm->counters, |
| 505 | dummy_elt - lgm->dummy_stats_pool); |
| 506 | } |
| 507 | } |
| 508 | |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 509 | /** |
| 510 | * @brief Add/Delete LISP IP forwarding entry. |
| 511 | * |
| 512 | * creation of forwarding entries for IP LISP overlay: |
| 513 | * |
| 514 | * @param[in] lgm Reference to @ref lisp_gpe_main_t. |
| 515 | * @param[in] a Parameters for building the forwarding entry. |
| 516 | * |
| 517 | * @return 0 on success. |
| 518 | */ |
| 519 | static int |
| 520 | add_ip_fwd_entry (lisp_gpe_main_t * lgm, |
| 521 | vnet_lisp_gpe_add_del_fwd_entry_args_t * a) |
| 522 | { |
| 523 | lisp_gpe_fwd_entry_key_t key; |
| 524 | lisp_gpe_fwd_entry_t *lfe; |
| 525 | fib_protocol_t fproto; |
| 526 | |
| 527 | lfe = find_fwd_entry (lgm, a, &key); |
| 528 | |
| 529 | if (NULL != lfe) |
| 530 | /* don't support updates */ |
| 531 | return VNET_API_ERROR_INVALID_VALUE; |
| 532 | |
| 533 | pool_get (lgm->lisp_fwd_entry_pool, lfe); |
| 534 | memset (lfe, 0, sizeof (*lfe)); |
| 535 | lfe->key = clib_mem_alloc (sizeof (key)); |
| 536 | memcpy (lfe->key, &key, sizeof (key)); |
| 537 | |
| 538 | hash_set_mem (lgm->lisp_gpe_fwd_entries, lfe->key, |
| 539 | lfe - lgm->lisp_fwd_entry_pool); |
Filip Tehlar | 560274d | 2017-06-05 13:40:13 +0200 | [diff] [blame] | 540 | a->fwd_entry_index = lfe - lgm->lisp_fwd_entry_pool; |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 541 | |
| 542 | fproto = (IP4 == ip_prefix_version (&fid_addr_ippref (&lfe->key->rmt)) ? |
| 543 | FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6); |
| 544 | |
| 545 | lfe->type = (a->is_negative ? |
| 546 | LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE : |
| 547 | LISP_GPE_FWD_ENTRY_TYPE_NORMAL); |
| 548 | lfe->tenant = lisp_gpe_tenant_find_or_create (lfe->key->vni); |
| 549 | lfe->eid_table_id = a->table_id; |
| 550 | lfe->eid_fib_index = fib_table_find_or_create_and_lock (fproto, |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 551 | lfe->eid_table_id, |
| 552 | FIB_SOURCE_LISP); |
Filip Tehlar | ed6b52b | 2017-03-22 09:02:33 +0100 | [diff] [blame] | 553 | lfe->is_src_dst = a->is_src_dst; |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 554 | |
| 555 | if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE != lfe->type) |
| 556 | { |
| 557 | lisp_gpe_fwd_entry_mk_paths (lfe, a); |
| 558 | } |
Filip Tehlar | 0eb874e | 2017-05-18 14:23:32 +0200 | [diff] [blame] | 559 | else |
| 560 | { |
| 561 | lfe->action = a->action; |
| 562 | } |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 563 | |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 564 | lfe->dpoi_index = create_fib_entries (lfe); |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 565 | return (0); |
| 566 | } |
| 567 | |
| 568 | static void |
| 569 | del_ip_fwd_entry_i (lisp_gpe_main_t * lgm, lisp_gpe_fwd_entry_t * lfe) |
| 570 | { |
| 571 | lisp_fwd_path_t *path; |
| 572 | fib_protocol_t fproto; |
| 573 | |
Filip Tehlar | 612a383 | 2017-05-26 12:10:53 +0200 | [diff] [blame] | 574 | if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE != lfe->type) |
| 575 | { |
| 576 | vec_foreach (path, lfe->paths) |
| 577 | { |
| 578 | lisp_gpe_adjacency_unlock (path->lisp_adj); |
| 579 | } |
| 580 | } |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 581 | |
| 582 | delete_fib_entries (lfe); |
| 583 | |
| 584 | fproto = (IP4 == ip_prefix_version (&fid_addr_ippref (&lfe->key->rmt)) ? |
| 585 | FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6); |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 586 | fib_table_unlock (lfe->eid_fib_index, fproto, FIB_SOURCE_LISP); |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 587 | |
| 588 | hash_unset_mem (lgm->lisp_gpe_fwd_entries, lfe->key); |
| 589 | clib_mem_free (lfe->key); |
| 590 | pool_put (lgm->lisp_fwd_entry_pool, lfe); |
| 591 | } |
| 592 | |
| 593 | /** |
| 594 | * @brief Add/Delete LISP IP forwarding entry. |
| 595 | * |
| 596 | * removal of forwarding entries for IP LISP overlay: |
| 597 | * |
| 598 | * @param[in] lgm Reference to @ref lisp_gpe_main_t. |
| 599 | * @param[in] a Parameters for building the forwarding entry. |
| 600 | * |
| 601 | * @return 0 on success. |
| 602 | */ |
| 603 | static int |
| 604 | del_ip_fwd_entry (lisp_gpe_main_t * lgm, |
| 605 | vnet_lisp_gpe_add_del_fwd_entry_args_t * a) |
| 606 | { |
| 607 | lisp_gpe_fwd_entry_key_t key; |
| 608 | lisp_gpe_fwd_entry_t *lfe; |
| 609 | |
| 610 | lfe = find_fwd_entry (lgm, a, &key); |
| 611 | |
| 612 | if (NULL == lfe) |
| 613 | /* no such entry */ |
| 614 | return VNET_API_ERROR_INVALID_VALUE; |
| 615 | |
| 616 | del_ip_fwd_entry_i (lgm, lfe); |
| 617 | |
| 618 | return (0); |
| 619 | } |
| 620 | |
| 621 | static void |
| 622 | make_mac_fib_key (BVT (clib_bihash_kv) * kv, u16 bd_index, u8 src_mac[6], |
| 623 | u8 dst_mac[6]) |
| 624 | { |
| 625 | kv->key[0] = (((u64) bd_index) << 48) | mac_to_u64 (dst_mac); |
| 626 | kv->key[1] = mac_to_u64 (src_mac); |
| 627 | kv->key[2] = 0; |
| 628 | } |
| 629 | |
| 630 | /** |
| 631 | * @brief Lookup L2 SD FIB entry |
| 632 | * |
| 633 | * Does a vni + dest + source lookup in the L2 LISP FIB. If the lookup fails |
| 634 | * it tries a second time with source set to 0 (i.e., a simple dest lookup). |
| 635 | * |
| 636 | * @param[in] lgm Reference to @ref lisp_gpe_main_t. |
| 637 | * @param[in] bd_index Bridge domain index. |
| 638 | * @param[in] src_mac Source mac address. |
| 639 | * @param[in] dst_mac Destination mac address. |
| 640 | * |
| 641 | * @return index of mapping matching the lookup key. |
| 642 | */ |
| 643 | index_t |
| 644 | lisp_l2_fib_lookup (lisp_gpe_main_t * lgm, u16 bd_index, u8 src_mac[6], |
| 645 | u8 dst_mac[6]) |
| 646 | { |
| 647 | int rv; |
| 648 | BVT (clib_bihash_kv) kv, value; |
| 649 | |
| 650 | make_mac_fib_key (&kv, bd_index, src_mac, dst_mac); |
| 651 | rv = BV (clib_bihash_search_inline_2) (&lgm->l2_fib, &kv, &value); |
| 652 | |
| 653 | /* no match, try with src 0, catch all for dst */ |
| 654 | if (rv != 0) |
| 655 | { |
| 656 | kv.key[1] = 0; |
| 657 | rv = BV (clib_bihash_search_inline_2) (&lgm->l2_fib, &kv, &value); |
| 658 | if (rv == 0) |
| 659 | return value.value; |
| 660 | } |
Filip Tehlar | d5fcc46 | 2016-10-17 16:20:18 +0200 | [diff] [blame] | 661 | else |
| 662 | return value.value; |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 663 | |
| 664 | return lisp_gpe_main.l2_lb_cp_lkup.dpoi_index; |
| 665 | } |
| 666 | |
| 667 | /** |
| 668 | * @brief Add/del L2 SD FIB entry |
| 669 | * |
| 670 | * Inserts value in L2 FIB keyed by vni + dest + source. If entry is |
| 671 | * overwritten the associated value is returned. |
| 672 | * |
| 673 | * @param[in] lgm Reference to @ref lisp_gpe_main_t. |
| 674 | * @param[in] bd_index Bridge domain index. |
| 675 | * @param[in] src_mac Source mac address. |
| 676 | * @param[in] dst_mac Destination mac address. |
| 677 | * @param[in] val Value to add. |
| 678 | * @param[in] is_add Add/del flag. |
| 679 | * |
| 680 | * @return ~0 or value of overwritten entry. |
| 681 | */ |
| 682 | static u32 |
| 683 | lisp_l2_fib_add_del_entry (u16 bd_index, u8 src_mac[6], |
| 684 | u8 dst_mac[6], const dpo_id_t * dpo, u8 is_add) |
| 685 | { |
| 686 | lisp_gpe_main_t *lgm = &lisp_gpe_main; |
| 687 | BVT (clib_bihash_kv) kv, value; |
| 688 | u32 old_val = ~0; |
| 689 | |
| 690 | make_mac_fib_key (&kv, bd_index, src_mac, dst_mac); |
| 691 | |
| 692 | if (BV (clib_bihash_search) (&lgm->l2_fib, &kv, &value) == 0) |
| 693 | old_val = value.value; |
| 694 | |
| 695 | if (!is_add) |
| 696 | BV (clib_bihash_add_del) (&lgm->l2_fib, &kv, 0 /* is_add */ ); |
| 697 | else |
| 698 | { |
| 699 | kv.value = dpo->dpoi_index; |
| 700 | BV (clib_bihash_add_del) (&lgm->l2_fib, &kv, 1 /* is_add */ ); |
| 701 | } |
| 702 | return old_val; |
| 703 | } |
| 704 | |
| 705 | #define L2_FIB_DEFAULT_HASH_NUM_BUCKETS (64 * 1024) |
| 706 | #define L2_FIB_DEFAULT_HASH_MEMORY_SIZE (32<<20) |
| 707 | |
| 708 | static void |
| 709 | l2_fib_init (lisp_gpe_main_t * lgm) |
| 710 | { |
| 711 | index_t lbi; |
| 712 | |
| 713 | BV (clib_bihash_init) (&lgm->l2_fib, "l2 fib", |
| 714 | 1 << max_log2 (L2_FIB_DEFAULT_HASH_NUM_BUCKETS), |
| 715 | L2_FIB_DEFAULT_HASH_MEMORY_SIZE); |
| 716 | |
| 717 | /* |
| 718 | * the result from a 'miss' in a L2 Table |
| 719 | */ |
| 720 | lbi = load_balance_create (1, DPO_PROTO_ETHERNET, 0); |
| 721 | load_balance_set_bucket (lbi, 0, lisp_cp_dpo_get (DPO_PROTO_ETHERNET)); |
| 722 | |
| 723 | dpo_set (&lgm->l2_lb_cp_lkup, DPO_LOAD_BALANCE, DPO_PROTO_ETHERNET, lbi); |
| 724 | } |
| 725 | |
| 726 | static void |
| 727 | del_l2_fwd_entry_i (lisp_gpe_main_t * lgm, lisp_gpe_fwd_entry_t * lfe) |
| 728 | { |
| 729 | lisp_fwd_path_t *path; |
| 730 | |
Florin Coras | 2ccf768 | 2016-10-04 18:03:49 +0300 | [diff] [blame] | 731 | if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE != lfe->type) |
| 732 | { |
| 733 | vec_foreach (path, lfe->paths) |
| 734 | { |
| 735 | lisp_gpe_adjacency_unlock (path->lisp_adj); |
| 736 | } |
| 737 | fib_path_list_child_remove (lfe->l2.path_list_index, |
| 738 | lfe->l2.child_index); |
| 739 | } |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 740 | |
| 741 | lisp_l2_fib_add_del_entry (lfe->l2.eid_bd_index, |
| 742 | fid_addr_mac (&lfe->key->lcl), |
| 743 | fid_addr_mac (&lfe->key->rmt), NULL, 0); |
| 744 | |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 745 | hash_unset_mem (lgm->lisp_gpe_fwd_entries, lfe->key); |
| 746 | clib_mem_free (lfe->key); |
| 747 | pool_put (lgm->lisp_fwd_entry_pool, lfe); |
| 748 | } |
| 749 | |
| 750 | /** |
| 751 | * @brief Delete LISP L2 forwarding entry. |
| 752 | * |
| 753 | * Coordinates the removal of forwarding entries for L2 LISP overlay: |
| 754 | * |
| 755 | * @param[in] lgm Reference to @ref lisp_gpe_main_t. |
| 756 | * @param[in] a Parameters for building the forwarding entry. |
| 757 | * |
| 758 | * @return 0 on success. |
| 759 | */ |
| 760 | static int |
| 761 | del_l2_fwd_entry (lisp_gpe_main_t * lgm, |
| 762 | vnet_lisp_gpe_add_del_fwd_entry_args_t * a) |
| 763 | { |
| 764 | lisp_gpe_fwd_entry_key_t key; |
| 765 | lisp_gpe_fwd_entry_t *lfe; |
| 766 | |
| 767 | lfe = find_fwd_entry (lgm, a, &key); |
| 768 | |
Florin Coras | 2ccf768 | 2016-10-04 18:03:49 +0300 | [diff] [blame] | 769 | if (NULL == lfe) |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 770 | return VNET_API_ERROR_INVALID_VALUE; |
| 771 | |
| 772 | del_l2_fwd_entry_i (lgm, lfe); |
| 773 | |
| 774 | return (0); |
| 775 | } |
| 776 | |
| 777 | /** |
Florin Coras | ce1b4c7 | 2017-01-26 14:25:34 -0800 | [diff] [blame] | 778 | * @brief Construct and insert the forwarding information used by an L2 entry |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 779 | */ |
| 780 | static void |
| 781 | lisp_gpe_l2_update_fwding (lisp_gpe_fwd_entry_t * lfe) |
| 782 | { |
| 783 | lisp_gpe_main_t *lgm = &lisp_gpe_main; |
Neale Ranns | 948e00f | 2016-10-20 13:39:34 +0100 | [diff] [blame] | 784 | dpo_id_t dpo = DPO_INVALID; |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 785 | |
| 786 | if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE != lfe->type) |
| 787 | { |
| 788 | fib_path_list_contribute_forwarding (lfe->l2.path_list_index, |
| 789 | FIB_FORW_CHAIN_TYPE_ETHERNET, |
| 790 | &lfe->l2.dpo); |
| 791 | dpo_copy (&dpo, &lfe->l2.dpo); |
| 792 | } |
| 793 | else |
| 794 | { |
Florin Coras | ce1b4c7 | 2017-01-26 14:25:34 -0800 | [diff] [blame] | 795 | switch (lfe->action) |
| 796 | { |
| 797 | case SEND_MAP_REQUEST: |
| 798 | dpo_copy (&dpo, &lgm->l2_lb_cp_lkup); |
| 799 | break; |
| 800 | case NO_ACTION: |
| 801 | case FORWARD_NATIVE: |
| 802 | case DROP: |
| 803 | dpo_copy (&dpo, drop_dpo_get (DPO_PROTO_ETHERNET)); |
| 804 | } |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 805 | } |
| 806 | |
| 807 | /* add entry to l2 lisp fib */ |
| 808 | lisp_l2_fib_add_del_entry (lfe->l2.eid_bd_index, |
| 809 | fid_addr_mac (&lfe->key->lcl), |
| 810 | fid_addr_mac (&lfe->key->rmt), &dpo, 1); |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 811 | lfe->dpoi_index = dpo.dpoi_index; |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 812 | |
| 813 | dpo_reset (&dpo); |
| 814 | } |
| 815 | |
| 816 | /** |
| 817 | * @brief Add LISP L2 forwarding entry. |
| 818 | * |
| 819 | * Coordinates the creation of forwarding entries for L2 LISP overlay: |
| 820 | * creates lisp-gpe tunnel and injects new entry in Source/Dest L2 FIB. |
| 821 | * |
| 822 | * @param[in] lgm Reference to @ref lisp_gpe_main_t. |
| 823 | * @param[in] a Parameters for building the forwarding entry. |
| 824 | * |
| 825 | * @return 0 on success. |
| 826 | */ |
| 827 | static int |
| 828 | add_l2_fwd_entry (lisp_gpe_main_t * lgm, |
| 829 | vnet_lisp_gpe_add_del_fwd_entry_args_t * a) |
| 830 | { |
| 831 | lisp_gpe_fwd_entry_key_t key; |
| 832 | bd_main_t *bdm = &bd_main; |
| 833 | lisp_gpe_fwd_entry_t *lfe; |
| 834 | uword *bd_indexp; |
| 835 | |
| 836 | bd_indexp = hash_get (bdm->bd_index_by_bd_id, a->bd_id); |
| 837 | if (!bd_indexp) |
| 838 | { |
| 839 | clib_warning ("bridge domain %d doesn't exist", a->bd_id); |
| 840 | return -1; |
| 841 | } |
| 842 | |
| 843 | lfe = find_fwd_entry (lgm, a, &key); |
| 844 | |
| 845 | if (NULL != lfe) |
| 846 | /* don't support updates */ |
| 847 | return VNET_API_ERROR_INVALID_VALUE; |
| 848 | |
| 849 | pool_get (lgm->lisp_fwd_entry_pool, lfe); |
| 850 | memset (lfe, 0, sizeof (*lfe)); |
| 851 | lfe->key = clib_mem_alloc (sizeof (key)); |
| 852 | memcpy (lfe->key, &key, sizeof (key)); |
| 853 | |
| 854 | hash_set_mem (lgm->lisp_gpe_fwd_entries, lfe->key, |
| 855 | lfe - lgm->lisp_fwd_entry_pool); |
Filip Tehlar | 560274d | 2017-06-05 13:40:13 +0200 | [diff] [blame] | 856 | a->fwd_entry_index = lfe - lgm->lisp_fwd_entry_pool; |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 857 | |
| 858 | lfe->type = (a->is_negative ? |
| 859 | LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE : |
| 860 | LISP_GPE_FWD_ENTRY_TYPE_NORMAL); |
| 861 | lfe->l2.eid_bd_id = a->bd_id; |
| 862 | lfe->l2.eid_bd_index = bd_indexp[0]; |
| 863 | lfe->tenant = lisp_gpe_tenant_find_or_create (lfe->key->vni); |
| 864 | |
| 865 | if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE != lfe->type) |
| 866 | { |
| 867 | fib_route_path_t *rpaths; |
| 868 | |
| 869 | /* |
| 870 | * Make the sorted array of LISP paths with their resp. adjacency |
| 871 | */ |
| 872 | lisp_gpe_fwd_entry_mk_paths (lfe, a); |
| 873 | |
| 874 | /* |
| 875 | * From the LISP paths, construct a FIB path list that will |
| 876 | * contribute a load-balance. |
| 877 | */ |
| 878 | rpaths = lisp_gpe_mk_fib_paths (lfe->paths); |
| 879 | |
| 880 | lfe->l2.path_list_index = |
| 881 | fib_path_list_create (FIB_PATH_LIST_FLAG_NONE, rpaths); |
| 882 | |
| 883 | /* |
| 884 | * become a child of the path-list so we receive updates when |
| 885 | * its forwarding state changes. this includes an implicit lock. |
| 886 | */ |
| 887 | lfe->l2.child_index = |
| 888 | fib_path_list_child_add (lfe->l2.path_list_index, |
| 889 | FIB_NODE_TYPE_LISP_GPE_FWD_ENTRY, |
| 890 | lfe - lgm->lisp_fwd_entry_pool); |
| 891 | } |
| 892 | else |
| 893 | { |
| 894 | lfe->action = a->action; |
| 895 | } |
| 896 | |
| 897 | lisp_gpe_l2_update_fwding (lfe); |
| 898 | |
| 899 | return 0; |
| 900 | } |
| 901 | |
| 902 | /** |
Florin Coras | ce1b4c7 | 2017-01-26 14:25:34 -0800 | [diff] [blame] | 903 | * @brief Lookup NSH SD FIB entry |
| 904 | * |
| 905 | * Does an SPI+SI lookup in the NSH LISP FIB. |
| 906 | * |
| 907 | * @param[in] lgm Reference to @ref lisp_gpe_main_t. |
| 908 | * @param[in] spi_si SPI + SI. |
| 909 | * |
| 910 | * @return next node index. |
| 911 | */ |
| 912 | const dpo_id_t * |
Florin Coras | 263440e | 2017-02-22 23:38:08 -0800 | [diff] [blame] | 913 | lisp_nsh_fib_lookup (lisp_gpe_main_t * lgm, u32 spi_si_net_order) |
Florin Coras | ce1b4c7 | 2017-01-26 14:25:34 -0800 | [diff] [blame] | 914 | { |
| 915 | int rv; |
| 916 | BVT (clib_bihash_kv) kv, value; |
| 917 | |
| 918 | memset (&kv, 0, sizeof (kv)); |
Florin Coras | 263440e | 2017-02-22 23:38:08 -0800 | [diff] [blame] | 919 | kv.key[0] = spi_si_net_order; |
Florin Coras | ce1b4c7 | 2017-01-26 14:25:34 -0800 | [diff] [blame] | 920 | rv = BV (clib_bihash_search_inline_2) (&lgm->nsh_fib, &kv, &value); |
| 921 | |
| 922 | if (rv != 0) |
| 923 | { |
| 924 | return lgm->nsh_cp_lkup; |
| 925 | } |
| 926 | else |
| 927 | { |
| 928 | lisp_gpe_fwd_entry_t *lfe; |
| 929 | lfe = pool_elt_at_index (lgm->lisp_fwd_entry_pool, value.value); |
| 930 | return &lfe->nsh.choice; |
| 931 | } |
| 932 | } |
| 933 | |
| 934 | /** |
| 935 | * @brief Add/del NSH FIB entry |
| 936 | * |
| 937 | * Inserts value in NSH FIB keyed by SPI+SI. If entry is |
| 938 | * overwritten the associated value is returned. |
| 939 | * |
| 940 | * @param[in] lgm Reference to @ref lisp_gpe_main_t. |
| 941 | * @param[in] spi_si SPI + SI. |
| 942 | * @param[in] dpo Load balanced mapped to SPI + SI |
| 943 | * |
| 944 | * @return ~0 or value of overwritten entry. |
| 945 | */ |
| 946 | static u32 |
Florin Coras | 263440e | 2017-02-22 23:38:08 -0800 | [diff] [blame] | 947 | lisp_nsh_fib_add_del_entry (u32 spi_si_host_order, u32 lfei, u8 is_add) |
Florin Coras | ce1b4c7 | 2017-01-26 14:25:34 -0800 | [diff] [blame] | 948 | { |
| 949 | lisp_gpe_main_t *lgm = &lisp_gpe_main; |
| 950 | BVT (clib_bihash_kv) kv, value; |
| 951 | u32 old_val = ~0; |
| 952 | |
| 953 | memset (&kv, 0, sizeof (kv)); |
Florin Coras | 263440e | 2017-02-22 23:38:08 -0800 | [diff] [blame] | 954 | kv.key[0] = clib_host_to_net_u32 (spi_si_host_order); |
Florin Coras | ce1b4c7 | 2017-01-26 14:25:34 -0800 | [diff] [blame] | 955 | kv.value = 0ULL; |
| 956 | |
| 957 | if (BV (clib_bihash_search) (&lgm->nsh_fib, &kv, &value) == 0) |
| 958 | old_val = value.value; |
| 959 | |
| 960 | if (!is_add) |
| 961 | BV (clib_bihash_add_del) (&lgm->nsh_fib, &kv, 0 /* is_add */ ); |
| 962 | else |
| 963 | { |
| 964 | kv.value = lfei; |
| 965 | BV (clib_bihash_add_del) (&lgm->nsh_fib, &kv, 1 /* is_add */ ); |
| 966 | } |
| 967 | return old_val; |
| 968 | } |
| 969 | |
| 970 | #define NSH_FIB_DEFAULT_HASH_NUM_BUCKETS (64 * 1024) |
| 971 | #define NSH_FIB_DEFAULT_HASH_MEMORY_SIZE (32<<20) |
| 972 | |
| 973 | static void |
| 974 | nsh_fib_init (lisp_gpe_main_t * lgm) |
| 975 | { |
| 976 | BV (clib_bihash_init) (&lgm->nsh_fib, "nsh fib", |
| 977 | 1 << max_log2 (NSH_FIB_DEFAULT_HASH_NUM_BUCKETS), |
| 978 | NSH_FIB_DEFAULT_HASH_MEMORY_SIZE); |
| 979 | |
| 980 | /* |
| 981 | * the result from a 'miss' in a NSH Table |
| 982 | */ |
| 983 | lgm->nsh_cp_lkup = lisp_cp_dpo_get (DPO_PROTO_NSH); |
| 984 | } |
| 985 | |
| 986 | static void |
| 987 | del_nsh_fwd_entry_i (lisp_gpe_main_t * lgm, lisp_gpe_fwd_entry_t * lfe) |
| 988 | { |
| 989 | lisp_fwd_path_t *path; |
| 990 | |
| 991 | if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE != lfe->type) |
| 992 | { |
| 993 | vec_foreach (path, lfe->paths) |
| 994 | { |
| 995 | lisp_gpe_adjacency_unlock (path->lisp_adj); |
| 996 | } |
| 997 | fib_path_list_child_remove (lfe->nsh.path_list_index, |
| 998 | lfe->nsh.child_index); |
| 999 | dpo_reset (&lfe->nsh.choice); |
| 1000 | } |
| 1001 | |
| 1002 | lisp_nsh_fib_add_del_entry (fid_addr_nsh (&lfe->key->rmt), (u32) ~ 0, 0); |
| 1003 | |
| 1004 | hash_unset_mem (lgm->lisp_gpe_fwd_entries, lfe->key); |
| 1005 | clib_mem_free (lfe->key); |
| 1006 | pool_put (lgm->lisp_fwd_entry_pool, lfe); |
| 1007 | } |
| 1008 | |
| 1009 | /** |
| 1010 | * @brief Delete LISP NSH forwarding entry. |
| 1011 | * |
| 1012 | * Coordinates the removal of forwarding entries for NSH LISP overlay: |
| 1013 | * |
| 1014 | * @param[in] lgm Reference to @ref lisp_gpe_main_t. |
| 1015 | * @param[in] a Parameters for building the forwarding entry. |
| 1016 | * |
| 1017 | * @return 0 on success. |
| 1018 | */ |
| 1019 | static int |
| 1020 | del_nsh_fwd_entry (lisp_gpe_main_t * lgm, |
| 1021 | vnet_lisp_gpe_add_del_fwd_entry_args_t * a) |
| 1022 | { |
| 1023 | lisp_gpe_fwd_entry_key_t key; |
| 1024 | lisp_gpe_fwd_entry_t *lfe; |
| 1025 | |
| 1026 | lfe = find_fwd_entry (lgm, a, &key); |
| 1027 | |
| 1028 | if (NULL == lfe) |
| 1029 | return VNET_API_ERROR_INVALID_VALUE; |
| 1030 | |
| 1031 | del_nsh_fwd_entry_i (lgm, lfe); |
| 1032 | |
| 1033 | return (0); |
| 1034 | } |
| 1035 | |
| 1036 | /** |
| 1037 | * @brief Construct and insert the forwarding information used by an NSH entry |
| 1038 | */ |
| 1039 | static void |
| 1040 | lisp_gpe_nsh_update_fwding (lisp_gpe_fwd_entry_t * lfe) |
| 1041 | { |
| 1042 | lisp_gpe_main_t *lgm = vnet_lisp_gpe_get_main (); |
| 1043 | dpo_id_t dpo = DPO_INVALID; |
| 1044 | vnet_hw_interface_t *hi; |
| 1045 | uword *hip; |
| 1046 | |
| 1047 | if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE != lfe->type) |
| 1048 | { |
| 1049 | fib_path_list_contribute_forwarding (lfe->nsh.path_list_index, |
| 1050 | FIB_FORW_CHAIN_TYPE_NSH, |
| 1051 | &lfe->nsh.dpo); |
| 1052 | |
| 1053 | /* |
| 1054 | * LISP encap is always the same for this SPI+SI so we do that hash now |
| 1055 | * and stack on the choice. |
| 1056 | */ |
| 1057 | if (DPO_LOAD_BALANCE == lfe->nsh.dpo.dpoi_type) |
| 1058 | { |
| 1059 | const dpo_id_t *tmp; |
| 1060 | const load_balance_t *lb; |
| 1061 | int hash; |
| 1062 | |
| 1063 | lb = load_balance_get (lfe->nsh.dpo.dpoi_index); |
| 1064 | hash = fid_addr_nsh (&lfe->key->rmt) % lb->lb_n_buckets; |
| 1065 | tmp = |
| 1066 | load_balance_get_bucket_i (lb, hash & lb->lb_n_buckets_minus_1); |
| 1067 | |
| 1068 | dpo_copy (&dpo, tmp); |
| 1069 | } |
| 1070 | } |
| 1071 | else |
| 1072 | { |
| 1073 | switch (lfe->action) |
| 1074 | { |
| 1075 | case SEND_MAP_REQUEST: |
| 1076 | dpo_copy (&dpo, lgm->nsh_cp_lkup); |
| 1077 | break; |
| 1078 | case NO_ACTION: |
| 1079 | case FORWARD_NATIVE: |
| 1080 | case DROP: |
| 1081 | dpo_copy (&dpo, drop_dpo_get (DPO_PROTO_NSH)); |
| 1082 | } |
| 1083 | } |
| 1084 | |
| 1085 | /* We have only one nsh-lisp interface (no NSH virtualization) */ |
| 1086 | hip = hash_get (lgm->nsh_ifaces.hw_if_index_by_dp_table, 0); |
Shwetha Bhandari | b05f1f0 | 2017-02-14 10:39:06 +0530 | [diff] [blame] | 1087 | if (hip) |
| 1088 | { |
| 1089 | hi = vnet_get_hw_interface (lgm->vnet_main, hip[0]); |
| 1090 | dpo_stack_from_node (hi->tx_node_index, &lfe->nsh.choice, &dpo); |
| 1091 | } |
Florin Coras | ce1b4c7 | 2017-01-26 14:25:34 -0800 | [diff] [blame] | 1092 | /* add entry to nsh lisp fib */ |
| 1093 | lisp_nsh_fib_add_del_entry (fid_addr_nsh (&lfe->key->rmt), |
| 1094 | lfe - lgm->lisp_fwd_entry_pool, 1); |
Florin Coras | ce1b4c7 | 2017-01-26 14:25:34 -0800 | [diff] [blame] | 1095 | dpo_reset (&dpo); |
Shwetha Bhandari | b05f1f0 | 2017-02-14 10:39:06 +0530 | [diff] [blame] | 1096 | |
Florin Coras | ce1b4c7 | 2017-01-26 14:25:34 -0800 | [diff] [blame] | 1097 | } |
| 1098 | |
| 1099 | /** |
| 1100 | * @brief Add LISP NSH forwarding entry. |
| 1101 | * |
| 1102 | * Coordinates the creation of forwarding entries for L2 LISP overlay: |
| 1103 | * creates lisp-gpe tunnel and injects new entry in Source/Dest L2 FIB. |
| 1104 | * |
| 1105 | * @param[in] lgm Reference to @ref lisp_gpe_main_t. |
| 1106 | * @param[in] a Parameters for building the forwarding entry. |
| 1107 | * |
| 1108 | * @return 0 on success. |
| 1109 | */ |
| 1110 | static int |
| 1111 | add_nsh_fwd_entry (lisp_gpe_main_t * lgm, |
| 1112 | vnet_lisp_gpe_add_del_fwd_entry_args_t * a) |
| 1113 | { |
| 1114 | lisp_gpe_fwd_entry_key_t key; |
| 1115 | lisp_gpe_fwd_entry_t *lfe; |
| 1116 | |
| 1117 | lfe = find_fwd_entry (lgm, a, &key); |
| 1118 | |
| 1119 | if (NULL != lfe) |
| 1120 | /* don't support updates */ |
| 1121 | return VNET_API_ERROR_INVALID_VALUE; |
| 1122 | |
| 1123 | pool_get (lgm->lisp_fwd_entry_pool, lfe); |
| 1124 | memset (lfe, 0, sizeof (*lfe)); |
| 1125 | lfe->key = clib_mem_alloc (sizeof (key)); |
| 1126 | memcpy (lfe->key, &key, sizeof (key)); |
| 1127 | |
| 1128 | hash_set_mem (lgm->lisp_gpe_fwd_entries, lfe->key, |
| 1129 | lfe - lgm->lisp_fwd_entry_pool); |
Filip Tehlar | 560274d | 2017-06-05 13:40:13 +0200 | [diff] [blame] | 1130 | a->fwd_entry_index = lfe - lgm->lisp_fwd_entry_pool; |
Florin Coras | ce1b4c7 | 2017-01-26 14:25:34 -0800 | [diff] [blame] | 1131 | |
| 1132 | lfe->type = (a->is_negative ? |
| 1133 | LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE : |
| 1134 | LISP_GPE_FWD_ENTRY_TYPE_NORMAL); |
| 1135 | lfe->tenant = 0; |
| 1136 | |
| 1137 | if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE != lfe->type) |
| 1138 | { |
| 1139 | fib_route_path_t *rpaths; |
| 1140 | |
| 1141 | /* |
| 1142 | * Make the sorted array of LISP paths with their resp. adjacency |
| 1143 | */ |
| 1144 | lisp_gpe_fwd_entry_mk_paths (lfe, a); |
| 1145 | |
| 1146 | /* |
| 1147 | * From the LISP paths, construct a FIB path list that will |
| 1148 | * contribute a load-balance. |
| 1149 | */ |
| 1150 | rpaths = lisp_gpe_mk_fib_paths (lfe->paths); |
| 1151 | |
| 1152 | lfe->nsh.path_list_index = |
| 1153 | fib_path_list_create (FIB_PATH_LIST_FLAG_NONE, rpaths); |
| 1154 | |
| 1155 | /* |
| 1156 | * become a child of the path-list so we receive updates when |
| 1157 | * its forwarding state changes. this includes an implicit lock. |
| 1158 | */ |
| 1159 | lfe->nsh.child_index = |
| 1160 | fib_path_list_child_add (lfe->nsh.path_list_index, |
| 1161 | FIB_NODE_TYPE_LISP_GPE_FWD_ENTRY, |
| 1162 | lfe - lgm->lisp_fwd_entry_pool); |
| 1163 | } |
| 1164 | else |
| 1165 | { |
| 1166 | lfe->action = a->action; |
| 1167 | } |
| 1168 | |
| 1169 | lisp_gpe_nsh_update_fwding (lfe); |
| 1170 | |
| 1171 | return 0; |
| 1172 | } |
| 1173 | |
| 1174 | /** |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 1175 | * @brief conver from the embedded fib_node_t struct to the LSIP entry |
| 1176 | */ |
| 1177 | static lisp_gpe_fwd_entry_t * |
| 1178 | lisp_gpe_fwd_entry_from_fib_node (fib_node_t * node) |
| 1179 | { |
| 1180 | return ((lisp_gpe_fwd_entry_t *) (((char *) node) - |
| 1181 | STRUCT_OFFSET_OF (lisp_gpe_fwd_entry_t, |
| 1182 | node))); |
| 1183 | } |
| 1184 | |
| 1185 | /** |
| 1186 | * @brief Function invoked during a backwalk of the FIB graph |
| 1187 | */ |
| 1188 | static fib_node_back_walk_rc_t |
| 1189 | lisp_gpe_fib_node_back_walk (fib_node_t * node, |
| 1190 | fib_node_back_walk_ctx_t * ctx) |
| 1191 | { |
Florin Coras | ce1b4c7 | 2017-01-26 14:25:34 -0800 | [diff] [blame] | 1192 | lisp_gpe_fwd_entry_t *lfe = lisp_gpe_fwd_entry_from_fib_node (node); |
| 1193 | |
| 1194 | if (fid_addr_type (&lfe->key->rmt) == FID_ADDR_MAC) |
| 1195 | lisp_gpe_l2_update_fwding (lfe); |
| 1196 | else if (fid_addr_type (&lfe->key->rmt) == FID_ADDR_NSH) |
| 1197 | lisp_gpe_nsh_update_fwding (lfe); |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 1198 | |
| 1199 | return (FIB_NODE_BACK_WALK_CONTINUE); |
| 1200 | } |
| 1201 | |
| 1202 | /** |
| 1203 | * @brief Get a fib_node_t struct from the index of a LISP fwd entry |
| 1204 | */ |
| 1205 | static fib_node_t * |
| 1206 | lisp_gpe_fwd_entry_get_fib_node (fib_node_index_t index) |
| 1207 | { |
| 1208 | lisp_gpe_main_t *lgm = &lisp_gpe_main; |
| 1209 | lisp_gpe_fwd_entry_t *lfe; |
| 1210 | |
| 1211 | lfe = pool_elt_at_index (lgm->lisp_fwd_entry_pool, index); |
| 1212 | |
| 1213 | return (&(lfe->node)); |
| 1214 | } |
| 1215 | |
| 1216 | /** |
| 1217 | * @brief An indication from the graph that the last lock has gone |
| 1218 | */ |
| 1219 | static void |
| 1220 | lisp_gpe_fwd_entry_fib_node_last_lock_gone (fib_node_t * node) |
| 1221 | { |
| 1222 | /* We don't manage the locks of the LISP objects via the graph, since |
| 1223 | * this object has no children. so this is a no-op. */ |
| 1224 | } |
| 1225 | |
| 1226 | /** |
| 1227 | * @brief Virtual function table to register with FIB for the LISP type |
| 1228 | */ |
| 1229 | const static fib_node_vft_t lisp_fwd_vft = { |
| 1230 | .fnv_get = lisp_gpe_fwd_entry_get_fib_node, |
| 1231 | .fnv_last_lock = lisp_gpe_fwd_entry_fib_node_last_lock_gone, |
| 1232 | .fnv_back_walk = lisp_gpe_fib_node_back_walk, |
| 1233 | }; |
| 1234 | |
| 1235 | /** |
| 1236 | * @brief Forwarding entry create/remove dispatcher. |
| 1237 | * |
| 1238 | * Calls l2 or l3 forwarding entry add/del function based on input data. |
| 1239 | * |
| 1240 | * @param[in] a Forwarding entry parameters. |
| 1241 | * @param[out] hw_if_indexp NOT USED |
| 1242 | * |
| 1243 | * @return 0 on success. |
| 1244 | */ |
| 1245 | int |
| 1246 | vnet_lisp_gpe_add_del_fwd_entry (vnet_lisp_gpe_add_del_fwd_entry_args_t * a, |
| 1247 | u32 * hw_if_indexp) |
| 1248 | { |
| 1249 | lisp_gpe_main_t *lgm = &lisp_gpe_main; |
| 1250 | u8 type; |
| 1251 | |
| 1252 | if (vnet_lisp_gpe_enable_disable_status () == 0) |
| 1253 | { |
| 1254 | clib_warning ("LISP is disabled!"); |
| 1255 | return VNET_API_ERROR_LISP_DISABLED; |
| 1256 | } |
| 1257 | |
| 1258 | type = gid_address_type (&a->rmt_eid); |
| 1259 | switch (type) |
| 1260 | { |
| 1261 | case GID_ADDR_IP_PREFIX: |
| 1262 | if (a->is_add) |
| 1263 | return add_ip_fwd_entry (lgm, a); |
| 1264 | else |
| 1265 | return del_ip_fwd_entry (lgm, a); |
| 1266 | break; |
| 1267 | case GID_ADDR_MAC: |
| 1268 | if (a->is_add) |
| 1269 | return add_l2_fwd_entry (lgm, a); |
| 1270 | else |
| 1271 | return del_l2_fwd_entry (lgm, a); |
Florin Coras | ce1b4c7 | 2017-01-26 14:25:34 -0800 | [diff] [blame] | 1272 | case GID_ADDR_NSH: |
| 1273 | if (a->is_add) |
| 1274 | return add_nsh_fwd_entry (lgm, a); |
| 1275 | else |
| 1276 | return del_nsh_fwd_entry (lgm, a); |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 1277 | default: |
| 1278 | clib_warning ("Forwarding entries for type %d not supported!", type); |
| 1279 | return -1; |
| 1280 | } |
| 1281 | } |
| 1282 | |
Filip Tehlar | 2151191 | 2017-04-07 10:41:42 +0200 | [diff] [blame] | 1283 | int |
Filip Tehlar | 4868ff6 | 2017-03-09 16:48:39 +0100 | [diff] [blame] | 1284 | vnet_lisp_flush_stats (void) |
| 1285 | { |
| 1286 | lisp_gpe_main_t *lgm = vnet_lisp_gpe_get_main (); |
Filip Tehlar | 2151191 | 2017-04-07 10:41:42 +0200 | [diff] [blame] | 1287 | vlib_combined_counter_main_t *cm = &lgm->counters; |
| 1288 | u32 i; |
Filip Tehlar | 4868ff6 | 2017-03-09 16:48:39 +0100 | [diff] [blame] | 1289 | |
Filip Tehlar | 2151191 | 2017-04-07 10:41:42 +0200 | [diff] [blame] | 1290 | for (i = 0; i < vlib_combined_counter_n_counters (cm); i++) |
| 1291 | vlib_zero_combined_counter (cm, i); |
| 1292 | |
| 1293 | return 0; |
Filip Tehlar | 4868ff6 | 2017-03-09 16:48:39 +0100 | [diff] [blame] | 1294 | } |
| 1295 | |
| 1296 | static void |
| 1297 | lisp_del_adj_stats (lisp_gpe_main_t * lgm, u32 fwd_entry_index, u32 ti) |
| 1298 | { |
| 1299 | hash_pair_t *hp; |
| 1300 | lisp_stats_key_t key; |
| 1301 | void *key_copy; |
| 1302 | uword *p; |
Filip Tehlar | 2151191 | 2017-04-07 10:41:42 +0200 | [diff] [blame] | 1303 | u8 *s; |
Filip Tehlar | 4868ff6 | 2017-03-09 16:48:39 +0100 | [diff] [blame] | 1304 | |
| 1305 | memset (&key, 0, sizeof (key)); |
| 1306 | key.fwd_entry_index = fwd_entry_index; |
| 1307 | key.tunnel_index = ti; |
| 1308 | |
| 1309 | p = hash_get_mem (lgm->lisp_stats_index_by_key, &key); |
| 1310 | if (p) |
| 1311 | { |
Filip Tehlar | 2151191 | 2017-04-07 10:41:42 +0200 | [diff] [blame] | 1312 | s = pool_elt_at_index (lgm->dummy_stats_pool, p[0]); |
Filip Tehlar | 4868ff6 | 2017-03-09 16:48:39 +0100 | [diff] [blame] | 1313 | hp = hash_get_pair (lgm->lisp_stats_index_by_key, &key); |
| 1314 | key_copy = (void *) (hp->key); |
| 1315 | hash_unset_mem (lgm->lisp_stats_index_by_key, &key); |
| 1316 | clib_mem_free (key_copy); |
Filip Tehlar | 2151191 | 2017-04-07 10:41:42 +0200 | [diff] [blame] | 1317 | pool_put (lgm->dummy_stats_pool, s); |
Filip Tehlar | 4868ff6 | 2017-03-09 16:48:39 +0100 | [diff] [blame] | 1318 | } |
| 1319 | } |
| 1320 | |
| 1321 | void |
Filip Tehlar | 2151191 | 2017-04-07 10:41:42 +0200 | [diff] [blame] | 1322 | vnet_lisp_gpe_del_fwd_counters (vnet_lisp_gpe_add_del_fwd_entry_args_t * a, |
| 1323 | u32 fwd_entry_index) |
Filip Tehlar | 4868ff6 | 2017-03-09 16:48:39 +0100 | [diff] [blame] | 1324 | { |
| 1325 | lisp_gpe_main_t *lgm = &lisp_gpe_main; |
| 1326 | lisp_gpe_fwd_entry_key_t fe_key; |
| 1327 | lisp_gpe_fwd_entry_t *lfe; |
| 1328 | lisp_fwd_path_t *path; |
| 1329 | const lisp_gpe_adjacency_t *ladj; |
| 1330 | |
| 1331 | lfe = find_fwd_entry (lgm, a, &fe_key); |
| 1332 | if (!lfe) |
| 1333 | return; |
| 1334 | |
| 1335 | if (LISP_GPE_FWD_ENTRY_TYPE_NORMAL != lfe->type) |
| 1336 | return; |
| 1337 | |
| 1338 | vec_foreach (path, lfe->paths) |
| 1339 | { |
| 1340 | ladj = lisp_gpe_adjacency_get (path->lisp_adj); |
| 1341 | lisp_del_adj_stats (lgm, fwd_entry_index, ladj->tunnel_index); |
| 1342 | } |
| 1343 | } |
| 1344 | |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 1345 | /** |
| 1346 | * @brief Flush all the forwrding entries |
| 1347 | */ |
| 1348 | void |
| 1349 | vnet_lisp_gpe_fwd_entry_flush (void) |
| 1350 | { |
| 1351 | lisp_gpe_main_t *lgm = &lisp_gpe_main; |
| 1352 | lisp_gpe_fwd_entry_t *lfe; |
| 1353 | |
| 1354 | /* *INDENT-OFF* */ |
| 1355 | pool_foreach (lfe, lgm->lisp_fwd_entry_pool, |
| 1356 | ({ |
| 1357 | switch (fid_addr_type(&lfe->key->rmt)) |
| 1358 | { |
| 1359 | case FID_ADDR_MAC: |
| 1360 | del_l2_fwd_entry_i (lgm, lfe); |
| 1361 | break; |
| 1362 | case FID_ADDR_IP_PREF: |
| 1363 | del_ip_fwd_entry_i (lgm, lfe); |
| 1364 | break; |
Florin Coras | ce1b4c7 | 2017-01-26 14:25:34 -0800 | [diff] [blame] | 1365 | case FID_ADDR_NSH: |
| 1366 | del_nsh_fwd_entry_i (lgm, lfe); |
| 1367 | break; |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 1368 | } |
| 1369 | })); |
| 1370 | /* *INDENT-ON* */ |
| 1371 | } |
| 1372 | |
| 1373 | static u8 * |
| 1374 | format_lisp_fwd_path (u8 * s, va_list ap) |
| 1375 | { |
| 1376 | lisp_fwd_path_t *lfp = va_arg (ap, lisp_fwd_path_t *); |
| 1377 | |
Filip Tehlar | c3af7bf | 2017-01-13 14:13:09 +0100 | [diff] [blame] | 1378 | s = format (s, "weight:%d ", lfp->weight); |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 1379 | s = format (s, "adj:[%U]\n", |
| 1380 | format_lisp_gpe_adjacency, |
| 1381 | lisp_gpe_adjacency_get (lfp->lisp_adj), |
| 1382 | LISP_GPE_ADJ_FORMAT_FLAG_NONE); |
| 1383 | |
| 1384 | return (s); |
| 1385 | } |
| 1386 | |
| 1387 | typedef enum lisp_gpe_fwd_entry_format_flag_t_ |
| 1388 | { |
| 1389 | LISP_GPE_FWD_ENTRY_FORMAT_NONE = (0 << 0), |
| 1390 | LISP_GPE_FWD_ENTRY_FORMAT_DETAIL = (1 << 1), |
| 1391 | } lisp_gpe_fwd_entry_format_flag_t; |
| 1392 | |
| 1393 | |
| 1394 | static u8 * |
| 1395 | format_lisp_gpe_fwd_entry (u8 * s, va_list ap) |
| 1396 | { |
| 1397 | lisp_gpe_main_t *lgm = &lisp_gpe_main; |
| 1398 | lisp_gpe_fwd_entry_t *lfe = va_arg (ap, lisp_gpe_fwd_entry_t *); |
| 1399 | lisp_gpe_fwd_entry_format_flag_t flags = |
| 1400 | va_arg (ap, lisp_gpe_fwd_entry_format_flag_t); |
| 1401 | |
| 1402 | s = format (s, "VNI:%d VRF:%d EID: %U -> %U [index:%d]", |
| 1403 | lfe->key->vni, lfe->eid_table_id, |
| 1404 | format_fid_address, &lfe->key->lcl, |
| 1405 | format_fid_address, &lfe->key->rmt, |
| 1406 | lfe - lgm->lisp_fwd_entry_pool); |
| 1407 | |
| 1408 | if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE == lfe->type) |
| 1409 | { |
| 1410 | s = format (s, "\n Negative - action:%U", |
| 1411 | format_negative_mapping_action, lfe->action); |
| 1412 | } |
| 1413 | else |
| 1414 | { |
| 1415 | lisp_fwd_path_t *path; |
| 1416 | |
| 1417 | s = format (s, "\n via:"); |
| 1418 | vec_foreach (path, lfe->paths) |
| 1419 | { |
| 1420 | s = format (s, "\n %U", format_lisp_fwd_path, path); |
| 1421 | } |
| 1422 | } |
| 1423 | |
| 1424 | if (flags & LISP_GPE_FWD_ENTRY_FORMAT_DETAIL) |
| 1425 | { |
| 1426 | switch (fid_addr_type (&lfe->key->rmt)) |
| 1427 | { |
| 1428 | case FID_ADDR_MAC: |
| 1429 | s = format (s, " fib-path-list:%d\n", lfe->l2.path_list_index); |
| 1430 | s = format (s, " dpo:%U\n", format_dpo_id, &lfe->l2.dpo, 0); |
| 1431 | break; |
Florin Coras | ce1b4c7 | 2017-01-26 14:25:34 -0800 | [diff] [blame] | 1432 | case FID_ADDR_NSH: |
| 1433 | s = format (s, " fib-path-list:%d\n", lfe->nsh.path_list_index); |
| 1434 | s = format (s, " dpo:%U\n", format_dpo_id, &lfe->nsh.dpo, 0); |
| 1435 | break; |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 1436 | case FID_ADDR_IP_PREF: |
| 1437 | break; |
| 1438 | } |
| 1439 | } |
| 1440 | |
| 1441 | return (s); |
| 1442 | } |
| 1443 | |
| 1444 | static clib_error_t * |
| 1445 | lisp_gpe_fwd_entry_show (vlib_main_t * vm, |
| 1446 | unformat_input_t * input, vlib_cli_command_t * cmd) |
| 1447 | { |
| 1448 | lisp_gpe_main_t *lgm = &lisp_gpe_main; |
| 1449 | lisp_gpe_fwd_entry_t *lfe; |
| 1450 | index_t index; |
| 1451 | u32 vni = ~0; |
| 1452 | |
| 1453 | if (unformat (input, "vni %d", &vni)) |
| 1454 | ; |
| 1455 | else if (unformat (input, "%d", &index)) |
| 1456 | { |
| 1457 | if (!pool_is_free_index (lgm->lisp_fwd_entry_pool, index)) |
| 1458 | { |
| 1459 | lfe = pool_elt_at_index (lgm->lisp_fwd_entry_pool, index); |
| 1460 | |
| 1461 | vlib_cli_output (vm, "[%d@] %U", |
| 1462 | index, |
| 1463 | format_lisp_gpe_fwd_entry, lfe, |
| 1464 | LISP_GPE_FWD_ENTRY_FORMAT_DETAIL); |
| 1465 | } |
| 1466 | else |
| 1467 | { |
| 1468 | vlib_cli_output (vm, "entry %d invalid", index); |
| 1469 | } |
| 1470 | |
| 1471 | return (NULL); |
| 1472 | } |
| 1473 | |
| 1474 | /* *INDENT-OFF* */ |
| 1475 | pool_foreach (lfe, lgm->lisp_fwd_entry_pool, |
| 1476 | ({ |
| 1477 | if ((vni == ~0) || |
| 1478 | (lfe->key->vni == vni)) |
| 1479 | vlib_cli_output (vm, "%U", format_lisp_gpe_fwd_entry, lfe, |
| 1480 | LISP_GPE_FWD_ENTRY_FORMAT_NONE); |
| 1481 | })); |
| 1482 | /* *INDENT-ON* */ |
| 1483 | |
| 1484 | return (NULL); |
| 1485 | } |
| 1486 | |
| 1487 | /* *INDENT-OFF* */ |
| 1488 | VLIB_CLI_COMMAND (lisp_gpe_fwd_entry_show_command, static) = { |
Filip Tehlar | 82786c4 | 2017-02-20 15:20:37 +0100 | [diff] [blame] | 1489 | .path = "show gpe entry", |
| 1490 | .short_help = "show gpe entry vni <vni> vrf <vrf> [leid <leid>] reid <reid>", |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 1491 | .function = lisp_gpe_fwd_entry_show, |
| 1492 | }; |
| 1493 | /* *INDENT-ON* */ |
| 1494 | |
| 1495 | clib_error_t * |
| 1496 | lisp_gpe_fwd_entry_init (vlib_main_t * vm) |
| 1497 | { |
| 1498 | lisp_gpe_main_t *lgm = &lisp_gpe_main; |
| 1499 | clib_error_t *error = NULL; |
| 1500 | |
| 1501 | if ((error = vlib_call_init_function (vm, lisp_cp_dpo_module_init))) |
| 1502 | return (error); |
| 1503 | |
| 1504 | l2_fib_init (lgm); |
Florin Coras | ce1b4c7 | 2017-01-26 14:25:34 -0800 | [diff] [blame] | 1505 | nsh_fib_init (lgm); |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 1506 | |
| 1507 | fib_node_register_type (FIB_NODE_TYPE_LISP_GPE_FWD_ENTRY, &lisp_fwd_vft); |
| 1508 | |
| 1509 | return (error); |
| 1510 | } |
| 1511 | |
Filip Tehlar | 0eb874e | 2017-05-18 14:23:32 +0200 | [diff] [blame] | 1512 | u32 * |
| 1513 | vnet_lisp_gpe_get_fwd_entry_vnis (void) |
| 1514 | { |
| 1515 | lisp_gpe_main_t *lgm = vnet_lisp_gpe_get_main (); |
| 1516 | lisp_gpe_fwd_entry_t *lfe; |
| 1517 | u32 *vnis = 0; |
| 1518 | |
| 1519 | /* *INDENT-OFF* */ |
| 1520 | pool_foreach (lfe, lgm->lisp_fwd_entry_pool, |
| 1521 | ({ |
| 1522 | hash_set (vnis, lfe->key->vni, 0); |
| 1523 | })); |
| 1524 | /* *INDENT-ON* */ |
| 1525 | |
| 1526 | return vnis; |
| 1527 | } |
| 1528 | |
Filip Tehlar | 5fae99c | 2017-01-18 12:57:37 +0100 | [diff] [blame] | 1529 | lisp_api_gpe_fwd_entry_t * |
| 1530 | vnet_lisp_gpe_fwd_entries_get_by_vni (u32 vni) |
| 1531 | { |
| 1532 | lisp_gpe_main_t *lgm = &lisp_gpe_main; |
| 1533 | lisp_gpe_fwd_entry_t *lfe; |
| 1534 | lisp_api_gpe_fwd_entry_t *entries = 0, e; |
| 1535 | |
| 1536 | /* *INDENT-OFF* */ |
| 1537 | pool_foreach (lfe, lgm->lisp_fwd_entry_pool, |
| 1538 | ({ |
| 1539 | if (lfe->key->vni == vni) |
| 1540 | { |
| 1541 | memset (&e, 0, sizeof (e)); |
| 1542 | e.dp_table = lfe->eid_table_id; |
| 1543 | e.vni = lfe->key->vni; |
Filip Tehlar | 0eb874e | 2017-05-18 14:23:32 +0200 | [diff] [blame] | 1544 | if (lfe->type == LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE) |
| 1545 | e.action = lfe->action; |
Filip Tehlar | 5fae99c | 2017-01-18 12:57:37 +0100 | [diff] [blame] | 1546 | e.fwd_entry_index = lfe - lgm->lisp_fwd_entry_pool; |
| 1547 | memcpy (&e.reid, &lfe->key->rmt, sizeof (e.reid)); |
| 1548 | memcpy (&e.leid, &lfe->key->lcl, sizeof (e.leid)); |
| 1549 | vec_add1 (entries, e); |
| 1550 | } |
| 1551 | })); |
| 1552 | /* *INDENT-ON* */ |
| 1553 | |
| 1554 | return entries; |
| 1555 | } |
| 1556 | |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 1557 | int |
| 1558 | vnet_lisp_gpe_get_fwd_stats (vnet_lisp_gpe_add_del_fwd_entry_args_t * a, |
| 1559 | vlib_counter_t * c) |
| 1560 | { |
| 1561 | lisp_gpe_main_t *lgm = vnet_lisp_gpe_get_main (); |
| 1562 | lisp_gpe_fwd_entry_t *lfe; |
| 1563 | lisp_gpe_fwd_entry_key_t unused; |
| 1564 | |
| 1565 | lfe = find_fwd_entry (lgm, a, &unused); |
| 1566 | if (NULL == lfe) |
| 1567 | return -1; |
| 1568 | |
| 1569 | if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE == lfe->type) |
| 1570 | return -1; |
| 1571 | |
| 1572 | if (~0 == lfe->dpoi_index) |
| 1573 | return -1; |
| 1574 | |
| 1575 | vlib_get_combined_counter (&load_balance_main.lbm_to_counters, |
| 1576 | lfe->dpoi_index, c); |
| 1577 | return 0; |
| 1578 | } |
| 1579 | |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 1580 | VLIB_INIT_FUNCTION (lisp_gpe_fwd_entry_init); |
| 1581 | |
| 1582 | /* |
| 1583 | * fd.io coding-style-patch-verification: ON |
| 1584 | * |
| 1585 | * Local Variables: |
| 1586 | * eval: (c-set-style "gnu") |
| 1587 | * End: |
| 1588 | */ |