1*5c2921b0SApple OSS Distributions# XNU Allocators best practices 2*5c2921b0SApple OSS Distributions 3*5c2921b0SApple OSS Distributions## Introduction 4*5c2921b0SApple OSS Distributions 5*5c2921b0SApple OSS DistributionsXNU proposes two ways to allocate memory: 6*5c2921b0SApple OSS Distributions 7*5c2921b0SApple OSS Distributions- the VM subsystem that provides allocations at the granularity of pages (with 8*5c2921b0SApple OSS Distributions `kmem_alloc` and similar interfaces); 9*5c2921b0SApple OSS Distributions- the zone allocator subsystem (`<kern/zalloc.h>`) which is a slab-allocator of 10*5c2921b0SApple OSS Distributions objects of fixed size. 11*5c2921b0SApple OSS Distributions 12*5c2921b0SApple OSS DistributionsIn addition to that, `<kern/kalloc.h>` provides a variable-size general purpose 13*5c2921b0SApple OSS Distributionsallocator implemented as a collection of zones of fixed size, and overflowing to 14*5c2921b0SApple OSS Distributions`kmem_alloc` for allocations larger than a few pages (32KB when this 15*5c2921b0SApple OSS Distributionsdocument was being written but this is subject to change/tuning in the future). 16*5c2921b0SApple OSS Distributions 17*5c2921b0SApple OSS Distributions 18*5c2921b0SApple OSS DistributionsThe Core Kernel allocators rely on the following headers: 19*5c2921b0SApple OSS Distributions 20*5c2921b0SApple OSS Distributions- `<kern/zalloc.h>` and `<kern/kalloc.h>` for its API surface, which most 21*5c2921b0SApple OSS Distributions clients should find sufficient, 22*5c2921b0SApple OSS Distributions- `<kern/zalloc_internal.h>` for interfaces that need to be exported 23*5c2921b0SApple OSS Distributions for introspection and implementation purposes, and is not meant 24*5c2921b0SApple OSS Distributions for general consumption. 25*5c2921b0SApple OSS Distributions 26*5c2921b0SApple OSS DistributionsThis document will present the best practices to allocate memory 27*5c2921b0SApple OSS Distributionsin the kernel, from a security perspective. 28*5c2921b0SApple OSS Distributions 29*5c2921b0SApple OSS Distributions## Permanent allocations 30*5c2921b0SApple OSS Distributions 31*5c2921b0SApple OSS DistributionsThe kernel sometimes needs to provide persistent allocations that depend on 32*5c2921b0SApple OSS Distributionsparameters that aren't compile time constants, but will not vary over time (NCPU 33*5c2921b0SApple OSS Distributionsis an obvious example here). 34*5c2921b0SApple OSS Distributions 35*5c2921b0SApple OSS DistributionsThe zone subsystem provides a `zalloc_permanent*` family of functions that help 36*5c2921b0SApple OSS Distributionsallocating memory in such a fashion in a very compact way. 37*5c2921b0SApple OSS Distributions 38*5c2921b0SApple OSS DistributionsUnlike the typical zone allocators, this allows for arbitrary sizes, in a 39*5c2921b0SApple OSS Distributionssimilar fashion to `kalloc`. These functions will never fail (if the allocation 40*5c2921b0SApple OSS Distributionsfails, the kernel will panic), and always return zeroed memory. Trying to free 41*5c2921b0SApple OSS Distributionsthese allocations results in a kernel panic. 42*5c2921b0SApple OSS Distributions 43*5c2921b0SApple OSS Distributions## Allocation flags 44*5c2921b0SApple OSS Distributions 45*5c2921b0SApple OSS DistributionsMost `zalloc` or `kalloc` functions take `zalloc_flags_t` typed flags. 46*5c2921b0SApple OSS DistributionsWhen flags are expected, exactly one of `Z_WAITOK`, `Z_NOWAIT` or `Z_NOPAGEWAIT` 47*5c2921b0SApple OSS Distributionsis to be passed: 48*5c2921b0SApple OSS Distributions 49*5c2921b0SApple OSS Distributions- `Z_WAITOK` means that the zone allocator can wait and block, 50*5c2921b0SApple OSS Distributions- `Z_NOWAIT` can be used to require a fully non blocking behavior, which can be 51*5c2921b0SApple OSS Distributions used for allocations under spinlock and other preemption disabled contexts; 52*5c2921b0SApple OSS Distributions- `Z_NOPAGEWAIT` allows for the allocator to block (typically on mutexes), 53*5c2921b0SApple OSS Distributions but not to wait for available pages if there are none, this is only useful 54*5c2921b0SApple OSS Distributions for the buffer cache, and most client should either use `Z_NOWAIT` or `Z_WAITOK`. 55*5c2921b0SApple OSS Distributions 56*5c2921b0SApple OSS DistributionsOther important flags: 57*5c2921b0SApple OSS Distributions 58*5c2921b0SApple OSS Distributions- `Z_ZERO` if zeroed memory is expected (nowadays most of the allocations will 59*5c2921b0SApple OSS Distributions be zeroed regardless, but it's always clearer to specify it), note that it is 60*5c2921b0SApple OSS Distributions often more efficient than calling bzero as the allocator tends to maintain 61*5c2921b0SApple OSS Distributions freed memory as zeroed in the first place, 62*5c2921b0SApple OSS Distributions- `Z_NOFAIL` if the caller knows the allocation can't fail: allocations that are 63*5c2921b0SApple OSS Distributions made with `Z_WAITOK` from regular (non exhaustible) zones, or from `kalloc*` 64*5c2921b0SApple OSS Distributions interfaces with a size smaller than `KALLOC_SAFE_ALLOC_SIZE`, 65*5c2921b0SApple OSS Distributions will never fail (the kernel will instead panic if no memory can be found). 66*5c2921b0SApple OSS Distributions `Z_NOFAIL` can be used to denote that the caller knows about this. 67*5c2921b0SApple OSS Distributions If `Z_NOFAIL` is incorrectly used, then the zone allocator will panic at runtime. 68*5c2921b0SApple OSS Distributions 69*5c2921b0SApple OSS Distributions## Zones (`zalloc`) 70*5c2921b0SApple OSS Distributions 71*5c2921b0SApple OSS DistributionsThe first blessed way to allocate memory in the kernel is by using zones. 72*5c2921b0SApple OSS DistributionsZones are mostly meant to be used in Core XNU and some "BSD" kexts. 73*5c2921b0SApple OSS Distributions 74*5c2921b0SApple OSS DistributionsIt is generally recommended to create zones early and to store the `zone_t` 75*5c2921b0SApple OSS Distributionspointer in read-only memory (using `SECURITY_READ_ONLY_LATE` storage). 76*5c2921b0SApple OSS Distributions 77*5c2921b0SApple OSS DistributionsZones are more feature-rich than `kalloc`, and some features can only be 78*5c2921b0SApple OSS Distributionsused when making a zone: 79*5c2921b0SApple OSS Distributions 80*5c2921b0SApple OSS Distributions- the object type being allocated requires extremely strong segregation 81*5c2921b0SApple OSS Distributions from other types (typically `zone_require` will be used with this zone), 82*5c2921b0SApple OSS Distributions- the object type implements some form of security boundary and wants to adopt 83*5c2921b0SApple OSS Distributions the read-only allocator (See `ZC_READONLY`), 84*5c2921b0SApple OSS Distributions- the allocation must be per-cpu, 85*5c2921b0SApple OSS Distributions- ... 86*5c2921b0SApple OSS Distributions 87*5c2921b0SApple OSS DistributionsIn the vast majority of cases however, using `kalloc_type` (or `IOMallocType`) 88*5c2921b0SApple OSS Distributionsis preferred. 89*5c2921b0SApple OSS Distributions 90*5c2921b0SApple OSS Distributions 91*5c2921b0SApple OSS Distributions## The Typed allocator 92*5c2921b0SApple OSS Distributions 93*5c2921b0SApple OSS DistributionsIgnoring VM allocations (or wrappers like `IOMemoryDescriptor`), the only 94*5c2921b0SApple OSS Distributionsblessed way to allocate typed memory in XNU is using the typed allocator 95*5c2921b0SApple OSS Distributions`kalloc_type` or one of its variants (like IOKit's `IOMallocType`) and untyped 96*5c2921b0SApple OSS Distributionsmemory that doesn't contain pointers is using the data API `kalloc_data` or 97*5c2921b0SApple OSS Distributionsone of its variants (like IOKit's `IOMallocData`). However, this comes with 98*5c2921b0SApple OSS Distributionsadditional requirements. 99*5c2921b0SApple OSS Distributions 100*5c2921b0SApple OSS DistributionsNote that at this time, those interfaces aren't exported to third parties, 101*5c2921b0SApple OSS Distributionsas its ABI has not yet converged. 102*5c2921b0SApple OSS Distributions 103*5c2921b0SApple OSS Distributions### A word about types 104*5c2921b0SApple OSS Distributions 105*5c2921b0SApple OSS DistributionsThe typed allocators assume that allocated types fit a very precise model. 106*5c2921b0SApple OSS DistributionsIf the allocations you perform do not fit the model, then your types 107*5c2921b0SApple OSS Distributionsmust be restructured to fit, for security reasons. 108*5c2921b0SApple OSS Distributions 109*5c2921b0SApple OSS DistributionsA general theme will be the separation of data/primitive types from pointers, 110*5c2921b0SApple OSS Distributionsas attackers tend to use data/pointer overlaps to carry out their exploitations. 111*5c2921b0SApple OSS Distributions 112*5c2921b0SApple OSS DistributionsThe typed allocators use compiler support to infer signatures 113*5c2921b0SApple OSS Distributionsof the types being allocated. Because some scalars actually represent 114*5c2921b0SApple OSS Distributionskernel pointers (like `vm_offset_t`,`vm_address_t`, `uintptr_t`, ...), 115*5c2921b0SApple OSS Distributionstypes or structure members can be decorated with `__kernel_ptr_semantics` 116*5c2921b0SApple OSS Distributionsto denote when a data-looking type is actually a pointer. 117*5c2921b0SApple OSS Distributions 118*5c2921b0SApple OSS DistributionsDo note that `__kernel_data_semantics` and `__kernel_dual_semantics` 119*5c2921b0SApple OSS Distributionsare also provided but should typically rarely be used. 120*5c2921b0SApple OSS Distributions 121*5c2921b0SApple OSS Distributions#### fixed-sized types 122*5c2921b0SApple OSS Distributions 123*5c2921b0SApple OSS DistributionsThe first case is fixed size types, this is typically a `struct`, `union` 124*5c2921b0SApple OSS Distributionsor C++ `class`. Fixed-size types must follow certain rules: 125*5c2921b0SApple OSS Distributions 126*5c2921b0SApple OSS Distributions- types should be small enough to fit in the zone allocator: 127*5c2921b0SApple OSS Distributions smaller than `KALLOC_SAFE_ALLOC_SIZE`. When this is not the case, 128*5c2921b0SApple OSS Distributions we have typically found that there is a large array of data, 129*5c2921b0SApple OSS Distributions or some buffer in that type, the solution is to outline this allocation. 130*5c2921b0SApple OSS Distributions- for union types, data/pointer overlaps should be avoided if possible. 131*5c2921b0SApple OSS Distributions when this isn't possible, a zone should be considered. 132*5c2921b0SApple OSS Distributions 133*5c2921b0SApple OSS Distributions#### Variable-sized types 134*5c2921b0SApple OSS Distributions 135*5c2921b0SApple OSS DistributionsThese come in two variants: arrays, and arrays prefixed with a header. 136*5c2921b0SApple OSS DistributionsAny other case must be reduced to those, by possibly making more allocations. 137*5c2921b0SApple OSS Distributions 138*5c2921b0SApple OSS DistributionsAn array is simply an allocation of several fixed-size types, 139*5c2921b0SApple OSS Distributionsand the rules of "fixed-sized types" above apply to them. 140*5c2921b0SApple OSS Distributions 141*5c2921b0SApple OSS DistributionsThe following rules are expected when dealing with variable sized allocations: 142*5c2921b0SApple OSS Distributions 143*5c2921b0SApple OSS Distributions- variable sized allocations should have a single owner and not be refcounted; 144*5c2921b0SApple OSS Distributions- under the header-prefixed form, if the header contains pointers, 145*5c2921b0SApple OSS Distributions then the array element type **must not** be only data. 146*5c2921b0SApple OSS Distributions 147*5c2921b0SApple OSS DistributionsIf those rules can't be followed, then the allocation must be split with 148*5c2921b0SApple OSS Distributionsthe header becoming a fixed-sized type becoming the single owner 149*5c2921b0SApple OSS Distributionsof an array. 150*5c2921b0SApple OSS Distributions 151*5c2921b0SApple OSS Distributions#### Untyped memory 152*5c2921b0SApple OSS Distributions 153*5c2921b0SApple OSS DistributionsWhen allocating untyped memory with the data APIs ensure that it doesn't 154*5c2921b0SApple OSS Distributionscontain kernel pointers. If your untyped allocation contains kernel pointers 155*5c2921b0SApple OSS Distributionsconsider splitting the allocation into two: one part that is typed and contains 156*5c2921b0SApple OSS Distributionsthe kernel pointers and the second that is untyped and data-only. 157*5c2921b0SApple OSS Distributions 158*5c2921b0SApple OSS Distributions### API surface 159*5c2921b0SApple OSS Distributions 160*5c2921b0SApple OSS Distributions<table> 161*5c2921b0SApple OSS Distributions <tr> 162*5c2921b0SApple OSS Distributions <th>Interface</th> 163*5c2921b0SApple OSS Distributions <th>API</th> 164*5c2921b0SApple OSS Distributions <th>Notes</th> 165*5c2921b0SApple OSS Distributions </tr> 166*5c2921b0SApple OSS Distributions <tr> 167*5c2921b0SApple OSS Distributions <td>Data/Primitive types</td> 168*5c2921b0SApple OSS Distributions <td> 169*5c2921b0SApple OSS Distributions <p> 170*5c2921b0SApple OSS Distributions <b>Core Kernel</b>:<br/> 171*5c2921b0SApple OSS Distributions <tt>kalloc_data(size, flags)</tt><br/> 172*5c2921b0SApple OSS Distributions <tt>krealloc_data(ptr, old_size, new_size, flags)</tt><br/> 173*5c2921b0SApple OSS Distributions <tt>kfree_data(ptr, size)</tt><br/> 174*5c2921b0SApple OSS Distributions <tt>kfree_data_addr(ptr)</tt> 175*5c2921b0SApple OSS Distributions </p> 176*5c2921b0SApple OSS Distributions <p> 177*5c2921b0SApple OSS Distributions <b>IOKit untyped variant (returns <tt>void *</tt>)</b>:<br/> 178*5c2921b0SApple OSS Distributions <tt>IOMallocData(size)</tt><br/> 179*5c2921b0SApple OSS Distributions <tt>IOMallocZeroData(size)</tt><br/> 180*5c2921b0SApple OSS Distributions <tt>IOFreeData(ptr, size)</tt> 181*5c2921b0SApple OSS Distributions </p> 182*5c2921b0SApple OSS Distributions <p> 183*5c2921b0SApple OSS Distributions <b>IOKit typed variant (returns <tt>type_t *</tt>)</b>:<br/> 184*5c2921b0SApple OSS Distributions <tt>IONewData(type_t, count)</tt><br/> 185*5c2921b0SApple OSS Distributions <tt>IONewZeroData(type_t, count)</tt><br/> 186*5c2921b0SApple OSS Distributions <tt>IODeleteData(ptr, type_t, count)</tt> 187*5c2921b0SApple OSS Distributions </p> 188*5c2921b0SApple OSS Distributions </td> 189*5c2921b0SApple OSS Distributions <td>This should be used when the allocated type contains no kernel pointer only</td> 190*5c2921b0SApple OSS Distributions </tr> 191*5c2921b0SApple OSS Distributions <tr> 192*5c2921b0SApple OSS Distributions <td>Fixed-sized type</td> 193*5c2921b0SApple OSS Distributions <td> 194*5c2921b0SApple OSS Distributions <p> 195*5c2921b0SApple OSS Distributions <b>Core Kernel</b>:<br/> 196*5c2921b0SApple OSS Distributions <tt>kalloc_type(type_t, flags)</tt><br/> 197*5c2921b0SApple OSS Distributions <tt>kfree_type(type_t, ptr)</tt> 198*5c2921b0SApple OSS Distributions </p> 199*5c2921b0SApple OSS Distributions <p> 200*5c2921b0SApple OSS Distributions <b>IOKit:</b><br/> 201*5c2921b0SApple OSS Distributions <tt>IOMallocType(type_t)</tt><br/> 202*5c2921b0SApple OSS Distributions <tt>IOFreeType(ptr, type_t)</tt> 203*5c2921b0SApple OSS Distributions </p> 204*5c2921b0SApple OSS Distributions </td> 205*5c2921b0SApple OSS Distributions <td> 206*5c2921b0SApple OSS Distributions <p> 207*5c2921b0SApple OSS Distributions Note that this is absolutely OK to use this variant 208*5c2921b0SApple OSS Distributions for data/primitive types, it will be redirected to <tt>kalloc_data</tt> 209*5c2921b0SApple OSS Distributions (or <tt>IOMallocData</tt>). 210*5c2921b0SApple OSS Distributions </p> 211*5c2921b0SApple OSS Distributions </td> 212*5c2921b0SApple OSS Distributions </tr> 213*5c2921b0SApple OSS Distributions <tr> 214*5c2921b0SApple OSS Distributions <td>Arrays of fixed-sized type</td> 215*5c2921b0SApple OSS Distributions <td> 216*5c2921b0SApple OSS Distributions <p> 217*5c2921b0SApple OSS Distributions <b>Core Kernel</b>:<br/> 218*5c2921b0SApple OSS Distributions <tt>kalloc_type(type_t, count, flags)</tt><br/> 219*5c2921b0SApple OSS Distributions <tt>kfree_type(type_t, count, ptr)</tt> 220*5c2921b0SApple OSS Distributions </p> 221*5c2921b0SApple OSS Distributions <p> 222*5c2921b0SApple OSS Distributions <b>IOKit:</b><br/> 223*5c2921b0SApple OSS Distributions <tt>IONew(type_t, count)</tt><br/> 224*5c2921b0SApple OSS Distributions <tt>IONewZero(type_t, count)</tt><br/> 225*5c2921b0SApple OSS Distributions <tt>IODelete(ptr, type_t, count)</tt> 226*5c2921b0SApple OSS Distributions </p> 227*5c2921b0SApple OSS Distributions </td> 228*5c2921b0SApple OSS Distributions <td> 229*5c2921b0SApple OSS Distributions <p> 230*5c2921b0SApple OSS Distributions <tt>kalloc_type(type_t, ...)</tt> (resp. <tt>IONew(type_t, 1)</tt>) 231*5c2921b0SApple OSS Distributions <b>isn't</b> equivalent to <tt>kalloc_type(type_t, 1, ...)</tt> 232*5c2921b0SApple OSS Distributions (resp. <tt>IOMallocType(type_t)</tt>). Mix-and-matching interfaces 233*5c2921b0SApple OSS Distributions will result in panics. 234*5c2921b0SApple OSS Distributions </p> 235*5c2921b0SApple OSS Distributions <p> 236*5c2921b0SApple OSS Distributions Note that this is absolutely OK to use this variant 237*5c2921b0SApple OSS Distributions for data/primitive types, it will be redirected to <tt>kalloc_data</tt>. 238*5c2921b0SApple OSS Distributions </p> 239*5c2921b0SApple OSS Distributions </td> 240*5c2921b0SApple OSS Distributions </tr> 241*5c2921b0SApple OSS Distributions <tr> 242*5c2921b0SApple OSS Distributions <td>Header-prefixed arrays of fixed-sized type</td> 243*5c2921b0SApple OSS Distributions <td> 244*5c2921b0SApple OSS Distributions <p> 245*5c2921b0SApple OSS Distributions <b>Core Kernel</b>:<br/> 246*5c2921b0SApple OSS Distributions <tt>kalloc_type(hdr_type_t, type_t, count, flags)</tt><br/> 247*5c2921b0SApple OSS Distributions <tt>kfree_type(hdr_type_t, type_t, count, ptr)</tt> 248*5c2921b0SApple OSS Distributions </p> 249*5c2921b0SApple OSS Distributions <p> 250*5c2921b0SApple OSS Distributions <b>IOKit:</b><br/> 251*5c2921b0SApple OSS Distributions <tt>IONew(hdr_type_t, type_t, count)</tt><br/> 252*5c2921b0SApple OSS Distributions <tt>IONewZero(hdr_type_t, type_t, count)</tt><br/> 253*5c2921b0SApple OSS Distributions <tt>IODelete(ptr, hdr_type_t, type_t, count)</tt> 254*5c2921b0SApple OSS Distributions </p> 255*5c2921b0SApple OSS Distributions </td> 256*5c2921b0SApple OSS Distributions <td> 257*5c2921b0SApple OSS Distributions <p> 258*5c2921b0SApple OSS Distributions <tt>hdr_type_t</tt> can't contain a refcount, 259*5c2921b0SApple OSS Distributions and <tt>type_t</tt> can't be a primitive type. 260*5c2921b0SApple OSS Distributions </p> 261*5c2921b0SApple OSS Distributions </td> 262*5c2921b0SApple OSS Distributions </tr> 263*5c2921b0SApple OSS Distributions</table> 264*5c2921b0SApple OSS Distributions 265*5c2921b0SApple OSS Distributions## C++ classes and operator new. 266*5c2921b0SApple OSS Distributions 267*5c2921b0SApple OSS DistributionsThis section covers how typed allocators should be adopted to use 268*5c2921b0SApple OSS Distributions`operator new/delete` in C++. For C++ classes, the approach required 269*5c2921b0SApple OSS Distributionsdiffers based on whether the class inherits from `OSObject` or not. 270*5c2921b0SApple OSS Distributions 271*5c2921b0SApple OSS DistributionsMost, if not all, C++ objects used in conjuction with IOKit APIs 272*5c2921b0SApple OSS Distributionsshould probably use OSObject as a base class. C++ operators 273*5c2921b0SApple OSS Distributionsand non-POD types should be used seldomly. 274*5c2921b0SApple OSS Distributions 275*5c2921b0SApple OSS Distributions### `OSObject` subclasses 276*5c2921b0SApple OSS Distributions 277*5c2921b0SApple OSS DistributionsAll subclasses of `OSObject` must declare and define one of IOKit's 278*5c2921b0SApple OSS Distributions`OSDeclare*` and `OSDefine*` macros. As part of those, an `operator new` and 279*5c2921b0SApple OSS Distributions`operator delete` are injected that force objects to enroll into `kalloc_type`. 280*5c2921b0SApple OSS Distributions 281*5c2921b0SApple OSS DistributionsNote that idiomatic IOKit is supposed to use `OSTypeAlloc(Class)`. 282*5c2921b0SApple OSS Distributions 283*5c2921b0SApple OSS Distributions### Other classes 284*5c2921b0SApple OSS Distributions 285*5c2921b0SApple OSS DistributionsUnlike `OSObject` subclasses, regular C++ classes must adopt typed allocators 286*5c2921b0SApple OSS Distributionsmanually. If your struct or class is POD (Plain Old Data), then replacing usage of 287*5c2921b0SApple OSS Distributions`new/delete` (resp. `new[]/delete[]`) with `IOMallocType/IOFreeType` (resp. 288*5c2921b0SApple OSS Distributions`IONew/IODelete`) is safe. 289*5c2921b0SApple OSS Distributions 290*5c2921b0SApple OSS DistributionsHowever, if you have non default structors, or members of your class/struct 291*5c2921b0SApple OSS Distributionshave non default structors, you will need to manually enroll it into `kalloc_type`. 292*5c2921b0SApple OSS DistributionsThis can be accomplished through one of the following approaches, and it lets you 293*5c2921b0SApple OSS Distributionsto continue to use C++'s new and delete keywords to allocate/deallocate instances. 294*5c2921b0SApple OSS Distributions 295*5c2921b0SApple OSS DistributionsThe first approach is to subclass the IOTypedOperatorsMixin struct. This will 296*5c2921b0SApple OSS Distributionsadopt typed allocators for your class/struct by providing the appropriate 297*5c2921b0SApple OSS Distributionsimplementations for `operator new/delete`: 298*5c2921b0SApple OSS Distributions 299*5c2921b0SApple OSS Distributions```cpp 300*5c2921b0SApple OSS Distributionsstruct Type : public IOTypedOperatorsMixin<Type> { 301*5c2921b0SApple OSS Distributions ... 302*5c2921b0SApple OSS Distributions}; 303*5c2921b0SApple OSS Distributions``` 304*5c2921b0SApple OSS Distributions 305*5c2921b0SApple OSS DistributionsAlternatively, if you cannot use the mixin approach, you can use the 306*5c2921b0SApple OSS Distributions`IOOverrideTypedOperators` macro to override `operator new/delete` 307*5c2921b0SApple OSS Distributionswithin your class/struct declaration: 308*5c2921b0SApple OSS Distributions 309*5c2921b0SApple OSS Distributions```cpp 310*5c2921b0SApple OSS Distributionsstruct Type { 311*5c2921b0SApple OSS Distributions IOOverrideTypedOperators(Type); 312*5c2921b0SApple OSS Distributions ... 313*5c2921b0SApple OSS Distributions}; 314*5c2921b0SApple OSS Distributions``` 315*5c2921b0SApple OSS Distributions 316*5c2921b0SApple OSS DistributionsFinally, if you need to decouple the declaration of the operators from 317*5c2921b0SApple OSS Distributionstheir implementation, you can use `IODeclareTypedOperators` paired with 318*5c2921b0SApple OSS Distributions`IODefineTypedOperators`, to declare the operators within your class/struct 319*5c2921b0SApple OSS Distributionsdeclaration and then provide their definition out of line: 320*5c2921b0SApple OSS Distributions 321*5c2921b0SApple OSS Distributions```cpp 322*5c2921b0SApple OSS Distributions// declaration 323*5c2921b0SApple OSS Distributionsstruct Type { 324*5c2921b0SApple OSS Distributions IODeclareTypedOperators(Type); 325*5c2921b0SApple OSS Distributions ... 326*5c2921b0SApple OSS Distributions}; 327*5c2921b0SApple OSS Distributions 328*5c2921b0SApple OSS Distributions// definition 329*5c2921b0SApple OSS DistributionsIODefineTypedOperators(Type) 330*5c2921b0SApple OSS Distributions``` 331*5c2921b0SApple OSS Distributions 332*5c2921b0SApple OSS DistributionsWhen a class/struct adopts typed allocators through one of those approaches, 333*5c2921b0SApple OSS Distributionsall its subclasses must also explicitly adopt typed allocators. It is not 334*5c2921b0SApple OSS Distributionssufficient for a common parent within the class hierarchy to enroll, in order to 335*5c2921b0SApple OSS Distributionsautomatically provide the implementation of the operators for all of its children: 336*5c2921b0SApple OSS Distributionseach and every subclass in the class hierarchy must also explicitly do the same. 337*5c2921b0SApple OSS Distributions 338*5c2921b0SApple OSS Distributions### The case of `operator new[]` 339*5c2921b0SApple OSS Distributions 340*5c2921b0SApple OSS DistributionsThe ABI of `operator new[]` is unfortunate, as it denormalizes 341*5c2921b0SApple OSS Distributionsdata that we prefer to be known by the owning object 342*5c2921b0SApple OSS Distributions(the element sizes and array element count). 343*5c2921b0SApple OSS Distributions 344*5c2921b0SApple OSS DistributionsIt also makes those allocations ripe for abuse in an adversarial 345*5c2921b0SApple OSS Distributionscontext as this denormalized information is at the begining 346*5c2921b0SApple OSS Distributionsof the structure, making it relatively easy to attack with 347*5c2921b0SApple OSS Distributionsout-of-bounds bugs. 348*5c2921b0SApple OSS Distributions 349*5c2921b0SApple OSS DistributionsFor this reason, the default variants of the mixin and the macros 350*5c2921b0SApple OSS Distributionspresented above will delete the implementation of `operator new[]` 351*5c2921b0SApple OSS Distributionsfrom the class they are applied to. 352*5c2921b0SApple OSS Distributions 353*5c2921b0SApple OSS DistributionsHowever, if those must be used, you can add adopt the typed 354*5c2921b0SApple OSS Distributionsallocators on your class by using the appropriate variant 355*5c2921b0SApple OSS Distributionswhich explicitly implements the support for array operators: 356*5c2921b0SApple OSS Distributions- `IOTypedOperatorsMixinSupportingArrayOperators` 357*5c2921b0SApple OSS Distributions- `IOOverrideTypedOperatorsSupportingArrayOperators` 358*5c2921b0SApple OSS Distributions- `IO{Declare, Define}TypedOperatorsSupportingArrayOperators` 359*5c2921b0SApple OSS Distributions 360*5c2921b0SApple OSS Distributions### Scalar types 361*5c2921b0SApple OSS Distributions 362*5c2921b0SApple OSS DistributionsThe only accepted ways of using `operator new/delete` and their variants are the ones 363*5c2921b0SApple OSS Distributionsdescribed above. You should never use the operators on scalar types. Instead, you 364*5c2921b0SApple OSS Distributionsshould use the appropriate typed allocator API based on the semantics of the memory 365*5c2921b0SApple OSS Distributionsbeing allocated (i.e. `IOMallocData` for data only buffers, and `IOMallocType`/`IONew` 366*5c2921b0SApple OSS Distributionsfor any other type). 367*5c2921b0SApple OSS Distributions 368*5c2921b0SApple OSS Distributions### Wrapping C++ type allocation in container OSObjects 369*5c2921b0SApple OSS DistributionsThe blessed way of wrapping and passing a C++ type allocation for use in the 370*5c2921b0SApple OSS Distributionslibkern collection is using `OSValueObject`. Please do no use OSData for this 371*5c2921b0SApple OSS Distributionspurpose as its backing store should not contain kernel pointers. 372*5c2921b0SApple OSS Distributions 373