]> git.sesse.net Git - vlc/commitdiff
VLC: infrastructure to detect and/or work-around thread-unsafe calls
authorRémi Denis-Courmont <remi@remlab.net>
Sun, 11 Apr 2010 15:36:50 +0000 (18:36 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Sun, 11 Apr 2010 15:38:14 +0000 (18:38 +0300)
bin/Makefile.am
bin/override.c [new file with mode: 0644]
bin/vlc.c

index ab03616bb88cda727001f23dbe1cc54de50e3e93..4833f86a3489d8b06f0c2b15dfa1869888bc80d7 100644 (file)
@@ -14,7 +14,7 @@ AM_CFLAGS = `$(VLC_CONFIG) --cflags vlc`
 if !HAVE_WIN32
 if !HAVE_WINCE
 bin_PROGRAMS += vlc-wrapper
-vlc_SOURCES = vlc.c
+vlc_SOURCES = vlc.c override.c
 endif
 endif
 
diff --git a/bin/override.c b/bin/override.c
new file mode 100644 (file)
index 0000000..048c8fe
--- /dev/null
@@ -0,0 +1,80 @@
+/*****************************************************************************
+ * override.c: overriden 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>
+
+void vlc_enable_override (void);
+
+static bool override = false;
+
+void vlc_enable_override (void)
+{
+    override = true;
+}
+
+#if defined (__GNUC__) /* typeof and statement-expression */ \
+ && (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 <dlfcn.h>
+
+static void vlogbug (const char *level, const char *func, const char *fmt,
+                     va_list ap)
+{
+    flockfile (stderr);
+    fprintf (stderr, "%s: call to %s(", level, func);
+    vfprintf (stderr, fmt, ap);
+    fputs (")\n", stderr);
+    funlockfile (stderr);
+}
+
+static void logbug (const char *level, const char *func, const char *fmt, ...)
+{
+    va_list ap;
+
+    va_start (ap, fmt);
+    vlogbug (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!\n", name);
+        abort ();
+    }
+    return sym;
+}
+
+#define LOG(level, ...) logbug(level, __func__, __VA_ARGS__)
+#define CALL(func, ...) \
+    ({ typeof (func) *sym = getsym ( # func); sym (__VA_ARGS__); })
+
+
+#endif /* __ELF__ */
index e486040ff5af9dab18d210a8849a297490c5f741..9e769b018cb80fc42eeac674d146dcbc78271658 100644 (file)
--- a/bin/vlc.c
+++ b/bin/vlc.c
@@ -42,6 +42,7 @@
 /* Explicit HACK */
 extern void LocaleFree (const char *);
 extern char *FromLocale (const char *);
+extern void vlc_enable_override (void);
 
 #include <signal.h>
 #include <time.h>
@@ -157,6 +158,8 @@ int main( int i_argc, const char *ppsz_argv[] )
             return 1; // BOOM!
     argv[argc] = NULL;
 
+    vlc_enable_override ();
+
     /* Initialize libvlc */
     libvlc_instance_t *vlc = libvlc_new (argc, argv);