| OLD | NEW | 
|    1 // Copyright 2015 The Chromium Authors. All rights reserved. |    1 // Copyright 2015 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 <errno.h> |    5 #include <errno.h> | 
|    6 #include <fcntl.h> |    6 #include <fcntl.h> | 
 |    7 #include <sys/types.h> | 
|    7 #include <sys/stat.h> |    8 #include <sys/stat.h> | 
|    8 #include <sys/types.h> |  | 
|    9 #include <unistd.h> |    9 #include <unistd.h> | 
|   10  |   10  | 
|   11 #include <vector> |   11 #include <vector> | 
|   12  |   12  | 
|   13 #include "base/bind.h" |   13 #include "base/bind.h" | 
|   14 #include "base/macros.h" |  | 
|   15 #include "base/memory/scoped_ptr.h" |   14 #include "base/memory/scoped_ptr.h" | 
|   16 #include "base/posix/eintr_wrapper.h" |   15 #include "base/posix/eintr_wrapper.h" | 
|   17 #include "build/build_config.h" |   16 #include "build/build_config.h" | 
|   18 #include "sandbox/linux/bpf_dsl/bpf_dsl.h" |   17 #include "sandbox/linux/bpf_dsl/bpf_dsl.h" | 
|   19 #include "sandbox/linux/bpf_dsl/policy.h" |   18 #include "sandbox/linux/bpf_dsl/policy.h" | 
|   20 #include "sandbox/linux/bpf_dsl/seccomp_macros.h" |   19 #include "sandbox/linux/bpf_dsl/seccomp_macros.h" | 
|   21 #include "sandbox/linux/seccomp-bpf/bpf_tests.h" |   20 #include "sandbox/linux/seccomp-bpf/bpf_tests.h" | 
|   22 #include "sandbox/linux/seccomp-bpf/sandbox_bpf.h" |   21 #include "sandbox/linux/seccomp-bpf/sandbox_bpf.h" | 
|   23 #include "sandbox/linux/syscall_broker/broker_file_permission.h" |   22 #include "sandbox/linux/syscall_broker/broker_file_permission.h" | 
|   24 #include "sandbox/linux/syscall_broker/broker_process.h" |   23 #include "sandbox/linux/syscall_broker/broker_process.h" | 
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  173   BPF_ASSERT(cpu_info_access == 0); |  172   BPF_ASSERT(cpu_info_access == 0); | 
|  174   int cpu_info_fd = open("/proc/cpuinfo", O_RDONLY); |  173   int cpu_info_fd = open("/proc/cpuinfo", O_RDONLY); | 
|  175   BPF_ASSERT(cpu_info_fd >= 0); |  174   BPF_ASSERT(cpu_info_fd >= 0); | 
|  176   char buf[1024]; |  175   char buf[1024]; | 
|  177   BPF_ASSERT(read(cpu_info_fd, buf, sizeof(buf)) > 0); |  176   BPF_ASSERT(read(cpu_info_fd, buf, sizeof(buf)) > 0); | 
|  178 } |  177 } | 
|  179  |  178  | 
|  180 }  // namespace |  179 }  // namespace | 
|  181  |  180  | 
|  182 }  // namespace sandbox |  181 }  // namespace sandbox | 
| OLD | NEW |