Index: sys/net/route.c =================================================================== RCS file: /mount/openbsd/cvs/src/sys/net/route.c,v diff -u -p -u -p -r1.443 route.c --- sys/net/route.c 6 Mar 2025 23:09:02 -0000 1.443 +++ sys/net/route.c 7 Mar 2025 19:09:43 -0000 @@ -324,10 +324,13 @@ rtisvalid(struct rtentry *rt) return (0); if (ISSET(rt->rt_flags, RTF_GATEWAY)) { - if (rt->rt_gwroute == NULL) + struct rtentry *gwroute; + + gwroute = READ_ONCE(rt->rt_gwroute); + if (gwroute == NULL) return (0); - KASSERT(!ISSET(rt->rt_gwroute->rt_flags, RTF_GATEWAY)); - if (!ISSET(rt->rt_gwroute->rt_flags, RTF_UP)) + KASSERT(!ISSET(gwroute->rt_flags, RTF_GATEWAY)); + if (!ISSET(gwroute->rt_flags, RTF_UP)) return (0); } @@ -599,8 +602,10 @@ rt_putgwroute(struct rtentry *rt, struct mtx_leave(&nhrt->rt_mtx); } + mtx_enter(&rt->rt_mtx); onhrt = rt->rt_gwroute; rt->rt_gwroute = nhrt; + mtx_leave(&rt->rt_mtx); if (onhrt != NULL) { mtx_enter(&onhrt->rt_mtx); @@ -1169,8 +1174,11 @@ struct rtentry * rt_getll(struct rtentry *rt) { if (ISSET(rt->rt_flags, RTF_GATEWAY)) { + struct rtentry *gwroute; + + gwroute = READ_ONCE(rt->rt_gwroute); /* We may return NULL here. */ - return (rt->rt_gwroute); + return (gwroute); } return (rt); Index: sys/net/route.h =================================================================== RCS file: /mount/openbsd/cvs/src/sys/net/route.h,v diff -u -p -u -p -r1.214 route.h --- sys/net/route.h 6 Mar 2025 23:09:02 -0000 1.214 +++ sys/net/route.h 7 Mar 2025 19:09:43 -0000 @@ -123,7 +123,7 @@ struct rtentry { caddr_t rt_llinfo; /* [L] pointer to link level info or an MPLS structure */ union { - struct rtentry *_nh; /* [X] rtentry for rt_gateway */ + struct rtentry *_nh; /* [r] rtentry for rt_gateway */ unsigned int _ref; /* [r] # gateway rtentry refs */ } RT_gw; #define rt_gwroute RT_gw._nh Index: sys/net/rtsock.c =================================================================== RCS file: /mount/openbsd/cvs/src/sys/net/rtsock.c,v diff -u -p -u -p -r1.381 rtsock.c --- sys/net/rtsock.c 16 Feb 2025 11:39:28 -0000 1.381 +++ sys/net/rtsock.c 7 Mar 2025 19:09:43 -0000 @@ -1343,9 +1343,11 @@ route_cleargateway(struct rtentry *rt, v { struct rtentry *nhrt = arg; + mtx_enter(&rt->rt_mtx); if (ISSET(rt->rt_flags, RTF_GATEWAY) && rt->rt_gwroute == nhrt && !ISSET(rt->rt_locks, RTV_MTU)) atomic_store_int(&rt->rt_mtu, 0); + mtx_leave(&rt->rt_mtx); return (0); }