Opening a process in debug mode in C++

Started by
1 comment, last by Idov 12 years, 6 months ago
Hi!
I'm trying to open a process with my debugger (written in C++) using CreateProcess with the flags: DEBUG_PROCESS and DEBUG_ONLY_THIS_PROCESS.
The process is opened, but then when I try to call SymInitialize with the handle I receive, it fails. This is my code:




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


#pragma (lib, "dbghelp.lib");

bool EnablePrivilege(LPCTSTR lpszPrivilegeName, BOOL bEnable)
{
HANDLE hToken;
TOKEN_PRIVILEGES tp;
LUID luid;
bool ret;

if (!OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY | TOKEN_READ, &hToken))
return FALSE;

if (!LookupPrivilegeValue(NULL, lpszPrivilegeName, &luid))
return FALSE;

tp.PrivilegeCount = 1;
tp.Privileges[0].Luid = luid;
tp.Privileges[0].Attributes = bEnable ? SE_PRIVILEGE_ENABLED : 0;

ret = AdjustTokenPrivileges(hToken, FALSE, &tp, sizeof(tp), NULL, NULL);
CloseHandle(hToken);

return ret;
}

void main()
{
EnablePrivilege(SE_DEBUG_NAME, TRUE);

STARTUPINFOA startInfo;
PROCESS_INFORMATION processInfo;
ZeroMemory( &startInfo, sizeof(startInfo) );
startInfo.cb = sizeof(startInfo);
ZeroMemory( &processInfo, sizeof(processInfo) );
DWORD creationFlags = DEBUG_PROCESS | DEBUG_ONLY_THIS_PROCESS | PROCESS_VM_READ | PROCESS_QUERY_INFORMATION;
const char* comLine = "Some process path and name";

// Start the child process.
if( CreateProcessA( NULL, // No module name (use command line)
(LPSTR)comLine, //argv[1], // Command line
NULL, // Process handle not inheritable
NULL, // Thread handle not inheritable
FALSE, // Set handle inheritance to FALSE
creationFlags, // No creation flags
NULL, // Use parent's environment block
NULL, // Use parent's starting directory
&startInfo, // Pointer to STARTUPINFO structure
&processInfo ) // Pointer to PROCESS_INFORMATION structure
== false )
{
printf("FAIL!");
return;
}

SetLastError(0);
bool ok = SymInitialize(processInfo.hProcess, NULL, true);
int err = GetLastError();

}


When I Get the last error after "SymInitialIze", it's a garbage negative value...
If I call CreateProcess with no creation flags, symInitialize succeed.
What am I doing wrong?

thanks :)


Advertisement
The value I get from GetLastError is: 0x8000000d (whatever it means... )
hmm...

If I pass to SymInitialize "false" to the fInvadeProcess parameter, it return ok (but the last error is ERROR_ENVVAR_NOT_FOUND).
But I want it to load the modules automatically... why is it failing??? :(

This topic is closed to new replies.

Advertisement