mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 23:31:56 +00:00
Bug 1290619 - Content sandbox rules should use actual profile directory, not Profiles/*/ regexes. r=jimm
Passes the profile dir to the content process as a -profile CLI option so that the correct profile dir can be used in the OS X content sandbox rules. Only enabled on OS X for now. On Nightly, profile directories will now be read/write protected from the content process (apart from a few profile subdirectories) even when they don't reside in ~/Library. MozReview-Commit-ID: rrTcQwTNdT --HG-- extra : rebase_source : d91d8939cabb0eed36b640766756548a790a301c
This commit is contained in:
parent
4e499d41bb
commit
3c44a5f111
@ -1303,6 +1303,14 @@ StartMacOSContentSandbox()
|
||||
MOZ_CRASH("Failed to get NS_OS_TEMP_DIR path");
|
||||
}
|
||||
|
||||
nsCOMPtr<nsIFile> profileDir;
|
||||
ContentChild::GetSingleton()->GetProfileDir(getter_AddRefs(profileDir));
|
||||
nsCString profileDirPath;
|
||||
rv = profileDir->GetNativePath(profileDirPath);
|
||||
if (NS_FAILED(rv)) {
|
||||
MOZ_CRASH("Failed to get profile path");
|
||||
}
|
||||
|
||||
MacSandboxInfo info;
|
||||
info.type = MacSandboxType_Content;
|
||||
info.level = info.level = sandboxLevel;
|
||||
@ -1310,6 +1318,7 @@ StartMacOSContentSandbox()
|
||||
info.appBinaryPath.assign(appBinaryPath.get());
|
||||
info.appDir.assign(appDir.get());
|
||||
info.appTempDir.assign(tempDirPath.get());
|
||||
info.profileDir.assign(profileDirPath.get());
|
||||
|
||||
std::string err;
|
||||
if (!mozilla::StartMacSandbox(info, err)) {
|
||||
|
@ -21,6 +21,9 @@
|
||||
#include "nsWeakPtr.h"
|
||||
#include "nsIWindowProvider.h"
|
||||
|
||||
#if defined(XP_MACOSX) && defined(MOZ_CONTENT_SANDBOX)
|
||||
#include "nsIFile.h"
|
||||
#endif
|
||||
|
||||
struct ChromePackage;
|
||||
class nsIObserver;
|
||||
@ -114,6 +117,19 @@ public:
|
||||
|
||||
void GetProcessName(nsACString& aName) const;
|
||||
|
||||
#if defined(XP_MACOSX) && defined(MOZ_CONTENT_SANDBOX)
|
||||
void GetProfileDir(nsIFile** aProfileDir) const
|
||||
{
|
||||
*aProfileDir = mProfileDir;
|
||||
NS_IF_ADDREF(*aProfileDir);
|
||||
}
|
||||
|
||||
void SetProfileDir(nsIFile* aProfileDir)
|
||||
{
|
||||
mProfileDir = aProfileDir;
|
||||
}
|
||||
#endif
|
||||
|
||||
bool IsAlive() const;
|
||||
|
||||
static void AppendProcessId(nsACString& aName);
|
||||
@ -681,6 +697,10 @@ private:
|
||||
nsCOMPtr<nsIDomainPolicy> mPolicy;
|
||||
nsCOMPtr<nsITimer> mForceKillTimer;
|
||||
|
||||
#if defined(XP_MACOSX) && defined(MOZ_CONTENT_SANDBOX)
|
||||
nsCOMPtr<nsIFile> mProfileDir;
|
||||
#endif
|
||||
|
||||
// Hashtable to keep track of the pending GetFilesHelper objects.
|
||||
// This GetFilesHelperChild objects are removed when RecvGetFilesResponse is
|
||||
// received.
|
||||
|
@ -114,6 +114,21 @@ ContentProcess::SetAppDir(const nsACString& aPath)
|
||||
mXREEmbed.SetAppDir(aPath);
|
||||
}
|
||||
|
||||
#if defined(XP_MACOSX) && defined(MOZ_CONTENT_SANDBOX)
|
||||
void
|
||||
ContentProcess::SetProfile(const nsACString& aProfile)
|
||||
{
|
||||
bool flag;
|
||||
nsresult rv =
|
||||
XRE_GetFileFromPath(aProfile.BeginReading(), getter_AddRefs(mProfileDir));
|
||||
if (NS_FAILED(rv) ||
|
||||
NS_FAILED(mProfileDir->Exists(&flag)) || !flag) {
|
||||
NS_WARNING("Invalid profile directory passed to content process.");
|
||||
mProfileDir = nullptr;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
bool
|
||||
ContentProcess::Init()
|
||||
{
|
||||
@ -124,6 +139,10 @@ ContentProcess::Init()
|
||||
mContent.InitXPCOM();
|
||||
mContent.InitGraphicsDeviceData();
|
||||
|
||||
#if (defined(XP_MACOSX)) && defined(MOZ_CONTENT_SANDBOX)
|
||||
mContent.SetProfileDir(mProfileDir);
|
||||
#endif
|
||||
|
||||
#if (defined(XP_WIN) || defined(XP_MACOSX)) && defined(MOZ_CONTENT_SANDBOX)
|
||||
SetUpSandboxEnvironment();
|
||||
#endif
|
||||
|
@ -39,9 +39,18 @@ public:
|
||||
|
||||
void SetAppDir(const nsACString& aPath);
|
||||
|
||||
#if defined(XP_MACOSX) && defined(MOZ_CONTENT_SANDBOX)
|
||||
void SetProfile(const nsACString& aProfile);
|
||||
#endif
|
||||
|
||||
private:
|
||||
ContentChild mContent;
|
||||
mozilla::ipc::ScopedXREEmbed mXREEmbed;
|
||||
|
||||
#if defined(XP_MACOSX) && defined(MOZ_CONTENT_SANDBOX)
|
||||
nsCOMPtr<nsIFile> mProfileDir;
|
||||
#endif
|
||||
|
||||
#if defined(XP_WIN)
|
||||
// This object initializes and configures COM.
|
||||
mozilla::mscom::MainThreadRuntime mCOMRuntime;
|
||||
|
@ -23,6 +23,10 @@
|
||||
#include "prenv.h"
|
||||
#include "nsXPCOMPrivate.h"
|
||||
|
||||
#if defined(XP_MACOSX) && defined(MOZ_CONTENT_SANDBOX)
|
||||
#include "nsAppDirectoryServiceDefs.h"
|
||||
#endif
|
||||
|
||||
#include "nsExceptionHandler.h"
|
||||
|
||||
#include "nsDirectoryServiceDefs.h"
|
||||
@ -608,6 +612,20 @@ AddAppDirToCommandLine(std::vector<std::string>& aCmdLine)
|
||||
aCmdLine.push_back(path.get());
|
||||
#endif
|
||||
}
|
||||
|
||||
#if defined(XP_MACOSX) && defined(MOZ_CONTENT_SANDBOX)
|
||||
// Full path to the profile dir
|
||||
nsCOMPtr<nsIFile> profileDir;
|
||||
rv = directoryService->Get(NS_APP_USER_PROFILE_50_DIR,
|
||||
NS_GET_IID(nsIFile),
|
||||
getter_AddRefs(profileDir));
|
||||
if (NS_SUCCEEDED(rv)) {
|
||||
nsAutoCString path;
|
||||
MOZ_ALWAYS_SUCCEEDS(profileDir->GetNativePath(path));
|
||||
aCmdLine.push_back("-profile");
|
||||
aCmdLine.push_back(path.get());
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -41,7 +41,8 @@ typedef struct _MacSandboxInfo {
|
||||
_MacSandboxInfo(const struct _MacSandboxInfo& other)
|
||||
: type(other.type), level(other.level), pluginInfo(other.pluginInfo),
|
||||
appPath(other.appPath), appBinaryPath(other.appBinaryPath),
|
||||
appDir(other.appDir), appTempDir(other.appTempDir) {}
|
||||
appDir(other.appDir), appTempDir(other.appTempDir),
|
||||
profileDir(other.profileDir) {}
|
||||
MacSandboxType type;
|
||||
int32_t level;
|
||||
MacSandboxPluginInfo pluginInfo;
|
||||
@ -49,6 +50,7 @@ typedef struct _MacSandboxInfo {
|
||||
std::string appBinaryPath;
|
||||
std::string appDir;
|
||||
std::string appTempDir;
|
||||
std::string profileDir;
|
||||
} MacSandboxInfo;
|
||||
|
||||
namespace mozilla {
|
||||
|
@ -157,6 +157,7 @@ static const char contentSandboxRules[] =
|
||||
"(define appBinaryPath \"%s\")\n"
|
||||
"(define appDir \"%s\")\n"
|
||||
"(define appTempDir \"%s\")\n"
|
||||
"(define profileDir \"%s\")\n"
|
||||
"(define home-path \"%s\")\n"
|
||||
"\n"
|
||||
"; Allow read access to standard system paths.\n"
|
||||
@ -232,6 +233,9 @@ static const char contentSandboxRules[] =
|
||||
" (define (home-literal home-relative-literal)\n"
|
||||
" (resolving-literal (string-append home-path home-relative-literal)))\n"
|
||||
"\n"
|
||||
" (define (profile-subpath profile-relative-subpath)\n"
|
||||
" (resolving-subpath (string-append profileDir profile-relative-subpath)))\n"
|
||||
"\n"
|
||||
" (define (container-regex container-relative-regex)\n"
|
||||
" (resolving-regex (string-append \"^\" (regex-quote container-path) container-relative-regex)))\n"
|
||||
" (define (container-subpath container-relative-subpath)\n"
|
||||
@ -371,16 +375,17 @@ static const char contentSandboxRules[] =
|
||||
" (allow file-read*\n"
|
||||
" (home-regex \"/Library/Application Support/[^/]+/Extensions/[^/]/\")\n"
|
||||
" (resolving-regex \"/Library/Application Support/[^/]+/Extensions/[^/]/\")\n"
|
||||
" (home-regex \"/Library/Application Support/Firefox/Profiles/[^/]+/extensions/\")\n"
|
||||
" (home-regex \"/Library/Application Support/Firefox/Profiles/[^/]+/weave/\"))\n"
|
||||
" (profile-subpath \"/extensions\")\n"
|
||||
" (profile-subpath \"/weave\"))\n"
|
||||
"\n"
|
||||
"; the following rules should be removed when printing and \n"
|
||||
"; the following rules should be removed when printing and\n"
|
||||
"; opening a file from disk are brokered through the main process\n"
|
||||
" (if\n"
|
||||
" (< sandbox-level 2)\n"
|
||||
" (allow file*\n"
|
||||
" (require-not\n"
|
||||
" (home-subpath \"/Library\")))\n"
|
||||
" (require-all\n"
|
||||
" (require-not (home-subpath \"/Library\"))\n"
|
||||
" (require-not (subpath profileDir))))\n"
|
||||
" (allow file*\n"
|
||||
" (require-all\n"
|
||||
" (subpath home-path)\n"
|
||||
@ -497,6 +502,7 @@ bool StartMacSandbox(MacSandboxInfo aInfo, std::string &aErrorMessage)
|
||||
aInfo.appBinaryPath.c_str(),
|
||||
aInfo.appDir.c_str(),
|
||||
aInfo.appTempDir.c_str(),
|
||||
aInfo.profileDir.c_str(),
|
||||
getenv("HOME"));
|
||||
} else {
|
||||
fprintf(stderr,
|
||||
|
@ -606,13 +606,44 @@ XRE_InitChildProcess(int aArgc,
|
||||
case GeckoProcessType_Content: {
|
||||
process = new ContentProcess(parentPID);
|
||||
// If passed in grab the application path for xpcom init
|
||||
nsCString appDir;
|
||||
bool foundAppdir = false;
|
||||
|
||||
#if defined(XP_MACOSX) && defined(MOZ_CONTENT_SANDBOX)
|
||||
// If passed in grab the profile path for sandboxing
|
||||
bool foundProfile = false;
|
||||
#endif
|
||||
|
||||
for (int idx = aArgc; idx > 0; idx--) {
|
||||
if (aArgv[idx] && !strcmp(aArgv[idx], "-appdir")) {
|
||||
MOZ_ASSERT(!foundAppdir);
|
||||
if (foundAppdir) {
|
||||
continue;
|
||||
}
|
||||
nsCString appDir;
|
||||
appDir.Assign(nsDependentCString(aArgv[idx+1]));
|
||||
static_cast<ContentProcess*>(process.get())->SetAppDir(appDir);
|
||||
foundAppdir = true;
|
||||
}
|
||||
|
||||
#if defined(XP_MACOSX) && defined(MOZ_CONTENT_SANDBOX)
|
||||
if (aArgv[idx] && !strcmp(aArgv[idx], "-profile")) {
|
||||
MOZ_ASSERT(!foundProfile);
|
||||
if (foundProfile) {
|
||||
continue;
|
||||
}
|
||||
nsCString profile;
|
||||
profile.Assign(nsDependentCString(aArgv[idx+1]));
|
||||
static_cast<ContentProcess*>(process.get())->SetProfile(profile);
|
||||
foundProfile = true;
|
||||
}
|
||||
if (foundProfile && foundAppdir) {
|
||||
break;
|
||||
}
|
||||
#else
|
||||
if (foundAppdir) {
|
||||
break;
|
||||
}
|
||||
#endif /* XP_MACOSX && MOZ_CONTENT_SANDBOX */
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user