]> git.cworth.org Git - apitrace/blob - glxtrace.py
apitrace diff-images: Print one line for each file being compared.
[apitrace] / glxtrace.py
1 ##########################################################################
2 #
3 # Copyright 2011 Jose Fonseca
4 # Copyright 2008-2010 VMware, Inc.
5 # All Rights Reserved.
6 #
7 # Permission is hereby granted, free of charge, to any person obtaining a copy
8 # of this software and associated documentation files (the "Software"), to deal
9 # in the Software without restriction, including without limitation the rights
10 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 # copies of the Software, and to permit persons to whom the Software is
12 # furnished to do so, subject to the following conditions:
13 #
14 # The above copyright notice and this permission notice shall be included in
15 # all copies or substantial portions of the Software.
16 #
17 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 # THE SOFTWARE.
24 #
25 ##########################################################################/
26
27
28 """GLX tracing generator."""
29
30
31 from specs.stdapi import API
32 from specs.glapi import glapi
33 from specs.glxapi import glxapi
34 from gltrace import GlTracer
35 from dispatch import function_pointer_type, function_pointer_value
36
37
38 class GlxTracer(GlTracer):
39
40     def isFunctionPublic(self, function):
41         # The symbols visible in libGL.so can vary, so expose them all
42         return True
43
44     def wrapRet(self, function, instance):
45         GlTracer.wrapRet(self, function, instance)
46
47         if function.name in ("glXGetProcAddress", "glXGetProcAddressARB"):
48             print '    %s = __unwrap_proc_addr(procName, %s);' % (instance, instance)
49
50
51 if __name__ == '__main__':
52     print
53     print '#include <stdlib.h>'
54     print '#include <string.h>'
55     print
56     print '#ifndef _GNU_SOURCE'
57     print '#define _GNU_SOURCE // for dladdr'
58     print '#endif'
59     print '#include <dlfcn.h>'
60     print
61     print '#include "trace_writer_local.hpp"'
62     print
63     print '// To validate our prototypes'
64     print '#define GL_GLEXT_PROTOTYPES'
65     print '#define GLX_GLXEXT_PROTOTYPES'
66     print
67     print '#include "glproc.hpp"'
68     print '#include "glsize.hpp"'
69     print
70     print 'static __GLXextFuncPtr __unwrap_proc_addr(const GLubyte * procName, __GLXextFuncPtr procPtr);'
71     print
72
73     api = API()
74     api.addApi(glxapi)
75     api.addApi(glapi)
76     tracer = GlxTracer()
77     tracer.trace_api(api)
78
79     print 'static __GLXextFuncPtr __unwrap_proc_addr(const GLubyte * procName, __GLXextFuncPtr procPtr) {'
80     print '    if (!procPtr) {'
81     print '        return procPtr;'
82     print '    }'
83     for f in api.functions:
84         ptype = function_pointer_type(f)
85         pvalue = function_pointer_value(f)
86         print '    if (strcmp("%s", (const char *)procName) == 0) {' % f.name
87         print '        %s = (%s)procPtr;' % (pvalue, ptype)
88         print '        return (__GLXextFuncPtr)&%s;' % (f.name,)
89         print '    }'
90     print '    os::log("apitrace: warning: unknown function \\"%s\\"\\n", (const char *)procName);'
91     print '    return procPtr;'
92     print '}'
93     print
94     print r'''
95
96
97 /*
98  * Invoke the true dlopen() function.
99  */
100 static void *__dlopen(const char *filename, int flag)
101 {
102     typedef void * (*PFNDLOPEN)(const char *, int);
103     static PFNDLOPEN dlopen_ptr = NULL;
104
105     if (!dlopen_ptr) {
106         dlopen_ptr = (PFNDLOPEN)dlsym(RTLD_NEXT, "dlopen");
107         if (!dlopen_ptr) {
108             os::log("apitrace: error: dlsym(RTLD_NEXT, \"dlopen\") failed\n");
109             return NULL;
110         }
111     }
112
113     return dlopen_ptr(filename, flag);
114 }
115
116
117 /*
118  * Several applications, such as Quake3, use dlopen("libGL.so.1"), but
119  * LD_PRELOAD does not intercept symbols obtained via dlopen/dlsym, therefore
120  * we need to intercept the dlopen() call here, and redirect to our wrapper
121  * shared object.
122  */
123 extern "C" PUBLIC
124 void * dlopen(const char *filename, int flag)
125 {
126     void *handle;
127
128     handle = __dlopen(filename, flag);
129
130     const char * libgl_filename = getenv("TRACE_LIBGL");
131
132     if (filename && handle && !libgl_filename) {
133         if (0) {
134             os::log("apitrace: warning: dlopen(\"%s\", 0x%x)\n", filename, flag);
135         }
136
137         // FIXME: handle absolute paths and other versions
138         if (strcmp(filename, "libGL.so") == 0 ||
139             strcmp(filename, "libGL.so.1") == 0) {
140
141             // Use the true libGL.so handle instead of RTLD_NEXT from now on
142             __libGlHandle = handle;
143
144             // Get the file path for our shared object, and use it instead
145             static int dummy = 0xdeedbeef;
146             Dl_info info;
147             if (dladdr(&dummy, &info)) {
148                 os::log("apitrace: redirecting dlopen(\"%s\", 0x%x)\n", filename, flag);
149                 handle = __dlopen(info.dli_fname, flag);
150             } else {
151                 os::log("apitrace: warning: dladdr() failed\n");
152             }
153         }
154     }
155
156     return handle;
157 }
158
159
160
161 '''