1*5e3eaea3SApple OSS DistributionsWhat is XNU? 2*5e3eaea3SApple OSS Distributions=========== 3*5e3eaea3SApple OSS Distributions 4*5e3eaea3SApple OSS DistributionsXNU kernel is part of the Darwin operating system for use in macOS and iOS operating systems. XNU is an acronym for X is Not Unix. 5*5e3eaea3SApple OSS DistributionsXNU is a hybrid kernel combining the Mach kernel developed at Carnegie Mellon University with components from FreeBSD and a C++ API for writing drivers called IOKit. 6*5e3eaea3SApple OSS DistributionsXNU runs on x86_64 for both single processor and multi-processor configurations. 7*5e3eaea3SApple OSS Distributions 8*5e3eaea3SApple OSS DistributionsXNU Source Tree 9*5e3eaea3SApple OSS Distributions=============== 10*5e3eaea3SApple OSS Distributions 11*5e3eaea3SApple OSS Distributions * `config` - configurations for exported apis for supported architecture and platform 12*5e3eaea3SApple OSS Distributions * `SETUP` - Basic set of tools used for configuring the kernel, versioning and kextsymbol management. 13*5e3eaea3SApple OSS Distributions * `EXTERNAL_HEADERS` - Headers sourced from other projects to avoid dependency cycles when building. These headers should be regularly synced when source is updated. 14*5e3eaea3SApple OSS Distributions * `libkern` - C++ IOKit library code for handling of drivers and kexts. 15*5e3eaea3SApple OSS Distributions * `libsa` - kernel bootstrap code for startup 16*5e3eaea3SApple OSS Distributions * `libsyscall` - syscall library interface for userspace programs 17*5e3eaea3SApple OSS Distributions * `libkdd` - source for user library for parsing kernel data like kernel chunked data. 18*5e3eaea3SApple OSS Distributions * `makedefs` - top level rules and defines for kernel build. 19*5e3eaea3SApple OSS Distributions * `osfmk` - Mach kernel based subsystems 20*5e3eaea3SApple OSS Distributions * `pexpert` - Platform specific code like interrupt handling, atomics etc. 21*5e3eaea3SApple OSS Distributions * `security` - Mandatory Access Check policy interfaces and related implementation. 22*5e3eaea3SApple OSS Distributions * `bsd` - BSD subsystems code 23*5e3eaea3SApple OSS Distributions * `tools` - A set of utilities for testing, debugging and profiling kernel. 24*5e3eaea3SApple OSS Distributions 25*5e3eaea3SApple OSS DistributionsHow to build XNU 26*5e3eaea3SApple OSS Distributions================ 27*5e3eaea3SApple OSS Distributions 28*5e3eaea3SApple OSS DistributionsBuilding `DEVELOPMENT` kernel 29*5e3eaea3SApple OSS Distributions----------------------------- 30*5e3eaea3SApple OSS Distributions 31*5e3eaea3SApple OSS DistributionsThe xnu make system can build kernel based on `KERNEL_CONFIGS` & `ARCH_CONFIGS` variables as arguments. 32*5e3eaea3SApple OSS DistributionsHere is the syntax: 33*5e3eaea3SApple OSS Distributions 34*5e3eaea3SApple OSS Distributions make SDKROOT=<sdkroot> ARCH_CONFIGS=<arch> KERNEL_CONFIGS=<variant> 35*5e3eaea3SApple OSS Distributions 36*5e3eaea3SApple OSS DistributionsWhere: 37*5e3eaea3SApple OSS Distributions 38*5e3eaea3SApple OSS Distributions * \<sdkroot>: path to macOS SDK on disk. (defaults to `/`) 39*5e3eaea3SApple OSS Distributions * \<variant>: can be `debug`, `development`, `release`, `profile` and configures compilation flags and asserts throughout kernel code. 40*5e3eaea3SApple OSS Distributions * \<arch> : can be valid arch to build for. (E.g. `X86_64`) 41*5e3eaea3SApple OSS Distributions 42*5e3eaea3SApple OSS DistributionsTo build a kernel for the same architecture as running OS, just type 43*5e3eaea3SApple OSS Distributions 44*5e3eaea3SApple OSS Distributions $ make 45*5e3eaea3SApple OSS Distributions $ make SDKROOT=macosx.internal 46*5e3eaea3SApple OSS Distributions 47*5e3eaea3SApple OSS DistributionsAdditionally, there is support for configuring architectures through `ARCH_CONFIGS` and kernel configurations with `KERNEL_CONFIGS`. 48*5e3eaea3SApple OSS Distributions 49*5e3eaea3SApple OSS Distributions $ make SDKROOT=macosx.internal ARCH_CONFIGS=X86_64 KERNEL_CONFIGS=DEVELOPMENT 50*5e3eaea3SApple OSS Distributions $ make SDKROOT=macosx.internal ARCH_CONFIGS=X86_64 KERNEL_CONFIGS="RELEASE DEVELOPMENT DEBUG" 51*5e3eaea3SApple OSS Distributions 52*5e3eaea3SApple OSS Distributions 53*5e3eaea3SApple OSS DistributionsNote: 54*5e3eaea3SApple OSS Distributions * By default, architecture is set to the build machine architecture, and the default kernel 55*5e3eaea3SApple OSS Distributions config is set to build for DEVELOPMENT. 56*5e3eaea3SApple OSS Distributions 57*5e3eaea3SApple OSS Distributions 58*5e3eaea3SApple OSS DistributionsThis will also create a bootable image, kernel.[config], and a kernel binary 59*5e3eaea3SApple OSS Distributionswith symbols, kernel.[config].unstripped. 60*5e3eaea3SApple OSS Distributions 61*5e3eaea3SApple OSS DistributionsTo intall the kernel into a DSTROOT, use the `install_kernels` target: 62*5e3eaea3SApple OSS Distributions 63*5e3eaea3SApple OSS Distributions $ make install_kernels DSTROOT=/tmp/xnu-dst 64*5e3eaea3SApple OSS Distributions 65*5e3eaea3SApple OSS DistributionsHint: 66*5e3eaea3SApple OSS DistributionsFor a more satisfying kernel debugging experience, with access to all 67*5e3eaea3SApple OSS Distributionslocal variables and arguments, but without all the extra check of the 68*5e3eaea3SApple OSS DistributionsDEBUG kernel, add something like: 69*5e3eaea3SApple OSS Distributions CFLAGS_DEVELOPMENTARM64="-O0 -g -DKERNEL_STACK_MULTIPLIER=2" 70*5e3eaea3SApple OSS Distributions CXXFLAGS_DEVELOPMENTARM64="-O0 -g -DKERNEL_STACK_MULTIPLIER=2" 71*5e3eaea3SApple OSS Distributionsto your make command. 72*5e3eaea3SApple OSS DistributionsReplace DEVELOPMENT and ARM64 with the appropriate build and platform. 73*5e3eaea3SApple OSS Distributions 74*5e3eaea3SApple OSS Distributions 75*5e3eaea3SApple OSS Distributions * To build with RELEASE kernel configuration 76*5e3eaea3SApple OSS Distributions 77*5e3eaea3SApple OSS Distributions make KERNEL_CONFIGS=RELEASE SDKROOT=/path/to/SDK 78*5e3eaea3SApple OSS Distributions 79*5e3eaea3SApple OSS Distributions 80*5e3eaea3SApple OSS DistributionsBuilding FAT kernel binary 81*5e3eaea3SApple OSS Distributions-------------------------- 82*5e3eaea3SApple OSS Distributions 83*5e3eaea3SApple OSS DistributionsDefine architectures in your environment or when running a make command. 84*5e3eaea3SApple OSS Distributions 85*5e3eaea3SApple OSS Distributions $ make ARCH_CONFIGS="X86_64" exporthdrs all 86*5e3eaea3SApple OSS Distributions 87*5e3eaea3SApple OSS DistributionsOther makefile options 88*5e3eaea3SApple OSS Distributions---------------------- 89*5e3eaea3SApple OSS Distributions 90*5e3eaea3SApple OSS Distributions * $ make MAKEJOBS=-j8 # this will use 8 processes during the build. The default is 2x the number of active CPUS. 91*5e3eaea3SApple OSS Distributions * $ make -j8 # the standard command-line option is also accepted 92*5e3eaea3SApple OSS Distributions * $ make -w # trace recursive make invocations. Useful in combination with VERBOSE=YES 93*5e3eaea3SApple OSS Distributions * $ make BUILD_LTO=0 # build without LLVM Link Time Optimization 94*5e3eaea3SApple OSS Distributions * $ make BOUND_CHECKS=0 # disable -fbound-attributes for this build 95*5e3eaea3SApple OSS Distributions * $ make REMOTEBUILD=user@remotehost # perform build on remote host 96*5e3eaea3SApple OSS Distributions 97*5e3eaea3SApple OSS DistributionsThe XNU build system can optionally output color-formatted build output. To enable this, you can either 98*5e3eaea3SApple OSS Distributionsset the `XNU_LOGCOLORS` environment variable to `y`, or you can pass `LOGCOLORS=y` to the make command. 99*5e3eaea3SApple OSS Distributions 100*5e3eaea3SApple OSS DistributionsCustomize xnu version 101*5e3eaea3SApple OSS Distributions--------------------- 102*5e3eaea3SApple OSS Distributions 103*5e3eaea3SApple OSS DistributionsThe xnu version is derived from the SDK or KDK by reading the `CFBundleVersion` 104*5e3eaea3SApple OSS Distributionsof their `System/Library/Extensions/System.kext/Info.plist` file. 105*5e3eaea3SApple OSS DistributionsThis can be customized by setting the `RC_DARWIN_KERNEL_VERSION` variable in 106*5e3eaea3SApple OSS Distributionsthe environment or on the `make` command line. 107*5e3eaea3SApple OSS Distributions 108*5e3eaea3SApple OSS Distributions 109*5e3eaea3SApple OSS DistributionsSee doc/xnu_version.md for more details. 110*5e3eaea3SApple OSS Distributions 111*5e3eaea3SApple OSS DistributionsDebug information formats 112*5e3eaea3SApple OSS Distributions========================= 113*5e3eaea3SApple OSS Distributions 114*5e3eaea3SApple OSS DistributionsBy default, a DWARF debug information repository is created during the install phase; this is a "bundle" named kernel.development.\<variant>.dSYM 115*5e3eaea3SApple OSS DistributionsTo select the older STABS debug information format (where debug information is embedded in the kernel.development.unstripped image), set the BUILD_STABS environment variable. 116*5e3eaea3SApple OSS Distributions 117*5e3eaea3SApple OSS Distributions $ export BUILD_STABS=1 118*5e3eaea3SApple OSS Distributions $ make 119*5e3eaea3SApple OSS Distributions 120*5e3eaea3SApple OSS Distributions 121*5e3eaea3SApple OSS DistributionsBuilding KernelCaches 122*5e3eaea3SApple OSS Distributions===================== 123*5e3eaea3SApple OSS Distributions 124*5e3eaea3SApple OSS DistributionsTo test the xnu kernel, you need to build a kernelcache that links the kexts and 125*5e3eaea3SApple OSS Distributionskernel together into a single bootable image. 126*5e3eaea3SApple OSS DistributionsTo build a kernelcache you can use the following mechanisms: 127*5e3eaea3SApple OSS Distributions 128*5e3eaea3SApple OSS Distributions * Using automatic kernelcache generation with `kextd`. 129*5e3eaea3SApple OSS Distributions The kextd daemon keeps watching for changing in `/System/Library/Extensions` directory. 130*5e3eaea3SApple OSS Distributions So you can setup new kernel as 131*5e3eaea3SApple OSS Distributions 132*5e3eaea3SApple OSS Distributions $ cp BUILD/obj/DEVELOPMENT/X86_64/kernel.development /System/Library/Kernels/ 133*5e3eaea3SApple OSS Distributions $ touch /System/Library/Extensions 134*5e3eaea3SApple OSS Distributions $ ps -e | grep kextd 135*5e3eaea3SApple OSS Distributions 136*5e3eaea3SApple OSS Distributions * Manually invoking `kextcache` to build new kernelcache. 137*5e3eaea3SApple OSS Distributions 138*5e3eaea3SApple OSS Distributions $ kextcache -q -z -a x86_64 -l -n -c /var/tmp/kernelcache.test -K /var/tmp/kernel.test /System/Library/Extensions 139*5e3eaea3SApple OSS Distributions 140*5e3eaea3SApple OSS Distributions 141*5e3eaea3SApple OSS Distributions 142*5e3eaea3SApple OSS DistributionsRunning KernelCache on Target machine 143*5e3eaea3SApple OSS Distributions===================================== 144*5e3eaea3SApple OSS Distributions 145*5e3eaea3SApple OSS DistributionsThe development kernel and iBoot supports configuring boot arguments so that we can safely boot into test kernel and, if things go wrong, safely fall back to previously used kernelcache. 146*5e3eaea3SApple OSS DistributionsFollowing are the steps to get such a setup: 147*5e3eaea3SApple OSS Distributions 148*5e3eaea3SApple OSS Distributions 1. Create kernel cache using the kextcache command as `/kernelcache.test` 149*5e3eaea3SApple OSS Distributions 2. Copy exiting boot configurations to alternate file 150*5e3eaea3SApple OSS Distributions 151*5e3eaea3SApple OSS Distributions $ cp /Library/Preferences/SystemConfiguration/com.apple.Boot.plist /next_boot.plist 152*5e3eaea3SApple OSS Distributions 153*5e3eaea3SApple OSS Distributions 3. Update the kernelcache and boot-args for your setup 154*5e3eaea3SApple OSS Distributions 155*5e3eaea3SApple OSS Distributions $ plutil -insert "Kernel Cache" -string "kernelcache.test" /next_boot.plist 156*5e3eaea3SApple OSS Distributions $ plutil -replace "Kernel Flags" -string "debug=0x144 -v kernelsuffix=test " /next_boot.plist 157*5e3eaea3SApple OSS Distributions 158*5e3eaea3SApple OSS Distributions 4. Copy the new config to `/Library/Preferences/SystemConfiguration/` 159*5e3eaea3SApple OSS Distributions 160*5e3eaea3SApple OSS Distributions $ cp /next_boot.plist /Library/Preferences/SystemConfiguration/boot.plist 161*5e3eaea3SApple OSS Distributions 162*5e3eaea3SApple OSS Distributions 5. Bless the volume with new configs. 163*5e3eaea3SApple OSS Distributions 164*5e3eaea3SApple OSS Distributions $ sudo -n bless --mount / --setBoot --nextonly --options "config=boot" 165*5e3eaea3SApple OSS Distributions 166*5e3eaea3SApple OSS Distributions The `--nextonly` flag specifies that use the `boot.plist` configs only for one boot. 167*5e3eaea3SApple OSS Distributions So if the kernel panic's you can easily power reboot and recover back to original kernel. 168*5e3eaea3SApple OSS Distributions 169*5e3eaea3SApple OSS Distributions 170*5e3eaea3SApple OSS Distributions 171*5e3eaea3SApple OSS Distributions 172*5e3eaea3SApple OSS DistributionsCreating tags and cscope 173*5e3eaea3SApple OSS Distributions======================== 174*5e3eaea3SApple OSS Distributions 175*5e3eaea3SApple OSS DistributionsSet up your build environment and from the top directory, run: 176*5e3eaea3SApple OSS Distributions 177*5e3eaea3SApple OSS Distributions $ make tags # this will build ctags and etags on a case-sensitive volume, only ctags on case-insensitive 178*5e3eaea3SApple OSS Distributions $ make TAGS # this will build etags 179*5e3eaea3SApple OSS Distributions $ make cscope # this will build cscope database 180*5e3eaea3SApple OSS Distributions 181*5e3eaea3SApple OSS Distributions 182*5e3eaea3SApple OSS DistributionsHow to install a new header file from XNU 183*5e3eaea3SApple OSS Distributions========================================= 184*5e3eaea3SApple OSS Distributions 185*5e3eaea3SApple OSS DistributionsXNU installs header files at the following locations - 186*5e3eaea3SApple OSS Distributions 187*5e3eaea3SApple OSS Distributions a. $(DSTROOT)/System/Library/Frameworks/Kernel.framework/Headers 188*5e3eaea3SApple OSS Distributions b. $(DSTROOT)/System/Library/Frameworks/Kernel.framework/PrivateHeaders 189*5e3eaea3SApple OSS Distributions c. $(DSTROOT)/usr/include/ 190*5e3eaea3SApple OSS Distributions d. $(DSTROOT)/usr/local/include/ 191*5e3eaea3SApple OSS Distributions e. $(DSTROOT)/System/DriverKit/usr/include/ 192*5e3eaea3SApple OSS Distributions f. $(DSTROOT)/System/Library/Frameworks/IOKit.framework/Headers 193*5e3eaea3SApple OSS Distributions g. $(DSTROOT)/System/Library/Frameworks/IOKit.framework/PrivateHeaders 194*5e3eaea3SApple OSS Distributions h. $(DSTROOT)/System/Library/Frameworks/System.framework/PrivateHeaders 195*5e3eaea3SApple OSS Distributions 196*5e3eaea3SApple OSS Distributions`Kernel.framework` is used by kernel extensions.\ 197*5e3eaea3SApple OSS DistributionsThe `System.framework`, `/usr/include` and `/usr/local/include` are used by user level applications. \ 198*5e3eaea3SApple OSS Distributions`IOKit.framework` is used by IOKit userspace clients. \ 199*5e3eaea3SApple OSS Distributions`/System/DriverKit/usr/include` is used by userspace drivers. \ 200*5e3eaea3SApple OSS DistributionsThe header files in framework's `PrivateHeaders` are only available for ** Apple Internal Development **. 201*5e3eaea3SApple OSS Distributions 202*5e3eaea3SApple OSS DistributionsThe directory containing the header file should have a Makefile that 203*5e3eaea3SApple OSS Distributionscreates the list of files that should be installed at different locations. 204*5e3eaea3SApple OSS DistributionsIf you are adding the first header file in a directory, you will need to 205*5e3eaea3SApple OSS Distributionscreate Makefile similar to `xnu/bsd/sys/Makefile`. 206*5e3eaea3SApple OSS Distributions 207*5e3eaea3SApple OSS DistributionsAdd your header file to the correct file list depending on where you want 208*5e3eaea3SApple OSS Distributionsto install it. The default locations where the header files are installed 209*5e3eaea3SApple OSS Distributionsfrom each file list are - 210*5e3eaea3SApple OSS Distributions 211*5e3eaea3SApple OSS Distributions a. `DATAFILES` : To make header file available in user level - 212*5e3eaea3SApple OSS Distributions `$(DSTROOT)/usr/include` 213*5e3eaea3SApple OSS Distributions `$(DSTROOT)/System/Library/Frameworks/System.framework/PrivateHeaders` 214*5e3eaea3SApple OSS Distributions 215*5e3eaea3SApple OSS Distributions b. `DRIVERKIT_DATAFILES` : To make header file available to DriverKit userspace drivers - 216*5e3eaea3SApple OSS Distributions `$(DSTROOT)/System/DriverKit/usr/include` 217*5e3eaea3SApple OSS Distributions 218*5e3eaea3SApple OSS Distributions c. `PRIVATE_DATAFILES` : To make header file available to Apple internal in 219*5e3eaea3SApple OSS Distributions user level - 220*5e3eaea3SApple OSS Distributions `$(DSTROOT)/System/Library/Frameworks/System.framework/PrivateHeaders` 221*5e3eaea3SApple OSS Distributions 222*5e3eaea3SApple OSS Distributions d. `EMBEDDED_PRIVATE_DATAFILES` : To make header file available in user 223*5e3eaea3SApple OSS Distributions level for macOS as `EXTRA_DATAFILES`, but Apple internal in user level 224*5e3eaea3SApple OSS Distributions for embedded OSes as `EXTRA_PRIVATE_DATAFILES` - 225*5e3eaea3SApple OSS Distributions `$(DSTROOT)/usr/include` (`EXTRA_DATAFILES`) 226*5e3eaea3SApple OSS Distributions `$(DSTROOT)/usr/local/include` (`EXTRA_PRIVATE_DATAFILES`) 227*5e3eaea3SApple OSS Distributions 228*5e3eaea3SApple OSS Distributions e. `KERNELFILES` : To make header file available in kernel level - 229*5e3eaea3SApple OSS Distributions `$(DSTROOT)/System/Library/Frameworks/Kernel.framework/Headers` 230*5e3eaea3SApple OSS Distributions `$(DSTROOT)/System/Library/Frameworks/Kernel.framework/PrivateHeaders` 231*5e3eaea3SApple OSS Distributions 232*5e3eaea3SApple OSS Distributions f. `PRIVATE_KERNELFILES` : To make header file available to Apple internal 233*5e3eaea3SApple OSS Distributions for kernel extensions - 234*5e3eaea3SApple OSS Distributions `$(DSTROOT)/System/Library/Frameworks/Kernel.framework/PrivateHeaders` 235*5e3eaea3SApple OSS Distributions 236*5e3eaea3SApple OSS Distributions g. `MODULEMAPFILES` : To make module map file available in user level - 237*5e3eaea3SApple OSS Distributions `$(DSTROOT)/usr/include` 238*5e3eaea3SApple OSS Distributions 239*5e3eaea3SApple OSS Distributions h. `PRIVATE_MODULEMAPFILES` : To make module map file available to Apple 240*5e3eaea3SApple OSS Distributions internal in user level - 241*5e3eaea3SApple OSS Distributions `$(DSTROOT)/usr/local/include` 242*5e3eaea3SApple OSS Distributions 243*5e3eaea3SApple OSS Distributions i. `LIBCXX_DATAFILES` : To make header file available to in-kernel libcxx clients: 244*5e3eaea3SApple OSS Distributions `$(DSTROOT)/System/Library/Frameworks/Kernel.framework/PrivateHeaders/kernel_sdkroot` 245*5e3eaea3SApple OSS Distributions 246*5e3eaea3SApple OSS Distributions j. `EXCLAVEKIT_DATAFILES` : To make header file available to Apple internal 247*5e3eaea3SApple OSS Distributions ExclaveKit SDK - 248*5e3eaea3SApple OSS Distributions `$(DSTROOT)/System/ExclaveKit/usr/include` 249*5e3eaea3SApple OSS Distributions 250*5e3eaea3SApple OSS Distributions k. `EXCLAVECORE_DATAFILES` : To make header file available to Apple internal 251*5e3eaea3SApple OSS Distributions ExclaveCore SDK - 252*5e3eaea3SApple OSS Distributions `$(DSTROOT)/System/ExclaveCore/usr/include` 253*5e3eaea3SApple OSS Distributions 254*5e3eaea3SApple OSS DistributionsThe Makefile combines the file lists mentioned above into different 255*5e3eaea3SApple OSS Distributionsinstall lists which are used by build system to install the header files. There 256*5e3eaea3SApple OSS Distributionsare two types of install lists: machine-dependent and machine-independent. 257*5e3eaea3SApple OSS DistributionsThese lists are indicated by the presence of `MD` and `MI` in the build 258*5e3eaea3SApple OSS Distributionssetting, respectively. If your header is architecture-specific, then you should 259*5e3eaea3SApple OSS Distributionsuse a machine-dependent install list (e.g. `INSTALL_MD_LIST`). If your header 260*5e3eaea3SApple OSS Distributionsshould be installed for all architectures, then you should use a 261*5e3eaea3SApple OSS Distributionsmachine-independent install list (e.g. `INSTALL_MI_LIST`). 262*5e3eaea3SApple OSS Distributions 263*5e3eaea3SApple OSS DistributionsIf the install list that you are interested does not exist, create it 264*5e3eaea3SApple OSS Distributionsby adding the appropriate file lists. The default install lists, its 265*5e3eaea3SApple OSS Distributionsmember file lists and their default location are described below - 266*5e3eaea3SApple OSS Distributions 267*5e3eaea3SApple OSS Distributions a. `INSTALL_MI_LIST`, `INSTALL_MODULEMAP_MI_LIST` : Installs header and module map 268*5e3eaea3SApple OSS Distributions files to a location that is available to everyone in user level. 269*5e3eaea3SApple OSS Distributions Locations - 270*5e3eaea3SApple OSS Distributions $(DSTROOT)/usr/include 271*5e3eaea3SApple OSS Distributions Definition - 272*5e3eaea3SApple OSS Distributions INSTALL_MI_LIST = ${DATAFILES} 273*5e3eaea3SApple OSS Distributions INSTALL_MODULEMAP_MI_LIST = ${MODULEMAPFILES} 274*5e3eaea3SApple OSS Distributions 275*5e3eaea3SApple OSS Distributions b. `INSTALL_DRIVERKIT_MI_LIST` : Installs header file to a location that is 276*5e3eaea3SApple OSS Distributions available to DriverKit userspace drivers. 277*5e3eaea3SApple OSS Distributions Locations - 278*5e3eaea3SApple OSS Distributions $(DSTROOT)/System/DriverKit/usr/include 279*5e3eaea3SApple OSS Distributions Definition - 280*5e3eaea3SApple OSS Distributions INSTALL_DRIVERKIT_MI_LIST = ${DRIVERKIT_DATAFILES} 281*5e3eaea3SApple OSS Distributions 282*5e3eaea3SApple OSS Distributions c. `INSTALL_MI_LCL_LIST`, `INSTALL_MODULEMAP_MI_LCL_LIST` : Installs header and 283*5e3eaea3SApple OSS Distributions module map files to a location that is available for Apple internal in user level. 284*5e3eaea3SApple OSS Distributions Locations - 285*5e3eaea3SApple OSS Distributions $(DSTROOT)/usr/local/include 286*5e3eaea3SApple OSS Distributions Definition - 287*5e3eaea3SApple OSS Distributions INSTALL_MI_LCL_LIST = 288*5e3eaea3SApple OSS Distributions INSTALL_MODULEMAP_MI_LCL_LIST = ${PRIVATE_MODULEMAPFILES} 289*5e3eaea3SApple OSS Distributions 290*5e3eaea3SApple OSS Distributions d. `INSTALL_IF_MI_LIST` : Installs header file to location that is available 291*5e3eaea3SApple OSS Distributions to everyone for IOKit userspace clients. 292*5e3eaea3SApple OSS Distributions Locations - 293*5e3eaea3SApple OSS Distributions $(DSTROOT)/System/Library/Frameworks/IOKit.framework/Headers 294*5e3eaea3SApple OSS Distributions Definition - 295*5e3eaea3SApple OSS Distributions INSTALL_IF_MI_LIST = ${DATAFILES} 296*5e3eaea3SApple OSS Distributions 297*5e3eaea3SApple OSS Distributions e. `INSTALL_IF_MI_LCL_LIST` : Installs header file to location that is 298*5e3eaea3SApple OSS Distributions available to Apple internal for IOKit userspace clients. 299*5e3eaea3SApple OSS Distributions Locations - 300*5e3eaea3SApple OSS Distributions $(DSTROOT)/System/Library/Frameworks/IOKit.framework/PrivateHeaders 301*5e3eaea3SApple OSS Distributions Definition - 302*5e3eaea3SApple OSS Distributions INSTALL_IF_MI_LCL_LIST = ${DATAFILES} ${PRIVATE_DATAFILES} 303*5e3eaea3SApple OSS Distributions 304*5e3eaea3SApple OSS Distributions f. `INSTALL_SF_MI_LCL_LIST` : Installs header file to a location that is available 305*5e3eaea3SApple OSS Distributions for Apple internal in user level. 306*5e3eaea3SApple OSS Distributions Locations - 307*5e3eaea3SApple OSS Distributions $(DSTROOT)/System/Library/Frameworks/System.framework/PrivateHeaders 308*5e3eaea3SApple OSS Distributions Definition - 309*5e3eaea3SApple OSS Distributions INSTALL_SF_MI_LCL_LIST = ${DATAFILES} ${PRIVATE_DATAFILES} 310*5e3eaea3SApple OSS Distributions 311*5e3eaea3SApple OSS Distributions g. `INSTALL_KF_MI_LIST` : Installs header file to location that is available 312*5e3eaea3SApple OSS Distributions to everyone for kernel extensions. 313*5e3eaea3SApple OSS Distributions Locations - 314*5e3eaea3SApple OSS Distributions $(DSTROOT)/System/Library/Frameworks/Kernel.framework/Headers 315*5e3eaea3SApple OSS Distributions Definition - 316*5e3eaea3SApple OSS Distributions INSTALL_KF_MI_LIST = ${KERNELFILES} 317*5e3eaea3SApple OSS Distributions 318*5e3eaea3SApple OSS Distributions h. `INSTALL_KF_MI_LCL_LIST` : Installs header file to location that is 319*5e3eaea3SApple OSS Distributions available for Apple internal for kernel extensions. 320*5e3eaea3SApple OSS Distributions Locations - 321*5e3eaea3SApple OSS Distributions $(DSTROOT)/System/Library/Frameworks/Kernel.framework/PrivateHeaders 322*5e3eaea3SApple OSS Distributions Definition - 323*5e3eaea3SApple OSS Distributions INSTALL_KF_MI_LCL_LIST = ${KERNELFILES} ${PRIVATE_KERNELFILES} 324*5e3eaea3SApple OSS Distributions 325*5e3eaea3SApple OSS Distributions i. `EXPORT_MI_LIST` : Exports header file to all of xnu (bsd/, osfmk/, etc.) 326*5e3eaea3SApple OSS Distributions for compilation only. Does not install anything into the SDK. 327*5e3eaea3SApple OSS Distributions Definition - 328*5e3eaea3SApple OSS Distributions EXPORT_MI_LIST = ${KERNELFILES} ${PRIVATE_KERNELFILES} 329*5e3eaea3SApple OSS Distributions 330*5e3eaea3SApple OSS Distributions j. `INSTALL_KF_LIBCXX_MI_LIST` : Installs header file for in-kernel libc++ support. 331*5e3eaea3SApple OSS Distributions Locations - 332*5e3eaea3SApple OSS Distributions $(DSTROOT)/System/Library/Frameworks/Kernel.framework/PrivateHeaders/kernel_sdkroot 333*5e3eaea3SApple OSS Distributions Definition - 334*5e3eaea3SApple OSS Distributions INSTALL_KF_LIBCXX_MI_LIST = ${LIBCXX_DATAFILES} 335*5e3eaea3SApple OSS Distributions 336*5e3eaea3SApple OSS Distributions k. `INSTALL_EXCLAVEKIT_MI_LIST` : Installs header file to location that is 337*5e3eaea3SApple OSS Distributions available for Apple internal for ExclaveKit. 338*5e3eaea3SApple OSS Distributions Locations - 339*5e3eaea3SApple OSS Distributions $(DSTROOT)/System/ExclaveKit/usr/include 340*5e3eaea3SApple OSS Distributions Definition - 341*5e3eaea3SApple OSS Distributions INSTALL_EXCLAVEKIT_MI_LIST = ${EXCLAVEKIT_DATAFILES} 342*5e3eaea3SApple OSS Distributions 343*5e3eaea3SApple OSS Distributions l. `INSTALL_EXCLAVECORE_MI_LIST` : Installs header file to location that is 344*5e3eaea3SApple OSS Distributions available for Apple internal for ExclaveCore. 345*5e3eaea3SApple OSS Distributions Locations - 346*5e3eaea3SApple OSS Distributions $(DSTROOT)/System/ExclaveCore/usr/include 347*5e3eaea3SApple OSS Distributions Definition - 348*5e3eaea3SApple OSS Distributions INSTALL_EXCLAVECORE_MI_LIST = ${EXCLAVECORE_DATAFILES} 349*5e3eaea3SApple OSS Distributions 350*5e3eaea3SApple OSS DistributionsIf you want to install the header file in a sub-directory of the paths 351*5e3eaea3SApple OSS Distributionsdescribed in (1), specify the directory name using two variables 352*5e3eaea3SApple OSS Distributions`INSTALL_MI_DIR` and `EXPORT_MI_DIR` as follows - 353*5e3eaea3SApple OSS Distributions 354*5e3eaea3SApple OSS Distributions INSTALL_MI_DIR = dirname 355*5e3eaea3SApple OSS Distributions EXPORT_MI_DIR = dirname 356*5e3eaea3SApple OSS Distributions 357*5e3eaea3SApple OSS DistributionsIf you want to install the module map file in a sub-directory, specify the 358*5e3eaea3SApple OSS Distributionsdirectory name using the variable `INSTALL_MODULEMAP_MI_DIR` as follows - 359*5e3eaea3SApple OSS Distributions 360*5e3eaea3SApple OSS Distributions INSTALL_MODULEMAP_MI_DIR = dirname 361*5e3eaea3SApple OSS Distributions 362*5e3eaea3SApple OSS DistributionsA single header file can exist at different locations using the steps 363*5e3eaea3SApple OSS Distributionsmentioned above. However it might not be desirable to make all the code 364*5e3eaea3SApple OSS Distributionsin the header file available at all the locations. For example, you 365*5e3eaea3SApple OSS Distributionswant to export a function only to kernel level but not user level. 366*5e3eaea3SApple OSS Distributions 367*5e3eaea3SApple OSS Distributions You can use C language's pre-processor directive (#ifdef, #endif, #ifndef) 368*5e3eaea3SApple OSS Distributions to control the text generated before a header file is installed. The kernel 369*5e3eaea3SApple OSS Distributions only includes the code if the conditional macro is TRUE and strips out 370*5e3eaea3SApple OSS Distributions code for FALSE conditions from the header file. 371*5e3eaea3SApple OSS Distributions 372*5e3eaea3SApple OSS Distributions Some pre-defined macros and their descriptions are - 373*5e3eaea3SApple OSS Distributions 374*5e3eaea3SApple OSS Distributions a. `PRIVATE` : If defined, enclosed definitions are considered System 375*5e3eaea3SApple OSS Distributions Private Interfaces. These are visible within xnu and 376*5e3eaea3SApple OSS Distributions exposed in user/kernel headers installed within the AppleInternal 377*5e3eaea3SApple OSS Distributions "PrivateHeaders" sections of the System and Kernel frameworks. 378*5e3eaea3SApple OSS Distributions b. `KERNEL_PRIVATE` : If defined, enclosed code is available to all of xnu 379*5e3eaea3SApple OSS Distributions kernel and Apple internal kernel extensions and omitted from user 380*5e3eaea3SApple OSS Distributions headers. 381*5e3eaea3SApple OSS Distributions c. `BSD_KERNEL_PRIVATE` : If defined, enclosed code is visible exclusively 382*5e3eaea3SApple OSS Distributions within the xnu/bsd module. 383*5e3eaea3SApple OSS Distributions d. `MACH_KERNEL_PRIVATE`: If defined, enclosed code is visible exclusively 384*5e3eaea3SApple OSS Distributions within the xnu/osfmk module. 385*5e3eaea3SApple OSS Distributions e. `XNU_KERNEL_PRIVATE`: If defined, enclosed code is visible exclusively 386*5e3eaea3SApple OSS Distributions within xnu. 387*5e3eaea3SApple OSS Distributions f. `KERNEL` : If defined, enclosed code is available within xnu and kernel 388*5e3eaea3SApple OSS Distributions extensions and is not visible in user level header files. Only the 389*5e3eaea3SApple OSS Distributions header files installed in following paths will have the code - 390*5e3eaea3SApple OSS Distributions 391*5e3eaea3SApple OSS Distributions $(DSTROOT)/System/Library/Frameworks/Kernel.framework/Headers 392*5e3eaea3SApple OSS Distributions $(DSTROOT)/System/Library/Frameworks/Kernel.framework/PrivateHeaders 393*5e3eaea3SApple OSS Distributions g. `DRIVERKIT`: If defined, enclosed code is visible exclusively in the 394*5e3eaea3SApple OSS Distributions DriverKit SDK headers used by userspace drivers. 395*5e3eaea3SApple OSS Distributions h. `EXCLAVEKIT`: If defined, enclosed code is visible exclusively in the 396*5e3eaea3SApple OSS Distributions ExclaveKit SDK headers. 397*5e3eaea3SApple OSS Distributions i. `EXCLAVECORE`: If defined, enclosed code is visible exclusively in the 398*5e3eaea3SApple OSS Distributions ExclaveCore SDK headers. 399*5e3eaea3SApple OSS Distributions 400*5e3eaea3SApple OSS DistributionsModule map file name convention 401*5e3eaea3SApple OSS Distributions=============================== 402*5e3eaea3SApple OSS Distributions 403*5e3eaea3SApple OSS DistributionsIn the simple case, a subdirectory of `usr/include` or `usr/local/include` 404*5e3eaea3SApple OSS Distributionscan be represented by a standalone module. Where this is the case, set 405*5e3eaea3SApple OSS Distributions`INSTALL_MODULEMAP_MI_DIR` to `INSTALL_MI_DIR` and install a `module.modulemap` 406*5e3eaea3SApple OSS Distributionsfile there. `module.modulemap` is used even for private modules in 407*5e3eaea3SApple OSS Distributions`usr/local/include`; `module.private.modulemap` is not used. Caveat: in order 408*5e3eaea3SApple OSS Distributionsto stay in the simple case, the module name needs to be exactly the same as 409*5e3eaea3SApple OSS Distributionsthe directory name. If that's not possible, then the following method will 410*5e3eaea3SApple OSS Distributionsneed to be applied. 411*5e3eaea3SApple OSS Distributions 412*5e3eaea3SApple OSS Distributions`xnu` contributes to the modules defined in CoreOSModuleMaps by installing 413*5e3eaea3SApple OSS Distributionsmodule map files that are sourced from `usr/include/module.modulemap` and 414*5e3eaea3SApple OSS Distributions`usr/local/include/module.modulemap`. The naming convention for the `xnu` 415*5e3eaea3SApple OSS Distributionsmodule map files are as follows. 416*5e3eaea3SApple OSS Distributions 417*5e3eaea3SApple OSS Distributions a. Ideally the module map file covers an entire directory. A module map 418*5e3eaea3SApple OSS Distributions file covering `usr/include/a/b/c` would be named `a_b_c.modulemap`. 419*5e3eaea3SApple OSS Distributions `usr/local/include/a/b/c` would be `a_b_c_private.modulemap`. 420*5e3eaea3SApple OSS Distributions b. Some headers are special and require their own module. In that case, 421*5e3eaea3SApple OSS Distributions the module map file would be named after the module it defines. 422*5e3eaea3SApple OSS Distributions A module map file defining the module `One.Two.Three` would be named 423*5e3eaea3SApple OSS Distributions `one_two_three.modulemap`. 424*5e3eaea3SApple OSS Distributions 425*5e3eaea3SApple OSS DistributionsConditional compilation 426*5e3eaea3SApple OSS Distributions======================= 427*5e3eaea3SApple OSS Distributions 428*5e3eaea3SApple OSS Distributions`xnu` offers the following mechanisms for conditionally compiling code: 429*5e3eaea3SApple OSS Distributions 430*5e3eaea3SApple OSS Distributions a. *CPU Characteristics* If the code you are guarding has specific 431*5e3eaea3SApple OSS Distributions characterstics that will vary only based on the CPU architecture being 432*5e3eaea3SApple OSS Distributions targeted, use this option. Prefer checking for features of the 433*5e3eaea3SApple OSS Distributions architecture (e.g. `__LP64__`, `__LITTLE_ENDIAN__`, etc.). 434*5e3eaea3SApple OSS Distributions b. *New Features* If the code you are guarding, when taken together, 435*5e3eaea3SApple OSS Distributions implements a feature, you should define a new feature in `config/MASTER` 436*5e3eaea3SApple OSS Distributions and use the resulting `CONFIG` preprocessor token (e.g. for a feature 437*5e3eaea3SApple OSS Distributions named `config_virtual_memory`, check for `#if CONFIG_VIRTUAL_MEMORY`). 438*5e3eaea3SApple OSS Distributions This practice ensures that existing features may be brought to other 439*5e3eaea3SApple OSS Distributions platforms by simply changing a feature switch. 440*5e3eaea3SApple OSS Distributions c. *Existing Features* You can use existing features if your code is 441*5e3eaea3SApple OSS Distributions strongly tied to them (e.g. use `SECURE_KERNEL` if your code implements 442*5e3eaea3SApple OSS Distributions new functionality that is exclusively relevant to the trusted kernel and 443*5e3eaea3SApple OSS Distributions updates the definition/understanding of what being a trusted kernel means). 444*5e3eaea3SApple OSS Distributions 445*5e3eaea3SApple OSS DistributionsIt is recommended that you avoid compiling based on the target platform. `xnu` 446*5e3eaea3SApple OSS Distributionsdoes not define the platform macros from `TargetConditionals.h` 447*5e3eaea3SApple OSS Distributions(`TARGET_OS_OSX`, `TARGET_OS_IOS`, etc.). 448*5e3eaea3SApple OSS Distributions 449*5e3eaea3SApple OSS Distributions 450*5e3eaea3SApple OSS DistributionsDebugging xnu 451*5e3eaea3SApple OSS Distributions============= 452*5e3eaea3SApple OSS Distributions 453*5e3eaea3SApple OSS DistributionsBy default, the kernel reboots in the event of a panic. 454*5e3eaea3SApple OSS DistributionsThis behavior can be overriden by the `debug` boot-arg -- `debug=0x14e` will cause a panic to wait for a debugger to attach. 455*5e3eaea3SApple OSS DistributionsTo boot a kernel so it can be debugged by an attached machine, override the `kdp_match_name` boot-arg with the appropriate `ifconfig` interface. 456*5e3eaea3SApple OSS DistributionsEthernet, Thunderbolt, and serial debugging are supported, depending on the hardware. 457*5e3eaea3SApple OSS Distributions 458*5e3eaea3SApple OSS DistributionsUse LLDB to debug the kernel: 459*5e3eaea3SApple OSS Distributions 460*5e3eaea3SApple OSS Distributions ; xcrun -sdk macosx lldb <path-to-unstripped-kernel> 461*5e3eaea3SApple OSS Distributions (lldb) gdb-remote [<host-ip>:]<port> 462*5e3eaea3SApple OSS Distributions 463*5e3eaea3SApple OSS DistributionsThe debug info for the kernel (dSYM) comes with a set of macros to support kernel debugging. 464*5e3eaea3SApple OSS DistributionsTo load these macros automatically when attaching to the kernel, add the following to `~/.lldbinit`: 465*5e3eaea3SApple OSS Distributions 466*5e3eaea3SApple OSS Distributions settings set target.load-script-from-symbol-file true 467*5e3eaea3SApple OSS Distributions 468*5e3eaea3SApple OSS Distributions`tools/lldbmacros` contains the source for these commands. 469*5e3eaea3SApple OSS DistributionsSee the README in that directory for their usage, or use the built-in LLDB help with: 470*5e3eaea3SApple OSS Distributions 471*5e3eaea3SApple OSS Distributions (lldb) help showcurrentstacks 472*5e3eaea3SApple OSS Distributions 473