2007-03-22 10:30:00 -07:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla 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/MPL/
|
|
|
|
*
|
|
|
|
* 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 XULRunner bootstrap.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Benjamin Smedberg <benjamin@smedbergs.us>.
|
|
|
|
*
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2005
|
|
|
|
* the Mozilla Foundation. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
2008-10-10 16:04:01 -07:00
|
|
|
* Robert Strong <robert.bugzilla@gmail.com>
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
// This file is not build directly. Instead, it is included in multiple
|
|
|
|
// shared objects.
|
|
|
|
|
|
|
|
#ifdef nsWindowsRestart_cpp
|
|
|
|
#error "nsWindowsRestart.cpp is not a header file, and must only be included once."
|
|
|
|
#else
|
|
|
|
#define nsWindowsRestart_cpp
|
|
|
|
#endif
|
|
|
|
|
2007-12-31 07:15:43 -08:00
|
|
|
#include "nsUTF8Utils.h"
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#include <shellapi.h>
|
|
|
|
|
|
|
|
#ifndef ERROR_ELEVATION_REQUIRED
|
|
|
|
#define ERROR_ELEVATION_REQUIRED 740L
|
|
|
|
#endif
|
|
|
|
|
|
|
|
BOOL (WINAPI *pCreateProcessWithTokenW)(HANDLE,
|
|
|
|
DWORD,
|
|
|
|
LPCWSTR,
|
|
|
|
LPWSTR,
|
|
|
|
DWORD,
|
|
|
|
LPVOID,
|
|
|
|
LPCWSTR,
|
|
|
|
LPSTARTUPINFOW,
|
|
|
|
LPPROCESS_INFORMATION);
|
|
|
|
|
|
|
|
BOOL (WINAPI *pIsUserAnAdmin)(VOID);
|
|
|
|
|
|
|
|
/**
|
2008-10-10 16:04:01 -07:00
|
|
|
* Get the length that the string will take and takes into account the
|
|
|
|
* additional length if the string needs to be quoted and if characters need to
|
|
|
|
* be escaped.
|
2007-03-22 10:30:00 -07:00
|
|
|
*/
|
2008-10-10 16:04:01 -07:00
|
|
|
static int ArgStrLen(const PRUnichar *s)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-10-10 16:04:01 -07:00
|
|
|
int backslashes = 0;
|
|
|
|
int i = wcslen(s);
|
|
|
|
BOOL hasDoubleQuote = wcschr(s, L'"') != NULL;
|
|
|
|
// Only add doublequotes if the string contains a space or a tab
|
|
|
|
BOOL addDoubleQuotes = wcspbrk(s, L" \t") != NULL;
|
|
|
|
|
|
|
|
if (addDoubleQuotes) {
|
|
|
|
i += 2; // initial and final duoblequote
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hasDoubleQuote) {
|
|
|
|
while (*s) {
|
|
|
|
if (*s == '\\') {
|
|
|
|
++backslashes;
|
|
|
|
} else {
|
|
|
|
if (*s == '"') {
|
|
|
|
// Escape the doublequote and all backslashes preceding the doublequote
|
|
|
|
i += backslashes + 1;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-10-10 16:04:01 -07:00
|
|
|
backslashes = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
++s;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2008-10-10 16:04:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-10-10 16:04:01 -07:00
|
|
|
* Copy string "s" to string "d", quoting the argument as appropriate and
|
|
|
|
* escaping doublequotes along with any backslashes that immediately precede
|
|
|
|
* duoblequotes.
|
2007-03-22 10:30:00 -07:00
|
|
|
* The CRT parses this to retrieve the original argc/argv that we meant,
|
|
|
|
* see STDARGV.C in the MSVC6 CRT sources.
|
|
|
|
*
|
|
|
|
* @return the end of the string
|
|
|
|
*/
|
2008-10-10 16:04:01 -07:00
|
|
|
static PRUnichar* ArgToString(PRUnichar *d, const PRUnichar *s)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-10-10 16:04:01 -07:00
|
|
|
int backslashes = 0;
|
|
|
|
BOOL hasDoubleQuote = wcschr(s, L'"') != NULL;
|
|
|
|
// Only add doublequotes if the string contains a space or a tab
|
|
|
|
BOOL addDoubleQuotes = wcspbrk(s, L" \t") != NULL;
|
|
|
|
|
|
|
|
if (addDoubleQuotes) {
|
|
|
|
*d = '"'; // initial doublequote
|
|
|
|
++d;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-10-10 16:04:01 -07:00
|
|
|
if (hasDoubleQuote) {
|
|
|
|
int i;
|
|
|
|
while (*s) {
|
|
|
|
if (*s == '\\') {
|
|
|
|
++backslashes;
|
|
|
|
} else {
|
|
|
|
if (*s == '"') {
|
|
|
|
// Escape the doublequote and all backslashes preceding the doublequote
|
|
|
|
for (i = 0; i <= backslashes; ++i) {
|
|
|
|
*d = '\\';
|
|
|
|
++d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
backslashes = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
*d = *s;
|
|
|
|
++d; ++s;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
wcscpy(d, s);
|
|
|
|
d += wcslen(s);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-10-10 16:04:01 -07:00
|
|
|
if (addDoubleQuotes) {
|
|
|
|
*d = '"'; // final doublequote
|
|
|
|
++d;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return d;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-10-10 16:04:01 -07:00
|
|
|
* Creates a command line from a list of arguments. The returned
|
|
|
|
* string is allocated with "malloc" and should be "free"d.
|
2007-12-31 07:15:43 -08:00
|
|
|
*
|
|
|
|
* argv is UTF8
|
2007-03-22 10:30:00 -07:00
|
|
|
*/
|
2007-12-31 07:15:43 -08:00
|
|
|
static PRUnichar*
|
|
|
|
MakeCommandLine(int argc, PRUnichar **argv)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
int i;
|
2008-10-10 16:04:01 -07:00
|
|
|
int len = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-10-10 16:04:01 -07:00
|
|
|
// The + 1 of the last argument handles the allocation for null termination
|
2007-03-22 10:30:00 -07:00
|
|
|
for (i = 0; i < argc; ++i)
|
2008-10-10 16:04:01 -07:00
|
|
|
len += ArgStrLen(argv[i]) + 1;
|
|
|
|
|
2009-02-05 15:50:44 -08:00
|
|
|
#ifdef WINCE
|
|
|
|
wchar_t *env = mozce_GetEnvironmentCL();
|
2009-02-10 15:10:08 -08:00
|
|
|
// XXX There's a buffer overrun here somewhere that causes a heap
|
|
|
|
// check to fail in the final free of the results of this function
|
|
|
|
// in WinLaunchChild. I can't honestly figure out where it is,
|
|
|
|
// because I'm pretty sure with the + 1 above and the wcslen here,
|
|
|
|
// we have enough room for a trailing NULL. But, adding a little
|
|
|
|
// bit more slop (the +10) seems to fix the problem.
|
|
|
|
//
|
|
|
|
// Supposedly CreateProcessW can modify its arguments, so maybe it's
|
|
|
|
// doing some scribbling?
|
|
|
|
len += (wcslen(env)) + 10;
|
2009-02-05 15:50:44 -08:00
|
|
|
#endif
|
|
|
|
|
2008-10-10 16:04:01 -07:00
|
|
|
// Protect against callers that pass 0 arguments
|
|
|
|
if (len == 0)
|
|
|
|
len = 1;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-12-31 07:15:43 -08:00
|
|
|
PRUnichar *s = (PRUnichar*) malloc(len * sizeof(PRUnichar));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!s)
|
|
|
|
return NULL;
|
|
|
|
|
2007-12-31 07:15:43 -08:00
|
|
|
PRUnichar *c = s;
|
2007-03-22 10:30:00 -07:00
|
|
|
for (i = 0; i < argc; ++i) {
|
2008-10-10 16:04:01 -07:00
|
|
|
c = ArgToString(c, argv[i]);
|
|
|
|
if (i + 1 != argc) {
|
|
|
|
*c = ' ';
|
|
|
|
++c;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
*c = '\0';
|
|
|
|
|
2009-02-05 15:50:44 -08:00
|
|
|
#ifdef WINCE
|
|
|
|
wcscat(s, env);
|
2009-06-14 01:55:04 -07:00
|
|
|
if (env)
|
|
|
|
free(env);
|
2009-02-05 15:50:44 -08:00
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2007-12-31 07:15:43 -08:00
|
|
|
/**
|
|
|
|
* Convert UTF8 to UTF16 without using the normal XPCOM goop, which we
|
|
|
|
* can't link to updater.exe.
|
|
|
|
*/
|
|
|
|
static PRUnichar*
|
|
|
|
AllocConvertUTF8toUTF16(const char *arg)
|
|
|
|
{
|
|
|
|
// UTF16 can't be longer in units than UTF8
|
|
|
|
int len = strlen(arg);
|
|
|
|
PRUnichar *s = new PRUnichar[(len + 1) * sizeof(PRUnichar)];
|
|
|
|
if (!s)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
ConvertUTF8toUTF16 convert(s);
|
2008-01-03 16:07:06 -08:00
|
|
|
convert.write(arg, len);
|
2008-01-07 08:38:12 -08:00
|
|
|
convert.write_terminator();
|
2007-12-31 07:15:43 -08:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
FreeAllocStrings(int argc, PRUnichar **argv)
|
|
|
|
{
|
|
|
|
while (argc) {
|
|
|
|
--argc;
|
|
|
|
delete [] argv[argc];
|
|
|
|
}
|
|
|
|
|
|
|
|
delete [] argv;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* Launch a child process with the specified arguments.
|
|
|
|
* @note argv[0] is ignored
|
2007-12-31 07:15:43 -08:00
|
|
|
* @note The form of this function that takes char **argv expects UTF-8
|
2007-03-22 10:30:00 -07:00
|
|
|
*/
|
2007-12-31 07:15:43 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
BOOL
|
2009-01-01 16:18:33 -08:00
|
|
|
WinLaunchChild(const PRUnichar *exePath, int argc, PRUnichar **argv);
|
2007-12-31 07:15:43 -08:00
|
|
|
|
|
|
|
BOOL
|
2009-01-01 16:18:33 -08:00
|
|
|
WinLaunchChild(const PRUnichar *exePath, int argc, char **argv)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2007-12-31 07:15:43 -08:00
|
|
|
PRUnichar** argvConverted = new PRUnichar*[argc];
|
|
|
|
if (!argvConverted)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
for (int i = 0; i < argc; ++i) {
|
|
|
|
argvConverted[i] = AllocConvertUTF8toUTF16(argv[i]);
|
|
|
|
if (!argvConverted[i]) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-01 16:18:33 -08:00
|
|
|
BOOL ok = WinLaunchChild(exePath, argc, argvConverted);
|
2007-12-31 07:15:43 -08:00
|
|
|
FreeAllocStrings(argc, argvConverted);
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL
|
2009-01-01 16:18:33 -08:00
|
|
|
WinLaunchChild(const PRUnichar *exePath, int argc, PRUnichar **argv)
|
2007-12-31 07:15:43 -08:00
|
|
|
{
|
|
|
|
PRUnichar *cl;
|
2007-03-22 10:30:00 -07:00
|
|
|
BOOL ok;
|
2009-02-05 15:50:44 -08:00
|
|
|
|
|
|
|
#ifdef WINCE
|
|
|
|
// Windows Mobile Issue:
|
|
|
|
// When passing both an image name and a command line to
|
|
|
|
// CreateProcessW, you need to make sure that the image name
|
|
|
|
// identially matches the first argument of the command line. If
|
|
|
|
// they do not match, Windows Mobile will send two "argv[0]" values.
|
|
|
|
// To avoid this problem, we will strip off the argv here, and
|
|
|
|
// depend only on the exePath.
|
|
|
|
argv = argv + 1;
|
|
|
|
argc--;
|
|
|
|
#endif
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
cl = MakeCommandLine(argc, argv);
|
|
|
|
if (!cl)
|
|
|
|
return FALSE;
|
|
|
|
|
2009-01-01 16:18:33 -08:00
|
|
|
STARTUPINFOW si = {sizeof(si), 0};
|
|
|
|
PROCESS_INFORMATION pi = {0};
|
|
|
|
|
|
|
|
ok = CreateProcessW(exePath,
|
|
|
|
cl,
|
|
|
|
NULL, // no special security attributes
|
|
|
|
NULL, // no special thread attributes
|
|
|
|
FALSE, // don't inherit filehandles
|
|
|
|
0, // No special process creation flags
|
|
|
|
NULL, // inherit my environment
|
|
|
|
NULL, // use my current directory
|
|
|
|
&si,
|
|
|
|
&pi);
|
|
|
|
|
|
|
|
if (ok) {
|
|
|
|
CloseHandle(pi.hProcess);
|
|
|
|
CloseHandle(pi.hThread);
|
2009-02-05 15:50:44 -08:00
|
|
|
} else {
|
2009-02-10 15:10:08 -08:00
|
|
|
LPVOID lpMsgBuf = NULL;
|
2009-02-05 15:50:44 -08:00
|
|
|
FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER |
|
|
|
|
FORMAT_MESSAGE_FROM_SYSTEM |
|
|
|
|
FORMAT_MESSAGE_IGNORE_INSERTS,
|
|
|
|
NULL,
|
|
|
|
GetLastError(),
|
|
|
|
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
|
|
|
|
(LPTSTR) &lpMsgBuf,
|
|
|
|
0,
|
|
|
|
NULL
|
|
|
|
);
|
2009-02-10 15:10:08 -08:00
|
|
|
wprintf(L"Error restarting: %s\n", lpMsgBuf ? lpMsgBuf : L"(null)");
|
2009-05-14 07:17:51 -07:00
|
|
|
if (lpMsgBuf)
|
|
|
|
LocalFree(lpMsgBuf);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
free(cl);
|
|
|
|
|
|
|
|
return ok;
|
|
|
|
}
|