| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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/bpf_gpu_policy_linux.h" | 5 #include "content/common/sandbox_linux/bpf_gpu_policy_linux.h" |
| 6 | 6 |
| 7 #include <dlfcn.h> | 7 #include <dlfcn.h> |
| 8 #include <errno.h> | 8 #include <errno.h> |
| 9 #include <fcntl.h> | 9 #include <fcntl.h> |
| 10 #include <sys/socket.h> | 10 #include <sys/socket.h> |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #include "content/common/sandbox_linux/sandbox_bpf_base_policy_linux.h" | 24 #include "content/common/sandbox_linux/sandbox_bpf_base_policy_linux.h" |
| 25 #include "content/common/sandbox_linux/sandbox_seccomp_bpf_linux.h" | 25 #include "content/common/sandbox_linux/sandbox_seccomp_bpf_linux.h" |
| 26 #include "content/common/set_process_title.h" | 26 #include "content/common/set_process_title.h" |
| 27 #include "content/public/common/content_switches.h" | 27 #include "content/public/common/content_switches.h" |
| 28 #include "sandbox/linux/bpf_dsl/bpf_dsl.h" | 28 #include "sandbox/linux/bpf_dsl/bpf_dsl.h" |
| 29 #include "sandbox/linux/seccomp-bpf-helpers/syscall_parameters_restrictions.h" | 29 #include "sandbox/linux/seccomp-bpf-helpers/syscall_parameters_restrictions.h" |
| 30 #include "sandbox/linux/seccomp-bpf-helpers/syscall_sets.h" | 30 #include "sandbox/linux/seccomp-bpf-helpers/syscall_sets.h" |
| 31 #include "sandbox/linux/services/linux_syscalls.h" | 31 #include "sandbox/linux/services/linux_syscalls.h" |
| 32 #include "sandbox/linux/syscall_broker/broker_process.h" | 32 #include "sandbox/linux/syscall_broker/broker_process.h" |
| 33 | 33 |
| 34 using sandbox::BrokerProcess; | 34 using sandbox::syscall_broker::BrokerProcess; |
| 35 using sandbox::SyscallSets; | 35 using sandbox::SyscallSets; |
| 36 using sandbox::arch_seccomp_data; | 36 using sandbox::arch_seccomp_data; |
| 37 using sandbox::bpf_dsl::Allow; | 37 using sandbox::bpf_dsl::Allow; |
| 38 using sandbox::bpf_dsl::ResultExpr; | 38 using sandbox::bpf_dsl::ResultExpr; |
| 39 using sandbox::bpf_dsl::Trap; | 39 using sandbox::bpf_dsl::Trap; |
| 40 | 40 |
| 41 namespace content { | 41 namespace content { |
| 42 | 42 |
| 43 namespace { | 43 namespace { |
| 44 | 44 |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 broker_process_ = new BrokerProcess(GetFSDeniedErrno(), | 283 broker_process_ = new BrokerProcess(GetFSDeniedErrno(), |
| 284 read_whitelist, | 284 read_whitelist, |
| 285 write_whitelist); | 285 write_whitelist); |
| 286 // The initialization callback will perform generic initialization and then | 286 // The initialization callback will perform generic initialization and then |
| 287 // call broker_sandboxer_callback. | 287 // call broker_sandboxer_callback. |
| 288 CHECK(broker_process_->Init(base::Bind(&UpdateProcessTypeAndEnableSandbox, | 288 CHECK(broker_process_->Init(base::Bind(&UpdateProcessTypeAndEnableSandbox, |
| 289 broker_sandboxer_allocator))); | 289 broker_sandboxer_allocator))); |
| 290 } | 290 } |
| 291 | 291 |
| 292 } // namespace content | 292 } // namespace content |
| OLD | NEW |