Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 | /* * Copyright (c) 2016-2022 Apple Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ #include <skywalk/os_skywalk_private.h> #include <skywalk/packet/pbufpool_var.h> static errno_t kern_pbufpool_alloc_common(const kern_pbufpool_t, const uint32_t, kern_packet_t *, uint32_t); static errno_t kern_pbufpool_alloc_batch_common(const kern_pbufpool_t, const uint32_t, kern_packet_t *__counted_by(*size), uint32_t *size, alloc_cb_func_t, const void *, uint32_t); #define KBI_INVALID_CB_PAIRS(cb1, cb2) \ (!(init->kbi_##cb1 == NULL && init->kbi_##cb2 == NULL) && \ ((init->kbi_##cb1 == NULL) ^ (init->kbi_##cb2 == NULL))) errno_t kern_pbufpool_create(const struct kern_pbufpool_init *init, kern_pbufpool_t *ppp, struct kern_pbufpool_memory_info *pp_info) { /* XXX: woodford_s - find a way to get 'srp' off the kernel stack */ struct skmem_region_params srp[SKMEM_REGIONS]; struct kern_pbufpool *pp = NULL; nexus_meta_type_t md_type; uint32_t buf_cnt; uint16_t max_frags; uint32_t ppcreatef = PPCREATEF_EXTERNAL; uint32_t pkt_cnt; uint32_t pp_region_flags = 0; int err = 0; bool kernel_only; bool tx_pool = true; if (ppp == NULL || init == NULL || init->kbi_version != KERN_PBUFPOOL_CURRENT_VERSION || init->kbi_packets == 0 || (init->kbi_buflets != 0 && init->kbi_buflets < init->kbi_packets && !(init->kbi_flags & KBIF_BUFFER_ON_DEMAND)) || init->kbi_bufsize == 0 || init->kbi_max_frags == 0 || ((init->kbi_flags & KBIF_QUANTUM) && (init->kbi_flags & KBIF_BUFFER_ON_DEMAND)) || KBI_INVALID_CB_PAIRS(buf_seg_ctor, buf_seg_dtor)) { err = EINVAL; goto done; } *ppp = NULL; md_type = ((init->kbi_flags & KBIF_QUANTUM) ? NEXUS_META_TYPE_QUANTUM : NEXUS_META_TYPE_PACKET); /* * If packet, we assume this is for a driver handling raw frames. * This also implies that at present, we do not create mirrored * regions for user space to conserve memory (since those regions * aren't going to be used anyway.) * * XXX: adi@apple.com - to allow for "direct" channels from * user process to driver, we will need to revisit this. */ kernel_only = (md_type == NEXUS_META_TYPE_PACKET) && #if (DEVELOPMENT || DEBUG) !skywalk_netif_direct_enabled() && #endif /* (DEVELOPMENT || DEBUG) */ ((init->kbi_flags & KBIF_USER_ACCESS) == 0); VERIFY((init->kbi_max_frags != 0) && (init->kbi_max_frags <= UINT16_MAX)); max_frags = (uint16_t)init->kbi_max_frags; if (md_type == NEXUS_META_TYPE_QUANTUM && max_frags > 1) { err = EINVAL; goto done; } if ((max_frags > 1) && !(init->kbi_flags & KBIF_BUFFER_ON_DEMAND)) { err = EINVAL; goto done; } bzero(&srp, sizeof(srp)); for (int i = 0; i < SKMEM_REGIONS; i++) { srp[i] = *skmem_get_default(i); } switch (init->kbi_flags & (KBIF_IODIR_IN | KBIF_IODIR_OUT)) { case KBIF_IODIR_IN: pp_region_flags |= PP_REGION_CONFIG_BUF_IODIR_IN; tx_pool = false; break; case KBIF_IODIR_OUT: pp_region_flags |= PP_REGION_CONFIG_BUF_IODIR_OUT; break; case (KBIF_IODIR_IN | KBIF_IODIR_OUT): default: pp_region_flags |= PP_REGION_CONFIG_BUF_IODIR_BIDIR; break; } if (init->kbi_flags & KBIF_BUFFER_ON_DEMAND) { pp_region_flags |= PP_REGION_CONFIG_BUFLET; } if (kernel_only) { pp_region_flags |= PP_REGION_CONFIG_KERNEL_ONLY; } if (init->kbi_flags & KBIF_KERNEL_READONLY) { pp_region_flags |= PP_REGION_CONFIG_BUF_KREADONLY; } if (init->kbi_flags & KBIF_THREADSAFE) { pp_region_flags |= PP_REGION_CONFIG_BUF_THREADSAFE; } /* * Enable magazine layer for metadata. */ if (!(init->kbi_flags & KBIF_NO_MAGAZINES)) { pp_region_flags |= PP_REGION_CONFIG_MD_MAGAZINE_ENABLE; } pp_region_flags |= PP_REGION_CONFIG_MD_PERSISTENT; pkt_cnt = init->kbi_packets; /* * For TCP to be able to send a 4MB window worth of data, packet pool * must have at least 4MB/MTU packets. On devices which are not * memory constrained, we can increase the pool to be atleast * 4K packets. */ if (tx_pool && !SKMEM_MEM_CONSTRAINED_DEVICE() && #if (DEVELOPMENT || DEBUG) !skmem_test_enabled() && #endif /* (DEVELOPMENT || DEBUG) */ !(init->kbi_flags & KBIF_MONOLITHIC) && !(init->kbi_flags & KBIF_VIRTUAL_DEVICE) && !(init->kbi_flags & KBIF_PHYS_CONTIGUOUS) && !(init->kbi_flags & KBIF_KERNEL_READONLY) && !(init->kbi_flags & KBIF_QUANTUM)) { pkt_cnt = MAX((4 * 1024), pkt_cnt); } #if (DEVELOPMENT || DEBUG) if (sk_min_pool_size != 0) { pkt_cnt = MAX(pkt_cnt, sk_min_pool_size); } #endif /* (DEVELOPMENT || DEBUG) */ /* make sure # of buffers is >= # of packets */ buf_cnt = MAX(pkt_cnt, init->kbi_buflets); /* * Apply same logic as in nxprov_create_common(). */ if (init->kbi_flags & (KBIF_PERSISTENT | KBIF_MONOLITHIC | KBIF_INHIBIT_CACHE | KBIF_PHYS_CONTIGUOUS)) { if (init->kbi_flags & KBIF_PERSISTENT) { pp_region_flags |= PP_REGION_CONFIG_BUF_PERSISTENT; } if (init->kbi_flags & KBIF_MONOLITHIC) { pp_region_flags |= PP_REGION_CONFIG_BUF_MONOLITHIC; } if (init->kbi_flags & KBIF_INHIBIT_CACHE) { pp_region_flags |= PP_REGION_CONFIG_BUF_NOCACHE; } if (init->kbi_flags & KBIF_PHYS_CONTIGUOUS) { pp_region_flags |= PP_REGION_CONFIG_BUF_SEGPHYSCONTIG; } } /* adjust region params */ pp_regions_params_adjust(srp, NEXUS_META_TYPE_PACKET, NEXUS_META_SUBTYPE_RAW, pkt_cnt, max_frags, init->kbi_bufsize, 0, buf_cnt, init->kbi_buf_seg_size, pp_region_flags); /* * Create packet pool. */ ASSERT(ppcreatef & PPCREATEF_EXTERNAL); if (kernel_only) { ppcreatef |= PPCREATEF_KERNEL_ONLY; } if (init->kbi_flags & KBIF_BUFFER_ON_DEMAND) { ppcreatef |= PPCREATEF_ONDEMAND_BUF; } /* * Enable CPU-layer magazine resizing if this is a long-lived * pbufpool, e.g. one that's allocated by a device driver. */ if (!(init->kbi_flags & KBIF_VIRTUAL_DEVICE)) { ppcreatef |= PPCREATEF_DYNAMIC; } if ((pp = pp_create( __unsafe_null_terminated_from_indexable(init->kbi_name), srp, init->kbi_buf_seg_ctor, init->kbi_buf_seg_dtor, init->kbi_ctx, init->kbi_ctx_retain, init->kbi_ctx_release, ppcreatef)) == NULL) { err = ENOMEM; goto done; } *ppp = pp; if (pp_info != NULL) { err = kern_pbufpool_get_memory_info(pp, pp_info); VERIFY(err == 0); } done: if (err != 0 && pp != NULL) { /* callee drops reference */ pp_close(pp); pp = NULL; } return err; } /* * -fbounds-safety: This function is mainly used by kexts in C++, which we're * not doing bound checks yet. So just leave it as __single */ void *__single kern_pbufpool_get_context(const kern_pbufpool_t pp) { void *__single ctx = (pp->pp_flags & PPF_EXTERNAL) ? pp->pp_ctx : NULL; if (ctx != NULL) { pp->pp_ctx_retain(ctx); } return ctx; } errno_t kern_pbufpool_get_memory_info(const kern_pbufpool_t pp, struct kern_pbufpool_memory_info *pp_info) { if (pp_info == NULL) { return EINVAL; } bzero(pp_info, sizeof(*pp_info)); if (pp->pp_flags & PPF_EXTERNAL) { pp_info->kpm_flags |= KPMF_EXTERNAL; } pp_info->kpm_packets = pp->pp_kmd_region->skr_c_obj_cnt; pp_info->kpm_max_frags = pp->pp_max_frags; pp_info->kpm_buflets = PP_BUF_REGION_DEF(pp)->skr_c_obj_cnt; pp_info->kpm_bufsize = PP_BUF_SIZE_DEF(pp); pp_info->kpm_buf_obj_size = PP_BUF_OBJ_SIZE_DEF(pp); pp_info->kpm_bufsegs = PP_BUF_REGION_DEF(pp)->skr_seg_max_cnt; pp_info->kpm_buf_seg_size = PP_BUF_REGION_DEF(pp)->skr_seg_size; return 0; } kern_segment_idx_t kern_segment_get_index(const kern_segment_t seg) { return seg->sg_index; } static errno_t kern_pbufpool_alloc_common(const kern_pbufpool_t pp, const uint32_t bufcnt, kern_packet_t *pph, uint32_t skmflag) { struct __kern_quantum *kqum; *pph = 0; if (__improbable(bufcnt > pp->pp_max_frags)) { return EINVAL; } if (__improbable((bufcnt != pp->pp_max_frags) && !PP_HAS_BUFFER_ON_DEMAND(pp))) { return EINVAL; } kqum = SK_PTR_ADDR_KQUM(pp_alloc_packet(pp, (uint16_t)bufcnt, skmflag)); if (__probable(kqum != NULL)) { *pph = SK_PTR_ENCODE(kqum, METADATA_TYPE(kqum), METADATA_SUBTYPE(kqum)); } return (kqum != NULL) ? 0 : ENOMEM; } errno_t kern_pbufpool_alloc(const kern_pbufpool_t pp, const uint32_t bufcnt, kern_packet_t *pph) { return kern_pbufpool_alloc_common(pp, bufcnt, pph, SKMEM_SLEEP); } errno_t kern_pbufpool_alloc_nosleep(const kern_pbufpool_t pp, const uint32_t bufcnt, kern_packet_t *pph) { return kern_pbufpool_alloc_common(pp, bufcnt, pph, SKMEM_NOSLEEP); } static errno_t kern_pbufpool_alloc_batch_common(const kern_pbufpool_t pp, const uint32_t bufcnt, kern_packet_t *__counted_by(*size)array, uint32_t *size, alloc_cb_func_t cb, const void *ctx, uint32_t skmflag) { if (__improbable(array == NULL || size == NULL || *size == 0 || bufcnt > pp->pp_max_frags || (cb == NULL && ctx != NULL))) { return EINVAL; } if (__improbable((bufcnt != pp->pp_max_frags) && !PP_HAS_BUFFER_ON_DEMAND(pp))) { return EINVAL; } return pp_alloc_packet_batch(pp, (uint16_t)bufcnt, array, size, TRUE, cb, ctx, skmflag); } errno_t kern_pbufpool_alloc_batch(const kern_pbufpool_t pp, const uint32_t bufcnt, kern_packet_t *__counted_by(*size)array, uint32_t *size) { return kern_pbufpool_alloc_batch_common(pp, bufcnt, array, size, NULL, NULL, SKMEM_SLEEP); } errno_t kern_pbufpool_alloc_batch_callback(const kern_pbufpool_t pp, const uint32_t bufcnt, kern_packet_t *__counted_by(*size)array, uint32_t *size, alloc_cb_func_t cb, const void *ctx) { return kern_pbufpool_alloc_batch_common(pp, bufcnt, array, size, cb, ctx, SKMEM_SLEEP); } errno_t kern_pbufpool_alloc_batch_nosleep(const kern_pbufpool_t pp, const uint32_t bufcnt, kern_packet_t *__counted_by(*size)array, uint32_t *size) { return kern_pbufpool_alloc_batch_common(pp, bufcnt, array, size, NULL, NULL, SKMEM_NOSLEEP); } errno_t kern_pbufpool_alloc_batch_nosleep_callback(const kern_pbufpool_t pp, const uint32_t bufcnt, kern_packet_t *__counted_by(*size)array, uint32_t *size, alloc_cb_func_t cb, const void *ctx) { return kern_pbufpool_alloc_batch_common(pp, bufcnt, array, size, cb, ctx, SKMEM_NOSLEEP); } void kern_pbufpool_free(const kern_pbufpool_t pp, kern_packet_t ph) { pp_free_packet(pp, SK_PTR_ADDR(ph)); } void kern_pbufpool_free_batch(const kern_pbufpool_t pp, kern_packet_t *__counted_by(size)array, uint32_t size) { if (__improbable(array == NULL || size == 0)) { return; } pp_free_packet_batch(pp, array, size); } void kern_pbufpool_free_chain(const kern_pbufpool_t pp, kern_packet_t chain) { struct __kern_packet *pkt_chain = SK_PTR_ADDR_KPKT(chain); VERIFY(pp == pkt_chain->pkt_qum.qum_pp); pp_free_packet_chain(pkt_chain, NULL); } errno_t kern_pbufpool_alloc_buffer(const kern_pbufpool_t pp, mach_vm_address_t *buf, kern_segment_t *sg, kern_obj_idx_seg_t *sg_idx) { return pp_alloc_buffer(pp, buf, sg, sg_idx, 0); } errno_t kern_pbufpool_alloc_buffer_nosleep(const kern_pbufpool_t pp, mach_vm_address_t *buf, kern_segment_t *sg, kern_obj_idx_seg_t *sg_idx) { return pp_alloc_buffer(pp, buf, sg, sg_idx, SKMEM_NOSLEEP); } void kern_pbufpool_free_buffer(const kern_pbufpool_t pp, mach_vm_address_t baddr) { pp_free_buffer(pp, baddr); } void kern_pbufpool_destroy(kern_pbufpool_t pp) { VERIFY(pp->pp_flags & PPF_EXTERNAL); pp_close(pp); } errno_t kern_pbufpool_alloc_buflet(const kern_pbufpool_t pp, kern_buflet_t *pbuf) { return pp_alloc_buflet(pp, pbuf, SKMEM_SLEEP, false); } errno_t kern_pbufpool_alloc_buflet_nosleep(const kern_pbufpool_t pp, kern_buflet_t *pbuf) { return pp_alloc_buflet(pp, pbuf, SKMEM_NOSLEEP, false); } |