Skip to content

CT bypass prevents strip from handling the binary #19

@Pe13

Description

@Pe13

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

  1. Create a main.cpp file:
#include <iostream>

int main() {
  std::cout << "Not killed\n";
}
  1. Build it with clang++ and sign it with ldid (I used Procursus-roothide general.xml):
$ clang++ main.cpp && ldid -S/path/to/entitlements.xml a.out
  1. Check if strip works:
$ mkdir -p tmp && cp -a a.out tmp/a.out && strip tmp/a.out 
  1. Apply ct_bypass:
$ ct_bypass -i a.out -o tmp/a_ct.out
  1. Check if strip still works:
$ strip tmp/a_ct.out

Here 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.out

This appears to be due to the fact that after the ct bypass, the __LINKEDIT segment is no longer 16 bytes aligned.

Why 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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions