forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
override.c
321 lines (282 loc) · 7.87 KB
/
override.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
/*****************************************************************************
* override.c: overridden function calls for VLC media player
*****************************************************************************
* Copyright (C) 2010 Rémi Denis-Courmont
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdbool.h>
#define MAX_ERRORS 5
void vlc_enable_override (void);
#if defined (__GNUC__) \
&& (defined (__ELF__) && !defined (__sun__))
/* Solaris crashes on printf("%s", NULL); which is legal, but annoying. */
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <dlfcn.h>
#include <pthread.h>
#ifdef HAVE_EXECINFO_H
# include <execinfo.h>
# include <unistd.h>
#endif
#ifdef NDEBUG
# undef HAVE_BACKTRACE
#endif
static bool override = false;
static void vlc_reset_override (void)
{
override = false;
}
void vlc_enable_override (void)
{
override = true;
pthread_atfork (NULL, NULL, vlc_reset_override);
}
static void vlogbug (unsigned *pc, const char *level, const char *func,
const char *fmt, va_list ap)
{
#ifdef HAVE_BACKTRACE
const size_t framec = 5;
void *framev[framec];
backtrace (framev, framec);
#endif
flockfile (stderr);
if (*pc < MAX_ERRORS)
{
(*pc)++;
fprintf (stderr, "%s: call to %s(", level, func);
vfprintf (stderr, fmt, ap);
fputs (")\n", stderr);
fflush (stderr);
#ifdef HAVE_BACKTRACE
backtrace_symbols_fd (framev + 2, framec - 2, STDERR_FILENO);
#endif
}
funlockfile (stderr);
}
static void logbug (unsigned *pc, const char *level, const char *func,
const char *fmt, ...)
{
va_list ap;
va_start (ap, fmt);
vlogbug (pc, level, func, fmt, ap);
va_end (ap);
}
static void *getsym (const char *name)
{
void *sym = dlsym (RTLD_NEXT, name);
if (sym == NULL)
{
fprintf (stderr, "Cannot resolve symbol %s: %s\n", name,
dlerror ());
abort ();
}
return sym;
}
#define LOG(level, ...) \
do { \
static unsigned counter = 0; \
logbug(&counter, level, __func__, __VA_ARGS__); \
} while (0)
/* Evil non-standard GNU C macro ;)
* typeof keyword,
* statement-expression
*/
#define CALL(func, ...) \
({ typeof (func) *sym = getsym ( # func); sym (__VA_ARGS__); })
/*** Environment ***
*
* "Conforming multi-threaded applications shall not use the environ variable
* to access or modify any environment variable while any other thread is
* concurrently modifying any environment variable." -- POSIX.
*
* Some evil libraries modify the environment. We currently ignore the calls as
* they could crash the process. This may cause funny behaviour though. */
int putenv (char *str)
{
if (override)
{
LOG("Blocked", "\"%s\"", str);
return 0;
}
return CALL(putenv, str);
}
int setenv (const char *name, const char *value, int overwrite)
{
if (override)
{
LOG("Blocked", "\"%s\", \"%s\", %d", name, value, overwrite);
return 0;
}
return CALL(setenv, name, value, overwrite);
}
int unsetenv (const char *name)
{
if (override)
{
LOG("Blocked", "\"%s\"", name);
return 0;
}
return CALL(unsetenv, name);
}
/*** Pseudo random numbers ***
*
* The C PRNG is not thread-safe (and generally sucks, the POSIX 48-bits PRNG
* is much better as a reproducible non-secure PRNG). To work around this, we
* force evil callers to serialize. This makes the call safe, but fails to
* preserve reproducibility of the number sequence (which usually does not
* matter).
**/
static struct
{
pthread_mutex_t lock;
unsigned int seed;
} prng = { PTHREAD_MUTEX_INITIALIZER, 0, };
void srand (unsigned int seed)
{
pthread_mutex_lock (&prng.lock);
LOG("Warning", "%d", seed);
prng.seed = seed;
pthread_mutex_unlock (&prng.lock);
}
int rand (void)
{
int ret;
pthread_mutex_lock (&prng.lock);
LOG("Warning", "");
ret = rand_r (&prng.seed);
pthread_mutex_unlock (&prng.lock);
return ret;
}
#if 0
/** Signals **/
#include <signal.h>
static bool blocked_signal (int num)
{
switch (num)
{
case SIGINT:
case SIGHUP:
case SIGQUIT:
case SIGTERM:
case SIGPIPE:
case SIGCHLD:
return true;
}
return false;
}
void (*signal (int signum, void (*handler) (int))) (int)
{
if (override)
{
if (handler != SIG_IGN && handler != SIG_DFL)
goto error;
if (!blocked_signal (signum))
goto error;
/* For our blocked signals, the handler won't matter much... */
if (handler == SIG_DFL)
LOG("Warning", "%d, SIG_DFL", signum, handler);
}
return CALL(signal, signum, handler);
error:
LOG("Blocked", "%d, %p", signum, handler);
return SIG_DFL;
}
int sigaction (int signum, const struct sigaction *act, struct sigaction *old)
{
if (override && act != NULL)
{
if ((act->sa_flags & SA_SIGINFO)
|| (act->sa_handler != SIG_IGN && act->sa_handler != SIG_DFL))
goto error;
if (act->sa_handler == SIG_DFL)
LOG("Warning", "%d, %p, SIG_DFL", signum, act);
}
return CALL(sigaction, signum, act, old);
error:
LOG("Blocked", "%d, %p, %p", signum, act, old);
return -1;
}
#endif
/*** Locales ***
* setlocale() is not thread-safe and has a tendency to crash other threads as
* quite many libc and libintl calls depend on the locale.
* Use uselocale() instead for thread-safety.
*/
#include <locale.h>
char *setlocale (int cat, const char *locale)
{
if (override && locale != NULL)
{
LOG("Blocked", "%d, \"%s\"", cat, locale);
return NULL;
}
return CALL(setlocale, cat, locale);
}
/* strerror() is not thread-safe in theory (POSIX), nor in practice (glibc).
* This caused quite nasty crashes in the history of VLC/Linux. */
char *strerror (int val)
{
if (override)
{
static const char msg[] =
"Error message unavailable (use strerror_r instead of strerror)!";
LOG("Blocked", "%d", val);
return (char *)msg;
}
return CALL(strerror, val);
}
/*** Xlib ****/
#ifdef HAVE_X11_XLIB_H
# include <X11/Xlib.h>
static pthread_mutex_t xlib_lock = PTHREAD_MUTEX_INITIALIZER;
int (*XSetErrorHandler (int (*handler) (Display *, XErrorEvent *)))
(Display *, XErrorEvent *)
{
if (override)
{
int (*ret) (Display *, XErrorEvent *);
pthread_mutex_lock (&xlib_lock);
LOG("Error", "%p", handler);
ret = CALL(XSetErrorHandler, handler);
pthread_mutex_unlock (&xlib_lock);
return ret;
}
return CALL(XSetErrorHandler, handler);
}
int (*XSetIOErrorHandler (int (*handler) (Display *))) (Display *)
{
if (override)
{
int (*ret) (Display *);
pthread_mutex_lock (&xlib_lock);
LOG("Error", "%p", handler);
ret = CALL(XSetIOErrorHandler, handler);
pthread_mutex_unlock (&xlib_lock);
return ret;
}
return CALL(XSetIOErrorHandler, handler);
}
#endif
#else
void vlc_enable_override (void)
{
}
#endif