1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1980, 1986, 1991, 1993 5 * The Regents of the University of California. All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 3. Neither the name of the University nor the names of its contributors 16 * may be used to endorse or promote products derived from this software 17 * without specific prior written permission. 18 * 19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 * SUCH DAMAGE. 30 */ 31 /************************************************************************ 32 * Note: In this file a 'fib' is a "forwarding information base" * 33 * Which is the new name for an in kernel routing (next hop) table. * 34 ***********************************************************************/ 35 36 #include <sys/cdefs.h> 37 __FBSDID("$FreeBSD$"); 38 #include "opt_route.h" 39 40 #include <sys/param.h> 41 #include <sys/socket.h> 42 #include <sys/systm.h> 43 #include <sys/malloc.h> 44 #include <sys/jail.h> 45 #include <sys/proc.h> 46 #include <sys/sysctl.h> 47 #include <sys/syslog.h> 48 #include <sys/kernel.h> 49 #include <sys/lock.h> 50 #include <sys/sx.h> 51 #include <sys/domain.h> 52 #include <sys/sysproto.h> 53 54 #include <net/vnet.h> 55 #include <net/route.h> 56 #include <net/route/route_var.h> 57 58 /* Kernel config default option. */ 59 #ifdef ROUTETABLES 60 #if ROUTETABLES <= 0 61 #error "ROUTETABLES defined too low" 62 #endif 63 #if ROUTETABLES > RT_MAXFIBS 64 #error "ROUTETABLES defined too big" 65 #endif 66 #define RT_NUMFIBS ROUTETABLES 67 #endif /* ROUTETABLES */ 68 /* Initialize to default if not otherwise set. */ 69 #ifndef RT_NUMFIBS 70 #define RT_NUMFIBS 1 71 #endif 72 73 static void grow_rtables(uint32_t num_fibs); 74 75 VNET_DEFINE_STATIC(struct sx, rtables_lock); 76 #define V_rtables_lock VNET(rtables_lock) 77 #define RTABLES_LOCK() sx_xlock(&V_rtables_lock) 78 #define RTABLES_UNLOCK() sx_xunlock(&V_rtables_lock) 79 #define RTABLES_LOCK_INIT() sx_init(&V_rtables_lock, "rtables lock") 80 #define RTABLES_LOCK_ASSERT() sx_assert(&V_rtables_lock, SA_LOCKED) 81 82 VNET_DEFINE_STATIC(struct rib_head **, rt_tables); 83 #define V_rt_tables VNET(rt_tables) 84 85 VNET_DEFINE(uint32_t, _rt_numfibs) = RT_NUMFIBS; 86 87 /* 88 * Handler for net.my_fibnum. 89 * Returns current fib of the process. 90 */ 91 static int 92 sysctl_my_fibnum(SYSCTL_HANDLER_ARGS) 93 { 94 int fibnum; 95 int error; 96 97 fibnum = curthread->td_proc->p_fibnum; 98 error = sysctl_handle_int(oidp, &fibnum, 0, req); 99 return (error); 100 } 101 SYSCTL_PROC(_net, OID_AUTO, my_fibnum, 102 CTLTYPE_INT | CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, 0, 103 &sysctl_my_fibnum, "I", 104 "default FIB of caller"); 105 106 static uint32_t 107 normalize_num_rtables(uint32_t num_rtables) 108 { 109 110 if (num_rtables > RT_MAXFIBS) 111 num_rtables = RT_MAXFIBS; 112 else if (num_rtables == 0) 113 num_rtables = 1; 114 return (num_rtables); 115 } 116 117 /* 118 * Sets the number of fibs in the current vnet. 119 * Function does not allow shrinking number of rtables. 120 */ 121 static int 122 sysctl_fibs(SYSCTL_HANDLER_ARGS) 123 { 124 uint32_t new_fibs; 125 int error; 126 127 RTABLES_LOCK(); 128 new_fibs = V_rt_numfibs; 129 error = sysctl_handle_32(oidp, &new_fibs, 0, req); 130 if (error == 0) { 131 new_fibs = normalize_num_rtables(new_fibs); 132 133 if (new_fibs < V_rt_numfibs) 134 error = ENOTCAPABLE; 135 if (new_fibs > V_rt_numfibs) 136 grow_rtables(new_fibs); 137 } 138 RTABLES_UNLOCK(); 139 140 return (error); 141 } 142 SYSCTL_PROC(_net, OID_AUTO, fibs, 143 CTLFLAG_VNET | CTLTYPE_U32 | CTLFLAG_RWTUN | CTLFLAG_NOFETCH | CTLFLAG_MPSAFE, 144 NULL, 0, &sysctl_fibs, "IU", 145 "set number of fibs"); 146 147 /* 148 * Sets fib of a current process. 149 */ 150 int 151 sys_setfib(struct thread *td, struct setfib_args *uap) 152 { 153 int error = 0; 154 155 CURVNET_SET(TD_TO_VNET(td)); 156 if (uap->fibnum >= 0 && uap->fibnum < V_rt_numfibs) 157 td->td_proc->p_fibnum = uap->fibnum; 158 else 159 error = EINVAL; 160 CURVNET_RESTORE(); 161 162 return (error); 163 } 164 165 /* 166 * Grows up the number of routing tables in the current fib. 167 * Function creates new index array for all rtables and allocates 168 * remaining routing tables. 169 */ 170 static void 171 grow_rtables(uint32_t num_tables) 172 { 173 struct domain *dom; 174 struct rib_head **prnh; 175 struct rib_head **new_rt_tables, **old_rt_tables; 176 int family; 177 178 RTABLES_LOCK_ASSERT(); 179 180 KASSERT(num_tables >= V_rt_numfibs, ("num_tables(%u) < rt_numfibs(%u)\n", 181 num_tables, V_rt_numfibs)); 182 183 new_rt_tables = mallocarray(num_tables * (AF_MAX + 1), sizeof(void *), 184 M_RTABLE, M_WAITOK | M_ZERO); 185 186 /* 187 * Current rt_tables layout: 188 * fib0[af0, af1, af2, .., AF_MAX]fib1[af0, af1, af2, .., Af_MAX].. 189 * this allows to copy existing tables data by using memcpy() 190 */ 191 if (V_rt_tables != NULL) 192 memcpy(new_rt_tables, V_rt_tables, 193 V_rt_numfibs * (AF_MAX + 1) * sizeof(void *)); 194 195 /* Populate the remainders */ 196 for (dom = domains; dom; dom = dom->dom_next) { 197 if (dom->dom_rtattach == NULL) 198 continue; 199 family = dom->dom_family; 200 for (int i = 0; i < num_tables; i++) { 201 prnh = &new_rt_tables[i * (AF_MAX + 1) + family]; 202 if (*prnh != NULL) 203 continue; 204 *prnh = dom->dom_rtattach(i); 205 if (*prnh == NULL) 206 log(LOG_ERR, "unable to create routing tables for domain %d\n", 207 dom->dom_family); 208 } 209 } 210 211 /* 212 * Update rtables pointer. 213 * Ensure all writes to new_rt_tables has been completed before 214 * switching pointer. 215 */ 216 atomic_thread_fence_rel(); 217 old_rt_tables = V_rt_tables; 218 V_rt_tables = new_rt_tables; 219 220 /* Wait till all cpus see new pointers */ 221 atomic_thread_fence_rel(); 222 epoch_wait_preempt(net_epoch_preempt); 223 224 /* Finally, set number of fibs to a new value */ 225 V_rt_numfibs = num_tables; 226 227 if (old_rt_tables != NULL) 228 free(old_rt_tables, M_RTABLE); 229 } 230 231 static void 232 vnet_rtables_init(const void *unused __unused) 233 { 234 int num_rtables_base; 235 236 if (IS_DEFAULT_VNET(curvnet)) { 237 num_rtables_base = RT_NUMFIBS; 238 TUNABLE_INT_FETCH("net.fibs", &num_rtables_base); 239 V_rt_numfibs = normalize_num_rtables(num_rtables_base); 240 } else 241 V_rt_numfibs = 1; 242 243 vnet_rtzone_init(); 244 245 RTABLES_LOCK_INIT(); 246 247 RTABLES_LOCK(); 248 grow_rtables(V_rt_numfibs); 249 RTABLES_UNLOCK(); 250 } 251 VNET_SYSINIT(vnet_rtables_init, SI_SUB_PROTO_DOMAIN, SI_ORDER_FOURTH, 252 vnet_rtables_init, 0); 253 254 #ifdef VIMAGE 255 static void 256 rtables_destroy(const void *unused __unused) 257 { 258 struct rib_head *rnh; 259 struct domain *dom; 260 int family; 261 262 RTABLES_LOCK(); 263 for (dom = domains; dom; dom = dom->dom_next) { 264 if (dom->dom_rtdetach == NULL) 265 continue; 266 family = dom->dom_family; 267 for (int i = 0; i < V_rt_numfibs; i++) { 268 rnh = rt_tables_get_rnh(i, family); 269 dom->dom_rtdetach(rnh); 270 } 271 } 272 RTABLES_UNLOCK(); 273 274 /* 275 * dom_rtdetach calls rt_table_destroy(), which 276 * schedules deletion for all rtentries, nexthops and control 277 * structures. Wait for the destruction callbacks to fire. 278 * Note that this should result in freeing all rtentries, but 279 * nexthops deletions will be scheduled for the next epoch run 280 * and will be completed after vnet teardown. 281 */ 282 epoch_drain_callbacks(net_epoch_preempt); 283 284 free(V_rt_tables, M_RTABLE); 285 vnet_rtzone_destroy(); 286 } 287 VNET_SYSUNINIT(rtables_destroy, SI_SUB_PROTO_DOMAIN, SI_ORDER_FIRST, 288 rtables_destroy, 0); 289 #endif 290 291 static inline struct rib_head * 292 rt_tables_get_rnh_ptr(uint32_t table, sa_family_t family) 293 { 294 struct rib_head **prnh; 295 296 KASSERT(table < V_rt_numfibs, 297 ("%s: table out of bounds (%d < %d)", __func__, table, 298 V_rt_numfibs)); 299 KASSERT(family < (AF_MAX + 1), 300 ("%s: fam out of bounds (%d < %d)", __func__, family, AF_MAX + 1)); 301 302 /* rnh is [fib=0][af=0]. */ 303 prnh = V_rt_tables; 304 /* Get the offset to the requested table and fam. */ 305 prnh += table * (AF_MAX + 1) + family; 306 307 return (*prnh); 308 } 309 310 struct rib_head * 311 rt_tables_get_rnh(uint32_t table, sa_family_t family) 312 { 313 314 return (rt_tables_get_rnh_ptr(table, family)); 315 } 316 317 u_int 318 rt_tables_get_gen(uint32_t table, sa_family_t family) 319 { 320 struct rib_head *rnh; 321 322 rnh = rt_tables_get_rnh_ptr(table, family); 323 KASSERT(rnh != NULL, ("%s: NULL rib_head pointer table %d family %d", 324 __func__, table, family)); 325 return (rnh->rnh_gen); 326 } 327