Enable handling of XDG on Thunderbird, and update gtest accordingly. Differential Revision: https://phabricator.services.mozilla.com/D309109
1687 lines
53 KiB
C++
1687 lines
53 KiB
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "nsAppRunner.h"
|
|
#include "nsXREDirProvider.h"
|
|
#ifndef ANDROID
|
|
# include "commonupdatedir.h"
|
|
#endif
|
|
|
|
#include "jsapi.h"
|
|
#include "xpcpublic.h"
|
|
#include "prprf.h"
|
|
#include "prenv.h"
|
|
|
|
#include "nsIAppStartup.h"
|
|
#include "nsIFile.h"
|
|
#include "nsIObserver.h"
|
|
#include "nsIObserverService.h"
|
|
#include "nsISimpleEnumerator.h"
|
|
#include "nsIToolkitProfileService.h"
|
|
#include "nsIXULRuntime.h"
|
|
#include "commonupdatedir.h"
|
|
|
|
#include "nsAppDirectoryServiceDefs.h"
|
|
#include "nsDirectoryServiceDefs.h"
|
|
#include "nsDirectoryServiceUtils.h"
|
|
#include "nsXULAppAPI.h"
|
|
#include "nsCategoryManagerUtils.h"
|
|
|
|
#include "nsDependentString.h"
|
|
#include "nsCOMArray.h"
|
|
#include "nsArrayEnumerator.h"
|
|
#include "nsEnumeratorUtils.h"
|
|
#include "nsReadableUtils.h"
|
|
|
|
#include "SpecialSystemDirectory.h"
|
|
|
|
#include "mozilla/dom/ScriptSettings.h"
|
|
|
|
#include "mozilla/AppShutdown.h"
|
|
#include "mozilla/AutoRestore.h"
|
|
#ifdef MOZ_BACKGROUNDTASKS
|
|
# include "mozilla/BackgroundTasks.h"
|
|
#endif
|
|
#include "mozilla/CmdLineAndEnvUtils.h"
|
|
#include "mozilla/Components.h"
|
|
#include "mozilla/DebugOnly.h"
|
|
#include "mozilla/Services.h"
|
|
#include "mozilla/Omnijar.h"
|
|
#include "mozilla/Preferences.h"
|
|
#include "mozilla/ProfilerLabels.h"
|
|
#include "mozilla/glean/ToolkitProfileMetrics.h"
|
|
#include "mozilla/glean/ToolkitXreMetrics.h"
|
|
#include "mozilla/Try.h"
|
|
#include "mozilla/Utf8.h"
|
|
#include "mozilla/XREAppData.h"
|
|
#include "nsPrintfCString.h"
|
|
|
|
#ifdef MOZ_THUNDERBIRD
|
|
# ifdef XP_MACOSX
|
|
# include "MacApplicationDelegate.h"
|
|
# endif
|
|
# include "ScopedNSSTypes.h"
|
|
# include "nsNSSComponent.h"
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
|
|
|
#ifdef XP_WIN
|
|
# include <windows.h>
|
|
# include <shlobj.h>
|
|
# include "WinUtils.h"
|
|
#endif
|
|
#ifdef XP_MACOSX
|
|
# ifdef NIGHTLY_BUILD
|
|
# include "AppGroupPath.h"
|
|
# endif
|
|
# include "nsILocalFileMac.h"
|
|
// for chflags()
|
|
# include <sys/stat.h>
|
|
# include <unistd.h>
|
|
#endif
|
|
#ifdef XP_IOS
|
|
# include "UIKitDirProvider.h"
|
|
#endif
|
|
|
|
#if defined(XP_MACOSX)
|
|
# define APP_REGISTRY_NAME "Application Registry"
|
|
#elif defined(XP_WIN)
|
|
# define APP_REGISTRY_NAME "registry.dat"
|
|
#else
|
|
# define APP_REGISTRY_NAME "appreg"
|
|
#endif
|
|
|
|
#define PREF_OVERRIDE_DIRNAME "preferences"
|
|
|
|
nsXREDirProvider* gDirServiceProvider = nullptr;
|
|
nsIFile* gDataDirHomeLocal = nullptr;
|
|
nsIFile* gDataDirHome = nullptr;
|
|
constinit nsCOMPtr<nsIFile> gDataDirProfileLocal{};
|
|
constinit nsCOMPtr<nsIFile> gDataDirProfile{};
|
|
|
|
#if defined(MOZ_WIDGET_GTK)
|
|
nsXREDirProvider::legacyOrXDGHomeTelemetry gXdgTelemetry =
|
|
nsXREDirProvider::legacyOrXDGHomeTelemetry::empty;
|
|
#endif // defined(MOZ_WIDGET_GTK)
|
|
|
|
// These are required to allow nsXREDirProvider to be usable in xpcshell tests.
|
|
// where gAppData is null.
|
|
#if defined(XP_MACOSX) || defined(XP_UNIX)
|
|
static const char* GetAppName() {
|
|
if (gAppData) {
|
|
return gAppData->name;
|
|
}
|
|
return nullptr;
|
|
}
|
|
#endif
|
|
|
|
#ifdef XP_MACOSX
|
|
static const char* GetAppVendor() {
|
|
if (gAppData) {
|
|
return gAppData->vendor;
|
|
}
|
|
return nullptr;
|
|
}
|
|
#endif
|
|
|
|
nsXREDirProvider::nsXREDirProvider() { gDirServiceProvider = this; }
|
|
|
|
nsXREDirProvider::~nsXREDirProvider() {
|
|
gDirServiceProvider = nullptr;
|
|
gDataDirHomeLocal = nullptr;
|
|
gDataDirHome = nullptr;
|
|
}
|
|
|
|
already_AddRefed<nsXREDirProvider> nsXREDirProvider::GetSingleton() {
|
|
if (!gDirServiceProvider) {
|
|
new nsXREDirProvider(); // This sets gDirServiceProvider
|
|
}
|
|
return do_AddRef(gDirServiceProvider);
|
|
}
|
|
|
|
nsresult nsXREDirProvider::Initialize(nsIFile* aXULAppDir, nsIFile* aGREDir) {
|
|
NS_ENSURE_ARG(aXULAppDir);
|
|
NS_ENSURE_ARG(aGREDir);
|
|
|
|
mXULAppDir = aXULAppDir;
|
|
mGREDir = aGREDir;
|
|
nsCOMPtr<nsIFile> binaryPath;
|
|
nsresult rv = XRE_GetBinaryPath(getter_AddRefs(binaryPath));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
return binaryPath->GetParent(getter_AddRefs(mGREBinDir));
|
|
}
|
|
|
|
nsresult nsXREDirProvider::SetProfile(nsIFile* aDir, nsIFile* aLocalDir) {
|
|
MOZ_ASSERT(aDir && aLocalDir, "We don't support no-profile apps!");
|
|
MOZ_ASSERT(!mProfileDir && !mProfileLocalDir,
|
|
"You may only set the profile directories once");
|
|
|
|
nsresult rv = EnsureDirectoryExists(aDir);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = EnsureDirectoryExists(aLocalDir);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
#ifndef XP_WIN
|
|
nsAutoCString profilePath;
|
|
rv = aDir->GetNativePath(profilePath);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nsAutoCString localProfilePath;
|
|
rv = aLocalDir->GetNativePath(localProfilePath);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
if (!mozilla::IsUtf8(profilePath) || !mozilla::IsUtf8(localProfilePath)) {
|
|
PR_fprintf(
|
|
PR_STDERR,
|
|
"Error: The profile path is not valid UTF-8. Unable to continue.\n");
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
#endif
|
|
|
|
#ifdef XP_MACOSX
|
|
bool same;
|
|
if (NS_SUCCEEDED(aDir->Equals(aLocalDir, &same)) && !same) {
|
|
// Ensure that the cache directory is not indexed by Spotlight
|
|
// (bug 718910). At least on OS X, the cache directory (under
|
|
// ~/Library/Caches/) is always the "local" user profile
|
|
// directory. This is confusing, since *both* user profile
|
|
// directories are "local" (they both exist under the user's
|
|
// home directory). But this usage dates back at least as far
|
|
// as the patch for bug 291033, where "local" seems to mean
|
|
// "suitable for temporary storage". Don't hide the cache
|
|
// directory if by some chance it and the "non-local" profile
|
|
// directory are the same -- there are bad side effects from
|
|
// hiding a profile directory under /Library/Application Support/
|
|
// (see bug 801883).
|
|
nsAutoCString cacheDir;
|
|
if (NS_SUCCEEDED(aLocalDir->GetNativePath(cacheDir))) {
|
|
if (chflags(cacheDir.get(), UF_HIDDEN)) {
|
|
NS_WARNING("Failed to set Cache directory to HIDDEN.");
|
|
}
|
|
}
|
|
}
|
|
#endif
|
|
|
|
mProfileDir = aDir;
|
|
mProfileLocalDir = aLocalDir;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMPL_QUERY_INTERFACE(nsXREDirProvider, nsIDirectoryServiceProvider,
|
|
nsIDirectoryServiceProvider2, nsIXREDirProvider,
|
|
nsIProfileStartup)
|
|
|
|
NS_IMETHODIMP_(MozExternalRefCountType)
|
|
nsXREDirProvider::AddRef() { return 1; }
|
|
|
|
NS_IMETHODIMP_(MozExternalRefCountType)
|
|
nsXREDirProvider::Release() { return 0; }
|
|
|
|
nsresult nsXREDirProvider::GetUserProfilesRootDir(nsIFile** aResult) {
|
|
nsCOMPtr<nsIFile> file;
|
|
nsresult rv = NS_OK;
|
|
#if defined(XP_MACOSX) && defined(NIGHTLY_BUILD)
|
|
const char* appGroup = PR_GetEnv("MOZ_APP_GROUP");
|
|
if (appGroup && *appGroup && strcmp(appGroup, "0") != 0) {
|
|
nsCOMPtr<nsIFile> group;
|
|
rv = GetAppGroupContainerBase(getter_AddRefs(group));
|
|
if (NS_SUCCEEDED(rv) && group) {
|
|
rv = group->AppendNative("Library"_ns);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
rv = group->AppendNative("Application Support"_ns);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
rv = group->AppendNative("Profiles"_ns);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
file = group;
|
|
}
|
|
}
|
|
#endif
|
|
if (!file) {
|
|
rv = GetUserDataDirectory(getter_AddRefs(file), false);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
#if !defined(XP_UNIX) || defined(XP_MACOSX)
|
|
rv = file->AppendNative("Profiles"_ns);
|
|
#endif
|
|
// We must create the profile directory here if it does not exist.
|
|
nsresult tmp = EnsureDirectoryExists(file);
|
|
if (NS_FAILED(tmp)) {
|
|
rv = tmp;
|
|
}
|
|
|
|
#if defined(MOZ_WIDGET_GTK)
|
|
switch (gXdgTelemetry) {
|
|
case legacyOrXDGHomeTelemetry::legacyExists:
|
|
mozilla::glean::profiles::creation_place.Get("legacy_existing"_ns)
|
|
.Add(1);
|
|
break;
|
|
case legacyOrXDGHomeTelemetry::legacyForced:
|
|
mozilla::glean::profiles::creation_place.Get("legacy_forced"_ns).Add(1);
|
|
break;
|
|
case legacyOrXDGHomeTelemetry::xdgDefault:
|
|
mozilla::glean::profiles::creation_place.Get("xdg_default"_ns).Add(1);
|
|
break;
|
|
case legacyOrXDGHomeTelemetry::xdgConfigHome:
|
|
mozilla::glean::profiles::creation_place.Get("xdg_config"_ns).Add(1);
|
|
break;
|
|
default: {
|
|
nsAutoCString nativePath;
|
|
nsresult rv_conv = file->GetNativePath(nativePath);
|
|
if (NS_SUCCEEDED(rv_conv)) {
|
|
NS_WARNING(nsPrintfCString(
|
|
"Recording no telemetry value with profile path %s",
|
|
nativePath.get())
|
|
.get());
|
|
}
|
|
} break;
|
|
}
|
|
#endif // defined(MOZ_WIDGET_GTK)
|
|
}
|
|
file.swap(*aResult);
|
|
return rv;
|
|
}
|
|
|
|
nsresult nsXREDirProvider::GetUserProfilesLocalDir(nsIFile** aResult) {
|
|
nsCOMPtr<nsIFile> file;
|
|
nsresult rv = GetUserDataDirectory(getter_AddRefs(file), true);
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
#if !defined(XP_UNIX) || defined(XP_MACOSX)
|
|
rv = file->AppendNative("Profiles"_ns);
|
|
#endif
|
|
// We must create the profile directory here if it does not exist.
|
|
nsresult tmp = EnsureDirectoryExists(file);
|
|
if (NS_FAILED(tmp)) {
|
|
rv = tmp;
|
|
}
|
|
}
|
|
file.swap(*aResult);
|
|
return NS_OK;
|
|
}
|
|
|
|
#ifdef MOZ_BACKGROUNDTASKS
|
|
nsresult nsXREDirProvider::GetBackgroundTasksProfilesRootDir(
|
|
nsIFile** aResult) {
|
|
nsCOMPtr<nsIFile> file;
|
|
nsresult rv = GetUserDataDirectory(getter_AddRefs(file), false);
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
# if !defined(XP_UNIX) || defined(XP_MACOSX)
|
|
// Sibling to regular user "Profiles" directory.
|
|
rv = file->AppendNative("Background Tasks Profiles"_ns);
|
|
# endif
|
|
// We must create the directory here if it does not exist.
|
|
nsresult tmp = EnsureDirectoryExists(file);
|
|
if (NS_FAILED(tmp)) {
|
|
rv = tmp;
|
|
}
|
|
}
|
|
file.swap(*aResult);
|
|
return rv;
|
|
}
|
|
#endif
|
|
|
|
#if defined(XP_UNIX) || defined(XP_MACOSX)
|
|
/**
|
|
* Get the directory that is the parent of the system-wide directories
|
|
* for extensions and native manifests.
|
|
*
|
|
* On OSX this is /Library/Application Support/Mozilla
|
|
* On Linux this is /usr/{lib,lib64}/mozilla
|
|
* (for 32- and 64-bit systems respsectively)
|
|
*/
|
|
static nsresult GetSystemParentDirectory(nsIFile** aFile) {
|
|
nsresult rv;
|
|
nsCOMPtr<nsIFile> localDir;
|
|
# if defined(XP_MACOSX)
|
|
rv = GetOSXFolderType(kOnSystemDisk, kApplicationSupportFolderType,
|
|
getter_AddRefs(localDir));
|
|
if (NS_SUCCEEDED(rv)) {
|
|
rv = localDir->AppendNative("Mozilla"_ns);
|
|
}
|
|
# else
|
|
constexpr auto dirname =
|
|
# ifdef HAVE_USR_LIB64_DIR
|
|
"/usr/lib64/mozilla"_ns
|
|
# elif defined(__OpenBSD__) || defined(__FreeBSD__)
|
|
"/usr/local/lib/mozilla"_ns
|
|
# else
|
|
"/usr/lib/mozilla"_ns
|
|
# endif
|
|
;
|
|
rv = NS_NewNativeLocalFile(dirname, getter_AddRefs(localDir));
|
|
# endif
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
localDir.forget(aFile);
|
|
}
|
|
return rv;
|
|
}
|
|
#endif
|
|
|
|
NS_IMETHODIMP
|
|
nsXREDirProvider::GetFile(const char* aProperty, bool* aPersistent,
|
|
nsIFile** aFile) {
|
|
*aPersistent = true;
|
|
nsresult rv = NS_ERROR_FAILURE;
|
|
|
|
nsCOMPtr<nsIFile> file;
|
|
|
|
if (!strcmp(aProperty, NS_APP_USER_PROFILE_LOCAL_50_DIR) ||
|
|
!strcmp(aProperty, NS_APP_PROFILE_LOCAL_DIR_STARTUP)) {
|
|
if (mProfileLocalDir) {
|
|
rv = mProfileLocalDir->Clone(getter_AddRefs(file));
|
|
} else {
|
|
// Profile directories are only set up in the parent process.
|
|
// We don't expect every caller to check if they are in the right process,
|
|
// so fail immediately to avoid warning spam.
|
|
NS_WARNING_ASSERTION(!XRE_IsParentProcess(),
|
|
"tried to get profile in parent too early");
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
} else if (!strcmp(aProperty, NS_APP_USER_PROFILE_50_DIR) ||
|
|
!strcmp(aProperty, NS_APP_PROFILE_DIR_STARTUP)) {
|
|
rv = GetProfileStartupDir(getter_AddRefs(file));
|
|
if (NS_FAILED(rv)) {
|
|
return rv;
|
|
}
|
|
} else if (!strcmp(aProperty, NS_GRE_DIR)) {
|
|
// On Android, internal files are inside the APK, a zip file, so this
|
|
// folder doesn't really make sense.
|
|
#if !defined(MOZ_WIDGET_ANDROID)
|
|
rv = mGREDir->Clone(getter_AddRefs(file));
|
|
#endif // !defined(MOZ_WIDGET_ANDROID)
|
|
} else if (!strcmp(aProperty, NS_GRE_BIN_DIR)) {
|
|
rv = mGREBinDir->Clone(getter_AddRefs(file));
|
|
} else if (!strcmp(aProperty, NS_OS_CURRENT_PROCESS_DIR) ||
|
|
!strcmp(aProperty, NS_APP_INSTALL_CLEANUP_DIR)) {
|
|
rv = GetAppDir()->Clone(getter_AddRefs(file));
|
|
} else if (!strcmp(aProperty, NS_APP_PREF_DEFAULTS_50_DIR)) {
|
|
// Same as NS_GRE_DIR
|
|
#if !defined(MOZ_WIDGET_ANDROID)
|
|
// return the GRE default prefs directory here, and the app default prefs
|
|
// directory (if applicable) in NS_APP_PREFS_DEFAULTS_DIR_LIST.
|
|
rv = mGREDir->Clone(getter_AddRefs(file));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
rv = file->AppendNative("defaults"_ns);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
rv = file->AppendNative("pref"_ns);
|
|
#endif // !defined(MOZ_WIDGET_ANDROID)
|
|
} else if (!strcmp(aProperty, NS_APP_APPLICATION_REGISTRY_DIR) ||
|
|
!strcmp(aProperty, XRE_USER_APP_DATA_DIR)) {
|
|
rv = GetUserAppDataDirectory(getter_AddRefs(file));
|
|
}
|
|
#if defined(XP_UNIX) || defined(XP_MACOSX)
|
|
else if (!strcmp(aProperty, XRE_SYS_NATIVE_MANIFESTS)) {
|
|
rv = ::GetSystemParentDirectory(getter_AddRefs(file));
|
|
} else if (!strcmp(aProperty, XRE_USER_NATIVE_MANIFESTS)) {
|
|
// Keep forcing the legacy path for compatibility
|
|
rv = GetUserDataDirectoryHome(getter_AddRefs(file), /* aLocal */ false,
|
|
/* aForceLegacy */ true);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
# if defined(XP_MACOSX)
|
|
rv = file->AppendNative("Mozilla"_ns);
|
|
# else // defined(XP_MACOSX)
|
|
rv = file->AppendNative(".mozilla"_ns);
|
|
# endif // defined(XP_MACOSX)
|
|
}
|
|
#endif // defined(XP_UNIX) || defined(XP_MACOSX)
|
|
else if (!strcmp(aProperty, XRE_UPDATE_ROOT_DIR)) {
|
|
rv = GetUpdateRootDir(getter_AddRefs(file));
|
|
} else if (!strcmp(aProperty, XRE_OLD_UPDATE_ROOT_DIR)) {
|
|
rv = GetUpdateRootDir(getter_AddRefs(file), true);
|
|
} else if (!strcmp(aProperty, NS_APP_APPLICATION_REGISTRY_FILE)) {
|
|
rv = GetUserAppDataDirectory(getter_AddRefs(file));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
rv = file->AppendNative(nsLiteralCString(APP_REGISTRY_NAME));
|
|
} else if (!strcmp(aProperty, NS_APP_USER_PROFILES_ROOT_DIR)) {
|
|
rv = GetUserProfilesRootDir(getter_AddRefs(file));
|
|
} else if (!strcmp(aProperty, NS_APP_USER_PROFILES_LOCAL_ROOT_DIR)) {
|
|
rv = GetUserProfilesLocalDir(getter_AddRefs(file));
|
|
} else if (!strcmp(aProperty, XRE_EXECUTABLE_FILE)) {
|
|
rv = XRE_GetBinaryPath(getter_AddRefs(file));
|
|
}
|
|
#if defined(XP_UNIX) || defined(XP_MACOSX)
|
|
else if (!strcmp(aProperty, XRE_SYS_LOCAL_EXTENSION_PARENT_DIR)) {
|
|
# ifdef ENABLE_SYSTEM_EXTENSION_DIRS
|
|
rv = GetSystemExtensionsDirectory(getter_AddRefs(file));
|
|
# endif
|
|
}
|
|
#endif // defined(XP_UNIX) || defined(XP_MACOSX)
|
|
#if defined(XP_UNIX) && !defined(XP_MACOSX)
|
|
else if (!strcmp(aProperty, XRE_SYS_SHARE_EXTENSION_PARENT_DIR)) {
|
|
# ifdef ENABLE_SYSTEM_EXTENSION_DIRS
|
|
# if defined(__OpenBSD__) || defined(__FreeBSD__)
|
|
static const char* const sysLExtDir = "/usr/local/share/mozilla/extensions";
|
|
# else
|
|
static const char* const sysLExtDir = "/usr/share/mozilla/extensions";
|
|
# endif
|
|
rv = NS_NewNativeLocalFile(nsDependentCString(sysLExtDir),
|
|
getter_AddRefs(file));
|
|
# endif
|
|
}
|
|
#endif // defined(XP_UNIX) && !defined(XP_MACOSX)
|
|
else if (!strcmp(aProperty, XRE_USER_SYS_EXTENSION_DIR)) {
|
|
#ifdef ENABLE_SYSTEM_EXTENSION_DIRS
|
|
rv = GetSysUserExtensionsDirectory(getter_AddRefs(file));
|
|
#endif
|
|
} else if (!strcmp(aProperty, XRE_USER_RUNTIME_DIR)) {
|
|
#if defined(XP_UNIX)
|
|
nsPrintfCString path("/run/user/%d/%s/", getuid(), GetAppName());
|
|
ToLowerCase(path);
|
|
rv = NS_NewNativeLocalFile(path, getter_AddRefs(file));
|
|
#endif
|
|
} else if (!strcmp(aProperty, XRE_APP_DISTRIBUTION_DIR)) {
|
|
bool persistent = false;
|
|
rv = GetFile(NS_GRE_DIR, &persistent, getter_AddRefs(file));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
rv = file->AppendNative("distribution"_ns);
|
|
} else if (!strcmp(aProperty, XRE_APP_FEATURES_DIR)) {
|
|
rv = GetAppDir()->Clone(getter_AddRefs(file));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
rv = file->AppendNative("features"_ns);
|
|
} else if (!strcmp(aProperty, XRE_ADDON_APP_DIR)) {
|
|
nsCOMPtr<nsIDirectoryServiceProvider> dirsvc(
|
|
do_GetService("@mozilla.org/file/directory_service;1", &rv));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
bool unused;
|
|
rv = dirsvc->GetFile("XCurProcD", &unused, getter_AddRefs(file));
|
|
} else if (!strcmp(aProperty, NS_APP_USER_CHROME_DIR)) {
|
|
// It isn't clear why this uses GetProfileStartupDir instead of
|
|
// GetProfileDir. It could theoretically matter in a non-main
|
|
// process where some other directory provider has defined
|
|
// NS_APP_USER_PROFILE_50_DIR. In that scenario, using
|
|
// GetProfileStartupDir means this will fail instead of succeed.
|
|
rv = GetProfileStartupDir(getter_AddRefs(file));
|
|
if (NS_FAILED(rv)) {
|
|
return rv;
|
|
}
|
|
rv = file->AppendNative("chrome"_ns);
|
|
} else if (!strcmp(aProperty, NS_APP_PREFS_50_DIR)) {
|
|
rv = GetProfileDir(getter_AddRefs(file));
|
|
if (NS_FAILED(rv)) {
|
|
return rv;
|
|
}
|
|
} else if (!strcmp(aProperty, NS_APP_PREFS_50_FILE)) {
|
|
rv = GetProfileDir(getter_AddRefs(file));
|
|
if (NS_FAILED(rv)) {
|
|
return rv;
|
|
}
|
|
rv = file->AppendNative("prefs.js"_ns);
|
|
} else if (!strcmp(aProperty, NS_APP_PREFS_OVERRIDE_DIR)) {
|
|
rv = GetProfileDir(getter_AddRefs(file));
|
|
if (NS_FAILED(rv)) {
|
|
return rv;
|
|
}
|
|
rv = file->AppendNative(nsLiteralCString(PREF_OVERRIDE_DIRNAME));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
rv = EnsureDirectoryExists(file);
|
|
} else {
|
|
// We don't know anything about this property. Fail without warning, because
|
|
// otherwise we'll get too much warning spam due to
|
|
// nsDirectoryService::Get() trying everything it gets with every provider.
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
NS_ENSURE_TRUE(file, NS_ERROR_FAILURE);
|
|
|
|
file.forget(aFile);
|
|
return NS_OK;
|
|
}
|
|
|
|
static void LoadDirIntoArray(nsIFile* dir, const char* const* aAppendList,
|
|
nsCOMArray<nsIFile>& aDirectories) {
|
|
if (!dir) return;
|
|
|
|
nsCOMPtr<nsIFile> subdir;
|
|
dir->Clone(getter_AddRefs(subdir));
|
|
if (!subdir) return;
|
|
|
|
for (const char* const* a = aAppendList; *a; ++a) {
|
|
subdir->AppendNative(nsDependentCString(*a));
|
|
}
|
|
|
|
bool exists;
|
|
if (NS_SUCCEEDED(subdir->Exists(&exists)) && exists) {
|
|
aDirectories.AppendObject(subdir);
|
|
}
|
|
}
|
|
|
|
static const char* const kAppendPrefDir[] = {"defaults", "preferences",
|
|
nullptr};
|
|
#ifdef MOZ_BACKGROUNDTASKS
|
|
static const char* const kAppendBackgroundTasksPrefDir[] = {
|
|
"defaults", "backgroundtasks", nullptr};
|
|
#endif
|
|
|
|
NS_IMETHODIMP
|
|
nsXREDirProvider::GetFiles(const char* aProperty,
|
|
nsISimpleEnumerator** aResult) {
|
|
nsresult rv = NS_ERROR_FAILURE;
|
|
*aResult = nullptr;
|
|
|
|
if (!strcmp(aProperty, NS_APP_PREFS_DEFAULTS_DIR_LIST)) {
|
|
nsCOMArray<nsIFile> directories;
|
|
|
|
LoadDirIntoArray(mXULAppDir, kAppendPrefDir, directories);
|
|
#ifdef MOZ_BACKGROUNDTASKS
|
|
if (mozilla::BackgroundTasks::IsBackgroundTaskMode()) {
|
|
LoadDirIntoArray(mGREDir, kAppendBackgroundTasksPrefDir, directories);
|
|
LoadDirIntoArray(mXULAppDir, kAppendBackgroundTasksPrefDir, directories);
|
|
}
|
|
#endif
|
|
|
|
rv = NS_NewArrayEnumerator(aResult, directories, NS_GET_IID(nsIFile));
|
|
} else if (!strcmp(aProperty, NS_APP_CHROME_DIR_LIST)) {
|
|
// NS_APP_CHROME_DIR_LIST is only used to get default (native) icons
|
|
// for OS window decoration.
|
|
|
|
static const char* const kAppendChromeDir[] = {"chrome", nullptr};
|
|
nsCOMArray<nsIFile> directories;
|
|
LoadDirIntoArray(mXULAppDir, kAppendChromeDir, directories);
|
|
|
|
rv = NS_NewArrayEnumerator(aResult, directories, NS_GET_IID(nsIFile));
|
|
}
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
return NS_SUCCESS_AGGREGATE_RESULT;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsXREDirProvider::GetDirectory(nsIFile** aResult) {
|
|
NS_ENSURE_TRUE(mProfileDir, NS_ERROR_NOT_INITIALIZED);
|
|
return mProfileDir->Clone(aResult);
|
|
}
|
|
|
|
void nsXREDirProvider::InitializeUserPrefs() {
|
|
if (!mPrefsInitialized) {
|
|
mozilla::Preferences::InitializeUserPrefs();
|
|
}
|
|
}
|
|
|
|
void nsXREDirProvider::FinishInitializingUserPrefs() {
|
|
if (!mPrefsInitialized) {
|
|
mozilla::Preferences::FinishInitializingUserPrefs();
|
|
mPrefsInitialized = true;
|
|
}
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsXREDirProvider::DoStartup() {
|
|
nsresult rv;
|
|
|
|
if (!mAppStarted) {
|
|
nsCOMPtr<nsIObserverService> obsSvc =
|
|
mozilla::services::GetObserverService();
|
|
if (!obsSvc) return NS_ERROR_FAILURE;
|
|
|
|
mAppStarted = true;
|
|
|
|
/*
|
|
Make sure we've setup prefs before profile-do-change to be able to use
|
|
them to track crashes and because we want to begin crash tracking before
|
|
other code run from this notification since they may cause crashes.
|
|
*/
|
|
MOZ_ASSERT(mPrefsInitialized);
|
|
|
|
bool safeModeNecessary = false;
|
|
nsCOMPtr<nsIAppStartup> appStartup(
|
|
mozilla::components::AppStartup::Service());
|
|
if (appStartup) {
|
|
rv = appStartup->TrackStartupCrashBegin(&safeModeNecessary);
|
|
if (NS_FAILED(rv) && rv != NS_ERROR_NOT_AVAILABLE)
|
|
NS_WARNING("Error while beginning startup crash tracking");
|
|
|
|
if (!gSafeMode && safeModeNecessary) {
|
|
appStartup->RestartInSafeMode(nsIAppStartup::eForceQuit);
|
|
return NS_OK;
|
|
}
|
|
}
|
|
|
|
static const char16_t kStartup[] = {'s', 't', 'a', 'r',
|
|
't', 'u', 'p', '\0'};
|
|
obsSvc->NotifyObservers(nullptr, "profile-do-change", kStartup);
|
|
|
|
// Initialize the Enterprise Policies service in the parent process
|
|
// In the content process it's loaded on demand when needed
|
|
if (XRE_IsParentProcess()) {
|
|
nsCOMPtr<nsIObserver> policies(
|
|
do_GetService("@mozilla.org/enterprisepolicies;1"));
|
|
if (policies) {
|
|
policies->Observe(nullptr, "policies-startup", nullptr);
|
|
}
|
|
}
|
|
|
|
#ifdef MOZ_THUNDERBIRD
|
|
bool bgtaskMode = false;
|
|
# ifdef MOZ_BACKGROUNDTASKS
|
|
bgtaskMode = mozilla::BackgroundTasks::IsBackgroundTaskMode();
|
|
# endif
|
|
if (!bgtaskMode &&
|
|
mozilla::Preferences::GetBool(
|
|
"security.prompt_for_master_password_on_startup", false)) {
|
|
# ifdef XP_MACOSX
|
|
// Ensure the application is initialized before the prompt is triggered.
|
|
// Note: calling InitializeMacApp more than once does nothing.
|
|
InitializeMacApp();
|
|
# endif
|
|
// Prompt for the master password prior to opening application windows,
|
|
// to avoid the race that triggers multiple prompts (see bug 177175).
|
|
// We use this code until we have a better solution, possibly as
|
|
// described in bug 177175 comment 384.
|
|
// Ensure NSS is initialized; it may not be this early in startup.
|
|
nsCOMPtr<nsINSSComponent> nssComponent(
|
|
do_GetService(NS_NSSCOMPONENT_CID));
|
|
mozilla::UniquePK11SlotInfo slot(PK11_GetInternalKeySlot());
|
|
if (slot) {
|
|
(void)PK11_Authenticate(slot.get(), true, nullptr);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
bool initExtensionManager =
|
|
#ifdef MOZ_BACKGROUNDTASKS
|
|
!mozilla::BackgroundTasks::IsBackgroundTaskMode();
|
|
#else
|
|
true;
|
|
#endif
|
|
if (initExtensionManager) {
|
|
// Init the Extension Manager
|
|
nsCOMPtr<nsIObserver> em =
|
|
do_GetService("@mozilla.org/addons/integration;1");
|
|
if (em) {
|
|
em->Observe(nullptr, "addons-startup", nullptr);
|
|
} else {
|
|
NS_WARNING("Failed to create Addons Manager.");
|
|
}
|
|
}
|
|
|
|
obsSvc->NotifyObservers(nullptr, "profile-after-change", kStartup);
|
|
|
|
// Any component that has registered for the profile-after-change category
|
|
// should also be created at this time.
|
|
(void)NS_CreateServicesFromCategory("profile-after-change", nullptr,
|
|
"profile-after-change");
|
|
|
|
if (gSafeMode && safeModeNecessary) {
|
|
static const char16_t kCrashed[] = {'c', 'r', 'a', 's',
|
|
'h', 'e', 'd', '\0'};
|
|
obsSvc->NotifyObservers(nullptr, "safemode-forced", kCrashed);
|
|
}
|
|
|
|
// 1 = Regular mode, 2 = Safe mode, 3 = Safe mode forced
|
|
int mode = 1;
|
|
if (gSafeMode) {
|
|
if (safeModeNecessary)
|
|
mode = 3;
|
|
else
|
|
mode = 2;
|
|
}
|
|
mozilla::glean::gecko::safe_mode_usage.AccumulateSingleSample(mode);
|
|
|
|
obsSvc->NotifyObservers(nullptr, "profile-initial-state", nullptr);
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
void nsXREDirProvider::DoShutdown() {
|
|
AUTO_PROFILER_LABEL("nsXREDirProvider::DoShutdown", OTHER);
|
|
|
|
if (mAppStarted) {
|
|
mozilla::AppShutdown::AdvanceShutdownPhase(
|
|
mozilla::ShutdownPhase::AppShutdownNetTeardown, nullptr);
|
|
mozilla::AppShutdown::AdvanceShutdownPhase(
|
|
mozilla::ShutdownPhase::AppShutdownTeardown, nullptr);
|
|
|
|
#ifdef DEBUG
|
|
// Not having this causes large intermittent leaks. See bug 1340425.
|
|
if (JSContext* cx = mozilla::dom::danger::GetJSContext()) {
|
|
JS_GC(cx);
|
|
}
|
|
#endif
|
|
|
|
mozilla::AppShutdown::AdvanceShutdownPhase(
|
|
mozilla::ShutdownPhase::AppShutdown, nullptr);
|
|
mozilla::AppShutdown::AdvanceShutdownPhase(
|
|
mozilla::ShutdownPhase::AppShutdownQM, nullptr);
|
|
mozilla::AppShutdown::AdvanceShutdownPhase(
|
|
mozilla::ShutdownPhase::AppShutdownTelemetry, nullptr);
|
|
mAppStarted = false;
|
|
}
|
|
|
|
gDataDirProfileLocal = nullptr;
|
|
gDataDirProfile = nullptr;
|
|
}
|
|
|
|
#ifdef XP_WIN
|
|
static nsresult GetShellFolderPath(KNOWNFOLDERID folder, nsAString& _retval) {
|
|
DWORD flags = KF_FLAG_SIMPLE_IDLIST | KF_FLAG_DONT_VERIFY | KF_FLAG_NO_ALIAS;
|
|
PWSTR path = nullptr;
|
|
|
|
if (!SUCCEEDED(SHGetKnownFolderPath(folder, flags, NULL, &path))) {
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
}
|
|
|
|
_retval = nsDependentString(path);
|
|
CoTaskMemFree(path);
|
|
return NS_OK;
|
|
}
|
|
|
|
/**
|
|
* Provides a fallback for getting the path to APPDATA or LOCALAPPDATA by
|
|
* querying the registry when the call to SHGetSpecialFolderLocation or
|
|
* SHGetPathFromIDListW is unable to provide these paths (Bug 513958).
|
|
*/
|
|
static nsresult GetRegWindowsAppDataFolder(bool aLocal, nsAString& _retval) {
|
|
HKEY key;
|
|
LPCWSTR keyName =
|
|
L"Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders";
|
|
DWORD res = ::RegOpenKeyExW(HKEY_CURRENT_USER, keyName, 0, KEY_READ, &key);
|
|
if (res != ERROR_SUCCESS) {
|
|
_retval.SetLength(0);
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
}
|
|
|
|
DWORD type, size;
|
|
res = RegQueryValueExW(key, (aLocal ? L"Local AppData" : L"AppData"), nullptr,
|
|
&type, nullptr, &size);
|
|
// The call to RegQueryValueExW must succeed, the type must be REG_SZ, the
|
|
// buffer size must not equal 0, and the buffer size be a multiple of 2.
|
|
if (res != ERROR_SUCCESS || type != REG_SZ || size == 0 || size % 2 != 0) {
|
|
::RegCloseKey(key);
|
|
_retval.SetLength(0);
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
}
|
|
|
|
// |size| may or may not include room for the terminating null character
|
|
DWORD resultLen = size / 2;
|
|
|
|
if (!_retval.SetLength(resultLen, mozilla::fallible)) {
|
|
::RegCloseKey(key);
|
|
_retval.SetLength(0);
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
}
|
|
|
|
auto begin = _retval.BeginWriting();
|
|
|
|
res = RegQueryValueExW(key, (aLocal ? L"Local AppData" : L"AppData"), nullptr,
|
|
nullptr, (LPBYTE)begin, &size);
|
|
::RegCloseKey(key);
|
|
if (res != ERROR_SUCCESS) {
|
|
_retval.SetLength(0);
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
}
|
|
|
|
if (!_retval.CharAt(resultLen - 1)) {
|
|
// It was already null terminated.
|
|
_retval.Truncate(resultLen - 1);
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
#endif
|
|
|
|
static nsresult HashInstallPath(nsAString& aInstallPath, nsAString& aPathHash) {
|
|
mozilla::UniquePtr<NS_tchar[]> hash;
|
|
bool success = ::GetInstallHash(PromiseFlatString(aInstallPath).get(), hash);
|
|
if (!success) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
// The hash string is a NS_tchar*, which is wchar* in Windows and char*
|
|
// elsewhere.
|
|
#ifdef XP_WIN
|
|
aPathHash.Assign(hash.get());
|
|
#else
|
|
aPathHash.AssignASCII(hash.get());
|
|
#endif
|
|
return NS_OK;
|
|
}
|
|
|
|
/**
|
|
* Gets a hash of the installation directory.
|
|
*/
|
|
nsresult nsXREDirProvider::GetInstallHash(nsAString& aPathHash) {
|
|
nsAutoString stringToHash;
|
|
|
|
#ifdef XP_WIN
|
|
if (mozilla::widget::WinUtils::HasPackageIdentity()) {
|
|
// For packages, the install path includes the version number, so it isn't
|
|
// a stable or consistent identifier for the installation. The package
|
|
// family name is though, so use that instead of the path.
|
|
stringToHash = mozilla::widget::WinUtils::GetPackageFamilyName();
|
|
} else
|
|
#endif
|
|
{
|
|
nsCOMPtr<nsIFile> installDir;
|
|
nsCOMPtr<nsIFile> appFile;
|
|
bool per = false;
|
|
nsresult rv = GetFile(XRE_EXECUTABLE_FILE, &per, getter_AddRefs(appFile));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
rv = appFile->GetParent(getter_AddRefs(installDir));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
// It is possible that the path we have is on a case insensitive
|
|
// filesystem in which case the path may vary depending on how the
|
|
// application is called. We want to normalize the case somehow.
|
|
#ifdef XP_WIN
|
|
// Windows provides a way to get the correct case.
|
|
if (!mozilla::widget::WinUtils::ResolveJunctionPointsAndSymLinks(
|
|
installDir)) {
|
|
NS_WARNING("Failed to resolve install directory.");
|
|
}
|
|
#elif defined(MOZ_WIDGET_COCOA)
|
|
// On OSX roundtripping through an FSRef fixes the case.
|
|
FSRef ref;
|
|
nsCOMPtr<nsILocalFileMac> macFile = do_QueryInterface(installDir);
|
|
rv = macFile->GetFSRef(&ref);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
rv = NS_NewLocalFileWithFSRef(&ref, getter_AddRefs(macFile));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
installDir = static_cast<nsIFile*>(macFile);
|
|
#endif
|
|
// On linux XRE_EXECUTABLE_FILE already seems to be set to the correct path.
|
|
|
|
rv = installDir->GetPath(stringToHash);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
}
|
|
|
|
// If we somehow failed to get an actual value, hashing an empty string could
|
|
// potentially cause some serious problems given all the things this hash is
|
|
// used for. So we don't allow that.
|
|
if (stringToHash.IsEmpty()) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
return HashInstallPath(stringToHash, aPathHash);
|
|
}
|
|
|
|
/**
|
|
* Before bug 1555319 the directory hashed can have had an incorrect case.
|
|
* Access to that hash is still available through this function. It is needed so
|
|
* we can migrate users who may have an incorrect hash in profiles.ini. This
|
|
* support can probably be removed in a few releases time.
|
|
*/
|
|
nsresult nsXREDirProvider::GetLegacyInstallHash(nsAString& aPathHash) {
|
|
nsCOMPtr<nsIFile> installDir;
|
|
nsCOMPtr<nsIFile> appFile;
|
|
bool per = false;
|
|
nsresult rv = GetFile(XRE_EXECUTABLE_FILE, &per, getter_AddRefs(appFile));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
rv = appFile->GetParent(getter_AddRefs(installDir));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nsAutoString installPath;
|
|
rv = installDir->GetPath(installPath);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
#ifdef XP_WIN
|
|
# if defined(MOZ_THUNDERBIRD) || defined(MOZ_SUITE)
|
|
// Convert a 64-bit install path to what would have been the 32-bit install
|
|
// path to allow users to migrate their profiles from one to the other.
|
|
PWSTR pathX86 = nullptr;
|
|
HRESULT hres =
|
|
SHGetKnownFolderPath(FOLDERID_ProgramFilesX86, 0, nullptr, &pathX86);
|
|
if (SUCCEEDED(hres)) {
|
|
nsDependentString strPathX86(pathX86);
|
|
if (!StringBeginsWith(installPath, strPathX86,
|
|
nsCaseInsensitiveStringComparator)) {
|
|
PWSTR path = nullptr;
|
|
hres = SHGetKnownFolderPath(FOLDERID_ProgramFiles, 0, nullptr, &path);
|
|
if (SUCCEEDED(hres)) {
|
|
if (StringBeginsWith(installPath, nsDependentString(path),
|
|
nsCaseInsensitiveStringComparator)) {
|
|
installPath.Replace(0, wcslen(path), strPathX86);
|
|
}
|
|
}
|
|
CoTaskMemFree(path);
|
|
}
|
|
}
|
|
CoTaskMemFree(pathX86);
|
|
# endif
|
|
#endif
|
|
return HashInstallPath(installPath, aPathHash);
|
|
}
|
|
|
|
nsresult nsXREDirProvider::GetUpdateRootDir(nsIFile** aResult,
|
|
bool aGetOldLocation) {
|
|
#ifndef XP_WIN
|
|
// There is no old update location on platforms other than Windows. Windows is
|
|
// the only platform for which we migrated the update directory.
|
|
if (aGetOldLocation) {
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
#endif
|
|
nsCOMPtr<nsIFile> updRoot;
|
|
nsCOMPtr<nsIFile> appFile;
|
|
bool per = false;
|
|
nsresult rv = GetFile(XRE_EXECUTABLE_FILE, &per, getter_AddRefs(appFile));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
rv = appFile->GetParent(getter_AddRefs(updRoot));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
#ifdef XP_MACOSX
|
|
nsCOMPtr<nsIFile> appRootDirFile;
|
|
nsCOMPtr<nsIFile> localDir;
|
|
nsAutoString appDirPath;
|
|
if (NS_FAILED(appFile->GetParent(getter_AddRefs(appRootDirFile))) ||
|
|
NS_FAILED(appRootDirFile->GetPath(appDirPath)) ||
|
|
NS_FAILED(GetUserDataDirectoryHome(getter_AddRefs(localDir),
|
|
/* aLocal */ true))) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
int32_t dotIndex = appDirPath.RFind(u".app");
|
|
if (dotIndex == kNotFound) {
|
|
dotIndex = appDirPath.Length();
|
|
}
|
|
appDirPath = Substring(appDirPath, 1, dotIndex - 1);
|
|
|
|
bool hasVendor = GetAppVendor() && strlen(GetAppVendor()) != 0;
|
|
if (hasVendor || GetAppName()) {
|
|
if (NS_FAILED(localDir->AppendNative(
|
|
nsDependentCString(hasVendor ? GetAppVendor() : GetAppName())))) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
} else if (NS_FAILED(localDir->AppendNative("Mozilla"_ns))) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
if (NS_FAILED(localDir->Append(u"updates"_ns)) ||
|
|
NS_FAILED(localDir->AppendRelativePath(appDirPath))) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
localDir.forget(aResult);
|
|
return NS_OK;
|
|
|
|
#elif XP_WIN
|
|
nsAutoString installPath;
|
|
rv = updRoot->GetPath(installPath);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
mozilla::UniquePtr<wchar_t[]> updatePath;
|
|
HRESULT hrv;
|
|
if (aGetOldLocation) {
|
|
hrv =
|
|
GetOldUpdateDirectory(PromiseFlatString(installPath).get(), updatePath);
|
|
} else {
|
|
hrv = GetCommonUpdateDirectory(PromiseFlatString(installPath).get(),
|
|
updatePath);
|
|
}
|
|
if (FAILED(hrv)) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
nsAutoString updatePathStr;
|
|
updatePathStr.Assign(updatePath.get());
|
|
MOZ_TRY(updRoot->InitWithPath(updatePathStr));
|
|
updRoot.forget(aResult);
|
|
return NS_OK;
|
|
#else
|
|
updRoot.forget(aResult);
|
|
return NS_OK;
|
|
#endif // XP_WIN
|
|
}
|
|
|
|
nsresult nsXREDirProvider::GetProfileStartupDir(nsIFile** aResult) {
|
|
if (mProfileDir) {
|
|
return mProfileDir->Clone(aResult);
|
|
}
|
|
|
|
// Profile directories are only set up in the parent process.
|
|
// We don't expect every caller to check if they are in the right process,
|
|
// so fail immediately to avoid warning spam.
|
|
NS_WARNING_ASSERTION(!XRE_IsParentProcess(),
|
|
"tried to get profile in parent too early");
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
nsresult nsXREDirProvider::GetProfileDir(nsIFile** aResult) {
|
|
if (!mProfileDir) {
|
|
nsresult rv = NS_GetSpecialDirectory(NS_APP_USER_PROFILE_50_DIR,
|
|
getter_AddRefs(mProfileDir));
|
|
// Guard against potential buggy directory providers that fail while also
|
|
// returning something.
|
|
if (NS_FAILED(rv)) {
|
|
MOZ_ASSERT(!mProfileDir,
|
|
"Directory provider failed but returned a value");
|
|
mProfileDir = nullptr;
|
|
}
|
|
}
|
|
// If we failed to get mProfileDir, this will warn for us if appropriate.
|
|
return GetProfileStartupDir(aResult);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsXREDirProvider::SetUserDataDirectory(nsIFile* aFile, bool aLocal) {
|
|
if (aLocal) {
|
|
NS_IF_RELEASE(gDataDirHomeLocal);
|
|
NS_IF_ADDREF(gDataDirHomeLocal = aFile);
|
|
} else {
|
|
NS_IF_RELEASE(gDataDirHome);
|
|
NS_IF_ADDREF(gDataDirHome = aFile);
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
/* static */
|
|
nsresult nsXREDirProvider::SetUserDataProfileDirectory(nsCOMPtr<nsIFile>& aFile,
|
|
bool aLocal) {
|
|
if (aLocal) {
|
|
gDataDirProfileLocal = aFile;
|
|
} else {
|
|
gDataDirProfile = aFile;
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
/* static */
|
|
nsresult nsXREDirProvider::ClearUserDataProfileDirectoryFromGTest(
|
|
nsIFile** aLocal, nsIFile** aGlobal) {
|
|
if (gDataDirProfileLocal) {
|
|
gDataDirProfileLocal->Clone(aLocal);
|
|
gDataDirProfileLocal = nullptr;
|
|
}
|
|
|
|
if (gDataDirProfile) {
|
|
gDataDirProfile->Clone(aGlobal);
|
|
gDataDirProfile = nullptr;
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
/* static */
|
|
nsresult nsXREDirProvider::RestoreUserDataProfileDirectoryFromGTest(
|
|
nsCOMPtr<nsIFile>& aLocal, nsCOMPtr<nsIFile>& aGlobal) {
|
|
gDataDirProfileLocal = aLocal;
|
|
gDataDirProfile = aGlobal;
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
// Return the home directory that will contain user data
|
|
nsresult nsXREDirProvider::GetUserDataDirectoryHome(nsIFile** aFile,
|
|
bool aLocal,
|
|
bool aForceLegacy) {
|
|
// Copied from nsAppFileLocationProvider (more or less)
|
|
nsCOMPtr<nsIFile> localDir;
|
|
|
|
if (aLocal && gDataDirHomeLocal) {
|
|
return gDataDirHomeLocal->Clone(aFile);
|
|
}
|
|
if (!aLocal && gDataDirHome) {
|
|
return gDataDirHome->Clone(aFile);
|
|
}
|
|
|
|
#if defined(XP_MACOSX)
|
|
FSRef fsRef;
|
|
OSType folderType;
|
|
if (aLocal) {
|
|
folderType = kCachedDataFolderType;
|
|
} else {
|
|
# ifdef MOZ_THUNDERBIRD
|
|
folderType = kDomainLibraryFolderType;
|
|
# else
|
|
folderType = kApplicationSupportFolderType;
|
|
# endif
|
|
}
|
|
OSErr err = ::FSFindFolder(kUserDomain, folderType, kCreateFolder, &fsRef);
|
|
NS_ENSURE_FALSE(err, NS_ERROR_FAILURE);
|
|
|
|
nsCOMPtr<nsILocalFileMac> dirFileMac;
|
|
MOZ_TRY(NS_NewLocalFileWithFSRef(&fsRef, getter_AddRefs(dirFileMac)));
|
|
localDir = dirFileMac.forget();
|
|
#elif defined(XP_IOS)
|
|
nsAutoCString userDir;
|
|
nsresult rv;
|
|
if (GetUIKitDirectory(aLocal, userDir)) {
|
|
rv = NS_NewNativeLocalFile(userDir, getter_AddRefs(localDir));
|
|
} else {
|
|
rv = NS_ERROR_FAILURE;
|
|
}
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
#elif defined(XP_WIN)
|
|
nsresult rv;
|
|
nsString path;
|
|
if (aLocal) {
|
|
rv = GetShellFolderPath(FOLDERID_LocalAppData, path);
|
|
if (NS_FAILED(rv)) rv = GetRegWindowsAppDataFolder(aLocal, path);
|
|
}
|
|
if (!aLocal || NS_FAILED(rv)) {
|
|
rv = GetShellFolderPath(FOLDERID_RoamingAppData, path);
|
|
if (NS_FAILED(rv)) {
|
|
if (!aLocal) rv = GetRegWindowsAppDataFolder(aLocal, path);
|
|
}
|
|
}
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
MOZ_TRY(NS_NewLocalFile(path, getter_AddRefs(localDir)));
|
|
#elif defined(XP_UNIX)
|
|
const char* homeDir = PR_GetEnv("HOME");
|
|
if (!homeDir || !*homeDir) return NS_ERROR_FAILURE;
|
|
|
|
# ifdef ANDROID /* We want (ProfD == ProfLD) on Android. */
|
|
MOZ_TRY(NS_NewNativeLocalFile(nsDependentCString(homeDir),
|
|
getter_AddRefs(localDir)));
|
|
# else
|
|
if (aLocal) {
|
|
// Not forcing legacy because cache can be lost without consequences, so
|
|
// there is no real requirement to keep compatibility here
|
|
MOZ_TRY(nsXREDirProvider::GetLegacyOrXDGCachePath(
|
|
homeDir, getter_AddRefs(localDir)));
|
|
} else {
|
|
MOZ_TRY(nsXREDirProvider::GetLegacyOrXDGHomePath(
|
|
homeDir, getter_AddRefs(localDir), aForceLegacy));
|
|
}
|
|
# endif // ANDROID
|
|
#else
|
|
# error "Don't know how to get product dir on your platform"
|
|
#endif
|
|
|
|
localDir.forget(aFile);
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult nsXREDirProvider::GetSysUserExtensionsDirectory(nsIFile** aFile) {
|
|
nsCOMPtr<nsIFile> localDir;
|
|
nsresult rv = GetUserDataDirectoryHome(
|
|
getter_AddRefs(localDir), /* aLocal */ false, /* aForceLegacy */ true);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = AppendSysUserExtensionPath(localDir);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
// We used to unconditionally create the directory here, but that results in
|
|
// an unwanted ~/.mozilla/extensions/ in violation of the XDG basedir spec,
|
|
// which expresses a preference for ~/.config/mozilla/.
|
|
//
|
|
// Since we no longer support sideloading from this directory, unless
|
|
// MOZ_ALLOW_ADDON_SIDELOAD is set, the creation of the directory is almost
|
|
// always redundant, so skip the creation of the directory.
|
|
|
|
localDir.forget(aFile);
|
|
return NS_OK;
|
|
}
|
|
|
|
#if defined(XP_UNIX) || defined(XP_MACOSX)
|
|
nsresult nsXREDirProvider::GetSystemExtensionsDirectory(nsIFile** aFile) {
|
|
nsresult rv;
|
|
nsCOMPtr<nsIFile> localDir;
|
|
|
|
rv = GetSystemParentDirectory(getter_AddRefs(localDir));
|
|
if (NS_SUCCEEDED(rv)) {
|
|
constexpr auto sExtensions =
|
|
# if defined(XP_MACOSX)
|
|
"Extensions"_ns
|
|
# else
|
|
"extensions"_ns
|
|
# endif
|
|
;
|
|
|
|
rv = localDir->AppendNative(sExtensions);
|
|
if (NS_SUCCEEDED(rv)) {
|
|
localDir.forget(aFile);
|
|
}
|
|
}
|
|
return rv;
|
|
}
|
|
#endif
|
|
|
|
nsresult nsXREDirProvider::GetUserDataDirectory(nsIFile** aFile, bool aLocal) {
|
|
nsCOMPtr<nsIFile> localDir;
|
|
nsCOMPtr<nsIFile> customDir = mozilla::GetFileFromEnv("MOZ_APP_DATA");
|
|
nsCOMPtr<nsIFile> customLocalDir =
|
|
mozilla::GetFileFromEnv("MOZ_LOCAL_APP_DATA");
|
|
|
|
if (aLocal && gDataDirProfileLocal) {
|
|
return gDataDirProfileLocal->Clone(aFile);
|
|
}
|
|
if (!aLocal && gDataDirProfile) {
|
|
return gDataDirProfile->Clone(aFile);
|
|
}
|
|
|
|
nsresult rv;
|
|
if (aLocal && customLocalDir) {
|
|
localDir = customLocalDir;
|
|
} else if (!aLocal && customDir) {
|
|
localDir = customDir;
|
|
} else {
|
|
rv = GetUserDataDirectoryHome(getter_AddRefs(localDir), aLocal);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = AppendProfilePath(localDir, aLocal);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
}
|
|
|
|
rv = EnsureDirectoryExists(localDir);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nsXREDirProvider::SetUserDataProfileDirectory(localDir, aLocal);
|
|
|
|
localDir.forget(aFile);
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult nsXREDirProvider::EnsureDirectoryExists(nsIFile* aDirectory) {
|
|
nsresult rv = aDirectory->Create(nsIFile::DIRECTORY_TYPE, 0700);
|
|
|
|
if (rv == NS_ERROR_FILE_ALREADY_EXISTS) {
|
|
rv = NS_OK;
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
nsresult nsXREDirProvider::AppendSysUserExtensionPath(nsIFile* aFile) {
|
|
NS_ASSERTION(aFile, "Null pointer!");
|
|
|
|
nsresult rv;
|
|
|
|
#if defined(XP_MACOSX) || defined(XP_WIN)
|
|
|
|
static const char* const sXR = "Mozilla";
|
|
rv = aFile->AppendNative(nsDependentCString(sXR));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
static const char* const sExtensions = "Extensions";
|
|
rv = aFile->AppendNative(nsDependentCString(sExtensions));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
#elif defined(XP_UNIX)
|
|
|
|
static const char* const sXR = ".mozilla";
|
|
rv = aFile->AppendNative(nsDependentCString(sXR));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
static const char* const sExtensions = "extensions";
|
|
rv = aFile->AppendNative(nsDependentCString(sExtensions));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
#else
|
|
# error "Don't know how to get XRE user extension path on your platform"
|
|
#endif
|
|
return NS_OK;
|
|
}
|
|
|
|
#if defined(MOZ_WIDGET_GTK)
|
|
/*
|
|
* Return whether MOZ_LEGACY_HOME == 1, via environment or at build time
|
|
*/
|
|
bool nsXREDirProvider::IsForceLegacyHome() {
|
|
# if !defined(MOZ_LEGACY_HOME)
|
|
const char* legacyhomedir = PR_GetEnv("MOZ_LEGACY_HOME");
|
|
return legacyhomedir && legacyhomedir[0] == '1';
|
|
# else
|
|
return true;
|
|
# endif
|
|
}
|
|
|
|
/* static */
|
|
nsresult nsXREDirProvider::AppendFromAppData(nsIFile* aFile, bool aIsDotted) {
|
|
// This might happen in xpcshell so assert that it is indeed in a xpcshell
|
|
// test. This assumes the xpcshell are ran through test harness.
|
|
if (!gAppData) {
|
|
mozilla::DebugOnly<const char*> xpcshell =
|
|
PR_GetEnv("XPCSHELL_TEST_PROFILE_DIR");
|
|
MOZ_ASSERT(xpcshell, "gAppData can only be nullptr in xpcshell tests");
|
|
return NS_OK;
|
|
}
|
|
|
|
// Similar to nsXREDirProvider::AppendProfilePath.
|
|
// TODO: Bug 1990407 - Evaluate if refactoring might be required there in the
|
|
// future?
|
|
if (gAppData->profile) {
|
|
nsAutoCString profile;
|
|
# if defined(MOZ_THUNDERBIRD)
|
|
if (gAppData->profile[0] != '.') {
|
|
profile.Assign('.');
|
|
}
|
|
# endif
|
|
profile.Append(gAppData->profile);
|
|
MOZ_TRY(aFile->AppendRelativeNativePath(profile));
|
|
} else {
|
|
nsAutoCString vendor;
|
|
nsAutoCString appName;
|
|
vendor = gAppData->vendor;
|
|
appName = gAppData->name;
|
|
ToLowerCase(vendor);
|
|
ToLowerCase(appName);
|
|
|
|
MOZ_TRY(aFile->AppendRelativeNativePath(aIsDotted ? ("."_ns + vendor)
|
|
: vendor));
|
|
MOZ_TRY(aFile->AppendRelativeNativePath(appName));
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
/*
|
|
* Check if legacy directory exists, which can be:
|
|
* (1) $HOME/.<gAppData->vendor>/<gAppData->appName>
|
|
* (2) $HOME/<gAppData->profile> on Firefox or
|
|
* $HOME/.<gAppData->profile> on Thunderbird
|
|
* (3) $HOME/<MOZ_USER_DIR>
|
|
*
|
|
* The MOZ_USER_DIR will also be defined in case (1), so first check the deeper
|
|
* directory.
|
|
*/
|
|
bool nsXREDirProvider::LegacyHomeExists(nsIFile** aFile) {
|
|
bool exists;
|
|
nsDependentCString homeDir(PR_GetEnv("HOME"));
|
|
nsCOMPtr<nsIFile> localDir;
|
|
nsCOMPtr<nsIFile> parentDir;
|
|
|
|
// check old config ~/.mozilla
|
|
nsresult rv = NS_NewNativeLocalFile(homeDir, getter_AddRefs(localDir));
|
|
NS_ENSURE_SUCCESS(rv, false);
|
|
|
|
rv = localDir->Clone(getter_AddRefs(parentDir));
|
|
NS_ENSURE_SUCCESS(rv, false);
|
|
|
|
// Handle (1) and (2)
|
|
rv = AppendFromAppData(localDir, true);
|
|
NS_ENSURE_SUCCESS(rv, false);
|
|
|
|
rv = localDir->Exists(&exists);
|
|
NS_ENSURE_SUCCESS(rv, false);
|
|
|
|
// Give a chance to (3)
|
|
if (!exists) {
|
|
nsCOMPtr<nsIFile> userDir;
|
|
rv = parentDir->Clone(getter_AddRefs(userDir));
|
|
NS_ENSURE_SUCCESS(rv, false);
|
|
|
|
nsAutoCString mozUserDir;
|
|
mozUserDir = nsLiteralCString(MOZ_USER_DIR);
|
|
|
|
rv = userDir->AppendRelativeNativePath(mozUserDir);
|
|
NS_ENSURE_SUCCESS(rv, false);
|
|
|
|
rv = userDir->Exists(&exists);
|
|
NS_ENSURE_SUCCESS(rv, false);
|
|
}
|
|
|
|
// If required, return the parent dir that may exist.
|
|
if (aFile) {
|
|
parentDir.forget(aFile);
|
|
}
|
|
|
|
return exists;
|
|
}
|
|
|
|
void MaybeRecordXdgTelemetry(
|
|
nsXREDirProvider::legacyOrXDGHomeTelemetry aValue) {
|
|
if (gXdgTelemetry == nsXREDirProvider::legacyOrXDGHomeTelemetry::empty) {
|
|
gXdgTelemetry = aValue;
|
|
}
|
|
}
|
|
|
|
/* static */
|
|
nsresult nsXREDirProvider::GetLegacyOrXDGEnvValue(const char* aHomeDir,
|
|
const char* aEnvName,
|
|
nsCString aSubdir,
|
|
nsIFile** aFile,
|
|
bool* aWasFromEnv) {
|
|
nsCOMPtr<nsIFile> localDir;
|
|
nsresult rv = NS_OK;
|
|
|
|
const char* envValue = PR_GetEnv(aEnvName);
|
|
if (envValue && *envValue) {
|
|
rv = NS_NewNativeLocalFile(nsDependentCString(envValue),
|
|
getter_AddRefs(localDir));
|
|
if (aWasFromEnv) {
|
|
*aWasFromEnv = true;
|
|
}
|
|
}
|
|
|
|
// Explicitly check for rv failure because in case we get passed an env
|
|
// value that is an invalid dir by the XDG specification level, it should
|
|
// be ignored. Per
|
|
// https://specifications.freedesktop.org/basedir-spec/0.8/:
|
|
// "If an implementation encounters a relative path in any of
|
|
// these variables it should consider the path invalid and ignore it."
|
|
if (NS_FAILED(rv) || !envValue || !*envValue) {
|
|
MOZ_TRY(NS_NewNativeLocalFile(nsDependentCString(aHomeDir),
|
|
getter_AddRefs(localDir)));
|
|
MOZ_TRY(localDir->AppendNative(aSubdir));
|
|
if (aWasFromEnv) {
|
|
*aWasFromEnv = false;
|
|
}
|
|
}
|
|
|
|
localDir.forget(aFile);
|
|
return NS_OK;
|
|
}
|
|
|
|
/* static */
|
|
nsresult nsXREDirProvider::GetLegacyOrXDGCachePath(const char* aHomeDir,
|
|
nsIFile** aFile) {
|
|
return GetLegacyOrXDGEnvValue(aHomeDir, "XDG_CACHE_HOME", ".cache"_ns, aFile,
|
|
nullptr);
|
|
}
|
|
|
|
/*
|
|
* Check if XDG_CONFIG_HOME is here and use it or default to ${aHomeDir}/.config
|
|
*/
|
|
/* static */
|
|
nsresult nsXREDirProvider::GetLegacyOrXDGConfigHome(const char* aHomeDir,
|
|
nsIFile** aFile) {
|
|
bool wasFromEnv = false;
|
|
nsresult rv = GetLegacyOrXDGEnvValue(aHomeDir, "XDG_CONFIG_HOME",
|
|
".config"_ns, aFile, &wasFromEnv);
|
|
if (NS_SUCCEEDED(rv) && wasFromEnv) {
|
|
MaybeRecordXdgTelemetry(legacyOrXDGHomeTelemetry::xdgConfigHome);
|
|
} else {
|
|
MaybeRecordXdgTelemetry(legacyOrXDGHomeTelemetry::xdgDefault);
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
// Attempt to construct the HOME path depending on XDG or legacy status.
|
|
nsresult nsXREDirProvider::GetLegacyOrXDGHomePath(const char* aHomeDir,
|
|
nsIFile** aFile,
|
|
bool aForceLegacy) {
|
|
nsCOMPtr<nsIFile> parentDir;
|
|
nsDependentCString homeDir(aHomeDir);
|
|
|
|
bool exists = LegacyHomeExists(getter_AddRefs(parentDir));
|
|
if (exists || IsForceLegacyHome() || aForceLegacy) {
|
|
if (exists) {
|
|
MaybeRecordXdgTelemetry(legacyOrXDGHomeTelemetry::legacyExists);
|
|
} else {
|
|
MaybeRecordXdgTelemetry(legacyOrXDGHomeTelemetry::legacyForced);
|
|
}
|
|
parentDir.forget(aFile);
|
|
return NS_OK;
|
|
}
|
|
|
|
nsCOMPtr<nsIFile> localDir;
|
|
|
|
// If the build was made with --with-user-appdir=.fooProfile it needs to be
|
|
// applied and considered as a legacy path.
|
|
nsAutoCString mozUserDir;
|
|
mozUserDir = nsLiteralCString(MOZ_USER_DIR);
|
|
if (mozUserDir.get()[0] == '.') {
|
|
MOZ_TRY(NS_NewNativeLocalFile(nsDependentCString(aHomeDir),
|
|
getter_AddRefs(localDir)));
|
|
MOZ_TRY(localDir->AppendRelativeNativePath(mozUserDir));
|
|
} else {
|
|
// This might happen in xpcshell so assert that it is indeed in a xpcshell
|
|
// test
|
|
if (!gAppData) {
|
|
mozilla::DebugOnly<const char*> xpcshell =
|
|
PR_GetEnv("XPCSHELL_TEST_PROFILE_DIR");
|
|
MOZ_ASSERT(xpcshell, "gAppData can only be nullptr in xpcshell tests");
|
|
return NS_OK;
|
|
}
|
|
|
|
// If the build was made against a specific profile name, MOZ_APP_PROFILE=
|
|
// then make sure we respect this and dont move to XDG directory
|
|
//
|
|
// Only do this on Firefox.
|
|
//
|
|
// For Thunderbird, it always defines MOZ_APP_PROFILE=thunderbird. Hence,
|
|
// check if the gAppData->profile value is set to something else, indicating
|
|
// of a specific build where legacy needs to be forced, similar to the
|
|
// Firefox handling. Both casing are verified to account for systems where
|
|
// that matters.
|
|
if (gAppData->profile
|
|
# if defined(MOZ_THUNDERBIRD)
|
|
&& strcmp(gAppData->profile, "thunderbird") != 0 &&
|
|
strcmp(gAppData->profile, "Thunderbird") != 0
|
|
# endif
|
|
) {
|
|
MOZ_TRY(NS_NewNativeLocalFile(nsDependentCString(aHomeDir),
|
|
getter_AddRefs(localDir)));
|
|
} else {
|
|
MOZ_TRY(GetLegacyOrXDGConfigHome(aHomeDir, getter_AddRefs(localDir)));
|
|
MOZ_TRY(localDir->Clone(getter_AddRefs(parentDir)));
|
|
}
|
|
|
|
MOZ_TRY(AppendFromAppData(localDir, false));
|
|
}
|
|
|
|
// If required return the parent directory that matches the profile root
|
|
// directory.
|
|
if (aFile) {
|
|
parentDir.forget(aFile);
|
|
}
|
|
|
|
// The profile root directory needs to exists at that point.
|
|
MOZ_TRY(EnsureDirectoryExists(localDir));
|
|
|
|
return NS_OK;
|
|
}
|
|
#endif // defined(MOZ_WIDGET_GTK)
|
|
|
|
nsresult nsXREDirProvider::AppendProfilePath(nsIFile* aFile, bool aLocal) {
|
|
NS_ASSERTION(aFile, "Null pointer!");
|
|
|
|
// If there is no XREAppData then there is no information to use to build
|
|
// the profile path so just do nothing. This should only happen in xpcshell
|
|
// tests.
|
|
if (!gAppData) {
|
|
return NS_OK;
|
|
}
|
|
|
|
// Similar to nsXREDirProvider::AppendFromAppData.
|
|
// TODO: evaluate if refactoring might be required there in the future?
|
|
|
|
nsAutoCString profile;
|
|
nsAutoCString appName;
|
|
nsAutoCString vendor;
|
|
if (gAppData->profile) {
|
|
profile = gAppData->profile;
|
|
} else {
|
|
appName = gAppData->name;
|
|
vendor = gAppData->vendor;
|
|
}
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
#if defined(XP_MACOSX)
|
|
if (!profile.IsEmpty()) {
|
|
rv = AppendProfileString(aFile, profile.get());
|
|
} else {
|
|
// Note that MacOS ignores the vendor when creating the profile hierarchy -
|
|
// all application preferences directories live alongside one another in
|
|
// ~/Library/Application Support/
|
|
rv = aFile->AppendNative(appName);
|
|
}
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
#elif defined(XP_WIN)
|
|
if (!profile.IsEmpty()) {
|
|
rv = AppendProfileString(aFile, profile.get());
|
|
} else {
|
|
if (!vendor.IsEmpty()) {
|
|
rv = aFile->AppendNative(vendor);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
}
|
|
rv = aFile->AppendNative(appName);
|
|
}
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
#elif defined(ANDROID)
|
|
// The directory used for storing profiles
|
|
// The parent of this directory is set in GetUserDataDirectoryHome
|
|
// XXX: handle gAppData->profile properly
|
|
// XXXsmaug ...and the rest of the profile creation!
|
|
rv = aFile->AppendNative(nsDependentCString("mozilla"));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
#elif defined(XP_UNIX)
|
|
nsAutoCString folder;
|
|
// Make it hidden (by starting with "."), except when local (the
|
|
// profile is already under ~/.cache or XDG_CACHE_HOME).
|
|
if (!aLocal
|
|
# if defined(MOZ_WIDGET_GTK)
|
|
&& (IsForceLegacyHome() || LegacyHomeExists(nullptr))
|
|
# endif
|
|
) {
|
|
folder.Assign('.');
|
|
}
|
|
|
|
if (!profile.IsEmpty()) {
|
|
// Skip any leading path characters
|
|
const char* profileStart = profile.get();
|
|
while (*profileStart == '/' || *profileStart == '\\') profileStart++;
|
|
|
|
// On the off chance that someone wanted their folder to be hidden don't
|
|
// let it become ".."
|
|
if (*profileStart == '.' && !aLocal) profileStart++;
|
|
|
|
folder.Append(profileStart);
|
|
ToLowerCase(folder);
|
|
|
|
rv = AppendProfileString(aFile, folder.get());
|
|
} else {
|
|
if (!vendor.IsEmpty()) {
|
|
folder.Append(vendor);
|
|
ToLowerCase(folder);
|
|
|
|
rv = aFile->AppendNative(folder);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
folder.Truncate();
|
|
}
|
|
|
|
// This can be the case in tests.
|
|
if (!appName.IsEmpty()) {
|
|
folder.Append(appName);
|
|
ToLowerCase(folder);
|
|
|
|
rv = aFile->AppendNative(folder);
|
|
}
|
|
}
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
#else
|
|
# error "Don't know how to get profile path on your platform"
|
|
#endif
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult nsXREDirProvider::AppendProfileString(nsIFile* aFile,
|
|
const char* aPath) {
|
|
NS_ASSERTION(aFile, "Null file!");
|
|
NS_ASSERTION(aPath, "Null path!");
|
|
|
|
nsAutoCString pathDup(aPath);
|
|
|
|
char* path = pathDup.BeginWriting();
|
|
|
|
nsresult rv;
|
|
char* subdir;
|
|
while ((subdir = NS_strtok("/\\", &path))) {
|
|
rv = aFile->AppendNative(nsDependentCString(subdir));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|