diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-04-11 11:05:36 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-04-11 11:05:36 +0200 |
| commit | 3b9feeed120af45a2dc346592b328eb0b2e14911 (patch) | |
| tree | 805803a23c6e2e91fc002b8b8f1b2d9f73a1e298 /src/libtools | |
| parent | 6d3ca2df80b6df2e9aabb73210f9c09fd0df97a1 (diff) | |
| download | box64-3b9feeed120af45a2dc346592b328eb0b2e14911.tar.gz box64-3b9feeed120af45a2dc346592b328eb0b2e14911.zip | |
Improvement in internal mutex handling on signal, and [DYNAREC] multitasking changes to the JmpTable
Diffstat (limited to 'src/libtools')
| -rwxr-xr-x | src/libtools/signals.c | 26 | ||||
| -rwxr-xr-x | src/libtools/threads.c | 29 |
2 files changed, 33 insertions, 22 deletions
diff --git a/src/libtools/signals.c b/src/libtools/signals.c index a0126748..5c66522e 100755 --- a/src/libtools/signals.c +++ b/src/libtools/signals.c @@ -434,8 +434,8 @@ uintptr_t getX64Address(dynablock_t* db, uintptr_t arm_addr) void my_sigactionhandler_oldcode(int32_t sig, siginfo_t* info, void * ucntx, int* old_code, void* cur_db) { - // need to create some x64_ucontext???? - pthread_mutex_unlock(&my_context->mutex_trace); // just in case + int Locks = unlockMutex(); + printf_log(LOG_DEBUG, "Sigactionhanlder for signal #%d called (jump to %p/%s)\n", sig, (void*)my_context->signals[sig], GetNativeName((void*)my_context->signals[sig])); uintptr_t restorer = my_context->restorer[sig]; @@ -643,6 +643,7 @@ void my_sigactionhandler_oldcode(int32_t sig, siginfo_t* info, void * ucntx, int *old_code = -1; // re-init the value to allow another segfault at the same place if(used_stack) // release stack new_ss->ss_flags = 0; + relockMutex(Locks); longjmp(ejb->jmpbuf, 1); } printf_log(LOG_INFO, "Warning, context has been changed in Sigactionhanlder%s\n", (sigcontext->uc_mcontext.gregs[X64_RIP]!=sigcontext_copy.uc_mcontext.gregs[X64_RIP])?" (EIP changed)":""); @@ -681,12 +682,15 @@ void my_sigactionhandler_oldcode(int32_t sig, siginfo_t* info, void * ucntx, int #undef GO printf_log(LOG_DEBUG, "Sigactionhanlder main function returned (exit=%d, restorer=%p)\n", exits, (void*)restorer); - if(exits) + if(exits) { + relockMutex(Locks); exit(ret); + } if(restorer) RunFunctionHandler(&exits, 0, restorer, 0); if(used_stack) // release stack new_ss->ss_flags = 0; + relockMutex(Locks); } void my_box64signalhandler(int32_t sig, siginfo_t* info, void * ucntx) @@ -706,6 +710,7 @@ void my_box64signalhandler(int32_t sig, siginfo_t* info, void * ucntx) void * pc = NULL; // unknow arch... #warning Unhandled architecture #endif + int Locks = unlockMutex(); uint32_t prot = getProtection((uintptr_t)addr); #ifdef DYNAREC dynablock_t* db = NULL; @@ -742,12 +747,17 @@ void my_box64signalhandler(int32_t sig, siginfo_t* info, void * ucntx) ejb->emu->ip.q[0] = getX64Address(db, (uintptr_t)pc); ejb->emu->eflags.x64 = p->uc_mcontext.regs[26]; dynarec_log(LOG_DEBUG, "Auto-SMC detected, getting out of current Dynablock!\n"); + relockMutex(Locks); longjmp(ejb->jmpbuf, 2); } dynarec_log(LOG_INFO, "Warning, Auto-SMC (%p for db %p/%p) detected, but jmpbuffer not ready!\n", (void*)addr, db, (void*)db->x64_addr); } // done - if(prot&PROT_WRITE) return; // if there is no write permission, don't return and continue to program signal handling + if(prot&PROT_WRITE) { + // if there is no write permission, don't return and continue to program signal handling + relockMutex(Locks); + return; + } } else if ((sig==SIGSEGV) && (addr) && (info->si_code == SEGV_ACCERR) && (prot&(PROT_READ|PROT_WRITE))) { db = FindDynablockFromNativeAddress(pc); db_searched = 1; @@ -757,6 +767,7 @@ void my_box64signalhandler(int32_t sig, siginfo_t* info, void * ucntx) if(addr && pc && db) { // probably a glitch due to intensive multitask... dynarec_log(/*LOG_DEBUG*/LOG_INFO, "SIGSEGV with Access error on %p for %p , db=%p, retrying\n", pc, addr, db); + relockMutex(Locks); return; // try again } } @@ -771,6 +782,10 @@ void my_box64signalhandler(int32_t sig, siginfo_t* info, void * ucntx) printf_log(log_minimum, "%04d|Double %s (code=%d, pc=%p, addr=%p)!\n", GetTID(), signame, old_code, old_pc, old_addr); exit(-1); } else { + if(sig==SIGSEGV && info->si_code==2 && ((prot&~PROT_CUSTOM)==5 || (prot&~PROT_CUSTOM)==7)) { + relockMutex(Locks); + return; // that's probably just a multi-task glitch, like seen in terraria + } #ifdef DYNAREC if(!db_searched) db = FindDynablockFromNativeAddress(pc); @@ -840,8 +855,7 @@ exit(-1); else printf_log(log_minimum, "\n"); } - if(sig==SIGSEGV && info->si_code==2 && ((prot&~PROT_CUSTOM)==5 || (prot&~PROT_CUSTOM)==7)) - return; // that's probably just a multi-task glitch, like seen in terraria + relockMutex(Locks); if(my_context->signals[sig] && my_context->signals[sig]!=1) { if(my_context->is_sigaction[sig]) my_sigactionhandler_oldcode(sig, info, ucntx, &old_code, db); diff --git a/src/libtools/threads.c b/src/libtools/threads.c index 82f558f4..5e969807 100755 --- a/src/libtools/threads.c +++ b/src/libtools/threads.c @@ -922,21 +922,6 @@ emu_jmpbuf_t* GetJmpBuf() return ejb; } -static void atfork_child(void) -{ - //unlock all potential mutex, this is a new fork! - pthread_mutex_unlock(&my_context->mutex_once); - pthread_mutex_unlock(&my_context->mutex_once2); - pthread_mutex_unlock(&my_context->mutex_trace); - #ifndef DYNAREC - pthread_mutex_unlock(&my_context->mutex_lock); - #else - pthread_mutex_unlock(&my_context->mutex_dyndump); - #endif - pthread_mutex_unlock(&my_context->mutex_tls); - pthread_mutex_unlock(&my_context->mutex_thread); -} - void init_pthread_helper() { InitCancelThread(); @@ -949,7 +934,6 @@ void init_pthread_helper() unaligned_mutex = kh_init(mutex); #endif #endif - pthread_atfork(NULL, NULL, atfork_child); } void fini_pthread_helper(box64context_t* context) @@ -986,3 +970,16 @@ void fini_pthread_helper(box64context_t* context) pthread_setspecific(thread_key, NULL); } } + +int checkMutex(void* m) +{ + pthread_mutex_t* mutex = (pthread_mutex_t*)m; + int ret = pthread_mutex_trylock(mutex); + if(ret==0) { + pthread_mutex_unlock(mutex); + return 0; + } + if(ret==EDEADLK) + return 1; + return 0; +} |