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 | |
Stanislav Zaikin | 601972b | 2023-03-14 12:32:32 +0100 | [diff] [blame] | 189 | static void |
| 190 | adj_glean_walk_proto (fib_protocol_t proto, |
| 191 | u32 sw_if_index, |
| 192 | adj_walk_cb_t cb, |
| 193 | void *data) |
| 194 | { |
| 195 | adj_index_t ai, *aip, *ais = NULL; |
| 196 | ip46_address_t *conn; |
| 197 | |
| 198 | if (vec_len(adj_gleans[proto]) <= sw_if_index || |
| 199 | NULL == adj_gleans[proto][sw_if_index]) |
| 200 | return; |
| 201 | |
| 202 | /* |
| 203 | * Walk first to collect the indices |
| 204 | * then walk the collection. This is safe |
| 205 | * to modifications of the hash table |
| 206 | */ |
| 207 | hash_foreach_mem(conn, ai, adj_gleans[proto][sw_if_index], |
| 208 | ({ |
| 209 | vec_add1(ais, ai); |
| 210 | })); |
| 211 | |
| 212 | vec_foreach(aip, ais) |
| 213 | { |
| 214 | if (ADJ_WALK_RC_STOP == cb(*aip, data)) |
| 215 | return; |
| 216 | } |
| 217 | vec_free(ais); |
| 218 | } |
| 219 | |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 220 | void |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 221 | adj_glean_walk (u32 sw_if_index, |
| 222 | adj_walk_cb_t cb, |
| 223 | void *data) |
| 224 | { |
| 225 | fib_protocol_t proto; |
| 226 | |
| 227 | FOR_EACH_FIB_IP_PROTOCOL(proto) |
| 228 | { |
Stanislav Zaikin | 601972b | 2023-03-14 12:32:32 +0100 | [diff] [blame] | 229 | adj_glean_walk_proto (proto, sw_if_index, cb, data); |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 230 | } |
| 231 | } |
| 232 | |
Neale Ranns | c819fc6 | 2018-02-16 02:44:05 -0800 | [diff] [blame] | 233 | adj_index_t |
| 234 | adj_glean_get (fib_protocol_t proto, |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 235 | u32 sw_if_index, |
| 236 | const ip46_address_t *nh) |
Neale Ranns | c819fc6 | 2018-02-16 02:44:05 -0800 | [diff] [blame] | 237 | { |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 238 | if (NULL != nh) |
Neale Ranns | c819fc6 | 2018-02-16 02:44:05 -0800 | [diff] [blame] | 239 | { |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 240 | return adj_glean_db_lookup(proto, sw_if_index, nh); |
| 241 | } |
| 242 | else |
| 243 | { |
| 244 | ip46_address_t *conn; |
| 245 | adj_index_t ai; |
| 246 | |
| 247 | if (vec_len(adj_gleans[proto]) <= sw_if_index || |
| 248 | NULL == adj_gleans[proto][sw_if_index]) |
| 249 | return (ADJ_INDEX_INVALID); |
| 250 | |
| 251 | hash_foreach_mem(conn, ai, adj_gleans[proto][sw_if_index], |
| 252 | ({ |
| 253 | return (ai); |
| 254 | })); |
Neale Ranns | c819fc6 | 2018-02-16 02:44:05 -0800 | [diff] [blame] | 255 | } |
| 256 | return (ADJ_INDEX_INVALID); |
| 257 | } |
| 258 | |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 259 | const ip46_address_t * |
| 260 | adj_glean_get_src (fib_protocol_t proto, |
| 261 | u32 sw_if_index, |
| 262 | const ip46_address_t *nh) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 263 | { |
Július Milan | 98874cd | 2021-02-16 19:20:47 +0100 | [diff] [blame] | 264 | const ip46_address_t *conn, *source; |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 265 | const ip_adjacency_t *adj; |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 266 | adj_index_t ai; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 267 | |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 268 | if (vec_len(adj_gleans[proto]) <= sw_if_index || |
| 269 | NULL == adj_gleans[proto][sw_if_index]) |
| 270 | return (NULL); |
| 271 | |
| 272 | fib_prefix_t pfx = { |
| 273 | .fp_len = fib_prefix_get_host_length(proto), |
| 274 | .fp_proto = proto, |
| 275 | }; |
| 276 | |
| 277 | if (nh) |
| 278 | pfx.fp_addr = *nh; |
| 279 | |
Július Milan | 98874cd | 2021-02-16 19:20:47 +0100 | [diff] [blame] | 280 | /* |
| 281 | * An interface can have more than one glean address. Where |
| 282 | * possible we want to return a source address from the same |
| 283 | * subnet as the destination. If this is not possible then any address |
| 284 | * will do. |
| 285 | */ |
| 286 | source = NULL; |
| 287 | |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 288 | hash_foreach_mem(conn, ai, adj_gleans[proto][sw_if_index], |
| 289 | ({ |
| 290 | adj = adj_get(ai); |
| 291 | |
| 292 | if (adj->sub_type.glean.rx_pfx.fp_len > 0) |
| 293 | { |
Július Milan | 98874cd | 2021-02-16 19:20:47 +0100 | [diff] [blame] | 294 | source = &adj->sub_type.glean.rx_pfx.fp_addr; |
| 295 | |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 296 | /* if no destination is specified use the just glean */ |
| 297 | if (NULL == nh) |
Július Milan | 98874cd | 2021-02-16 19:20:47 +0100 | [diff] [blame] | 298 | return (source); |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 299 | |
| 300 | /* check the clean covers the desintation */ |
| 301 | if (fib_prefix_is_cover(&adj->sub_type.glean.rx_pfx, &pfx)) |
Július Milan | 98874cd | 2021-02-16 19:20:47 +0100 | [diff] [blame] | 302 | return (source); |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 303 | } |
| 304 | })); |
| 305 | |
Július Milan | 98874cd | 2021-02-16 19:20:47 +0100 | [diff] [blame] | 306 | return (source); |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 307 | } |
| 308 | |
| 309 | void |
| 310 | adj_glean_remove (ip_adjacency_t *adj) |
| 311 | { |
| 312 | fib_prefix_t norm; |
| 313 | |
| 314 | fib_prefix_normalize(&adj->sub_type.glean.rx_pfx, |
| 315 | &norm); |
| 316 | adj_glean_db_remove(adj->ia_nh_proto, |
| 317 | adj->rewrite_header.sw_if_index, |
| 318 | &norm.fp_addr); |
| 319 | } |
| 320 | |
| 321 | static adj_walk_rc_t |
| 322 | adj_glean_start_backwalk (adj_index_t ai, |
| 323 | void *data) |
| 324 | { |
| 325 | fib_node_back_walk_ctx_t bw_ctx = *(fib_node_back_walk_ctx_t*) data; |
| 326 | |
| 327 | fib_walk_sync(FIB_NODE_TYPE_ADJ, ai, &bw_ctx); |
| 328 | |
| 329 | return (ADJ_WALK_RC_CONTINUE); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 330 | } |
| 331 | |
| 332 | static clib_error_t * |
| 333 | adj_glean_interface_state_change (vnet_main_t * vnm, |
| 334 | u32 sw_if_index, |
| 335 | u32 flags) |
| 336 | { |
| 337 | /* |
| 338 | * for each glean on the interface trigger a walk back to the children |
| 339 | */ |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 340 | fib_node_back_walk_ctx_t bw_ctx = { |
| 341 | .fnbw_reason = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP ? |
| 342 | FIB_NODE_BW_REASON_FLAG_INTERFACE_UP : |
| 343 | FIB_NODE_BW_REASON_FLAG_INTERFACE_DOWN), |
| 344 | }; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 345 | |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 346 | adj_glean_walk (sw_if_index, adj_glean_start_backwalk, &bw_ctx); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 347 | |
| 348 | return (NULL); |
| 349 | } |
| 350 | |
| 351 | VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION(adj_glean_interface_state_change); |
| 352 | |
Neale Ranns | 8b37b87 | 2016-11-21 12:25:22 +0000 | [diff] [blame] | 353 | /** |
| 354 | * @brief Invoked on each SW interface of a HW interface when the |
| 355 | * HW interface state changes |
| 356 | */ |
Neale Ranns | 0053de6 | 2018-05-22 08:40:52 -0700 | [diff] [blame] | 357 | static walk_rc_t |
Neale Ranns | 8b37b87 | 2016-11-21 12:25:22 +0000 | [diff] [blame] | 358 | adj_nbr_hw_sw_interface_state_change (vnet_main_t * vnm, |
| 359 | u32 sw_if_index, |
| 360 | void *arg) |
| 361 | { |
| 362 | adj_glean_interface_state_change(vnm, sw_if_index, (uword) arg); |
Neale Ranns | 0053de6 | 2018-05-22 08:40:52 -0700 | [diff] [blame] | 363 | |
| 364 | return (WALK_CONTINUE); |
Neale Ranns | 8b37b87 | 2016-11-21 12:25:22 +0000 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | /** |
| 368 | * @brief Registered callback for HW interface state changes |
| 369 | */ |
| 370 | static clib_error_t * |
| 371 | adj_glean_hw_interface_state_change (vnet_main_t * vnm, |
| 372 | u32 hw_if_index, |
| 373 | u32 flags) |
| 374 | { |
| 375 | /* |
| 376 | * walk SW interfaces on the HW |
| 377 | */ |
| 378 | uword sw_flags; |
| 379 | |
| 380 | sw_flags = ((flags & VNET_HW_INTERFACE_FLAG_LINK_UP) ? |
| 381 | VNET_SW_INTERFACE_FLAG_ADMIN_UP : |
| 382 | 0); |
| 383 | |
| 384 | vnet_hw_interface_walk_sw(vnm, hw_if_index, |
| 385 | adj_nbr_hw_sw_interface_state_change, |
| 386 | (void*) sw_flags); |
| 387 | |
| 388 | return (NULL); |
| 389 | } |
| 390 | |
| 391 | VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION( |
| 392 | adj_glean_hw_interface_state_change); |
| 393 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 394 | static clib_error_t * |
| 395 | adj_glean_interface_delete (vnet_main_t * vnm, |
| 396 | u32 sw_if_index, |
| 397 | u32 is_add) |
| 398 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 399 | if (is_add) |
| 400 | { |
| 401 | /* |
| 402 | * not interested in interface additions. we will not back walk |
| 403 | * to resolve paths through newly added interfaces. Why? The control |
| 404 | * plane should have the brains to add interfaces first, then routes. |
| 405 | * So the case where there are paths with a interface that matches |
| 406 | * one just created is the case where the path resolved through an |
| 407 | * interface that was deleted, and still has not been removed. The |
| 408 | * new interface added, is NO GUARANTEE that the interface being |
| 409 | * added now, even though it may have the same sw_if_index, is the |
| 410 | * same interface that the path needs. So tough! |
| 411 | * If the control plane wants these routes to resolve it needs to |
| 412 | * remove and add them again. |
| 413 | */ |
| 414 | return (NULL); |
| 415 | } |
| 416 | |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 417 | /* |
| 418 | * for each glean on the interface trigger a walk back to the children |
| 419 | */ |
| 420 | fib_node_back_walk_ctx_t bw_ctx = { |
| 421 | .fnbw_reason = FIB_NODE_BW_REASON_FLAG_INTERFACE_DELETE, |
| 422 | }; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 423 | |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 424 | adj_glean_walk (sw_if_index, adj_glean_start_backwalk, &bw_ctx); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 425 | |
| 426 | return (NULL); |
| 427 | } |
| 428 | |
| 429 | VNET_SW_INTERFACE_ADD_DEL_FUNCTION(adj_glean_interface_delete); |
| 430 | |
Neale Ranns | ea8adf7 | 2021-08-13 08:10:59 +0000 | [diff] [blame] | 431 | /** |
| 432 | * Callback function invoked when an interface's MAC Address changes |
| 433 | */ |
| 434 | static void |
| 435 | adj_glean_ethernet_change_mac (ethernet_main_t * em, |
Neale Ranns | 50bd1d3 | 2021-10-08 07:16:12 +0000 | [diff] [blame] | 436 | u32 sw_if_index, |
| 437 | uword opaque) |
Neale Ranns | ea8adf7 | 2021-08-13 08:10:59 +0000 | [diff] [blame] | 438 | { |
| 439 | adj_glean_walk (sw_if_index, adj_glean_update_rewrite_walk, NULL); |
| 440 | } |
| 441 | |
Neale Ranns | 50bd1d3 | 2021-10-08 07:16:12 +0000 | [diff] [blame] | 442 | static void |
| 443 | adj_glean_table_bind (fib_protocol_t fproto, |
| 444 | u32 sw_if_index, |
| 445 | u32 itf_fib_index) |
| 446 | { |
| 447 | /* |
| 448 | * for each glean on the interface trigger a walk back to the children |
| 449 | */ |
| 450 | fib_node_back_walk_ctx_t bw_ctx = { |
| 451 | .fnbw_reason = FIB_NODE_BW_REASON_FLAG_INTERFACE_BIND, |
| 452 | .interface_bind = { |
| 453 | .fnbw_to_fib_index = itf_fib_index, |
| 454 | }, |
| 455 | }; |
| 456 | |
Stanislav Zaikin | 601972b | 2023-03-14 12:32:32 +0100 | [diff] [blame] | 457 | adj_glean_walk_proto (fproto, sw_if_index, adj_glean_start_backwalk, &bw_ctx); |
Neale Ranns | 50bd1d3 | 2021-10-08 07:16:12 +0000 | [diff] [blame] | 458 | } |
| 459 | |
| 460 | |
| 461 | /** |
| 462 | * Callback function invoked when an interface's IPv6 Table |
| 463 | * binding changes |
| 464 | */ |
| 465 | static void |
| 466 | adj_glean_ip6_table_bind (ip6_main_t * im, |
| 467 | uword opaque, |
| 468 | u32 sw_if_index, |
| 469 | u32 new_fib_index, |
| 470 | u32 old_fib_index) |
| 471 | { |
| 472 | adj_glean_table_bind (FIB_PROTOCOL_IP6, sw_if_index, new_fib_index); |
| 473 | } |
| 474 | |
| 475 | /** |
| 476 | * Callback function invoked when an interface's IPv4 Table |
| 477 | * binding changes |
| 478 | */ |
| 479 | static void |
| 480 | adj_glean_ip4_table_bind (ip4_main_t * im, |
| 481 | uword opaque, |
| 482 | u32 sw_if_index, |
| 483 | u32 new_fib_index, |
| 484 | u32 old_fib_index) |
| 485 | { |
| 486 | adj_glean_table_bind (FIB_PROTOCOL_IP4, sw_if_index, new_fib_index); |
| 487 | } |
| 488 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 489 | u8* |
| 490 | format_adj_glean (u8* s, va_list *ap) |
| 491 | { |
Billy McFall | cfcf1e2 | 2016-10-14 09:51:49 -0400 | [diff] [blame] | 492 | index_t index = va_arg(*ap, index_t); |
| 493 | CLIB_UNUSED(u32 indent) = va_arg(*ap, u32); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 494 | ip_adjacency_t * adj = adj_get(index); |
| 495 | |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 496 | s = format(s, "%U-glean: [src:%U] %U", |
Neale Ranns | c819fc6 | 2018-02-16 02:44:05 -0800 | [diff] [blame] | 497 | format_fib_protocol, adj->ia_nh_proto, |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 498 | format_fib_prefix, &adj->sub_type.glean.rx_pfx, |
| 499 | format_vnet_rewrite, |
| 500 | &adj->rewrite_header, sizeof (adj->rewrite_data), 0); |
Neale Ranns | c819fc6 | 2018-02-16 02:44:05 -0800 | [diff] [blame] | 501 | |
| 502 | return (s); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 503 | } |
| 504 | |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 505 | u32 |
| 506 | adj_glean_db_size (void) |
| 507 | { |
| 508 | fib_protocol_t proto; |
| 509 | u32 sw_if_index = 0; |
| 510 | u64 count = 0; |
| 511 | |
| 512 | FOR_EACH_FIB_IP_PROTOCOL(proto) |
| 513 | { |
| 514 | vec_foreach_index(sw_if_index, adj_gleans[proto]) |
| 515 | { |
| 516 | if (NULL != adj_gleans[proto][sw_if_index]) |
| 517 | { |
| 518 | count += hash_elts(adj_gleans[proto][sw_if_index]); |
| 519 | } |
| 520 | } |
| 521 | } |
| 522 | return (count); |
| 523 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 524 | |
| 525 | static void |
| 526 | adj_dpo_lock (dpo_id_t *dpo) |
| 527 | { |
| 528 | adj_lock(dpo->dpoi_index); |
| 529 | } |
| 530 | static void |
| 531 | adj_dpo_unlock (dpo_id_t *dpo) |
| 532 | { |
| 533 | adj_unlock(dpo->dpoi_index); |
| 534 | } |
| 535 | |
| 536 | const static dpo_vft_t adj_glean_dpo_vft = { |
| 537 | .dv_lock = adj_dpo_lock, |
| 538 | .dv_unlock = adj_dpo_unlock, |
| 539 | .dv_format = format_adj_glean, |
Andrew Yourtchenko | 5f3fcb9 | 2017-10-25 05:50:37 -0700 | [diff] [blame] | 540 | .dv_get_urpf = adj_dpo_get_urpf, |
Neale Ranns | 8f5fef2 | 2020-12-21 08:29:34 +0000 | [diff] [blame] | 541 | .dv_get_mtu = adj_dpo_get_mtu, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 542 | }; |
| 543 | |
| 544 | /** |
| 545 | * @brief The per-protocol VLIB graph nodes that are assigned to a glean |
| 546 | * object. |
| 547 | * |
| 548 | * this means that these graph nodes are ones from which a glean is the |
| 549 | * parent object in the DPO-graph. |
| 550 | */ |
| 551 | const static char* const glean_ip4_nodes[] = |
| 552 | { |
| 553 | "ip4-glean", |
| 554 | NULL, |
| 555 | }; |
| 556 | const static char* const glean_ip6_nodes[] = |
| 557 | { |
| 558 | "ip6-glean", |
| 559 | NULL, |
| 560 | }; |
| 561 | |
| 562 | const static char* const * const glean_nodes[DPO_PROTO_NUM] = |
| 563 | { |
| 564 | [DPO_PROTO_IP4] = glean_ip4_nodes, |
| 565 | [DPO_PROTO_IP6] = glean_ip6_nodes, |
| 566 | [DPO_PROTO_MPLS] = NULL, |
| 567 | }; |
| 568 | |
| 569 | void |
| 570 | adj_glean_module_init (void) |
| 571 | { |
| 572 | dpo_register(DPO_ADJACENCY_GLEAN, &adj_glean_dpo_vft, glean_nodes); |
Neale Ranns | ea8adf7 | 2021-08-13 08:10:59 +0000 | [diff] [blame] | 573 | |
| 574 | ethernet_address_change_ctx_t ctx = { |
| 575 | .function = adj_glean_ethernet_change_mac, |
| 576 | .function_opaque = 0, |
| 577 | }; |
| 578 | vec_add1 (ethernet_main.address_change_callbacks, ctx); |
Neale Ranns | 50bd1d3 | 2021-10-08 07:16:12 +0000 | [diff] [blame] | 579 | |
| 580 | ip6_table_bind_callback_t cbt6 = { |
| 581 | .function = adj_glean_ip6_table_bind, |
| 582 | }; |
| 583 | vec_add1 (ip6_main.table_bind_callbacks, cbt6); |
| 584 | |
| 585 | ip4_table_bind_callback_t cbt4 = { |
| 586 | .function = adj_glean_ip4_table_bind, |
| 587 | }; |
| 588 | vec_add1 (ip4_main.table_bind_callbacks, cbt4); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 589 | } |