]> git.cworth.org Git - fips/blob - dlwrap.c
Add a simple fips.h file.
[fips] / dlwrap.c
1 /* Copyright © 2013, Intel Corporation
2  *
3  * Permission is hereby granted, free of charge, to any person obtaining a copy
4  * of this software and associated documentation files (the "Software"), to deal
5  * in the Software without restriction, including without limitation the rights
6  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7  * copies of the Software, and to permit persons to whom the Software is
8  * furnished to do so, subject to the following conditions:
9  *
10  * The above copyright notice and this permission notice shall be included in
11  * all copies or substantial portions of the Software.
12  *
13  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19  * THE SOFTWARE.
20  */
21
22 /* dladdr is a glibc extension */
23 #define _GNU_SOURCE
24 #include <dlfcn.h>
25
26 #include "fips.h"
27
28 #include "dlwrap.h"
29
30 void *libfips_handle;
31
32 typedef void * (* fips_dlopen_t)(const char * filename, int flag);
33 typedef void * (* fips_dlsym_t)(void *handle, const char *symbol);
34
35 /* Many (most?) OpenGL programs dlopen libGL.so.1 rather than linking
36  * against it directly, which means they would not be seeing our
37  * wrapped GL symbols via LD_PRELOAD. So we catch the dlopen in a
38  * wrapper here and redirect it to our library.
39  */
40 void *
41 dlopen (const char *filename, int flag)
42 {
43         Dl_info info;
44
45         /* Not libGL, so just return real dlopen */
46         if (STRNCMP_LITERAL (filename, "libGL.so"))
47                 return dlwrap_real_dlopen (filename, flag);
48
49         /* Redirect all dlopens to libGL to our own wrapper library.
50          * We find our own filename by looking up this very function
51          * (that is, this "dlopen"), with dladdr).*/
52         if (dladdr (dlopen, &info)) {
53                 libfips_handle = dlwrap_real_dlopen (info.dli_fname, flag);
54                 return libfips_handle;
55         } else {
56                 fprintf (stderr, "Error: Failed to redirect dlopen of %s:\n",
57                          filename);
58                 exit (1);
59         }
60 }
61
62 void *
63 dlwrap_real_dlopen (const char *filename, int flag)
64 {
65         fips_dlopen_t real_dlopen = NULL;
66
67         if (! real_dlopen) {
68                 real_dlopen = (fips_dlopen_t) dlwrap_real_dlsym (RTLD_NEXT, "dlopen");
69                 if (! real_dlopen) {
70                         fprintf (stderr, "Error: Failed to find symbol for dlopen.\n");
71                         exit (1);
72                 }
73         }
74
75         return real_dlopen (filename, flag);
76 }
77
78 /* Since we redirect a dlopen of libGL.so to libfips we need to ensure
79  * that dlysm succeeds for all functions that might be defined in the
80  * real, underlying libGL library. But we're far too lazy to implement
81  * wrappers for function that would simply pass-through, so instead we
82  * also wrap dlysm and arrange for it to pass things through with
83  * RTLD_next if libfips does not have the function desired.
84 */
85 void *
86 dlsym (void *handle, const char *name)
87 {
88         static void *libgl_handle = NULL;
89         static void *symbol;
90
91         /* All gl symbols are preferentially looked up in libfips. */
92         if (STRNCMP_LITERAL (name, "gl") == 0) {
93                 symbol = dlwrap_real_dlsym (libfips_handle, name);
94                 if (symbol)
95                         return symbol;
96         }
97
98         /* Failing that, anything specifically requested from the
99          * libfips library should be redirected to a real GL
100          * library. */
101         if (handle == libfips_handle) {
102                 if (! libgl_handle)
103                         libgl_handle = dlwrap_real_dlopen ("libGL.so.1", RTLD_LAZY);
104                 return dlwrap_real_dlsym (libgl_handle, name);
105         }
106
107         /* And anything else is some unrelated dlsym. Just pass it through. */
108         return dlwrap_real_dlsym (handle, name);
109 }
110
111 void *
112 dlwrap_real_dlsym (void *handle, const char *name)
113 {
114         static fips_dlsym_t real_dlsym = NULL;
115
116         if (! real_dlsym) {
117                 /* FIXME: This brute-force, hard-coded searching for a versioned
118                  * symbol is really ugly. The only reason I'm doing this is because
119                  * I need some way to lookup the "dlsym" function in libdl, but
120                  * I can't use 'dlsym' to do it. So dlvsym works, but forces me
121                  * to guess what the right version is.
122                  *
123                  * Potential fixes here:
124                  *
125                  *   1. Use libelf to actually inspect libdl.so and
126                  *      find the right version, (finding the right
127                  *      libdl.so can be made easier with
128                  *      dl_iterate_phdr).
129                  *
130                  *   2. Use libelf to find the offset of the 'dlsym'
131                  *      symbol within libdl.so, (and then add this to
132                  *      the base address at which libdl.so is loaded
133                  *      as reported by dl_iterate_phdr).
134                  *
135                  * In the meantime, I'll just keep augmenting this
136                  * hard-coded version list as people report bugs. */
137                 const char *version[] = {
138                         "GLIBC_2.2.5",
139                         "GLIBC_2.0"
140                 };
141                 int num_versions = sizeof(version) / sizeof(version[0]);
142                 int i;
143                 for (i = 0; i < num_versions; i++) {
144                         real_dlsym = (fips_dlsym_t) dlvsym (RTLD_NEXT, "dlsym",
145                                                             version[i]);
146                         if (real_dlsym)
147                                 break;
148                 }
149                 if (i == num_versions) {
150                         fprintf (stderr, "Internal error: Failed to find real dlsym\n");
151                         fprintf (stderr,
152 "This may be a simple matter of fips not knowing about the version of GLIBC that\n"
153 "your program is using. Current known versions are:\n\n\t");
154                         for (i = 0; i < num_versions; i++)
155                                 fprintf (stderr, "%s ", version[i]);
156                         fprintf(stderr,
157 "\n\nYou can inspect your version by first finding libdl.so.2:\n"
158 "\n"
159 "\tldd <your-program> | grep libdl.so\n"
160 "\n"
161 "And then inspecting the version attached to the dlsym symbol:\n"
162 "\n"
163 "\treadelf -s /path/to/libdl.so.2 | grep dlsym\n"
164 "\n"
165 "And finally, adding the version to dlwrap.c:dlwrap_real_dlsym.\n");
166
167                         exit (1);
168                 }
169         }
170
171         return real_dlsym (handle, name);
172 }