Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2016-11-15 | avoid UB | comex | 1 | -2/+2 | |
2016-10-09 | Slab allocation mirroring for Vita | Yifan Lu | 1 | -2/+2 | |
2016-10-08 | Added slab allocator for trampoline in Vita platform | Yifan Lu | 1 | -2/+2 | |
Added support for smaller (non-page) allocations for trampoline | |||||
2016-10-08 | Added support for platform specific aux data to execmem | Yifan Lu | 1 | -3/+4 | |
2016-10-05 | execmem_alloc_unsealed now outputs a separate pointer for exec and writing ↵ | Yifan Lu | 1 | -1/+2 | |
to allow for mirrored writes | |||||
2016-07-12 | replace broken gen-manual-mach.sh with a Python version | comex | 1 | -2/+0 | |
it was dropping the #pragma pack(4) declarations, rendering it broken for like most of the last year | |||||
2016-01-27 | Fix incorrect handling if there is no local symbol info in the cache. | comex | 1 | -1/+4 | |
2015-07-18 | future proofing | comex | 1 | -1/+2 | |
2015-07-16 | baton fix | comex | 1 | -2/+9 | |
2015-07-16 | optimization | comex | 1 | -2/+5 | |
2015-07-16 | fix idiotic mistake from the <redacted> symbols commit | comex | 1 | -1/+1 | |
2015-07-16 | Revert <stdatomic.h> dependency. | comex | 1 | -10/+8 | |
it was added in the otherwise cosmetic dfd16cc1f759a103707ebd27743abc621486e131 because I didn't change the generated code at all - just switched to the standard aliases of the functions I was already using. But I forgot that <stdatomic.h> isn't present in relatively recent Xcode, so I'm switching back for now. | |||||
2015-07-16 | style police | comex | 7 | -33/+69 | |
2015-07-16 | work around (incorrect, since it's not code) alignment warning | comex | 1 | -1/+1 | |
2015-07-16 | fix accidentally exported symbols | comex | 2 | -2/+2 | |
2015-07-16 | typo | comex | 1 | -1/+1 | |
2015-07-16 | ordering | comex | 1 | -8/+8 | |
2015-07-16 | Import some code to handle <redacted> syms. | comex | 1 | -11/+197 | |
2015-07-13 | hook up the list of dylibs | comex | 1 | -0/+2 | |
2015-07-12 | fixes | comex | 1 | -0/+4 | |
2015-07-12 | redo crash reporting - untested (but it compiles) | comex | 1 | -0/+8 | |
2015-07-12 | how did that style violation get in there? must have been tired | comex | 1 | -4/+8 | |
2015-07-11 | working on safety | comex | 1 | -5/+18 | |
2015-07-11 | fix anti-noise | comex | 1 | -0/+66 | |
2015-04-15 | fix for compiling objc-asm.S on ARM with newer Apple compiler | comex | 1 | -1/+1 | |
2015-03-03 | fixes for compiling on older OS X | comex | 1 | -1/+5 | |
2015-03-01 | fix stack alignment | comex | 1 | -3/+6 | |
2015-02-28 | Add extra argument to substitute_hook_functions and interpose_imports for ↵ | comex | 2 | -2/+7 | |
use with unhooking. I think we'll need to explicitly record trampoline locations to avoid the possibility of stomping on someone else's stuff if the function was re-patched... Also, document substitute_hook_functions. | |||||
2015-02-28 | fix accidental usage of panic() from mach/mach.h instead of substitute_panic | comex | 2 | -7/+9 | |
2015-02-28 | Add substituted and fix things up to use it. Still untested. | comex | 1 | -0/+5 | |
2015-02-28 | Rename ios-bootstrap to darwin-bootstrap; cleanup posixspawn-hook and ↵ | comex | 1 | -145/+0 | |
unrestrict. Not tested yet. | |||||
2015-02-24 | fix armv7 syscall registers :o | comex | 1 | -1/+6 | |
2015-02-24 | fix "panic" in substrate-compat.c | comex | 1 | -4/+4 | |
2015-02-24 | fix arm64/armv7 ish | comex | 2 | -3/+10 | |
2015-02-23 | fix i386 manual syscall, mmap return check | comex | 2 | -5/+9 | |
2015-02-23 | Fix vm_remap, of trouble with which the previous diagnosis was completely ↵ | comex | 1 | -10/+12 | |
incorrect. It's actually the fact that no vm_map_server actually exists on the kernel side - even though the otherwise useless function vm_remap exists in the kernel source, and mig generates server code for it, apparently that server code isn't built or linked into the kobject table. Bizarre. Anyway, switch to mach_vm_remap, which is what vm_remap in userspace calls into. | |||||
2015-02-23 | remove old comment | comex | 1 | -5/+0 | |
2015-02-23 | and avoid call to pthreads | comex | 1 | -1/+5 | |
2015-02-23 | Redo manual syscalls, and use them for hooking.. And fix mmap, which now ↵ | comex | 4 | -84/+114 | |
makes the whole thing slightly broken, because vm_remap into the middle of the shared region apparently silently does nothing. | |||||
2015-02-18 | various fixes | comex | 1 | -3/+11 | |
2015-02-18 | er, don't unnecessarily spam thread start/resume. | comex | 1 | -27/+34 | |
2015-02-18 | Fix hook-function: | comex | 5 | -249/+414 | |
- Thread stoppage is now complemented by sigaction to catch injected threads (sigaction is not used exclusively because the rest of the program could be trying to use sigaction itself in the meantime - this is a real thing, ask Dolphin) - mprotect is no longer used due to max_protection possibly getting in the way; instead, a copy is created and mapped onto the original. | |||||
2015-01-29 | ... | comex | 1 | -48/+2 | |
2015-01-29 | a bunch of stuff that should have been committed separately | comex | 2 | -13/+22 | |
2015-01-29 | add SUBSTITUTE_DONT_STOP_THREADS for substrate compat - substrate doesn't do ↵ | comex | 1 | -1/+1 | |
this, and they might not be on the main thread. though that would be gross. | |||||
2015-01-29 | misc. fixes | comex | 1 | -1/+0 | |
2015-01-29 | get rid of the unnecessary CoreFoundation dependency | comex | 1 | -40/+42 | |
2015-01-29 | port some old code | comex | 1 | -1/+2 | |
2015-01-28 | ***yawn*** | comex | 2 | -10/+13 | |
2015-01-28 | sorta | comex | 1 | -7/+26 | |