/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim:set ts=2 sw=2 sts=2 et cindent: */ /* ***** 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.org code. * * The Initial Developer of the Original Code is Google Inc. * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): * Darin Fisher * * 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 ***** */ #include #include #include "nsUpdateDriver.h" #include "nsXULAppAPI.h" #include "nsAppRunner.h" #include "nsILocalFile.h" #include "nsISimpleEnumerator.h" #include "nsIDirectoryEnumerator.h" #include "nsCOMPtr.h" #include "nsCOMArray.h" #include "nsString.h" #include "nsPrintfCString.h" #include "prproces.h" #include "prlog.h" #if defined(XP_WIN) # include # include # include # define getcwd(path, size) _getcwd(path, size) # define getpid() GetCurrentProcessId() #elif defined(XP_OS2) # include # define INCL_DOSFILEMGR # include #elif defined(XP_UNIX) # include #endif // // We use execv to spawn the updater process on all UNIX systems except Mac OSX // since it is known to cause problems on the Mac. Windows has execv, but it // is a faked implementation that doesn't really replace the current process. // Instead it spawns a new process, so we gain nothing from using execv on // Windows. // // On platforms where we are not calling execv, we may need to make the // udpaterfail executable wait for the calling process to exit. Otherwise, the // updater may have trouble modifying our executable image (because it might // still be in use). This is accomplished by passing our PID to the updater so // that it can wait for us to exit. This is not perfect as there is a race // condition that could bite us. It's possible that the calling process could // exit before the updater waits on the specified PID, and in the meantime a // new process with the same PID could be created. This situation is unlikely, // however, given the way most operating systems recycle PIDs. We'll take our // chances ;-) // // A similar #define lives in updater.cpp and should be kept in sync with this. // #if defined(XP_UNIX) && !defined(XP_MACOSX) #define USE_EXECV #endif #ifdef PR_LOGGING static PRLogModuleInfo *sUpdateLog = PR_NewLogModule("updatedriver"); #endif #define LOG(args) PR_LOG(sUpdateLog, PR_LOG_DEBUG, args) #ifdef XP_WIN static const char kUpdaterBin[] = "updater.exe"; #else static const char kUpdaterBin[] = "updater"; #endif static const char kUpdaterINI[] = "updater.ini"; #ifdef XP_MACOSX static const char kUpdaterApp[] = "updater.app"; #endif static nsresult GetCurrentWorkingDir(char *buf, size_t size) { // Cannot use NS_GetSpecialDirectory because XPCOM is not yet initialized. // This code is duplicated from xpcom/io/SpecialSystemDirectory.cpp: #if defined(XP_OS2) if (DosQueryPathInfo( ".", FIL_QUERYFULLNAME, buf, size)) return NS_ERROR_FAILURE; #else if(!getcwd(buf, size)) return NS_ERROR_FAILURE; #endif return NS_OK; } PR_STATIC_CALLBACK(int) ScanDirComparator(nsIFile *a, nsIFile *b, void *unused) { // lexically compare the leaf names of these two files nsCAutoString a_name, b_name; a->GetNativeLeafName(a_name); b->GetNativeLeafName(b_name); return Compare(a_name, b_name); } static nsresult ScanDir(nsIFile *dir, nsCOMArray *result) { nsresult rv; nsCOMPtr simpEnum; rv = dir->GetDirectoryEntries(getter_AddRefs(simpEnum)); if (NS_FAILED(rv)) return rv; nsCOMPtr dirEnum = do_QueryInterface(simpEnum, &rv); if (NS_FAILED(rv)) return rv; nsCOMPtr file; for (;;) { rv = dirEnum->GetNextFile(getter_AddRefs(file)); if (NS_FAILED(rv)) return rv; // enumeration complete when null file is returned if (!file) break; if (!result->AppendObject(file)) return NS_ERROR_OUT_OF_MEMORY; } result->Sort(ScanDirComparator, nsnull); return NS_OK; } static PRBool GetFile(nsIFile *dir, const nsCSubstring &name, nsCOMPtr &result) { nsresult rv; nsCOMPtr statusFile; rv = dir->Clone(getter_AddRefs(statusFile)); if (NS_FAILED(rv)) return PR_FALSE; rv = statusFile->AppendNative(name); if (NS_FAILED(rv)) return PR_FALSE; result = do_QueryInterface(statusFile, &rv); return NS_SUCCEEDED(rv); } static PRBool GetStatusFile(nsIFile *dir, nsCOMPtr &result) { return GetFile(dir, NS_LITERAL_CSTRING("update.status"), result); } static PRBool IsPending(nsILocalFile *statusFile) { nsresult rv; FILE *fp; rv = statusFile->OpenANSIFileDesc("r", &fp); if (NS_FAILED(rv)) return PR_FALSE; char buf[32]; char *result = fgets(buf, sizeof(buf), fp); fclose(fp); if (!result) return PR_FALSE; const char kPending[] = "pending"; return (strncmp(buf, kPending, sizeof(kPending) - 1) == 0); } static PRBool SetStatus(nsILocalFile *statusFile, const char *status) { FILE *fp; nsresult rv = statusFile->OpenANSIFileDesc("w", &fp); if (NS_FAILED(rv)) return PR_FALSE; fprintf(fp, "%s\n", status); fclose(fp); return PR_TRUE; } static PRBool CopyUpdaterIntoUpdateDir(nsIFile *appDir, nsIFile *updateDir, nsCOMPtr &updater) { // We have to move the updater binary and its resource file. const char *filesToMove[] = { #if defined(XP_MACOSX) kUpdaterApp, #else kUpdaterINI, kUpdaterBin, #endif nsnull }; nsresult rv; for (const char **leafName = filesToMove; *leafName; ++leafName) { nsDependentCString leaf(*leafName); nsCOMPtr file; // Make sure there is not an existing file in the target location. rv = updateDir->Clone(getter_AddRefs(file)); if (NS_FAILED(rv)) return PR_FALSE; rv = file->AppendNative(leaf); if (NS_FAILED(rv)) return PR_FALSE; file->Remove(PR_FALSE); // Now, copy into the target location. rv = appDir->Clone(getter_AddRefs(file)); if (NS_FAILED(rv)) return PR_FALSE; rv = file->AppendNative(leaf); if (NS_FAILED(rv)) return PR_FALSE; rv = file->CopyToNative(updateDir, EmptyCString()); if (NS_FAILED(rv)) return PR_FALSE; } // Finally, return the location of the updater binary. rv = updateDir->Clone(getter_AddRefs(updater)); if (NS_FAILED(rv)) return PR_FALSE; #if defined(XP_MACOSX) rv = updater->AppendNative(NS_LITERAL_CSTRING(kUpdaterApp)); rv |= updater->AppendNative(NS_LITERAL_CSTRING("Contents")); rv |= updater->AppendNative(NS_LITERAL_CSTRING("MacOS")); if (NS_FAILED(rv)) return PR_FALSE; #endif rv = updater->AppendNative(NS_LITERAL_CSTRING(kUpdaterBin)); return NS_SUCCEEDED(rv); } static void ApplyUpdate(nsIFile *appDir, nsIFile *updateDir, nsILocalFile *statusFile, int appArgc, char **appArgv) { // Steps: // - mark update as 'applying' // - copy updater into update dir // - run updater w/ app dir as the current working dir nsCOMPtr updater; if (!CopyUpdaterIntoUpdateDir(appDir, updateDir, updater)) { LOG(("failed copying updater\n")); return; } // We need to use the value returned from XRE_GetBinaryPath when attempting // to restart the running application. nsCOMPtr appFile; XRE_GetBinaryPath(appArgv[0], getter_AddRefs(appFile)); if (!appFile) return; nsCAutoString appFilePath; nsresult rv = appFile->GetNativePath(appFilePath); if (NS_FAILED(rv)) return; nsCAutoString updaterPath; rv = updater->GetNativePath(updaterPath); if (NS_FAILED(rv)) return; nsCAutoString appDirPath; #if defined(XP_MACOSX) // On Mac OSX, we need to apply the update to the Contents directory // which is the parent of the parent of the appDir. { nsCOMPtr parentDir1, parentDir2; rv = appDir->GetParent(getter_AddRefs(parentDir1)); if (NS_FAILED(rv)) return; rv = parentDir1->GetParent(getter_AddRefs(parentDir2)); if (NS_FAILED(rv)) return; rv = parentDir2->GetNativePath(appDirPath); } #else rv = appDir->GetNativePath(appDirPath); #endif if (NS_FAILED(rv)) return; nsCAutoString updateDirPath; rv = updateDir->GetNativePath(updateDirPath); if (NS_FAILED(rv)) return; // Get the current working directory. char workingDirPath[MAXPATHLEN]; rv = GetCurrentWorkingDir(workingDirPath, sizeof(workingDirPath)); if (NS_FAILED(rv)) return; if (!SetStatus(statusFile, "applying")) { LOG(("failed setting status to 'applying'\n")); return; } // Construct the PID argument for this process. If we are using execv, then // we pass "0" which is then ignored by the updater. #if defined(USE_EXECV) NS_NAMED_LITERAL_CSTRING(pid, "0"); #else nsCAutoString pid; pid.AppendInt((PRInt32) getpid()); #endif char **argv = new char*[5 + appArgc]; if (!argv) return; argv[0] = (char*) updaterPath.get(); argv[1] = (char*) updateDirPath.get(); argv[2] = (char*) pid.get(); if (appArgc) { argv[3] = workingDirPath; argv[4] = (char*) appFilePath.get(); for (int i = 1; i < appArgc; ++i) argv[4 + i] = appArgv[i]; argv[4 + appArgc] = nsnull; } else { argv[3] = nsnull; } LOG(("spawning updater process [%s]\n", updaterPath.get())); #if defined(USE_EXECV) chdir(appDirPath.get()); execv(updaterPath.get(), argv); #elif defined(XP_WIN) _chdir(appDirPath.get()); if (!WinLaunchChild(updaterPath.get(), appArgc + 4, argv)) return; _exit(0); #else PRStatus status; PRProcessAttr *attr; attr = PR_NewProcessAttr(); if (!attr) goto end; status = PR_ProcessAttrSetCurrentDirectory(attr, appDirPath.get()); if (status != PR_SUCCESS) goto end; PR_CreateProcessDetached(updaterPath.get(), argv, nsnull, attr); exit(0); end: PR_DestroyProcessAttr(attr); delete[] argv; #endif } nsresult ProcessUpdates(nsIFile *appDir, int argc, char **argv) { nsresult rv; nsCOMPtr updatesDir; rv = appDir->Clone(getter_AddRefs(updatesDir)); if (NS_FAILED(rv)) return rv; rv = updatesDir->AppendNative(NS_LITERAL_CSTRING("updates")); if (NS_FAILED(rv)) return rv; PRBool exists; rv = updatesDir->Exists(&exists); if (NS_FAILED(rv) || !exists) return rv; nsCOMArray dirEntries; rv = ScanDir(updatesDir, &dirEntries); if (NS_FAILED(rv)) return rv; if (dirEntries.Count() == 0) return NS_OK; // look for the first update subdirectory with a status of pending for (int i = 0; i < dirEntries.Count(); ++i) { nsCOMPtr statusFile; if (GetStatusFile(dirEntries[i], statusFile) && IsPending(statusFile)) { ApplyUpdate(appDir, dirEntries[i], statusFile, argc, argv); break; } } return NS_OK; }