]> git.sesse.net Git - vlc/blob - bin/vlc.c
Always use the SIGPIPE hack even if not needed, it cannot hurt
[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 <locale.h>
36
37 #ifdef __APPLE__
38 #include <string.h>
39 #endif
40
41
42 /* Explicit HACK */
43 extern void LocaleFree (const char *);
44 extern char *FromLocale (const char *);
45
46 #include <signal.h>
47 #include <time.h>
48 #include <pthread.h>
49 #include <unistd.h>
50 #include <dlfcn.h>
51
52 /*****************************************************************************
53  * main: parse command line, start interface and spawn threads.
54  *****************************************************************************/
55 int main( int i_argc, const char *ppsz_argv[] )
56 {
57     /* The so-called POSIX-compliant MacOS X reportedly processes SIGPIPE even
58      * if it is blocked in all thread. Also some libraries want SIGPIPE blocked
59      * as they have no clue about signal masks.
60      * Note: this is NOT an excuse for not protecting against SIGPIPE. If
61      * LibVLC runs outside of VLC, we cannot rely on this code snippet. */
62     signal (SIGPIPE, SIG_IGN);
63
64 #ifndef ALLOW_RUN_AS_ROOT
65     if (geteuid () == 0)
66     {
67         fprintf (stderr, "VLC is not supposed to be run as root. Sorry.\n"
68         "If you need to use real-time priorities and/or privileged TCP ports\n"
69         "you can use %s-wrapper (make sure it is Set-UID root and\n"
70         "cannot be run by non-trusted users first).\n", ppsz_argv[0]);
71         return 1;
72     }
73 #endif
74
75     setlocale (LC_ALL, "");
76
77 #ifndef __APPLE__
78     /* This clutters OSX GUI error logs */
79     fprintf( stderr, "VLC media player %s (revision %s)\n",
80              libvlc_get_version(), libvlc_get_changeset() );
81 #endif
82
83 #ifdef HAVE_PUTENV
84 #   ifndef NDEBUG
85     /* Activate malloc checking routines to detect heap corruptions. */
86     putenv( (char*)"MALLOC_CHECK_=2" );
87
88     /* Disable the ugly Gnome crash dialog so that we properly segfault */
89     putenv( (char *)"GNOME_DISABLE_CRASH_DIALOG=1" );
90 #   endif
91 #endif
92
93     /* Make Xlib hide visuals with an alphachannel. Ensure that Qt4 will not
94      * use the alpha channel for the embedded video window. */
95     putenv( (char *)"XLIB_SKIP_ARGB_VISUALS=1" );
96
97     /* Synchronously intercepted POSIX signals.
98      *
99      * In a threaded program such as VLC, the only sane way to handle signals
100      * is to block them in all threads but one - this is the only way to
101      * predict which thread will receive them. If any piece of code depends
102      * on delivery of one of this signal it is intrinsically not thread-safe
103      * and MUST NOT be used in VLC, whether we like it or not.
104      * There is only one exception: if the signal is raised with
105      * pthread_kill() - we do not use this in LibVLC but some pthread
106      * implementations use them internally. You should really use conditions
107      * for thread synchronization anyway.
108      *
109      * Signal that request a clean shutdown, and force an unclean shutdown
110      * if they are triggered again 2+ seconds later.
111      * We have to handle SIGTERM cleanly because of daemon mode.
112      * Note that we set the signals after the vlc_create call. */
113     static const int sigs[] = {
114         SIGINT, SIGHUP, SIGQUIT, SIGTERM,
115     /* Signals that cause a no-op:
116      * - SIGPIPE might happen with sockets and would crash VLC. It MUST be
117      *   blocked by any LibVLC-dependent application, not just VLC.
118      * - SIGCHLD comes after exec*() (such as httpd CGI support) and must
119      *   be dequeued to cleanup zombie processes.
120      */
121         SIGPIPE, SIGCHLD
122     };
123
124     sigset_t set;
125     sigemptyset (&set);
126     for (unsigned i = 0; i < sizeof (sigs) / sizeof (sigs[0]); i++)
127         sigaddset (&set, sigs[i]);
128
129     /* Block all these signals */
130     pthread_sigmask (SIG_BLOCK, &set, NULL);
131     sigdelset (&set, SIGPIPE);
132     sigdelset (&set, SIGCHLD);
133
134     /* Note that FromLocale() can be used before libvlc is initialized */
135     const char *argv[i_argc + 3];
136     int argc = 0;
137
138     argv[argc++] = "--no-ignore-config";
139 #ifdef TOP_BUILDDIR
140     argv[argc++] = FromLocale ("--plugin-path="TOP_BUILDDIR"/modules");
141 #endif
142 #ifdef TOP_SRCDIR
143     argv[argc++] = FromLocale ("--data-path="TOP_SRCDIR"/share");
144 #endif
145
146     int i = 1;
147 #ifdef __APPLE__
148     /* When VLC.app is run by double clicking in Mac OS X, the 2nd arg
149      * is the PSN - process serial number (a unique PID-ish thingie)
150      * still ok for real Darwin & when run from command line
151      * for example -psn_0_9306113 */
152     if(i_argc >= 2 && !strncmp( ppsz_argv[1] , "-psn" , 4 ))
153         i = 2;
154 #endif
155     for (; i < i_argc; i++)
156         if ((argv[argc++] = FromLocale (ppsz_argv[i])) == NULL)
157             return 1; // BOOM!
158     argv[argc] = NULL;
159
160     /* Initialize libvlc */
161     libvlc_instance_t *vlc = libvlc_new (argc, argv);
162
163     if (vlc != NULL)
164     {
165         if (libvlc_add_intf (vlc, "signals"))
166             pthread_sigmask (SIG_UNBLOCK, &set, NULL);
167 #if !defined (HAVE_MAEMO)
168         libvlc_add_intf (vlc, "globalhotkeys,none");
169 #endif
170         if (libvlc_add_intf (vlc, NULL) == 0)
171         {
172             libvlc_playlist_play (vlc, -1, 0, NULL);
173             libvlc_wait (vlc);
174         }
175         libvlc_release (vlc);
176     }
177
178     for (int i = 1; i < argc; i++)
179         LocaleFree (argv[i]);
180
181 #ifdef RTLD_NOLOAD
182     /* Avoid crash in KIO scheduler cleanup. */
183     /* This is ugly, but we get way too many crash reports due to this. */
184     if (dlopen ("libkfilemodule.so", RTLD_LAZY|RTLD_LOCAL|RTLD_NOLOAD) != NULL)
185     {
186         fprintf (stderr, "KFile plugin present. Unclean shutdown!\n");
187         _exit (0);
188     }
189 #endif
190     return 0;
191 }