]> git.sesse.net Git - vlc/blobdiff - bin/override.c
Block setlocale()
[vlc] / bin / override.c
index 2f7606ba56367fc9964afced6a24a1f50c894700..60bee0ce3eebfa21a527a5359bbc9a82da79f087 100644 (file)
 
 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. */
@@ -42,14 +35,43 @@ void vlc_enable_override (void)
 #include <stdlib.h>
 #include <dlfcn.h>
 #include <pthread.h>
+#ifdef HAVE_EXECINFO_H
+# include <execinfo.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 (const char *level, const char *func, const char *fmt,
                      va_list ap)
 {
+#ifdef HAVE_BACKTRACE
+    const size_t framec = 4;
+    void *framev[framec];
+
+    backtrace (framev, framec);
+#endif
     flockfile (stderr);
     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, fileno (stderr));
+#endif
     funlockfile (stderr);
 }
 
@@ -67,7 +89,8 @@ static void *getsym (const char *name)
     void *sym = dlsym (RTLD_NEXT, name);
     if (sym == NULL)
     {
-        fprintf (stderr, "Cannot resolve symbol %s!\n", name);
+        fprintf (stderr, "Cannot resolve symbol %s: %s\n", name,
+                 dlerror ());
         abort ();
     }
     return sym;
@@ -147,4 +170,89 @@ int rand (void)
 }
 
 
-#endif /* __ELF__ */
+/** Signals **/
+#include <signal.h>
+
+void (*signal (int signum, void (*handler) (int))) (int)
+{
+    if (override)
+    {
+        const char *msg = "Error";
+
+        if ((signum == SIGPIPE && handler == SIG_IGN)
+         || (signum != SIGPIPE && handler == SIG_DFL))
+            /* Same settings we already use */
+            msg = "Warning";
+        LOG(msg, "%d, %p", signum, handler);
+    }
+    return CALL(signal, signum, handler);
+}
+
+int sigaction (int signum, const struct sigaction *act, struct sigaction *old)
+{
+    if (act != NULL)
+        LOG("Error", "%d, %p, %p", signum, act, old);
+    return CALL(sigaction, signum, act, old);
+}
+
+
+/*** 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);
+}
+
+
+/*** 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