在OSR上无意中看到一篇文章,关于获取进程完整路径的。贴过来,最后有一点小调整。
原文地址:http://www.osronline.com/article.cfm?id=472
Over the years developers have needed or wanted to know the name of the image executing in a given process. Traditionally, this was often done using PsGetProcessImageFile Name , which returns the contents of a field in the EPROCESS structure used by the Windows OS to maintain per-process state information.
As we can see from the information in the local debugger session (See Figure 1 ) the process image file is little more than a field within the EPROCESS structure. Notice that the EPROCESS address is in EBP+8, making it the first - and only - parameter to this function.
Connected to Windows XP 2600 x86 compatible target, ptr64 FALSE Figure 1 - Local Debug Session of PsGetProcessImageFileName |
Unfortunately, there are some issues with this approach:
-
Though well-known, this function is undocumented.
-
More seriously, the information contained in this field is severely limited. It contains only the first 16 (ASCII) characters of the image file name.
It is actually the second issue that often creates problems for programmers because the name of the image file means essentially nothing. For example, we've seen kernel-mode drivers in the past that validate the name of their service by checking this field. The most egregious case we've seen is when the service was called svchost.exe, which is a common name that is often spoofed.
The Proposal
We suggest a different model for acquiring this information, as shown in Figure 2 .
typedef NTSTATUS (*QUERY_INFO_PROCESS) ( QUERY_INFO_PROCESS ZwQueryInformationProcess; NTSTATUS GetProcessImageName(PUNICODE_STRING ProcessImageName) if (NULL == ZwQueryInformationProcess) { UNICODE_STRING routineName; RtlInitUnicodeString(&routineName, L"ZwQueryInformationProcess"); ZwQueryInformationProcess = if (NULL == ZwQueryInformationProcess) { if (STATUS_INFO_LENGTH_MISMATCH != status) { return status; } // ProcessImageName->Length = (USHORT) bufferLength; return STATUS_BUFFER_OVERFLOW; // if (NULL == buffer) { return STATUS_INSUFFICIENT_RESOURCES; // if (NT_SUCCESS(status)) { RtlCopyUnicodeString(ProcessImageName, imageName); // // Figure 2 - A New Proposal |
The function itself is fairly straight-forward. It does rely on use of a single undocumented function (ZwQueryInformationProcess ), but note that its counterpart (NtQueryInformationProcess ) is documented. We need to use the Zw variant in order to use a kernel memory buffer.
The key element is that Windows has always stored the full path name to the executable image in order to provide this information in the auditing subsystem. This API exploits that existing stored path name.
Other Process Names
This function has been implemented to extract the process name for the current process. However, you can use one of the two methods listed below to obtain the process name for a different process:
1. If you have a handle for the process, you can use that value instead of the NtCurrentProcess() macro. (Note that in our experience, we usually have a process object and not a process handle - the two are not interchangeable).
2. If you have an EPROCESS address, you can use KeStackAttachProcess/KeUnstackDetachProcess to attach to the process. This technique is rather heavy-weight, so it may be a good idea to cache the information if you need to perform this operation regularly.
When using the second technique, it is important to note that the name that is returned is a cached name. This cache is not updated if the name of the original file changes after the name is first cached. In other words, if the executable image is renamed, which is typically allowed for a running executable, the name returned will be the name of the original file.
This issue is not unique. We have also observed that some file systems return the original name even after a rename (e.g., the CIFS client implementation does this on Windows XP). Thus, it may require additional processing such as through a file system filter driver to protect against similar events. For example, you may encounter a security product that relies on knowing the specific name of the image. Alternatives?
There are other options that a driver could also pursue such as registering for process creation/teardown events (PsSetCreateProcessNotifyRoutine ) or image loading (PsSetLoadImageNotifyRoutine ).
PsSetCreateProcessNotifyRoutine has limitations on the number of drivers that can register using this API. Since there is a fixed size table in the Windows OS, it is possible for this call to fail. When this occurs, a driver needs to ensure it can handle such a failure. PsSetLoadImageNotifyRoutine has the same limitation (fixed size table), but is called for all image loads, not just the original process image. Therefore, it includes drivers, DLLs, executables, etc.
Summary
The bottom line is that all of these approaches provide a useful name because they include the full path name. This is vastly superior to using the short ASCII eye-catching name that is stored in the EPROCESS structure. A word of caution - if you decide to use the debug level name, use it for nothing more than debugging since it is not reliable and cannot be relied on for any sort of security check.
We chose to use the proposed technique because it works in all circumstances and does not rely upon a registration that might potentially fail. In your own driver you might implement both this mechanism and a cache-based mechanism tied to the process creation logic.
文章里对于如何获取其他进程,提供了两种方法,但是都不太方便,在我的驱动里,我是在PsSetCreateProcessNotifyRoutine的回调函数里获取进程路径,能得到的进程信息是PID,于是动手改了下上面的代码,如下:
- NTSTATUS
- GetProcessImagePath(
- IN DWORD dwProcessId,
- OUT PUNICODE_STRING ProcessImagePath
- )
- {
- NTSTATUS Status;
- HANDLE hProcess;
- PEPROCESS pEprocess;
- ULONG returnedLength;
- ULONG bufferLength;
- PVOID buffer;
- PUNICODE_STRING imageName;
- PAGED_CODE(); // this eliminates the possibility of the IDLE Thread/Process
- if (NULL == ZwQueryInformationProcess) {
- UNICODE_STRING routineName;
- RtlInitUnicodeString(&routineName, L "ZwQueryInformationProcess" );
- ZwQueryInformationProcess =
- (QUERY_INFO_PROCESS) MmGetSystemRoutineAddress(&routineName);
- if (NULL == ZwQueryInformationProcess) {
- DbgPrint( "Cannot resolve ZwQueryInformationProcess/n" );
- }
- }
- Status = PsLookupProcessByProcessId(( HANDLE )dwProcessId, &pEprocess);
- if (!NT_SUCCESS(Status))
return Status; - Status = ObOpenObjectByPointer(pEprocess, // Object
- OBJ_KERNEL_HANDLE, // HandleAttributes
- NULL, // PassedAccessState OPTIONAL
- GENERIC_READ, // DesiredAccess
- *PsProcessType, // ObjectType
- KernelMode, // AccessMode
- &hProcess);
- if (!NT_SUCCESS(Status))
return Status; - //
- // Step one - get the size we need
- //
- Status = ZwQueryInformationProcess( hProcess,
- ProcessImageFileName,
- NULL, // buffer
- 0, // buffer size
- &returnedLength);
- if (STATUS_INFO_LENGTH_MISMATCH != Status) {
- return Status;
- }
- //
- // Is the passed-in buffer going to be big enough for us?
- // This function returns a single contguous buffer model...
- //
- bufferLength = returnedLength - sizeof (UNICODE_STRING);
- if (ProcessImagePath->MaximumLength < bufferLength) {
- ProcessImagePath->Length = ( USHORT ) bufferLength;
- return STATUS_BUFFER_OVERFLOW;
- }
- //
- // If we get here, the buffer IS going to be big enough for us, so
- // let's allocate some storage.
- //
- buffer = ExAllocatePoolWithTag(PagedPool, returnedLength, 'ipgD');
- if (NULL == buffer) {
- return STATUS_INSUFFICIENT_RESOURCES;
- }
- //
- // Now lets go get the data
- //
- Status = ZwQueryInformationProcess( hProcess,
- ProcessImageFileName,
- buffer,
- returnedLength,
- &returnedLength);
- if (NT_SUCCESS(Status)) {
- //
- // Ah, we got what we needed
- //
- imageName = (PUNICODE_STRING) buffer;
- RtlCopyUnicodeString(ProcessImagePath, imageName);
- }
- ZwClose(hProcess);
- //
- // free our buffer
- //
- ExFreePool(buffer);
- //
- // And tell the caller what happened.
- //
- return Status;
- }