mirror of
https://github.com/etaHEN/etaHEN.git
synced 2026-01-12 19:25:33 +08:00
etaHEN 2.4B etaHEN 2.4B Change log - Updated to support the latest PS5 Payload SDK - Fixed etaHEN and Cheats support for 8.40-10.01 - Added a Game Overlay menu to show CPU/GPU Temp and utilization, Local IP Address and other future states - Added a Kstuff menu for options like downloading the latest kstuff from github, turning off kstufff autoload and more - Added a Custom Background Package Installer for installing PKGs from internal storage from any directory (Requires DPIv2 enabled for 5.50+) - DPIv2 can now download local files via url example http://192.xxx.xxx.xxx:12800/data/etaHEN/etaHEN.log - Improved Cheats support, cheats with or without 0 sections are now supported - Added Fix by TheFlow to Improve 2.xx PS4 PKG speeds - Replaced the donation links in the etaHEN credits menu with ones to github sponsers - Removed the non-whitelist app jailbreak option and moved it to an optional Legacy CMD Server option in the etaHEN Settings off by default - Game Decryptor has been updated for the Itemzflow Dumper - Updated the Plugin loader System - The Payload SDK ELFLDR is now REQUIRED for etaHEN to load - Replaced HTTP2 with Curl for better compatibility - Added timeout for ShellUI to receive a response (will stop it from freezing if no response is given) small fix
20 lines
851 B
C
20 lines
851 B
C
#include <sys/types.h>
|
|
#include <sys/elf64.h>
|
|
|
|
// errors only
|
|
#define SELF_PAGER_DO_LOGGING 1
|
|
|
|
// these return the same values as mmap, but errno may be ENOSYS if the current firmware is not supported
|
|
void *mmap_self(void *addr, size_t len, int prot, int flags, int fd, off_t offset);
|
|
void *map_self_segment(int fd, Elf64_Phdr *phdr, int segment_index);
|
|
|
|
// these are the return values for decrypt_self
|
|
#define DECRYPT_ERROR_IO -2
|
|
#define DECRYPT_ERROR_INTERNAL -3
|
|
#define DECRYPT_ERROR_UNSUPPORTED_FW -4
|
|
#define DECRYPT_ERROR_INPUT_NOT_SELF -5
|
|
// this happens if you try to decrypt an fself or a self with unavailable keys
|
|
#define DECRYPT_ERROR_FAILED_TO_DECRYPT_SEGMENT_DATA -6
|
|
|
|
// on success returns a pointer to the decrypted elf in out_data, you must free this with munmap
|
|
int decrypt_self(int input_file_fd, char **out_data, uint64_t *out_size); |