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 "sandbox/linux/seccomp-bpf-helpers/syscall_parameters_restrictions.h" | 5 #include "sandbox/linux/seccomp-bpf-helpers/syscall_parameters_restrictions.h" |
6 | 6 |
7 #include <errno.h> | 7 #include <errno.h> |
8 #include <fcntl.h> | 8 #include <fcntl.h> |
9 #include <fcntl.h> | 9 #include <fcntl.h> |
10 #include <linux/futex.h> | 10 #include <linux/futex.h> |
11 #include <linux/net.h> | 11 #include <linux/net.h> |
12 #include <sched.h> | 12 #include <sched.h> |
13 #include <signal.h> | 13 #include <signal.h> |
14 #include <sys/ioctl.h> | 14 #include <sys/ioctl.h> |
15 #include <sys/mman.h> | 15 #include <sys/mman.h> |
16 #include <sys/prctl.h> | 16 #include <sys/prctl.h> |
17 #include <sys/resource.h> | 17 #include <sys/resource.h> |
18 #include <sys/stat.h> | 18 #include <sys/stat.h> |
19 #include <sys/time.h> | 19 #include <sys/time.h> |
20 #include <sys/types.h> | 20 #include <sys/types.h> |
21 #include <time.h> | 21 #include <time.h> |
22 #include <unistd.h> | 22 #include <unistd.h> |
23 | 23 |
24 #include "base/basictypes.h" | 24 #include "base/basictypes.h" |
25 #include "base/logging.h" | 25 #include "base/logging.h" |
26 #include "base/macros.h" | 26 #include "base/macros.h" |
27 #include "base/time/time.h" | 27 #include "base/time/time.h" |
28 #include "build/build_config.h" | 28 #include "build/build_config.h" |
| 29 #include "sandbox/linux/bpf_dsl/bpf_dsl.h" |
29 #include "sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.h" | 30 #include "sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.h" |
30 #include "sandbox/linux/seccomp-bpf/linux_seccomp.h" | 31 #include "sandbox/linux/seccomp-bpf/linux_seccomp.h" |
31 #include "sandbox/linux/seccomp-bpf/sandbox_bpf.h" | 32 #include "sandbox/linux/seccomp-bpf/sandbox_bpf.h" |
32 #include "sandbox/linux/services/linux_syscalls.h" | 33 #include "sandbox/linux/services/linux_syscalls.h" |
33 | 34 |
34 #if defined(OS_ANDROID) | 35 #if defined(OS_ANDROID) |
35 | 36 |
36 #include "sandbox/linux/services/android_futex.h" | 37 #include "sandbox/linux/services/android_futex.h" |
37 | 38 |
38 #if !defined(F_DUPFD_CLOEXEC) | 39 #if !defined(F_DUPFD_CLOEXEC) |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 .Else(RewriteSchedSIGSYS()); | 281 .Else(RewriteSchedSIGSYS()); |
281 } | 282 } |
282 default: | 283 default: |
283 NOTREACHED(); | 284 NOTREACHED(); |
284 return CrashSIGSYS(); | 285 return CrashSIGSYS(); |
285 } | 286 } |
286 } | 287 } |
287 | 288 |
288 | 289 |
289 } // namespace sandbox. | 290 } // namespace sandbox. |
OLD | NEW |