Home | History | Annotate | Download | only in seccomp_policy
      1 # Organized by frequency of systemcall - in descending order for
      2 # best performance.
      3 ioctl: 1
      4 futex: 1
      5 prctl: 1
      6 write: 1
      7 getpriority: 1
      8 close: 1
      9 dup: 1
     10 munmap: 1
     11 mmap: 1
     12 madvise: 1
     13 openat: 1
     14 clock_gettime: 1
     15 writev: 1
     16 brk: 1
     17 mprotect: 1
     18 read: 1
     19 lseek: 1
     20 clone: 1
     21 getuid: 1
     22 setpriority: 1
     23 sigaltstack: 1
     24 newfstatat: 1
     25 restart_syscall: 1
     26 exit: 1
     27 exit_group: 1
     28 rt_sigreturn: 1
     29 faccessat: 1
     30 sched_setscheduler: 1
     31 getrlimit: 1
     32 nanosleep: 1
     33 
     34 # for FileSource
     35 readlinkat: 1
     36 
     37 # for attaching to debuggerd on process crash
     38 tgkill: 1
     39 socket: arg0 == 1
     40 connect: 1
     41 fcntl: 1
     42 rt_sigprocmask: 1
     43 rt_sigaction: 1
     44 rt_tgsigqueueinfo: 1
     45 geteuid: 1
     46 getgid: 1
     47 getegid: 1
     48 getgroups: 1
     49 getdents64: 1
     50 pipe2: 1
     51 ppoll: 1
     52 
     53 # Required by AddressSanitizer
     54 gettid: 1
     55 sched_yield: 1
     56 getpid: 1
     57 gettid: 1
     58