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