X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=bin%2Fvlc.c;h=6969a1b5b440468c0a094e090b370eaf198f7b93;hb=c9a3688176a1571ab5cd9b77b6fddc3e1a110b62;hp=ba3b040a8fc5c31f6fe097993a090bc90b58b5ac;hpb=8030cf38e972aaa78380a5d116e9a4cb4a544b9d;p=vlc diff --git a/bin/vlc.c b/bin/vlc.c index ba3b040a8f..6969a1b5b4 100644 --- a/bin/vlc.c +++ b/bin/vlc.c @@ -32,24 +32,86 @@ #include #include #include +#include #include +#include +#include +#include + +#ifdef __APPLE__ +#include +#endif /* Explicit HACK */ extern void LocaleFree (const char *); extern char *FromLocale (const char *); +extern void vlc_enable_override (void); -#include -#include -#include -#include +#ifdef HAVE_MAEMO +static void dummy_handler (int signum) +{ + (void) signum; +} +#endif + +static bool signal_ignored (int signum) +{ + struct sigaction sa; + + if (sigaction (signum, NULL, &sa)) + return false; + return ((sa.sa_flags & SA_SIGINFO) + ? (void *)sa.sa_sigaction : (void *)sa.sa_handler) == SIG_IGN; +} + +static void vlc_kill (void *data) +{ +#ifndef __OS2__ + pthread_t *ps = data; + + pthread_kill (*ps, SIGTERM); +#else + // send a signal to the main thread + kill (getpid(), SIGTERM); +#endif +} + +static void exit_timeout (int signum) +{ + (void) signum; + signal (SIGINT, SIG_DFL); +} /***************************************************************************** * main: parse command line, start interface and spawn threads. *****************************************************************************/ int main( int i_argc, const char *ppsz_argv[] ) { - int i_ret; + /* The so-called POSIX-compliant MacOS X reportedly processes SIGPIPE even + * if it is blocked in all thread. + * Note: this is NOT an excuse for not protecting against SIGPIPE. If + * LibVLC runs outside of VLC, we cannot rely on this code snippet. */ + signal (SIGPIPE, SIG_IGN); + /* Restore SIGCHLD in case our parent process ignores it. */ + signal (SIGCHLD, SIG_DFL); + +#ifndef NDEBUG + /* Activate malloc checking routines to detect heap corruptions. */ + setenv ("MALLOC_CHECK_", "2", 1); + + /* Disable the ugly Gnome crash dialog so that we properly segfault */ + setenv ("GNOME_DISABLE_CRASH_DIALOG", "1", 1); +#endif + +#ifdef TOP_BUILDDIR + setenv ("VLC_PLUGIN_PATH", TOP_BUILDDIR"/modules", 1); +#endif + + /* Clear the X.Org startup notification ID. Otherwise the UI might try to + * change the environment while the process is multi-threaded. That could + * crash. Screw you X.Org. Next time write a thread-safe specification. */ + unsetenv ("DESKTOP_STARTUP_ID"); #ifndef ALLOW_RUN_AS_ROOT if (geteuid () == 0) @@ -64,97 +126,134 @@ int main( int i_argc, const char *ppsz_argv[] ) setlocale (LC_ALL, ""); -#ifndef __APPLE__ - /* This clutters OSX GUI error logs */ - fprintf( stderr, "VLC media player %s\n", libvlc_get_version() ); -#endif - -#ifdef HAVE_PUTENV -# ifndef NDEBUG - /* Activate malloc checking routines to detect heap corruptions. */ - putenv( (char*)"MALLOC_CHECK_=2" ); -# ifdef __APPLE__ - putenv( (char*)"MallocErrorAbort=crash_my_baby_crash" ); -# endif + if (isatty (STDERR_FILENO)) + /* This message clutters error logs. It is printed only on a TTY. + * Fortunately, LibVLC prints version info with -vv anyway. */ + fprintf (stderr, "VLC media player %s (revision %s)\n", + libvlc_get_version(), libvlc_get_changeset()); - /* Disable the ugly Gnome crash dialog so that we properly segfault */ - putenv( (char *)"GNOME_DISABLE_CRASH_DIALOG=1" ); -# endif -#endif + sigset_t set; - /* Synchronously intercepted POSIX signals. + sigemptyset (&set); + /* VLC uses sigwait() to dequeue interesting signals. + * For this to work, those signals must be blocked in all threads, + * including the thread calling sigwait() (see the man page for details). * - * In a threaded program such as VLC, the only sane way to handle signals - * is to block them in all thread but one - this is the only way to - * predict which thread will receive them. If any piece of code depends - * on delivery of one of this signal it is intrinsically not thread-safe - * and MUST NOT be used in VLC, whether we like it or not. - * There is only one exception: if the signal is raised with - * pthread_kill() - we do not use this in LibVLC but some pthread - * implementations use them internally. You should really use conditions - * for thread synchronization anyway. + * There are two advantages to sigwait() over traditional signal handlers: + * - delivery is synchronous: no need to worry about async-safety, + * - EINTR is not generated: other threads need not handle that error. + * That being said, some LibVLC programs do not use sigwait(). Therefore + * EINTR must still be handled cleanly, notably from poll() calls. * - * Signal that request a clean shutdown, and force an unclean shutdown + * Signals that request a clean shutdown, and force an unclean shutdown * if they are triggered again 2+ seconds later. - * We have to handle SIGTERM cleanly because of daemon mode. - * Note that we set the signals after the vlc_create call. */ - static const int sigs[] = { - SIGINT, SIGHUP, SIGQUIT, SIGTERM, - /* Signals that cause a no-op: - * - SIGPIPE might happen with sockets and would crash VLC. It MUST be - * blocked by any LibVLC-dependent application, not just VLC. - * - SIGCHLD comes after exec*() (such as httpd CGI support) and must - * be dequeued to cleanup zombie processes. + * We have to handle SIGTERM cleanly because of daemon mode. */ + sigaddset (&set, SIGINT); + sigaddset (&set, SIGHUP); + sigaddset (&set, SIGQUIT); + sigaddset (&set, SIGTERM); + + /* SIGPIPE can happen and would crash the process. On modern systems, + * the MSG_NOSIGNAL flag protects socket write operations against SIGPIPE. + * But we still need to block SIGPIPE when: + * - writing to pipes, + * - using write() instead of send() for code not specific to sockets. + * LibVLC code assumes that SIGPIPE is blocked. Other LibVLC applications + * shall block it (or handle it somehow) too. */ - SIGPIPE, SIGCHLD - }; + sigaddset (&set, SIGPIPE); - sigset_t set; - sigemptyset (&set); - for (unsigned i = 0; i < sizeof (sigs) / sizeof (sigs[0]); i++) - sigaddset (&set, sigs[i]); + /* SIGCHLD must be dequeued to clean up zombie child processes. + * Furthermore the handler must not be set to SIG_IGN (see above). + * We cannot pragmatically handle EINTR, short reads and short writes + * in every code paths (including underlying libraries). So we just + * block SIGCHLD in all threads, and dequeue it below. */ + sigaddset (&set, SIGCHLD); +#ifdef HAVE_MAEMO + sigaddset (&set, SIGRTMIN); + { + struct sigaction act = { .sa_handler = dummy_handler, }; + sigaction (SIGRTMIN, &act, NULL); + } +#endif /* Block all these signals */ - pthread_sigmask (SIG_BLOCK, &set, NULL); - sigdelset (&set, SIGPIPE); - sigdelset (&set, SIGCHLD); + pthread_sigmask (SIG_SETMASK, &set, NULL); /* Note that FromLocale() can be used before libvlc is initialized */ - for (int i = 0; i < i_argc; i++) - if ((ppsz_argv[i] = FromLocale (ppsz_argv[i])) == NULL) + const char *argv[i_argc + 3]; + int argc = 0; + + argv[argc++] = "--no-ignore-config"; + argv[argc++] = "--media-library"; +#ifdef TOP_SRCDIR + argv[argc++] = FromLocale ("--data-path="TOP_SRCDIR"/share"); +#endif + + int i = 1; +#ifdef __APPLE__ + /* When VLC.app is run by double clicking in Mac OS X, the 2nd arg + * is the PSN - process serial number (a unique PID-ish thingie) + * still ok for real Darwin & when run from command line + * for example -psn_0_9306113 */ + if(i_argc >= 2 && !strncmp( ppsz_argv[1] , "-psn" , 4 )) + i = 2; +#endif + for (; i < i_argc; i++) + if ((argv[argc++] = FromLocale (ppsz_argv[i])) == NULL) return 1; // BOOM! + argv[argc] = NULL; - libvlc_exception_t ex, dummy; - libvlc_exception_init (&ex); - libvlc_exception_init (&dummy); + vlc_enable_override (); /* Initialize libvlc */ - int i_argc_real = i_argc ? i_argc - 1 : 0; - const char **ppsz_argv_real = i_argc ? &ppsz_argv[1] : ppsz_argv; - libvlc_instance_t *vlc = libvlc_new (i_argc_real, ppsz_argv_real, &ex); + libvlc_instance_t *vlc = libvlc_new (argc, argv); + if (vlc == NULL) + goto out; - if (vlc != NULL) - { - libvlc_add_intf (vlc, "signals", &ex); - if (libvlc_exception_raised (&ex)) - { - libvlc_exception_clear (&ex); - pthread_sigmask (SIG_UNBLOCK, &set, NULL); - } - libvlc_add_intf (vlc, NULL, &ex); - libvlc_playlist_play (vlc, -1, 0, NULL, &dummy); - libvlc_wait (vlc); - libvlc_release (vlc); - } - i_ret = libvlc_exception_raised (&ex); - if( i_ret ) - fprintf( stderr, "%s\n", libvlc_exception_get_message( &ex)); + libvlc_set_user_agent (vlc, "VLC media player", "VLC/"PACKAGE_VERSION); + +#if !defined (HAVE_MAEMO) && !defined __APPLE__ && !defined (__OS2__) + libvlc_add_intf (vlc, "globalhotkeys,none"); +#endif + if (libvlc_add_intf (vlc, NULL)) + goto out; + + libvlc_playlist_play (vlc, -1, 0, NULL); + + /* Wait for a termination signal */ + pthread_t self = pthread_self (); + libvlc_set_exit_handler (vlc, vlc_kill, &self); - libvlc_exception_clear (&ex); - libvlc_exception_clear (&dummy); + /* Qt4 insists on catching SIGCHLD via signal handler. To work around that, + * unblock it after all our child threads are created. */ + sigdelset (&set, SIGCHLD); + pthread_sigmask (SIG_SETMASK, &set, NULL); + + /* Do not dequeue SIGHUP if it is ignored (nohup) */ + if (signal_ignored (SIGHUP)) + sigdelset (&set, SIGHUP); + /* Ignore SIGPIPE */ + sigdelset (&set, SIGPIPE); + + int signum; + sigwait (&set, &signum); - for (int i = 0; i < i_argc; i++) - LocaleFree (ppsz_argv[i]); + /* Restore default signal behaviour after 3 seconds */ + sigemptyset (&set); + sigaddset (&set, SIGINT); + sigaddset (&set, SIGALRM); + signal (SIGINT, SIG_IGN); + signal (SIGALRM, exit_timeout); + pthread_sigmask (SIG_UNBLOCK, &set, NULL); + alarm (3); + + /* Cleanup */ +out: + if (vlc != NULL) + libvlc_release (vlc); + for (int i = 2; i < argc; i++) + LocaleFree (argv[i]); - return i_ret; + return 0; }