blob: 68206659cdc61e140a378869fbe13bbc89cb1d38 [file] [log] [blame]
Chirantan Ekbote41d5b5b2017-08-23 11:20:36 -07001# Copyright 2017 The Chromium OS 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.
4
Stephen Barber5e77e882017-08-07 17:13:38 -07005close: 1
Dylan Reidd37aa9f2017-09-26 13:49:42 -07006dup: 1
7dup2: 1
Stephen Barber5e77e882017-08-07 17:13:38 -07008exit_group: 1
9futex: 1
10# Disallow mmap with PROT_EXEC set. The syntax here doesn't allow bit
11# negation, thus the manually negated mask constant.
12mmap: arg2 in 0xfffffffb
13mprotect: arg2 in 0xfffffffb
14munmap: 1
15poll: 1
16read: 1
17recvfrom: 1
18sched_getaffinity: 1
19set_robust_list: 1
20sigaltstack: 1
21# Disallow clone's other than new threads.
22# arg0 is flags. Because kernel.
23clone: arg0 & 0x00010000
24write: 1
Zach Reizner1f77a0d2017-09-04 15:59:08 -070025getpid: 1
Stephen Barberce374792017-10-29 23:13:48 -070026# Allow PR_SET_NAME only.
27prctl: arg0 == 15
Stephen Barber8b0d12c2017-11-01 19:05:29 -070028restart_syscall: 1