Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [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 <vlib/vlib.h> |
| 17 | #include <vnet/dpo/drop_dpo.h> |
| 18 | |
| 19 | #include <vnet/mfib/mfib_table.h> |
| 20 | #include <vnet/mfib/ip4_mfib.h> |
| 21 | #include <vnet/mfib/ip6_mfib.h> |
| 22 | #include <vnet/mfib/mfib_entry.h> |
Neale Ranns | 9e829a8 | 2018-12-17 05:50:32 -0800 | [diff] [blame] | 23 | #include <vnet/mfib/mfib_entry_src.h> |
| 24 | #include <vnet/mfib/mfib_entry_cover.h> |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 25 | #include <vnet/mfib/mfib_signal.h> |
| 26 | |
| 27 | mfib_table_t * |
| 28 | mfib_table_get (fib_node_index_t index, |
| 29 | fib_protocol_t proto) |
| 30 | { |
| 31 | switch (proto) |
| 32 | { |
| 33 | case FIB_PROTOCOL_IP4: |
| 34 | return (pool_elt_at_index(ip4_main.mfibs, index)); |
| 35 | case FIB_PROTOCOL_IP6: |
| 36 | return (pool_elt_at_index(ip6_main.mfibs, index)); |
| 37 | case FIB_PROTOCOL_MPLS: |
| 38 | break; |
| 39 | } |
| 40 | ASSERT(0); |
| 41 | return (NULL); |
| 42 | } |
| 43 | |
| 44 | static inline fib_node_index_t |
| 45 | mfib_table_lookup_i (const mfib_table_t *mfib_table, |
| 46 | const mfib_prefix_t *prefix) |
| 47 | { |
| 48 | switch (prefix->fp_proto) |
| 49 | { |
| 50 | case FIB_PROTOCOL_IP4: |
| 51 | return (ip4_mfib_table_lookup(&mfib_table->v4, |
| 52 | &prefix->fp_src_addr.ip4, |
| 53 | &prefix->fp_grp_addr.ip4, |
| 54 | prefix->fp_len)); |
| 55 | case FIB_PROTOCOL_IP6: |
| 56 | return (ip6_mfib_table_lookup(&mfib_table->v6, |
| 57 | &prefix->fp_src_addr.ip6, |
| 58 | &prefix->fp_grp_addr.ip6, |
| 59 | prefix->fp_len)); |
| 60 | case FIB_PROTOCOL_MPLS: |
| 61 | break; |
| 62 | } |
| 63 | return (FIB_NODE_INDEX_INVALID); |
| 64 | } |
| 65 | |
| 66 | fib_node_index_t |
| 67 | mfib_table_lookup (u32 fib_index, |
| 68 | const mfib_prefix_t *prefix) |
| 69 | { |
| 70 | return (mfib_table_lookup_i(mfib_table_get(fib_index, prefix->fp_proto), prefix)); |
| 71 | } |
| 72 | |
| 73 | static inline fib_node_index_t |
| 74 | mfib_table_lookup_exact_match_i (const mfib_table_t *mfib_table, |
| 75 | const mfib_prefix_t *prefix) |
| 76 | { |
| 77 | switch (prefix->fp_proto) |
| 78 | { |
| 79 | case FIB_PROTOCOL_IP4: |
| 80 | return (ip4_mfib_table_lookup_exact_match(&mfib_table->v4, |
| 81 | &prefix->fp_grp_addr.ip4, |
| 82 | &prefix->fp_src_addr.ip4, |
| 83 | prefix->fp_len)); |
| 84 | case FIB_PROTOCOL_IP6: |
| 85 | return (ip6_mfib_table_lookup_exact_match(&mfib_table->v6, |
| 86 | &prefix->fp_grp_addr.ip6, |
| 87 | &prefix->fp_src_addr.ip6, |
| 88 | prefix->fp_len)); |
| 89 | case FIB_PROTOCOL_MPLS: |
| 90 | break; |
| 91 | } |
| 92 | return (FIB_NODE_INDEX_INVALID); |
| 93 | } |
| 94 | |
| 95 | fib_node_index_t |
| 96 | mfib_table_lookup_exact_match (u32 fib_index, |
| 97 | const mfib_prefix_t *prefix) |
| 98 | { |
| 99 | return (mfib_table_lookup_exact_match_i(mfib_table_get(fib_index, |
| 100 | prefix->fp_proto), |
| 101 | prefix)); |
| 102 | } |
| 103 | |
Neale Ranns | 9e829a8 | 2018-12-17 05:50:32 -0800 | [diff] [blame] | 104 | static fib_node_index_t |
| 105 | mfib_table_get_less_specific_i (const mfib_table_t *mfib_table, |
| 106 | const mfib_prefix_t *prefix) |
| 107 | { |
| 108 | switch (prefix->fp_proto) |
| 109 | { |
| 110 | case FIB_PROTOCOL_IP4: |
| 111 | return (ip4_mfib_table_get_less_specific(&mfib_table->v4, |
| 112 | &prefix->fp_src_addr.ip4, |
| 113 | &prefix->fp_grp_addr.ip4, |
| 114 | prefix->fp_len)); |
| 115 | case FIB_PROTOCOL_IP6: |
| 116 | return (ip6_mfib_table_get_less_specific(&mfib_table->v6, |
| 117 | &prefix->fp_src_addr.ip6, |
| 118 | &prefix->fp_grp_addr.ip6, |
| 119 | prefix->fp_len)); |
| 120 | case FIB_PROTOCOL_MPLS: |
| 121 | break; |
| 122 | } |
| 123 | return (FIB_NODE_INDEX_INVALID); |
| 124 | } |
| 125 | |
| 126 | fib_node_index_t |
| 127 | mfib_table_get_less_specific (u32 fib_index, |
| 128 | const mfib_prefix_t *prefix) |
| 129 | { |
| 130 | return (mfib_table_get_less_specific_i(mfib_table_get(fib_index, |
| 131 | prefix->fp_proto), |
| 132 | prefix)); |
| 133 | } |
| 134 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 135 | static void |
| 136 | mfib_table_entry_remove (mfib_table_t *mfib_table, |
| 137 | const mfib_prefix_t *prefix, |
Neale Ranns | 9e829a8 | 2018-12-17 05:50:32 -0800 | [diff] [blame] | 138 | fib_node_index_t mfib_entry_index) |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 139 | { |
| 140 | vlib_smp_unsafe_warning(); |
| 141 | |
| 142 | mfib_table->mft_total_route_counts--; |
| 143 | |
| 144 | switch (prefix->fp_proto) |
| 145 | { |
| 146 | case FIB_PROTOCOL_IP4: |
| 147 | ip4_mfib_table_entry_remove(&mfib_table->v4, |
| 148 | &prefix->fp_grp_addr.ip4, |
| 149 | &prefix->fp_src_addr.ip4, |
| 150 | prefix->fp_len); |
| 151 | break; |
| 152 | case FIB_PROTOCOL_IP6: |
| 153 | ip6_mfib_table_entry_remove(&mfib_table->v6, |
| 154 | &prefix->fp_grp_addr.ip6, |
| 155 | &prefix->fp_src_addr.ip6, |
| 156 | prefix->fp_len); |
| 157 | break; |
| 158 | case FIB_PROTOCOL_MPLS: |
| 159 | ASSERT(0); |
| 160 | break; |
| 161 | } |
| 162 | |
Neale Ranns | 9e829a8 | 2018-12-17 05:50:32 -0800 | [diff] [blame] | 163 | mfib_entry_cover_change_notify(mfib_entry_index, |
| 164 | FIB_NODE_INDEX_INVALID); |
| 165 | mfib_entry_unlock(mfib_entry_index); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | static void |
Neale Ranns | 9e829a8 | 2018-12-17 05:50:32 -0800 | [diff] [blame] | 169 | mfib_table_post_insert_actions (mfib_table_t *mfib_table, |
| 170 | const mfib_prefix_t *prefix, |
| 171 | fib_node_index_t mfib_entry_index) |
| 172 | { |
| 173 | fib_node_index_t mfib_entry_cover_index; |
| 174 | |
| 175 | /* |
| 176 | * find the covering entry |
| 177 | */ |
| 178 | mfib_entry_cover_index = mfib_table_get_less_specific_i(mfib_table, |
| 179 | prefix); |
| 180 | /* |
| 181 | * the indicies are the same when the default route is first added |
| 182 | */ |
| 183 | if (mfib_entry_cover_index != mfib_entry_index) |
| 184 | { |
| 185 | /* |
| 186 | * inform the covering entry that a new more specific |
| 187 | * has been inserted beneath it. |
| 188 | * If the prefix that has been inserted is a host route |
| 189 | * then it is not possible that it will be the cover for any |
| 190 | * other entry, so we can elide the walk. |
| 191 | */ |
| 192 | if (!mfib_entry_is_host(mfib_entry_index)) |
| 193 | { |
| 194 | mfib_entry_cover_change_notify(mfib_entry_cover_index, |
| 195 | mfib_entry_index); |
| 196 | } |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | |
| 201 | static void |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 202 | mfib_table_entry_insert (mfib_table_t *mfib_table, |
| 203 | const mfib_prefix_t *prefix, |
| 204 | fib_node_index_t mfib_entry_index) |
| 205 | { |
| 206 | vlib_smp_unsafe_warning(); |
| 207 | |
| 208 | mfib_entry_lock(mfib_entry_index); |
| 209 | mfib_table->mft_total_route_counts++; |
| 210 | |
| 211 | switch (prefix->fp_proto) |
| 212 | { |
| 213 | case FIB_PROTOCOL_IP4: |
| 214 | ip4_mfib_table_entry_insert(&mfib_table->v4, |
| 215 | &prefix->fp_grp_addr.ip4, |
| 216 | &prefix->fp_src_addr.ip4, |
| 217 | prefix->fp_len, |
| 218 | mfib_entry_index); |
| 219 | break; |
| 220 | case FIB_PROTOCOL_IP6: |
| 221 | ip6_mfib_table_entry_insert(&mfib_table->v6, |
| 222 | &prefix->fp_grp_addr.ip6, |
| 223 | &prefix->fp_src_addr.ip6, |
| 224 | prefix->fp_len, |
| 225 | mfib_entry_index); |
| 226 | break; |
| 227 | case FIB_PROTOCOL_MPLS: |
| 228 | break; |
| 229 | } |
Neale Ranns | 9e829a8 | 2018-12-17 05:50:32 -0800 | [diff] [blame] | 230 | |
| 231 | mfib_table_post_insert_actions(mfib_table, prefix, mfib_entry_index); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | fib_node_index_t |
| 235 | mfib_table_entry_update (u32 fib_index, |
| 236 | const mfib_prefix_t *prefix, |
| 237 | mfib_source_t source, |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 238 | fib_rpf_id_t rpf_id, |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 239 | mfib_entry_flags_t entry_flags) |
| 240 | { |
| 241 | fib_node_index_t mfib_entry_index; |
| 242 | mfib_table_t *mfib_table; |
| 243 | |
| 244 | mfib_table = mfib_table_get(fib_index, prefix->fp_proto); |
| 245 | mfib_entry_index = mfib_table_lookup_exact_match_i(mfib_table, prefix); |
| 246 | |
| 247 | if (FIB_NODE_INDEX_INVALID == mfib_entry_index) |
| 248 | { |
| 249 | if (MFIB_ENTRY_FLAG_NONE != entry_flags) |
| 250 | { |
| 251 | /* |
| 252 | * update to a non-existing entry with non-zero flags |
| 253 | */ |
| 254 | mfib_entry_index = mfib_entry_create(fib_index, source, |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 255 | prefix, rpf_id, |
Neale Ranns | 9e829a8 | 2018-12-17 05:50:32 -0800 | [diff] [blame] | 256 | entry_flags, |
| 257 | INDEX_INVALID); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 258 | |
| 259 | mfib_table_entry_insert(mfib_table, prefix, mfib_entry_index); |
| 260 | } |
| 261 | /* |
| 262 | * else |
| 263 | * the entry doesn't exist and the request is to set no flags |
| 264 | * the result would be an entry that doesn't exist - so do nothing |
| 265 | */ |
| 266 | } |
| 267 | else |
| 268 | { |
| 269 | mfib_entry_lock(mfib_entry_index); |
| 270 | |
Neale Ranns | a9374df | 2017-02-02 02:18:18 -0800 | [diff] [blame] | 271 | if (mfib_entry_update(mfib_entry_index, |
| 272 | source, |
| 273 | entry_flags, |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 274 | rpf_id, |
Neale Ranns | a9374df | 2017-02-02 02:18:18 -0800 | [diff] [blame] | 275 | INDEX_INVALID)) |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 276 | { |
| 277 | /* |
| 278 | * this update means we can now remove the entry. |
| 279 | */ |
| 280 | mfib_table_entry_remove(mfib_table, prefix, mfib_entry_index); |
| 281 | } |
| 282 | |
| 283 | mfib_entry_unlock(mfib_entry_index); |
| 284 | } |
| 285 | |
| 286 | return (mfib_entry_index); |
| 287 | } |
| 288 | |
| 289 | fib_node_index_t |
| 290 | mfib_table_entry_path_update (u32 fib_index, |
| 291 | const mfib_prefix_t *prefix, |
| 292 | mfib_source_t source, |
| 293 | const fib_route_path_t *rpath, |
| 294 | mfib_itf_flags_t itf_flags) |
| 295 | { |
| 296 | fib_node_index_t mfib_entry_index; |
| 297 | mfib_table_t *mfib_table; |
| 298 | |
| 299 | mfib_table = mfib_table_get(fib_index, prefix->fp_proto); |
| 300 | mfib_entry_index = mfib_table_lookup_exact_match_i(mfib_table, prefix); |
| 301 | |
| 302 | if (FIB_NODE_INDEX_INVALID == mfib_entry_index) |
| 303 | { |
| 304 | mfib_entry_index = mfib_entry_create(fib_index, |
| 305 | source, |
| 306 | prefix, |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 307 | MFIB_RPF_ID_NONE, |
Neale Ranns | 9e829a8 | 2018-12-17 05:50:32 -0800 | [diff] [blame] | 308 | MFIB_ENTRY_FLAG_NONE, |
| 309 | INDEX_INVALID); |
| 310 | |
| 311 | mfib_entry_path_update(mfib_entry_index, |
| 312 | source, |
| 313 | rpath, |
| 314 | itf_flags); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 315 | |
| 316 | mfib_table_entry_insert(mfib_table, prefix, mfib_entry_index); |
| 317 | } |
Neale Ranns | 9e829a8 | 2018-12-17 05:50:32 -0800 | [diff] [blame] | 318 | else |
| 319 | { |
| 320 | mfib_entry_path_update(mfib_entry_index, |
| 321 | source, |
| 322 | rpath, |
| 323 | itf_flags); |
| 324 | } |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 325 | return (mfib_entry_index); |
| 326 | } |
| 327 | |
| 328 | void |
| 329 | mfib_table_entry_path_remove (u32 fib_index, |
| 330 | const mfib_prefix_t *prefix, |
| 331 | mfib_source_t source, |
| 332 | const fib_route_path_t *rpath) |
| 333 | { |
| 334 | fib_node_index_t mfib_entry_index; |
| 335 | mfib_table_t *mfib_table; |
| 336 | |
| 337 | mfib_table = mfib_table_get(fib_index, prefix->fp_proto); |
| 338 | mfib_entry_index = mfib_table_lookup_exact_match_i(mfib_table, prefix); |
| 339 | |
| 340 | if (FIB_NODE_INDEX_INVALID == mfib_entry_index) |
| 341 | { |
| 342 | /* |
| 343 | * removing an etry that does not exist. i'll allow it. |
| 344 | */ |
| 345 | } |
| 346 | else |
| 347 | { |
| 348 | int no_more_sources; |
| 349 | |
| 350 | /* |
| 351 | * don't nobody go nowhere |
| 352 | */ |
| 353 | mfib_entry_lock(mfib_entry_index); |
| 354 | |
| 355 | no_more_sources = mfib_entry_path_remove(mfib_entry_index, |
| 356 | source, |
| 357 | rpath); |
| 358 | |
| 359 | if (no_more_sources) |
| 360 | { |
| 361 | /* |
| 362 | * last source gone. remove from the table |
| 363 | */ |
| 364 | mfib_table_entry_remove(mfib_table, prefix, mfib_entry_index); |
| 365 | } |
| 366 | |
| 367 | mfib_entry_unlock(mfib_entry_index); |
| 368 | } |
| 369 | } |
| 370 | |
Neale Ranns | a9374df | 2017-02-02 02:18:18 -0800 | [diff] [blame] | 371 | fib_node_index_t |
| 372 | mfib_table_entry_special_add (u32 fib_index, |
| 373 | const mfib_prefix_t *prefix, |
| 374 | mfib_source_t source, |
| 375 | mfib_entry_flags_t entry_flags, |
Neale Ranns | 9e829a8 | 2018-12-17 05:50:32 -0800 | [diff] [blame] | 376 | index_t repi) |
Neale Ranns | a9374df | 2017-02-02 02:18:18 -0800 | [diff] [blame] | 377 | { |
| 378 | fib_node_index_t mfib_entry_index; |
| 379 | mfib_table_t *mfib_table; |
| 380 | |
| 381 | mfib_table = mfib_table_get(fib_index, prefix->fp_proto); |
| 382 | mfib_entry_index = mfib_table_lookup_exact_match_i(mfib_table, prefix); |
| 383 | |
Neale Ranns | 9e829a8 | 2018-12-17 05:50:32 -0800 | [diff] [blame] | 384 | if (INDEX_INVALID != repi) |
| 385 | { |
| 386 | entry_flags |= MFIB_ENTRY_FLAG_EXCLUSIVE; |
| 387 | } |
| 388 | |
Neale Ranns | a9374df | 2017-02-02 02:18:18 -0800 | [diff] [blame] | 389 | if (FIB_NODE_INDEX_INVALID == mfib_entry_index) |
| 390 | { |
| 391 | mfib_entry_index = mfib_entry_create(fib_index, |
| 392 | source, |
| 393 | prefix, |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 394 | MFIB_RPF_ID_NONE, |
Neale Ranns | 9e829a8 | 2018-12-17 05:50:32 -0800 | [diff] [blame] | 395 | entry_flags, |
| 396 | repi); |
Neale Ranns | a9374df | 2017-02-02 02:18:18 -0800 | [diff] [blame] | 397 | |
| 398 | mfib_table_entry_insert(mfib_table, prefix, mfib_entry_index); |
| 399 | } |
Neale Ranns | 9e829a8 | 2018-12-17 05:50:32 -0800 | [diff] [blame] | 400 | else |
| 401 | { |
| 402 | mfib_entry_special_add(mfib_entry_index, source, entry_flags, |
| 403 | MFIB_RPF_ID_NONE, repi); |
| 404 | } |
Neale Ranns | a9374df | 2017-02-02 02:18:18 -0800 | [diff] [blame] | 405 | |
| 406 | return (mfib_entry_index); |
| 407 | } |
| 408 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 409 | static void |
| 410 | mfib_table_entry_delete_i (u32 fib_index, |
| 411 | fib_node_index_t mfib_entry_index, |
| 412 | const mfib_prefix_t *prefix, |
| 413 | mfib_source_t source) |
| 414 | { |
| 415 | mfib_table_t *mfib_table; |
| 416 | |
| 417 | mfib_table = mfib_table_get(fib_index, prefix->fp_proto); |
| 418 | |
| 419 | /* |
| 420 | * don't nobody go nowhere |
| 421 | */ |
| 422 | mfib_entry_lock(mfib_entry_index); |
| 423 | |
| 424 | if (mfib_entry_delete(mfib_entry_index, source)) |
| 425 | { |
| 426 | /* |
| 427 | * last source gone. remove from the table |
| 428 | */ |
| 429 | mfib_table_entry_remove(mfib_table, prefix, mfib_entry_index); |
| 430 | } |
| 431 | /* |
| 432 | * else |
| 433 | * still has sources, leave it be. |
| 434 | */ |
| 435 | |
| 436 | mfib_entry_unlock(mfib_entry_index); |
| 437 | } |
| 438 | |
| 439 | void |
| 440 | mfib_table_entry_delete (u32 fib_index, |
| 441 | const mfib_prefix_t *prefix, |
| 442 | mfib_source_t source) |
| 443 | { |
| 444 | fib_node_index_t mfib_entry_index; |
| 445 | |
| 446 | mfib_entry_index = mfib_table_lookup_exact_match(fib_index, prefix); |
| 447 | |
| 448 | if (FIB_NODE_INDEX_INVALID == mfib_entry_index) |
| 449 | { |
| 450 | /* |
| 451 | * removing an etry that does not exist. |
| 452 | * i'll allow it, but i won't like it. |
| 453 | */ |
| 454 | clib_warning("%U not in FIB", format_mfib_prefix, prefix); |
| 455 | } |
| 456 | else |
| 457 | { |
| 458 | mfib_table_entry_delete_i(fib_index, mfib_entry_index, |
| 459 | prefix, source); |
| 460 | } |
| 461 | } |
| 462 | |
| 463 | void |
| 464 | mfib_table_entry_delete_index (fib_node_index_t mfib_entry_index, |
| 465 | mfib_source_t source) |
| 466 | { |
Neale Ranns | 9e829a8 | 2018-12-17 05:50:32 -0800 | [diff] [blame] | 467 | const mfib_prefix_t *prefix; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 468 | |
Neale Ranns | 9e829a8 | 2018-12-17 05:50:32 -0800 | [diff] [blame] | 469 | prefix = mfib_entry_get_prefix(mfib_entry_index); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 470 | |
| 471 | mfib_table_entry_delete_i(mfib_entry_get_fib_index(mfib_entry_index), |
Neale Ranns | 9e829a8 | 2018-12-17 05:50:32 -0800 | [diff] [blame] | 472 | mfib_entry_index, prefix, source); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 473 | } |
| 474 | |
| 475 | u32 |
| 476 | mfib_table_get_index_for_sw_if_index (fib_protocol_t proto, |
| 477 | u32 sw_if_index) |
| 478 | { |
| 479 | switch (proto) |
| 480 | { |
| 481 | case FIB_PROTOCOL_IP4: |
| 482 | return (ip4_mfib_table_get_index_for_sw_if_index(sw_if_index)); |
| 483 | case FIB_PROTOCOL_IP6: |
| 484 | return (ip6_mfib_table_get_index_for_sw_if_index(sw_if_index)); |
| 485 | case FIB_PROTOCOL_MPLS: |
| 486 | ASSERT(0); |
| 487 | break; |
| 488 | } |
| 489 | return (~0); |
| 490 | } |
| 491 | |
| 492 | u32 |
Neale Ranns | 775f73c | 2018-12-20 03:01:49 -0800 | [diff] [blame] | 493 | mfib_table_get_table_id (u32 fib_index, |
| 494 | fib_protocol_t proto) |
| 495 | { |
| 496 | mfib_table_t *mfib_table; |
| 497 | |
| 498 | mfib_table = mfib_table_get(fib_index, proto); |
| 499 | |
| 500 | return ((NULL != mfib_table ? mfib_table->mft_table_id : ~0)); |
| 501 | } |
| 502 | |
| 503 | u32 |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 504 | mfib_table_find (fib_protocol_t proto, |
| 505 | u32 table_id) |
| 506 | { |
| 507 | switch (proto) |
| 508 | { |
| 509 | case FIB_PROTOCOL_IP4: |
| 510 | return (ip4_mfib_index_from_table_id(table_id)); |
| 511 | case FIB_PROTOCOL_IP6: |
| 512 | return (ip6_mfib_index_from_table_id(table_id)); |
| 513 | case FIB_PROTOCOL_MPLS: |
| 514 | ASSERT(0); |
| 515 | break; |
| 516 | } |
| 517 | return (~0); |
| 518 | } |
| 519 | |
Neale Ranns | 2297af0 | 2017-09-12 09:45:04 -0700 | [diff] [blame] | 520 | static u32 |
| 521 | mfib_table_find_or_create_and_lock_i (fib_protocol_t proto, |
| 522 | u32 table_id, |
| 523 | mfib_source_t src, |
| 524 | const u8 *name) |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 525 | { |
| 526 | mfib_table_t *mfib_table; |
| 527 | fib_node_index_t fi; |
| 528 | |
| 529 | switch (proto) |
| 530 | { |
| 531 | case FIB_PROTOCOL_IP4: |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 532 | fi = ip4_mfib_table_find_or_create_and_lock(table_id, src); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 533 | break; |
| 534 | case FIB_PROTOCOL_IP6: |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 535 | fi = ip6_mfib_table_find_or_create_and_lock(table_id, src); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 536 | break; |
| 537 | case FIB_PROTOCOL_MPLS: |
| 538 | default: |
| 539 | return (~0); |
| 540 | } |
| 541 | |
| 542 | mfib_table = mfib_table_get(fi, proto); |
| 543 | |
Neale Ranns | 2297af0 | 2017-09-12 09:45:04 -0700 | [diff] [blame] | 544 | if (NULL == mfib_table->mft_desc) |
| 545 | { |
| 546 | if (name && name[0]) |
| 547 | { |
| 548 | mfib_table->mft_desc = format(NULL, "%s", name); |
| 549 | } |
| 550 | else |
| 551 | { |
| 552 | mfib_table->mft_desc = format(NULL, "%U-VRF:%d", |
| 553 | format_fib_protocol, proto, |
| 554 | table_id); |
| 555 | } |
| 556 | } |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 557 | |
| 558 | return (fi); |
| 559 | } |
| 560 | |
Neale Ranns | 2297af0 | 2017-09-12 09:45:04 -0700 | [diff] [blame] | 561 | u32 |
| 562 | mfib_table_find_or_create_and_lock (fib_protocol_t proto, |
| 563 | u32 table_id, |
| 564 | mfib_source_t src) |
| 565 | { |
| 566 | return (mfib_table_find_or_create_and_lock_i(proto, table_id, |
| 567 | src, NULL)); |
| 568 | } |
| 569 | |
| 570 | u32 |
| 571 | mfib_table_find_or_create_and_lock_w_name (fib_protocol_t proto, |
| 572 | u32 table_id, |
| 573 | mfib_source_t src, |
| 574 | const u8 *name) |
| 575 | { |
| 576 | return (mfib_table_find_or_create_and_lock_i(proto, table_id, |
| 577 | src, name)); |
| 578 | } |
| 579 | |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 580 | /** |
| 581 | * @brief Table flush context. Store the indicies of matching FIB entries |
| 582 | * that need to be removed. |
| 583 | */ |
| 584 | typedef struct mfib_table_flush_ctx_t_ |
| 585 | { |
| 586 | /** |
| 587 | * The list of entries to flush |
| 588 | */ |
| 589 | fib_node_index_t *mftf_entries; |
| 590 | |
| 591 | /** |
| 592 | * The source we are flushing |
| 593 | */ |
| 594 | mfib_source_t mftf_source; |
| 595 | } mfib_table_flush_ctx_t; |
| 596 | |
| 597 | static int |
| 598 | mfib_table_flush_cb (fib_node_index_t mfib_entry_index, |
| 599 | void *arg) |
| 600 | { |
| 601 | mfib_table_flush_ctx_t *ctx = arg; |
| 602 | |
| 603 | if (mfib_entry_is_sourced(mfib_entry_index, ctx->mftf_source)) |
| 604 | { |
| 605 | vec_add1(ctx->mftf_entries, mfib_entry_index); |
| 606 | } |
| 607 | return (1); |
| 608 | } |
| 609 | |
| 610 | void |
| 611 | mfib_table_flush (u32 mfib_index, |
| 612 | fib_protocol_t proto, |
| 613 | mfib_source_t source) |
| 614 | { |
| 615 | fib_node_index_t *mfib_entry_index; |
| 616 | mfib_table_flush_ctx_t ctx = { |
| 617 | .mftf_entries = NULL, |
| 618 | .mftf_source = source, |
| 619 | }; |
| 620 | |
| 621 | mfib_table_walk(mfib_index, proto, |
| 622 | mfib_table_flush_cb, |
| 623 | &ctx); |
| 624 | |
| 625 | vec_foreach(mfib_entry_index, ctx.mftf_entries) |
| 626 | { |
| 627 | mfib_table_entry_delete_index(*mfib_entry_index, source); |
| 628 | } |
| 629 | |
| 630 | vec_free(ctx.mftf_entries); |
| 631 | } |
| 632 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 633 | static void |
| 634 | mfib_table_destroy (mfib_table_t *mfib_table) |
| 635 | { |
| 636 | vec_free(mfib_table->mft_desc); |
| 637 | |
| 638 | switch (mfib_table->mft_proto) |
| 639 | { |
| 640 | case FIB_PROTOCOL_IP4: |
| 641 | ip4_mfib_table_destroy(&mfib_table->v4); |
| 642 | break; |
| 643 | case FIB_PROTOCOL_IP6: |
| 644 | ip6_mfib_table_destroy(&mfib_table->v6); |
| 645 | break; |
| 646 | case FIB_PROTOCOL_MPLS: |
| 647 | ASSERT(0); |
| 648 | break; |
| 649 | } |
| 650 | } |
| 651 | |
| 652 | void |
| 653 | mfib_table_unlock (u32 fib_index, |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 654 | fib_protocol_t proto, |
| 655 | mfib_source_t source) |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 656 | { |
| 657 | mfib_table_t *mfib_table; |
| 658 | |
| 659 | mfib_table = mfib_table_get(fib_index, proto); |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 660 | mfib_table->mft_locks[source]--; |
| 661 | mfib_table->mft_locks[MFIB_TABLE_TOTAL_LOCKS]--; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 662 | |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 663 | if (0 == mfib_table->mft_locks[source]) |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 664 | { |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 665 | /* |
| 666 | * The source no longer needs the table. flush any routes |
| 667 | * from it just in case |
| 668 | */ |
| 669 | mfib_table_flush(fib_index, proto, source); |
| 670 | } |
| 671 | |
| 672 | if (0 == mfib_table->mft_locks[MFIB_TABLE_TOTAL_LOCKS]) |
| 673 | { |
| 674 | /* |
| 675 | * no more locak from any source - kill it |
| 676 | */ |
| 677 | mfib_table_destroy(mfib_table); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 678 | } |
| 679 | } |
| 680 | |
| 681 | void |
| 682 | mfib_table_lock (u32 fib_index, |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 683 | fib_protocol_t proto, |
| 684 | mfib_source_t source) |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 685 | { |
| 686 | mfib_table_t *mfib_table; |
| 687 | |
| 688 | mfib_table = mfib_table_get(fib_index, proto); |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 689 | mfib_table->mft_locks[source]++; |
| 690 | mfib_table->mft_locks[MFIB_TABLE_TOTAL_LOCKS]++; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 691 | } |
| 692 | |
Neale Ranns | 9e829a8 | 2018-12-17 05:50:32 -0800 | [diff] [blame] | 693 | u32 |
| 694 | mfib_table_get_n_routes (fib_node_index_t fib_index, |
| 695 | fib_protocol_t proto) |
| 696 | { |
| 697 | mfib_table_t *mfib_table; |
| 698 | |
| 699 | mfib_table = mfib_table_get(fib_index, proto); |
| 700 | |
| 701 | return (mfib_table->mft_total_route_counts); |
| 702 | } |
| 703 | |
Neale Ranns | 5a8123b | 2017-01-26 01:18:23 -0800 | [diff] [blame] | 704 | void |
| 705 | mfib_table_walk (u32 fib_index, |
| 706 | fib_protocol_t proto, |
| 707 | mfib_table_walk_fn_t fn, |
| 708 | void *ctx) |
| 709 | { |
| 710 | switch (proto) |
| 711 | { |
| 712 | case FIB_PROTOCOL_IP4: |
| 713 | ip4_mfib_table_walk(ip4_mfib_get(fib_index), fn, ctx); |
| 714 | break; |
| 715 | case FIB_PROTOCOL_IP6: |
| 716 | ip6_mfib_table_walk(ip6_mfib_get(fib_index), fn, ctx); |
| 717 | break; |
| 718 | case FIB_PROTOCOL_MPLS: |
| 719 | break; |
| 720 | } |
| 721 | } |
| 722 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 723 | u8* |
Christophe Fontaine | d3c008d | 2017-10-02 18:10:54 +0200 | [diff] [blame] | 724 | format_mfib_table_name (u8* s, va_list *ap) |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 725 | { |
Christophe Fontaine | d3c008d | 2017-10-02 18:10:54 +0200 | [diff] [blame] | 726 | fib_node_index_t fib_index = va_arg(*ap, fib_node_index_t); |
| 727 | fib_protocol_t proto = va_arg(*ap, int); // int promotion |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 728 | mfib_table_t *mfib_table; |
| 729 | |
| 730 | mfib_table = mfib_table_get(fib_index, proto); |
| 731 | |
| 732 | s = format(s, "%v", mfib_table->mft_desc); |
| 733 | |
| 734 | return (s); |
| 735 | } |
| 736 | |
Neale Ranns | c87aafa | 2017-11-29 00:59:31 -0800 | [diff] [blame] | 737 | u8 * |
| 738 | format_mfib_table_memory (u8 *s, va_list *args) |
| 739 | { |
| 740 | s = format(s, "%U", format_ip4_mfib_table_memory); |
| 741 | s = format(s, "%U", format_ip6_mfib_table_memory); |
| 742 | |
| 743 | return (s); |
| 744 | } |
| 745 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 746 | static clib_error_t * |
| 747 | mfib_module_init (vlib_main_t * vm) |
| 748 | { |
| 749 | clib_error_t * error; |
| 750 | |
Neale Ranns | 9e829a8 | 2018-12-17 05:50:32 -0800 | [diff] [blame] | 751 | mfib_entry_src_module_init(); |
Neale Ranns | 1ec3652 | 2017-11-29 05:20:37 -0800 | [diff] [blame] | 752 | mfib_entry_module_init(); |
| 753 | mfib_signal_module_init(); |
| 754 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 755 | if ((error = vlib_call_init_function (vm, fib_module_init))) |
| 756 | return (error); |
| 757 | if ((error = vlib_call_init_function (vm, rn_module_init))) |
| 758 | return (error); |
| 759 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 760 | return (error); |
| 761 | } |
| 762 | |
| 763 | VLIB_INIT_FUNCTION(mfib_module_init); |