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 DUMMY(timerfd_create); 107 /* linux 2.6.25: */ 108 DUMMY(timerfd_settime); 109 DUMMY(timerfd_gettime); 110 /* linux 2.6.27: */ 111 DUMMY(signalfd4); 112 DUMMY(inotify_init1); 113 /* linux 2.6.30: */ 114 DUMMY(preadv); 115 DUMMY(pwritev); 116 /* linux 2.6.31: */ 117 DUMMY(perf_event_open); 118 /* linux 2.6.38: */ 119 DUMMY(fanotify_init); 120 DUMMY(fanotify_mark); 121 /* linux 2.6.39: */ 122 DUMMY(name_to_handle_at); 123 DUMMY(open_by_handle_at); 124 DUMMY(clock_adjtime); 125 /* linux 3.0: */ 126 DUMMY(setns); 127 DUMMY(getcpu); 128 /* linux 3.2: */ 129 DUMMY(process_vm_readv); 130 DUMMY(process_vm_writev); 131 /* linux 3.5: */ 132 DUMMY(kcmp); 133 /* linux 3.8: */ 134 DUMMY(finit_module); 135 DUMMY(sched_setattr); 136 DUMMY(sched_getattr); 137 /* linux 3.14: */ 138 DUMMY(renameat2); 139 /* linux 3.15: */ 140 DUMMY(seccomp); 141 DUMMY(getrandom); 142 DUMMY(memfd_create); 143 DUMMY(kexec_file_load); 144 /* linux 3.18: */ 145 DUMMY(bpf); 146 /* linux 3.19: */ 147 DUMMY(execveat); 148 /* linux 4.2: */ 149 DUMMY(userfaultfd); 150 /* linux 4.3: */ 151 DUMMY(membarrier); 152 /* linux 4.4: */ 153 DUMMY(mlock2); 154 /* linux 4.5: */ 155 DUMMY(copy_file_range); 156 /* linux 4.6: */ 157 DUMMY(preadv2); 158 DUMMY(pwritev2); 159 /* linux 4.8: */ 160 DUMMY(pkey_mprotect); 161 DUMMY(pkey_alloc); 162 DUMMY(pkey_free); 163 164 #define DUMMY_XATTR(s) \ 165 int \ 166 linux_ ## s ## xattr( \ 167 struct thread *td, struct linux_ ## s ## xattr_args *arg) \ 168 { \ 169 \ 170 return (ENOATTR); \ 171 } 172 DUMMY_XATTR(set); 173 DUMMY_XATTR(lset); 174 DUMMY_XATTR(fset); 175 DUMMY_XATTR(get); 176 DUMMY_XATTR(lget); 177 DUMMY_XATTR(fget); 178 DUMMY_XATTR(list); 179 DUMMY_XATTR(llist); 180 DUMMY_XATTR(flist); 181 DUMMY_XATTR(remove); 182 DUMMY_XATTR(lremove); 183 DUMMY_XATTR(fremove); 184