gpt4 book ai didi

c - 为什么 AssignProcessToJobObject 在 XP 上失败并出现拒绝访问错误?

转载 作者:可可西里 更新时间:2023-11-01 10:26:59 29 4
gpt4 key购买 nike

我有以下代码:

#include <windows.h>
#include <stdio.h>
#include <shlwapi.h>

#pragma comment ( lib, "shlwapi.lib" )

int __cdecl wmain( int argc, PWSTR argv[] )
{
HANDLE Job( CreateJobObject( NULL, NULL ) );
if( !Job )
{
wprintf( L"Could not create job object, error %d\n", GetLastError() );
return 0;
}

HANDLE IOPort( CreateIoCompletionPort( INVALID_HANDLE_VALUE, NULL, 0, 1 ) );
if( !IOPort )
{
wprintf( L"Could not create IO completion port, error %d\n", GetLastError() );
return 0;
}

JOBOBJECT_ASSOCIATE_COMPLETION_PORT Port;
Port.CompletionKey = Job;
Port.CompletionPort = IOPort;

if( !SetInformationJobObject( Job, JobObjectAssociateCompletionPortInformation, &Port, sizeof( Port ) ) )
{
wprintf( L"Could not associate job with IO completion port, error %d\n", GetLastError() );
return 0;
}

PROCESS_INFORMATION ProcessInformation;
STARTUPINFO StartupInfo = { sizeof(StartupInfo) };
PWSTR CommandLine = PathGetArgs(GetCommandLine());

if( !CreateProcess( NULL, CommandLine, NULL, NULL, FALSE, CREATE_NEW_CONSOLE | CREATE_SUSPENDED, NULL, NULL, &StartupInfo, &ProcessInformation ) )
{
wprintf( L"Could not run process, error %d\n", GetLastError() );
return 0;
}

if( !AssignProcessToJobObject( Job, ProcessInformation.hProcess ) )
{
wprintf( L"Could not assign process to job, error %d\n", GetLastError() );
return 0;
}

ResumeThread( ProcessInformation.hThread );
CloseHandle( ProcessInformation.hThread );
CloseHandle( ProcessInformation.hProcess );

DWORD CompletionCode;
ULONG_PTR CompletionKey;
LPOVERLAPPED Overlapped;

int ProcessCount = 0;

while ( GetQueuedCompletionStatus( IOPort, &CompletionCode, &CompletionKey, &Overlapped, INFINITE ) && CompletionCode != JOB_OBJECT_MSG_ACTIVE_PROCESS_ZERO )
{
if ( CompletionCode == JOB_OBJECT_MSG_NEW_PROCESS ) ProcessCount++;
if ( ( CompletionCode == JOB_OBJECT_MSG_EXIT_PROCESS ) || ( CompletionCode == JOB_OBJECT_MSG_ABNORMAL_EXIT_PROCESS) ) ProcessCount--;

wprintf( L"Waiting for %d processes to finish...\n", ProcessCount );
}

wprintf( L"All done\n" );

return 0;
}

此代码在 Windows 7 上运行良好,但 AssignProcessToJobObject 在 Windows XP 上失败,错误代码为 5(拒绝访问)。根据 MSDN:Windows 7、Windows Server 2008 R2、Windows XP with SP3、Windows Server 2008、Windows Vista 和 Windows Server 2003:进程不得已分配给作业;如果是,则函数失败并显示 ERROR_ACCESS_DENIED。从 Windows 8 和 Windows Server 2012 开始,此行为发生了变化。

有人可以帮我更正这段代码吗?

谢谢!

更新:我能够找到问题,但我仍然不知道如何解决它:(问题是,我用标准用户(没有管理员权限)登录一台 XP 机器,然后用 runas 打开一个 cmd(用一个有管理员权限的用户),然后这个 cmd 将被创建为 ajobobject。在进程资源管理器中,您可以看到这一点。如果我想从此 cmd 启动我的应用程序,则 AssignProcessToJobObject 将失败并显示错误访问拒绝,因为 thios cmd 已分配给作业。

有办法解决我的问题吗?

最佳答案

可能是运行代码的环境已经创建了一个包含父进程的作业。您可以尝试将 CREATE_BREAKAWAY_FROM_JOB 添加到进程创建标志中,因为这可能允许新的脱离当前工作的过程。

我不记得 Visual Studio 在调试器下运行时是否在作业中运行东西。

您还可以尝试查询当前进程的作业状态,因为这将显示它是否已经在作业中。

关于c - 为什么 AssignProcessToJobObject 在 XP 上失败并出现拒绝访问错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13449531/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com