1 /*- 2 * Copyright (c) 2013 Dmitry Chagin 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer 10 * in this position and unchanged. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 */ 26 27 #include <sys/cdefs.h> 28 __FBSDID("$FreeBSD$"); 29 30 #include "opt_compat.h" 31 32 #include <sys/param.h> 33 #include <sys/kernel.h> 34 #include <sys/sdt.h> 35 #include <sys/systm.h> 36 #include <sys/proc.h> 37 38 #include <amd64/linux/linux.h> 39 #include <amd64/linux/linux_proto.h> 40 #include <compat/linux/linux_dtrace.h> 41 #include <compat/linux/linux_util.h> 42 43 /* DTrace init */ 44 LIN_SDT_PROVIDER_DECLARE(LINUX_DTRACE); 45 46 DUMMY(mincore); 47 DUMMY(sendfile); 48 DUMMY(syslog); 49 DUMMY(setfsuid); 50 DUMMY(setfsgid); 51 DUMMY(sysfs); 52 DUMMY(vhangup); 53 DUMMY(pivot_root); 54 DUMMY(adjtimex); 55 DUMMY(swapoff); 56 DUMMY(create_module); 57 DUMMY(init_module); 58 DUMMY(delete_module); 59 DUMMY(get_kernel_syms); 60 DUMMY(query_module); 61 DUMMY(quotactl); 62 DUMMY(nfsservctl); 63 DUMMY(getpmsg); 64 DUMMY(putpmsg); 65 DUMMY(afs_syscall); 66 DUMMY(tuxcall); 67 DUMMY(security); 68 DUMMY(set_thread_area); 69 DUMMY(lookup_dcookie); 70 DUMMY(epoll_ctl_old); 71 DUMMY(epoll_wait_old); 72 DUMMY(remap_file_pages); 73 DUMMY(semtimedop); 74 DUMMY(mbind); 75 DUMMY(get_mempolicy); 76 DUMMY(set_mempolicy); 77 DUMMY(mq_open); 78 DUMMY(mq_unlink); 79 DUMMY(mq_timedsend); 80 DUMMY(mq_timedreceive); 81 DUMMY(mq_notify); 82 DUMMY(mq_getsetattr); 83 DUMMY(kexec_load); 84 /* linux 2.6.11: */ 85 DUMMY(add_key); 86 DUMMY(request_key); 87 DUMMY(keyctl); 88 /* linux 2.6.13: */ 89 DUMMY(ioprio_set); 90 DUMMY(ioprio_get); 91 DUMMY(inotify_init); 92 DUMMY(inotify_add_watch); 93 DUMMY(inotify_rm_watch); 94 /* linux 2.6.16: */ 95 DUMMY(migrate_pages); 96 DUMMY(unshare); 97 /* linux 2.6.17: */ 98 DUMMY(splice); 99 DUMMY(tee); 100 DUMMY(sync_file_range); 101 DUMMY(vmsplice); 102 /* linux 2.6.18: */ 103 DUMMY(move_pages); 104 /* linux 2.6.22: */ 105 DUMMY(signalfd); 106 /* linux 2.6.27: */ 107 DUMMY(signalfd4); 108 DUMMY(inotify_init1); 109 /* linux 2.6.31: */ 110 DUMMY(perf_event_open); 111 /* linux 2.6.38: */ 112 DUMMY(fanotify_init); 113 DUMMY(fanotify_mark); 114 /* linux 2.6.39: */ 115 DUMMY(name_to_handle_at); 116 DUMMY(open_by_handle_at); 117 DUMMY(clock_adjtime); 118 /* linux 3.0: */ 119 DUMMY(setns); 120 DUMMY(getcpu); 121 /* linux 3.2: */ 122 DUMMY(process_vm_readv); 123 DUMMY(process_vm_writev); 124 /* linux 3.5: */ 125 DUMMY(kcmp); 126 /* linux 3.8: */ 127 DUMMY(finit_module); 128 DUMMY(sched_setattr); 129 DUMMY(sched_getattr); 130 /* linux 3.14: */ 131 DUMMY(renameat2); 132 /* linux 3.15: */ 133 DUMMY(seccomp); 134 DUMMY(getrandom); 135 DUMMY(memfd_create); 136 DUMMY(kexec_file_load); 137 /* linux 3.18: */ 138 DUMMY(bpf); 139 /* linux 3.19: */ 140 DUMMY(execveat); 141 /* linux 4.2: */ 142 DUMMY(userfaultfd); 143 /* linux 4.3: */ 144 DUMMY(membarrier); 145 /* linux 4.4: */ 146 DUMMY(mlock2); 147 /* linux 4.5: */ 148 DUMMY(copy_file_range); 149 /* linux 4.6: */ 150 DUMMY(preadv2); 151 DUMMY(pwritev2); 152 /* linux 4.8: */ 153 DUMMY(pkey_mprotect); 154 DUMMY(pkey_alloc); 155 DUMMY(pkey_free); 156 157 #define DUMMY_XATTR(s) \ 158 int \ 159 linux_ ## s ## xattr( \ 160 struct thread *td, struct linux_ ## s ## xattr_args *arg) \ 161 { \ 162 \ 163 return (ENOATTR); \ 164 } 165 DUMMY_XATTR(set); 166 DUMMY_XATTR(lset); 167 DUMMY_XATTR(fset); 168 DUMMY_XATTR(get); 169 DUMMY_XATTR(lget); 170 DUMMY_XATTR(fget); 171 DUMMY_XATTR(list); 172 DUMMY_XATTR(llist); 173 DUMMY_XATTR(flist); 174 DUMMY_XATTR(remove); 175 DUMMY_XATTR(lremove); 176 DUMMY_XATTR(fremove); 177