[KERNEL32]

- Whitespace fixes (dosdev.c, except.c, loader.c)
- except.c: Remove some unneeded casts; NtQueryInformationProcess for 'ProcessDebugPort' is implemented and therefore it will never return STATUS_NOT_IMPLEMENTED.

svn path=/trunk/; revision=71703
This commit is contained in:
Hermès Bélusca-Maïto 2016-06-30 14:00:34 +00:00
parent b92e83d7b9
commit 876a3b2681
3 changed files with 91 additions and 82 deletions

View file

@ -442,7 +442,7 @@ QueryDosDeviceW(
if (Length + NameLength + 1 >= ucchMax) if (Length + NameLength + 1 >= ucchMax)
{ {
Length = 0; Length = 0;
BaseSetLastNTError (STATUS_BUFFER_TOO_SMALL); BaseSetLastNTError(STATUS_BUFFER_TOO_SMALL);
break; break;
} }

View file

@ -85,7 +85,7 @@ PrintStackTrace(struct _EXCEPTION_POINTERS *ExceptionInfo)
DbgPrint("Unhandled exception\n"); DbgPrint("Unhandled exception\n");
DbgPrint("ExceptionCode: %8x\n", ExceptionRecord->ExceptionCode); DbgPrint("ExceptionCode: %8x\n", ExceptionRecord->ExceptionCode);
if ((NTSTATUS)ExceptionRecord->ExceptionCode == STATUS_ACCESS_VIOLATION && if (ExceptionRecord->ExceptionCode == STATUS_ACCESS_VIOLATION &&
ExceptionRecord->NumberParameters == 2) ExceptionRecord->NumberParameters == 2)
{ {
DbgPrint("Faulting Address: %8x\n", ExceptionRecord->ExceptionInformation[1]); DbgPrint("Faulting Address: %8x\n", ExceptionRecord->ExceptionInformation[1]);
@ -209,7 +209,7 @@ GetErrorMode(VOID)
/* Query the current setting */ /* Query the current setting */
Status = NtQueryInformationProcess(NtCurrentProcess(), Status = NtQueryInformationProcess(NtCurrentProcess(),
ProcessDefaultHardErrorMode, ProcessDefaultHardErrorMode,
(PVOID)&ErrMode, &ErrMode,
sizeof(ErrMode), sizeof(ErrMode),
NULL); NULL);
if (!NT_SUCCESS(Status)) if (!NT_SUCCESS(Status))
@ -238,18 +238,19 @@ GetErrorMode(VOID)
/* /*
* @implemented * @implemented
*/ */
LONG WINAPI LONG
UnhandledExceptionFilter(struct _EXCEPTION_POINTERS *ExceptionInfo) WINAPI
UnhandledExceptionFilter(IN PEXCEPTION_POINTERS ExceptionInfo)
{ {
NTSTATUS Status;
LONG RetValue; LONG RetValue;
HANDLE DebugPort = NULL; HANDLE DebugPort = NULL;
NTSTATUS ErrCode;
ULONG_PTR ErrorParameters[4]; ULONG_PTR ErrorParameters[4];
ULONG ErrorResponse; ULONG ErrorResponse;
PEXCEPTION_RECORD ExceptionRecord = ExceptionInfo->ExceptionRecord; PEXCEPTION_RECORD ExceptionRecord = ExceptionInfo->ExceptionRecord;
LPTOP_LEVEL_EXCEPTION_FILTER RealFilter; LPTOP_LEVEL_EXCEPTION_FILTER RealFilter;
if ((NTSTATUS)ExceptionRecord->ExceptionCode == STATUS_ACCESS_VIOLATION && if (ExceptionRecord->ExceptionCode == STATUS_ACCESS_VIOLATION &&
ExceptionRecord->NumberParameters >= 2) ExceptionRecord->NumberParameters >= 2)
{ {
switch(ExceptionRecord->ExceptionInformation[0]) switch(ExceptionRecord->ExceptionInformation[0])
@ -262,18 +263,22 @@ UnhandledExceptionFilter(struct _EXCEPTION_POINTERS *ExceptionInfo)
if (RetValue == EXCEPTION_CONTINUE_EXECUTION) if (RetValue == EXCEPTION_CONTINUE_EXECUTION)
return EXCEPTION_CONTINUE_EXECUTION; return EXCEPTION_CONTINUE_EXECUTION;
break; break;
case EXCEPTION_EXECUTE_FAULT: case EXCEPTION_EXECUTE_FAULT:
/* FIXME */ /* FIXME */
break; break;
} }
} }
/* Is there a debugger running ? */ /* Is there a debugger running? */
ErrCode = NtQueryInformationProcess(NtCurrentProcess(), ProcessDebugPort, Status = NtQueryInformationProcess(NtCurrentProcess(),
&DebugPort, sizeof(HANDLE), NULL); ProcessDebugPort,
if (!NT_SUCCESS(ErrCode) && ErrCode != STATUS_NOT_IMPLEMENTED) &DebugPort,
sizeof(DebugPort),
NULL);
if (!NT_SUCCESS(Status))
{ {
BaseSetLastNTError(ErrCode); BaseSetLastNTError(Status);
return EXCEPTION_EXECUTE_HANDLER; return EXCEPTION_EXECUTE_HANDLER;
} }
@ -298,7 +303,7 @@ UnhandledExceptionFilter(struct _EXCEPTION_POINTERS *ExceptionInfo)
ErrorParameters[0] = (ULONG)ExceptionRecord->ExceptionCode; ErrorParameters[0] = (ULONG)ExceptionRecord->ExceptionCode;
ErrorParameters[1] = (ULONG_PTR)ExceptionRecord->ExceptionAddress; ErrorParameters[1] = (ULONG_PTR)ExceptionRecord->ExceptionAddress;
if ((NTSTATUS)ExceptionRecord->ExceptionCode == STATUS_ACCESS_VIOLATION) if (ExceptionRecord->ExceptionCode == STATUS_ACCESS_VIOLATION)
{ {
/* get the type of operation that caused the access violation */ /* get the type of operation that caused the access violation */
ErrorParameters[2] = ExceptionRecord->ExceptionInformation[0]; ErrorParameters[2] = ExceptionRecord->ExceptionInformation[0];
@ -312,10 +317,14 @@ UnhandledExceptionFilter(struct _EXCEPTION_POINTERS *ExceptionInfo)
ErrorParameters[3] = ExceptionRecord->ExceptionInformation[1]; ErrorParameters[3] = ExceptionRecord->ExceptionInformation[1];
/* Raise the harderror */ /* Raise the harderror */
ErrCode = NtRaiseHardError(STATUS_UNHANDLED_EXCEPTION, Status = NtRaiseHardError(STATUS_UNHANDLED_EXCEPTION,
4, 0, ErrorParameters, OptionOkCancel, &ErrorResponse); 4,
0,
ErrorParameters,
OptionOkCancel,
&ErrorResponse);
if (NT_SUCCESS(ErrCode) && (ErrorResponse == ResponseCancel)) if (NT_SUCCESS(Status) && (ErrorResponse == ResponseCancel))
{ {
/* FIXME: Check the result, if the "Cancel" button was /* FIXME: Check the result, if the "Cancel" button was
clicked run a debugger */ clicked run a debugger */

View file

@ -177,7 +177,7 @@ DECLSPEC_HOTPATCH
LoadLibraryW(LPCWSTR lpLibFileName) LoadLibraryW(LPCWSTR lpLibFileName)
{ {
/* Call Ex version of the API */ /* Call Ex version of the API */
return LoadLibraryExW (lpLibFileName, 0, 0); return LoadLibraryExW(lpLibFileName, 0, 0);
} }