]>
git.saurik.com Git - apple/dyld.git/blob - testing/kernel-cache-tests/kext-bind-to-kext/test.py
4 import KernelCollection
6 # This verifies that a kext can bind to another kext
7 # foo.kext exports foo and bar.kext uses it
9 def check(kernel_cache
):
10 kernel_cache
.buildKernelCollection("arm64", "/kext-bind-to-kext/main.kc", "/kext-bind-to-kext/main.kernel", "/kext-bind-to-kext/extensions", ["com.apple.foo", "com.apple.bar"], [])
11 kernel_cache
.analyze("/kext-bind-to-kext/main.kc", ["-layout", "-arch", "arm64"])
13 assert len(kernel_cache
.dictionary()["dylibs"]) == 3
15 assert kernel_cache
.dictionary()["dylibs"][0]["name"] == "com.apple.kernel"
17 assert kernel_cache
.dictionary()["dylibs"][1]["name"] == "com.apple.bar"
18 assert len(kernel_cache
.dictionary()["dylibs"][1]["segments"]) == 4
19 assert kernel_cache
.dictionary()["dylibs"][1]["segments"][2]["name"] == "__DATA"
20 assert kernel_cache
.dictionary()["dylibs"][1]["segments"][2]["vmAddr"] == "0x1C000"
22 assert kernel_cache
.dictionary()["dylibs"][2]["name"] == "com.apple.foo"
24 kernel_cache
.analyze("/kext-bind-to-kext/main.kc", ["-symbols", "-arch", "arm64"])
25 assert kernel_cache
.dictionary()["dylibs"][2]["name"] == "com.apple.foo"
26 assert kernel_cache
.dictionary()["dylibs"][2]["global-symbols"][0]["name"] == "_foo"
27 assert kernel_cache
.dictionary()["dylibs"][2]["global-symbols"][0]["vmAddr"] == "0x14020"
30 kernel_cache
.analyze("/kext-bind-to-kext/main.kc", ["-fixups", "-arch", "arm64"])
31 assert len(kernel_cache
.dictionary()["fixups"]) == 1
32 assert kernel_cache
.dictionary()["fixups"]["0x1C000"] == "kc(0) + 0x14020"
33 assert len(kernel_cache
.dictionary()["dylibs"]) == 3
34 assert kernel_cache
.dictionary()["dylibs"][0]["name"] == "com.apple.kernel"
35 assert kernel_cache
.dictionary()["dylibs"][0]["fixups"] == "none"
36 assert kernel_cache
.dictionary()["dylibs"][1]["name"] == "com.apple.bar"
37 assert kernel_cache
.dictionary()["dylibs"][1]["fixups"] == "none"
38 assert kernel_cache
.dictionary()["dylibs"][2]["name"] == "com.apple.foo"
39 assert kernel_cache
.dictionary()["dylibs"][2]["fixups"] == "none"
42 # [~]> 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 main.c -o main.kernel
43 # [~]> xcrun -sdk iphoneos.internal cc -arch arm64 -Wl,-kext -mkernel -nostdlib -Wl,-add_split_seg_info -Wl,-no_data_const foo.c -o extensions/foo.kext/foo
44 # [~]> xcrun -sdk iphoneos.internal cc -arch arm64 -Wl,-kext -mkernel -nostdlib -Wl,-add_split_seg_info -Wl,-no_data_const bar.c -o extensions/bar.kext/bar
45 # [~]> rm -r extensions/*.kext/*.ld