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 gettimeofday: 1
     17 recv: 1
     18 sendmsg: 1
     19 # open: return EPERM
     20 open: return 1
     21 mmap2: 1
     22 mprotect: 1
     23 close: 1
     24 fstat64: 1
     25 read: 1
     26 stat64: 1
     27 recvfrom: 1
     28 sendto: 1
     29 # socket: arg0 == PF_FILE || arg0 == PF_INET || arg0 == PF_NETLINK
     30 socket: arg0 == 1 || arg0 == 2 || arg0 == 16
     31 futex: 1
     32 brk: 1
     33 access: 1
     34 rt_sigaction: 1
     35 getsockname: 1
     36 munmap: 1
     37 # ioctl: arg1 == SIOCGIFNAME || arg1 == SIOCGIFNETMASK
     38 ioctl: arg1 == 0x8910 || arg1 == 0x891b
     39 bind: 1
     40 restart_syscall: 1
     41 exit: 1
     42 exit_group: 1
     43 rt_sigreturn: 1
     44 uname: 1
     45 connect: 1
     46 rt_sigprocmask: 1
     47 send: 1
     48 ARM_set_tls: 1
     49 _llseek: 1
     50 ugetrlimit: 1
     51 set_tid_address: 1
     52 set_robust_list: 1
     53 fcntl64: 1
     54 # execve: return EPERM
     55 execve: return 1
     56