blob: e50f2f5ffac13773deb7b0393c9100644f9b6b2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/bootstrap_sandbox_mac.h"
#include "base/logging.h"
#include "base/mac/mac_util.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/singleton.h"
#include "content/common/sandbox_init_mac.h"
#include "content/public/browser/browser_child_process_observer.h"
#include "content/public/browser/child_process_data.h"
#include "content/public/common/sandbox_type.h"
#include "sandbox/mac/bootstrap_sandbox.h"
namespace content {
namespace {
// This class is responsible for creating the BootstrapSandbox global
// singleton, as well as registering all associated policies with it.
class BootstrapSandboxPolicy : public BrowserChildProcessObserver {
public:
static BootstrapSandboxPolicy* GetInstance();
sandbox::BootstrapSandbox* sandbox() const {
return sandbox_.get();
}
// BrowserChildProcessObserver:
void BrowserChildProcessHostDisconnected(
const ChildProcessData& data) override;
void BrowserChildProcessCrashed(
const ChildProcessData& data,
int exit_code) override;
private:
friend struct DefaultSingletonTraits<BootstrapSandboxPolicy>;
BootstrapSandboxPolicy();
~BootstrapSandboxPolicy() override;
void RegisterSandboxPolicies();
scoped_ptr<sandbox::BootstrapSandbox> sandbox_;
};
BootstrapSandboxPolicy* BootstrapSandboxPolicy::GetInstance() {
return Singleton<BootstrapSandboxPolicy>::get();
}
void BootstrapSandboxPolicy::BrowserChildProcessHostDisconnected(
const ChildProcessData& data) {
sandbox()->ChildDied(data.handle);
}
void BootstrapSandboxPolicy::BrowserChildProcessCrashed(
const ChildProcessData& data,
int exit_code) {
sandbox()->ChildDied(data.handle);
}
BootstrapSandboxPolicy::BootstrapSandboxPolicy()
: sandbox_(sandbox::BootstrapSandbox::Create()) {
CHECK(sandbox_.get());
BrowserChildProcessObserver::Add(this);
RegisterSandboxPolicies();
}
BootstrapSandboxPolicy::~BootstrapSandboxPolicy() {
BrowserChildProcessObserver::Remove(this);
}
void BootstrapSandboxPolicy::RegisterSandboxPolicies() {
}
} // namespace
bool ShouldEnableBootstrapSandbox() {
// TODO(rsesek): Re-enable when crbug.com/501128 is fixed.
return false;
}
sandbox::BootstrapSandbox* GetBootstrapSandbox() {
return BootstrapSandboxPolicy::GetInstance()->sandbox();
}
} // namespace content
|