| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/common/sandbox_linux/sandbox_seccomp_bpf_linux.h" | 5 #include "content/common/sandbox_linux/sandbox_seccomp_bpf_linux.h" |
| 6 | 6 |
| 7 #include <errno.h> | 7 #include <errno.h> |
| 8 #include <fcntl.h> | 8 #include <fcntl.h> |
| 9 #include <sys/socket.h> | 9 #include <sys/socket.h> |
| 10 #include <sys/stat.h> | 10 #include <sys/stat.h> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "content/common/sandbox_linux/bpf_ppapi_policy_linux.h" | 27 #include "content/common/sandbox_linux/bpf_ppapi_policy_linux.h" |
| 28 #include "content/common/sandbox_linux/bpf_renderer_policy_linux.h" | 28 #include "content/common/sandbox_linux/bpf_renderer_policy_linux.h" |
| 29 #include "content/common/sandbox_linux/bpf_utility_policy_linux.h" | 29 #include "content/common/sandbox_linux/bpf_utility_policy_linux.h" |
| 30 #include "content/common/sandbox_linux/sandbox_bpf_base_policy_linux.h" | 30 #include "content/common/sandbox_linux/sandbox_bpf_base_policy_linux.h" |
| 31 #include "content/common/sandbox_linux/sandbox_linux.h" | 31 #include "content/common/sandbox_linux/sandbox_linux.h" |
| 32 #include "sandbox/linux/seccomp-bpf-helpers/baseline_policy.h" | 32 #include "sandbox/linux/seccomp-bpf-helpers/baseline_policy.h" |
| 33 #include "sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.h" | 33 #include "sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.h" |
| 34 #include "sandbox/linux/seccomp-bpf-helpers/syscall_parameters_restrictions.h" | 34 #include "sandbox/linux/seccomp-bpf-helpers/syscall_parameters_restrictions.h" |
| 35 #include "sandbox/linux/seccomp-bpf-helpers/syscall_sets.h" | 35 #include "sandbox/linux/seccomp-bpf-helpers/syscall_sets.h" |
| 36 #include "sandbox/linux/seccomp-bpf/sandbox_bpf.h" | 36 #include "sandbox/linux/seccomp-bpf/sandbox_bpf.h" |
| 37 #include "sandbox/linux/services/linux_syscalls.h" | 37 #include "sandbox/linux/system_headers/linux_syscalls.h" |
| 38 | 38 |
| 39 #if !defined(IN_NACL_HELPER) | 39 #if !defined(IN_NACL_HELPER) |
| 40 #include "ui/gl/gl_switches.h" | 40 #include "ui/gl/gl_switches.h" |
| 41 #endif | 41 #endif |
| 42 | 42 |
| 43 using sandbox::BaselinePolicy; | 43 using sandbox::BaselinePolicy; |
| 44 using sandbox::SandboxBPF; | 44 using sandbox::SandboxBPF; |
| 45 using sandbox::SyscallSets; | 45 using sandbox::SyscallSets; |
| 46 using sandbox::bpf_dsl::Allow; | 46 using sandbox::bpf_dsl::Allow; |
| 47 using sandbox::bpf_dsl::ResultExpr; | 47 using sandbox::bpf_dsl::ResultExpr; |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 | 301 |
| 302 scoped_ptr<sandbox::bpf_dsl::Policy> SandboxSeccompBPF::GetBaselinePolicy() { | 302 scoped_ptr<sandbox::bpf_dsl::Policy> SandboxSeccompBPF::GetBaselinePolicy() { |
| 303 #if defined(USE_SECCOMP_BPF) | 303 #if defined(USE_SECCOMP_BPF) |
| 304 return scoped_ptr<sandbox::bpf_dsl::Policy>(new BaselinePolicy); | 304 return scoped_ptr<sandbox::bpf_dsl::Policy>(new BaselinePolicy); |
| 305 #else | 305 #else |
| 306 return scoped_ptr<sandbox::bpf_dsl::Policy>(); | 306 return scoped_ptr<sandbox::bpf_dsl::Policy>(); |
| 307 #endif // defined(USE_SECCOMP_BPF) | 307 #endif // defined(USE_SECCOMP_BPF) |
| 308 } | 308 } |
| 309 | 309 |
| 310 } // namespace content | 310 } // namespace content |
| OLD | NEW |