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
3 // found in the LICENSE file.
5 #include "sandbox/linux/seccomp-bpf-helpers/syscall_parameters_restrictions.h"
10 #include <linux/net.h>
15 #include <sys/prctl.h>
16 #include <sys/resource.h>
19 #include <sys/types.h>
23 #include "base/logging.h"
24 #include "base/macros.h"
25 #include "base/time/time.h"
26 #include "build/build_config.h"
27 #include "sandbox/linux/bpf_dsl/bpf_dsl.h"
28 #include "sandbox/linux/bpf_dsl/seccomp_macros.h"
29 #include "sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.h"
30 #include "sandbox/linux/seccomp-bpf/sandbox_bpf.h"
31 #include "sandbox/linux/system_headers/linux_futex.h"
32 #include "sandbox/linux/system_headers/linux_syscalls.h"
33 #include "sandbox/linux/system_headers/linux_time.h"
35 // PNaCl toolchain does not provide sys/ioctl.h header.
36 #if !defined(OS_NACL_NONSFI)
37 #include <sys/ioctl.h>
40 #if defined(OS_ANDROID)
42 #if !defined(F_DUPFD_CLOEXEC)
43 #define F_DUPFD_CLOEXEC (F_LINUX_SPECIFIC_BASE + 6)
46 // https://android.googlesource.com/platform/bionic/+/lollipop-release/libc/private/bionic_prctl.h
47 #if !defined(PR_SET_VMA)
48 #define PR_SET_VMA 0x53564d41
51 // https://android.googlesource.com/platform/system/core/+/lollipop-release/libcutils/sched_policy.c
52 #if !defined(PR_SET_TIMERSLACK_PID)
53 #define PR_SET_TIMERSLACK_PID 41
56 #endif // defined(OS_ANDROID)
58 #if defined(__arm__) && !defined(MAP_STACK)
59 #define MAP_STACK 0x20000 // Daisy build environment has old headers.
62 #if defined(__mips__) && !defined(MAP_STACK)
63 #define MAP_STACK 0x40000
67 inline bool IsArchitectureX86_64() {
68 #if defined(__x86_64__)
75 inline bool IsArchitectureI386() {
83 inline bool IsAndroid() {
84 #if defined(OS_ANDROID)
91 inline bool IsArchitectureMips() {
101 #define CASES SANDBOX_BPF_DSL_CASES
103 using sandbox::bpf_dsl::Allow
;
104 using sandbox::bpf_dsl::Arg
;
105 using sandbox::bpf_dsl::BoolExpr
;
106 using sandbox::bpf_dsl::Error
;
107 using sandbox::bpf_dsl::If
;
108 using sandbox::bpf_dsl::ResultExpr
;
112 #if !defined(OS_NACL_NONSFI)
113 // Allow Glibc's and Android pthread creation flags, crash on any other
114 // thread creation attempts and EPERM attempts to use neither
115 // CLONE_VM, nor CLONE_THREAD, which includes all fork() implementations.
116 ResultExpr
RestrictCloneToThreadsAndEPERMFork() {
117 const Arg
<unsigned long> flags(0);
119 // TODO(mdempsky): Extend DSL to support (flags & ~mask1) == mask2.
120 const uint64_t kAndroidCloneMask
= CLONE_VM
| CLONE_FS
| CLONE_FILES
|
121 CLONE_SIGHAND
| CLONE_THREAD
|
123 const uint64_t kObsoleteAndroidCloneMask
= kAndroidCloneMask
| CLONE_DETACHED
;
125 const uint64_t kGlibcPthreadFlags
=
126 CLONE_VM
| CLONE_FS
| CLONE_FILES
| CLONE_SIGHAND
| CLONE_THREAD
|
127 CLONE_SYSVSEM
| CLONE_SETTLS
| CLONE_PARENT_SETTID
| CLONE_CHILD_CLEARTID
;
128 const BoolExpr glibc_test
= flags
== kGlibcPthreadFlags
;
130 const BoolExpr android_test
= flags
== kAndroidCloneMask
||
131 flags
== kObsoleteAndroidCloneMask
||
132 flags
== kGlibcPthreadFlags
;
134 return If(IsAndroid() ? android_test
: glibc_test
, Allow())
135 .ElseIf((flags
& (CLONE_VM
| CLONE_THREAD
)) == 0, Error(EPERM
))
136 .Else(CrashSIGSYSClone());
139 ResultExpr
RestrictPrctl() {
140 // Will need to add seccomp compositing in the future. PR_SET_PTRACER is
141 // used by breakpad but not needed anymore.
142 const Arg
<int> option(0);
143 return Switch(option
)
144 .CASES((PR_GET_NAME
, PR_SET_NAME
, PR_GET_DUMPABLE
, PR_SET_DUMPABLE
),
146 #if defined(OS_ANDROID)
147 .CASES((PR_SET_VMA
, PR_SET_TIMERSLACK_PID
), Allow())
149 .Default(CrashSIGSYSPrctl());
152 ResultExpr
RestrictIoctl() {
153 const Arg
<int> request(1);
154 return Switch(request
).CASES((TCGETS
, FIONREAD
), Allow()).Default(
158 ResultExpr
RestrictMmapFlags() {
159 // The flags you see are actually the allowed ones, and the variable is a
160 // "denied" mask because of the negation operator.
161 // Significantly, we don't permit MAP_HUGETLB, or the newer flags such as
163 // TODO(davidung), remove MAP_DENYWRITE with updated Tegra libraries.
164 const uint64_t kAllowedMask
= MAP_SHARED
| MAP_PRIVATE
| MAP_ANONYMOUS
|
165 MAP_STACK
| MAP_NORESERVE
| MAP_FIXED
|
167 const Arg
<int> flags(3);
168 return If((flags
& ~kAllowedMask
) == 0, Allow()).Else(CrashSIGSYS());
171 ResultExpr
RestrictMprotectFlags() {
172 // The flags you see are actually the allowed ones, and the variable is a
173 // "denied" mask because of the negation operator.
174 // Significantly, we don't permit weird undocumented flags such as
176 const uint64_t kAllowedMask
= PROT_READ
| PROT_WRITE
| PROT_EXEC
;
177 const Arg
<int> prot(2);
178 return If((prot
& ~kAllowedMask
) == 0, Allow()).Else(CrashSIGSYS());
181 ResultExpr
RestrictFcntlCommands() {
182 // We also restrict the flags in F_SETFL. We don't want to permit flags with
183 // a history of trouble such as O_DIRECT. The flags you see are actually the
184 // allowed ones, and the variable is a "denied" mask because of the negation
186 // Glibc overrides the kernel's O_LARGEFILE value. Account for this.
187 uint64_t kOLargeFileFlag
= O_LARGEFILE
;
188 if (IsArchitectureX86_64() || IsArchitectureI386() || IsArchitectureMips())
189 kOLargeFileFlag
= 0100000;
191 const Arg
<int> cmd(1);
192 const Arg
<long> long_arg(2);
194 const uint64_t kAllowedMask
= O_ACCMODE
| O_APPEND
| O_NONBLOCK
| O_SYNC
|
195 kOLargeFileFlag
| O_CLOEXEC
| O_NOATIME
;
207 If((long_arg
& ~kAllowedMask
) == 0, Allow()).Else(CrashSIGSYS()))
208 .Default(CrashSIGSYS());
211 #if defined(__i386__) || defined(__mips__)
212 ResultExpr
RestrictSocketcallCommand() {
213 // Unfortunately, we are unable to restrict the first parameter to
214 // socketpair(2). Whilst initially sounding bad, it's noteworthy that very
215 // few protocols actually support socketpair(2). The scary call that we're
216 // worried about, socket(2), remains blocked.
217 const Arg
<int> call(0);
219 .CASES((SYS_SOCKETPAIR
,
228 .Default(Error(EPERM
));
232 ResultExpr
RestrictKillTarget(pid_t target_pid
, int sysno
) {
236 const Arg
<pid_t
> pid(0);
237 return If(pid
== target_pid
, Allow()).Else(CrashSIGSYSKill());
240 return CrashSIGSYSKill();
243 return CrashSIGSYS();
247 ResultExpr
RestrictFutex() {
248 const uint64_t kAllowedFutexFlags
= FUTEX_PRIVATE_FLAG
| FUTEX_CLOCK_REALTIME
;
249 const Arg
<int> op(1);
250 return Switch(op
& ~kAllowedFutexFlags
)
259 .Default(CrashSIGSYSFutex());
262 ResultExpr
RestrictGetSetpriority(pid_t target_pid
) {
263 const Arg
<int> which(0);
264 const Arg
<int> who(1);
265 return If(which
== PRIO_PROCESS
,
266 If(who
== 0 || who
== target_pid
, Allow()).Else(Error(EPERM
)))
267 .Else(CrashSIGSYS());
270 ResultExpr
RestrictSchedTarget(pid_t target_pid
, int sysno
) {
272 case __NR_sched_getaffinity
:
273 case __NR_sched_getattr
:
274 case __NR_sched_getparam
:
275 case __NR_sched_getscheduler
:
276 case __NR_sched_rr_get_interval
:
277 case __NR_sched_setaffinity
:
278 case __NR_sched_setattr
:
279 case __NR_sched_setparam
:
280 case __NR_sched_setscheduler
: {
281 const Arg
<pid_t
> pid(0);
282 return If(pid
== 0 || pid
== target_pid
, Allow())
283 .Else(RewriteSchedSIGSYS());
287 return CrashSIGSYS();
291 ResultExpr
RestrictPrlimit64(pid_t target_pid
) {
292 const Arg
<pid_t
> pid(0);
293 return If(pid
== 0 || pid
== target_pid
, Allow()).Else(CrashSIGSYS());
296 ResultExpr
RestrictGetrusage() {
297 const Arg
<int> who(0);
298 return If(who
== RUSAGE_SELF
, Allow()).Else(CrashSIGSYS());
300 #endif // !defined(OS_NACL_NONSFI)
302 ResultExpr
RestrictClockID() {
303 static_assert(4 == sizeof(clockid_t
), "clockid_t is not 32bit");
304 const Arg
<clockid_t
> clockid(0);
306 #if defined(OS_CHROMEOS)
307 // Allow the special clock for Chrome OS used by Chrome tracing.
308 clockid
== base::TraceTicks::kClockSystemTrace
||
310 clockid
== CLOCK_MONOTONIC
||
311 clockid
== CLOCK_MONOTONIC_COARSE
||
312 clockid
== CLOCK_PROCESS_CPUTIME_ID
||
313 clockid
== CLOCK_REALTIME
||
314 clockid
== CLOCK_REALTIME_COARSE
||
315 clockid
== CLOCK_THREAD_CPUTIME_ID
,
316 Allow()).Else(CrashSIGSYS());
319 } // namespace sandbox.