Files
mirror-processhacker/trunk/KProcessHacker/kprocesshacker.c
T
wj32 9eeac62fd9 * removed hooks from KPH - this means that it can now support multiple clients
* added Restart and Set Token menu items
* KphOpenTokenEx now creates an access state - limited user accounts now have complete admin access to processes and tokens
* fixed problem where if a process image file can't be accessed because of permissions PH says it's packed
* fixed problem with .NET executables not being recognized

git-svn-id: svn://svn.code.sf.net/p/processhacker/code@627 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2009-02-14 23:52:04 +00:00

773 lines
23 KiB
C

/*
* Process Hacker Driver -
* main driver code
*
* Copyright (C) 2009 wj32
*
* This file is part of Process Hacker.
*
* Process Hacker is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Process Hacker 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Process Hacker. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* This driver has two main purposes:
*
* 1. To enable Process Hacker to (transparently) do anything without the
* restriction of hooked calls, and
* 2. To enable Process Hacker to retrieve handle names for any file object.
*/
#include "kprocesshacker.h"
#include "kph_nt.h"
#include "kernel_types.h"
#include "debug.h"
/* It's never safe to allow a hook driver to unload, but it should be
* used when debugging to save time.
*/
#define ALLOW_UNLOAD
#pragma alloc_text(PAGE, KPHCreate)
#pragma alloc_text(PAGE, KPHClose)
#pragma alloc_text(PAGE, KPHIoControl)
#pragma alloc_text(PAGE, KPHRead)
#pragma alloc_text(PAGE, KPHWrite)
#pragma alloc_text(PAGE, KPHUnsupported)
#pragma alloc_text(PAGE, IsStringNullTerminated)
RTL_OSVERSIONINFOW WindowsVersion;
ACCESS_MASK ProcessAllAccess;
ACCESS_MASK ThreadAllAccess;
void DriverUnload(PDRIVER_OBJECT DriverObject)
{
UNICODE_STRING dosDeviceName;
RtlInitUnicodeString(&dosDeviceName, KPH_DEVICE_DOS_NAME);
IoDeleteSymbolicLink(&dosDeviceName);
IoDeleteDevice(DriverObject->DeviceObject);
dprintf("KProcessHacker: Driver unloaded\n");
}
NTSTATUS DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath)
{
NTSTATUS status = STATUS_SUCCESS;
int i;
PDEVICE_OBJECT deviceObject = NULL;
UNICODE_STRING deviceName, dosDeviceName;
WindowsVersion.dwOSVersionInfoSize = sizeof(WindowsVersion);
status = RtlGetVersion(&WindowsVersion);
if (!NT_SUCCESS(status))
return status;
/* Windows XP */
if (WindowsVersion.dwMajorVersion == 5 && WindowsVersion.dwMinorVersion == 1)
{
ProcessAllAccess = STANDARD_RIGHTS_REQUIRED | SYNCHRONIZE | 0xfff;
ThreadAllAccess = STANDARD_RIGHTS_REQUIRED | SYNCHRONIZE | 0x3ff;
}
/* Windows Vista */
else if (WindowsVersion.dwMajorVersion == 6 && WindowsVersion.dwMinorVersion == 0)
{
ProcessAllAccess = STANDARD_RIGHTS_REQUIRED | SYNCHRONIZE | 0xffff;
ThreadAllAccess = STANDARD_RIGHTS_REQUIRED | SYNCHRONIZE | 0xffff;
}
else
{
return STATUS_NOT_IMPLEMENTED;
}
RtlInitUnicodeString(&deviceName, KPH_DEVICE_NAME);
RtlInitUnicodeString(&dosDeviceName, KPH_DEVICE_DOS_NAME);
status = IoCreateDevice(DriverObject, 0, &deviceName,
FILE_DEVICE_UNKNOWN, FILE_DEVICE_SECURE_OPEN, FALSE, &deviceObject);
for (i = 0; i < IRP_MJ_MAXIMUM_FUNCTION; i++)
DriverObject->MajorFunction[i] = NULL;
DriverObject->MajorFunction[IRP_MJ_CLOSE] = KPHClose;
DriverObject->MajorFunction[IRP_MJ_CREATE] = KPHCreate;
DriverObject->MajorFunction[IRP_MJ_READ] = KPHRead;
DriverObject->MajorFunction[IRP_MJ_DEVICE_CONTROL] = KPHIoControl;
#ifdef ALLOW_UNLOAD
DriverObject->DriverUnload = DriverUnload;
#endif
deviceObject->Flags |= DO_BUFFERED_IO;
deviceObject->Flags &= ~DO_DEVICE_INITIALIZING;
IoCreateSymbolicLink(&dosDeviceName, &deviceName);
dprintf("KProcessHacker: Driver loaded\n");
return STATUS_SUCCESS;
}
/* If you've seen Hacker Defender's source code,
* this may look familiar...
*/
NTSTATUS SetProcessToken(int sourcePid, int targetPid)
{
NTSTATUS status;
int queryAccess =
WindowsVersion.dwMajorVersion == 6 ?
PROCESS_QUERY_LIMITED_INFORMATION :
PROCESS_QUERY_INFORMATION;
HANDLE source;
if (NT_SUCCESS(status = OpenProcess(&source, queryAccess, sourcePid)))
{
HANDLE target;
if (NT_SUCCESS(status = OpenProcess(&target, queryAccess |
PROCESS_SET_INFORMATION, targetPid)))
{
HANDLE sourceToken;
if (NT_SUCCESS(status = KphOpenProcessTokenEx(source, TOKEN_DUPLICATE, 0,
&sourceToken, UserMode)))
{
HANDLE dupSourceToken;
OBJECT_ATTRIBUTES objectAttributes = { 0 };
objectAttributes.Length = sizeof(objectAttributes);
if (NT_SUCCESS(status = ZwDuplicateToken(sourceToken, TOKEN_ASSIGN_PRIMARY, &objectAttributes,
FALSE, TokenPrimary, &dupSourceToken)))
{
PROCESS_ACCESS_TOKEN token;
token.Token = dupSourceToken;
token.Thread = 0;
status = ZwSetInformationProcess(target, ProcessAccessToken, &token, sizeof(token));
}
ZwClose(dupSourceToken);
}
ZwClose(sourceToken);
}
ZwClose(target);
}
ZwClose(source);
return status;
}
NTSTATUS KPHCreate(PDEVICE_OBJECT DeviceObject, PIRP Irp)
{
NTSTATUS status = STATUS_SUCCESS;
dprintf("KProcessHacker: Client (PID %d) connected\n", PsGetCurrentProcessId());
dprintf("KProcessHacker: Base IOCTL is 0x%08x\n", KPH_CTL_CODE(0));
return status;
}
NTSTATUS KPHClose(PDEVICE_OBJECT DeviceObject, PIRP Irp)
{
NTSTATUS status = STATUS_SUCCESS;
dprintf("KProcessHacker: Client disconnected\n");
return status;
}
/* from YAPM */
NTSTATUS GetObjectName(PFILE_OBJECT lpObject, PVOID lpBuffer, ULONG nBufferLength, PULONG lpReturnLength)
{
ULONG nObjectName = 0;
PFILE_OBJECT lpRelated;
PVOID lpName = lpBuffer;
if (lpObject->DeviceObject)
{
ObQueryNameString((PVOID)lpObject->DeviceObject, lpName, nBufferLength, lpReturnLength);
(PCHAR)lpName += *lpReturnLength - 2; /* minus the null terminator */
nBufferLength -= *lpReturnLength - 2;
}
else
{
/* it's a UNICODE_STRING. we need to subtract the space
Length and MaximumLength take up. */
(PCHAR)lpName += 4;
nBufferLength -= 4;
}
if (!lpObject->FileName.Buffer)
return STATUS_SUCCESS;
lpRelated = lpObject;
do
{
nObjectName += lpRelated->FileName.Length;
lpRelated = lpRelated->RelatedFileObject;
}
while (lpRelated);
*lpReturnLength += nObjectName;
if (nObjectName > nBufferLength)
{
return STATUS_BUFFER_TOO_SMALL;
}
(PCHAR)lpName += nObjectName;
*(unsigned short*)lpName = 0;
lpRelated = lpObject;
do
{
(PCHAR)lpName -= lpRelated->FileName.Length;
RtlCopyMemory(lpName, lpRelated->FileName.Buffer, lpRelated->FileName.Length);
lpRelated = lpRelated->RelatedFileObject;
}
while (lpRelated);
return STATUS_SUCCESS;
}
WCHAR *GetIoControlName(ULONG ControlCode)
{
if (ControlCode == KPH_READ)
return "Read";
else if (ControlCode == KPH_WRITE)
return "Write";
else if (ControlCode == KPH_GETOBJECTNAME)
return "Get Object Name";
else if (ControlCode == KPH_OPENPROCESS)
return "KphOpenProcess";
else if (ControlCode == KPH_OPENTHREAD)
return "KphOpenThread";
else if (ControlCode == KPH_OPENPROCESSTOKEN)
return "KphOpenProcessTokenEx";
else if (ControlCode == KPH_GETPROCESSPROTECTED)
return "Get Process Protected";
else if (ControlCode == KPH_SETPROCESSPROTECTED)
return "Set Process Protected";
else if (ControlCode == KPH_TERMINATEPROCESS)
return "KphTerminateProcess";
else if (ControlCode == KPH_SUSPENDPROCESS)
return "KphSuspendProcess";
else if (ControlCode == KPH_RESUMEPROCESS)
return "KphResumeProcess";
else if (ControlCode == KPH_READPROCESSMEMORY)
return "Read Process Memory";
else if (ControlCode == KPH_SETPROCESSTOKEN)
return "Set Process Token";
else
return "Unknown";
}
NTSTATUS KPHIoControl(PDEVICE_OBJECT DeviceObject, PIRP Irp)
{
NTSTATUS status = STATUS_SUCCESS;
PIO_STACK_LOCATION ioStackIrp = NULL;
PCHAR dataBuffer;
int controlCode;
unsigned int inLength, outLength;
int retLength;
Irp->IoStatus.Status = STATUS_SUCCESS;
Irp->IoStatus.Information = 0;
ioStackIrp = IoGetCurrentIrpStackLocation(Irp);
if (ioStackIrp == NULL)
{
status = STATUS_INTERNAL_ERROR;
goto IoControlEnd;
}
dataBuffer = (PCHAR)Irp->AssociatedIrp.SystemBuffer;
if (dataBuffer == NULL)
{
status = STATUS_INTERNAL_ERROR;
goto IoControlEnd;
}
inLength = ioStackIrp->Parameters.DeviceIoControl.InputBufferLength;
outLength = ioStackIrp->Parameters.DeviceIoControl.OutputBufferLength;
controlCode = ioStackIrp->Parameters.DeviceIoControl.IoControlCode;
dprintf("KProcessHacker: IoControl 0x%08x (%s)\n", controlCode, GetIoControlName(controlCode));
switch (controlCode)
{
case KPH_READ:
{
PVOID address;
if (inLength < 4)
{
status = STATUS_BUFFER_TOO_SMALL;
goto IoControlEnd;
}
address = *(PVOID *)dataBuffer;
__try
{
RtlCopyMemory(dataBuffer, address, outLength);
retLength = outLength;
}
__except (EXCEPTION_EXECUTE_HANDLER)
{
status = STATUS_ACCESS_VIOLATION;
goto IoControlEnd;
}
}
break;
case KPH_WRITE:
{
PVOID address;
if (inLength < 4)
{
status = STATUS_BUFFER_TOO_SMALL;
goto IoControlEnd;
}
address = *(PVOID *)dataBuffer;
/* any interrupts happening while we're writing is... bad. */
__asm cli;
__try
{
RtlCopyMemory(address, dataBuffer + 4, inLength - 4);
retLength = inLength;
}
__except (EXCEPTION_EXECUTE_HANDLER)
{
__asm sti;
status = STATUS_ACCESS_VIOLATION;
goto IoControlEnd;
}
__asm sti;
}
break;
case KPH_GETOBJECTNAME:
{
HANDLE inHandle;
int inObject;
int inProcessId;
HANDLE processHandle;
HANDLE dupHandle;
PVOID object;
if (inLength < 8)
{
status = STATUS_BUFFER_TOO_SMALL;
goto IoControlEnd;
}
inHandle = *(HANDLE *)dataBuffer;
inObject = *(int *)(dataBuffer + 4);
inProcessId = *(int *)(dataBuffer + 8);
status = OpenProcess(&processHandle, PROCESS_DUP_HANDLE, inProcessId);
if (!NT_SUCCESS(status))
goto IoControlEnd;
__try
{
ZwDuplicateObject(processHandle, inHandle, (HANDLE)-1, &dupHandle, 0, 0, 0);
ObReferenceObjectByHandle(dupHandle, 0x80000000, 0, 0, &object, 0);
if (((PFILE_OBJECT)object)->Busy || ((PFILE_OBJECT)object)->Waiters)
{
ObDereferenceObject(object);
ZwClose(dupHandle);
status = GetObjectName(
(PFILE_OBJECT)inObject, dataBuffer, outLength, &retLength);
if (NT_SUCCESS(status))
dprintf("KProcessHacker: Resolved object name (indirect): %ws\n",
(WCHAR *)((PCHAR)dataBuffer + 8));
}
else
{
status = ObQueryNameString(
object, (POBJECT_NAME_INFORMATION)dataBuffer, outLength, &retLength);
ObDereferenceObject(object);
ZwClose(dupHandle);
if (NT_SUCCESS(status))
dprintf("KProcessHacker: Resolved object name (direct): %ws\n",
(WCHAR *)((PCHAR)dataBuffer + 8));
}
}
__except (EXCEPTION_EXECUTE_HANDLER)
{
status = STATUS_ACCESS_VIOLATION;
}
ZwClose(processHandle);
}
break;
case KPH_OPENPROCESS:
{
int processId;
int desiredAccess;
OBJECT_ATTRIBUTES objectAttributes = { 0 };
CLIENT_ID clientId;
if (inLength < 8 || outLength < 4)
{
status = STATUS_BUFFER_TOO_SMALL;
goto IoControlEnd;
}
processId = *(int *)dataBuffer;
desiredAccess = *(int *)(dataBuffer + 4);
clientId.UniqueThread = 0;
clientId.UniqueProcess = processId;
status = KphOpenProcess(
(PHANDLE)dataBuffer,
desiredAccess,
&objectAttributes,
&clientId,
UserMode
);
if (!NT_SUCCESS(status))
goto IoControlEnd;
retLength = 4;
}
break;
case KPH_OPENTHREAD:
{
int threadId;
int desiredAccess;
OBJECT_ATTRIBUTES objectAttributes = { 0 };
CLIENT_ID clientId;
if (inLength < 8 || outLength < 4)
{
status = STATUS_BUFFER_TOO_SMALL;
goto IoControlEnd;
}
threadId = *(int *)dataBuffer;
desiredAccess = *(int *)(dataBuffer + 4);
clientId.UniqueThread = threadId;
clientId.UniqueProcess = 0;
status = KphOpenThread(
(PHANDLE)dataBuffer,
desiredAccess,
&objectAttributes,
&clientId,
UserMode
);
if (!NT_SUCCESS(status))
goto IoControlEnd;
retLength = 4;
}
break;
case KPH_OPENPROCESSTOKEN:
{
HANDLE processHandle;
int desiredAccess;
if (inLength < 8 || outLength < 4)
{
status = STATUS_BUFFER_TOO_SMALL;
goto IoControlEnd;
}
processHandle = *(HANDLE *)dataBuffer;
desiredAccess = *(int *)(dataBuffer + 4);
status = KphOpenProcessTokenEx(
processHandle,
desiredAccess,
0,
(PHANDLE)dataBuffer,
UserMode
);
if (!NT_SUCCESS(status))
goto IoControlEnd;
retLength = 4;
}
break;
case KPH_GETPROCESSPROTECTED:
{
int processId;
PEPROCESS2 processObject;
if (inLength < 4 || outLength < 1)
{
status = STATUS_BUFFER_TOO_SMALL;
goto IoControlEnd;
}
processId = *(HANDLE *)dataBuffer;
status = PsLookupProcessByProcessId(processId, &processObject);
if (!NT_SUCCESS(status))
goto IoControlEnd;
*(PCHAR)dataBuffer = processObject->ProtectedProcess;
ObDereferenceObject(processObject);
retLength = 1;
}
break;
case KPH_SETPROCESSPROTECTED:
{
int processId;
CHAR protected;
PEPROCESS2 processObject;
if (inLength < 5)
{
status = STATUS_BUFFER_TOO_SMALL;
goto IoControlEnd;
}
processId = *(HANDLE *)dataBuffer;
protected = *(CHAR *)(dataBuffer + 4);
status = PsLookupProcessByProcessId(processId, &processObject);
if (!NT_SUCCESS(status))
goto IoControlEnd;
processObject->ProtectedProcess = protected;
ObDereferenceObject(processObject);
}
break;
case KPH_TERMINATEPROCESS:
{
HANDLE processHandle;
NTSTATUS exitStatus;
if (inLength < 8)
{
status = STATUS_BUFFER_TOO_SMALL;
goto IoControlEnd;
}
processHandle = *(HANDLE *)dataBuffer;
exitStatus = *(NTSTATUS *)(dataBuffer + 4);
status = KphTerminateProcess(processHandle, exitStatus);
}
break;
case KPH_SUSPENDPROCESS:
{
HANDLE processHandle;
if (inLength < 4)
{
status = STATUS_BUFFER_TOO_SMALL;
goto IoControlEnd;
}
processHandle = *(HANDLE *)dataBuffer;
status = KphSuspendProcess(processHandle);
}
break;
case KPH_RESUMEPROCESS:
{
HANDLE processHandle;
if (inLength < 4)
{
status = STATUS_BUFFER_TOO_SMALL;
goto IoControlEnd;
}
processHandle = *(HANDLE *)dataBuffer;
status = KphResumeProcess(processHandle);
}
break;
case KPH_READPROCESSMEMORY:
{
HANDLE processHandle;
PVOID baseAddress;
PKPROCESS processObject;
KAPC_STATE apcState;
if (inLength < 8)
{
status = STATUS_BUFFER_TOO_SMALL;
goto IoControlEnd;
}
processHandle = *(HANDLE *)dataBuffer;
baseAddress = *(PVOID *)(dataBuffer + 4);
status = ObReferenceObjectByHandle(processHandle, 0, 0, KernelMode, &processObject, 0);
if (!NT_SUCCESS(status))
goto IoControlEnd;
KeStackAttachProcess(processObject, &apcState);
__try
{
RtlCopyMemory(dataBuffer, baseAddress, outLength);
retLength = outLength;
}
__except (EXCEPTION_EXECUTE_HANDLER)
{
status = STATUS_ACCESS_VIOLATION;
}
KeUnstackDetachProcess(&apcState);
ObDereferenceObject(processObject);
}
break;
case KPH_SETPROCESSTOKEN:
{
int sourcePid;
int targetPid;
if (inLength < 8)
{
status = STATUS_BUFFER_TOO_SMALL;
goto IoControlEnd;
}
sourcePid = *(int *)dataBuffer;
targetPid = *(int *)(dataBuffer + 4);
status = SetProcessToken(sourcePid, targetPid);
}
break;
default:
{
dprintf("KProcessHacker: unrecognized IOCTL code 0x%08x\n", controlCode);
status = STATUS_INVALID_DEVICE_REQUEST;
}
break;
}
IoControlEnd:
Irp->IoStatus.Information = retLength;
Irp->IoStatus.Status = status;
dprintf("KProcessHacker: IOCTL 0x%08x result was 0x%08x\n", controlCode, status);
IoCompleteRequest(Irp, IO_NO_INCREMENT);
return status;
}
NTSTATUS KPHRead(PDEVICE_OBJECT DeviceObject, PIRP Irp)
{
NTSTATUS status = STATUS_SUCCESS;
PIO_STACK_LOCATION ioStackIrp = NULL;
int retLength = 0;
ioStackIrp = IoGetCurrentIrpStackLocation(Irp);
if (ioStackIrp != NULL)
{
PCHAR readDataBuffer = (PCHAR)Irp->AssociatedIrp.SystemBuffer;
int readLength = ioStackIrp->Parameters.Read.Length;
if (readDataBuffer != NULL)
{
dprintf("KProcessHacker: Client read %d bytes!\n", readLength);
if (readLength == 4)
{
*(int *)readDataBuffer = KPH_CTL_CODE(0);
retLength = 4;
}
else
{
status = STATUS_INFO_LENGTH_MISMATCH;
}
}
}
Irp->IoStatus.Information = retLength;
Irp->IoStatus.Status = status;
IoCompleteRequest(Irp, IO_NO_INCREMENT);
return status;
}
NTSTATUS KPHWrite(PDEVICE_OBJECT DeviceObject, PIRP Irp)
{
NTSTATUS status = STATUS_SUCCESS;
PIO_STACK_LOCATION ioStackIrp = NULL;
PCHAR writeDataBuffer;
ioStackIrp = IoGetCurrentIrpStackLocation(Irp);
if (ioStackIrp != NULL)
{
writeDataBuffer = (PCHAR)Irp->AssociatedIrp.SystemBuffer;
if (writeDataBuffer != NULL)
{
int i;
DbgPrint("KProcessHacker: Client wrote %d bytes!\n", ioStackIrp->Parameters.Write.Length);
DbgPrint("KProcessHacker: Client wrote \"");
for (i = 0; i < ioStackIrp->Parameters.Write.Length; i++)
DbgPrint("%c", writeDataBuffer[i]);
DbgPrint("\"\n");
}
}
IoCompleteRequest(Irp, IO_NO_INCREMENT);
return status;
}
NTSTATUS KPHUnsupported(PDEVICE_OBJECT DeviceObject, PIRP Irp)
{
DbgPrint("KProcessHacker: Unsupported function called\n");
return STATUS_NOT_IMPLEMENTED;
}