Auto merge of #10496 - kaksmet:fix-sandbox, r=pcwalton

Fix sandboxing on OS X

The main issue was resources_dir_path. Every time it was called it would start from the executable's path and walk up the hierarchy to find a directory named "resources". The sandbox was granted permission to read from the found resources dir, but after the sandbox had been activated resources_dir_path would again start from the executable's path and try to find the resources dir. It would then fail with "Operation not permitted" when trying to canonicalize the path because it didn't have permissions to read metadata under ./target.

To fix this the resources dir path is now cached between resources_dir_path calls.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/10496)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-04-11 23:54:27 +05:30
commit a162cfe45c
3 changed files with 30 additions and 26 deletions

View file

@ -16,7 +16,9 @@ pub fn content_process_sandbox_profile() -> Profile {
Operation::FileReadAll(PathPattern::Subpath(PathBuf::from("/Library/Fonts"))), Operation::FileReadAll(PathPattern::Subpath(PathBuf::from("/Library/Fonts"))),
Operation::FileReadAll(PathPattern::Subpath(PathBuf::from("/System/Library/Fonts"))), Operation::FileReadAll(PathPattern::Subpath(PathBuf::from("/System/Library/Fonts"))),
Operation::FileReadAll(PathPattern::Subpath(PathBuf::from( Operation::FileReadAll(PathPattern::Subpath(PathBuf::from(
"/System/Library/Frameworks/ApplicationServices.framework/"))), "/System/Library/Frameworks/ApplicationServices.framework"))),
Operation::FileReadAll(PathPattern::Subpath(PathBuf::from(
"/System/Library/Frameworks/CoreGraphics.framework"))),
Operation::FileReadMetadata(PathPattern::Literal(PathBuf::from("/"))), Operation::FileReadMetadata(PathPattern::Literal(PathBuf::from("/"))),
Operation::FileReadMetadata(PathPattern::Literal(PathBuf::from("/Library"))), Operation::FileReadMetadata(PathPattern::Literal(PathBuf::from("/Library"))),
Operation::FileReadMetadata(PathPattern::Literal(PathBuf::from("/System"))), Operation::FileReadMetadata(PathPattern::Literal(PathBuf::from("/System"))),

View file

@ -275,7 +275,8 @@ pub unsafe extern fn __errno_location() -> *mut i32 {
#[cfg(not(target_os = "windows"))] #[cfg(not(target_os = "windows"))]
fn create_sandbox() { fn create_sandbox() {
ChildSandbox::new(sandboxing::content_process_sandbox_profile()).activate().unwrap(); ChildSandbox::new(sandboxing::content_process_sandbox_profile()).activate()
.expect("Failed to activate sandbox!");
} }
#[cfg(target_os = "windows")] #[cfg(target_os = "windows")]

View file

@ -2,6 +2,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
use std::env;
use std::fs::File; use std::fs::File;
use std::io::{self, Read}; use std::io::{self, Read};
use std::path::PathBuf; use std::path::PathBuf;
@ -25,35 +26,35 @@ pub fn resources_dir_path() -> PathBuf {
#[cfg(not(target_os = "android"))] #[cfg(not(target_os = "android"))]
pub fn resources_dir_path() -> PathBuf { pub fn resources_dir_path() -> PathBuf {
use std::env; let mut dir = CMD_RESOURCE_DIR.lock().unwrap();
match *CMD_RESOURCE_DIR.lock().unwrap() { if let Some(ref path) = *dir {
Some(ref path) => PathBuf::from(path), return PathBuf::from(path);
None => { }
// FIXME: Find a way to not rely on the executable being
// under `<servo source>[/$target_triple]/target/debug` // FIXME: Find a way to not rely on the executable being
// or `<servo source>[/$target_triple]/target/release`. // under `<servo source>[/$target_triple]/target/debug`
let mut path = env::current_exe().expect("can't get exe path"); // or `<servo source>[/$target_triple]/target/release`.
// Follow symlink let mut path = env::current_exe().expect("can't get exe path");
path = path.canonicalize().expect("path does not exist"); // Follow symlink
path = path.canonicalize().expect("path does not exist");
path.pop();
path.push("resources");
if !path.is_dir() { // resources dir not in same dir as exe?
// exe is probably in target/{debug,release} so we need to go back to topdir
path.pop();
path.pop();
path.pop();
path.push("resources");
if !path.is_dir() {
// exe is probably in target/$target_triple/{debug,release} so go back one more
path.pop();
path.pop(); path.pop();
path.push("resources"); path.push("resources");
if !path.is_dir() { // resources dir not in same dir as exe?
// exe is probably in target/{debug,release} so we need to go back to topdir
path.pop();
path.pop();
path.pop();
path.push("resources");
if !path.is_dir() {
// exe is probably in target/$target_triple/{debug,release} so go back one more
path.pop();
path.pop();
path.push("resources");
}
}
path
} }
} }
*dir = Some(path.to_str().unwrap().to_owned());
path
} }
pub fn read_resource_file(relative_path_components: &[&str]) -> io::Result<Vec<u8>> { pub fn read_resource_file(relative_path_components: &[&str]) -> io::Result<Vec<u8>> {