无法处理过程

时间:2013-07-14 13:38:31

标签: c++ winapi

已解决:请看我上一篇文章。这可能是Windows XP和以前版本的问题,具有GetProcessId函数所需的权限。

没有构建错误。 GetProcessId仍然返回0.我无法解决这个问题。

#include <windows.h>
#include <tchar.h>
#include <stdio.h>
#include <psapi.h> //For EnumProcessModules.
#include <tlhelp32.h>

#include <iostream>
using namespace std;

HANDLE GetHandleByName( string str )
{
    HANDLE hProcess = NULL;
    PROCESSENTRY32 entry;
    entry.dwSize = sizeof( PROCESSENTRY32 );

    HANDLE snapshot = CreateToolhelp32Snapshot( TH32CS_SNAPPROCESS, NULL );

    if( Process32First( snapshot, &entry ) == TRUE )
    {
        while( Process32Next( snapshot, &entry ) == TRUE )
        {
            WCHAR* wchrstr = ( WCHAR * )malloc( 128 );
            mbstowcs ( wchrstr, str.c_str(), 128 );
            if( wcscmp( reinterpret_cast< const wchar_t * >( entry.szExeFile ), wchrstr ) == 0 )
            {
                hProcess = OpenProcess( PROCESS_ALL_ACCESS, FALSE, entry.th32ProcessID );
            }
            free( wchrstr );
         }
    }

    CloseHandle( snapshot );
    return hProcess;
}



void main()
{
    HANDLE hProcess = GetHandleByName( "System" );

    cout << GetProcessId( hProcess );
    cin.get();
}

3 个答案:

答案 0 :(得分:5)

首先,您是要尝试获取System进程还是[System Process]虚拟进程?无论哪种方式,您的代码都有一些必须解决的问题。

如果您只是尝试System,那么您的代码只会进行微调。如果你真正想要的是[System Process]那么你就不幸了。

首先,您不进行错误检查。可能CreateToohelp32Snapshot失败,您在Process32First电话中使用了无效句柄。其次,您调用Process32First然后立即调用Process32Next,而不查看Process32First返回的进程。换句话说,您总是跳过返回的第一个进程。巧合的是,猜测哪个过程是第一个返回的过程?这是虚拟的[System Process]

因此,让我们尝试一个枚举所有进程并正确执行的函数:

void EnumAllProcesses(BOOL bTryToOpen = FALSE,
                      DWORD dwAccess = PROCESS_QUERY_INFORMATION)
{
    PROCESSENTRY32 entry;
    entry.dwSize = sizeof( PROCESSENTRY32 );

    HANDLE snapshot = CreateToolhelp32Snapshot( TH32CS_SNAPPROCESS, NULL );

    if( snapshot == INVALID_HANDLE_VALUE )
    {
        _tprintf(_T("Unable to create a ToolHelp32 snapshot (%08X)\n"), GetLastError());
        return;
    }

    if( Process32First( snapshot, &entry ) == TRUE )
    {
        do
        {
            _tprintf(_T("Process: %s (%u)\n"), entry.szExeFile, entry.th32ProcessID);

            if(bTryToOpen)
            {
                HANDLE hProcess = OpenProcess( dwAccess,
                                               FALSE, 
                                               entry.th32ProcessID );

                _tprintf(_T("    hProcess = %p (%08X)\n"), hProcess, GetLastError());

                if(hProcess != NULL)
                    CloseHandle(hProcess);
            }
        } while( Process32Next( snapshot, &entry ) == TRUE );        
    }

    CloseHandle( snapshot );
}

但即使使用这个新代码,如果要打开[System Process],也会遇到问题。原因是当您指定此进程的进程ID(恰好始终为零)时,OpenProcess将失败并显示ERROR_INVALID_PARAMETER。这是记录行为。查看CreateProcess上的MSDN页面,特别是dwProcessId参数说明:

  

如果指定的进程是系统进程(0x00000000),则   函数失败,最后一个错误代码为ERROR_INVALID_PARAMETER。如果   指定的进程是空闲进程或CSRSS之一   进程,此函数失败,最后一个错误代码是   ERROR_ACCESS_DENIED因为他们的访问限制阻止了   打开它们的用户级代码。

以下是我的系统上此代码输出的快照,以非管理员身份运行:

Process: [System Process] (0)
    hProcess = 00000000 (00000057) 
Process: System (4)
    hProcess = 00000000 (00000005)
Process: smss.exe (324)
    hProcess = 00000000 (00000005)
Process: csrss.exe (492)
    hProcess = 00000000 (00000005)
Process: wininit.exe (568)
    hProcess = 00000000 (00000005) 

请注意,尝试打开[System Process](带有PID 0)错误时,错误是“无效参数”。尝试打开System(使用PID 4)时,错误为5 - 转换为ERROR_ACCESS_DENIED。这是我所期望的,因为我要求完全访问,而我不是以管理员身份运行。所以我尝试以管理员身份运行它。但结果不会改变。嗯......可能是什么问题?

好吧,可能是您要求PROCESS_ALL_ACCESS进程,即使您是管理员,也不允许您请求那么多访问权限。仅仅因为你是ancyBank的所有者并不意味着你可以走进一个分支机构并要求经理只打开其他人的保险箱...那么你如何尝试要求 LESS 访问权限。那么PROCESS_QUERY_INFORMATION呢?

现在,证据(当您转发它时)表明您对CreatToolHelp32Snapshot的呼叫失败,并且从未输入循环或您以非管理员身份运行并询问有关您所执行流程的信息无法访问。但我不相信你准确地传达了正在发生的事情,而你却没有帮助我们帮助你。

答案 1 :(得分:2)

操作系统不允许您打开系统进程。它也没用,因为它不是模块等常用的过程。

dwProcessId [in]
The identifier of the local process to be opened.

If the specified process is the System Process (0x00000000), the function fails and the last error code is ERROR_INVALID_PARAMETER. If the specified process is the Idle process or one of the CSRSS processes, this function fails and the last error code is ERROR_ACCESS_DENIED because their access restrictions prevent user-level code from opening them.

您还需要更高的权限才能打开另一个进程。您可以通过以管理员身份执行程序require an administrator from the UAC manifest或禁用UAC来测试此类应用程序来执行此操作。

To open a handle to another local process and obtain full access rights, you must enable the SeDebugPrivilege privilege. For more information, see Changing Privileges in a Token.

在我的UAC禁用系统上,当我只将进程名称更改为可以打开的内容时,程序运行正常。

答案 2 :(得分:1)

真正的问题是女士和天才:来自windows.h的 GetProcessId(HANDLE进程),结果仍然返回0。我用以下函数替换了函数:

编辑:还有第二种解决问题的方法,使用AdjustTokenPrivileges感谢我们可以使用PROCESS_ALL_ACCESS,这样原来的 GetProcessId 就可以在不使用下面创建远程线程的函数的情况下工作。

DWORD WINAPI GetProcessIDbyProcessHandle(HANDLE hProcess)
{
    if (hProcess == NULL)    return 0xffffffff;
    PTHREAD_START_ROUTINE lpStartAddress = (PTHREAD_START_ROUTINE)
        GetProcAddress(GetModuleHandle(TEXT("Kernel32")), "GetCurrentProcessId");
    if (lpStartAddress == NULL) return 0xffffffff;
    // We do not know, whether process handle already has required access rights;

    // thus we have to duplicate it
    HANDLE hProcessAccAdj;
    BOOL bRes = DuplicateHandle(GetCurrentProcess(), 
                                hProcess, GetCurrentProcess(), &hProcessAccAdj, 
                                PROCESS_QUERY_INFORMATION|PROCESS_CREATE_THREAD|
                                PROCESS_VM_OPERATION|PROCESS_VM_WRITE, 
                                FALSE, 0);
    if (!bRes || hProcessAccAdj == NULL)
    {
        UINT unError = GetLastError();
        return 0xffffffff;
    }
    // Create a remote thread; as its starting address 

    // we specify GetCurrentProcessId() address,
    // which is the same for all processes. Note that GetCurrentProcessId() has no input
    // parameters, and we don't care about our thread stack cleanup,
    // as it will be destroyed right after this call

    DWORD dwThreadID;
    HANDLE hRemoteThread = CreateRemoteThread(hProcessAccAdj, NULL, 
        0, lpStartAddress, 0, 0, &dwThreadID);
    CloseHandle(hProcessAccAdj);
    if (hRemoteThread == NULL) return 0xffffffff;
    // Wait until process ID is obtained

    // (replace INFINITE value below to a smaller value to avoid deadlocks);
    // then get the thread exit code, which is a value returned by GetCurrentProcessId()
    // in the context of the remote process
    WaitForSingleObject(hRemoteThread, INFINITE);
    DWORD dwExitCode;
    if (GetExitCodeThread(hRemoteThread, &dwExitCode) == 0)    dwExitCode = 0xffffffff;
    CloseHandle(hRemoteThread);
    return dwExitCode;
}