Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added exemem for Vita | Yifan Lu | 2016-10-18 | 3 | -6/+36 |
| | | | | Removed unneeded field for hooks | ||||
* | Moved slab allocator out of substitute | Yifan Lu | 2016-10-09 | 3 | -428/+6 |
| | |||||
* | Getting the mirror address from Vita exec slab | Yifan Lu | 2016-10-09 | 2 | -0/+14 |
| | |||||
* | Added basic hook removal support | Yifan Lu | 2016-10-09 | 2 | -2/+58 |
| | |||||
* | Slab allocation mirroring for Vita | Yifan Lu | 2016-10-09 | 6 | -27/+32 |
| | |||||
* | Added slab allocator for trampoline in Vita platform | Yifan Lu | 2016-10-08 | 6 | -20/+491 |
| | | | | Added support for smaller (non-page) allocations for trampoline | ||||
* | Added support for platform specific aux data to execmem | Yifan Lu | 2016-10-08 | 5 | -19/+28 |
| | |||||
* | Support using a different VMA for the hook dest | Yifan Lu | 2016-10-05 | 2 | -1/+4 |
| | |||||
* | Changed malloc in substitute_hook_functions to alloca | Yifan Lu | 2016-10-05 | 1 | -2/+2 |
| | |||||
* | execmem_alloc_unsealed now outputs a separate pointer for exec and writing ↵ | Yifan Lu | 2016-10-05 | 4 | -21/+33 |
| | | | | to allow for mirrored writes | ||||
* | Fixed missing trampoline_size_left decrement for making initial trampoline jump | Yifan Lu | 2016-10-05 | 2 | -0/+25 |
| | | | | Added comment about min exec page size requirement | ||||
* | Added option to removed pthread dependency | Yifan Lu | 2016-10-04 | 3 | -2/+12 |
| | | | | | Added option to remove dynamic linker stuff Fixed a reference in strerror.c that depends on __APPLE__ being defined | ||||
* | replace broken gen-manual-mach.sh with a Python version | comex | 2016-07-12 | 1 | -2/+0 |
| | | | | | it was dropping the #pragma pack(4) declarations, rendering it broken for like most of the last year | ||||
* | comment | comex | 2016-04-19 | 1 | -1/+2 |
| | |||||
* | comment | comex | 2016-04-19 | 1 | -1/+1 |
| | |||||
* | Fix incorrect handling if there is no local symbol info in the cache. | comex | 2016-01-27 | 1 | -1/+4 |
| | |||||
* | stuff | comex | 2015-08-17 | 5 | -3/+87 |
| | |||||
* | formatting | comex | 2015-08-07 | 2 | -93/+94 |
| | |||||
* | add VEC_STORAGE_INIT_STATIC to match the HTAB one | comex | 2015-08-07 | 1 | -0/+5 |
| | |||||
* | fix vec.h bug | comex | 2015-08-07 | 2 | -3/+3 |
| | |||||
* | future proofing | comex | 2015-07-18 | 1 | -1/+2 |
| | |||||
* | formatting | comex | 2015-07-17 | 1 | -1/+1 |
| | |||||
* | baton fix | comex | 2015-07-16 | 1 | -2/+9 |
| | |||||
* | optimization | comex | 2015-07-16 | 1 | -2/+5 |
| | |||||
* | fix idiotic mistake from the <redacted> symbols commit | comex | 2015-07-16 | 1 | -1/+1 |
| | |||||
* | Revert <stdatomic.h> dependency. | comex | 2015-07-16 | 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. | ||||
* | Add options field to struct substitute_{function,import}_hook. | comex | 2015-07-16 | 1 | -2/+12 |
| | | | | | | | | | | | | I will probably need to add an option to deal with GCC 5.2's new optimization - to not save caller-saved registers if the called function is known not to use them, which would break with hooked functions. Don't want to emit the required stub by default because it will likely be slow. I need to verify that Clang doesn't currently have such an optimization... (ABI break - need to avoid this once it gets widely distributed Soon, obviously) | ||||
* | style police | comex | 2015-07-16 | 12 | -45/+94 |
| | |||||
* | work around (incorrect, since it's not code) alignment warning | comex | 2015-07-16 | 1 | -1/+1 |
| | |||||
* | fix accidentally exported symbols | comex | 2015-07-16 | 2 | -2/+2 |
| | |||||
* | typo | comex | 2015-07-16 | 1 | -1/+1 |
| | |||||
* | ordering | comex | 2015-07-16 | 1 | -8/+8 |
| | |||||
* | Import some code to handle <redacted> syms. | comex | 2015-07-16 | 2 | -11/+199 |
| | |||||
* | hook up the list of dylibs | comex | 2015-07-13 | 2 | -0/+9 |
| | |||||
* | don't be n^2 for removal, lol. i should probably switch to rust's robin ↵ | comex | 2015-07-12 | 1 | -21/+12 |
| | | | | hood hashing - it isn't that much code and supposedly performs much better when the table gets full. *however*, it requires checking the hash of every entry in the chain during insert, which basically means storing it, which means more memory usage ... but by allowing fuller tables it could decrease memory usage. but if you have a big table anyway to avoid copying, you don't want *extra*... and storing the hash twice in the simple case is so dumb feeling. dunno. | ||||
* | fix my hash table algorithm - argh | comex | 2015-07-12 | 1 | -14/+35 |
| | |||||
* | fixes | comex | 2015-07-12 | 1 | -0/+4 |
| | |||||
* | redo crash reporting - untested (but it compiles) | comex | 2015-07-12 | 2 | -21/+41 |
| | |||||
* | how did that style violation get in there? must have been tired | comex | 2015-07-12 | 1 | -4/+8 |
| | |||||
* | working on safety | comex | 2015-07-11 | 1 | -5/+18 |
| | |||||
* | fix anti-noise | comex | 2015-07-11 | 1 | -1/+4 |
| | |||||
* | stuff! | comex | 2015-07-10 | 3 | -5/+6 |
| | |||||
* | redo all the things with xpc - not tested yet | comex | 2015-07-07 | 1 | -0/+63 |
| | |||||
* | tests | comex | 2015-07-07 | 1 | -0/+4 |
| | |||||
* | fix for compiling objc-asm.S on ARM with newer Apple compiler | comex | 2015-04-15 | 1 | -1/+1 |
| | |||||
* | fixes for compiling on older OS X | comex | 2015-03-03 | 2 | -1/+6 |
| | |||||
* | A number of critical fixes painstakingly discovered in the slowest way possible. | comex | 2015-03-01 | 12 | -23/+39 |
| | |||||
* | fix stack alignment | comex | 2015-03-01 | 1 | -3/+6 |
| | |||||
* | Let's get hacky! | comex | 2015-03-01 | 1 | -3/+16 |
| | |||||
* | make jump-dis use a vec as a stack, rather than a hacky queue | comex | 2015-03-01 | 2 | -26/+18 |
| |