]> git.cworth.org Git - fips/blob - eglwrap.c
dispatch: Fix dispatcher to perform lookup for the GetProcAddress functions
[fips] / eglwrap.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 #include "fips.h"
23
24 #include "fips-dispatch.h"
25
26 #include <EGL/egl.h>
27
28 #include "eglwrap.h"
29 #include "dlwrap.h"
30 #include "metrics.h"
31
32 /* Defer to the real 'function' (from libEGL.so.1) to do the real work.
33  * The symbol is looked up once and cached in a static variable for
34  * future uses.
35  */
36 #define EGLWRAP_DEFER(function,...) do {                        \
37         static typeof(&function) real_ ## function;             \
38         if (! real_ ## function)                                \
39                 real_ ## function = eglwrap_lookup (#function); \
40         real_ ## function(__VA_ARGS__);                         \
41 } while (0);
42
43 /* As EGLWRAP_DEFER, but also set 'ret' to the return value */
44 #define EGLWRAP_DEFER_WITH_RETURN(ret, function,...) do {       \
45         static typeof(&function) real_ ## function;             \
46         if (! real_ ## function)                                \
47                 real_ ## function = eglwrap_lookup (#function); \
48         (ret) = real_ ## function(__VA_ARGS__);                 \
49 } while (0);
50
51
52 /* Note: We only need to perform a lookup in libEGL.so.1, (not
53  * libGLESv2.so.2). This is because the functions we wrap, (currently
54  * eglSwapBufers, eglGetProcAddress, and eglMakeCurrent), exist only
55  * in libEGL.so.1.
56  */
57 void *
58 eglwrap_lookup (char *name)
59 {
60         const char *libegl_filename = "libEGL.so.1";
61         static void *libegl_handle = NULL;
62
63         if (! libegl_handle) {
64                 libegl_handle = dlwrap_real_dlopen (libegl_filename, RTLD_NOW | RTLD_DEEPBIND);
65                 if (! libegl_handle) {
66                         fprintf (stderr, "Error: Failed to dlopen %s\n",
67                                  libegl_filename);
68                         exit (1);
69                 }
70         }
71
72         return dlwrap_real_dlsym (libegl_handle, name);
73 }
74
75 EGLBoolean
76 eglSwapBuffers (EGLDisplay dpy, EGLSurface surface)
77 {
78         EGLBoolean ret;
79
80         EGLWRAP_DEFER_WITH_RETURN (ret, eglSwapBuffers, dpy, surface);
81
82         metrics_counter_stop ();
83
84         metrics_end_frame ();
85
86         metrics_counter_start ();
87
88         return ret;
89 }
90
91 void (*eglGetProcAddress (char const *func))(void)
92 {
93         void *ret;
94
95         /* If our library has this symbol, that's what we want to give. */
96         ret = dlwrap_real_dlsym (NULL, (const char *) func);
97         if (ret)
98                 return ret;
99
100         /* Otherwise, just defer to the real eglGetProcAddress */
101         EGLWRAP_DEFER_WITH_RETURN (ret, eglGetProcAddress, func);
102
103         return ret;
104 }
105
106 EGLBoolean
107 eglMakeCurrent (EGLDisplay display, EGLSurface draw, EGLSurface read,
108                 EGLContext context)
109 {
110         EGLBoolean ret;
111
112         metrics_info_fini ();
113
114         fips_dispatch_init (FIPS_API_EGL);
115
116         EGLWRAP_DEFER_WITH_RETURN (ret, eglMakeCurrent, display, draw, read, context);
117
118         metrics_info_init ();
119
120         metrics_set_current_op (METRICS_OP_SHADER + 0);
121         metrics_counter_start ();
122
123         return ret;
124 }