]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/sys/interposing_table.c
zfs: merge openzfs/zfs@0ee9b0239
[FreeBSD/FreeBSD.git] / lib / libc / sys / interposing_table.c
1 /*
2  * Copyright (c) 2014 The FreeBSD Foundation.
3  *
4  * Portions of this software were developed by Konstantin Belousov
5  * under sponsorship from the FreeBSD Foundation.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice(s), this list of conditions and the following disclaimer as
12  *    the first lines of this file unmodified other than the possible
13  *    addition of one or more copyright notices.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice(s), this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the
17  *    distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY
20  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE
23  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
26  * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
28  * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
29  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31
32 #include <sys/cdefs.h>
33 #include <sys/types.h>
34 #include "libc_private.h"
35
36 #define SLOT(a, b) \
37         [INTERPOS_##a] = (interpos_func_t)b
38 interpos_func_t __libc_interposing[INTERPOS_MAX] = {
39         SLOT(accept, __sys_accept),
40         SLOT(accept4, __sys_accept4),
41         SLOT(aio_suspend, __sys_aio_suspend),
42         SLOT(close, __sys_close),
43         SLOT(connect, __sys_connect),
44         SLOT(fcntl, __sys_fcntl),
45         SLOT(fsync, __sys_fsync),
46         SLOT(fork, __sys_fork),
47         SLOT(msync, __sys_msync),
48         SLOT(nanosleep, __sys_nanosleep),
49         SLOT(openat, __sys_openat),
50         SLOT(poll, __sys_poll),
51         SLOT(pselect, __sys_pselect),
52         SLOT(read, __sys_read),
53         SLOT(readv, __sys_readv),
54         SLOT(recvfrom, __sys_recvfrom),
55         SLOT(recvmsg, __sys_recvmsg),
56         SLOT(select, __sys_select),
57         SLOT(sendmsg, __sys_sendmsg),
58         SLOT(sendto, __sys_sendto),
59         SLOT(setcontext, __sys_setcontext),
60         SLOT(sigaction, __sys_sigaction),
61         SLOT(sigprocmask, __sys_sigprocmask),
62         SLOT(sigsuspend, __sys_sigsuspend),
63         SLOT(sigwait, __libc_sigwait),
64         SLOT(sigtimedwait, __sys_sigtimedwait),
65         SLOT(sigwaitinfo, __sys_sigwaitinfo),
66         SLOT(swapcontext, __sys_swapcontext),
67         SLOT(system, __libc_system),
68         SLOT(tcdrain, __libc_tcdrain),
69         SLOT(wait4, __sys_wait4),
70         SLOT(write, __sys_write),
71         SLOT(writev, __sys_writev),
72         SLOT(_pthread_mutex_init_calloc_cb, _pthread_mutex_init_calloc_cb_stub),
73         SLOT(spinlock, __libc_spinlock_stub),
74         SLOT(spinunlock, __libc_spinunlock_stub),
75         SLOT(kevent, __sys_kevent),
76         SLOT(wait6, __sys_wait6),
77         SLOT(ppoll, __sys_ppoll),
78         SLOT(map_stacks_exec, __libc_map_stacks_exec),
79         SLOT(fdatasync, __sys_fdatasync),
80         SLOT(clock_nanosleep, __sys_clock_nanosleep),
81         SLOT(distribute_static_tls, __libc_distribute_static_tls),
82         SLOT(pdfork, __sys_pdfork),
83 };
84 #undef SLOT
85
86 interpos_func_t *
87 __libc_interposing_slot(int interposno)
88 {
89
90         return (&__libc_interposing[interposno]);
91 }