1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 2020 Alexander V. Chernikov 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25 * SUCH DAMAGE. 26 * 27 * $FreeBSD$ 28 */ 29 #define RTDEBUG 30 #include "opt_inet.h" 31 #include "opt_route.h" 32 33 #include <sys/cdefs.h> 34 #include <sys/param.h> 35 #include <sys/systm.h> 36 #include <sys/lock.h> 37 #include <sys/rmlock.h> 38 #include <sys/malloc.h> 39 #include <sys/mbuf.h> 40 #include <sys/refcount.h> 41 #include <sys/socket.h> 42 #include <sys/sysctl.h> 43 #include <sys/kernel.h> 44 #include <sys/epoch.h> 45 46 #include <net/if.h> 47 #include <net/if_var.h> 48 #include <net/route.h> 49 #include <net/route/route_ctl.h> 50 #include <net/route/route_var.h> 51 #include <net/vnet.h> 52 53 #include <netinet/in.h> 54 #include <netinet/in_var.h> 55 #include <netinet/in_fib.h> 56 57 #include <net/route/nhop_utils.h> 58 #include <net/route/nhop.h> 59 #include <net/route/nhop_var.h> 60 #include <net/route/nhgrp_var.h> 61 62 /* 63 * This file contains the supporting functions for creating multipath groups 64 * and compiling their dataplane parts. 65 */ 66 67 /* MPF_MULTIPATH must be the same as NHF_MULTIPATH for nhop selection to work */ 68 _Static_assert(MPF_MULTIPATH == NHF_MULTIPATH, 69 "MPF_MULTIPATH must be the same as NHF_MULTIPATH"); 70 /* Offset and size of flags field has to be the same for nhop/nhop groups */ 71 CHK_STRUCT_FIELD_GENERIC(struct nhop_object, nh_flags, struct nhgrp_object, nhg_flags); 72 /* Cap multipath to 64, as the larger values would break rib_cmd_info bmasks */ 73 CTASSERT(RIB_MAX_MPATH_WIDTH <= 64); 74 75 static int wn_cmp(const void *a, const void *b); 76 static void sort_weightened_nhops(struct weightened_nhop *wn, int num_nhops); 77 78 static struct nhgrp_priv *get_nhgrp(struct nh_control *ctl, 79 struct weightened_nhop *wn, int num_nhops, int *perror); 80 static void destroy_nhgrp(struct nhgrp_priv *nhg_priv); 81 static void destroy_nhgrp_epoch(epoch_context_t ctx); 82 static void free_nhgrp_nhops(struct nhgrp_priv *nhg_priv); 83 84 static int 85 wn_cmp(const void *a, const void *b) 86 { 87 const struct weightened_nhop *wa = a; 88 const struct weightened_nhop *wb = b; 89 90 if (wa->weight > wb->weight) 91 return (1); 92 else if (wa->weight < wb->weight) 93 return (-1); 94 95 /* Compare nexthops by pointer */ 96 if (wa->nh > wb->nh) 97 return (1); 98 else if (wa->nh < wb->nh) 99 return (-1); 100 else 101 return (0); 102 } 103 104 /* 105 * Perform in-place sorting for array of nexthops in @wn. 106 * 107 * To avoid nh groups duplication, nexthops/weights in the 108 * @wn need to be ordered deterministically. 109 * As this sorting is needed only for the control plane functionality, 110 * there are no specific external requirements. 111 * 112 * Sort by weight first, to ease calculation of the slot sizes. 113 */ 114 static void 115 sort_weightened_nhops(struct weightened_nhop *wn, int num_nhops) 116 { 117 118 qsort(wn, num_nhops, sizeof(struct weightened_nhop), wn_cmp); 119 } 120 121 /* 122 * Calculate minimum number of slots required to fit the existing 123 * set of weights in the common use case where weights are "easily" 124 * comparable. 125 * Assumes @wn is sorted by weight ascending and each weight is > 0. 126 * Returns number of slots or 0 if precise calculation failed. 127 * 128 * Some examples: 129 * note: (i, X) pair means (nhop=i, weight=X): 130 * (1, 1) (2, 2) -> 3 slots [1, 2, 2] 131 * (1, 100), (2, 200) -> 3 slots [1, 2, 2] 132 * (1, 100), (2, 200), (3, 400) -> 7 slots [1, 2, 2, 3, 3, 3] 133 */ 134 static uint32_t 135 calc_min_mpath_slots_fast(const struct weightened_nhop *wn, size_t num_items) 136 { 137 uint32_t i, last, xmin; 138 uint64_t total = 0; 139 140 last = 0; 141 xmin = wn[0].weight; 142 for (i = 0; i < num_items; i++) { 143 total += wn[i].weight; 144 if ((wn[i].weight - last < xmin) && (wn[i].weight != last)) 145 xmin = wn[i].weight - last; 146 last = wn[i].weight; 147 } 148 /* xmin is the minimum unit of desired capacity */ 149 if ((total % xmin) != 0) 150 return (0); 151 for (i = 0; i < num_items; i++) { 152 if ((wn[i].weight % xmin) != 0) 153 return (0); 154 } 155 156 return ((uint32_t)(total / xmin)); 157 } 158 159 /* 160 * Calculate minimum number of slots required to fit the existing 161 * set of weights while maintaining weight coefficients. 162 * 163 * Assume @wn is sorted by weight ascending and each weight is > 0. 164 * 165 * Tries to find simple precise solution first and falls back to 166 * RIB_MAX_MPATH_WIDTH in case of any failure. 167 */ 168 static uint32_t 169 calc_min_mpath_slots(const struct weightened_nhop *wn, size_t num_items) 170 { 171 uint32_t v; 172 173 v = calc_min_mpath_slots_fast(wn, num_items); 174 if ((v == 0) || (v > RIB_MAX_MPATH_WIDTH)) 175 v = RIB_MAX_MPATH_WIDTH; 176 177 return (v); 178 } 179 180 /* 181 * Nexthop group data consists of 182 * 1) dataplane part, with nhgrp_object as a header followed by an 183 * arbitrary number of nexthop pointers. 184 * 2) control plane part, with nhgrp_priv as a header, followed by 185 * an arbirtrary number of 'struct weightened_nhop' object. 186 * 187 * Given nexthop groups are (mostly) immutable, allocate all data 188 * in one go. 189 * 190 */ 191 __noinline static size_t 192 get_nhgrp_alloc_size(uint32_t nhg_size, uint32_t num_nhops) 193 { 194 size_t sz; 195 196 sz = sizeof(struct nhgrp_object); 197 sz += nhg_size * sizeof(struct nhop_object *); 198 sz += sizeof(struct nhgrp_priv); 199 sz += num_nhops * sizeof(struct weightened_nhop); 200 return (sz); 201 } 202 203 /* 204 * Compile actual list of nexthops to be used by datapath from 205 * the nexthop group @dst. 206 * 207 * For example, compiling control plane list of 2 nexthops 208 * [(200, A), (100, B)] would result in the datapath array 209 * [A, A, B] 210 */ 211 static void 212 compile_nhgrp(struct nhgrp_priv *dst_priv, const struct weightened_nhop *x, 213 uint32_t num_slots) 214 { 215 struct nhgrp_object *dst; 216 int i, slot_idx, remaining_slots; 217 uint64_t remaining_sum, nh_weight, nh_slots; 218 219 slot_idx = 0; 220 dst = dst_priv->nhg; 221 /* Calculate sum of all weights */ 222 remaining_sum = 0; 223 for (i = 0; i < dst_priv->nhg_nh_count; i++) 224 remaining_sum += x[i].weight; 225 remaining_slots = num_slots; 226 DPRINTF("O: %u/%u", (uint32_t)remaining_sum, remaining_slots); 227 for (i = 0; i < dst_priv->nhg_nh_count; i++) { 228 /* Calculate number of slots for the current nexthop */ 229 if (remaining_sum > 0) { 230 nh_weight = (uint64_t)x[i].weight; 231 nh_slots = (nh_weight * remaining_slots / remaining_sum); 232 } else 233 nh_slots = 0; 234 235 remaining_sum -= x[i].weight; 236 remaining_slots -= nh_slots; 237 238 DPRINTF(" OO[%d]: %u/%u curr=%d slot_idx=%d", i, 239 (uint32_t)remaining_sum, remaining_slots, 240 (int)nh_slots, slot_idx); 241 242 KASSERT((slot_idx + nh_slots <= num_slots), 243 ("index overflow during nhg compilation")); 244 while (nh_slots-- > 0) 245 dst->nhops[slot_idx++] = x[i].nh; 246 } 247 } 248 249 /* 250 * Allocates new nexthop group for the list of weightened nexthops. 251 * Assume sorted list. 252 * Does NOT reference any nexthops in the group. 253 * Returns group with refcount=1 or NULL. 254 */ 255 static struct nhgrp_priv * 256 alloc_nhgrp(struct weightened_nhop *wn, int num_nhops) 257 { 258 uint32_t nhgrp_size; 259 int flags = M_NOWAIT; 260 struct nhgrp_object *nhg; 261 struct nhgrp_priv *nhg_priv; 262 263 nhgrp_size = calc_min_mpath_slots(wn, num_nhops); 264 if (nhgrp_size == 0) { 265 /* Zero weights, abort */ 266 return (NULL); 267 } 268 269 size_t sz = get_nhgrp_alloc_size(nhgrp_size, num_nhops); 270 nhg = malloc(sz, M_NHOP, flags | M_ZERO); 271 if (nhg == NULL) { 272 return (NULL); 273 } 274 275 /* Has to be the first to make NHGRP_PRIV() work */ 276 nhg->nhg_size = nhgrp_size; 277 DPRINTF("new mpath group: num_nhops: %u", (uint32_t)nhgrp_size); 278 nhg->nhg_flags = MPF_MULTIPATH; 279 280 nhg_priv = NHGRP_PRIV(nhg); 281 nhg_priv->nhg_nh_count = num_nhops; 282 refcount_init(&nhg_priv->nhg_refcount, 1); 283 284 /* Please see nhgrp_free() comments on the initial value */ 285 refcount_init(&nhg_priv->nhg_linked, 2); 286 287 nhg_priv->nhg = nhg; 288 memcpy(&nhg_priv->nhg_nh_weights[0], wn, 289 num_nhops * sizeof(struct weightened_nhop)); 290 291 compile_nhgrp(nhg_priv, wn, nhg->nhg_size); 292 293 return (nhg_priv); 294 } 295 296 void 297 nhgrp_ref_object(struct nhgrp_object *nhg) 298 { 299 struct nhgrp_priv *nhg_priv; 300 u_int old; 301 302 nhg_priv = NHGRP_PRIV(nhg); 303 old = refcount_acquire(&nhg_priv->nhg_refcount); 304 KASSERT(old > 0, ("%s: nhgrp object %p has 0 refs", __func__, nhg)); 305 } 306 307 void 308 nhgrp_free(struct nhgrp_object *nhg) 309 { 310 struct nhgrp_priv *nhg_priv; 311 struct nh_control *ctl; 312 struct epoch_tracker et; 313 314 nhg_priv = NHGRP_PRIV(nhg); 315 316 if (!refcount_release(&nhg_priv->nhg_refcount)) 317 return; 318 319 /* 320 * group objects don't have an explicit lock attached to it. 321 * As groups are reclaimed based on reference count, it is possible 322 * that some groups will persist after vnet destruction callback 323 * called. Given that, handle scenario with nhgrp_free_group() being 324 * called either after or simultaneously with nhgrp_ctl_unlink_all() 325 * by using another reference counter: nhg_linked. 326 * 327 * There are only 2 places, where nhg_linked can be decreased: 328 * rib destroy (nhgrp_ctl_unlink_all) and this function. 329 * nhg_link can never be increased. 330 * 331 * Hence, use initial value of 2 to make use of 332 * refcount_release_if_not_last(). 333 * 334 * There can be two scenarious when calling this function: 335 * 336 * 1) nhg_linked value is 2. This means that either 337 * nhgrp_ctl_unlink_all() has not been called OR it is running, 338 * but we are guaranteed that nh_control won't be freed in 339 * this epoch. Hence, nexthop can be safely unlinked. 340 * 341 * 2) nh_linked value is 1. In that case, nhgrp_ctl_unlink_all() 342 * has been called and nhgrp unlink can be skipped. 343 */ 344 345 NET_EPOCH_ENTER(et); 346 if (refcount_release_if_not_last(&nhg_priv->nhg_linked)) { 347 ctl = nhg_priv->nh_control; 348 if (unlink_nhgrp(ctl, nhg_priv) == NULL) { 349 /* Do not try to reclaim */ 350 DPRINTF("Failed to unlink nexhop group %p", nhg_priv); 351 NET_EPOCH_EXIT(et); 352 return; 353 } 354 } 355 NET_EPOCH_EXIT(et); 356 357 epoch_call(net_epoch_preempt, destroy_nhgrp_epoch, 358 &nhg_priv->nhg_epoch_ctx); 359 } 360 361 /* 362 * Destroys all local resources belonging to @nhg_priv. 363 */ 364 __noinline static void 365 destroy_nhgrp_int(struct nhgrp_priv *nhg_priv) 366 { 367 368 free(nhg_priv->nhg, M_NHOP); 369 } 370 371 __noinline static void 372 destroy_nhgrp(struct nhgrp_priv *nhg_priv) 373 { 374 375 KASSERT((nhg_priv->nhg_refcount == 0), ("nhg_refcount != 0")); 376 377 DPRINTF("DEL MPATH %p", nhg_priv); 378 379 KASSERT((nhg_priv->nhg_idx == 0), ("gr_idx != 0")); 380 381 free_nhgrp_nhops(nhg_priv); 382 383 destroy_nhgrp_int(nhg_priv); 384 } 385 386 /* 387 * Epoch callback indicating group is safe to destroy 388 */ 389 static void 390 destroy_nhgrp_epoch(epoch_context_t ctx) 391 { 392 struct nhgrp_priv *nhg_priv; 393 394 nhg_priv = __containerof(ctx, struct nhgrp_priv, nhg_epoch_ctx); 395 396 destroy_nhgrp(nhg_priv); 397 } 398 399 static bool 400 ref_nhgrp_nhops(struct nhgrp_priv *nhg_priv) 401 { 402 403 for (int i = 0; i < nhg_priv->nhg_nh_count; i++) { 404 if (nhop_try_ref_object(nhg_priv->nhg_nh_weights[i].nh) != 0) 405 continue; 406 407 /* 408 * Failed to ref the nexthop, b/c it's deleted. 409 * Need to rollback references back. 410 */ 411 for (int j = 0; j < i; j++) 412 nhop_free(nhg_priv->nhg_nh_weights[j].nh); 413 return (false); 414 } 415 416 return (true); 417 } 418 419 static void 420 free_nhgrp_nhops(struct nhgrp_priv *nhg_priv) 421 { 422 423 for (int i = 0; i < nhg_priv->nhg_nh_count; i++) 424 nhop_free(nhg_priv->nhg_nh_weights[i].nh); 425 } 426 427 /* 428 * Creates or looks up an existing nexthop group based on @wn and @num_nhops. 429 * 430 * Returns referenced nhop group or NULL, passing error code in @perror. 431 */ 432 struct nhgrp_priv * 433 get_nhgrp(struct nh_control *ctl, struct weightened_nhop *wn, int num_nhops, 434 int *perror) 435 { 436 struct nhgrp_priv *key, *nhg_priv; 437 438 if (num_nhops > RIB_MAX_MPATH_WIDTH) { 439 *perror = E2BIG; 440 return (NULL); 441 } 442 443 if (ctl->gr_head.hash_size == 0) { 444 /* First multipath request. Bootstrap mpath datastructures. */ 445 if (nhgrp_ctl_alloc_default(ctl, M_NOWAIT) == 0) { 446 *perror = ENOMEM; 447 return (NULL); 448 } 449 } 450 451 /* Sort nexthops & check there are no duplicates */ 452 sort_weightened_nhops(wn, num_nhops); 453 uint32_t last_id = 0; 454 for (int i = 0; i < num_nhops; i++) { 455 if (wn[i].nh->nh_priv->nh_idx == last_id) { 456 *perror = EEXIST; 457 return (NULL); 458 } 459 last_id = wn[i].nh->nh_priv->nh_idx; 460 } 461 462 if ((key = alloc_nhgrp(wn, num_nhops)) == NULL) { 463 *perror = ENOMEM; 464 return (NULL); 465 } 466 467 nhg_priv = find_nhgrp(ctl, key); 468 if (nhg_priv != NULL) { 469 /* 470 * Free originally-created group. As it hasn't been linked 471 * and the dependent nexhops haven't been referenced, just free 472 * the group. 473 */ 474 destroy_nhgrp_int(key); 475 *perror = 0; 476 return (nhg_priv); 477 } else { 478 /* No existing group, try to link the new one */ 479 if (!ref_nhgrp_nhops(key)) { 480 /* 481 * Some of the nexthops have been scheduled for deletion. 482 * As the group hasn't been linked / no nexhops have been 483 * referenced, call the final destructor immediately. 484 */ 485 destroy_nhgrp_int(key); 486 *perror = EAGAIN; 487 return (NULL); 488 } 489 if (link_nhgrp(ctl, key) == 0) { 490 /* Unable to allocate index? */ 491 *perror = EAGAIN; 492 destroy_nhgrp(key); 493 } 494 *perror = 0; 495 return (key); 496 } 497 498 /* NOTREACHED */ 499 } 500 501 /* 502 * Appends one or more nexthops denoted by @wm to the nexthop group @gr_orig. 503 * 504 * Returns referenced nexthop group or NULL. In the latter case, @perror is 505 * filled with an error code. 506 * Note that function does NOT care if the next nexthops already exists 507 * in the @gr_orig. As a result, they will be added, resulting in the 508 * same nexthop being present multiple times in the new group. 509 */ 510 static struct nhgrp_priv * 511 append_nhops(struct nh_control *ctl, const struct nhgrp_object *gr_orig, 512 struct weightened_nhop *wn, int num_nhops, int *perror) 513 { 514 char storage[64]; 515 struct weightened_nhop *pnhops; 516 struct nhgrp_priv *nhg_priv; 517 const struct nhgrp_priv *src_priv; 518 size_t sz; 519 int curr_nhops; 520 521 src_priv = NHGRP_PRIV_CONST(gr_orig); 522 curr_nhops = src_priv->nhg_nh_count; 523 524 *perror = 0; 525 526 sz = (src_priv->nhg_nh_count + num_nhops) * (sizeof(struct weightened_nhop)); 527 /* optimize for <= 4 paths, each path=16 bytes */ 528 if (sz <= sizeof(storage)) 529 pnhops = (struct weightened_nhop *)&storage[0]; 530 else { 531 pnhops = malloc(sz, M_TEMP, M_NOWAIT); 532 if (pnhops == NULL) { 533 *perror = ENOMEM; 534 return (NULL); 535 } 536 } 537 538 /* Copy nhops from original group first */ 539 memcpy(pnhops, src_priv->nhg_nh_weights, 540 curr_nhops * sizeof(struct weightened_nhop)); 541 memcpy(&pnhops[curr_nhops], wn, num_nhops * sizeof(struct weightened_nhop)); 542 curr_nhops += num_nhops; 543 544 nhg_priv = get_nhgrp(ctl, pnhops, curr_nhops, perror); 545 546 if (pnhops != (struct weightened_nhop *)&storage[0]) 547 free(pnhops, M_TEMP); 548 549 if (nhg_priv == NULL) 550 return (NULL); 551 552 return (nhg_priv); 553 } 554 555 556 /* 557 * Creates/finds nexthop group based on @wn and @num_nhops. 558 * Returns 0 on success with referenced group in @rnd, or 559 * errno. 560 * 561 * If the error is EAGAIN, then the operation can be retried. 562 */ 563 int 564 nhgrp_get_group(struct rib_head *rh, struct weightened_nhop *wn, int num_nhops, 565 struct route_nhop_data *rnd) 566 { 567 struct nh_control *ctl = rh->nh_control; 568 struct nhgrp_priv *nhg_priv; 569 int error; 570 571 nhg_priv = get_nhgrp(ctl, wn, num_nhops, &error); 572 if (nhg_priv != NULL) 573 rnd->rnd_nhgrp = nhg_priv->nhg; 574 rnd->rnd_weight = 0; 575 576 return (error); 577 } 578 579 /* 580 * Creates new nexthop group based on @src group with the nexthops defined in bitmask 581 * @nhop_mask removed. 582 * Returns referenced nexthop group or NULL on failure. 583 */ 584 int 585 nhgrp_get_filtered_group(struct rib_head *rh, const struct nhgrp_object *src, 586 nhgrp_filter_cb_t flt_func, void *flt_data, struct route_nhop_data *rnd) 587 { 588 char storage[64]; 589 struct nh_control *ctl = rh->nh_control; 590 struct weightened_nhop *pnhops; 591 const struct nhgrp_priv *mp_priv, *src_priv; 592 size_t sz; 593 int error, i, num_nhops; 594 595 src_priv = NHGRP_PRIV_CONST(src); 596 597 sz = src_priv->nhg_nh_count * (sizeof(struct weightened_nhop)); 598 /* optimize for <= 4 paths, each path=16 bytes */ 599 if (sz <= sizeof(storage)) 600 pnhops = (struct weightened_nhop *)&storage[0]; 601 else { 602 if ((pnhops = malloc(sz, M_TEMP, M_NOWAIT)) == NULL) 603 return (ENOMEM); 604 } 605 606 /* Filter nexthops */ 607 error = 0; 608 num_nhops = 0; 609 for (i = 0; i < src_priv->nhg_nh_count; i++) { 610 if (flt_func(src_priv->nhg_nh_weights[i].nh, flt_data)) 611 continue; 612 memcpy(&pnhops[num_nhops++], &src_priv->nhg_nh_weights[i], 613 sizeof(struct weightened_nhop)); 614 } 615 616 if (num_nhops == 0) { 617 rnd->rnd_nhgrp = NULL; 618 rnd->rnd_weight = 0; 619 } else if (num_nhops == 1) { 620 rnd->rnd_nhop = pnhops[0].nh; 621 rnd->rnd_weight = pnhops[0].weight; 622 if (nhop_try_ref_object(rnd->rnd_nhop) == 0) 623 error = EAGAIN; 624 } else { 625 mp_priv = get_nhgrp(ctl, pnhops, num_nhops, &error); 626 if (mp_priv != NULL) 627 rnd->rnd_nhgrp = mp_priv->nhg; 628 rnd->rnd_weight = 0; 629 } 630 631 if (pnhops != (struct weightened_nhop *)&storage[0]) 632 free(pnhops, M_TEMP); 633 634 return (error); 635 } 636 637 /* 638 * Creates new multipath group based on existing group/nhop in @rnd_orig and 639 * to-be-added nhop @wn_add. 640 * Returns 0 on success and stores result in @rnd_new. 641 */ 642 int 643 nhgrp_get_addition_group(struct rib_head *rh, struct route_nhop_data *rnd_orig, 644 struct route_nhop_data *rnd_add, struct route_nhop_data *rnd_new) 645 { 646 struct nh_control *ctl = rh->nh_control; 647 struct nhgrp_priv *nhg_priv; 648 struct weightened_nhop wn[2]; 649 int error; 650 651 if (rnd_orig->rnd_nhop == NULL) { 652 /* No paths to add to, just reference current nhop */ 653 *rnd_new = *rnd_add; 654 if (nhop_try_ref_object(rnd_new->rnd_nhop) == 0) 655 return (EAGAIN); 656 return (0); 657 } 658 659 wn[0].nh = rnd_add->rnd_nhop; 660 wn[0].weight = rnd_add->rnd_weight; 661 662 if (!NH_IS_NHGRP(rnd_orig->rnd_nhop)) { 663 /* Simple merge of 2 non-multipath nexthops */ 664 wn[1].nh = rnd_orig->rnd_nhop; 665 wn[1].weight = rnd_orig->rnd_weight; 666 nhg_priv = get_nhgrp(ctl, wn, 2, &error); 667 } else { 668 /* Get new nhop group with @rt->rt_nhop as an additional nhop */ 669 nhg_priv = append_nhops(ctl, rnd_orig->rnd_nhgrp, &wn[0], 1, 670 &error); 671 } 672 673 if (nhg_priv == NULL) 674 return (error); 675 rnd_new->rnd_nhgrp = nhg_priv->nhg; 676 rnd_new->rnd_weight = 0; 677 678 return (0); 679 } 680 681 /* 682 * Returns pointer to array of nexthops with weights for 683 * given @nhg. Stores number of items in the array into @pnum_nhops. 684 */ 685 struct weightened_nhop * 686 nhgrp_get_nhops(struct nhgrp_object *nhg, uint32_t *pnum_nhops) 687 { 688 struct nhgrp_priv *nhg_priv; 689 690 KASSERT(((nhg->nhg_flags & MPF_MULTIPATH) != 0), ("nhop is not mpath")); 691 692 nhg_priv = NHGRP_PRIV(nhg); 693 *pnum_nhops = nhg_priv->nhg_nh_count; 694 695 return (nhg_priv->nhg_nh_weights); 696 } 697 698 __noinline static int 699 dump_nhgrp_entry(struct rib_head *rh, const struct nhgrp_priv *nhg_priv, 700 char *buffer, size_t buffer_size, struct sysctl_req *w) 701 { 702 struct rt_msghdr *rtm; 703 struct nhgrp_external *nhge; 704 struct nhgrp_container *nhgc; 705 const struct nhgrp_object *nhg; 706 struct nhgrp_nhop_external *ext; 707 int error; 708 size_t sz; 709 710 nhg = nhg_priv->nhg; 711 712 sz = sizeof(struct rt_msghdr) + sizeof(struct nhgrp_external); 713 /* controlplane nexthops */ 714 sz += sizeof(struct nhgrp_container); 715 sz += sizeof(struct nhgrp_nhop_external) * nhg_priv->nhg_nh_count; 716 /* dataplane nexthops */ 717 sz += sizeof(struct nhgrp_container); 718 sz += sizeof(struct nhgrp_nhop_external) * nhg->nhg_size; 719 720 KASSERT(sz <= buffer_size, ("increase nhgrp buffer size")); 721 722 bzero(buffer, sz); 723 724 rtm = (struct rt_msghdr *)buffer; 725 rtm->rtm_msglen = sz; 726 rtm->rtm_version = RTM_VERSION; 727 rtm->rtm_type = RTM_GET; 728 729 nhge = (struct nhgrp_external *)(rtm + 1); 730 731 nhge->nhg_idx = nhg_priv->nhg_idx; 732 nhge->nhg_refcount = nhg_priv->nhg_refcount; 733 734 /* fill in control plane nexthops firs */ 735 nhgc = (struct nhgrp_container *)(nhge + 1); 736 nhgc->nhgc_type = NHG_C_TYPE_CNHOPS; 737 nhgc->nhgc_subtype = 0; 738 nhgc->nhgc_len = sizeof(struct nhgrp_container); 739 nhgc->nhgc_len += sizeof(struct nhgrp_nhop_external) * nhg_priv->nhg_nh_count; 740 nhgc->nhgc_count = nhg_priv->nhg_nh_count; 741 742 ext = (struct nhgrp_nhop_external *)(nhgc + 1); 743 for (int i = 0; i < nhg_priv->nhg_nh_count; i++) { 744 ext[i].nh_idx = nhg_priv->nhg_nh_weights[i].nh->nh_priv->nh_idx; 745 ext[i].nh_weight = nhg_priv->nhg_nh_weights[i].weight; 746 } 747 748 /* fill in dataplane nexthops */ 749 nhgc = (struct nhgrp_container *)(&ext[nhg_priv->nhg_nh_count]); 750 nhgc->nhgc_type = NHG_C_TYPE_DNHOPS; 751 nhgc->nhgc_subtype = 0; 752 nhgc->nhgc_len = sizeof(struct nhgrp_container); 753 nhgc->nhgc_len += sizeof(struct nhgrp_nhop_external) * nhg->nhg_size; 754 nhgc->nhgc_count = nhg->nhg_size; 755 756 ext = (struct nhgrp_nhop_external *)(nhgc + 1); 757 for (int i = 0; i < nhg->nhg_size; i++) { 758 ext[i].nh_idx = nhg->nhops[i]->nh_priv->nh_idx; 759 ext[i].nh_weight = 0; 760 } 761 762 error = SYSCTL_OUT(w, buffer, sz); 763 764 return (error); 765 } 766 767 uint32_t 768 nhgrp_get_idx(const struct nhgrp_object *nhg) 769 { 770 const struct nhgrp_priv *nhg_priv; 771 772 nhg_priv = NHGRP_PRIV_CONST(nhg); 773 return (nhg_priv->nhg_idx); 774 } 775 776 uint32_t 777 nhgrp_get_count(struct rib_head *rh) 778 { 779 struct nh_control *ctl; 780 uint32_t count; 781 782 ctl = rh->nh_control; 783 784 NHOPS_RLOCK(ctl); 785 count = ctl->gr_head.items_count; 786 NHOPS_RUNLOCK(ctl); 787 788 return (count); 789 } 790 791 int 792 nhgrp_dump_sysctl(struct rib_head *rh, struct sysctl_req *w) 793 { 794 struct nh_control *ctl = rh->nh_control; 795 struct epoch_tracker et; 796 struct nhgrp_priv *nhg_priv; 797 char *buffer; 798 size_t sz; 799 int error = 0; 800 801 if (ctl->gr_head.items_count == 0) 802 return (0); 803 804 /* Calculate the maximum nhop group size in bytes */ 805 sz = sizeof(struct rt_msghdr) + sizeof(struct nhgrp_external); 806 sz += 2 * sizeof(struct nhgrp_container); 807 sz += 2 * sizeof(struct nhgrp_nhop_external) * RIB_MAX_MPATH_WIDTH; 808 buffer = malloc(sz, M_TEMP, M_WAITOK); 809 810 NET_EPOCH_ENTER(et); 811 NHOPS_RLOCK(ctl); 812 CHT_SLIST_FOREACH(&ctl->gr_head, mpath, nhg_priv) { 813 error = dump_nhgrp_entry(rh, nhg_priv, buffer, sz, w); 814 if (error != 0) 815 break; 816 } CHT_SLIST_FOREACH_END; 817 NHOPS_RUNLOCK(ctl); 818 NET_EPOCH_EXIT(et); 819 820 free(buffer, M_TEMP); 821 822 return (error); 823 } 824