Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +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/adj/adj.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 17 | #include <vnet/adj/adj_internal.h> |
| 18 | #include <vnet/fib/fib_walk.h> |
| 19 | |
| 20 | /* |
| 21 | * The 'DB' of all glean adjs. |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 22 | * There is one glean per-{interface, protocol, connected prefix} |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 23 | */ |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 24 | static uword **adj_gleans[FIB_PROTOCOL_IP_MAX]; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 25 | |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 26 | static inline u32 |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 27 | adj_get_glean_node (fib_protocol_t proto) |
| 28 | { |
| 29 | switch (proto) { |
| 30 | case FIB_PROTOCOL_IP4: |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 31 | return (ip4_glean_node.index); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 32 | case FIB_PROTOCOL_IP6: |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 33 | return (ip6_glean_node.index); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 34 | case FIB_PROTOCOL_MPLS: |
| 35 | break; |
| 36 | } |
| 37 | ASSERT(0); |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 38 | return (~0); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 39 | } |
| 40 | |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 41 | static adj_index_t |
| 42 | adj_glean_db_lookup (fib_protocol_t proto, |
| 43 | u32 sw_if_index, |
| 44 | const ip46_address_t *nh_addr) |
| 45 | { |
| 46 | uword *p; |
| 47 | |
| 48 | if (vec_len(adj_gleans[proto]) <= sw_if_index) |
| 49 | return (ADJ_INDEX_INVALID); |
| 50 | |
| 51 | p = hash_get_mem (adj_gleans[proto][sw_if_index], nh_addr); |
| 52 | |
| 53 | if (p) |
| 54 | return (p[0]); |
| 55 | |
| 56 | return (ADJ_INDEX_INVALID); |
| 57 | } |
| 58 | |
| 59 | static void |
| 60 | adj_glean_db_insert (fib_protocol_t proto, |
| 61 | u32 sw_if_index, |
| 62 | const ip46_address_t *nh_addr, |
| 63 | adj_index_t ai) |
| 64 | { |
| 65 | vlib_main_t *vm = vlib_get_main(); |
| 66 | |
| 67 | vlib_worker_thread_barrier_sync(vm); |
| 68 | |
| 69 | vec_validate(adj_gleans[proto], sw_if_index); |
| 70 | |
| 71 | if (NULL == adj_gleans[proto][sw_if_index]) |
| 72 | { |
| 73 | adj_gleans[proto][sw_if_index] = |
| 74 | hash_create_mem (0, sizeof(ip46_address_t), sizeof(adj_index_t)); |
| 75 | } |
| 76 | |
| 77 | hash_set_mem_alloc (&adj_gleans[proto][sw_if_index], |
| 78 | nh_addr, ai); |
| 79 | |
| 80 | vlib_worker_thread_barrier_release(vm); |
| 81 | } |
| 82 | |
| 83 | static void |
| 84 | adj_glean_db_remove (fib_protocol_t proto, |
| 85 | u32 sw_if_index, |
| 86 | const ip46_address_t *nh_addr) |
| 87 | { |
| 88 | vlib_main_t *vm = vlib_get_main(); |
| 89 | |
| 90 | vlib_worker_thread_barrier_sync(vm); |
| 91 | |
| 92 | ASSERT(ADJ_INDEX_INVALID != adj_glean_db_lookup(proto, sw_if_index, nh_addr)); |
| 93 | hash_unset_mem_free (&adj_gleans[proto][sw_if_index], |
| 94 | nh_addr); |
| 95 | |
| 96 | if (0 == hash_elts(adj_gleans[proto][sw_if_index])) |
| 97 | { |
| 98 | hash_free(adj_gleans[proto][sw_if_index]); |
| 99 | adj_gleans[proto][sw_if_index] = NULL; |
| 100 | } |
| 101 | vlib_worker_thread_barrier_release(vm); |
| 102 | } |
| 103 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 104 | /* |
| 105 | * adj_glean_add_or_lock |
| 106 | * |
| 107 | * The next_hop address here is used for source address selection in the DP. |
| 108 | * The glean adj is added to an interface's connected prefix, the next-hop |
| 109 | * passed here is the local prefix on the same interface. |
| 110 | */ |
| 111 | adj_index_t |
| 112 | adj_glean_add_or_lock (fib_protocol_t proto, |
Ole Troan | 6ee4051 | 2018-02-12 18:14:39 +0100 | [diff] [blame] | 113 | vnet_link_t linkt, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 114 | u32 sw_if_index, |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 115 | const fib_prefix_t *conn) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 116 | { |
| 117 | ip_adjacency_t * adj; |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 118 | adj_index_t ai; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 119 | |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 120 | ai = adj_glean_db_lookup(proto, sw_if_index, &conn->fp_addr); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 121 | |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 122 | if (ADJ_INDEX_INVALID == ai) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 123 | { |
| 124 | adj = adj_alloc(proto); |
| 125 | |
| 126 | adj->lookup_next_index = IP_LOOKUP_NEXT_GLEAN; |
| 127 | adj->ia_nh_proto = proto; |
Ole Troan | 6ee4051 | 2018-02-12 18:14:39 +0100 | [diff] [blame] | 128 | adj->ia_link = linkt; |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 129 | adj->ia_node_index = adj_get_glean_node(proto); |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 130 | ai = adj_get_index(adj); |
| 131 | adj_lock(ai); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 132 | |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 133 | ASSERT(conn); |
| 134 | fib_prefix_normalize(conn, &adj->sub_type.glean.rx_pfx); |
Neale Ranns | c819fc6 | 2018-02-16 02:44:05 -0800 | [diff] [blame] | 135 | adj->rewrite_header.sw_if_index = sw_if_index; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 136 | adj->rewrite_header.data_bytes = 0; |
Ole Troan | 6ee4051 | 2018-02-12 18:14:39 +0100 | [diff] [blame] | 137 | adj->rewrite_header.max_l3_packet_bytes = |
Ole Troan | d723161 | 2018-06-07 10:17:57 +0200 | [diff] [blame] | 138 | vnet_sw_interface_get_mtu(vnet_get_main(), sw_if_index, |
| 139 | vnet_link_to_mtu(linkt)); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 140 | |
Neale Ranns | c819fc6 | 2018-02-16 02:44:05 -0800 | [diff] [blame] | 141 | vnet_update_adjacency_for_sw_interface(vnet_get_main(), |
| 142 | sw_if_index, |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 143 | ai); |
| 144 | |
| 145 | adj_glean_db_insert(proto, sw_if_index, |
| 146 | &adj->sub_type.glean.rx_pfx.fp_addr, ai); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 147 | } |
| 148 | else |
| 149 | { |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 150 | adj = adj_get(ai); |
| 151 | adj_lock(ai); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 152 | } |
| 153 | |
Neale Ranns | 77cfc01 | 2019-12-15 22:26:37 +0000 | [diff] [blame] | 154 | adj_delegate_adj_created(adj); |
| 155 | |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 156 | return (ai); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 157 | } |
| 158 | |
Neale Ranns | c819fc6 | 2018-02-16 02:44:05 -0800 | [diff] [blame] | 159 | /** |
| 160 | * adj_glean_update_rewrite |
| 161 | */ |
| 162 | void |
| 163 | adj_glean_update_rewrite (adj_index_t adj_index) |
| 164 | { |
| 165 | ip_adjacency_t *adj; |
| 166 | |
| 167 | ASSERT(ADJ_INDEX_INVALID != adj_index); |
| 168 | |
| 169 | adj = adj_get(adj_index); |
| 170 | |
| 171 | vnet_rewrite_for_sw_interface(vnet_get_main(), |
| 172 | adj_fib_proto_2_nd(adj->ia_nh_proto), |
| 173 | adj->rewrite_header.sw_if_index, |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 174 | adj->ia_node_index, |
Neale Ranns | c819fc6 | 2018-02-16 02:44:05 -0800 | [diff] [blame] | 175 | VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST, |
| 176 | &adj->rewrite_header, |
| 177 | sizeof (adj->rewrite_data)); |
| 178 | } |
| 179 | |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 180 | static adj_walk_rc_t |
| 181 | adj_glean_update_rewrite_walk (adj_index_t ai, |
| 182 | void *data) |
| 183 | { |
| 184 | adj_glean_update_rewrite(ai); |
| 185 | |
| 186 | return (ADJ_WALK_RC_CONTINUE); |
| 187 | } |
| 188 | |
| 189 | void |
| 190 | adj_glean_update_rewrite_itf (u32 sw_if_index) |
| 191 | { |
| 192 | adj_glean_walk (sw_if_index, adj_glean_update_rewrite_walk, NULL); |
| 193 | } |
| 194 | |
| 195 | void |
| 196 | adj_glean_walk (u32 sw_if_index, |
| 197 | adj_walk_cb_t cb, |
| 198 | void *data) |
| 199 | { |
| 200 | fib_protocol_t proto; |
| 201 | |
| 202 | FOR_EACH_FIB_IP_PROTOCOL(proto) |
| 203 | { |
| 204 | adj_index_t ai, *aip, *ais = NULL; |
| 205 | ip46_address_t *conn; |
| 206 | |
| 207 | if (vec_len(adj_gleans[proto]) <= sw_if_index || |
| 208 | NULL == adj_gleans[proto][sw_if_index]) |
| 209 | continue; |
| 210 | |
| 211 | /* |
| 212 | * Walk first to collect the indices |
| 213 | * then walk the collection. This is safe |
| 214 | * to modifications of the hash table |
| 215 | */ |
| 216 | hash_foreach_mem(conn, ai, adj_gleans[proto][sw_if_index], |
| 217 | ({ |
| 218 | vec_add1(ais, ai); |
| 219 | })); |
| 220 | |
| 221 | vec_foreach(aip, ais) |
| 222 | { |
| 223 | if (ADJ_WALK_RC_STOP == cb(*aip, data)) |
| 224 | break; |
| 225 | } |
| 226 | vec_free(ais); |
| 227 | } |
| 228 | } |
| 229 | |
Neale Ranns | c819fc6 | 2018-02-16 02:44:05 -0800 | [diff] [blame] | 230 | adj_index_t |
| 231 | adj_glean_get (fib_protocol_t proto, |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 232 | u32 sw_if_index, |
| 233 | const ip46_address_t *nh) |
Neale Ranns | c819fc6 | 2018-02-16 02:44:05 -0800 | [diff] [blame] | 234 | { |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 235 | if (NULL != nh) |
Neale Ranns | c819fc6 | 2018-02-16 02:44:05 -0800 | [diff] [blame] | 236 | { |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 237 | return adj_glean_db_lookup(proto, sw_if_index, nh); |
| 238 | } |
| 239 | else |
| 240 | { |
| 241 | ip46_address_t *conn; |
| 242 | adj_index_t ai; |
| 243 | |
| 244 | if (vec_len(adj_gleans[proto]) <= sw_if_index || |
| 245 | NULL == adj_gleans[proto][sw_if_index]) |
| 246 | return (ADJ_INDEX_INVALID); |
| 247 | |
| 248 | hash_foreach_mem(conn, ai, adj_gleans[proto][sw_if_index], |
| 249 | ({ |
| 250 | return (ai); |
| 251 | })); |
Neale Ranns | c819fc6 | 2018-02-16 02:44:05 -0800 | [diff] [blame] | 252 | } |
| 253 | return (ADJ_INDEX_INVALID); |
| 254 | } |
| 255 | |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 256 | const ip46_address_t * |
| 257 | adj_glean_get_src (fib_protocol_t proto, |
| 258 | u32 sw_if_index, |
| 259 | const ip46_address_t *nh) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 260 | { |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 261 | const ip_adjacency_t *adj; |
| 262 | ip46_address_t *conn; |
| 263 | adj_index_t ai; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 264 | |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 265 | if (vec_len(adj_gleans[proto]) <= sw_if_index || |
| 266 | NULL == adj_gleans[proto][sw_if_index]) |
| 267 | return (NULL); |
| 268 | |
| 269 | fib_prefix_t pfx = { |
| 270 | .fp_len = fib_prefix_get_host_length(proto), |
| 271 | .fp_proto = proto, |
| 272 | }; |
| 273 | |
| 274 | if (nh) |
| 275 | pfx.fp_addr = *nh; |
| 276 | |
| 277 | hash_foreach_mem(conn, ai, adj_gleans[proto][sw_if_index], |
| 278 | ({ |
| 279 | adj = adj_get(ai); |
| 280 | |
| 281 | if (adj->sub_type.glean.rx_pfx.fp_len > 0) |
| 282 | { |
| 283 | /* if no destination is specified use the just glean */ |
| 284 | if (NULL == nh) |
| 285 | return (&adj->sub_type.glean.rx_pfx.fp_addr); |
| 286 | |
| 287 | /* check the clean covers the desintation */ |
| 288 | if (fib_prefix_is_cover(&adj->sub_type.glean.rx_pfx, &pfx)) |
| 289 | return (&adj->sub_type.glean.rx_pfx.fp_addr); |
| 290 | } |
| 291 | })); |
| 292 | |
| 293 | return (NULL); |
| 294 | } |
| 295 | |
| 296 | void |
| 297 | adj_glean_remove (ip_adjacency_t *adj) |
| 298 | { |
| 299 | fib_prefix_t norm; |
| 300 | |
| 301 | fib_prefix_normalize(&adj->sub_type.glean.rx_pfx, |
| 302 | &norm); |
| 303 | adj_glean_db_remove(adj->ia_nh_proto, |
| 304 | adj->rewrite_header.sw_if_index, |
| 305 | &norm.fp_addr); |
| 306 | } |
| 307 | |
| 308 | static adj_walk_rc_t |
| 309 | adj_glean_start_backwalk (adj_index_t ai, |
| 310 | void *data) |
| 311 | { |
| 312 | fib_node_back_walk_ctx_t bw_ctx = *(fib_node_back_walk_ctx_t*) data; |
| 313 | |
| 314 | fib_walk_sync(FIB_NODE_TYPE_ADJ, ai, &bw_ctx); |
| 315 | |
| 316 | return (ADJ_WALK_RC_CONTINUE); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | static clib_error_t * |
| 320 | adj_glean_interface_state_change (vnet_main_t * vnm, |
| 321 | u32 sw_if_index, |
| 322 | u32 flags) |
| 323 | { |
| 324 | /* |
| 325 | * for each glean on the interface trigger a walk back to the children |
| 326 | */ |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 327 | fib_node_back_walk_ctx_t bw_ctx = { |
| 328 | .fnbw_reason = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP ? |
| 329 | FIB_NODE_BW_REASON_FLAG_INTERFACE_UP : |
| 330 | FIB_NODE_BW_REASON_FLAG_INTERFACE_DOWN), |
| 331 | }; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 332 | |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 333 | adj_glean_walk (sw_if_index, adj_glean_start_backwalk, &bw_ctx); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 334 | |
| 335 | return (NULL); |
| 336 | } |
| 337 | |
| 338 | VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION(adj_glean_interface_state_change); |
| 339 | |
Neale Ranns | 8b37b87 | 2016-11-21 12:25:22 +0000 | [diff] [blame] | 340 | /** |
| 341 | * @brief Invoked on each SW interface of a HW interface when the |
| 342 | * HW interface state changes |
| 343 | */ |
Neale Ranns | 0053de6 | 2018-05-22 08:40:52 -0700 | [diff] [blame] | 344 | static walk_rc_t |
Neale Ranns | 8b37b87 | 2016-11-21 12:25:22 +0000 | [diff] [blame] | 345 | adj_nbr_hw_sw_interface_state_change (vnet_main_t * vnm, |
| 346 | u32 sw_if_index, |
| 347 | void *arg) |
| 348 | { |
| 349 | adj_glean_interface_state_change(vnm, sw_if_index, (uword) arg); |
Neale Ranns | 0053de6 | 2018-05-22 08:40:52 -0700 | [diff] [blame] | 350 | |
| 351 | return (WALK_CONTINUE); |
Neale Ranns | 8b37b87 | 2016-11-21 12:25:22 +0000 | [diff] [blame] | 352 | } |
| 353 | |
| 354 | /** |
| 355 | * @brief Registered callback for HW interface state changes |
| 356 | */ |
| 357 | static clib_error_t * |
| 358 | adj_glean_hw_interface_state_change (vnet_main_t * vnm, |
| 359 | u32 hw_if_index, |
| 360 | u32 flags) |
| 361 | { |
| 362 | /* |
| 363 | * walk SW interfaces on the HW |
| 364 | */ |
| 365 | uword sw_flags; |
| 366 | |
| 367 | sw_flags = ((flags & VNET_HW_INTERFACE_FLAG_LINK_UP) ? |
| 368 | VNET_SW_INTERFACE_FLAG_ADMIN_UP : |
| 369 | 0); |
| 370 | |
| 371 | vnet_hw_interface_walk_sw(vnm, hw_if_index, |
| 372 | adj_nbr_hw_sw_interface_state_change, |
| 373 | (void*) sw_flags); |
| 374 | |
| 375 | return (NULL); |
| 376 | } |
| 377 | |
| 378 | VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION( |
| 379 | adj_glean_hw_interface_state_change); |
| 380 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 381 | static clib_error_t * |
| 382 | adj_glean_interface_delete (vnet_main_t * vnm, |
| 383 | u32 sw_if_index, |
| 384 | u32 is_add) |
| 385 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 386 | if (is_add) |
| 387 | { |
| 388 | /* |
| 389 | * not interested in interface additions. we will not back walk |
| 390 | * to resolve paths through newly added interfaces. Why? The control |
| 391 | * plane should have the brains to add interfaces first, then routes. |
| 392 | * So the case where there are paths with a interface that matches |
| 393 | * one just created is the case where the path resolved through an |
| 394 | * interface that was deleted, and still has not been removed. The |
| 395 | * new interface added, is NO GUARANTEE that the interface being |
| 396 | * added now, even though it may have the same sw_if_index, is the |
| 397 | * same interface that the path needs. So tough! |
| 398 | * If the control plane wants these routes to resolve it needs to |
| 399 | * remove and add them again. |
| 400 | */ |
| 401 | return (NULL); |
| 402 | } |
| 403 | |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 404 | /* |
| 405 | * for each glean on the interface trigger a walk back to the children |
| 406 | */ |
| 407 | fib_node_back_walk_ctx_t bw_ctx = { |
| 408 | .fnbw_reason = FIB_NODE_BW_REASON_FLAG_INTERFACE_DELETE, |
| 409 | }; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 410 | |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 411 | adj_glean_walk (sw_if_index, adj_glean_start_backwalk, &bw_ctx); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 412 | |
| 413 | return (NULL); |
| 414 | } |
| 415 | |
| 416 | VNET_SW_INTERFACE_ADD_DEL_FUNCTION(adj_glean_interface_delete); |
| 417 | |
| 418 | u8* |
| 419 | format_adj_glean (u8* s, va_list *ap) |
| 420 | { |
Billy McFall | cfcf1e2 | 2016-10-14 09:51:49 -0400 | [diff] [blame] | 421 | index_t index = va_arg(*ap, index_t); |
| 422 | CLIB_UNUSED(u32 indent) = va_arg(*ap, u32); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 423 | ip_adjacency_t * adj = adj_get(index); |
| 424 | |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 425 | s = format(s, "%U-glean: [src:%U] %U", |
Neale Ranns | c819fc6 | 2018-02-16 02:44:05 -0800 | [diff] [blame] | 426 | format_fib_protocol, adj->ia_nh_proto, |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 427 | format_fib_prefix, &adj->sub_type.glean.rx_pfx, |
| 428 | format_vnet_rewrite, |
| 429 | &adj->rewrite_header, sizeof (adj->rewrite_data), 0); |
Neale Ranns | c819fc6 | 2018-02-16 02:44:05 -0800 | [diff] [blame] | 430 | |
| 431 | return (s); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 432 | } |
| 433 | |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 434 | u32 |
| 435 | adj_glean_db_size (void) |
| 436 | { |
| 437 | fib_protocol_t proto; |
| 438 | u32 sw_if_index = 0; |
| 439 | u64 count = 0; |
| 440 | |
| 441 | FOR_EACH_FIB_IP_PROTOCOL(proto) |
| 442 | { |
| 443 | vec_foreach_index(sw_if_index, adj_gleans[proto]) |
| 444 | { |
| 445 | if (NULL != adj_gleans[proto][sw_if_index]) |
| 446 | { |
| 447 | count += hash_elts(adj_gleans[proto][sw_if_index]); |
| 448 | } |
| 449 | } |
| 450 | } |
| 451 | return (count); |
| 452 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 453 | |
| 454 | static void |
| 455 | adj_dpo_lock (dpo_id_t *dpo) |
| 456 | { |
| 457 | adj_lock(dpo->dpoi_index); |
| 458 | } |
| 459 | static void |
| 460 | adj_dpo_unlock (dpo_id_t *dpo) |
| 461 | { |
| 462 | adj_unlock(dpo->dpoi_index); |
| 463 | } |
| 464 | |
| 465 | const static dpo_vft_t adj_glean_dpo_vft = { |
| 466 | .dv_lock = adj_dpo_lock, |
| 467 | .dv_unlock = adj_dpo_unlock, |
| 468 | .dv_format = format_adj_glean, |
Andrew Yourtchenko | 5f3fcb9 | 2017-10-25 05:50:37 -0700 | [diff] [blame] | 469 | .dv_get_urpf = adj_dpo_get_urpf, |
Neale Ranns | 8f5fef2 | 2020-12-21 08:29:34 +0000 | [diff] [blame^] | 470 | .dv_get_mtu = adj_dpo_get_mtu, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 471 | }; |
| 472 | |
| 473 | /** |
| 474 | * @brief The per-protocol VLIB graph nodes that are assigned to a glean |
| 475 | * object. |
| 476 | * |
| 477 | * this means that these graph nodes are ones from which a glean is the |
| 478 | * parent object in the DPO-graph. |
| 479 | */ |
| 480 | const static char* const glean_ip4_nodes[] = |
| 481 | { |
| 482 | "ip4-glean", |
| 483 | NULL, |
| 484 | }; |
| 485 | const static char* const glean_ip6_nodes[] = |
| 486 | { |
| 487 | "ip6-glean", |
| 488 | NULL, |
| 489 | }; |
| 490 | |
| 491 | const static char* const * const glean_nodes[DPO_PROTO_NUM] = |
| 492 | { |
| 493 | [DPO_PROTO_IP4] = glean_ip4_nodes, |
| 494 | [DPO_PROTO_IP6] = glean_ip6_nodes, |
| 495 | [DPO_PROTO_MPLS] = NULL, |
| 496 | }; |
| 497 | |
| 498 | void |
| 499 | adj_glean_module_init (void) |
| 500 | { |
| 501 | dpo_register(DPO_ADJACENCY_GLEAN, &adj_glean_dpo_vft, glean_nodes); |
| 502 | } |