]> git.sesse.net Git - vlc/blob - bin/vlc.c
Do signal handling in the main() thread
[vlc] / bin / vlc.c
1 /*****************************************************************************
2  * vlc.c: the VLC player
3  *****************************************************************************
4  * Copyright (C) 1998-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          Gildas Bazin <gbazin@videolan.org>
10  *          Derk-Jan Hartman <hartman at videolan dot org>
11  *          Lots of other people, see the libvlc AUTHORS file
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
26  *****************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc/vlc.h>
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <stdbool.h>
36 #include <locale.h>
37 #include <signal.h>
38 #include <time.h>
39 #include <pthread.h>
40 #include <unistd.h>
41 #include <dlfcn.h>
42
43 #ifdef __APPLE__
44 #include <string.h>
45 #endif
46
47
48 /* Explicit HACK */
49 extern void LocaleFree (const char *);
50 extern char *FromLocale (const char *);
51 extern void vlc_enable_override (void);
52
53 #ifdef HAVE_MAEMO
54 static void dummy_handler (int signum)
55 {
56     (void) signum;
57 }
58 #endif
59
60 static bool signal_ignored (int signum)
61 {
62     struct sigaction sa;
63
64     if (sigaction (signum, NULL, &sa))
65         return false;
66     return ((sa.sa_flags & SA_SIGINFO)
67             ? (void *)sa.sa_sigaction : (void *)sa.sa_handler) == SIG_IGN;
68 }
69
70 static void vlc_kill (void *data)
71 {
72     pthread_t *ps = data;
73
74     pthread_kill (*ps, SIGTERM);
75 }
76
77
78 /*****************************************************************************
79  * main: parse command line, start interface and spawn threads.
80  *****************************************************************************/
81 int main( int i_argc, const char *ppsz_argv[] )
82 {
83     /* The so-called POSIX-compliant MacOS X reportedly processes SIGPIPE even
84      * if it is blocked in all thread. Also some libraries want SIGPIPE blocked
85      * as they have no clue about signal masks.
86      * Note: this is NOT an excuse for not protecting against SIGPIPE. If
87      * LibVLC runs outside of VLC, we cannot rely on this code snippet. */
88     signal (SIGPIPE, SIG_IGN);
89     /* Restore default for SIGCHLD in case parent ignores it. */
90     signal (SIGCHLD, SIG_DFL);
91
92 #ifdef HAVE_SETENV
93 # ifndef NDEBUG
94     /* Activate malloc checking routines to detect heap corruptions. */
95     setenv ("MALLOC_CHECK_", "2", 1);
96
97     /* Disable the ugly Gnome crash dialog so that we properly segfault */
98     setenv ("GNOME_DISABLE_CRASH_DIALOG", "1", 1);
99 # endif
100
101     /* Make Xlib hide visuals with an alphachannel. Ensure that Qt4 will not
102      * use the alpha channel for the embedded video window. */
103     setenv ("XLIB_SKIP_ARGB_VISUALS", "1", 1);
104
105     /* Clear the X.Org startup notification ID. Otherwise the UI might try to
106      * change the environment while the process is multi-threaded. That could
107      * crash. Screw you X.Org. Next time write a thread-safe specification. */
108     unsetenv ("DESKTOP_STARTUP_ID");
109 #endif
110
111 #ifndef ALLOW_RUN_AS_ROOT
112     if (geteuid () == 0)
113     {
114         fprintf (stderr, "VLC is not supposed to be run as root. Sorry.\n"
115         "If you need to use real-time priorities and/or privileged TCP ports\n"
116         "you can use %s-wrapper (make sure it is Set-UID root and\n"
117         "cannot be run by non-trusted users first).\n", ppsz_argv[0]);
118         return 1;
119     }
120 #endif
121
122     setlocale (LC_ALL, "");
123
124 #ifndef __APPLE__
125     /* This clutters OSX GUI error logs */
126     fprintf( stderr, "VLC media player %s (revision %s)\n",
127              libvlc_get_version(), libvlc_get_changeset() );
128 #endif
129
130     sigset_t set;
131
132     sigemptyset (&set);
133     /* Synchronously intercepted POSIX signals.
134      *
135      * In a threaded program such as VLC, the only sane way to handle signals
136      * is to block them in all threads but one - this is the only way to
137      * predict which thread will receive them. If any piece of code depends
138      * on delivery of one of this signal it is intrinsically not thread-safe
139      * and MUST NOT be used in VLC, whether we like it or not.
140      * There is only one exception: if the signal is raised with
141      * pthread_kill() - we do not use this in LibVLC but some pthread
142      * implementations use them internally. You should really use conditions
143      * for thread synchronization anyway.
144      *
145      * Signal that request a clean shutdown, and force an unclean shutdown
146      * if they are triggered again 2+ seconds later.
147      * We have to handle SIGTERM cleanly because of daemon mode. */
148     sigaddset (&set, SIGINT);
149     sigaddset (&set, SIGHUP);
150     sigaddset (&set, SIGQUIT);
151     sigaddset (&set, SIGTERM);
152
153     /* Signals that cause a no-op:
154      * - SIGPIPE might happen with sockets and would crash VLC. It MUST be
155      *   blocked by any LibVLC-dependent application, not just VLC.
156      * - SIGCHLD comes after exec*() (such as httpd CGI support) and must
157      *   be dequeued to cleanup zombie processes.
158      */
159     sigaddset (&set, SIGPIPE);
160     sigaddset (&set, SIGCHLD);
161
162 #ifdef HAVE_MAEMO
163     sigaddset (&set, SIGRTMIN);
164     {
165         struct sigaction act = { .sa_handler = dummy_handler, };
166         sigaction (SIGRTMIN, &act, NULL);
167     }
168 #endif
169     /* Block all these signals */
170     pthread_sigmask (SIG_BLOCK, &set, NULL);
171
172     /* Note that FromLocale() can be used before libvlc is initialized */
173     const char *argv[i_argc + 4];
174     int argc = 0;
175
176     argv[argc++] = "--no-ignore-config";
177     argv[argc++] = "--user-agent=\"VLC media player\"";
178 #ifdef TOP_BUILDDIR
179     argv[argc++] = FromLocale ("--plugin-path="TOP_BUILDDIR"/modules");
180 #endif
181 #ifdef TOP_SRCDIR
182     argv[argc++] = FromLocale ("--data-path="TOP_SRCDIR"/share");
183 #endif
184
185     int i = 1;
186 #ifdef __APPLE__
187     /* When VLC.app is run by double clicking in Mac OS X, the 2nd arg
188      * is the PSN - process serial number (a unique PID-ish thingie)
189      * still ok for real Darwin & when run from command line
190      * for example -psn_0_9306113 */
191     if(i_argc >= 2 && !strncmp( ppsz_argv[1] , "-psn" , 4 ))
192         i = 2;
193 #endif
194     for (; i < i_argc; i++)
195         if ((argv[argc++] = FromLocale (ppsz_argv[i])) == NULL)
196             return 1; // BOOM!
197     argv[argc] = NULL;
198
199     vlc_enable_override ();
200
201     /* Initialize libvlc */
202     libvlc_instance_t *vlc = libvlc_new (argc, argv);
203     if (vlc == NULL)
204         goto out;
205
206 #if !defined (HAVE_MAEMO)
207     libvlc_add_intf (vlc, "globalhotkeys,none");
208 #endif
209     if (libvlc_add_intf (vlc, NULL))
210         goto out;
211
212     libvlc_playlist_play (vlc, -1, 0, NULL);
213
214     /* Wait for a termination signal */
215     pthread_t self = pthread_self ();
216     libvlc_set_exit_handler (vlc, vlc_kill, &self);
217
218     if (signal_ignored (SIGHUP)) /* <- needed to handle nohup properly */
219         sigdelset (&set, SIGHUP);
220     sigdelset (&set, SIGPIPE);
221
222     int signum;
223     do
224         sigwait (&set, &signum);
225     while (signum == SIGCHLD);
226
227     /* Cleanup */
228 out:
229     if (vlc != NULL)
230         libvlc_release (vlc);
231     for (int i = 2; i < argc; i++)
232         LocaleFree (argv[i]);
233
234 #ifdef RTLD_NOLOAD
235     /* Avoid crash in KIO scheduler cleanup. */
236     /* This is ugly, but we get way too many crash reports due to this. */
237     if (dlopen ("libkio.so.5", RTLD_LAZY|RTLD_LOCAL|RTLD_NOLOAD) != NULL)
238     {
239         fprintf (stderr, "KIO present. Unclean shutdown!\n"
240            " (see http://bugs.kde.org/show_bug.cgi?id=234484 for details)\n");
241         _exit (0);
242     }
243 #endif
244     return 0;
245 }