]> ruderich.org/simon Gitweb - coloredstderr/coloredstderr.git/blob - src/ldpreload.h
update copyright year
[coloredstderr/coloredstderr.git] / src / ldpreload.h
1 /*
2  * Helper header for LD_PRELOAD related headers macros. Must be loaded _first_
3  * (for RTLD_NEXT)!
4  *
5  * Copyright (C) 2012-2015  Simon Ruderich
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 #ifndef LDPRELOAD_H
22 #define LDPRELOAD_H 1
23
24 /* Necessary for RTLD_NEXT. */
25 #define _GNU_SOURCE
26
27 /* abort() */
28 #include <stdlib.h>
29 /* dlsym() */
30 #include <dlfcn.h>
31 #include <errno.h>
32
33 static void *dlsym_function(char const *name) noinline;
34 /* Load the function name using dlsym() and return it. Terminate program on
35  * failure. Split in function and macro to reduce code inserted into the
36  * function using the macro. */
37 static void *dlsym_function(char const *name) {
38     void *result;
39
40     int saved_errno = errno; /* just in case */
41
42     /* Clear possibly existing error. */
43     dlerror();
44     result = dlsym(RTLD_NEXT, name);
45     /* Not much we can do. Most likely the other output functions failed to
46      * load too. */
47     if (dlerror() != NULL) {
48         abort();
49     }
50
51     errno = saved_errno;
52     return result;
53 }
54
55 #define DLSYM_FUNCTION(pointer, name) \
56     if (unlikely(!(pointer))) { \
57         *(void **) (&(pointer)) = dlsym_function(name); \
58     }
59
60 #endif