Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(480)

Side by Side Diff: content/common/sandbox_bpf_base_policy_linux.h

Issue 114483003: Revert of Linux Sandbox: split the GPU policies to their own file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2013 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.
4
5 #ifndef CONTENT_COMMON_SANDBOX_BPF_BASE_POLICY_LINUX_H_
6 #define CONTENT_COMMON_SANDBOX_BPF_BASE_POLICY_LINUX_H_
7
8 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "sandbox/linux/seccomp-bpf-helpers/baseline_policy.h"
11 #include "sandbox/linux/seccomp-bpf/sandbox_bpf_policy.h"
12
13 using sandbox::ErrorCode;
14 using sandbox::SandboxBPF;
15
16 namespace content {
17
18 // The "baseline" BPF policy for content/. Any content/ seccomp-bpf policy
19 // should inherit from it.
20 // It implements the main SandboxBPFPolicy interface. Due to its nature
21 // as a "kernel attack surface reduction" layer, it's implementation-defined.
22 class SandboxBPFBasePolicy : public sandbox::SandboxBPFPolicy {
23 public:
24 SandboxBPFBasePolicy();
25 virtual ~SandboxBPFBasePolicy();
26
27 virtual ErrorCode EvaluateSyscall(SandboxBPF* sandbox_compiler,
28 int system_call_number) const OVERRIDE;
29 // Get the errno(3) to return for filesystem errors.
30 static int GetFSDeniedErrno();
31
32 private:
33 // Compose the BaselinePolicy from sandbox/.
34 scoped_ptr<sandbox::BaselinePolicy> baseline_policy_;
35 DISALLOW_COPY_AND_ASSIGN(SandboxBPFBasePolicy);
36 };
37
38 } // namespace content
39
40 #endif // CONTENT_COMMON_SANDBOX_BPF_BASE_POLICY_LINUX_H_
OLDNEW
« no previous file with comments | « content/common/child_process_sandbox_support_impl_shm_linux.cc ('k') | content/common/sandbox_bpf_base_policy_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698