Home | History | Annotate | Download | only in shims
      1 #
      2 # Copyright (C) 2013 The Android Open Source Project
      3 #
      4 # Licensed under the Apache License, Version 2.0 (the "License");
      5 # you may not use this file except in compliance with the License.
      6 # You may obtain a copy of the License at
      7 #
      8 #      http://www.apache.org/licenses/LICENSE-2.0
      9 #
     10 # Unless required by applicable law or agreed to in writing, software
     11 # distributed under the License is distributed on an "AS IS" BASIS,
     12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13 # See the License for the specific language governing permissions and
     14 # limitations under the License.
     15 #
     16 socketcall: 1
     17 time: 1
     18 mmap2: 1
     19 # open: return EPERM
     20 open: return 1
     21 mprotect: 1
     22 close: 1
     23 fstat64: 1
     24 read: 1
     25 stat64: 1
     26 futex: 1
     27 brk: 1
     28 access: 1
     29 rt_sigaction: 1
     30 munmap: 1
     31 # ioctl: arg1 == SIOCGIFNAME || arg1 == SIOCGIFNETMASK
     32 ioctl: arg1 == 0x8910 || arg1 == 0x891b
     33 restart_syscall: 1
     34 exit: 1
     35 exit_group: 1
     36 rt_sigreturn: 1
     37 uname: 1
     38 rt_sigprocmask: 1
     39 _llseek: 1
     40 getrlimit: 1
     41 set_tid_address: 1
     42 set_robust_list: 1
     43 set_thread_area: 1
     44 fcntl64: 1
     45 # execve: return EPERM
     46 execve: return 1
     47