]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/amd64/linux/linux_dummy.c
MFC r283441:
[FreeBSD/FreeBSD.git] / sys / amd64 / linux / linux_dummy.c
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 #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(ppoll);
96 DUMMY(unshare);
97 DUMMY(splice);
98 DUMMY(tee);
99 DUMMY(sync_file_range);
100 DUMMY(vmsplice);
101 DUMMY(move_pages);
102 DUMMY(utimensat);
103 DUMMY(epoll_pwait);
104 DUMMY(signalfd);
105 DUMMY(timerfd);
106 DUMMY(eventfd);
107 DUMMY(fallocate);
108 DUMMY(timerfd_settime);
109 DUMMY(timerfd_gettime);
110 DUMMY(signalfd4);
111 DUMMY(eventfd2);
112 DUMMY(inotify_init1);
113 DUMMY(preadv);
114 DUMMY(pwritev);
115 DUMMY(rt_tsigqueueinfo);
116 DUMMY(perf_event_open);
117 DUMMY(recvmmsg);
118 DUMMY(fanotify_init);
119 DUMMY(fanotify_mark);
120 DUMMY(name_to_handle_at);
121 DUMMY(open_by_handle_at);
122 DUMMY(clock_adjtime);
123 DUMMY(syncfs);
124 DUMMY(sendmmsg);
125 DUMMY(setns);
126 DUMMY(process_vm_readv);
127 DUMMY(process_vm_writev);
128 DUMMY(kcmp);
129 DUMMY(finit_module);
130
131 #define DUMMY_XATTR(s)                                          \
132 int                                                             \
133 linux_ ## s ## xattr(                                           \
134     struct thread *td, struct linux_ ## s ## xattr_args *arg)   \
135 {                                                               \
136                                                                 \
137         return (ENOATTR);                                       \
138 }
139 DUMMY_XATTR(set);
140 DUMMY_XATTR(lset);
141 DUMMY_XATTR(fset);
142 DUMMY_XATTR(get);
143 DUMMY_XATTR(lget);
144 DUMMY_XATTR(fget);
145 DUMMY_XATTR(list);
146 DUMMY_XATTR(llist);
147 DUMMY_XATTR(flist);
148 DUMMY_XATTR(remove);
149 DUMMY_XATTR(lremove);
150 DUMMY_XATTR(fremove);