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: stable/10/sys/amd64/linux/linux_dummy.c 293592 2016-01-09 17:54:37Z dchagin $"); 29 30 #include "opt_compat.h" 31 #include "opt_kdtrace.h" 32 33 #include <sys/param.h> 34 #include <sys/kernel.h> 35 #include <sys/sdt.h> 36 #include <sys/systm.h> 37 #include <sys/proc.h> 38 39 #include <amd64/linux/linux.h> 40 #include <amd64/linux/linux_proto.h> 41 #include <compat/linux/linux_dtrace.h> 42 #include <compat/linux/linux_util.h> 43 44 /* DTrace init */ 45 LIN_SDT_PROVIDER_DECLARE(LINUX_DTRACE); 46 47 DUMMY(mincore); 48 DUMMY(sendfile); 49 DUMMY(ptrace); 50 DUMMY(syslog); 51 DUMMY(setfsuid); 52 DUMMY(setfsgid); 53 DUMMY(sysfs); 54 DUMMY(vhangup); 55 DUMMY(pivot_root); 56 DUMMY(adjtimex); 57 DUMMY(swapoff); 58 DUMMY(create_module); 59 DUMMY(init_module); 60 DUMMY(delete_module); 61 DUMMY(get_kernel_syms); 62 DUMMY(query_module); 63 DUMMY(quotactl); 64 DUMMY(nfsservctl); 65 DUMMY(getpmsg); 66 DUMMY(putpmsg); 67 DUMMY(afs_syscall); 68 DUMMY(tuxcall); 69 DUMMY(security); 70 DUMMY(set_thread_area); 71 DUMMY(lookup_dcookie); 72 DUMMY(epoll_ctl_old); 73 DUMMY(epoll_wait_old); 74 DUMMY(remap_file_pages); 75 DUMMY(semtimedop); 76 DUMMY(mbind); 77 DUMMY(get_mempolicy); 78 DUMMY(set_mempolicy); 79 DUMMY(mq_open); 80 DUMMY(mq_unlink); 81 DUMMY(mq_timedsend); 82 DUMMY(mq_timedreceive); 83 DUMMY(mq_notify); 84 DUMMY(mq_getsetattr); 85 DUMMY(kexec_load); 86 DUMMY(add_key); 87 DUMMY(request_key); 88 DUMMY(keyctl); 89 DUMMY(ioprio_set); 90 DUMMY(ioprio_get); 91 DUMMY(inotify_init); 92 DUMMY(inotify_add_watch); 93 DUMMY(inotify_rm_watch); 94 DUMMY(migrate_pages); 95 DUMMY(unshare); 96 DUMMY(splice); 97 DUMMY(tee); 98 DUMMY(sync_file_range); 99 DUMMY(vmsplice); 100 DUMMY(move_pages); 101 DUMMY(signalfd); 102 DUMMY(timerfd); 103 DUMMY(timerfd_settime); 104 DUMMY(timerfd_gettime); 105 DUMMY(signalfd4); 106 DUMMY(inotify_init1); 107 DUMMY(preadv); 108 DUMMY(pwritev); 109 DUMMY(rt_tsigqueueinfo); 110 DUMMY(perf_event_open); 111 DUMMY(fanotify_init); 112 DUMMY(fanotify_mark); 113 DUMMY(name_to_handle_at); 114 DUMMY(open_by_handle_at); 115 DUMMY(clock_adjtime); 116 DUMMY(setns); 117 DUMMY(process_vm_readv); 118 DUMMY(process_vm_writev); 119 DUMMY(kcmp); 120 DUMMY(finit_module); 121 122 #define DUMMY_XATTR(s) \ 123 int \ 124 linux_ ## s ## xattr( \ 125 struct thread *td, struct linux_ ## s ## xattr_args *arg) \ 126 { \ 127 \ 128 return (ENOATTR); \ 129 } 130 DUMMY_XATTR(set); 131 DUMMY_XATTR(lset); 132 DUMMY_XATTR(fset); 133 DUMMY_XATTR(get); 134 DUMMY_XATTR(lget); 135 DUMMY_XATTR(fget); 136 DUMMY_XATTR(list); 137 DUMMY_XATTR(llist); 138 DUMMY_XATTR(flist); 139 DUMMY_XATTR(remove); 140 DUMMY_XATTR(lremove); 141 DUMMY_XATTR(fremove); 142