about summary refs log tree commit diff stats
path: root/src/elfs (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Improved unload of libs (help wine when dlopen / dlclose is supposed to ↵ptitSeb2024-03-091-2/+2
| | | | unload the lib so it can be dlopen again)
* [ELFLOADER] Fixes some issue with symbol version matching and unload of ↵ptitSeb2024-03-042-13/+8
| | | | failled libs (for #1311, probably other too)
* [ELFLOADER] Fixed another warningptitSeb2024-02-281-2/+2
|
* [ELFLOADER] Fixed a warningptitSeb2024-02-281-1/+1
|
* Added ability to staticaly build box64 (for #1045 and #310, maybe a few ↵ptitSeb2024-02-261-2/+8
| | | | others tickets)
* [ANDROID] Fix Build When Compiling with NDK 26b, [CI] Download Basic Android ↵KreitinnSoftware2024-02-171-3/+5
| | | | | | | | | Libs from 'termux-docker' and update NDK to 26b (#1270) * [CI] Download Basic Android Libs from termux-docker for speed-up CI build * [ANDROID] Fix 'SHT_CHECKSUM' error when compiling on NDK 26b * [CI] Update NDK for 26b
* Removed some debug leftover (at least change from LOG_INFO to LOG_DEBUG)ptitSeb2024-02-171-1/+1
|
* [ELFLOADER] Better handling of STB_GNU_UNIQUE binded symbol (prevent dlclose)ptitSeb2024-02-162-0/+16
|
* [ELFLOADER] Improved inter-library dependancie managmentptitSeb2024-02-161-10/+33
|
* [ANDROID][TERMUX] Fix buildptitSeb2024-02-151-0/+4
|
* Fixe builds (non trace and android/termux)ptitSeb2024-02-151-0/+4
|
* [ELFLOADER] Huge refactor of elfloader and symbol resolution. Some more ↵ptitSeb2024-02-155-595/+622
| | | | cleaning need to be done, but that's a first step (should help #422, #360, #1046 and probably others)
* Added support for RTLD_DEEPBIND flag on dlopenptitSeb2024-02-111-26/+46
|
* Small fix for FindNearestSymbolNameptitSeb2024-02-111-1/+1
|
* [ELFLOADER] Do not memset the remaining of page when mmap'ing, it's already ↵ptitSeb2024-02-091-2/+2
| | | | done (and might not be possible depending on the protection)
* Reworked, again, exit processptitSeb2024-02-062-0/+7
|
* Made PageSize detection / Handling dynamic. nd fixed elfloading for pagesize ↵ptitSeb2024-01-311-51/+46
| | | | not 4K. The define are still there but might be removed shortly (for #1231, #1226, #1189, #1175, #999, #384 and probably a few other)
* [ELFLOADER] Zero'd memory when using mmap and filesize smaller than memsizeptitSeb2024-01-211-0/+2
|
* Fixes (#1207)rajdakin2024-01-182-4/+4
| | | | | | | | | | | * Fixed signed/unsigned issues and other cosmetics * [WRAPPERS] Fixed missing `return`s in `my_` functions * [EMU] More fixes * [STEAM] Forgot one cleanup * [WRAPPER] Fixed wrappedpulse callback signatures
* Round size to pagesize on the tracked memoryptitSeb2024-01-161-1/+1
|
* [ELFLOADER] Fixed some issue with COPY/GLOB_DATA symbol relocationsptitSeb2024-01-151-12/+8
|
* [ELFLOADER] More elf alignment sections adjustmentsptitSeb2024-01-081-11/+9
|
* [ELFLOADER] Another attempt at elf allignement fixesptitSeb2024-01-082-21/+32
|
* [ELFLOADER] Try to harden the memory allocationptitSeb2024-01-081-1/+11
|
* Cleanup some code (#1157)xctan2023-12-231-1/+0
| | | | | * Fix the size of random bytes in the auxiliary vector (AT_RANDOM) to 16 bytes * [ELFLOADER] Remove an unused statement
* Fixed a warningptitSeb2023-12-061-1/+1
|
* [TRACE] Better trace for an issue inside a wrapperptitSeb2023-12-061-4/+6
|
* Improved bridge name storage/retreivalptitSeb2023-12-011-3/+1
|
* [ELFLOADER] Use a fallback if allocated memory not at expected address for ↵ptitSeb2023-11-291-2/+8
| | | | elf with vaddr
* [ELFLOADER] Some fixes to localy openned libs when symbols might collide ↵ptitSeb2023-11-281-7/+8
| | | | with main binary
* [ANDROID] Use TERMUX Define Instead ANDROID (#1093)Lily2023-11-271-1/+1
|
* [ANDROID] Fix Compiling (#1091)Lily2023-11-271-1/+3
| | | | | | | | | * [ANDROID] Added missing wrappedandroidshmem def headers * [ANDROID] Fix Compiling * [CMAKE] Typo * [CMAKE] TERMUX Define
* [ELFLOADER] Small improvment to have correct R/W attribute set on elf memoryptitSeb2023-11-151-3/+5
|
* [ELFLOADER] Small changes on elf memory managmentptitSeb2023-11-131-4/+4
|
* [ELFLOADER] Some more fixes to elf memory managerptitSeb2023-11-131-3/+4
|
* [ELFLOADER] Fixed align issue (may help #1057) (#1058)Yang Liu2023-11-121-2/+2
|
* [TRACE] Better trace for unknown offset in native elfptitSeb2023-11-071-1/+1
|
* [ELFLOADER] Use alternate simpler method for memory managment when pagesize ↵ptitSeb2023-11-071-26/+36
| | | | is not 4K (should help #1051)
* [ELFLOADER] Another fix for elfloader memory managment on pagesize not 4K ↵ptitSeb2023-11-071-1/+21
| | | | (might help #1051)
* [ELFLOADER] Another fix for elfloader memory managment (might help #1051)ptitSeb2023-11-071-8/+6
|
* Better way to track mapped memoryptitSeb2023-11-051-3/+3
|
* [ELFLOADER] More changes to elf memory managmentptitSeb2023-11-042-8/+30
|
* [ELFLOADER] Some more regression fixes on elf memory managment (for #1013)ptitSeb2023-11-031-2/+2
|
* [ELFLOADER] Fixed loading of elf with huge alignmentptitSeb2023-11-011-9/+20
|
* [ELFLOADER] Last improvment to elfloader memory managment, should be good nowptitSeb2023-11-011-0/+1
|
* [ELFLOADER] Small improvment in new elfloader memory managerptitSeb2023-10-311-5/+7
|
* [ELFLOADER] Changed how memory is managed in elfloaderptitSeb2023-10-312-209/+125
|
* Do not try to get nearest function name if pointer is to smallptitSeb2023-10-101-0/+2
|
* [ANDROID] Remove PreInit Array Warning and Fix libdl name (#1001)KreitinnSoftware2023-10-011-2/+4
|
* Better handling of tls for elf loaded with dlopen (should fix a bunch of stuff)ptitSeb2023-09-161-10/+9
|