2015-05-03 12:32:37 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2012-05-21 04:12:37 -07:00
|
|
|
* 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/. */
|
2009-06-30 13:39:22 -07:00
|
|
|
|
2010-05-13 16:44:53 -07:00
|
|
|
#include "mozilla/ipc/IOThreadChild.h"
|
2009-06-30 13:39:22 -07:00
|
|
|
|
2010-07-19 11:33:33 -07:00
|
|
|
#include "ContentProcess.h"
|
2009-06-30 13:39:22 -07:00
|
|
|
|
2015-04-05 06:01:38 -07:00
|
|
|
#if defined(XP_WIN) && defined(MOZ_CONTENT_SANDBOX)
|
|
|
|
#include "mozilla/Preferences.h"
|
2015-05-18 03:51:07 -07:00
|
|
|
#include "mozilla/WindowsVersion.h"
|
2015-04-05 06:01:38 -07:00
|
|
|
#include "nsDirectoryService.h"
|
|
|
|
#include "nsDirectoryServiceDefs.h"
|
|
|
|
#endif
|
|
|
|
|
2010-05-13 16:44:53 -07:00
|
|
|
using mozilla::ipc::IOThreadChild;
|
2009-06-30 13:39:22 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
2009-08-12 09:18:08 -07:00
|
|
|
namespace dom {
|
2009-06-30 13:39:22 -07:00
|
|
|
|
2015-04-05 06:01:38 -07:00
|
|
|
#if defined(XP_WIN) && defined(MOZ_CONTENT_SANDBOX)
|
|
|
|
static void
|
|
|
|
SetUpSandboxEnvironment()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(nsDirectoryService::gService,
|
|
|
|
"SetUpSandboxEnvironment relies on nsDirectoryService being initialized");
|
|
|
|
|
2015-05-18 03:51:07 -07:00
|
|
|
// A low integrity temp only currently makes sense for Vista or Later and
|
|
|
|
// sandbox pref level 1.
|
|
|
|
if (!IsVistaOrLater() ||
|
|
|
|
Preferences::GetInt("security.sandbox.content.level") != 1) {
|
2015-04-05 06:01:38 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-05-18 03:51:07 -07:00
|
|
|
nsAdoptingString tempDirSuffix =
|
|
|
|
Preferences::GetString("security.sandbox.content.tempDirSuffix");
|
|
|
|
if (tempDirSuffix.IsEmpty()) {
|
|
|
|
NS_WARNING("Low integrity temp suffix pref not set.");
|
2015-04-05 06:01:38 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-05-18 03:51:07 -07:00
|
|
|
// Get the base low integrity Mozilla temp directory.
|
|
|
|
nsCOMPtr<nsIFile> lowIntegrityTemp;
|
|
|
|
nsresult rv = nsDirectoryService::gService->Get(NS_WIN_LOW_INTEGRITY_TEMP_BASE,
|
|
|
|
NS_GET_IID(nsIFile),
|
|
|
|
getter_AddRefs(lowIntegrityTemp));
|
2015-04-05 06:01:38 -07:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-05-18 03:51:07 -07:00
|
|
|
// Append our profile specific temp name.
|
|
|
|
rv = lowIntegrityTemp->Append(NS_LITERAL_STRING("Temp-") + tempDirSuffix);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
2015-04-05 06:01:38 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-05-18 03:51:07 -07:00
|
|
|
// Change the gecko defined temp directory to our low integrity one.
|
|
|
|
// Undefine returns a failure if the property is not already set.
|
|
|
|
unused << nsDirectoryService::gService->Undefine(NS_OS_TEMP_DIR);
|
|
|
|
rv = nsDirectoryService::gService->Set(NS_OS_TEMP_DIR, lowIntegrityTemp);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return;
|
|
|
|
}
|
2015-04-05 06:01:38 -07:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-12-18 08:24:42 -08:00
|
|
|
void
|
|
|
|
ContentProcess::SetAppDir(const nsACString& aPath)
|
|
|
|
{
|
|
|
|
mXREEmbed.SetAppDir(aPath);
|
|
|
|
}
|
|
|
|
|
2010-05-13 16:44:53 -07:00
|
|
|
bool
|
2010-07-19 11:33:33 -07:00
|
|
|
ContentProcess::Init()
|
2009-06-30 13:39:22 -07:00
|
|
|
{
|
2010-07-19 11:33:33 -07:00
|
|
|
mContent.Init(IOThreadChild::message_loop(),
|
2015-04-01 01:40:35 -07:00
|
|
|
ParentPid(),
|
2010-05-13 16:44:53 -07:00
|
|
|
IOThreadChild::channel());
|
2010-05-25 17:13:47 -07:00
|
|
|
mXREEmbed.Start();
|
2010-09-23 18:39:32 -07:00
|
|
|
mContent.InitXPCOM();
|
2015-04-05 06:01:38 -07:00
|
|
|
|
|
|
|
#if defined(XP_WIN) && defined(MOZ_CONTENT_SANDBOX)
|
|
|
|
SetUpSandboxEnvironment();
|
|
|
|
#endif
|
2010-05-25 17:13:47 -07:00
|
|
|
|
2010-05-13 16:44:53 -07:00
|
|
|
return true;
|
2009-06-30 13:39:22 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-07-19 11:33:33 -07:00
|
|
|
ContentProcess::CleanUp()
|
2009-06-30 13:39:22 -07:00
|
|
|
{
|
2010-01-31 19:19:21 -08:00
|
|
|
mXREEmbed.Stop();
|
2009-06-30 13:39:22 -07:00
|
|
|
}
|
|
|
|
|
2013-06-03 03:14:40 -07:00
|
|
|
} // namespace dom
|
2009-06-30 13:39:22 -07:00
|
|
|
} // namespace mozilla
|