git: c24a8f19c5d5 - main - routing: fix rib_add_route_px()
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 29 Aug 2022 12:59:37 UTC
The branch main has been updated by melifaro: URL: https://cgit.FreeBSD.org/src/commit/?id=c24a8f19c5d554b828908e7dacf1855cd4ee21f3 commit c24a8f19c5d554b828908e7dacf1855cd4ee21f3 Author: Alexander V. Chernikov <melifaro@FreeBSD.org> AuthorDate: 2022-08-29 12:23:06 +0000 Commit: Alexander V. Chernikov <melifaro@FreeBSD.org> CommitDate: 2022-08-29 12:57:47 +0000 routing: fix rib_add_route_px() Fix panic in newly-added rib_add_route_px() by removin unlocked prefix lookup. MFC after: 2 weeks --- sys/net/route/route_ctl.c | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/sys/net/route/route_ctl.c b/sys/net/route/route_ctl.c index 8256fa0c7162..6881b8131d08 100644 --- a/sys/net/route/route_ctl.c +++ b/sys/net/route/route_ctl.c @@ -474,7 +474,7 @@ rib_add_route_px(uint32_t fibnum, struct sockaddr *dst, int plen, { union sockaddr_union mask_storage; struct sockaddr *netmask = &mask_storage.sa; - struct rtentry *rt; + struct rtentry *rt = NULL; NET_EPOCH_ASSERT(); @@ -495,22 +495,8 @@ rib_add_route_px(uint32_t fibnum, struct sockaddr *dst, int plen, FIB_RH_LOG(LOG_INFO, rnh, "rtentry allocation failed"); return (ENOMEM); } - } else { - struct route_nhop_data rnd_tmp; - - rt = lookup_prefix_bysa(rnh, dst, netmask, &rnd_tmp); - if (rt == NULL) - return (ESRCH); } -#if DEBUG_MAX_LEVEL >= LOG_DEBUG2 - { - char nhbuf[NHOP_PRINT_BUFSIZE], rtbuf[NHOP_PRINT_BUFSIZE]; - nhop_print_buf_any(rnd->rnd_nhop, nhbuf, sizeof(nhbuf)); - rt_print_buf(rt, rtbuf, sizeof(rtbuf)); - FIB_RH_LOG(LOG_DEBUG2, rnh, "request %s -> %s", rtbuf, nhbuf); - } -#endif return (add_route_flags(rnh, rt, rnd, op_flags, rc)); } @@ -817,7 +803,7 @@ add_route_flags(struct rib_head *rnh, struct rtentry *rt, struct route_nhop_data if (op_flags & RTM_F_CREATE) error = add_route(rnh, rt, rnd_add, rc); else - error = ENOENT; // no entry but creation was not required + error = ESRCH; /* no entry but creation was not required */ RIB_WUNLOCK(rnh); if (error != 0) goto out; @@ -852,7 +838,7 @@ add_route_flags(struct rib_head *rnh, struct rtentry *rt, struct route_nhop_data nhop_can_multipath(rnd_orig.rnd_nhop)) { for (int i = 0; i < RIB_MAX_RETRIES; i++) { - error = add_route_flags_mpath(rnh, rt, rnd_add, &rnd_orig, + error = add_route_flags_mpath(rnh, rt_orig, rnd_add, &rnd_orig, op_flags, rc); if (error != EAGAIN) break;