process-win.cpp revision 5e1b95b81785d67b9232679040b49db4102f42ea
/* $Id$ */
/** @file
* IPRT - Process, Windows.
*/
/*
* Copyright (C) 2006-2010 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#define LOG_GROUP RTLOGGROUP_PROCESS
#include <Userenv.h>
#include <Windows.h>
#include <tlhelp32.h>
#include <process.h>
#include <errno.h>
#include <Strsafe.h>
#include <iprt/critsect.h>
#include <iprt/initterm.h>
/*******************************************************************************
* Structures and Typedefs *
*******************************************************************************/
typedef FNPROCESS32FIRST *PFNPROCESS32FIRST;
typedef FNPROCESS32NEXT *PFNPROCESS32NEXT;
typedef FNENUMPROCESSES *PFNENUMPROCESSES;
typedef FNGETMODULEBASENAME *PFNGETMODULEBASENAME;
typedef FNLOADUSERPROFILEW *PFNLOADUSERPROFILEW;
typedef FNUNLOADUSERPROFILE *PFNUNLOADUSERPROFILE;
/*******************************************************************************
* Global Variables *
*******************************************************************************/
/** Init once structure. */
/** Critical section protecting the process array. */
static RTCRITSECT g_CritSect;
/** The number of processes in the array. */
static uint32_t g_cProcesses;
/** The current allocation size. */
static uint32_t g_cProcessesAlloc;
/** Array containing the live or non-reaped child processes. */
static struct RTPROCWINENTRY
{
/** The process ID. */
/** The process handle. */
} *g_paProcesses;
/**
* Clean up the globals.
*
* @param enmReason Ignored.
* @param iStatus Ignored.
* @param pvUser Ignored.
*/
{
size_t i = g_cProcesses;
while (i-- > 0)
{
}
g_cProcesses = 0;
g_cProcessesAlloc = 0;
}
/**
* Initialize the globals.
*
* @returns IPRT status code.
* @param pvUser1 Ignored.
* @param pvUser2 Ignored.
*/
{
g_cProcesses = 0;
g_cProcessesAlloc = 0;
if (RT_SUCCESS(rc))
{
/** @todo init once, terminate once - this is a generic thing which should
* have some kind of static and simpler setup! */
if (RT_SUCCESS(rc))
return rc;
}
return rc;
}
/**
* Gets the process handle for a process from g_paProcesses.
*
* @returns Process handle if found, NULL if not.
* @param pid The process to remove (pid).
*/
{
uint32_t i = g_cProcesses;
while (i-- > 0)
{
break;
}
return hProcess;
}
/**
* Removes a process from g_paProcesses and closes the process handle.
*
* @param pid The process to remove (pid).
*/
{
uint32_t i = g_cProcesses;
while (i-- > 0)
{
g_cProcesses--;
if (cToMove)
return;
}
}
/**
* Adds a process to g_paProcesses.
*
* @returns IPRT status code.
* @param pid The process id.
* @param hProcess The process handle.
*/
{
uint32_t i = g_cProcesses;
if (i >= g_cProcessesAlloc)
{
if (RT_UNLIKELY(!pvNew))
{
return VERR_NO_MEMORY;
}
g_cProcessesAlloc = i + 16;
}
g_cProcesses = i + 1;
return VINF_SUCCESS;
}
RTR3DECL(int) RTProcCreate(const char *pszExec, const char * const *papszArgs, RTENV Env, unsigned fFlags, PRTPROCESS pProcess)
{
pProcess);
}
/**
* Map some important or much used Windows error codes
* to our error codes.
*
* @return Mapped IPRT status code.
* @param dwError Windows error code to map to IPRT code.
*/
{
int rc;
switch (dwError)
{
case ERROR_NOACCESS:
case ERROR_PRIVILEGE_NOT_HELD:
break;
case ERROR_PASSWORD_EXPIRED:
case ERROR_ACCOUNT_RESTRICTION: /* See: http://support.microsoft.com/kb/303846/ */
break;
default:
/* Could trigger a debug assertion! */
break;
}
return rc;
}
/**
* Get the process token (not the process handle like the name might indicate)
* of the process indicated by @a dwPID if the @a pSID matches.
*
* @returns IPRT status code.
*
* @param dwPID The process identifier.
* @param pSID The secure identifier of the user.
* @param phToken Where to return the token handle - duplicate,
* caller closes it on success.
*/
{
bool fFound = false;
{
&hTokenProc);
if (fRc)
{
if (!fRc)
dwErr = GetLastError();
if ( !fRc
&& dwSize > 0)
{
&dwSize))
{
{
{
/*
* So we found the process instance which belongs to the user we want to
* to run our new process under. This duplicated token will be used for
* the actual CreateProcessAsUserW() call then.
*/
fFound = true;
}
else
dwErr = GetLastError();
}
}
else
dwErr = GetLastError();
}
else
dwErr = GetLastError();
}
else
dwErr = GetLastError();
}
else
dwErr = GetLastError();
if (fFound)
return VINF_SUCCESS;
return RTErrConvertFromWin32(dwErr);
return VERR_NOT_FOUND; /* No error occurred, but we didn't find the right process. */
}
/**
* Finds a one of the processes in @a papszNames running with user @a pSID and
* returns a duplicate handle to its token.
*
* @returns Success indicator.
* @param papszNames The process candidates, in prioritized order.
* @param pSID The secure identifier of the user.
* @param phToken Where to return the token handle - duplicate,
* caller closes it on success.
*/
{
bool fFound = false;
/*
* On modern systems (W2K+) try the Toolhelp32 API first; this is more stable
* and reliable. Fallback to EnumProcess on NT4.
*/
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
if (hSnap != INVALID_HANDLE_VALUE)
{
{
{
do
{
{
fFound = true;
break;
}
}
else /* Process32First */
dwErr = GetLastError();
break;
}
}
else /* hSnap == INVALID_HANDLE_VALUE */
dwErr = GetLastError();
}
}
}
else /* CreateToolhelp32Snapshot / Toolhelp32 API not available. */
{
/*
* NT4 needs a copy of "PSAPI.dll" (redistributed by Microsoft and not
* part of the OS) in order to get a lookup. If we don't have this DLL
* we are not able to get a token and therefore no UI will be visible.
*/
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
/** @todo Retry if pBytesReturned equals cbBytes! */
{
{
{
if (hProc)
{
char *pszProcName = NULL;
do
{
dwSize += 128;
break;
} while (GetLastError() == ERROR_INSUFFICIENT_BUFFER);
if (pszProcName)
{
{
fFound = true;
}
}
if (pszProcName)
}
}
}
}
else
dwErr = GetLastError();
}
}
}
}
}
return fFound;
}
/**
* Logs on a specified user and returns its primary token.
*
* @return int
*
* @param pwszUser User name.
* @param pwszPassword Password.
* @param pwszDomain Domain (not used at the moment).
* @param phToken Pointer to store the logon token.
*/
static int rtProcUserLogon(PRTUTF16 pwszUser, PRTUTF16 pwszPassword, PRTUTF16 pwszDomain, HANDLE *phToken)
{
/** @todo Add domain support! */
/*
* Because we have to deal with http://support.microsoft.com/kb/245683
* for NULL domain names when running on NT4 here, pass an empty string if so.
* However, passing FQDNs should work!
*/
? L"" /* NT4 and older. */
: NULL, /* Windows 2000 and up. */
phToken);
if (!fRc)
return rtProcMapErrorCodes(GetLastError());
return VINF_SUCCESS;
}
/**
* Logs off a user, specified by the given token.
*
* @param hToken The token (=user) to log off.
*/
{
}
/**
* Creates an environment block out of a handed in Unicode and RTENV block.
* The RTENV block can overwrite entries already present in the Unicode block.
*
* @return IPRT status code.
*
* @param pvBlock Unicode block (array) of environment entries; name=value
* @param hEnv Handle of an existing RTENV block to use.
* @param ppwszBlock Pointer to the final output.
*/
{
int rc = VINF_SUCCESS;
if (RT_SUCCESS(rc))
{
while ( pBlock
&& pBlock != '\0'
&& RT_SUCCESS(rc))
{
char *pszEntry;
if (RT_SUCCESS(rc))
{
/* Don't overwrite values which we already have set to a custom value
* specified in hEnv ... */
}
size_t l;
/* 32k should be the maximum the environment block can have on Windows. */
break;
break;
pBlock++; /* Skip zero termination of current string and advance to next string ... */
}
if (RT_SUCCESS(rc))
}
return rc;
}
/**
* Builds up the environment block for a specified user (identified by a token),
* whereas hEnv is an additional set of environment variables which overwrite existing
* values of the user profile. ppwszBlock needs to be destroyed after usage
* calling rtProcEnvironmentDestroy().
*
* @return IPRT status code.
*
* @param hToken Token of the user to use.
* @param ppwszBlock Pointer to a pointer of the final UTF16 environment block.
*/
{
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
{
}
else
}
}
}
/* If we don't have the Userenv-API for whatever reason or something with the
* native environment block failed, try to return at least our own environment block. */
if (RT_FAILURE(rc))
return rc;
}
/**
* Builds up the environment block for a specified user (identified by user name, password
* and domain), whereas hEnv is an additional set of environment variables which overwrite
* existing values of the user profile. ppwszBlock needs to be destroyed after usage
* calling rtProcEnvironmentDestroy().
*
* @return IPRT status code.
*
* @param pwszUser User name.
* @param pwszPassword Password.
* @param pwszDomain Domain.
* @param ppwszBlock Pointer to a pointer of the final UTF16 environment block.
*/
static int rtProcEnvironmentCreateFromAccount(PRTUTF16 pwszUser, PRTUTF16 pwszPassword, PRTUTF16 pwszDomain,
{
if (RT_SUCCESS(rc))
{
}
return rc;
}
/**
* Destroys an environment block formerly created by rtProcEnvironmentCreateInternal(),
* rtProcEnvironmentCreateFromToken() or rtProcEnvironmentCreateFromAccount().
*
* @param ppwszBlock Environment block to destroy.
*/
{
}
static int rtProcCreateAsUserHlp(PRTUTF16 pwszUser, PRTUTF16 pwszPassword, PRTUTF16 pwszExec, PRTUTF16 pwszCmdLine,
{
int rc = VINF_SUCCESS;
/*
* If we run as a service CreateProcessWithLogon will fail,
* so don't even try it (because of Local System context).
*/
if (!(fFlags & RTPROC_FLAGS_SERVICE))
{
if (RT_SUCCESS(rc))
{
/*
* This may fail on too old (NT4) platforms or if the calling process
* is running on a SYSTEM account (like a service, ERROR_ACCESS_DENIED) on newer
* platforms (however, this works on W2K!).
*/
if (RT_SUCCESS(rc))
{
hEnv, &pwszzBlock);
if (RT_SUCCESS(rc))
{
NULL, /* lpDomain*/
1 /*LOGON_WITH_PROFILE*/, /* dwLogonFlags */
NULL, /* pCurrentDirectory */
if (!fRc)
dwErr = GetLastError();
}
}
}
}
/*
* Did the API call above fail because we're running on a too old OS (NT4) or
* we're running as a Windows service?
*/
if ( RT_FAILURE(rc)
|| (fFlags & RTPROC_FLAGS_SERVICE))
{
/*
* So if we want to start a process from a service (RTPROC_FLAGS_SERVICE),
* we have to do the following:
* - Check the credentials supplied and get the user SID.
* user. This of course is only possible if that user is logged in (over
* physical console or terminal services).
* use it in order to allow the newly started process to access the user's
* process (but run it without UI).
*
* The following restrictions apply:
* - A process only can show its UI when the user the process should run
* under is logged in (has a desktop).
* - We do not want to display a process of user A run on the desktop
* of user B on multi session systems.
*
* The following rights are needed in order to use LogonUserW and
* CreateProcessAsUserW, so the local policy has to be modified to:
* - SE_TCB_NAME = Act as part of the operating system
* - SE_INCREASE_QUOTA_NAME
*
* We may fail here with ERROR_PRIVILEGE_NOT_HELD.
*/
if (RT_SUCCESS(rc))
{
bool fFound = false;
if (fFlags & RTPROC_FLAGS_SERVICE)
{
NULL,
&cbName,
NULL,
&cbDomain,
&sidNameUse);
if (!fRc)
dwErr = GetLastError();
if ( !fRc
&& cbName > 0)
{
/** @todo No way to allocate a PRTUTF16 directly? */
if (cbDomain > 0)
{
}
/* Note: Also supports FQDNs! */
pSID,
&cbName,
&cbDomain,
&& IsValidSid(pSID))
{
/* Array of process names we want to look for. */
static const char * const s_papszProcNames[] =
{
#ifdef VBOX /* The explorer entry is a fallback in case GA aren't installed. */
{ "VBoxTray.exe" },
#endif
{ "explorer.exe" },
};
}
else
if (pwszDomain != NULL)
}
}
else /* !RTPROC_FLAGS_SERVICE */
{
/* Nothing to do here right now. */
}
/*
* If we didn't find a matching VBoxTray, just use the token we got
* above from LogonUserW(). This enables us to at least run processes with
* desktop interaction without UI.
*/
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
{
if (RT_SUCCESS(rc))
{
/*
* Useful KB articles:
*/
NULL, /* pProcessAttributes */
NULL, /* pThreadAttributes */
TRUE, /* fInheritHandles */
NULL, /* pCurrentDirectory */
if (fRc)
else
}
else
}
else
}
}
}
}
}
if ( RT_SUCCESS(rc)
{
}
return rc;
}
RTR3DECL(int) RTProcCreateEx(const char *pszExec, const char * const *papszArgs, RTENV hEnv, uint32_t fFlags,
{
/*
* Input validation
*/
AssertReturn(!(fFlags & ~(RTPROC_FLAGS_DETACHED | RTPROC_FLAGS_HIDDEN |RTPROC_FLAGS_SERVICE)), VERR_INVALID_PARAMETER);
/** @todo search the PATH (add flag for this). */
/*
* Initialize the globals.
*/
/*
* Get the file descriptors for the handles we've been passed.
*
* It seems there is no point in trying to convince a child process's CRT
* that any of the standard file handles is non-TEXT. So, we don't...
*/
#if 1 /* The CRT should keep the standard handles up to date. */
#else
#endif
/* If we want to have a hidden process (e.g. not visible to
* to the user) use the STARTUPINFO flags. */
if (fFlags & RTPROC_FLAGS_HIDDEN)
{
}
for (int i = 0; i < 3; i++)
{
if (paHandles[i])
{
{
case RTHANDLETYPE_FILE:
break;
case RTHANDLETYPE_PIPE:
break;
case RTHANDLETYPE_SOCKET:
break;
default:
}
/* Get the inheritability of the handle. */
if (*aphStds[i] != INVALID_HANDLE_VALUE)
{
{
}
}
}
}
/*
* Set the inheritability any handles we're handing the child.
*/
rc = VINF_SUCCESS;
for (int i = 0; i < 3; i++)
if ( (afInhStds[i] != 0xffffffff)
&& !(afInhStds[i] & HANDLE_FLAG_INHERIT))
{
{
}
}
/*
* Create the environment block, command line and convert the executable
* name.
*/
if (RT_SUCCESS(rc))
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
/*
* Get going...
*/
if (fFlags & RTPROC_FLAGS_DETACHED)
/*
* Only use the normal CreateProcess stuff if we have no user name
* and we are not running from a (Windows) service. Otherwise use
* the more advanced version in rtProcCreateAsUserHlp().
*/
&& !(fFlags & RTPROC_FLAGS_SERVICE))
{
if (CreateProcessW(pwszExec,
NULL, /* pProcessAttributes */
NULL, /* pThreadAttributes */
TRUE, /* fInheritHandles */
NULL, /* pCurrentDirectory */
&ProcInfo))
rc = VINF_SUCCESS;
else
}
else
{
/*
* Convert the additional parameters and use a helper
* function to do the actual work.
*/
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
}
}
}
if (RT_SUCCESS(rc))
{
if (phProcess)
{
/*
* Add the process to the child process list so
* RTProcWait can reuse and close the process handle.
*/
}
else
rc = VINF_SUCCESS;
}
}
}
}
/* Undo any handle inherit changes. */
for (int i = 0; i < 3; i++)
if ( (afInhStds[i] != 0xffffffff)
&& !(afInhStds[i] & HANDLE_FLAG_INHERIT))
{
}
return rc;
}
{
AssertReturn(!(fFlags & ~(RTPROCWAIT_FLAGS_BLOCK | RTPROCWAIT_FLAGS_NOBLOCK)), VERR_INVALID_PARAMETER);
/*
* Try find the process among the ones we've spawned, otherwise, attempt
* opening the specified process.
*/
{
{
if (dwErr == ERROR_INVALID_PARAMETER)
return VERR_PROCESS_NOT_FOUND;
return RTErrConvertFromWin32(dwErr);
}
}
/*
* Wait for it to terminate.
*/
int rc;
while (WaitRc == WAIT_IO_COMPLETION)
switch (WaitRc)
{
/*
* It has terminated.
*/
case WAIT_OBJECT_0:
{
{
/** @todo the exit code can be special statuses. */
if (pProcStatus)
{
}
if (hOpenedProc == NULL)
rc = VINF_SUCCESS;
}
else
break;
}
/*
* It hasn't terminated just yet.
*/
case WAIT_TIMEOUT:
break;
/*
* Something went wrong...
*/
case WAIT_FAILED:
break;
case WAIT_ABANDONED:
AssertFailed();
break;
default:
break;
}
if (hOpenedProc != NULL)
return rc;
}
{
/** @todo this isn't quite right. */
}
{
/*
* Try find the process among the ones we've spawned, otherwise, attempt
* opening the specified process.
*/
{
}
else
{
{
if (!fRc)
}
}
return rc;
}
{
BOOL fRc = GetProcessAffinityMask(GetCurrentProcess(), &dwProcessAffinityMask, &dwSystemAffinityMask);
return dwProcessAffinityMask;
}