Loading...
#!/usr/bin/python2.7 import os import KernelCollection # Check that the kernel and kexts still have all their symbols as we didn't strip them def check(kernel_cache): kernel_cache.buildKernelCollection("arm64", "/strip-none/main.kc", "/strip-none/main.kernel", "/strip-none/extensions", ["com.apple.foo", "com.apple.bar"], []) kernel_cache.analyze("/strip-none/main.kc", ["-layout", "-arch", "arm64"]) # Check the symbols kernel_cache.analyze("/strip-none/main.kc", ["-symbols", "-arch", "arm64"]) assert len(kernel_cache.dictionary()["dylibs"]) == 3 # kernel assert kernel_cache.dictionary()["dylibs"][0]["name"] == "com.apple.kernel" assert len(kernel_cache.dictionary()["dylibs"][0]["global-symbols"]) == 2 assert kernel_cache.dictionary()["dylibs"][0]["global-symbols"][0]["name"] == "__mh_execute_header" assert kernel_cache.dictionary()["dylibs"][0]["global-symbols"][1]["name"] == "__start" assert kernel_cache.dictionary()["dylibs"][0]["local-symbols"] == "none" # bar assert kernel_cache.dictionary()["dylibs"][1]["name"] == "com.apple.bar" assert len(kernel_cache.dictionary()["dylibs"][1]["global-symbols"]) == 1 assert kernel_cache.dictionary()["dylibs"][1]["global-symbols"][0]["name"] == "_bar" assert kernel_cache.dictionary()["dylibs"][1]["local-symbols"] == "none" # foo assert kernel_cache.dictionary()["dylibs"][2]["name"] == "com.apple.foo" assert len(kernel_cache.dictionary()["dylibs"][2]["global-symbols"]) == 1 assert kernel_cache.dictionary()["dylibs"][2]["global-symbols"][0]["name"] == "_foo" assert kernel_cache.dictionary()["dylibs"][2]["local-symbols"] == "none" # [~]> 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 # [~]> xcrun -sdk iphoneos.internal cc -arch arm64 -Wl,-kext -mkernel -nostdlib -Wl,-add_split_seg_info foo.c -o extensions/foo.kext/foo # [~]> xcrun -sdk iphoneos.internal cc -arch arm64 -Wl,-kext -mkernel -nostdlib -Wl,-add_split_seg_info bar.c -o extensions/bar.kext/bar # [~]> rm -r extensions/*.kext/*.ld |