Index: sys/arch/amd64/conf/GENERIC.MP =================================================================== RCS file: /mount/openbsd/cvs/src/sys/arch/amd64/conf/GENERIC.MP,v diff -u -p -u -p -r1.16 GENERIC.MP --- sys/arch/amd64/conf/GENERIC.MP 9 Feb 2021 14:06:19 -0000 1.16 +++ sys/arch/amd64/conf/GENERIC.MP 6 Mar 2025 21:24:41 -0000 @@ -4,6 +4,6 @@ include "arch/amd64/conf/GENERIC" option MULTIPROCESSOR #option MP_LOCKDEBUG -#option WITNESS +option WITNESS cpu* at mainbus? Index: sys/arch/arm64/conf/GENERIC.MP =================================================================== RCS file: /mount/openbsd/cvs/src/sys/arch/arm64/conf/GENERIC.MP,v diff -u -p -u -p -r1.5 GENERIC.MP --- sys/arch/arm64/conf/GENERIC.MP 1 Jul 2018 21:05:07 -0000 1.5 +++ sys/arch/arm64/conf/GENERIC.MP 6 Mar 2025 21:24:41 -0000 @@ -4,6 +4,6 @@ include "arch/arm64/conf/GENERIC" option MULTIPROCESSOR #option MP_LOCKDEBUG -#option WITNESS +option WITNESS cpu* at mainbus? Index: sys/arch/i386/conf/GENERIC.MP =================================================================== RCS file: /mount/openbsd/cvs/src/sys/arch/i386/conf/GENERIC.MP,v diff -u -p -u -p -r1.11 GENERIC.MP --- sys/arch/i386/conf/GENERIC.MP 3 Jun 2018 05:18:33 -0000 1.11 +++ sys/arch/i386/conf/GENERIC.MP 6 Mar 2025 21:24:41 -0000 @@ -7,6 +7,6 @@ include "arch/i386/conf/GENERIC" option MULTIPROCESSOR # Multiple processor support #option MP_LOCKDEBUG -#option WITNESS +option WITNESS cpu* at mainbus? Index: sys/arch/macppc/conf/GENERIC.MP =================================================================== RCS file: /mount/openbsd/cvs/src/sys/arch/macppc/conf/GENERIC.MP,v diff -u -p -u -p -r1.2 GENERIC.MP --- sys/arch/macppc/conf/GENERIC.MP 15 Apr 2020 08:09:33 -0000 1.2 +++ sys/arch/macppc/conf/GENERIC.MP 6 Mar 2025 21:24:41 -0000 @@ -4,6 +4,6 @@ include "arch/macppc/conf/GENERIC" option MULTIPROCESSOR #option MP_LOCKDEBUG -#option WITNESS +option WITNESS cpu* at mainbus? Index: sys/arch/powerpc64/conf/GENERIC.MP =================================================================== RCS file: /mount/openbsd/cvs/src/sys/arch/powerpc64/conf/GENERIC.MP,v diff -u -p -u -p -r1.1 GENERIC.MP --- sys/arch/powerpc64/conf/GENERIC.MP 21 Jul 2020 21:38:31 -0000 1.1 +++ sys/arch/powerpc64/conf/GENERIC.MP 6 Mar 2025 21:24:41 -0000 @@ -4,6 +4,6 @@ include "arch/powerpc64/conf/GENERIC" option MULTIPROCESSOR #option MP_LOCKDEBUG -#option WITNESS +option WITNESS cpu* at mainbus? Index: sys/arch/riscv64/conf/GENERIC.MP =================================================================== RCS file: /mount/openbsd/cvs/src/sys/arch/riscv64/conf/GENERIC.MP,v diff -u -p -u -p -r1.1 GENERIC.MP --- sys/arch/riscv64/conf/GENERIC.MP 29 Jun 2021 21:27:52 -0000 1.1 +++ sys/arch/riscv64/conf/GENERIC.MP 6 Mar 2025 21:24:41 -0000 @@ -4,6 +4,6 @@ include "arch/riscv64/conf/GENERIC" option MULTIPROCESSOR #option MP_LOCKDEBUG -#option WITNESS +option WITNESS cpu* at mainbus? Index: sys/net/route.c =================================================================== RCS file: /mount/openbsd/cvs/src/sys/net/route.c,v diff -u -p -u -p -r1.442 route.c --- sys/net/route.c 21 Feb 2025 22:21:20 -0000 1.442 +++ sys/net/route.c 6 Mar 2025 21:24:39 -0000 @@ -567,15 +567,6 @@ rt_setgwroute(struct rtentry *rt, const atomic_cas_uint(&rt->rt_mtu, mtu, nhmtu); } - /* - * To avoid reference counting problems when writing link-layer - * addresses in an outgoing packet, we ensure that the lifetime - * of a cached entry is greater than the bigger lifetime of the - * gateway entries it is pointed by. - */ - nhrt->rt_flags |= RTF_CACHED; - nhrt->rt_cachecnt++; - /* commit */ rt_putgwroute(rt, nhrt); @@ -595,17 +586,30 @@ rt_putgwroute(struct rtentry *rt, struct if (!ISSET(rt->rt_flags, RTF_GATEWAY)) return; - /* this is protected as per [X] in route.h */ + /* + * To avoid reference counting problems when writing link-layer + * addresses in an outgoing packet, we ensure that the lifetime + * of a cached entry is greater than the bigger lifetime of the + * gateway entries it is pointed by. + */ + if (nhrt != NULL) { + mtx_enter(&nhrt->rt_mtx); + SET(nhrt->rt_flags, RTF_CACHED); + nhrt->rt_cachecnt++; + mtx_leave(&nhrt->rt_mtx); + } + onhrt = rt->rt_gwroute; rt->rt_gwroute = nhrt; if (onhrt != NULL) { + mtx_enter(&onhrt->rt_mtx); KASSERT(onhrt->rt_cachecnt > 0); KASSERT(ISSET(onhrt->rt_flags, RTF_CACHED)); - - --onhrt->rt_cachecnt; + onhrt->rt_cachecnt--; if (onhrt->rt_cachecnt == 0) CLR(onhrt->rt_flags, RTF_CACHED); + mtx_leave(&onhrt->rt_mtx); rtfree(onhrt); } @@ -1004,6 +1008,7 @@ rtrequest(int req, struct rt_addrinfo *i return (ENOBUFS); } + mtx_init_flags(&rt->rt_mtx, IPL_SOFTNET, "rtentry", 0); refcnt_init_trace(&rt->rt_refcnt, DT_REFCNT_IDX_RTENTRY); rt->rt_flags = info->rti_flags | RTF_UP; rt->rt_priority = prio; /* init routing priority */ Index: sys/net/route.h =================================================================== RCS file: /mount/openbsd/cvs/src/sys/net/route.h,v diff -u -p -u -p -r1.213 route.h --- sys/net/route.h 16 Feb 2025 11:39:28 -0000 1.213 +++ sys/net/route.h 6 Mar 2025 21:24:39 -0000 @@ -41,6 +41,7 @@ * N net lock * X exclusive net lock, or shared net lock + kernel lock * R art (rtable) lock + * r per route entry mutex rt_mtx * L arp/nd6/etc lock for updates, net lock for reads * T rttimer_mtx route timer lists */ @@ -114,6 +115,7 @@ struct rttimer; */ struct rtentry { + struct mutex rt_mtx; struct sockaddr *rt_dest; /* [I] destination */ SRPL_ENTRY(rtentry) rt_next; /* [R] next mpath entry to our dst */ struct sockaddr *rt_gateway; /* [X] gateway address */ @@ -122,7 +124,7 @@ struct rtentry { an MPLS structure */ union { struct rtentry *_nh; /* [X] rtentry for rt_gateway */ - unsigned int _ref; /* [X] # gateway rtentry refs */ + unsigned int _ref; /* [r] # gateway rtentry refs */ } RT_gw; #define rt_gwroute RT_gw._nh #define rt_cachecnt RT_gw._ref