]> git.sesse.net Git - vlc/blob - bin/winvlc.c
Use environment variable for data directory
[vlc] / bin / winvlc.c
1 /*****************************************************************************
2  * winvlc.c: the Windows VLC media player
3  *****************************************************************************
4  * Copyright (C) 1998-2011 the VideoLAN team
5  *
6  * Authors: Vincent Seguin <seguin@via.ecp.fr>
7  *          Samuel Hocevar <sam@zoy.org>
8  *          Gildas Bazin <gbazin@videolan.org>
9  *          Derk-Jan Hartman <hartman at videolan dot org>
10  *          Lots of other people, see the libvlc AUTHORS file
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #define UNICODE
32 #include <vlc/vlc.h>
33 #include <windows.h>
34 #include <shellapi.h>
35
36 #if !defined(UNDER_CE)
37 # ifndef _WIN32_IE
38 #   define  _WIN32_IE 0x501
39 # endif
40 # include <fcntl.h>
41 # include <io.h>
42 # include <shlobj.h>
43 # include <wininet.h>
44 # define PSAPI_VERSION 1
45 # include <psapi.h>
46 # define HeapEnableTerminationOnCorruption (HEAP_INFORMATION_CLASS)1
47 static void check_crashdump(void);
48 LONG WINAPI vlc_exception_filter(struct _EXCEPTION_POINTERS *lpExceptionInfo);
49 static const wchar_t *crashdump_path;
50 #endif
51
52 #ifndef UNDER_CE
53 static char *FromWide (const wchar_t *wide)
54 {
55     size_t len;
56     len = WideCharToMultiByte (CP_UTF8, 0, wide, -1, NULL, 0, NULL, NULL);
57
58     char *out = (char *)malloc (len);
59     if (out)
60         WideCharToMultiByte (CP_UTF8, 0, wide, -1, out, len, NULL, NULL);
61     return out;
62 }
63 #else
64 static int parse_cmdline (char *line, char ***argvp)
65 {
66     char **argv = malloc (sizeof (char *));
67     int argc = 0;
68
69     while (*line != '\0')
70     {
71         char quote = 0;
72
73         /* Skips white spaces */
74         while (strchr ("\t ", *line))
75             line++;
76         if (!*line)
77             break;
78
79         /* Starts a new parameter */
80         argv = realloc (argv, (argc + 2) * sizeof (char *));
81         if (*line == '"')
82         {
83             quote = '"';
84             line++;
85         }
86         argv[argc++] = line;
87
88     more:
89             while (*line && !strchr ("\t ", *line))
90             line++;
91
92     if (line > argv[argc - 1] && line[-1] == quote)
93         /* End of quoted parameter */
94         line[-1] = 0;
95     else
96         if (*line && quote)
97     {
98         /* Space within a quote */
99         line++;
100         goto more;
101     }
102     else
103         /* End of unquoted parameter */
104         if (*line)
105             *line++ = 0;
106     }
107     argv[argc] = NULL;
108     *argvp = argv;
109     return argc;
110 }
111 #endif
112
113 int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
114 #ifndef UNDER_CE
115                     LPSTR lpCmdLine,
116 #else
117                     LPWSTR lpCmdLine,
118 #endif
119                     int nCmdShow )
120 {
121     int argc;
122
123 #ifndef UNDER_CE
124 #ifdef TOP_BUILDDIR
125     putenv("VLC_PLUGIN_PATH=Z:"TOP_BUILDDIR"/modules");
126     putenv("VLC_DATA_PATH=Z:"TOP_SRCDIR"/share");
127 #endif
128
129     HeapSetInformation(NULL, HeapEnableTerminationOnCorruption, NULL, 0);
130
131     /* SetProcessDEPPolicy */
132     HINSTANCE h_Kernel32 = LoadLibraryW(L"kernel32.dll");
133     if(h_Kernel32)
134     {
135         BOOL (WINAPI * mySetProcessDEPPolicy)( DWORD dwFlags);
136         BOOL (WINAPI * mySetDllDirectoryA)(const char* lpPathName);
137 # define PROCESS_DEP_ENABLE 1
138
139         mySetProcessDEPPolicy = (BOOL WINAPI (*)(DWORD))
140                             GetProcAddress(h_Kernel32, "SetProcessDEPPolicy");
141         if(mySetProcessDEPPolicy)
142             mySetProcessDEPPolicy(PROCESS_DEP_ENABLE);
143
144         /* Do NOT load any library from cwd. */
145         mySetDllDirectoryA = (BOOL WINAPI (*)(const char*)) GetProcAddress(h_Kernel32, "SetDllDirectoryA");
146         if(mySetDllDirectoryA)
147             mySetDllDirectoryA("");
148
149         FreeLibrary(h_Kernel32);
150     }
151
152     /* Args */
153     wchar_t **wargv = CommandLineToArgvW (GetCommandLine (), &argc);
154     if (wargv == NULL)
155         return 1;
156
157     char *argv[argc + 3];
158     BOOL crash_handling = TRUE;
159     int j = 0;
160
161     argv[j++] = FromWide( L"--media-library" );
162     argv[j++] = FromWide( L"--no-ignore-config" );
163 #ifdef TOP_SRCDIR
164     argv[j++] = FromWide (L"--data-path=Z:"TOP_SRCDIR"/share");
165 #endif
166     for (int i = 1; i < argc; i++)
167     {
168         if(!wcscmp(wargv[i], L"--no-crashdump"))
169         {
170             crash_handling = FALSE;
171             continue; /* don't give argument to libvlc */
172         }
173
174         argv[j++] = FromWide (wargv[i]);
175     }
176
177     argc = j;
178     argv[argc] = NULL;
179     LocalFree (wargv);
180
181     if(crash_handling)
182     {
183         static wchar_t path[MAX_PATH];
184         if( S_OK != SHGetFolderPathW( NULL, CSIDL_APPDATA | CSIDL_FLAG_CREATE,
185                     NULL, SHGFP_TYPE_CURRENT, path ) )
186             fprintf( stderr, "Can't open the vlc conf PATH\n" );
187         swprintf( path+wcslen( path ), L"%s", L"\\vlc\\crashdump" );
188         crashdump_path = &path[0];
189
190         check_crashdump();
191         SetUnhandledExceptionFilter(vlc_exception_filter);
192     }
193
194     _setmode( _fileno( stdin ), _O_BINARY ); /* Needed for pipes */
195
196 #else /* UNDER_CE */
197     char **argv, psz_cmdline[wcslen(lpCmdLine) * 4];
198
199     WideCharToMultiByte( CP_UTF8, 0, lpCmdLine, -1,
200                          psz_cmdline, sizeof (psz_cmdline), NULL, NULL );
201
202     argc = parse_cmdline (psz_cmdline, &argv);
203 #endif
204
205     /* Initialize libvlc */
206     libvlc_instance_t *vlc;
207     vlc = libvlc_new (argc, (const char **)argv);
208     if (vlc != NULL)
209     {
210         libvlc_set_user_agent (vlc, "VLC media player", "VLC/"PACKAGE_VERSION);
211         libvlc_add_intf (vlc, "globalhotkeys,none");
212         libvlc_add_intf (vlc, NULL);
213         libvlc_playlist_play (vlc, -1, 0, NULL);
214         libvlc_wait (vlc);
215         libvlc_release (vlc);
216     }
217
218     for (int i = 0; i < argc; i++)
219         free (argv[i]);
220
221     (void)hInstance; (void)hPrevInstance; (void)lpCmdLine; (void)nCmdShow;
222     return 0;
223 }
224
225 #if !defined( UNDER_CE )
226 /* Crashdumps handling */
227 static void check_crashdump(void)
228 {
229     FILE * fd = _wfopen ( crashdump_path, L"r, ccs=UTF-8" );
230     if( !fd )
231         return;
232     fclose( fd );
233
234     int answer = MessageBox( NULL, L"VLC media player just crashed." \
235     " Do you want to send a bug report to the developers team?",
236     L"VLC crash reporting", MB_YESNO);
237
238     if(answer == IDYES)
239     {
240         HINTERNET Hint = InternetOpen(L"VLC Crash Reporter", INTERNET_OPEN_TYPE_PRECONFIG, NULL,NULL,0);
241         if(Hint)
242         {
243             HINTERNET ftp = InternetConnect(Hint, L"crash.videolan.org", INTERNET_DEFAULT_FTP_PORT,
244                                             NULL, NULL, INTERNET_SERVICE_FTP, INTERNET_FLAG_PASSIVE, 0);
245             if(ftp)
246             {
247                 SYSTEMTIME now;
248                 GetSystemTime(&now);
249                 wchar_t remote_file[MAX_PATH];
250                 swprintf( remote_file, L"/crashes-win32/%04d%02d%02d%02d%02d%02d",
251                           now.wYear, now.wMonth, now.wDay, now.wHour, now.wMinute, now.wSecond );
252
253                 if( FtpPutFile( ftp, crashdump_path, remote_file, FTP_TRANSFER_TYPE_BINARY, 0) )
254                     MessageBox( NULL, L"Report sent correctly. Thanks a lot for the help.",
255                                 L"Report sent", MB_OK);
256                 else
257                     MessageBox( NULL, L"There was an error while transferring to the FTP server. "\
258                                 "Thanks a lot for the help anyway.",
259                                 L"Report sending failed", MB_OK);
260                 InternetCloseHandle(ftp);
261             }
262             else
263             {
264                 MessageBox( NULL, L"There was an error while connecting to the FTP server. "\
265                                 "Thanks a lot for the help anyway.",
266                                 L"Report sending failed", MB_OK);
267                 fprintf(stderr,"Can't connect to FTP server 0x%08lu\n",
268                         (unsigned long)GetLastError());
269             }
270             InternetCloseHandle(Hint);
271         }
272         else
273         {
274               MessageBox( NULL, L"There was an error while connecting to Internet. "\
275                                 "Thanks a lot for the help anyway.",
276                                 L"Report sending failed", MB_OK);
277         }
278     }
279
280     _wremove(crashdump_path);
281 }
282
283 /*****************************************************************************
284  * vlc_exception_filter: handles unhandled exceptions, like segfaults
285  *****************************************************************************/
286 LONG WINAPI vlc_exception_filter(struct _EXCEPTION_POINTERS *lpExceptionInfo)
287 {
288     if(IsDebuggerPresent())
289     {
290         //If a debugger is present, pass the exception to the debugger with EXCEPTION_CONTINUE_SEARCH
291         return EXCEPTION_CONTINUE_SEARCH;
292     }
293     else
294     {
295         fprintf( stderr, "unhandled vlc exception\n" );
296
297         FILE * fd = _wfopen ( crashdump_path, L"w, ccs=UTF-8" );
298
299         if( !fd )
300         {
301             fprintf( stderr, "\nerror while opening file" );
302             exit( 1 );
303         }
304
305         OSVERSIONINFO osvi;
306         ZeroMemory( &osvi, sizeof(OSVERSIONINFO) );
307         osvi.dwOSVersionInfoSize = sizeof( OSVERSIONINFO );
308         GetVersionEx( &osvi );
309
310         fwprintf( fd, L"[version]\nOS=%d.%d.%d.%d.%s\nVLC=" VERSION_MESSAGE, osvi.dwMajorVersion,
311                                                                osvi.dwMinorVersion,
312                                                                osvi.dwBuildNumber,
313                                                                osvi.dwPlatformId,
314                                                                osvi.szCSDVersion);
315
316         const CONTEXT *const pContext = (const CONTEXT *)lpExceptionInfo->ContextRecord;
317         const EXCEPTION_RECORD *const pException = (const EXCEPTION_RECORD *)lpExceptionInfo->ExceptionRecord;
318         /*No nested exceptions for now*/
319         fwprintf( fd, L"\n\n[exceptions]\n%08x at %px",pException->ExceptionCode,
320                                                 pException->ExceptionAddress );
321
322         for( unsigned int i = 0; i < pException->NumberParameters; i++ )
323             fwprintf( fd, L" | %p", pException->ExceptionInformation[i] );
324
325 #ifdef WIN64
326         fwprintf( fd, L"\n\n[context]\nRDI:%px\nRSI:%px\n" \
327                     "RBX:%px\nRDX:%px\nRCX:%px\nRAX:%px\n" \
328                     "RBP:%px\nRIP:%px\nRSP:%px\nR8:%px\n" \
329                     "R9:%px\nR10:%px\nR11:%px\nR12:%px\n" \
330                     "R13:%px\nR14:%px\nR15:%px\n",
331                         pContext->Rdi,pContext->Rsi,pContext->Rbx,
332                         pContext->Rdx,pContext->Rcx,pContext->Rax,
333                         pContext->Rbp,pContext->Rip,pContext->Rsp,
334                         pContext->R8,pContext->R9,pContext->R10,
335                         pContext->R11,pContext->R12,pContext->R13,
336                         pContext->R14,pContext->R15 );
337 #else
338         fwprintf( fd, L"\n\n[context]\nEDI:%px\nESI:%px\n" \
339                     "EBX:%px\nEDX:%px\nECX:%px\nEAX:%px\n" \
340                     "EBP:%px\nEIP:%px\nESP:%px\n",
341                         pContext->Edi,pContext->Esi,pContext->Ebx,
342                         pContext->Edx,pContext->Ecx,pContext->Eax,
343                         pContext->Ebp,pContext->Eip,pContext->Esp );
344 #endif
345
346         HANDLE hpid = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ,
347                                         FALSE, GetCurrentProcessId());
348         if (hpid) {
349             HMODULE mods[1024];
350             DWORD size;
351             if (EnumProcessModules(hpid, mods, sizeof(mods), &size)) {
352                 fwprintf( fd, L"\n\n[modules]\n" );
353                 for (unsigned int i = 0; i < size / sizeof(HMODULE); i++) {
354                     wchar_t module[ 256 ];
355                     GetModuleFileName(mods[i], module, 256);
356                     fwprintf( fd, L"%p|%s\n", mods[i], module);
357                 }
358             }
359             CloseHandle(hpid);
360         }
361
362
363         fwprintf( fd, L"\n[stacktrace]\n#EIP|base|module\n" );
364
365 #ifdef WIN64
366         LPCVOID caller = (LPCVOID)pContext->Rip;
367         LPVOID *pBase  = (LPVOID*)pContext->Rbp;
368 #else
369         LPVOID *pBase  = (LPVOID*)pContext->Ebp;
370         LPCVOID caller = (LPCVOID)pContext->Eip;
371 #endif
372         for( unsigned frame = 0; frame <= 100; frame++ )
373         {
374             MEMORY_BASIC_INFORMATION mbi;
375             wchar_t module[ 256 ];
376             VirtualQuery( caller, &mbi, sizeof( mbi ) ) ;
377             GetModuleFileName( mbi.AllocationBase, module, 256 );
378             fwprintf( fd, L"%p|%s\n", caller, module );
379
380             /*The last BP points to NULL!*/
381             caller = *(pBase + 1);
382             if( !caller )
383                 break;
384             pBase = *pBase;
385         }
386
387         fclose( fd );
388         fflush( stderr );
389         exit( 1 );
390     }
391 }
392 #endif