📄 mdarm.c
字号:
SetLastError(ERROR_INVALID_HANDLE);
return FALSE;
}
if (lpContext->ContextFlags & ~CONTEXT_FULL) {
SetLastError(ERROR_INVALID_PARAMETER);
return FALSE;
}
if (pth->pThrdDbg && pth->pThrdDbg->psavedctx) {
ULONG ulOldAky = CurAKey;
SETCURKEY((DWORD)-1);
if (lpContext->ContextFlags & CONTEXT_CONTROL) {
lpContext->Psr = pth->pThrdDbg->psavedctx->Psr;
lpContext->Pc = pth->pThrdDbg->psavedctx->Pc;
lpContext->Lr = pth->pThrdDbg->psavedctx->Lr;
lpContext->Sp = pth->pThrdDbg->psavedctx->Sp;
}
if (lpContext->ContextFlags & CONTEXT_INTEGER) {
lpContext->R0 = pth->pThrdDbg->psavedctx->R0;
lpContext->R1 = pth->pThrdDbg->psavedctx->R1;
lpContext->R2 = pth->pThrdDbg->psavedctx->R2;
lpContext->R3 = pth->pThrdDbg->psavedctx->R3;
lpContext->R4 = pth->pThrdDbg->psavedctx->R4;
lpContext->R5 = pth->pThrdDbg->psavedctx->R5;
lpContext->R6 = pth->pThrdDbg->psavedctx->R6;
lpContext->R7 = pth->pThrdDbg->psavedctx->R7;
lpContext->R8 = pth->pThrdDbg->psavedctx->R8;
lpContext->R9 = pth->pThrdDbg->psavedctx->R9;
lpContext->R10 = pth->pThrdDbg->psavedctx->R10;
lpContext->R11 = pth->pThrdDbg->psavedctx->R11;
lpContext->R12 = pth->pThrdDbg->psavedctx->R12;
}
if ((VFP_EXIST == vfpStat) && (lpContext->ContextFlags & CONTEXT_FLOATING_POINT)) {
FPUFlushContext();
lpContext->Fpscr = pth->pThrdDbg->psavedctx->Fpscr;
lpContext->FpExc = pth->pThrdDbg->psavedctx->FpExc;
memcpy (lpContext->S, pth->pThrdDbg->psavedctx->S, sizeof (lpContext->S));
}
SETCURKEY(ulOldAky);
} else {
if (lpContext->ContextFlags & CONTEXT_CONTROL) {
lpContext->Psr = pth->ctx.Psr;
lpContext->Pc = pth->ctx.Pc;
lpContext->Lr = pth->ctx.Lr;
lpContext->Sp = pth->ctx.Sp;
}
if (lpContext->ContextFlags & CONTEXT_INTEGER) {
lpContext->R0 = pth->ctx.R0;
lpContext->R1 = pth->ctx.R1;
lpContext->R2 = pth->ctx.R2;
lpContext->R3 = pth->ctx.R3;
lpContext->R4 = pth->ctx.R4;
lpContext->R5 = pth->ctx.R5;
lpContext->R6 = pth->ctx.R6;
lpContext->R7 = pth->ctx.R7;
lpContext->R8 = pth->ctx.R8;
lpContext->R9 = pth->ctx.R9;
lpContext->R10 = pth->ctx.R10;
lpContext->R11 = pth->ctx.R11;
lpContext->R12 = pth->ctx.R12;
}
if ((VFP_EXIST == vfpStat) && (lpContext->ContextFlags & CONTEXT_FLOATING_POINT)) {
FPUFlushContext();
lpContext->Fpscr = pth->ctx.Fpscr;
lpContext->FpExc = pth->ctx.FpExc;
memcpy (lpContext->S, pth->ctx.S, sizeof (lpContext->S));
memcpy (lpContext->FpExtra, pth->ctx.FpExtra, sizeof (lpContext->FpExtra));
}
}
return TRUE;
}
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
BOOL
DoThreadSetContext(
HANDLE hTh,
const CONTEXT *lpContext
)
{
PTHREAD pth;
if (!(pth = HandleToThread(hTh))) {
SetLastError(ERROR_INVALID_HANDLE);
return FALSE;
}
if (lpContext->ContextFlags & ~CONTEXT_FULL) {
SetLastError(ERROR_INVALID_PARAMETER);
return FALSE;
}
if (pth->pThrdDbg && pth->pThrdDbg->psavedctx) {
ULONG ulOldAky = CurAKey;
SETCURKEY((DWORD)-1);
if (lpContext->ContextFlags & CONTEXT_CONTROL) {
pth->pThrdDbg->psavedctx->Psr = (pth->pThrdDbg->psavedctx->Psr & 0xdf) | (lpContext->Psr & ~0xdf);
pth->pThrdDbg->psavedctx->Pc = lpContext->Pc;
pth->pThrdDbg->psavedctx->Lr = lpContext->Lr;
pth->pThrdDbg->psavedctx->Sp = lpContext->Sp;
}
if (lpContext->ContextFlags & CONTEXT_INTEGER) {
pth->pThrdDbg->psavedctx->R0 = lpContext->R0;
pth->pThrdDbg->psavedctx->R1 = lpContext->R1;
pth->pThrdDbg->psavedctx->R2 = lpContext->R2;
pth->pThrdDbg->psavedctx->R3 = lpContext->R3;
pth->pThrdDbg->psavedctx->R4 = lpContext->R4;
pth->pThrdDbg->psavedctx->R5 = lpContext->R5;
pth->pThrdDbg->psavedctx->R6 = lpContext->R6;
pth->pThrdDbg->psavedctx->R7 = lpContext->R7;
pth->pThrdDbg->psavedctx->R8 = lpContext->R8;
pth->pThrdDbg->psavedctx->R9 = lpContext->R9;
pth->pThrdDbg->psavedctx->R10 = lpContext->R10;
pth->pThrdDbg->psavedctx->R11 = lpContext->R11;
pth->pThrdDbg->psavedctx->R12 = lpContext->R12;
}
if ((VFP_EXIST == vfpStat) && (lpContext->ContextFlags & CONTEXT_FLOATING_POINT)) {
FPUFlushContext();
pth->pThrdDbg->psavedctx->Fpscr = lpContext->Fpscr;
pth->pThrdDbg->psavedctx->FpExc = lpContext->FpExc;
memcpy (pth->pThrdDbg->psavedctx->S, lpContext->S, sizeof (lpContext->S));
}
SETCURKEY(ulOldAky);
} else {
if (lpContext->ContextFlags & CONTEXT_CONTROL) {
pth->ctx.Psr = (pth->ctx.Psr & 0xdf) | (lpContext->Psr & ~0xdf);
pth->ctx.Pc = lpContext->Pc;
pth->ctx.Lr = lpContext->Lr;
pth->ctx.Sp = lpContext->Sp;
}
if (lpContext->ContextFlags & CONTEXT_INTEGER) {
pth->ctx.R0 = lpContext->R0;
pth->ctx.R1 = lpContext->R1;
pth->ctx.R2 = lpContext->R2;
pth->ctx.R3 = lpContext->R3;
pth->ctx.R4 = lpContext->R4;
pth->ctx.R5 = lpContext->R5;
pth->ctx.R6 = lpContext->R6;
pth->ctx.R7 = lpContext->R7;
pth->ctx.R8 = lpContext->R8;
pth->ctx.R9 = lpContext->R9;
pth->ctx.R10 = lpContext->R10;
pth->ctx.R11 = lpContext->R11;
pth->ctx.R12 = lpContext->R12;
}
if ((VFP_EXIST == vfpStat) && (lpContext->ContextFlags & CONTEXT_FLOATING_POINT)) {
FPUFlushContext();
pth->ctx.Fpscr = lpContext->Fpscr;
pth->ctx.FpExc = lpContext->FpExc;
memcpy (pth->ctx.S, lpContext->S, sizeof (lpContext->S));
memcpy (pth->ctx.FpExtra, lpContext->FpExtra, sizeof (lpContext->FpExtra));
}
}
return TRUE;
}
//
// Define procedure prototypes for exception filter and termination handler
// execution routines defined in jmpunwnd.s
//
// For ARM the compiler generated exception functions expect the following
// input arguments:
//
// Exception Filter: r0 = exception pointers, r11 = frame pointer
//
// Termination Handler: r0 = abnormal term flag, r11 = frame pointer
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
long
__declspec(
iw32
) __C_ExecuteExceptionFilter(
PEXCEPTION_POINTERS ExceptionPointers,
EXCEPTION_FILTER ExceptionFilter,
ULONG EstablisherFrame);
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
void
__declspec(
iw32
) __C_ExecuteTerminationHandler(
BOOLEAN AbnormalTermination,
TERMINATION_HANDLER TerminationHandler,
ULONG EstablisherFrame);
/*++
Routine Description:
This function scans the scope tables associated with the specified
procedure and calls exception and termination handlers as necessary.
Arguments:
ExceptionRecord - Supplies a pointer to an exception record.
EstablisherFrame - Supplies a pointer to frame of the establisher function.
ContextRecord - Supplies a pointer to a context record.
DispatcherContext - Supplies a pointer to the exception dispatcher or
unwind dispatcher context.
Return Value:
If the exception is handled by one of the exception filter routines, then
there is no return from this routine and RtlUnwind is called. Otherwise,
an exception disposition value of continue execution or continue search is
returned.
--*/
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
EXCEPTION_DISPOSITION
__C_specific_handler(
IN PEXCEPTION_RECORD ExceptionRecord,
IN PVOID EstablisherFrame,
IN OUT PCONTEXT ContextRecord,
IN OUT PDISPATCHER_CONTEXT DispatcherContext
)
{
ULONG ControlPc;
EXCEPTION_FILTER ExceptionFilter;
EXCEPTION_POINTERS ExceptionPointers;
PRUNTIME_FUNCTION FunctionEntry;
ULONG Index;
PSCOPE_TABLE ScopeTable;
ULONG TargetPc;
TERMINATION_HANDLER TerminationHandler;
LONG Value;
// Get address of where control left the establisher, the address of the
// function table entry that describes the function, and the address of
// the scope table.
ControlPc = DispatcherContext->ControlPc;
FunctionEntry = DispatcherContext->FunctionEntry;
ScopeTable = (PSCOPE_TABLE)(FunctionEntry->HandlerData);
// If an unwind is not in progress, then scan the scope table and call
// the appropriate exception filter routines. Otherwise, scan the scope
// table and call the appropriate termination handlers using the target
// PC obtained from the context record.
// are called.
if (IS_DISPATCHING(ExceptionRecord->ExceptionFlags)) {
// Scan the scope table and call the appropriate exception filter
// routines.
ExceptionPointers.ExceptionRecord = ExceptionRecord;
ExceptionPointers.ContextRecord = ContextRecord;
for (Index = 0; Index < ScopeTable->Count; Index += 1) {
if ((ControlPc >= ScopeTable->ScopeRecord[Index].BeginAddress) &&
(ControlPc < ScopeTable->ScopeRecord[Index].EndAddress) &&
(ScopeTable->ScopeRecord[Index].JumpTarget != 0)) {
// Call the exception filter routine.
ExceptionFilter =
(EXCEPTION_FILTER)ScopeTable->ScopeRecord[Index].HandlerAddress;
Value = __C_ExecuteExceptionFilter(&ExceptionPointers,ExceptionFilter,(ULONG)EstablisherFrame);
// If the return value is less than zero, then dismiss the
// exception. Otherwise, if the value is greater than zero,
// then unwind to the target exception handler. Otherwise,
// continue the search for an exception filter.
if (Value < 0)
return ExceptionContinueExecution;
if (Value > 0) {
DispatcherContext->ControlPc = ScopeTable->ScopeRecord[Index].JumpTarget;
return ExceptionExecuteHandler;
}
}
}
} else {
// Scan the scope table and call the appropriate termination handler
// routines.
TargetPc = CONTEXT_TO_PROGRAM_COUNTER(ContextRecord);
for (Index = 0; Index < ScopeTable->Count; Index += 1) {
if ((ControlPc >= ScopeTable->ScopeRecord[Index].BeginAddress) &&
(ControlPc < ScopeTable->ScopeRecord[Index].EndAddress)) {
// If the target PC is within the same scope the control PC
// is within, then this is an uplevel goto out of an inner try
// scope or a long jump back into a try scope. Terminate the
// scan termination handlers.
//
// N.B. The target PC can be just beyond the end of the scope,
// in which case it is a leave from the scope.
if ((TargetPc >= ScopeTable->ScopeRecord[Index].BeginAddress) &&
(TargetPc < ScopeTable->ScopeRecord[Index].EndAddress))
break;
// If the scope table entry describes an exception filter
// and the associated exception handler is the target of
// the unwind, then terminate the scan for termination
// handlers. Otherwise, if the scope table entry describes
// a termination handler, then record the address of the
// end of the scope as the new control PC address and call
// the termination handler.
if (ScopeTable->ScopeRecord[Index].JumpTarget != 0) {
if (TargetPc == ScopeTable->ScopeRecord[Index].JumpTarget)
break;
} else {
DispatcherContext->ControlPc = ScopeTable->ScopeRecord[Index].EndAddress + 4;
TerminationHandler = (TERMINATION_HANDLER)ScopeTable->ScopeRecord[Index].HandlerAddress;
__C_ExecuteTerminationHandler(TRUE, TerminationHandler, (ULONG)EstablisherFrame);
}
}
}
}
// Continue search for exception or termination handlers.
return ExceptionContinueSearch;
}
void MDRestoreCalleeSavedRegisters (PCALLSTACK pcstk, PCONTEXT pCtx)
{
ULONG *pRegs = (ULONG *) pcstk->dwPrevSP;
pCtx->R4 = pRegs[0];
pCtx->R5 = pRegs[1];
pCtx->R6 = pRegs[2];
pCtx->R7 = pRegs[3];
pCtx->R8 = pRegs[4];
pCtx->R9 = pRegs[5];
pCtx->R10 = pRegs[6];
pCtx->R11 = pRegs[7];
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -