blob: a440a0ae162737d528cfb8f3d65738e5a7b9a53a [file] [log] [blame]
# Copyright 2018 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# This file lists out the seccomp policy for allowed syscalls on arc-adbd.
# mmap should only be allowed in READ mode.
mmap: arg2 in 0xfffffffb || arg2 in 0xfffffffd
stat: 1
# mprotect should only be allowed in READ mode.
mprotect: arg2 in 0xfffffffb || arg2 in 0xfffffffd
close: 1
open: 1
openat: 1
read: 1
fstat: 1
write: 1
creat: 1
chown: 1
access: 1
# Mount should only be called with MS_BIND or MS_NOSUID|MS_NODEV|MS_NOEXEC.
mount: arg3 == 0x1000 || arg3 == 0xe
rename: 1
# mknod should only be used to create FIFOs.
mknod: arg1 in 0x11ff
brk: 1
mkdir: 1
lstat: 1
unlink: 1
symlink: 1
rt_sigaction: 1
getdents: 1
restart_syscall: 1
exit: 1
exit_group: 1
rt_sigreturn: 1
rt_sigprocmask: 1
munmap: 1
tgkill: 1
sendto: 1
gettid:1
futex:1
# For modprobe(8)
clone: 1
execve: 1
wait4: 1
set_robust_list: 1
dup2: 1
getrlimit: 1
getdents64: 1
prctl: 1
arch_prctl: 1
uname: 1
newfstatat: 1
fcntl: 1
lseek: 1
finit_module: 1
# For brillo::kLogToStderrIfTty. isatty(0) calls ioctl(0, TCGETS, *).
ioctl: arg0 == 0 && arg1 == TCGETS
getpid: 1
prlimit64: arg2 == 0 && arg3 != 0
# For syslog /dev/log
socket: arg0 == AF_UNIX
connect: 1