]>
git.saurik.com Git - apple/dyld.git/blob - testing/kernel-cache-tests/strip-all-kexts/test.py
   4 import KernelCollection
 
   6 # Check that we stripped all the symbols from kexts but the kernel is still not strippped 
   8 def check(kernel_cache
): 
   9     kernel_cache
.buildKernelCollection("arm64", "/strip-all-kexts/main.kc", "/strip-all-kexts/main.kernel", "/strip-all-kexts/extensions", ["com.apple.foo", "com.apple.bar"], ["-strip-all-kexts"]) 
  10     kernel_cache
.analyze("/strip-all-kexts/main.kc", ["-layout", "-arch", "arm64"]) 
  13     kernel_cache
.analyze("/strip-all-kexts/main.kc", ["-symbols", "-arch", "arm64"]) 
  14     assert len(kernel_cache
.dictionary()["dylibs"]) == 3 
  16     assert kernel_cache
.dictionary()["dylibs"][0]["name"] == "com.apple.kernel" 
  17     assert len(kernel_cache
.dictionary()["dylibs"][0]["global-symbols"]) == 2 
  18     assert kernel_cache
.dictionary()["dylibs"][0]["global-symbols"][0]["name"] == "__mh_execute_header" 
  19     assert kernel_cache
.dictionary()["dylibs"][0]["global-symbols"][1]["name"] == "__start" 
  20     assert kernel_cache
.dictionary()["dylibs"][0]["local-symbols"] == "none" 
  22     assert kernel_cache
.dictionary()["dylibs"][1]["name"] == "com.apple.bar" 
  23     assert kernel_cache
.dictionary()["dylibs"][1]["global-symbols"] == "none" 
  24     assert kernel_cache
.dictionary()["dylibs"][1]["local-symbols"] == "none" 
  26     assert kernel_cache
.dictionary()["dylibs"][2]["name"] == "com.apple.foo" 
  27     assert kernel_cache
.dictionary()["dylibs"][2]["global-symbols"] == "none" 
  28     assert kernel_cache
.dictionary()["dylibs"][2]["local-symbols"] == "none" 
  31 # [~]> 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 
  32 # [~]> xcrun -sdk iphoneos.internal cc -arch arm64 -Wl,-kext -mkernel -nostdlib -Wl,-add_split_seg_info foo.c -o extensions/foo.kext/foo 
  33 # [~]> xcrun -sdk iphoneos.internal cc -arch arm64 -Wl,-kext -mkernel -nostdlib -Wl,-add_split_seg_info bar.c -o extensions/bar.kext/bar 
  34 # [~]> rm -r extensions/*.kext/*.ld