Fix assert in GetOverlayRect when transforming video with Ozone overlay
[chromium-blink-merge.git] / sandbox / mac / policy.cc
blob293255adefced7ec9d4cf37e081a51251ff4a0a1
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "sandbox/mac/policy.h"
7 namespace sandbox {
9 Rule::Rule()
10 : result(POLICY_DECISION_INVALID),
11 substitute_port(MACH_PORT_NULL) {
14 Rule::Rule(PolicyDecision result)
15 : result(result),
16 substitute_port(MACH_PORT_NULL) {
19 Rule::Rule(mach_port_t override_port)
20 : result(POLICY_SUBSTITUTE_PORT),
21 substitute_port(override_port) {
24 BootstrapSandboxPolicy::BootstrapSandboxPolicy()
25 : default_rule(POLICY_DENY_ERROR) {
28 BootstrapSandboxPolicy::~BootstrapSandboxPolicy() {}
30 static bool IsRuleValid(const Rule& rule) {
31 if (!(rule.result > POLICY_DECISION_INVALID &&
32 rule.result < POLICY_DECISION_LAST)) {
33 return false;
35 if (rule.result == POLICY_SUBSTITUTE_PORT) {
36 if (rule.substitute_port == MACH_PORT_NULL)
37 return false;
38 } else {
39 if (rule.substitute_port != MACH_PORT_NULL)
40 return false;
42 return true;
45 bool IsPolicyValid(const BootstrapSandboxPolicy& policy) {
46 if (!IsRuleValid(policy.default_rule))
47 return false;
49 for (const auto& pair : policy.rules) {
50 if (!IsRuleValid(pair.second))
51 return false;
53 return true;
56 } // namespace sandbox