dyld-832.7.1.tar.gz
[apple/dyld.git] / testing / kernel-cache-tests / auxkc-missing-weak-bind / test.py
1 #!/usr/bin/python2.7
2
3 import os
4 import KernelCollection
5
6 # Check that weak binds can be missing, so long as we check for the magic symbol
7
8 def check(kernel_cache):
9 kernel_cache.buildKernelCollection("arm64", "/auxkc-missing-weak-bind/main.kc", "/auxkc-missing-weak-bind/main.kernel", "/auxkc-missing-weak-bind/extensions", [], [])
10 kernel_cache.analyze("/auxkc-missing-weak-bind/main.kc", ["-symbols", "-arch", "arm64"])
11
12 assert len(kernel_cache.dictionary()["dylibs"]) == 1
13 assert kernel_cache.dictionary()["dylibs"][0]["name"] == "com.apple.kernel"
14 assert kernel_cache.dictionary()["dylibs"][0]["global-symbols"][2]["name"] == "_gOSKextUnresolved"
15 assert kernel_cache.dictionary()["dylibs"][0]["global-symbols"][2]["vmAddr"] == "0x10000"
16
17 # Now build an aux cache using the baseline kernel collection
18 kernel_cache.buildAuxKernelCollection("arm64", "/auxkc-missing-weak-bind/aux.kc", "/auxkc-missing-weak-bind/main.kc", "", "/auxkc-missing-weak-bind/extensions", ["com.apple.foo", "com.apple.bar"], [])
19 kernel_cache.analyze("/auxkc-missing-weak-bind/aux.kc", ["-fixups", "-arch", "arm64"])
20
21 # Check the fixups
22 assert len(kernel_cache.dictionary()["fixups"]) == 4
23 assert kernel_cache.dictionary()["fixups"]["0x14000"] == "kc(0) + 0x10000"
24 assert kernel_cache.dictionary()["fixups"]["0x14008"] == "kc(0) + 0x10000"
25 assert kernel_cache.dictionary()["fixups"]["0x14010"] == "kc(0) + 0x10000"
26 assert kernel_cache.dictionary()["fixups"]["0x14018"] == "kc(0) + 0x10000"
27 assert len(kernel_cache.dictionary()["dylibs"]) == 2
28 assert kernel_cache.dictionary()["dylibs"][0]["name"] == "com.apple.bar"
29 assert kernel_cache.dictionary()["dylibs"][0]["fixups"] == "none"
30 assert kernel_cache.dictionary()["dylibs"][1]["name"] == "com.apple.foo"
31 assert kernel_cache.dictionary()["dylibs"][1]["fixups"] == "none"
32
33
34 # [~]> xcrun -sdk iphoneos.internal cc -arch arm64 -Wl,-static -mkernel -nostdlib -Wl,-add_split_seg_info -Wl,-rename_section,__TEXT,__text,__TEXT_EXEC,__text -Wl,-e,__start -Wl,-pagezero_size,0x0 -Wl,-pie -Wl,-sectcreate,__LINKINFO,__symbolsets,SymbolSets.plist -Wl,-segprot,__LINKINFO,r--,r-- main.c -o main.kernel
35 # [~]> xcrun -sdk iphoneos.internal cc -arch arm64 -Wl,-kext -mkernel -nostdlib -Wl,-add_split_seg_info foo.c -o extensions/foo.kext/foo
36 # [~]> xcrun -sdk iphoneos.internal cc -arch arm64 -Wl,-kext -mkernel -nostdlib -Wl,-add_split_seg_info bar.c -o extensions/bar.kext/bar -Wl,-fixup_chains
37 # [~]> rm -r extensions/*.kext/*.ld
38