Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ac67488255 | |||
| 1375549216 | |||
| 19056bed0d | |||
| 8dfe04d005 | |||
| 6bdb04a925 | |||
| 9ccde2618b | |||
| ce58ec89ef | |||
| 5b1ac8533d | |||
| e554c8e57b | |||
| be445e6db9 | |||
| 6279bb573d | |||
| eb38894de5 | |||
| 2612ad2212 |
@ -1,5 +1,5 @@
|
|||||||
### Games and regions
|
### Games and regions
|
||||||
- **3rd**: glb v6.7.0
|
- **3rd**: glb/sea/cn/tw/kr/jp v6.8.0
|
||||||
- **SR**: os/cn v1.2.0 (potentially unsafe, but no bans were reported since v1.1.0)
|
- **SR**: os/cn v1.2.0 (potentially unsafe, but no bans were reported since v1.1.0)
|
||||||
|
|
||||||
It may be possilbe to completely remove the region and version-specific data in the future. Refer to the source code in `game_payload/src` for details.
|
It may be possilbe to completely remove the region and version-specific data in the future. Refer to the source code in `game_payload/src` for details.
|
||||||
|
|||||||
Binary file not shown.
@ -6,6 +6,11 @@ enum game_id {
|
|||||||
GAME_INVALID,
|
GAME_INVALID,
|
||||||
|
|
||||||
GAME_HI3_GLB,
|
GAME_HI3_GLB,
|
||||||
|
GAME_HI3_SEA,
|
||||||
|
GAME_HI3_CN,
|
||||||
|
GAME_HI3_TW,
|
||||||
|
GAME_HI3_KR,
|
||||||
|
GAME_HI3_JP,
|
||||||
|
|
||||||
GAME_HSR_OS,
|
GAME_HSR_OS,
|
||||||
GAME_HSR_CN
|
GAME_HSR_CN
|
||||||
@ -18,7 +23,7 @@ typedef void (*unityplayer_callback_t)(HMODULE unityModule);
|
|||||||
struct game_data {
|
struct game_data {
|
||||||
enum game_id id; // Temporary
|
enum game_id id; // Temporary
|
||||||
const char *name;
|
const char *name;
|
||||||
const char *assembly_path;
|
const char *assembly_name;
|
||||||
const char *tp6_section_name; // Unused for now
|
const char *tp6_section_name; // Unused for now
|
||||||
const char *tvm_section_name;
|
const char *tvm_section_name;
|
||||||
|
|
||||||
|
|||||||
@ -15,13 +15,15 @@ sources = [
|
|||||||
'src/msg.c'
|
'src/msg.c'
|
||||||
]
|
]
|
||||||
resources = [
|
resources = [
|
||||||
'res/hi3/glb/allocations.dat',
|
'res/hi3/glb.dat',
|
||||||
'res/hi3/glb/entries.dat',
|
'res/hi3/sea.dat',
|
||||||
|
'res/hi3/cn.dat',
|
||||||
|
'res/hi3/tw.dat',
|
||||||
|
'res/hi3/kr.dat',
|
||||||
|
'res/hi3/jp.dat',
|
||||||
|
|
||||||
'res/hsr/os/allocations.dat',
|
'res/hsr/os.dat',
|
||||||
'res/hsr/os/entries.dat',
|
'res/hsr/cn.dat'
|
||||||
'res/hsr/cn/allocations.dat',
|
|
||||||
'res/hsr/cn/entries.dat'
|
|
||||||
]
|
]
|
||||||
|
|
||||||
# Generate resource files for ./res
|
# Generate resource files for ./res
|
||||||
|
|||||||
BIN
game_payload/res/hi3/cn.dat
Normal file
BIN
game_payload/res/hi3/cn.dat
Normal file
Binary file not shown.
BIN
game_payload/res/hi3/glb.dat
Normal file
BIN
game_payload/res/hi3/glb.dat
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
game_payload/res/hi3/jp.dat
Normal file
BIN
game_payload/res/hi3/jp.dat
Normal file
Binary file not shown.
BIN
game_payload/res/hi3/kr.dat
Normal file
BIN
game_payload/res/hi3/kr.dat
Normal file
Binary file not shown.
BIN
game_payload/res/hi3/sea.dat
Normal file
BIN
game_payload/res/hi3/sea.dat
Normal file
Binary file not shown.
BIN
game_payload/res/hi3/tw.dat
Normal file
BIN
game_payload/res/hi3/tw.dat
Normal file
Binary file not shown.
BIN
game_payload/res/hsr/cn.dat
Normal file
BIN
game_payload/res/hsr/cn.dat
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
game_payload/res/hsr/os.dat
Normal file
BIN
game_payload/res/hsr/os.dat
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -9,83 +9,75 @@ static void _dll_notification(ULONG reason, const PLDR_DLL_NOTIFICATION_DATA dat
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// context should be set to the target module name, lowercase
|
// context should be set to the target module name
|
||||||
wchar_t *targetModuleName = (wchar_t*)context;
|
wchar_t *targetModuleName = (wchar_t*)context;
|
||||||
|
|
||||||
wchar_t lwModuleName[MAX_PATH];
|
if (wcsicmp(targetModuleName, data->Loaded.BaseDllName->Buffer) != 0) {
|
||||||
wcscpy(lwModuleName, data->Loaded.BaseDllName->Buffer);
|
return;
|
||||||
_wcslwr(lwModuleName);
|
|
||||||
|
|
||||||
if (wcscmp(targetModuleName, lwModuleName) == 0) {
|
|
||||||
// Replace entry point with a stub
|
|
||||||
void *entryPoint = pe_find_entry_point(data->Loaded.DllBase);
|
|
||||||
|
|
||||||
const char ENTRY_POINT_STUB[] = {
|
|
||||||
0xB8, 0x01, 0x00, 0x00, 0x00, // mov eax, 1
|
|
||||||
0xC3 // ret
|
|
||||||
};
|
|
||||||
|
|
||||||
DWORD oldProtect;
|
|
||||||
VirtualProtect(entryPoint, sizeof(ENTRY_POINT_STUB), PAGE_EXECUTE_READWRITE, &oldProtect);
|
|
||||||
|
|
||||||
memcpy(entryPoint, ENTRY_POINT_STUB, sizeof(ENTRY_POINT_STUB));
|
|
||||||
|
|
||||||
VirtualProtect(entryPoint, sizeof(ENTRY_POINT_STUB), oldProtect, &oldProtect);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Replace entry point with a stub
|
||||||
|
void *entryPoint = pe_find_entry_point(data->Loaded.DllBase);
|
||||||
|
|
||||||
|
const char ENTRY_POINT_STUB[] = {
|
||||||
|
0xB8, 0x01, 0x00, 0x00, 0x00, // mov eax, 1
|
||||||
|
0xC3 // ret
|
||||||
|
};
|
||||||
|
|
||||||
|
DWORD oldProtect;
|
||||||
|
VirtualProtect(entryPoint, sizeof(ENTRY_POINT_STUB), PAGE_EXECUTE_READWRITE, &oldProtect);
|
||||||
|
|
||||||
|
memcpy(entryPoint, ENTRY_POINT_STUB, sizeof(ENTRY_POINT_STUB));
|
||||||
|
|
||||||
|
VirtualProtect(entryPoint, sizeof(ENTRY_POINT_STUB), oldProtect, &oldProtect);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
static void _create_driver_file(const char *path) {
|
||||||
|
// They only report presence
|
||||||
|
HANDLE file = CreateFileA(path, GENERIC_WRITE, FILE_SHARE_READ, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
|
||||||
|
|
||||||
|
if (file == INVALID_HANDLE_VALUE) {
|
||||||
|
msg_err_a("Could not create driver file: %s", path);
|
||||||
|
}
|
||||||
|
|
||||||
|
CloseHandle(file);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ace_fake_driver_files() {
|
void ace_fake_driver_files() {
|
||||||
// They only report presence
|
_create_driver_file("ACE-BASE.sys");
|
||||||
const char *wdDriverPath = "ACE-BASE.sys";
|
|
||||||
const char *s32DriverPath = "C:\\windows\\system32\\drivers\\ACE-BASE.sys";
|
|
||||||
|
|
||||||
HANDLE wdDriverFile = CreateFileA(wdDriverPath, GENERIC_WRITE, FILE_SHARE_READ, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
|
|
||||||
if (!wdDriverFile) {
|
|
||||||
msg_err_a("Could not create driver file: %s", wdDriverPath);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Just in case
|
// Just in case
|
||||||
HANDLE s32DriverFile = CreateFileA(s32DriverPath, GENERIC_WRITE, FILE_SHARE_READ, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
|
_create_driver_file("C:\\windows\\system32\\drivers\\ACE-BASE.sys");
|
||||||
if (!s32DriverFile) {
|
}
|
||||||
msg_err_a("Could not create driver file: %s", s32DriverPath);
|
|
||||||
|
static HMODULE _load_module_patched(wchar_t *path) {
|
||||||
|
// Get filename from the path
|
||||||
|
wchar_t *name = wcsrchr(path, '\\');
|
||||||
|
name = name ? name + 1 : path;
|
||||||
|
|
||||||
|
void *cookie;
|
||||||
|
LdrRegisterDllNotification(0, &_dll_notification, name, &cookie);
|
||||||
|
|
||||||
|
HMODULE module = LoadLibraryW(path);
|
||||||
|
if (!module) {
|
||||||
|
msg_err_w(L"Could not load module: %ls", path);
|
||||||
}
|
}
|
||||||
|
|
||||||
CloseHandle(wdDriverFile);
|
// LoadLibraryW is synchronous; the notification function has already finished executing
|
||||||
CloseHandle(s32DriverFile);
|
LdrUnregisterDllNotification(cookie);
|
||||||
|
|
||||||
|
return module;
|
||||||
}
|
}
|
||||||
|
|
||||||
HMODULE ace_load_base_module(const char *exeName) {
|
HMODULE ace_load_base_module(const char *exeName) {
|
||||||
wchar_t baseModuleName[MAX_PATH];
|
wchar_t baseModuleName[MAX_PATH];
|
||||||
swprintf(baseModuleName, MAX_PATH, L"%sbase.dll", exeName);
|
swprintf(baseModuleName, MAX_PATH, L"%sBase.dll", exeName);
|
||||||
wcslwr(baseModuleName);
|
wcslwr(baseModuleName);
|
||||||
|
|
||||||
void *cookie;
|
return _load_module_patched(baseModuleName);
|
||||||
LdrRegisterDllNotification(0, &_dll_notification, baseModuleName, &cookie);
|
|
||||||
|
|
||||||
HMODULE baseModule = LoadLibraryW(baseModuleName);
|
|
||||||
if (!baseModule) {
|
|
||||||
msg_err_w(L"Could not load base module: %ls", baseModuleName);
|
|
||||||
}
|
|
||||||
|
|
||||||
// LoadLibraryA is synchronous; the notification function has already finished executing
|
|
||||||
LdrUnregisterDllNotification(cookie);
|
|
||||||
|
|
||||||
return baseModule;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
HMODULE ace_load_driver_module() {
|
HMODULE ace_load_driver_module() {
|
||||||
const char *driverModulePath = "AntiCheatExpert/InGame/x64/ACE-DRV64.dll";
|
return _load_module_patched(L"AntiCheatExpert\\InGame\\x64\\ACE-DRV64.dll");
|
||||||
|
|
||||||
void *cookie;
|
|
||||||
LdrRegisterDllNotification(0, &_dll_notification, L"ace-drv64.dll", &cookie);
|
|
||||||
|
|
||||||
HMODULE driverModule = LoadLibraryA(driverModulePath);
|
|
||||||
if (!driverModule) {
|
|
||||||
msg_err_a("Could not load driver module: %s", driverModulePath);
|
|
||||||
}
|
|
||||||
|
|
||||||
// LoadLibraryA is synchronous; the notification function has already finished executing
|
|
||||||
LdrUnregisterDllNotification(cookie);
|
|
||||||
|
|
||||||
return driverModule;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -12,3 +12,7 @@
|
|||||||
|
|
||||||
### 1.1.11
|
### 1.1.11
|
||||||
- Fixed an additional issue introduced in 1.1.9
|
- Fixed an additional issue introduced in 1.1.9
|
||||||
|
|
||||||
|
### 2.0.0
|
||||||
|
- Almost a full rewrite, functionality unchanged
|
||||||
|
- Added support for HI3 sea/cn/tw/jp/kr
|
||||||
|
|||||||
@ -4,7 +4,7 @@
|
|||||||
#include <game.h>
|
#include <game.h>
|
||||||
|
|
||||||
const char *HI3_NAME = "BH3";
|
const char *HI3_NAME = "BH3";
|
||||||
const char *HI3_ASSEMBLY_PATH = "BH3_Data/Native/UserAssembly.dll";
|
const char *HI3_ASSEMBLY_NAME = "UserAssembly.dll";
|
||||||
const char *HI3_TP6_SECTION_NAME = ".bh3";
|
const char *HI3_TP6_SECTION_NAME = ".bh3";
|
||||||
const char *HI3_TVM_SECTION_NAME = ".tvm0";
|
const char *HI3_TVM_SECTION_NAME = ".tvm0";
|
||||||
|
|
||||||
@ -14,10 +14,14 @@ struct crc_id_pair {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const struct crc_id_pair HI3_REGIONS[] = {
|
const struct crc_id_pair HI3_REGIONS[] = {
|
||||||
// Only glb for now
|
|
||||||
// It may be possible to get rid of region-specific data altogether in the future
|
// It may be possible to get rid of region-specific data altogether in the future
|
||||||
|
|
||||||
{ 0x45221647, GAME_HI3_GLB } // glb v6.7.0
|
{ 0xcb8041ff, GAME_HI3_GLB }, // glb v6.8.0
|
||||||
|
{ 0x104cbfc5, GAME_HI3_SEA }, // sea v6.8.0
|
||||||
|
{ 0x2efd9099, GAME_HI3_CN }, // cn v6.8.0
|
||||||
|
{ 0x30fa5b0f, GAME_HI3_TW }, // tw v6.8.0
|
||||||
|
{ 0xe47327fb, GAME_HI3_KR }, // kr v6.8.0
|
||||||
|
{ 0x992b6b63, GAME_HI3_JP } // jp v6.8.0
|
||||||
};
|
};
|
||||||
|
|
||||||
void hi3_fill_data(struct game_data *buf) {
|
void hi3_fill_data(struct game_data *buf) {
|
||||||
@ -36,7 +40,7 @@ void hi3_fill_data(struct game_data *buf) {
|
|||||||
|
|
||||||
buf->id = id;
|
buf->id = id;
|
||||||
buf->name = HI3_NAME;
|
buf->name = HI3_NAME;
|
||||||
buf->assembly_path = HI3_ASSEMBLY_PATH;
|
buf->assembly_name = HI3_ASSEMBLY_NAME;
|
||||||
buf->tp6_section_name = HI3_TP6_SECTION_NAME;
|
buf->tp6_section_name = HI3_TP6_SECTION_NAME;
|
||||||
buf->tvm_section_name = HI3_TVM_SECTION_NAME;
|
buf->tvm_section_name = HI3_TVM_SECTION_NAME;
|
||||||
|
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
#include <game.h>
|
#include <game.h>
|
||||||
|
|
||||||
const char *HSR_NAME = "StarRail";
|
const char *HSR_NAME = "StarRail";
|
||||||
const char *HSR_ASSEMBLY_PATH = "GameAssembly.dll";
|
const char *HSR_ASSEMBLY_NAME = "GameAssembly.dll";
|
||||||
const char *HSR_TP6_SECTION_NAME = ".ace";
|
const char *HSR_TP6_SECTION_NAME = ".ace";
|
||||||
const char *HSR_TVM_SECTION_NAME = ".tvm0";
|
const char *HSR_TVM_SECTION_NAME = ".tvm0";
|
||||||
|
|
||||||
@ -86,7 +86,7 @@ void hsr_fill_data(struct game_data *buf) {
|
|||||||
|
|
||||||
buf->id = id;
|
buf->id = id;
|
||||||
buf->name = HSR_NAME;
|
buf->name = HSR_NAME;
|
||||||
buf->assembly_path = HSR_ASSEMBLY_PATH;
|
buf->assembly_name = HSR_ASSEMBLY_NAME;
|
||||||
buf->tp6_section_name = HSR_TP6_SECTION_NAME;
|
buf->tp6_section_name = HSR_TP6_SECTION_NAME;
|
||||||
buf->tvm_section_name = HSR_TVM_SECTION_NAME;
|
buf->tvm_section_name = HSR_TVM_SECTION_NAME;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
project('jadeite', 'c', version: '1.1.13')
|
project('jadeite', 'c', version: '2.0.1')
|
||||||
|
|
||||||
nasm = find_program('nasm')
|
nasm = find_program('nasm')
|
||||||
gen_res = find_program('gen_resources.sh')
|
gen_res = find_program('gen_resources.sh')
|
||||||
|
|||||||
@ -1,12 +1,32 @@
|
|||||||
{
|
{
|
||||||
"jadeite": {
|
"jadeite": {
|
||||||
"version": "1.1.13"
|
"version": "2.0.1"
|
||||||
},
|
},
|
||||||
"games": {
|
"games": {
|
||||||
"hi3rd": {
|
"hi3rd": {
|
||||||
"global": {
|
"global": {
|
||||||
"status": "verified",
|
"status": "verified",
|
||||||
"version": "6.7.0"
|
"version": "6.8.0"
|
||||||
|
},
|
||||||
|
"sea": {
|
||||||
|
"status": "verified",
|
||||||
|
"version": "6.8.0"
|
||||||
|
},
|
||||||
|
"china": {
|
||||||
|
"status": "verified",
|
||||||
|
"version": "6.8.0"
|
||||||
|
},
|
||||||
|
"taiwan": {
|
||||||
|
"status": "verified",
|
||||||
|
"version": "6.8.0"
|
||||||
|
},
|
||||||
|
"korea": {
|
||||||
|
"status": "verified",
|
||||||
|
"version": "6.8.0"
|
||||||
|
},
|
||||||
|
"japan": {
|
||||||
|
"status": "verified",
|
||||||
|
"version": "6.8.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"hsr": {
|
"hsr": {
|
||||||
|
|||||||
Reference in New Issue
Block a user