2017-04-27 22:06:42 +00:00
|
|
|
/*
|
|
|
|
* Rufus: The Reliable USB Formatting Utility
|
2017-04-30 20:59:18 +00:00
|
|
|
* Process search functionality
|
2017-04-27 22:06:42 +00:00
|
|
|
*
|
|
|
|
* Modified from Process Hacker:
|
|
|
|
* https://github.com/processhacker2/processhacker2/
|
|
|
|
* Copyright © 2009-2016 wj32
|
|
|
|
* Copyright © 2017 dmex
|
|
|
|
* Copyright © 2017 Pete Batard <pete@akeo.ie>
|
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef _CRTDBG_MAP_ALLOC
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <crtdbg.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
#include "rufus.h"
|
2017-04-30 20:59:18 +00:00
|
|
|
#include "process.h"
|
2017-04-27 22:06:42 +00:00
|
|
|
#include "missing.h"
|
|
|
|
#include "msapi_utf8.h"
|
|
|
|
|
2017-04-29 16:14:16 +00:00
|
|
|
// Process Hacker does some filtering using Object Types, but this doesn't help us.
|
|
|
|
// Keep this option, just in case.
|
|
|
|
// #define USE_OBJECT_TYPES
|
|
|
|
|
2017-04-27 22:06:42 +00:00
|
|
|
PF_TYPE_DECL(NTAPI, PVOID, RtlCreateHeap, (ULONG, PVOID, SIZE_T, SIZE_T, PVOID, PRTL_HEAP_PARAMETERS));
|
2017-04-29 16:14:16 +00:00
|
|
|
PF_TYPE_DECL(NTAPI, PVOID, RtlDestroyHeap, (PVOID));
|
2017-04-27 22:06:42 +00:00
|
|
|
PF_TYPE_DECL(NTAPI, PVOID, RtlAllocateHeap, (PVOID, ULONG, SIZE_T));
|
|
|
|
PF_TYPE_DECL(NTAPI, BOOLEAN, RtlFreeHeap, (PVOID, ULONG, PVOID));
|
2017-04-29 16:14:16 +00:00
|
|
|
#ifdef USE_OBJECT_TYPES
|
|
|
|
PF_TYPE_DECL(NTAPI, VOID, RtlInitUnicodeString, (PUNICODE_STRING, PCWSTR));
|
|
|
|
PF_TYPE_DECL(NTAPI, BOOLEAN, RtlEqualUnicodeString, (PCUNICODE_STRING, PCUNICODE_STRING, BOOLEAN));
|
|
|
|
#endif
|
2017-04-27 22:06:42 +00:00
|
|
|
|
|
|
|
PF_TYPE_DECL(NTAPI, NTSTATUS, NtQuerySystemInformation, (SYSTEM_INFORMATION_CLASS, PVOID, ULONG, PULONG));
|
|
|
|
PF_TYPE_DECL(NTAPI, NTSTATUS, NtQueryObject, (HANDLE, OBJECT_INFORMATION_CLASS, PVOID, ULONG, PULONG));
|
|
|
|
PF_TYPE_DECL(NTAPI, NTSTATUS, NtDuplicateObject, (HANDLE, HANDLE, HANDLE, PHANDLE, ACCESS_MASK, ULONG, ULONG));
|
|
|
|
PF_TYPE_DECL(NTAPI, NTSTATUS, NtOpenProcess, (PHANDLE, ACCESS_MASK, POBJECT_ATTRIBUTES, PCLIENT_ID));
|
2017-05-02 13:07:04 +00:00
|
|
|
PF_TYPE_DECL(NTAPI, NTSTATUS, NtOpenProcessToken, (HANDLE, ACCESS_MASK, PHANDLE));
|
|
|
|
PF_TYPE_DECL(NTAPI, NTSTATUS, NtAdjustPrivilegesToken, (HANDLE, BOOLEAN, PTOKEN_PRIVILEGES, ULONG, PTOKEN_PRIVILEGES, PULONG));
|
2017-04-27 22:06:42 +00:00
|
|
|
PF_TYPE_DECL(NTAPI, NTSTATUS, NtClose, (HANDLE));
|
|
|
|
|
2017-05-02 13:07:04 +00:00
|
|
|
static PVOID PhHeapHandle = NULL;
|
2017-04-27 22:06:42 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Convert an NT Status to an error message
|
|
|
|
*
|
|
|
|
* \param Status An operattonal status.
|
|
|
|
*
|
|
|
|
* \return An error message string.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static char* NtStatusError(NTSTATUS Status) {
|
|
|
|
static char unknown[32];
|
|
|
|
|
|
|
|
switch (Status) {
|
2017-05-02 13:07:04 +00:00
|
|
|
case STATUS_SUCCESS:
|
|
|
|
return "Operation Successful";
|
2017-04-27 22:06:42 +00:00
|
|
|
case STATUS_UNSUCCESSFUL:
|
|
|
|
return "Operation Failed";
|
|
|
|
case STATUS_BUFFER_OVERFLOW:
|
|
|
|
return "Buffer Overflow";
|
2017-04-29 16:14:16 +00:00
|
|
|
case STATUS_NOT_IMPLEMENTED:
|
|
|
|
return "Not Implemented";
|
|
|
|
case STATUS_INFO_LENGTH_MISMATCH:
|
|
|
|
return "Info Length Mismatch";
|
2017-04-27 22:06:42 +00:00
|
|
|
case STATUS_INVALID_HANDLE:
|
|
|
|
return "Invalid Handle.";
|
|
|
|
case STATUS_INVALID_PARAMETER:
|
|
|
|
return "Invalid Parameter";
|
|
|
|
case STATUS_NO_MEMORY:
|
|
|
|
return "Not Enough Quota";
|
|
|
|
case STATUS_ACCESS_DENIED:
|
|
|
|
return "Access Denied";
|
|
|
|
case STATUS_BUFFER_TOO_SMALL:
|
|
|
|
return "Buffer Too Small";
|
|
|
|
case STATUS_OBJECT_TYPE_MISMATCH:
|
|
|
|
return "Wrong Type";
|
|
|
|
case STATUS_OBJECT_NAME_INVALID:
|
2017-04-29 16:14:16 +00:00
|
|
|
return "Object Name Invalid";
|
2017-04-27 22:06:42 +00:00
|
|
|
case STATUS_OBJECT_NAME_NOT_FOUND:
|
|
|
|
return "Object Name not found";
|
2017-04-29 16:14:16 +00:00
|
|
|
case STATUS_OBJECT_PATH_INVALID:
|
|
|
|
return "Object Path Invalid";
|
2017-04-27 22:06:42 +00:00
|
|
|
case STATUS_SHARING_VIOLATION:
|
|
|
|
return "Sharing Violation";
|
|
|
|
case STATUS_INSUFFICIENT_RESOURCES:
|
|
|
|
return "Insufficient resources";
|
|
|
|
case STATUS_NOT_SUPPORTED:
|
|
|
|
return "Operation is not supported";
|
|
|
|
default:
|
|
|
|
safe_sprintf(unknown, sizeof(unknown), "Unknown error 0x%08lx", Status);
|
|
|
|
return unknown;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-29 16:14:16 +00:00
|
|
|
|
|
|
|
static NTSTATUS PhCreateHeap(VOID)
|
|
|
|
{
|
|
|
|
NTSTATUS status = STATUS_SUCCESS;
|
|
|
|
|
|
|
|
if (PhHeapHandle != NULL)
|
|
|
|
return STATUS_ALREADY_COMPLETE;
|
|
|
|
|
|
|
|
PF_INIT_OR_SET_STATUS(RtlCreateHeap, Ntdll);
|
|
|
|
|
|
|
|
if (NT_SUCCESS(status)) {
|
|
|
|
PhHeapHandle = pfRtlCreateHeap(HEAP_NO_SERIALIZE | HEAP_GROWABLE, NULL, 2 * MB, 1 * MB, NULL, NULL);
|
|
|
|
if (PhHeapHandle == NULL)
|
|
|
|
status = STATUS_UNSUCCESSFUL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
static NTSTATUS PhDestroyHeap(VOID)
|
|
|
|
{
|
|
|
|
NTSTATUS status = STATUS_SUCCESS;
|
|
|
|
|
|
|
|
if (PhHeapHandle == NULL)
|
|
|
|
return STATUS_ALREADY_COMPLETE;
|
|
|
|
|
|
|
|
PF_INIT_OR_SET_STATUS(RtlDestroyHeap, Ntdll);
|
|
|
|
|
|
|
|
if (NT_SUCCESS(status)) {
|
|
|
|
if (pfRtlDestroyHeap(PhHeapHandle) == NULL) {
|
|
|
|
PhHeapHandle = NULL;
|
|
|
|
} else {
|
|
|
|
status = STATUS_UNSUCCESSFUL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2017-04-27 22:06:42 +00:00
|
|
|
/**
|
|
|
|
* Allocates a block of memory.
|
|
|
|
*
|
|
|
|
* \param Size The number of bytes to allocate.
|
|
|
|
*
|
|
|
|
* \return A pointer to the allocated block of memory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static PVOID PhAllocate(SIZE_T Size)
|
|
|
|
{
|
2017-04-29 16:14:16 +00:00
|
|
|
PF_INIT(RtlAllocateHeap, Ntdll);
|
|
|
|
if (pfRtlAllocateHeap == NULL)
|
|
|
|
return NULL;
|
2017-04-27 22:06:42 +00:00
|
|
|
|
|
|
|
return pfRtlAllocateHeap(PhHeapHandle, 0, Size);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Frees a block of memory allocated with PhAllocate().
|
|
|
|
*
|
|
|
|
* \param Memory A pointer to a block of memory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static VOID PhFree(PVOID Memory)
|
|
|
|
{
|
|
|
|
PF_INIT(RtlFreeHeap, Ntdll);
|
2017-04-29 16:14:16 +00:00
|
|
|
|
2017-04-27 22:06:42 +00:00
|
|
|
if (pfRtlFreeHeap != NULL)
|
|
|
|
pfRtlFreeHeap(PhHeapHandle, 0, Memory);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enumerates all open handles.
|
|
|
|
*
|
|
|
|
* \param Handles A variable which receives a pointer to a structure containing information about
|
|
|
|
* all opened handles. You must free the structure using PhFree() when you no longer need it.
|
|
|
|
*
|
|
|
|
* \return An NTStatus indicating success or the error code.
|
|
|
|
*/
|
|
|
|
NTSTATUS PhEnumHandlesEx(PSYSTEM_HANDLE_INFORMATION_EX *Handles)
|
|
|
|
{
|
|
|
|
static ULONG initialBufferSize = 0x10000;
|
2017-04-29 16:14:16 +00:00
|
|
|
NTSTATUS status = STATUS_SUCCESS;
|
2017-04-27 22:06:42 +00:00
|
|
|
PVOID buffer;
|
|
|
|
ULONG bufferSize;
|
|
|
|
|
2017-04-29 16:14:16 +00:00
|
|
|
PF_INIT_OR_SET_STATUS(NtQuerySystemInformation, Ntdll);
|
|
|
|
if (!NT_SUCCESS(status))
|
|
|
|
return status;
|
2017-04-27 22:06:42 +00:00
|
|
|
|
|
|
|
bufferSize = initialBufferSize;
|
|
|
|
buffer = PhAllocate(bufferSize);
|
|
|
|
if (buffer == NULL)
|
|
|
|
return STATUS_NO_MEMORY;
|
|
|
|
|
|
|
|
while ((status = pfNtQuerySystemInformation(SystemExtendedHandleInformation,
|
|
|
|
buffer, bufferSize, NULL)) == STATUS_INFO_LENGTH_MISMATCH) {
|
|
|
|
PhFree(buffer);
|
|
|
|
bufferSize *= 2;
|
|
|
|
|
|
|
|
// Fail if we're resizing the buffer to something very large.
|
|
|
|
if (bufferSize > PH_LARGE_BUFFER_SIZE)
|
|
|
|
return STATUS_INSUFFICIENT_RESOURCES;
|
|
|
|
|
|
|
|
buffer = PhAllocate(bufferSize);
|
|
|
|
if (buffer == NULL)
|
|
|
|
return STATUS_NO_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!NT_SUCCESS(status)) {
|
|
|
|
PhFree(buffer);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bufferSize <= 0x200000)
|
|
|
|
initialBufferSize = bufferSize;
|
|
|
|
*Handles = (PSYSTEM_HANDLE_INFORMATION_EX)buffer;
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Opens a process.
|
|
|
|
*
|
|
|
|
* \param ProcessHandle A variable which receives a handle to the process.
|
|
|
|
* \param DesiredAccess The desired access to the process.
|
|
|
|
* \param ProcessId The ID of the process.
|
|
|
|
*
|
|
|
|
* \return An NTStatus indicating success or the error code.
|
|
|
|
*/
|
|
|
|
NTSTATUS PhOpenProcess(PHANDLE ProcessHandle, ACCESS_MASK DesiredAccess, HANDLE ProcessId)
|
|
|
|
{
|
2017-04-29 16:14:16 +00:00
|
|
|
NTSTATUS status = STATUS_SUCCESS;
|
2017-04-27 22:06:42 +00:00
|
|
|
OBJECT_ATTRIBUTES objectAttributes;
|
|
|
|
CLIENT_ID clientId;
|
|
|
|
|
|
|
|
if ((LONG_PTR)ProcessId == (LONG_PTR)GetCurrentProcessId()) {
|
|
|
|
*ProcessHandle = NtCurrentProcess();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-04-29 16:14:16 +00:00
|
|
|
PF_INIT_OR_SET_STATUS(NtOpenProcess, Ntdll);
|
|
|
|
if (!NT_SUCCESS(status))
|
|
|
|
return status;
|
2017-04-27 22:06:42 +00:00
|
|
|
|
|
|
|
clientId.UniqueProcess = ProcessId;
|
|
|
|
clientId.UniqueThread = NULL;
|
|
|
|
|
|
|
|
InitializeObjectAttributes(&objectAttributes, NULL, 0, NULL, NULL);
|
|
|
|
status = pfNtOpenProcess(ProcessHandle, DesiredAccess, &objectAttributes, &clientId);
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2017-04-29 16:14:16 +00:00
|
|
|
#ifdef USE_OBJECT_TYPES
|
|
|
|
NTSTATUS PhEnumObjectTypes(POBJECT_TYPES_INFORMATION *ObjectTypes)
|
|
|
|
{
|
|
|
|
NTSTATUS status = STATUS_SUCCESS;
|
|
|
|
PVOID buffer;
|
|
|
|
ULONG bufferSize;
|
|
|
|
ULONG returnLength;
|
|
|
|
|
|
|
|
PF_INIT_OR_SET_STATUS(NtQueryObject, Ntdll);
|
|
|
|
if (!NT_SUCCESS(status))
|
|
|
|
return status;
|
|
|
|
|
|
|
|
bufferSize = 0x1000;
|
|
|
|
buffer = PhAllocate(bufferSize);
|
|
|
|
|
|
|
|
while ((status = pfNtQueryObject(NULL, ObjectTypesInformation, buffer, bufferSize, &returnLength)) == STATUS_INFO_LENGTH_MISMATCH) {
|
|
|
|
PhFree(buffer);
|
|
|
|
bufferSize *= 2;
|
|
|
|
|
|
|
|
// Fail if we're resizing the buffer to something very large.
|
|
|
|
if (bufferSize > PH_LARGE_BUFFER_SIZE)
|
|
|
|
return STATUS_INSUFFICIENT_RESOURCES;
|
|
|
|
|
|
|
|
buffer = PhAllocate(bufferSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!NT_SUCCESS(status)) {
|
|
|
|
PhFree(buffer);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
*ObjectTypes = (POBJECT_TYPES_INFORMATION)buffer;
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG PhGetObjectTypeNumber(PUNICODE_STRING TypeName)
|
|
|
|
{
|
|
|
|
NTSTATUS status = STATUS_SUCCESS;
|
|
|
|
POBJECT_TYPES_INFORMATION objectTypes;
|
|
|
|
POBJECT_TYPE_INFORMATION objectType;
|
|
|
|
ULONG objectIndex = -1;
|
|
|
|
ULONG i;
|
|
|
|
|
|
|
|
PF_INIT_OR_SET_STATUS(RtlEqualUnicodeString, NtDll);
|
|
|
|
if (!NT_SUCCESS(status))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
status = PhEnumObjectTypes(&objectTypes);
|
|
|
|
if (NT_SUCCESS(status)) {
|
|
|
|
objectType = PH_FIRST_OBJECT_TYPE(objectTypes);
|
|
|
|
|
|
|
|
for (i = 0; i < objectTypes->NumberOfTypes; i++) {
|
|
|
|
if (pfRtlEqualUnicodeString(&objectType->TypeName, TypeName, TRUE)) {
|
|
|
|
if (nWindowsVersion >= WINDOWS_8_1) {
|
|
|
|
objectIndex = objectType->TypeIndex;
|
|
|
|
break;
|
|
|
|
} else if (nWindowsVersion >= WINDOWS_7) {
|
|
|
|
objectIndex = i + 2;
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
objectIndex = i + 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
objectType = PH_NEXT_OBJECT_TYPE(objectType);
|
|
|
|
}
|
|
|
|
|
|
|
|
PhFree(objectTypes);
|
|
|
|
}
|
|
|
|
|
|
|
|
return objectIndex;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-04-27 22:06:42 +00:00
|
|
|
/**
|
|
|
|
* Search all the processes and list the ones that have a specific handle open.
|
|
|
|
*
|
|
|
|
* \param HandleName The name of the handle to look for.
|
|
|
|
* \param bPartialMatch Whether partial matches should be allowed.
|
|
|
|
* \param bIgnoreSelf Whether the current process should be listed.
|
|
|
|
*
|
|
|
|
* \return TRUE if matching processes were found, FALSE otherwise.
|
|
|
|
*/
|
|
|
|
BOOL SearchProcess(char* HandleName, BOOL bPartialMatch, BOOL bIgnoreSelf)
|
|
|
|
{
|
2017-05-01 18:50:47 +00:00
|
|
|
const char *access_rights_str[4] = { "n", "r", "w", "rw" };
|
2017-04-29 16:14:16 +00:00
|
|
|
NTSTATUS status = STATUS_SUCCESS;
|
|
|
|
PSYSTEM_HANDLE_INFORMATION_EX handles = NULL;
|
|
|
|
POBJECT_NAME_INFORMATION buffer = NULL;
|
|
|
|
#ifdef USE_OBJECT_TYPES
|
|
|
|
UNICODE_STRING fileTypeName;
|
|
|
|
ULONG fileObjectTypeIndex = -1;
|
|
|
|
#endif
|
2017-04-27 22:06:42 +00:00
|
|
|
ULONG_PTR i;
|
2017-04-29 16:14:16 +00:00
|
|
|
ULONG_PTR pid[2];
|
|
|
|
ULONG_PTR last_access_denied_pid = 0;
|
2017-04-27 22:06:42 +00:00
|
|
|
ULONG bufferSize;
|
|
|
|
USHORT wHandleNameLen;
|
2017-04-29 16:14:16 +00:00
|
|
|
WCHAR *wHandleName = NULL;
|
2017-04-27 22:06:42 +00:00
|
|
|
HANDLE dupHandle = NULL;
|
|
|
|
HANDLE processHandle = NULL;
|
|
|
|
BOOLEAN bFound = FALSE;
|
2017-05-01 18:50:47 +00:00
|
|
|
ULONG access_rights = 0;
|
|
|
|
char exe_path[MAX_PATH];
|
|
|
|
int cur_pid;
|
2017-04-29 16:14:16 +00:00
|
|
|
|
|
|
|
PF_INIT_OR_SET_STATUS(NtQueryObject, Ntdll);
|
|
|
|
PF_INIT_OR_SET_STATUS(NtDuplicateObject, NtDll);
|
|
|
|
PF_INIT_OR_SET_STATUS(NtClose, NtDll);
|
|
|
|
#ifdef USE_OBJECT_TYPES
|
2017-05-01 18:50:47 +00:00
|
|
|
PF_INIT_OR_SET_STATUS(RtlInitUnicodeString, NtDll);
|
2017-04-29 16:14:16 +00:00
|
|
|
#endif
|
2017-04-27 22:06:42 +00:00
|
|
|
|
2017-04-29 16:14:16 +00:00
|
|
|
if (NT_SUCCESS(status))
|
|
|
|
status = PhCreateHeap();
|
2017-04-27 22:06:42 +00:00
|
|
|
|
|
|
|
if (NT_SUCCESS(status))
|
|
|
|
status = PhEnumHandlesEx(&handles);
|
2017-04-29 16:14:16 +00:00
|
|
|
|
2017-04-27 22:06:42 +00:00
|
|
|
if (!NT_SUCCESS(status)) {
|
2017-04-29 16:14:16 +00:00
|
|
|
uprintf("Warning: Could not enumerate process handles: %s", NtStatusError(status));
|
|
|
|
goto out;
|
2017-04-27 22:06:42 +00:00
|
|
|
}
|
|
|
|
|
2017-05-01 18:50:47 +00:00
|
|
|
exe_path[0] = 0;
|
|
|
|
pid[0] = (ULONG_PTR)0;
|
2017-04-29 16:14:16 +00:00
|
|
|
cur_pid = 1;
|
2017-04-27 22:06:42 +00:00
|
|
|
|
|
|
|
wHandleName = utf8_to_wchar(HandleName);
|
2017-04-29 16:14:16 +00:00
|
|
|
wHandleNameLen = (USHORT)wcslen(wHandleName);
|
2017-04-27 22:06:42 +00:00
|
|
|
|
|
|
|
bufferSize = 0x200;
|
|
|
|
buffer = PhAllocate(bufferSize);
|
2017-04-29 16:14:16 +00:00
|
|
|
if (buffer == NULL)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
#ifdef USE_OBJECT_TYPES
|
|
|
|
pfRtlInitUnicodeString(&fileTypeName, L"File");
|
|
|
|
fileObjectTypeIndex = PhGetObjectTypeNumber(&fileTypeName);
|
|
|
|
if (fileObjectTypeIndex < 0)
|
|
|
|
uprintf("Warning: Could not get Object Index for file types");
|
|
|
|
#endif
|
2017-04-27 22:06:42 +00:00
|
|
|
|
|
|
|
for (i = 0; ; i++) {
|
|
|
|
ULONG attempts = 8;
|
2017-04-30 20:59:18 +00:00
|
|
|
PSYSTEM_HANDLE_TABLE_ENTRY_INFO_EX handleInfo =
|
|
|
|
(i < handles->NumberOfHandles) ? &handles->Handles[i] : NULL;
|
2017-04-27 22:06:42 +00:00
|
|
|
|
|
|
|
if ((dupHandle != NULL) && (processHandle != NtCurrentProcess())) {
|
|
|
|
pfNtClose(dupHandle);
|
|
|
|
dupHandle = NULL;
|
|
|
|
}
|
2017-04-29 16:14:16 +00:00
|
|
|
|
|
|
|
#ifdef USE_OBJECT_TYPES
|
|
|
|
// Only look for File objects type
|
2017-04-30 20:59:18 +00:00
|
|
|
if ((fileObjectTypeIndex >= 0 ) && (handleInfo != NULL) &&
|
|
|
|
(handleInfo->ObjectTypeIndex != (USHORT)fileObjectTypeIndex))
|
2017-04-29 16:14:16 +00:00
|
|
|
continue;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Update the current handle's process PID and compare against last
|
2017-04-30 20:59:18 +00:00
|
|
|
// Note: Be careful about not trying to overflow our list!
|
|
|
|
pid[cur_pid] = (handleInfo != NULL) ? handleInfo->UniqueProcessId : -1;
|
2017-04-29 16:14:16 +00:00
|
|
|
|
|
|
|
if (pid[0] != pid[1]) {
|
|
|
|
cur_pid = (cur_pid + 1) % 2;
|
2017-05-01 18:50:47 +00:00
|
|
|
|
|
|
|
// If we're switching process and found a match, print it
|
|
|
|
if (bFound) {
|
2017-05-03 13:48:24 +00:00
|
|
|
uprintf("‣ '%s' (pid: %ld, access: %s)", exe_path, pid[cur_pid], access_rights_str[access_rights & 0x3]);
|
2017-05-01 18:50:47 +00:00
|
|
|
bFound = FALSE;
|
|
|
|
access_rights = 0;
|
|
|
|
}
|
|
|
|
|
2017-04-29 16:14:16 +00:00
|
|
|
// Close the previous handle
|
|
|
|
if (processHandle != NULL) {
|
|
|
|
if (processHandle != NtCurrentProcess())
|
|
|
|
pfNtClose(processHandle);
|
|
|
|
processHandle = NULL;
|
|
|
|
}
|
2017-04-27 22:06:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CHECK_FOR_USER_CANCEL;
|
|
|
|
|
2017-04-30 20:59:18 +00:00
|
|
|
// Exit loop condition
|
|
|
|
if (i >= handles->NumberOfHandles)
|
|
|
|
break;
|
|
|
|
|
2017-04-29 16:14:16 +00:00
|
|
|
// Don't bother with processes we can't access
|
|
|
|
if (handleInfo->UniqueProcessId == last_access_denied_pid)
|
|
|
|
continue;
|
|
|
|
|
2017-04-30 20:59:18 +00:00
|
|
|
// Filter out handles that aren't opened with Read (bit 0) or Write (bit 1) access
|
|
|
|
if ((handleInfo->GrantedAccess & 0x3) == 0)
|
|
|
|
continue;
|
2017-04-27 22:06:42 +00:00
|
|
|
|
2017-04-29 16:14:16 +00:00
|
|
|
// Open the process to which the handle we are after belongs, if not already opened
|
|
|
|
if (pid[0] != pid[1]) {
|
|
|
|
status = PhOpenProcess(&processHandle, PROCESS_DUP_HANDLE | PROCESS_QUERY_INFORMATION,
|
|
|
|
(HANDLE)handleInfo->UniqueProcessId);
|
|
|
|
// There exists some processes we can't access
|
|
|
|
if (!NT_SUCCESS(status)) {
|
|
|
|
uuprintf("SearchProcess: Could not open process %ld: %s",
|
|
|
|
handleInfo->UniqueProcessId, NtStatusError(status));
|
|
|
|
processHandle = NULL;
|
|
|
|
if (status == STATUS_ACCESS_DENIED) {
|
|
|
|
last_access_denied_pid = handleInfo->UniqueProcessId;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2017-04-27 22:06:42 +00:00
|
|
|
|
2017-04-29 16:14:16 +00:00
|
|
|
// Now duplicate this handle onto our own process, so that we can access its properties
|
2017-04-27 22:06:42 +00:00
|
|
|
if (processHandle == NtCurrentProcess()) {
|
|
|
|
if (bIgnoreSelf)
|
|
|
|
continue;
|
|
|
|
dupHandle = (HANDLE)handleInfo->HandleValue;
|
|
|
|
} else {
|
|
|
|
status = pfNtDuplicateObject(processHandle, (HANDLE)handleInfo->HandleValue,
|
|
|
|
NtCurrentProcess(), &dupHandle, 0, 0, 0);
|
|
|
|
if (!NT_SUCCESS(status))
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Filter non-storage handles. We're not interested in them and they make NtQueryObject() freeze
|
|
|
|
if (GetFileType(dupHandle) != FILE_TYPE_DISK)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// A loop is needed because the I/O subsystem likes to give us the wrong return lengths...
|
|
|
|
do {
|
2017-04-29 16:14:16 +00:00
|
|
|
ULONG returnSize;
|
2017-05-01 18:50:47 +00:00
|
|
|
// TODO: We might potentially still need a timeout on ObjectName queries, as PH does...
|
2017-04-29 16:14:16 +00:00
|
|
|
status = pfNtQueryObject(dupHandle, ObjectNameInformation, buffer, bufferSize, &returnSize);
|
2017-04-27 22:06:42 +00:00
|
|
|
if (status == STATUS_BUFFER_OVERFLOW || status == STATUS_INFO_LENGTH_MISMATCH ||
|
|
|
|
status == STATUS_BUFFER_TOO_SMALL) {
|
2017-04-29 16:14:16 +00:00
|
|
|
uuprintf("SearchProcess: Realloc from %d to %d", bufferSize, returnSize);
|
|
|
|
bufferSize = returnSize;
|
2017-04-27 22:06:42 +00:00
|
|
|
PhFree(buffer);
|
|
|
|
buffer = PhAllocate(bufferSize);
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (--attempts);
|
2017-04-29 16:14:16 +00:00
|
|
|
if (!NT_SUCCESS(status)) {
|
|
|
|
uuprintf("SearchProcess: NtQueryObject failed for handle %X of process %ld: %s",
|
|
|
|
handleInfo->HandleValue, handleInfo->UniqueProcessId, NtStatusError(status));
|
2017-04-27 22:06:42 +00:00
|
|
|
continue;
|
2017-04-29 16:14:16 +00:00
|
|
|
}
|
2017-04-27 22:06:42 +00:00
|
|
|
|
|
|
|
// Don't bother comparing if we are looking for full match and the length is different
|
|
|
|
if ((!bPartialMatch) && (wHandleNameLen != buffer->Name.Length))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Likewise, if we are looking for a partial match and the current length is smaller
|
|
|
|
if ((bPartialMatch) && (wHandleNameLen > buffer->Name.Length))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Match against our target string
|
|
|
|
if (wcsncmp(wHandleName, buffer->Name.Buffer, wHandleNameLen) != 0)
|
|
|
|
continue;
|
|
|
|
|
2017-05-01 18:50:47 +00:00
|
|
|
// If we are here, we have a process accessing our target!
|
|
|
|
bFound = TRUE;
|
2017-04-27 22:06:42 +00:00
|
|
|
|
2017-05-01 18:50:47 +00:00
|
|
|
// Keep a mask of all the access rights being used
|
|
|
|
access_rights |= handleInfo->GrantedAccess;
|
|
|
|
|
|
|
|
// If this is the very first process we find, print a header
|
|
|
|
if (exe_path[0] == 0)
|
2017-05-03 13:48:24 +00:00
|
|
|
uprintf("NOTE: The following process(es) or service(s) are accessing %s:", HandleName);
|
2017-05-01 18:50:47 +00:00
|
|
|
|
|
|
|
if (!GetModuleFileNameExU(processHandle, 0, exe_path, MAX_PATH - 1))
|
2017-05-01 22:55:58 +00:00
|
|
|
safe_sprintf(exe_path, MAX_PATH, "Unknown_Process_%" PRIu64,
|
|
|
|
(ULONGLONG) handleInfo->UniqueProcessId);
|
2017-04-27 22:06:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
2017-05-01 18:50:47 +00:00
|
|
|
if (exe_path[0] != 0)
|
2017-04-27 22:06:42 +00:00
|
|
|
uprintf("You should try to close these applications before attempting to reformat the drive.");
|
|
|
|
else
|
2017-05-03 13:48:24 +00:00
|
|
|
uprintf("NOTE: Could not identify the process(es) or service(s) accessing %s", HandleName);
|
2017-04-27 22:06:42 +00:00
|
|
|
|
|
|
|
free(wHandleName);
|
|
|
|
PhFree(buffer);
|
2017-04-29 16:14:16 +00:00
|
|
|
PhFree(handles);
|
|
|
|
PhDestroyHeap();
|
2017-04-27 22:06:42 +00:00
|
|
|
return bFound;
|
|
|
|
}
|
2017-05-02 13:07:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Increase the privileges of the current application.
|
|
|
|
*
|
|
|
|
* \return TRUE if the request was successful.
|
|
|
|
*/
|
|
|
|
BOOL EnablePrivileges(void)
|
|
|
|
{
|
|
|
|
// List of the privileges we require. A list of requestable privileges can
|
|
|
|
// be obtained at https://technet.microsoft.com/en-us/library/dn221963.aspx
|
|
|
|
const DWORD requestedPrivileges[] = {
|
|
|
|
SE_DEBUG_PRIVILEGE,
|
|
|
|
};
|
|
|
|
NTSTATUS status = STATUS_NOT_IMPLEMENTED;
|
|
|
|
HANDLE tokenHandle;
|
|
|
|
|
|
|
|
PF_INIT_OR_OUT(NtClose, NtDll);
|
|
|
|
PF_INIT_OR_OUT(NtOpenProcessToken, NtDll);
|
|
|
|
PF_INIT_OR_OUT(NtAdjustPrivilegesToken, NtDll);
|
|
|
|
|
|
|
|
status = pfNtOpenProcessToken(NtCurrentProcess(), TOKEN_ADJUST_PRIVILEGES, &tokenHandle);
|
|
|
|
|
|
|
|
if (NT_SUCCESS(status)) {
|
|
|
|
CHAR privilegesBuffer[FIELD_OFFSET(TOKEN_PRIVILEGES, Privileges) +
|
|
|
|
sizeof(LUID_AND_ATTRIBUTES) * ARRAYSIZE(requestedPrivileges)];
|
|
|
|
PTOKEN_PRIVILEGES privileges;
|
|
|
|
ULONG i;
|
|
|
|
|
|
|
|
privileges = (PTOKEN_PRIVILEGES)privilegesBuffer;
|
|
|
|
privileges->PrivilegeCount = ARRAYSIZE(requestedPrivileges);
|
|
|
|
|
|
|
|
for (i = 0; i < privileges->PrivilegeCount; i++) {
|
|
|
|
privileges->Privileges[i].Attributes = SE_PRIVILEGE_ENABLED;
|
|
|
|
privileges->Privileges[i].Luid.HighPart = 0;
|
|
|
|
privileges->Privileges[0].Luid.LowPart = requestedPrivileges[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
status = pfNtAdjustPrivilegesToken(tokenHandle, FALSE, privileges, 0, NULL, NULL);
|
|
|
|
|
|
|
|
pfNtClose(tokenHandle);
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
if (!NT_SUCCESS(status))
|
|
|
|
ubprintf("NOTE: Could not set process privileges: %s", NtStatusError(status));
|
|
|
|
return NT_SUCCESS(status);
|
|
|
|
}
|