gecko-dev/security/sandbox/mac/SandboxPolicyUtility.h
Haik Aftandilian 2abd1f81a6 Bug 1541230 - Part 2 - Add /System/Library read access to the utility sandbox r=Alex_Gaynor
Allow read access to /System/Library for accessing system libraries.

Depends on D26397

Differential Revision: https://phabricator.services.mozilla.com/D26626

--HG--
extra : moz-landing-system : lando
2019-04-09 12:51:18 +00:00

60 lines
1.7 KiB
C++

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/. */
#ifndef mozilla_SandboxPolicyUtility_h
#define mozilla_SandboxPolicyUtility_h
namespace mozilla {
static const char SandboxPolicyUtility[] = R"SANDBOX_LITERAL(
(version 1)
(define should-log (param "SHOULD_LOG"))
(define app-path (param "APP_PATH"))
(define crashPort (param "CRASH_PORT"))
(define (moz-deny feature)
(if (string=? should-log "TRUE")
(deny feature)
(deny feature (with no-log))))
(moz-deny default)
; These are not included in (deny default)
(moz-deny process-info*)
; This isn't available in some older macOS releases.
(if (defined? 'nvram*)
(moz-deny nvram*))
; This property requires macOS 10.10+
(if (defined? 'file-map-executable)
(moz-deny file-map-executable))
(if (defined? 'file-map-executable)
(allow file-map-executable file-read*
(subpath "/System/Library")
(subpath "/usr/lib")
(subpath app-path))
(allow file-read*
(subpath "/System/Library")
(subpath "/usr/lib")
(subpath app-path)))
(if (string? crashPort)
(allow mach-lookup (global-name crashPort)))
(allow signal (target self))
(allow sysctl-read)
(allow file-read*
(literal "/dev/random")
(literal "/dev/urandom")
(subpath "/usr/share/icu"))
(allow mach-lookup
(global-name "com.apple.coreservices.launchservicesd"))
)SANDBOX_LITERAL";
} // namespace mozilla
#endif // mozilla_SandboxPolicyUtility_h