@ -7,12 +7,28 @@
# include "windows_crashmonitor.hpp"
# include "windows_crashshm.hpp"
# include "windowscrashdumppathhelpers.hpp"
# include <SDL_messagebox.h>
# include <components/misc/strings/conversion.hpp>
namespace Crash
{
namespace
{
template < class T , std : : size_t N >
void writePathToShm ( T ( & buffer ) [ N ] , const std : : filesystem : : path & path )
{
memset ( buffer , 0 , sizeof ( buffer ) ) ;
const auto str = path . u8string ( ) ;
size_t length = str . length ( ) ;
if ( length > = sizeof ( buffer ) )
length = sizeof ( buffer ) - 1 ;
strncpy_s ( buffer , sizeof ( buffer ) ,
Misc : : StringUtils : : u8StringToString ( str ) . c_str ( ) , length ) ;
buffer [ length ] = ' \0 ' ;
}
}
HANDLE duplicateHandle ( HANDLE handle )
{
@ -27,8 +43,8 @@ namespace Crash
CrashCatcher * CrashCatcher : : sInstance = nullptr ;
CrashCatcher : : CrashCatcher (
int argc , char * * argv , const std : : filesystem : : path & crashDump Path , const std : : filesystem : : path & freezeDump Path )
CrashCatcher : : CrashCatcher ( int argc , char * * argv , const std : : filesystem : : path & dumpPath ,
const std : : filesystem : : path & crashDump Name , const std : : filesystem : : path & freezeDump Name )
{
assert ( sInstance = = nullptr ) ; // don't allow two instances
@ -50,7 +66,7 @@ namespace Crash
if ( ! shmHandle )
{
setupIpc ( ) ;
startMonitorProcess ( crashDumpPath, freezeDumpPath ) ;
startMonitorProcess ( dumpPath, crashDumpName , freezeDumpName ) ;
installHandler ( ) ;
}
else
@ -77,28 +93,22 @@ namespace Crash
CloseHandle ( mShmHandle ) ;
}
void CrashCatcher : : updateDumpPaths (
const std : : filesystem : : path & crashDumpPath , const std : : filesystem : : path & freezeDumpPath )
void CrashCatcher : : updateDumpPath ( const std : : filesystem : : path & dumpPath )
{
shmLock ( ) ;
writePathToShm ( mShm - > mStartup . mDumpDirectoryPath , dumpPath ) ;
shmUnlock ( ) ;
}
void CrashCatcher : : updateDumpNames (
const std : : filesystem : : path & crashDumpName , const std : : filesystem : : path & freezeDumpName )
{
shmLock ( ) ;
memset ( mShm - > mStartup . mCrashDumpFilePath , 0 , sizeof ( mShm - > mStartup . mCrashDumpFilePath ) ) ;
const auto str = crashDumpPath . u8string ( ) ;
size_t length = str . length ( ) ;
if ( length > = MAX_LONG_PATH )
length = MAX_LONG_PATH - 1 ;
strncpy_s ( mShm - > mStartup . mCrashDumpFilePath , sizeof mShm - > mStartup . mCrashDumpFilePath ,
Misc : : StringUtils : : u8StringToString ( str ) . c_str ( ) , length ) ;
mShm - > mStartup . mCrashDumpFilePath [ length ] = ' \0 ' ;
memset ( mShm - > mStartup . mFreezeDumpFilePath , 0 , sizeof ( mShm - > mStartup . mFreezeDumpFilePath ) ) ;
const auto strFreeze = freezeDumpPath . u8string ( ) ;
length = strFreeze . length ( ) ;
if ( length > = MAX_LONG_PATH )
length = MAX_LONG_PATH - 1 ;
strncpy_s ( mShm - > mStartup . mFreezeDumpFilePath , sizeof mShm - > mStartup . mFreezeDumpFilePath ,
Misc : : StringUtils : : u8StringToString ( strFreeze ) . c_str ( ) , length ) ;
mShm - > mStartup . mFreezeDumpFilePath [ length ] = ' \0 ' ;
writePathToShm ( mShm - > mStartup . mCrashDumpFileName , crashDumpName ) ;
writePathToShm ( mShm - > mStartup . mFreezeDumpFileName , freezeDumpName ) ;
shmUnlock ( ) ;
}
@ -153,8 +163,8 @@ namespace Crash
SetUnhandledExceptionFilter ( vectoredExceptionHandler ) ;
}
void CrashCatcher : : startMonitorProcess (
const std : : filesystem : : path & crashDump Path , const std : : filesystem : : path & freezeDump Path )
void CrashCatcher : : startMonitorProcess ( const std : : filesystem : : path & dumpPath ,
const std : : filesystem : : path & crashDump Name , const std : : filesystem : : path & freezeDump Name )
{
std : : wstring executablePath ;
DWORD copied = 0 ;
@ -165,23 +175,9 @@ namespace Crash
} while ( copied > = executablePath . size ( ) ) ;
executablePath . resize ( copied ) ;
memset ( mShm - > mStartup . mCrashDumpFilePath , 0 , sizeof ( mShm - > mStartup . mCrashDumpFilePath ) ) ;
const auto str = crashDumpPath . u8string ( ) ;
size_t length = str . length ( ) ;
if ( length > = MAX_LONG_PATH )
length = MAX_LONG_PATH - 1 ;
strncpy_s ( mShm - > mStartup . mCrashDumpFilePath , sizeof mShm - > mStartup . mCrashDumpFilePath ,
Misc : : StringUtils : : u8StringToString ( str ) . c_str ( ) , length ) ;
mShm - > mStartup . mCrashDumpFilePath [ length ] = ' \0 ' ;
memset ( mShm - > mStartup . mFreezeDumpFilePath , 0 , sizeof ( mShm - > mStartup . mFreezeDumpFilePath ) ) ;
const auto strFreeze = freezeDumpPath . u8string ( ) ;
length = strFreeze . length ( ) ;
if ( length > = MAX_LONG_PATH )
length = MAX_LONG_PATH - 1 ;
strncpy_s ( mShm - > mStartup . mFreezeDumpFilePath , sizeof mShm - > mStartup . mFreezeDumpFilePath ,
Misc : : StringUtils : : u8StringToString ( strFreeze ) . c_str ( ) , length ) ;
mShm - > mStartup . mFreezeDumpFilePath [ length ] = ' \0 ' ;
writePathToShm ( mShm - > mStartup . mDumpDirectoryPath , dumpPath ) ;
writePathToShm ( mShm - > mStartup . mCrashDumpFileName , crashDumpName ) ;
writePathToShm ( mShm - > mStartup . mFreezeDumpFileName , freezeDumpName ) ;
// note that we don't need to lock the SHM here, the other process has not started yet
mShm - > mEvent = CrashSHM : : Event : : Startup ;
@ -204,6 +200,9 @@ namespace Crash
if ( ! CreateProcessW ( executablePath . data ( ) , arguments . data ( ) , NULL , NULL , TRUE , 0 , NULL , NULL , & si , & pi ) )
throw std : : runtime_error ( " Could not start crash monitor process " ) ;
CloseHandle ( pi . hProcess ) ;
CloseHandle ( pi . hThread ) ;
waitMonitor ( ) ;
}
@ -241,7 +240,7 @@ namespace Crash
waitMonitor ( ) ;
std : : string message = " OpenMW has encountered a fatal error. \n Crash log saved to ' "
+ std: : string ( mShm - > mStartup . mCrashDumpFilePath )
+ Misc: : StringUtils : : u8StringToString ( getCrashDumpPath ( * mShm ) . u8string ( ) )
+ " '. \n Please report this to https://gitlab.com/OpenMW/openmw/issues ! " ;
SDL_ShowSimpleMessageBox ( 0 , " Fatal Error " , message . c_str ( ) , nullptr ) ;
}