2019-04-14 00:21:56 +08:00
/* Copyright (C) 2019 Mr Goldberg
This file is part of the Goldberg Emulator
The Goldberg Emulator is free software ; you can redistribute it and / or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation ; either
version 3 of the License , or ( at your option ) any later version .
The Goldberg Emulator is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
Lesser General Public License for more details .
You should have received a copy of the GNU Lesser General Public
License along with the Goldberg Emulator ; if not , see
< http : //www.gnu.org/licenses/>. */
2023-12-27 15:21:59 +08:00
# include "dll/base.h"
2024-06-08 00:55:30 +08:00
# include "dll/settings_parser.h"
2024-06-29 11:49:53 +08:00
# ifndef EMU_RELEASE_BUILD
# include "dbg_log/dbg_log.hpp"
# endif
2019-04-14 00:21:56 +08:00
2024-05-03 06:29:57 +08:00
std : : recursive_mutex global_mutex { } ;
// some arbitrary counter/time for reference
const std : : chrono : : time_point < std : : chrono : : high_resolution_clock > startup_counter = std : : chrono : : high_resolution_clock : : now ( ) ;
const std : : chrono : : time_point < std : : chrono : : system_clock > startup_time = std : : chrono : : system_clock : : now ( ) ;
2024-06-29 11:49:53 +08:00
# ifndef EMU_RELEASE_BUILD
2024-08-18 08:03:51 +08:00
dbg_log dbg_logger ( get_full_program_path ( ) + " STEAM_LOG_ " + std : : to_string ( common_helpers : : rand_number ( UINT32_MAX ) ) + " .log " ) ;
2024-06-29 11:49:53 +08:00
# endif
2024-05-03 06:29:57 +08:00
2020-07-16 17:56:24 +08:00
# ifdef __WINDOWS__
2019-04-14 00:21:56 +08:00
2023-12-22 15:04:25 +08:00
void randombytes ( char * buf , size_t size )
2019-04-14 00:21:56 +08:00
{
2023-12-14 10:29:42 +08:00
// NT_SUCCESS is: return value >= 0, including Ntdef.h causes so many errors
while ( BCryptGenRandom ( NULL , ( PUCHAR ) buf , ( ULONG ) size , BCRYPT_USE_SYSTEM_PREFERRED_RNG ) < 0 ) {
2024-04-06 13:49:07 +08:00
PRINT_DEBUG ( " ERROR " ) ;
2022-01-26 04:49:26 +08:00
Sleep ( 100 ) ;
}
2023-12-20 10:13:31 +08:00
2019-04-14 00:21:56 +08:00
}
2024-03-23 01:31:24 +08:00
std : : string get_env_variable ( const std : : string & name )
2019-04-14 00:21:56 +08:00
{
2024-01-25 23:06:45 +08:00
wchar_t env_variable [ 1024 ] { } ;
2021-04-26 00:44:41 +08:00
DWORD ret = GetEnvironmentVariableW ( utf8_decode ( name ) . c_str ( ) , env_variable , _countof ( env_variable ) ) ;
2024-01-25 23:06:45 +08:00
if ( ret < = 0 | | ! env_variable [ 0 ] ) {
2019-04-14 00:21:56 +08:00
return std : : string ( ) ;
}
2019-05-09 20:10:03 +08:00
env_variable [ ret ] = 0 ;
2021-04-26 00:44:41 +08:00
return utf8_encode ( env_variable ) ;
2019-04-14 00:21:56 +08:00
}
2024-03-23 01:31:24 +08:00
bool set_env_variable ( const std : : string & name , const std : : string & value )
2022-05-30 03:45:39 +08:00
{
return SetEnvironmentVariableW ( utf8_decode ( name ) . c_str ( ) , utf8_decode ( value ) . c_str ( ) ) ;
}
2019-04-14 00:21:56 +08:00
# else
static int fd = - 1 ;
2023-12-22 15:04:25 +08:00
void randombytes ( char * buf , size_t size )
2019-04-14 00:21:56 +08:00
{
int i ;
if ( fd = = - 1 ) {
for ( ; ; ) {
fd = open ( " /dev/urandom " , O_RDONLY ) ;
if ( fd ! = - 1 ) break ;
sleep ( 1 ) ;
}
}
while ( size > 0 ) {
if ( size < 1048576 ) i = size ; else i = 1048576 ;
i = read ( fd , buf , i ) ;
if ( i < 1 ) {
sleep ( 1 ) ;
continue ;
}
buf + = i ;
size - = i ;
}
}
2024-03-23 01:31:24 +08:00
std : : string get_env_variable ( const std : : string & name )
2019-04-14 00:21:56 +08:00
{
char * env = getenv ( name . c_str ( ) ) ;
if ( ! env ) {
return std : : string ( ) ;
}
return std : : string ( env ) ;
}
2024-03-23 01:31:24 +08:00
bool set_env_variable ( const std : : string & name , const std : : string & value )
2022-05-30 03:45:39 +08:00
{
return setenv ( name . c_str ( ) , value . c_str ( ) , 1 ) = = 0 ;
}
2019-04-14 00:21:56 +08:00
# endif
2023-12-20 10:13:31 +08:00
2023-12-22 15:04:25 +08:00
unsigned generate_account_id ( )
{
2019-04-14 00:21:56 +08:00
int a ;
randombytes ( ( char * ) & a , sizeof ( a ) ) ;
2023-12-22 15:04:25 +08:00
a = abs ( a ) ;
if ( ! a ) + + a ;
2019-04-14 00:21:56 +08:00
return a ;
}
2023-12-22 15:04:25 +08:00
CSteamID generate_steam_anon_user ( )
{
return CSteamID ( generate_account_id ( ) , k_unSteamUserDefaultInstance , k_EUniversePublic , k_EAccountTypeAnonUser ) ;
2019-04-14 00:21:56 +08:00
}
2023-12-22 15:04:25 +08:00
SteamAPICall_t generate_steam_api_call_id ( ) {
static SteamAPICall_t a ;
2024-03-23 01:31:24 +08:00
std : : lock_guard < std : : recursive_mutex > lock ( global_mutex ) ;
2019-04-14 00:21:56 +08:00
randombytes ( ( char * ) & a , sizeof ( a ) ) ;
2023-12-22 15:04:25 +08:00
+ + a ;
if ( a = = 0 ) + + a ;
2019-04-14 00:21:56 +08:00
return a ;
}
CSteamID generate_steam_id_user ( )
{
2019-12-10 01:49:55 +08:00
return CSteamID ( generate_account_id ( ) , k_unSteamUserDefaultInstance , k_EUniversePublic , k_EAccountTypeIndividual ) ;
2019-04-14 00:21:56 +08:00
}
CSteamID generate_steam_id_server ( )
{
2019-12-10 01:49:55 +08:00
return CSteamID ( generate_account_id ( ) , k_unSteamUserDefaultInstance , k_EUniversePublic , k_EAccountTypeGameServer ) ;
2019-04-14 00:21:56 +08:00
}
CSteamID generate_steam_id_anonserver ( )
{
2019-12-10 01:49:55 +08:00
return CSteamID ( generate_account_id ( ) , k_unSteamUserDefaultInstance , k_EUniversePublic , k_EAccountTypeAnonGameServer ) ;
2019-04-14 00:21:56 +08:00
}
CSteamID generate_steam_id_lobby ( )
{
2022-05-21 12:37:48 +08:00
return CSteamID ( generate_account_id ( ) , k_EChatInstanceFlagLobby | k_EChatInstanceFlagMMSLobby , k_EUniversePublic , k_EAccountTypeChat ) ;
2019-04-14 00:21:56 +08:00
}
2020-07-16 17:56:24 +08:00
bool check_timedout ( std : : chrono : : high_resolution_clock : : time_point old , double timeout )
{
if ( timeout = = 0.0 ) return true ;
std : : chrono : : high_resolution_clock : : time_point now = std : : chrono : : high_resolution_clock : : now ( ) ;
if ( std : : chrono : : duration_cast < std : : chrono : : duration < double > > ( now - old ) . count ( ) > timeout ) {
return true ;
}
return false ;
}
# ifdef __LINUX__
2019-04-14 00:21:56 +08:00
std : : string get_lib_path ( ) {
std : : string dir = " /proc/self/map_files " ;
DIR * dp ;
int i = 0 ;
struct dirent * ep ;
dp = opendir ( dir . c_str ( ) ) ;
2019-10-17 01:31:46 +08:00
uintptr_t p = ( uintptr_t ) & get_lib_path ;
2019-04-14 00:21:56 +08:00
if ( dp ! = NULL )
{
while ( ( ep = readdir ( dp ) ) ) {
if ( memcmp ( ep - > d_name , " . " , 2 ) ! = 0 & & memcmp ( ep - > d_name , " .. " , 3 ) ! = 0 ) {
char * upper = NULL ;
2019-10-17 01:31:46 +08:00
uintptr_t lower_bound = strtoull ( ep - > d_name , & upper , 16 ) ;
2019-04-14 00:21:56 +08:00
if ( lower_bound ) {
+ + upper ;
2019-10-17 01:31:46 +08:00
uintptr_t upper_bound = strtoull ( upper , & upper , 16 ) ;
2019-04-14 00:21:56 +08:00
if ( upper_bound & & ( lower_bound < p & & p < upper_bound ) ) {
std : : string path = dir + PATH_SEPARATOR + ep - > d_name ;
char link [ PATH_MAX ] = { } ;
if ( readlink ( path . c_str ( ) , link , sizeof ( link ) ) > 0 ) {
std : : string lib_path = link ;
( void ) closedir ( dp ) ;
return link ;
}
}
}
i + + ;
}
}
( void ) closedir ( dp ) ;
}
return " . " ;
}
# endif
2020-06-21 09:14:37 +08:00
std : : string get_full_lib_path ( )
{
std : : string program_path ;
2020-07-16 17:56:24 +08:00
# if defined(__WINDOWS__)
2021-04-26 00:44:41 +08:00
wchar_t DllPath [ 2048 ] = { 0 } ;
GetModuleFileNameW ( ( HINSTANCE ) & __ImageBase , DllPath , _countof ( DllPath ) ) ;
program_path = utf8_encode ( DllPath ) ;
2020-06-21 09:14:37 +08:00
# else
program_path = get_lib_path ( ) ;
# endif
return program_path ;
}
2019-04-14 00:21:56 +08:00
std : : string get_full_program_path ( )
{
2024-04-17 04:58:05 +08:00
std : : string env_program_path = get_env_variable ( " GseAppPath " ) ;
2020-01-14 02:47:14 +08:00
if ( env_program_path . length ( ) ) {
if ( env_program_path . back ( ) ! = PATH_SEPARATOR [ 0 ] ) {
env_program_path = env_program_path . append ( PATH_SEPARATOR ) ;
}
return env_program_path ;
}
2024-01-25 23:06:45 +08:00
std : : string program_path { } ;
2020-06-21 09:14:37 +08:00
program_path = get_full_lib_path ( ) ;
return program_path . substr ( 0 , program_path . rfind ( PATH_SEPARATOR ) ) . append ( PATH_SEPARATOR ) ;
2019-04-14 00:21:56 +08:00
}
2019-05-09 20:10:03 +08:00
std : : string get_current_path ( )
{
std : : string path ;
# if defined(STEAM_WIN32)
char * buffer = _getcwd ( NULL , 0 ) ;
# else
char * buffer = get_current_dir_name ( ) ;
# endif
if ( buffer ) {
path = buffer ;
path . append ( PATH_SEPARATOR ) ;
free ( buffer ) ;
}
return path ;
}
2024-04-10 01:10:04 +08:00
std : : string canonical_path ( const std : : string & path )
2019-05-09 20:10:03 +08:00
{
std : : string output ;
# if defined(STEAM_WIN32)
2021-04-26 00:44:41 +08:00
wchar_t * buffer = _wfullpath ( NULL , utf8_decode ( path ) . c_str ( ) , 0 ) ;
if ( buffer ) {
output = utf8_encode ( buffer ) ;
free ( buffer ) ;
}
2019-05-09 20:10:03 +08:00
# else
char * buffer = canonicalize_file_name ( path . c_str ( ) ) ;
if ( buffer ) {
output = buffer ;
free ( buffer ) ;
}
2021-04-26 00:44:41 +08:00
# endif
2019-05-09 20:10:03 +08:00
return output ;
}
2024-04-10 01:10:04 +08:00
bool file_exists_ ( const std : : string & full_path )
2021-09-19 13:07:19 +08:00
{
# if defined(STEAM_WIN32)
2024-04-10 01:10:04 +08:00
struct _stat buffer { } ;
2021-09-19 13:07:19 +08:00
if ( _wstat ( utf8_decode ( full_path ) . c_str ( ) , & buffer ) ! = 0 )
return false ;
2024-05-22 10:29:20 +08:00
if ( buffer . st_mode & S_IFDIR )
2021-09-19 13:07:19 +08:00
return false ;
# else
2024-04-10 01:10:04 +08:00
struct stat buffer { } ;
2021-09-19 13:07:19 +08:00
if ( stat ( full_path . c_str ( ) , & buffer ) ! = 0 )
return false ;
if ( S_ISDIR ( buffer . st_mode ) )
return false ;
# endif
return true ;
}
2024-04-10 01:10:04 +08:00
unsigned int file_size_ ( const std : : string & full_path )
2021-09-19 13:07:19 +08:00
{
# if defined(STEAM_WIN32)
2024-04-10 01:10:04 +08:00
struct _stat buffer { } ;
2021-09-19 13:07:19 +08:00
if ( _wstat ( utf8_decode ( full_path ) . c_str ( ) , & buffer ) ! = 0 ) return 0 ;
# else
2024-04-10 01:10:04 +08:00
struct stat buffer { } ;
2021-09-19 13:07:19 +08:00
if ( stat ( full_path . c_str ( ) , & buffer ) ! = 0 ) return 0 ;
# endif
return buffer . st_size ;
}
2024-06-08 00:55:30 +08:00
2019-04-14 00:21:56 +08:00
# ifdef EMU_EXPERIMENTAL_BUILD
2020-07-16 17:56:24 +08:00
# ifdef __WINDOWS__
2019-04-14 00:21:56 +08:00
2020-05-01 01:36:59 +08:00
struct ips_test {
uint32_t ip_from ;
uint32_t ip_to ;
} ;
2022-05-01 10:23:42 +08:00
static std : : vector < struct ips_test > whitelist_ips ;
2020-05-01 01:36:59 +08:00
2022-05-01 10:23:42 +08:00
void set_whitelist_ips ( uint32_t * from , uint32_t * to , unsigned num_ips )
2020-05-01 01:36:59 +08:00
{
2022-05-01 10:23:42 +08:00
whitelist_ips . clear ( ) ;
2020-05-01 01:36:59 +08:00
for ( unsigned i = 0 ; i < num_ips ; + + i ) {
struct ips_test ip_a ;
2024-04-06 13:49:07 +08:00
PRINT_DEBUG ( " from: %hhu.%hhu.%hhu.%hhu " , ( ( unsigned char * ) & from [ i ] ) [ 0 ] , ( ( unsigned char * ) & from [ i ] ) [ 1 ] , ( ( unsigned char * ) & from [ i ] ) [ 2 ] , ( ( unsigned char * ) & from [ i ] ) [ 3 ] ) ;
PRINT_DEBUG ( " to: %hhu.%hhu.%hhu.%hhu " , ( ( unsigned char * ) & to [ i ] ) [ 0 ] , ( ( unsigned char * ) & to [ i ] ) [ 1 ] , ( ( unsigned char * ) & to [ i ] ) [ 2 ] , ( ( unsigned char * ) & to [ i ] ) [ 3 ] ) ;
2020-05-01 01:36:59 +08:00
ip_a . ip_from = ntohl ( from [ i ] ) ;
ip_a . ip_to = ntohl ( to [ i ] ) ;
if ( ip_a . ip_to < ip_a . ip_from ) continue ;
if ( ( ip_a . ip_to - ip_a . ip_from ) > ( 1 < < 25 ) ) continue ;
2024-04-06 13:49:07 +08:00
PRINT_DEBUG ( " added ip to whitelist " ) ;
2022-05-01 10:23:42 +08:00
whitelist_ips . push_back ( ip_a ) ;
2020-05-01 01:36:59 +08:00
}
}
2022-05-01 10:23:42 +08:00
static bool is_whitelist_ip ( unsigned char * ip )
2020-05-01 01:36:59 +08:00
{
uint32_t ip_temp = 0 ;
memcpy ( & ip_temp , ip , sizeof ( ip_temp ) ) ;
ip_temp = ntohl ( ip_temp ) ;
2022-05-01 10:23:42 +08:00
for ( auto & i : whitelist_ips ) {
2020-05-01 01:36:59 +08:00
if ( i . ip_from < = ip_temp & & ip_temp < = i . ip_to ) {
2024-04-06 13:49:07 +08:00
PRINT_DEBUG ( " IP IS WHITELISTED %hhu.%hhu.%hhu.%hhu " , ip [ 0 ] , ip [ 1 ] , ip [ 2 ] , ip [ 3 ] ) ;
2020-05-01 01:36:59 +08:00
return true ;
}
}
return false ;
}
2022-08-14 02:36:34 +08:00
static bool is_lan_ipv4 ( unsigned char * ip )
{
2024-04-06 13:49:07 +08:00
PRINT_DEBUG ( " CHECK LAN IP %hhu.%hhu.%hhu.%hhu " , ip [ 0 ] , ip [ 1 ] , ip [ 2 ] , ip [ 3 ] ) ;
2022-08-14 02:36:34 +08:00
if ( is_whitelist_ip ( ip ) ) return true ;
if ( ip [ 0 ] = = 127 ) return true ;
if ( ip [ 0 ] = = 10 ) return true ;
if ( ip [ 0 ] = = 192 & & ip [ 1 ] = = 168 ) return true ;
if ( ip [ 0 ] = = 169 & & ip [ 1 ] = = 254 & & ip [ 2 ] ! = 0 ) return true ;
if ( ip [ 0 ] = = 172 & & ip [ 1 ] > = 16 & & ip [ 1 ] < = 31 ) return true ;
if ( ( ip [ 0 ] = = 100 ) & & ( ( ip [ 1 ] & 0xC0 ) = = 0x40 ) ) return true ;
if ( ip [ 0 ] = = 239 ) return true ; //multicast
if ( ip [ 0 ] = = 0 ) return true ; //Current network
if ( ip [ 0 ] = = 192 & & ( ip [ 1 ] = = 18 | | ip [ 1 ] = = 19 ) ) return true ; //Used for benchmark testing of inter-network communications between two separate subnets.
if ( ip [ 0 ] > = 224 ) return true ; //ip multicast (224 - 239) future use (240.0.0.0 - 255.255.255.254) broadcast (255.255.255.255)
return false ;
}
2019-04-14 00:21:56 +08:00
static bool is_lan_ip ( const sockaddr * addr , int namelen )
{
if ( ! namelen ) return false ;
if ( addr - > sa_family = = AF_INET ) {
struct sockaddr_in * addr_in = ( struct sockaddr_in * ) addr ;
unsigned char ip [ 4 ] ;
memcpy ( ip , & addr_in - > sin_addr , sizeof ( ip ) ) ;
2022-08-14 02:36:34 +08:00
if ( is_lan_ipv4 ( ip ) ) return true ;
2019-04-14 00:21:56 +08:00
} else if ( addr - > sa_family = = AF_INET6 ) {
struct sockaddr_in6 * addr_in6 = ( struct sockaddr_in6 * ) addr ;
unsigned char ip [ 16 ] ;
unsigned char zeroes [ 16 ] = { } ;
memcpy ( ip , & addr_in6 - > sin6_addr , sizeof ( ip ) ) ;
2024-04-06 13:49:07 +08:00
PRINT_DEBUG ( " CHECK LAN IP6 %hhu.%hhu.%hhu.%hhu.%hhu.%hhu.%hhu.%hhu.%hhu.%hhu.%hhu.%hhu.%hhu.%hhu.%hhu.%hhu " , ip [ 0 ] , ip [ 1 ] , ip [ 2 ] , ip [ 3 ] , ip [ 4 ] , ip [ 5 ] , ip [ 6 ] , ip [ 7 ] , ip [ 8 ] , ip [ 9 ] , ip [ 10 ] , ip [ 11 ] , ip [ 12 ] , ip [ 13 ] , ip [ 14 ] , ip [ 15 ] ) ;
2019-04-14 00:21:56 +08:00
if ( ( ( ip [ 0 ] = = 0xFF ) & & ( ip [ 1 ] < 3 ) & & ( ip [ 15 ] = = 1 ) ) | |
( ( ip [ 0 ] = = 0xFE ) & & ( ( ip [ 1 ] & 0xC0 ) = = 0x80 ) ) ) return true ;
if ( memcmp ( zeroes , ip , sizeof ( ip ) ) = = 0 ) return true ;
if ( memcmp ( zeroes , ip , sizeof ( ip ) - 1 ) = = 0 & & ip [ 15 ] = = 1 ) return true ;
if ( ip [ 0 ] = = 0xff ) return true ; //multicast
if ( ip [ 0 ] = = 0xfc ) return true ; //unique local
if ( ip [ 0 ] = = 0xfd ) return true ; //unique local
2022-08-14 02:36:34 +08:00
unsigned char ipv4_mapped [ 12 ] = { } ;
ipv4_mapped [ 10 ] = 0xFF ;
ipv4_mapped [ 11 ] = 0xFF ;
if ( memcmp ( ipv4_mapped , ip , sizeof ( ipv4_mapped ) ) = = 0 ) {
if ( is_lan_ipv4 ( ip + 12 ) ) return true ;
}
2019-04-14 00:21:56 +08:00
}
2024-04-06 13:49:07 +08:00
PRINT_DEBUG ( " NOT LAN IP " ) ;
2019-04-14 00:21:56 +08:00
return false ;
}
int ( WINAPI * Real_SendTo ) ( SOCKET s , const char * buf , int len , int flags , const sockaddr * to , int tolen ) = sendto ;
int ( WINAPI * Real_Connect ) ( SOCKET s , const sockaddr * addr , int namelen ) = connect ;
int ( WINAPI * Real_WSAConnect ) ( SOCKET s , const sockaddr * addr , int namelen , LPWSABUF lpCallerData , LPWSABUF lpCalleeData , LPQOS lpSQOS , LPQOS lpGQOS ) = WSAConnect ;
2024-04-06 13:49:07 +08:00
static int WINAPI Mine_SendTo ( SOCKET s , const char * buf , int len , int flags , const sockaddr * to , int tolen )
{
PRINT_DEBUG_ENTRY ( ) ;
2019-04-14 00:21:56 +08:00
if ( is_lan_ip ( to , tolen ) ) {
return Real_SendTo ( s , buf , len , flags , to , tolen ) ;
} else {
return len ;
}
}
static int WINAPI Mine_Connect ( SOCKET s , const sockaddr * addr , int namelen )
{
2024-04-06 13:49:07 +08:00
PRINT_DEBUG_ENTRY ( ) ;
2019-04-14 00:21:56 +08:00
if ( is_lan_ip ( addr , namelen ) ) {
return Real_Connect ( s , addr , namelen ) ;
} else {
WSASetLastError ( WSAECONNREFUSED ) ;
return SOCKET_ERROR ;
}
}
static int WINAPI Mine_WSAConnect ( SOCKET s , const sockaddr * addr , int namelen , LPWSABUF lpCallerData , LPWSABUF lpCalleeData , LPQOS lpSQOS , LPQOS lpGQOS )
{
2024-04-06 13:49:07 +08:00
PRINT_DEBUG_ENTRY ( ) ;
2019-04-14 00:21:56 +08:00
if ( is_lan_ip ( addr , namelen ) ) {
return Real_WSAConnect ( s , addr , namelen , lpCallerData , lpCalleeData , lpSQOS , lpGQOS ) ;
} else {
WSASetLastError ( WSAECONNREFUSED ) ;
return SOCKET_ERROR ;
}
}
2024-04-20 06:52:29 +08:00
inline bool file_exists ( const std : : string & name )
{
2019-04-14 00:21:56 +08:00
struct stat buffer ;
return ( stat ( name . c_str ( ) , & buffer ) = = 0 ) ;
}
2022-08-05 14:06:42 +08:00
# ifdef DETOURS_64BIT
# define DLL_NAME "steam_api64.dll"
# else
# define DLL_NAME "steam_api.dll"
# endif
2019-04-14 00:21:56 +08:00
HMODULE ( WINAPI * Real_GetModuleHandleA ) ( LPCSTR lpModuleName ) = GetModuleHandleA ;
HMODULE WINAPI Mine_GetModuleHandleA ( LPCSTR lpModuleName )
{
2024-04-06 13:49:07 +08:00
PRINT_DEBUG ( " %s " , lpModuleName ) ;
2019-04-14 00:21:56 +08:00
if ( ! lpModuleName ) return Real_GetModuleHandleA ( lpModuleName ) ;
std : : string in ( lpModuleName ) ;
if ( in = = std : : string ( DLL_NAME ) ) {
in = std : : string ( " crack " ) + in ;
}
return Real_GetModuleHandleA ( in . c_str ( ) ) ;
}
static void redirect_crackdll ( )
{
DetourTransactionBegin ( ) ;
DetourUpdateThread ( GetCurrentThread ( ) ) ;
2024-05-24 10:51:59 +08:00
DetourAttach ( reinterpret_cast < PVOID * > ( & Real_GetModuleHandleA ) , reinterpret_cast < PVOID > ( Mine_GetModuleHandleA ) ) ;
2019-04-14 00:21:56 +08:00
DetourTransactionCommit ( ) ;
}
static void unredirect_crackdll ( )
{
DetourTransactionBegin ( ) ;
DetourUpdateThread ( GetCurrentThread ( ) ) ;
2024-05-24 10:51:59 +08:00
DetourDetach ( reinterpret_cast < PVOID * > ( & Real_GetModuleHandleA ) , reinterpret_cast < PVOID > ( Mine_GetModuleHandleA ) ) ;
2019-04-14 00:21:56 +08:00
DetourTransactionCommit ( ) ;
}
2024-04-20 06:52:29 +08:00
HMODULE crack_dll_handle { } ;
static void load_crack_dll ( )
2019-04-14 00:21:56 +08:00
{
2024-04-20 06:52:29 +08:00
std : : string path ( get_full_program_path ( ) + " crack " + DLL_NAME ) ;
PRINT_DEBUG ( " searching for crack file '%s' " , path . c_str ( ) ) ;
2019-04-14 00:21:56 +08:00
if ( file_exists ( path ) ) {
redirect_crackdll ( ) ;
2021-04-26 00:44:41 +08:00
crack_dll_handle = LoadLibraryW ( utf8_decode ( path ) . c_str ( ) ) ;
2019-04-14 00:21:56 +08:00
unredirect_crackdll ( ) ;
2024-04-06 13:49:07 +08:00
PRINT_DEBUG ( " Loaded crack file " ) ;
2019-04-14 00:21:56 +08:00
}
}
2023-12-27 15:21:59 +08:00
# include "dll/local_storage.h"
2020-12-26 10:00:36 +08:00
static void load_dlls ( )
{
2024-04-15 00:41:09 +08:00
std : : string path ( Local_Storage : : get_game_settings_path ( ) + " load_dlls " + PATH_SEPARATOR ) ;
2020-12-26 10:00:36 +08:00
2024-04-15 00:41:09 +08:00
std : : vector < std : : string > paths ( Local_Storage : : get_filenames_path ( path ) ) ;
2020-12-26 10:00:36 +08:00
for ( auto & p : paths ) {
2024-04-15 00:41:09 +08:00
std : : string full_path ( path + p ) ;
if ( ! common_helpers : : ends_with_i ( full_path , " .dll " ) ) continue ;
PRINT_DEBUG ( " loading '%s' " , full_path . c_str ( ) ) ;
2021-04-26 00:44:41 +08:00
if ( LoadLibraryW ( utf8_decode ( full_path ) . c_str ( ) ) ) {
2024-04-15 00:41:09 +08:00
PRINT_DEBUG ( " LOADED " ) ;
} else {
PRINT_DEBUG ( " FAILED, error 0x%X " , GetLastError ( ) ) ;
2019-05-31 00:59:53 +08:00
}
}
}
2019-04-14 00:21:56 +08:00
//For some reason when this function is optimized it breaks the shogun 2 prophet (reloaded) crack.
# pragma optimize( "", off )
bool crack_SteamAPI_RestartAppIfNecessary ( uint32 unOwnAppID )
{
if ( crack_dll_handle ) {
bool ( __stdcall * restart_app ) ( uint32 ) = ( bool ( __stdcall * ) ( uint32 ) ) GetProcAddress ( crack_dll_handle , " SteamAPI_RestartAppIfNecessary " ) ;
if ( restart_app ) {
2024-04-06 13:49:07 +08:00
PRINT_DEBUG ( " Calling crack SteamAPI_RestartAppIfNecessary " ) ;
2019-04-14 00:21:56 +08:00
redirect_crackdll ( ) ;
bool ret = restart_app ( unOwnAppID ) ;
unredirect_crackdll ( ) ;
return ret ;
}
}
return false ;
}
# pragma optimize( "", on )
bool crack_SteamAPI_Init ( )
{
if ( crack_dll_handle ) {
bool ( __stdcall * init_app ) ( ) = ( bool ( __stdcall * ) ( ) ) GetProcAddress ( crack_dll_handle , " SteamAPI_Init " ) ;
if ( init_app ) {
2024-04-06 13:49:07 +08:00
PRINT_DEBUG ( " Calling crack SteamAPI_Init " ) ;
2019-04-14 00:21:56 +08:00
redirect_crackdll ( ) ;
bool ret = init_app ( ) ;
unredirect_crackdll ( ) ;
return ret ;
}
}
return false ;
}
HINTERNET ( WINAPI * Real_WinHttpConnect ) (
IN HINTERNET hSession ,
IN LPCWSTR pswzServerName ,
IN INTERNET_PORT nServerPort ,
IN DWORD dwReserved
) ;
HINTERNET WINAPI Mine_WinHttpConnect (
IN HINTERNET hSession ,
IN LPCWSTR pswzServerName ,
IN INTERNET_PORT nServerPort ,
IN DWORD dwReserved
) {
2024-04-06 13:49:07 +08:00
PRINT_DEBUG ( " %ls %u " , pswzServerName , nServerPort ) ;
2019-04-14 00:21:56 +08:00
struct sockaddr_in ip4 ;
struct sockaddr_in6 ip6 ;
ip4 . sin_family = AF_INET ;
ip6 . sin6_family = AF_INET6 ;
if ( ( InetPtonW ( AF_INET , pswzServerName , & ( ip4 . sin_addr ) ) & & is_lan_ip ( ( sockaddr * ) & ip4 , sizeof ( ip4 ) ) ) | | ( InetPtonW ( AF_INET6 , pswzServerName , & ( ip6 . sin6_addr ) ) & & is_lan_ip ( ( sockaddr * ) & ip6 , sizeof ( ip6 ) ) ) ) {
return Real_WinHttpConnect ( hSession , pswzServerName , nServerPort , dwReserved ) ;
} else {
return Real_WinHttpConnect ( hSession , L " 127.1.33.7 " , nServerPort , dwReserved ) ;
}
}
2019-08-18 06:03:21 +08:00
HINTERNET ( WINAPI * Real_WinHttpOpenRequest ) (
IN HINTERNET hConnect ,
IN LPCWSTR pwszVerb ,
IN LPCWSTR pwszObjectName ,
IN LPCWSTR pwszVersion ,
IN LPCWSTR pwszReferrer ,
IN LPCWSTR * ppwszAcceptTypes ,
IN DWORD dwFlags
) ;
HINTERNET WINAPI Mine_WinHttpOpenRequest (
IN HINTERNET hConnect ,
IN LPCWSTR pwszVerb ,
IN LPCWSTR pwszObjectName ,
IN LPCWSTR pwszVersion ,
IN LPCWSTR pwszReferrer ,
IN LPCWSTR * ppwszAcceptTypes ,
IN DWORD dwFlags
) {
2024-04-06 13:49:07 +08:00
PRINT_DEBUG ( " %ls %ls %ls %ls %i " , pwszVerb , pwszObjectName , pwszVersion , pwszReferrer , dwFlags ) ;
2019-08-18 06:03:21 +08:00
if ( dwFlags & WINHTTP_FLAG_SECURE ) {
dwFlags ^ = WINHTTP_FLAG_SECURE ;
}
return Real_WinHttpOpenRequest ( hConnect , pwszVerb , pwszObjectName , pwszVersion , pwszReferrer , ppwszAcceptTypes , dwFlags ) ;
}
2019-04-14 00:21:56 +08:00
static bool network_functions_attached = false ;
2024-04-20 06:52:29 +08:00
BOOL WINAPI DllMain ( HINSTANCE , DWORD dwReason , LPVOID )
{
2019-04-14 00:21:56 +08:00
switch ( dwReason ) {
case DLL_PROCESS_ATTACH :
2024-04-20 06:52:29 +08:00
PRINT_DEBUG ( " experimental DLL_PROCESS_ATTACH " ) ;
2024-04-15 00:41:09 +08:00
if ( ! settings_disable_lan_only ( ) ) {
2024-04-06 13:49:07 +08:00
PRINT_DEBUG ( " Hooking lan only functions " ) ;
2019-04-14 00:21:56 +08:00
DetourTransactionBegin ( ) ;
DetourUpdateThread ( GetCurrentThread ( ) ) ;
2024-05-24 10:51:59 +08:00
DetourAttach ( reinterpret_cast < PVOID * > ( & Real_SendTo ) , reinterpret_cast < PVOID > ( Mine_SendTo ) ) ;
DetourAttach ( reinterpret_cast < PVOID * > ( & Real_Connect ) , reinterpret_cast < PVOID > ( Mine_Connect ) ) ;
DetourAttach ( reinterpret_cast < PVOID * > ( & Real_WSAConnect ) , reinterpret_cast < PVOID > ( Mine_WSAConnect ) ) ;
2019-04-14 00:21:56 +08:00
2023-11-12 11:47:43 +08:00
HMODULE winhttp = GetModuleHandleA ( " winhttp.dll " ) ;
2019-04-14 00:21:56 +08:00
if ( winhttp ) {
Real_WinHttpConnect = ( decltype ( Real_WinHttpConnect ) ) GetProcAddress ( winhttp , " WinHttpConnect " ) ;
2024-05-24 10:51:59 +08:00
DetourAttach ( reinterpret_cast < PVOID * > ( & Real_WinHttpConnect ) , reinterpret_cast < PVOID > ( Mine_WinHttpConnect ) ) ;
2019-08-18 06:03:21 +08:00
// Real_WinHttpOpenRequest = (decltype(Real_WinHttpOpenRequest))GetProcAddress(winhttp, "WinHttpOpenRequest");
2024-05-24 10:51:59 +08:00
// DetourAttach( reinterpret_cast<PVOID*>(&Real_WinHttpOpenRequest), reinterpret_cast<PVOID>(Mine_WinHttpOpenRequest) );
2019-04-14 00:21:56 +08:00
}
2019-08-18 06:03:21 +08:00
2019-04-14 00:21:56 +08:00
DetourTransactionCommit ( ) ;
network_functions_attached = true ;
}
2024-04-20 06:52:29 +08:00
load_crack_dll ( ) ;
2020-12-26 10:00:36 +08:00
load_dlls ( ) ;
2024-04-20 06:52:29 +08:00
break ;
2019-04-14 00:21:56 +08:00
case DLL_PROCESS_DETACH :
2024-04-20 06:52:29 +08:00
PRINT_DEBUG ( " experimental DLL_PROCESS_DETACH " ) ;
2019-04-14 00:21:56 +08:00
if ( network_functions_attached ) {
DetourTransactionBegin ( ) ;
DetourUpdateThread ( GetCurrentThread ( ) ) ;
2024-05-24 10:51:59 +08:00
DetourDetach ( reinterpret_cast < PVOID * > ( & Real_SendTo ) , reinterpret_cast < PVOID > ( Mine_SendTo ) ) ;
DetourDetach ( reinterpret_cast < PVOID * > ( & Real_Connect ) , reinterpret_cast < PVOID > ( Mine_Connect ) ) ;
DetourDetach ( reinterpret_cast < PVOID * > ( & Real_WSAConnect ) , reinterpret_cast < PVOID > ( Mine_WSAConnect ) ) ;
2019-04-14 00:21:56 +08:00
if ( Real_WinHttpConnect ) {
2024-05-24 10:51:59 +08:00
DetourDetach ( reinterpret_cast < PVOID * > ( & Real_WinHttpConnect ) , reinterpret_cast < PVOID > ( Mine_WinHttpConnect ) ) ;
// DetourDetach( reinterpret_cast<PVOID*>(&Real_WinHttpOpenRequest), reinterpret_cast<PVOID>(Mine_WinHttpOpenRequest) );
2019-04-14 00:21:56 +08:00
}
DetourTransactionCommit ( ) ;
}
break ;
}
return TRUE ;
2020-05-01 01:36:59 +08:00
}
2024-04-20 06:52:29 +08:00
2020-05-01 01:36:59 +08:00
# else
2024-04-20 06:52:29 +08:00
2022-05-01 10:23:42 +08:00
void set_whitelist_ips ( uint32_t * from , uint32_t * to , unsigned num_ips )
2020-05-01 01:36:59 +08:00
{
2019-04-14 00:21:56 +08:00
}
2024-04-20 06:52:29 +08:00
2019-04-14 00:21:56 +08:00
# endif
2020-05-01 01:36:59 +08:00
# else
2024-04-20 06:52:29 +08:00
2022-05-01 10:23:42 +08:00
void set_whitelist_ips ( uint32_t * from , uint32_t * to , unsigned num_ips )
2020-05-01 01:36:59 +08:00
{
}
2024-04-20 06:52:29 +08:00
2019-04-14 00:21:56 +08:00
# endif
2024-06-08 00:55:30 +08:00