]> git.sesse.net Git - vlc/blob - bin/vlc.c
Win32: fix packaging of webplugin
[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 #ifdef HAVE_PTHREAD_H
39 # include <pthread.h>
40 #endif
41 #include <unistd.h>
42
43 #ifdef __APPLE__
44 #include <string.h>
45 #endif
46
47 #ifdef __OS2__
48 # define pthread_t      int
49 # define pthread_self() _gettid()
50 #endif
51
52
53 /* Explicit HACK */
54 extern void LocaleFree (const char *);
55 extern char *FromLocale (const char *);
56 extern void vlc_enable_override (void);
57
58 #ifdef HAVE_MAEMO
59 static void dummy_handler (int signum)
60 {
61     (void) signum;
62 }
63 #endif
64
65 static bool signal_ignored (int signum)
66 {
67     struct sigaction sa;
68
69     if (sigaction (signum, NULL, &sa))
70         return false;
71     return ((sa.sa_flags & SA_SIGINFO)
72             ? (void *)sa.sa_sigaction : (void *)sa.sa_handler) == SIG_IGN;
73 }
74
75 static void vlc_kill (void *data)
76 {
77 #ifndef __OS2__
78     pthread_t *ps = data;
79
80     pthread_kill (*ps, SIGTERM);
81 #else
82     // send a signal to the main thread
83     kill (getpid(), SIGTERM);
84 #endif
85 }
86
87 static void exit_timeout (int signum)
88 {
89     (void) signum;
90     signal (SIGINT, SIG_DFL);
91 }
92
93 /*****************************************************************************
94  * main: parse command line, start interface and spawn threads.
95  *****************************************************************************/
96 int main( int i_argc, const char *ppsz_argv[] )
97 {
98     /* The so-called POSIX-compliant MacOS X reportedly processes SIGPIPE even
99      * if it is blocked in all thread.
100      * Note: this is NOT an excuse for not protecting against SIGPIPE. If
101      * LibVLC runs outside of VLC, we cannot rely on this code snippet. */
102     signal (SIGPIPE, SIG_IGN);
103     /* Restore SIGCHLD in case our parent process ignores it. */
104     signal (SIGCHLD, SIG_DFL);
105
106 #ifndef NDEBUG
107     /* Activate malloc checking routines to detect heap corruptions. */
108     setenv ("MALLOC_CHECK_", "2", 1);
109
110     /* Disable the ugly Gnome crash dialog so that we properly segfault */
111     setenv ("GNOME_DISABLE_CRASH_DIALOG", "1", 1);
112 #endif
113
114 #ifdef TOP_BUILDDIR
115     setenv ("VLC_PLUGIN_PATH", TOP_BUILDDIR"/modules", 1);
116 #endif
117
118     /* Clear the X.Org startup notification ID. Otherwise the UI might try to
119      * change the environment while the process is multi-threaded. That could
120      * crash. Screw you X.Org. Next time write a thread-safe specification. */
121     unsetenv ("DESKTOP_STARTUP_ID");
122
123 #ifndef ALLOW_RUN_AS_ROOT
124     if (geteuid () == 0)
125     {
126         fprintf (stderr, "VLC is not supposed to be run as root. Sorry.\n"
127         "If you need to use real-time priorities and/or privileged TCP ports\n"
128         "you can use %s-wrapper (make sure it is Set-UID root and\n"
129         "cannot be run by non-trusted users first).\n", ppsz_argv[0]);
130         return 1;
131     }
132 #endif
133
134     setlocale (LC_ALL, "");
135
136     if (isatty (STDERR_FILENO))
137         /* This message clutters error logs. It is printed only on a TTY.
138          * Fortunately, LibVLC prints version info with -vv anyway. */
139         fprintf (stderr, "VLC media player %s (revision %s)\n",
140                  libvlc_get_version(), libvlc_get_changeset());
141
142     sigset_t set;
143
144     sigemptyset (&set);
145     /* VLC uses sigwait() to dequeue interesting signals.
146      * For this to work, those signals must be blocked in all threads,
147      * including the thread calling sigwait() (see the man page for details).
148      *
149      * There are two advantages to sigwait() over traditional signal handlers:
150      *  - delivery is synchronous: no need to worry about async-safety,
151      *  - EINTR is not generated: other threads need not handle that error.
152      * That being said, some LibVLC programs do not use sigwait(). Therefore
153      * EINTR must still be handled cleanly, notably from poll() calls.
154      *
155      * Signals that request a clean shutdown, and force an unclean shutdown
156      * if they are triggered again 2+ seconds later.
157      * We have to handle SIGTERM cleanly because of daemon mode. */
158     sigaddset (&set, SIGINT);
159     sigaddset (&set, SIGHUP);
160     sigaddset (&set, SIGQUIT);
161     sigaddset (&set, SIGTERM);
162
163     /* SIGPIPE can happen and would crash the process. On modern systems,
164      * the MSG_NOSIGNAL flag protects socket write operations against SIGPIPE.
165      * But we still need to block SIGPIPE when:
166      *  - writing to pipes,
167      *  - using write() instead of send() for code not specific to sockets.
168      * LibVLC code assumes that SIGPIPE is blocked. Other LibVLC applications
169      * shall block it (or handle it somehow) too.
170      */
171     sigaddset (&set, SIGPIPE);
172
173     /* SIGCHLD must be dequeued to clean up zombie child processes.
174      * Furthermore the handler must not be set to SIG_IGN (see above).
175      * We cannot pragmatically handle EINTR, short reads and short writes
176      * in every code paths (including underlying libraries). So we just
177      * block SIGCHLD in all threads, and dequeue it below. */
178     sigaddset (&set, SIGCHLD);
179
180 #ifdef HAVE_MAEMO
181     sigaddset (&set, SIGRTMIN);
182     {
183         struct sigaction act = { .sa_handler = dummy_handler, };
184         sigaction (SIGRTMIN, &act, NULL);
185     }
186 #endif
187     /* Block all these signals */
188     pthread_sigmask (SIG_SETMASK, &set, NULL);
189
190     /* Note that FromLocale() can be used before libvlc is initialized */
191     const char *argv[i_argc + 3];
192     int argc = 0;
193
194     argv[argc++] = "--no-ignore-config";
195     argv[argc++] = "--media-library";
196 #ifdef TOP_SRCDIR
197     argv[argc++] = FromLocale ("--data-path="TOP_SRCDIR"/share");
198 #endif
199
200     int i = 1;
201 #ifdef __APPLE__
202     /* When VLC.app is run by double clicking in Mac OS X, the 2nd arg
203      * is the PSN - process serial number (a unique PID-ish thingie)
204      * still ok for real Darwin & when run from command line
205      * for example -psn_0_9306113 */
206     if(i_argc >= 2 && !strncmp( ppsz_argv[1] , "-psn" , 4 ))
207         i = 2;
208 #endif
209     for (; i < i_argc; i++)
210         if ((argv[argc++] = FromLocale (ppsz_argv[i])) == NULL)
211             return 1; // BOOM!
212     argv[argc] = NULL;
213
214     vlc_enable_override ();
215
216     /* Initialize libvlc */
217     libvlc_instance_t *vlc = libvlc_new (argc, argv);
218     if (vlc == NULL)
219         goto out;
220
221     libvlc_set_user_agent (vlc, "VLC media player", "VLC/"PACKAGE_VERSION);
222
223 #if !defined (HAVE_MAEMO) && !defined __APPLE__ && !defined (__OS2__)
224     libvlc_add_intf (vlc, "globalhotkeys,none");
225 #endif
226     if (libvlc_add_intf (vlc, NULL))
227         goto out;
228
229     libvlc_playlist_play (vlc, -1, 0, NULL);
230
231     /* Wait for a termination signal */
232     pthread_t self = pthread_self ();
233     libvlc_set_exit_handler (vlc, vlc_kill, &self);
234
235     /* Qt4 insists on catching SIGCHLD via signal handler. To work around that,
236      * unblock it after all our child threads are created. */
237     sigdelset (&set, SIGCHLD);
238     pthread_sigmask (SIG_SETMASK, &set, NULL);
239
240     /* Do not dequeue SIGHUP if it is ignored (nohup) */
241     if (signal_ignored (SIGHUP))
242         sigdelset (&set, SIGHUP);
243     /* Ignore SIGPIPE */
244     sigdelset (&set, SIGPIPE);
245
246     int signum;
247     sigwait (&set, &signum);
248
249     /* Restore default signal behaviour after 3 seconds */
250     sigemptyset (&set);
251     sigaddset (&set, SIGINT);
252     sigaddset (&set, SIGALRM);
253     signal (SIGINT, SIG_IGN);
254     signal (SIGALRM, exit_timeout);
255     pthread_sigmask (SIG_UNBLOCK, &set, NULL);
256     alarm (3);
257
258     /* Cleanup */
259 out:
260     if (vlc != NULL)
261         libvlc_release (vlc);
262     for (int i = 2; i < argc; i++)
263         LocaleFree (argv[i]);
264
265     return 0;
266 }