2001-01-20 00:23:24 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*
|
|
|
|
* The contents of this file are subject to the Netscape Public
|
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS
|
|
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
* implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code,
|
|
|
|
* released March 31, 1998.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
|
|
|
* Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Don Bragg <dbragg@netscape.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* nsProcess is used to execute new processes and specify if you want to
|
|
|
|
* wait (blocking) or continue (non-blocking).
|
|
|
|
*
|
|
|
|
*****************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsMemory.h"
|
|
|
|
#include "nsProcess.h"
|
|
|
|
#include "prtypes.h"
|
|
|
|
#include "prio.h"
|
2002-03-23 00:37:50 +03:00
|
|
|
#include "prenv.h"
|
|
|
|
#include "nsCRT.h"
|
2001-01-20 00:23:24 +03:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
Fix for http://bugzilla.mozilla.org/show_bug.cgi?id=80383
r=dbragg, sr=mscott, a=asa
For the nsIProcess component, which is only used by XPInstall, instead of calling
nspr for process creation, we call a simplified version which, on windows, will
cause the child process not to inherit fds open by the forking process.
Fix is only XP_WIN. nspr will provide a more risky, non-nsIProcess, XP solution at
some point which is either achieved by modifying open() to accept a non-inherit
flag (on win32) or do an fcntl() on Unix (see the bug for details specific to the
fcntl()), or provide another pair of create processes functions that are geared
towards non-inheriting process creation.
The bug fixed here is the XP installer is not able, on win32, to remove the
components.reg file from the "cleanup" process, which leads to all sorts of mayhem,
because the cleanup process inherits the component.reg fd which is open at the
time the cleanup process is forked, and this it cannot remove something it has an
open reference to.
2001-06-02 04:06:44 +04:00
|
|
|
#if defined( XP_WIN )
|
2001-06-06 08:33:19 +04:00
|
|
|
#include "prmem.h"
|
Fix for http://bugzilla.mozilla.org/show_bug.cgi?id=80383
r=dbragg, sr=mscott, a=asa
For the nsIProcess component, which is only used by XPInstall, instead of calling
nspr for process creation, we call a simplified version which, on windows, will
cause the child process not to inherit fds open by the forking process.
Fix is only XP_WIN. nspr will provide a more risky, non-nsIProcess, XP solution at
some point which is either achieved by modifying open() to accept a non-inherit
flag (on win32) or do an fcntl() on Unix (see the bug for details specific to the
fcntl()), or provide another pair of create processes functions that are geared
towards non-inheriting process creation.
The bug fixed here is the XP installer is not able, on win32, to remove the
components.reg file from the "cleanup" process, which leads to all sorts of mayhem,
because the cleanup process inherits the component.reg fd which is open at the
time the cleanup process is forked, and this it cannot remove something it has an
open reference to.
2001-06-02 04:06:44 +04:00
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsLiteralString.h"
|
|
|
|
#include "nsReadableUtils.h"
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2001-01-20 00:23:24 +03:00
|
|
|
//-------------------------------------------------------------------//
|
|
|
|
// nsIProcess implementation
|
|
|
|
//-------------------------------------------------------------------//
|
|
|
|
NS_IMPL_ISUPPORTS1(nsProcess, nsIProcess)
|
|
|
|
|
|
|
|
//Constructor
|
|
|
|
nsProcess::nsProcess():mExitValue(-1),
|
|
|
|
mProcess(nsnull)
|
|
|
|
{
|
|
|
|
NS_INIT_ISUPPORTS();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsProcess::~nsProcess()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsProcess::Init(nsIFile* executable)
|
|
|
|
{
|
|
|
|
PRBool isFile;
|
|
|
|
|
|
|
|
//First make sure the file exists
|
|
|
|
nsresult rv = executable->IsFile(&isFile);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
if (!isFile)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
//Store the nsIFile in mExecutable
|
|
|
|
mExecutable = executable;
|
|
|
|
//Get the path because it is needed by the NSPR process creation
|
|
|
|
#ifdef XP_WIN
|
2002-04-27 09:33:09 +04:00
|
|
|
rv = mExecutable->GetNativeTarget(mTargetPath);
|
|
|
|
if (NS_FAILED(rv) || mTargetPath.IsEmpty() )
|
2001-01-20 00:23:24 +03:00
|
|
|
#endif
|
2002-04-27 09:33:09 +04:00
|
|
|
rv = mExecutable->GetNativePath(mTargetPath);
|
2001-01-20 00:23:24 +03:00
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-06 08:33:19 +04:00
|
|
|
#if defined( XP_WIN )
|
|
|
|
static int assembleCmdLine(char *const *argv, char **cmdLine)
|
|
|
|
{
|
|
|
|
char *const *arg;
|
|
|
|
char *p, *q;
|
|
|
|
int cmdLineSize;
|
|
|
|
int numBackslashes;
|
|
|
|
int i;
|
|
|
|
int argNeedQuotes;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find out how large the command line buffer should be.
|
|
|
|
*/
|
|
|
|
cmdLineSize = 0;
|
|
|
|
for (arg = argv; *arg; arg++) {
|
|
|
|
/*
|
|
|
|
* \ and " need to be escaped by a \. In the worst case,
|
|
|
|
* every character is a \ or ", so the string of length
|
|
|
|
* may double. If we quote an argument, that needs two ".
|
|
|
|
* Finally, we need a space between arguments, and
|
|
|
|
* a null byte at the end of command line.
|
|
|
|
*/
|
|
|
|
cmdLineSize += 2 * strlen(*arg) /* \ and " need to be escaped */
|
|
|
|
+ 2 /* we quote every argument */
|
|
|
|
+ 1; /* space in between, or final null */
|
|
|
|
}
|
|
|
|
p = *cmdLine = (char *) PR_MALLOC(cmdLineSize);
|
|
|
|
if (p == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (arg = argv; *arg; arg++) {
|
|
|
|
/* Add a space to separates the arguments */
|
|
|
|
if (arg != argv) {
|
|
|
|
*p++ = ' ';
|
|
|
|
}
|
|
|
|
q = *arg;
|
|
|
|
numBackslashes = 0;
|
|
|
|
argNeedQuotes = 0;
|
|
|
|
|
|
|
|
/* If the argument contains white space, it needs to be quoted. */
|
|
|
|
if (strpbrk(*arg, " \f\n\r\t\v")) {
|
|
|
|
argNeedQuotes = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argNeedQuotes) {
|
|
|
|
*p++ = '"';
|
|
|
|
}
|
|
|
|
while (*q) {
|
|
|
|
if (*q == '\\') {
|
|
|
|
numBackslashes++;
|
|
|
|
q++;
|
|
|
|
} else if (*q == '"') {
|
|
|
|
if (numBackslashes) {
|
|
|
|
/*
|
|
|
|
* Double the backslashes since they are followed
|
|
|
|
* by a quote
|
|
|
|
*/
|
|
|
|
for (i = 0; i < 2 * numBackslashes; i++) {
|
|
|
|
*p++ = '\\';
|
|
|
|
}
|
|
|
|
numBackslashes = 0;
|
|
|
|
}
|
|
|
|
/* To escape the quote */
|
|
|
|
*p++ = '\\';
|
|
|
|
*p++ = *q++;
|
|
|
|
} else {
|
|
|
|
if (numBackslashes) {
|
|
|
|
/*
|
|
|
|
* Backslashes are not followed by a quote, so
|
|
|
|
* don't need to double the backslashes.
|
|
|
|
*/
|
|
|
|
for (i = 0; i < numBackslashes; i++) {
|
|
|
|
*p++ = '\\';
|
|
|
|
}
|
|
|
|
numBackslashes = 0;
|
|
|
|
}
|
|
|
|
*p++ = *q++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now we are at the end of this argument */
|
|
|
|
if (numBackslashes) {
|
|
|
|
/*
|
|
|
|
* Double the backslashes if we have a quote string
|
|
|
|
* delimiter at the end.
|
|
|
|
*/
|
|
|
|
if (argNeedQuotes) {
|
|
|
|
numBackslashes *= 2;
|
|
|
|
}
|
|
|
|
for (i = 0; i < numBackslashes; i++) {
|
|
|
|
*p++ = '\\';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (argNeedQuotes) {
|
|
|
|
*p++ = '"';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*p = '\0';
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-01-20 00:23:24 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsProcess::Run(PRBool blocking, const char **args, PRUint32 count, PRUint32 *pid)
|
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
|
|
|
// make sure that when we allocate we have 1 greater than the
|
|
|
|
// count since we need to null terminate the list for the argv to
|
|
|
|
// pass into PR_CreateProcess
|
|
|
|
char **my_argv = NULL;
|
|
|
|
my_argv = (char **)malloc(sizeof(char *) * (count + 2) );
|
|
|
|
if (!my_argv) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
// copy the args
|
|
|
|
PRUint32 i;
|
|
|
|
for (i=0; i < count; i++) {
|
|
|
|
my_argv[i+1] = NS_CONST_CAST(char*, args[i]);
|
|
|
|
}
|
|
|
|
// we need to set argv[0] to the program name.
|
|
|
|
my_argv[0] = NS_CONST_CAST(char*, mTargetPath.get());
|
|
|
|
// null terminate the array
|
|
|
|
my_argv[count+1] = NULL;
|
|
|
|
|
Fix for http://bugzilla.mozilla.org/show_bug.cgi?id=80383
r=dbragg, sr=mscott, a=asa
For the nsIProcess component, which is only used by XPInstall, instead of calling
nspr for process creation, we call a simplified version which, on windows, will
cause the child process not to inherit fds open by the forking process.
Fix is only XP_WIN. nspr will provide a more risky, non-nsIProcess, XP solution at
some point which is either achieved by modifying open() to accept a non-inherit
flag (on win32) or do an fcntl() on Unix (see the bug for details specific to the
fcntl()), or provide another pair of create processes functions that are geared
towards non-inheriting process creation.
The bug fixed here is the XP installer is not able, on win32, to remove the
components.reg file from the "cleanup" process, which leads to all sorts of mayhem,
because the cleanup process inherits the component.reg fd which is open at the
time the cleanup process is forked, and this it cannot remove something it has an
open reference to.
2001-06-02 04:06:44 +04:00
|
|
|
#if defined(XP_WIN)
|
|
|
|
STARTUPINFO startupInfo;
|
|
|
|
PROCESS_INFORMATION procInfo;
|
|
|
|
BOOL retVal;
|
2001-06-06 08:33:19 +04:00
|
|
|
char *cmdLine;
|
|
|
|
|
|
|
|
if (assembleCmdLine(my_argv, &cmdLine) == -1) {
|
|
|
|
nsMemory::Free(my_argv);
|
|
|
|
return NS_ERROR_FILE_EXECUTION_FAILED;
|
|
|
|
}
|
Fix for http://bugzilla.mozilla.org/show_bug.cgi?id=80383
r=dbragg, sr=mscott, a=asa
For the nsIProcess component, which is only used by XPInstall, instead of calling
nspr for process creation, we call a simplified version which, on windows, will
cause the child process not to inherit fds open by the forking process.
Fix is only XP_WIN. nspr will provide a more risky, non-nsIProcess, XP solution at
some point which is either achieved by modifying open() to accept a non-inherit
flag (on win32) or do an fcntl() on Unix (see the bug for details specific to the
fcntl()), or provide another pair of create processes functions that are geared
towards non-inheriting process creation.
The bug fixed here is the XP installer is not able, on win32, to remove the
components.reg file from the "cleanup" process, which leads to all sorts of mayhem,
because the cleanup process inherits the component.reg fd which is open at the
time the cleanup process is forked, and this it cannot remove something it has an
open reference to.
2001-06-02 04:06:44 +04:00
|
|
|
|
|
|
|
ZeroMemory(&startupInfo, sizeof(startupInfo));
|
|
|
|
startupInfo.cb = sizeof(startupInfo);
|
|
|
|
|
|
|
|
retVal = CreateProcess(NULL,
|
2001-06-06 08:33:19 +04:00
|
|
|
// NS_CONST_CAST(char*, mTargetPath.get()),
|
|
|
|
cmdLine,
|
Fix for http://bugzilla.mozilla.org/show_bug.cgi?id=80383
r=dbragg, sr=mscott, a=asa
For the nsIProcess component, which is only used by XPInstall, instead of calling
nspr for process creation, we call a simplified version which, on windows, will
cause the child process not to inherit fds open by the forking process.
Fix is only XP_WIN. nspr will provide a more risky, non-nsIProcess, XP solution at
some point which is either achieved by modifying open() to accept a non-inherit
flag (on win32) or do an fcntl() on Unix (see the bug for details specific to the
fcntl()), or provide another pair of create processes functions that are geared
towards non-inheriting process creation.
The bug fixed here is the XP installer is not able, on win32, to remove the
components.reg file from the "cleanup" process, which leads to all sorts of mayhem,
because the cleanup process inherits the component.reg fd which is open at the
time the cleanup process is forked, and this it cannot remove something it has an
open reference to.
2001-06-02 04:06:44 +04:00
|
|
|
NULL, /* security attributes for the new
|
|
|
|
* process */
|
|
|
|
NULL, /* security attributes for the primary
|
|
|
|
* thread in the new process */
|
|
|
|
FALSE, /* inherit handles */
|
|
|
|
0, /* creation flags */
|
|
|
|
NULL, /* env */
|
|
|
|
NULL, /* current drive and directory */
|
|
|
|
&startupInfo,
|
|
|
|
&procInfo
|
|
|
|
);
|
2001-06-06 08:33:19 +04:00
|
|
|
PR_FREEIF( cmdLine );
|
Fix for http://bugzilla.mozilla.org/show_bug.cgi?id=80383
r=dbragg, sr=mscott, a=asa
For the nsIProcess component, which is only used by XPInstall, instead of calling
nspr for process creation, we call a simplified version which, on windows, will
cause the child process not to inherit fds open by the forking process.
Fix is only XP_WIN. nspr will provide a more risky, non-nsIProcess, XP solution at
some point which is either achieved by modifying open() to accept a non-inherit
flag (on win32) or do an fcntl() on Unix (see the bug for details specific to the
fcntl()), or provide another pair of create processes functions that are geared
towards non-inheriting process creation.
The bug fixed here is the XP installer is not able, on win32, to remove the
components.reg file from the "cleanup" process, which leads to all sorts of mayhem,
because the cleanup process inherits the component.reg fd which is open at the
time the cleanup process is forked, and this it cannot remove something it has an
open reference to.
2001-06-02 04:06:44 +04:00
|
|
|
if (blocking) {
|
|
|
|
|
|
|
|
// if success, wait for process termination. the early returns and such
|
|
|
|
// are a bit ugly but preserving the logic of the nspr code I copied to
|
|
|
|
// minimize our risk abit.
|
|
|
|
|
|
|
|
if ( retVal == TRUE ) {
|
|
|
|
DWORD dwRetVal;
|
|
|
|
unsigned long exitCode;
|
|
|
|
|
|
|
|
dwRetVal = WaitForSingleObject(procInfo.hProcess, INFINITE);
|
|
|
|
if (dwRetVal == WAIT_FAILED) {
|
|
|
|
nsMemory::Free(my_argv);
|
|
|
|
return PR_FAILURE;
|
|
|
|
}
|
|
|
|
if (GetExitCodeProcess(procInfo.hProcess, &exitCode) == FALSE) {
|
|
|
|
mExitValue = exitCode;
|
|
|
|
nsMemory::Free(my_argv);
|
|
|
|
return PR_FAILURE;
|
|
|
|
}
|
|
|
|
mExitValue = exitCode;
|
|
|
|
CloseHandle(procInfo.hProcess);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
rv = PR_FAILURE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
|
|
|
|
// map return value into success code
|
|
|
|
|
|
|
|
if ( retVal == TRUE )
|
|
|
|
rv = PR_SUCCESS;
|
|
|
|
else
|
|
|
|
rv = PR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
if ( blocking ) {
|
2002-04-27 09:33:09 +04:00
|
|
|
mProcess = PR_CreateProcess(mTargetPath.get(), my_argv, NULL, NULL);
|
2001-01-20 00:23:24 +03:00
|
|
|
if (mProcess)
|
|
|
|
rv = PR_WaitProcess(mProcess, &mExitValue);
|
|
|
|
}
|
Fix for http://bugzilla.mozilla.org/show_bug.cgi?id=80383
r=dbragg, sr=mscott, a=asa
For the nsIProcess component, which is only used by XPInstall, instead of calling
nspr for process creation, we call a simplified version which, on windows, will
cause the child process not to inherit fds open by the forking process.
Fix is only XP_WIN. nspr will provide a more risky, non-nsIProcess, XP solution at
some point which is either achieved by modifying open() to accept a non-inherit
flag (on win32) or do an fcntl() on Unix (see the bug for details specific to the
fcntl()), or provide another pair of create processes functions that are geared
towards non-inheriting process creation.
The bug fixed here is the XP installer is not able, on win32, to remove the
components.reg file from the "cleanup" process, which leads to all sorts of mayhem,
because the cleanup process inherits the component.reg fd which is open at the
time the cleanup process is forked, and this it cannot remove something it has an
open reference to.
2001-06-02 04:06:44 +04:00
|
|
|
else {
|
2002-04-27 09:33:09 +04:00
|
|
|
rv = PR_CreateProcessDetached(mTargetPath.get(), my_argv, NULL, NULL);
|
Fix for http://bugzilla.mozilla.org/show_bug.cgi?id=80383
r=dbragg, sr=mscott, a=asa
For the nsIProcess component, which is only used by XPInstall, instead of calling
nspr for process creation, we call a simplified version which, on windows, will
cause the child process not to inherit fds open by the forking process.
Fix is only XP_WIN. nspr will provide a more risky, non-nsIProcess, XP solution at
some point which is either achieved by modifying open() to accept a non-inherit
flag (on win32) or do an fcntl() on Unix (see the bug for details specific to the
fcntl()), or provide another pair of create processes functions that are geared
towards non-inheriting process creation.
The bug fixed here is the XP installer is not able, on win32, to remove the
components.reg file from the "cleanup" process, which leads to all sorts of mayhem,
because the cleanup process inherits the component.reg fd which is open at the
time the cleanup process is forked, and this it cannot remove something it has an
open reference to.
2001-06-02 04:06:44 +04:00
|
|
|
}
|
|
|
|
#endif
|
2001-01-20 00:23:24 +03:00
|
|
|
|
|
|
|
// free up our argv
|
|
|
|
nsMemory::Free(my_argv);
|
|
|
|
|
|
|
|
if (rv != PR_SUCCESS)
|
|
|
|
return NS_ERROR_FILE_EXECUTION_FAILED;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsProcess::InitWithPid(PRUint32 pid)
|
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsProcess::GetLocation(nsIFile** aLocation)
|
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsProcess::GetPid(PRUint32 *aPid)
|
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsProcess::GetProcessName(char** aProcessName)
|
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsProcess::GetProcessSignature(PRUint32 *aProcessSignature)
|
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsProcess::Kill()
|
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
if (mProcess)
|
|
|
|
rv = PR_KillProcess(mProcess);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsProcess::GetExitValue(PRInt32 *aExitValue)
|
|
|
|
{
|
|
|
|
*aExitValue = mExitValue;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2002-03-23 00:37:50 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsProcess::GetEnvironment(const char *aName, char **aValue)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aName);
|
|
|
|
*aValue = nsCRT::strdup(PR_GetEnv(aName));
|
|
|
|
if (!*aValue)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|