-
Notifications
You must be signed in to change notification settings - Fork 64
Description
Tested ChOma versions
Both on iOS (actually iPadOS) 16.6 M1
- Roothide fastPathSign based on a custom ChOma
- Upstream ChOma's ct_bypass (built on the iPad itself with theos iPhoneOS16.5 SDK and Procursus-roothide openssl-dev package)
Steps to reproduce
- Create a
main.cppfile:
#include <iostream>
int main() {
std::cout << "Not killed\n";
}- Build it with
clang++and sign it with ldid (I used Procursus-roothidegeneral.xml):
$ clang++ main.cpp && ldid -S/path/to/entitlements.xml a.out- Check if
stripworks:
$ mkdir -p tmp && cp -a a.out tmp/a.out && strip tmp/a.out - Apply ct_bypass:
$ ct_bypass -i a.out -o tmp/a_ct.out- Check if
stripstill works:
$ strip tmp/a_ct.outHere you should get the error:
strip: fatal error: file not in an order that can be processed (link edit information does not fill the __LINKEDIT segment): /absolute/path/to/tmp/a_ct.outWhy I care
I am trying to build Procursus(-roothide) packages directly on a device with Serotonine, and in order to make the compiler pass the tests of the various build systems (autotools, cmake, etc.) I wrote a wrapper for the compiler which once the binary is compiled, if it is an executable, applies the ct bypass to it.
In the installation phase, however, install -s is called on the binary, and this fails.
This problem can be circumvented by creating a wrapper for strip, but this greatly delays the process, since to make it as compatible as possible, you have to unsign the binary to be installed, install it, apply the ct_bypass to the installed file and also to the original one, all only if the file in question is a mach-o.