2008-08-24 17:42:39 +08:00
|
|
|
/*****************************************************************************
|
2011-05-20 07:40:18 +08:00
|
|
|
* winvlc.c: the Windows VLC media player
|
2008-08-24 17:42:39 +08:00
|
|
|
*****************************************************************************
|
2011-05-20 07:40:18 +08:00
|
|
|
* Copyright (C) 1998-2011 the VideoLAN team
|
2008-08-24 17:42:39 +08:00
|
|
|
*
|
|
|
|
* Authors: Vincent Seguin <seguin@via.ecp.fr>
|
|
|
|
* Samuel Hocevar <sam@zoy.org>
|
|
|
|
* Gildas Bazin <gbazin@videolan.org>
|
|
|
|
* Derk-Jan Hartman <hartman at videolan dot org>
|
|
|
|
* Lots of other people, see the libvlc AUTHORS file
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2014-01-29 00:37:59 +08:00
|
|
|
#ifndef UNICODE
|
2008-08-24 17:42:39 +08:00
|
|
|
#define UNICODE
|
2014-01-29 00:37:59 +08:00
|
|
|
#endif
|
|
|
|
|
2008-08-24 17:42:39 +08:00
|
|
|
#include <vlc/vlc.h>
|
|
|
|
#include <windows.h>
|
2012-01-28 22:56:39 +08:00
|
|
|
#include <shellapi.h>
|
2008-08-24 17:42:39 +08:00
|
|
|
|
2012-09-02 17:14:28 +08:00
|
|
|
#ifndef _WIN32_IE
|
|
|
|
# define _WIN32_IE 0x501
|
|
|
|
#endif
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <io.h>
|
|
|
|
#include <shlobj.h>
|
|
|
|
#include <wininet.h>
|
|
|
|
#define PSAPI_VERSION 1
|
|
|
|
#include <psapi.h>
|
|
|
|
#define HeapEnableTerminationOnCorruption (HEAP_INFORMATION_CLASS)1
|
2009-08-22 17:08:45 +08:00
|
|
|
static void check_crashdump(void);
|
2009-02-01 21:30:40 +08:00
|
|
|
LONG WINAPI vlc_exception_filter(struct _EXCEPTION_POINTERS *lpExceptionInfo);
|
2011-11-17 01:15:49 +08:00
|
|
|
static const wchar_t *crashdump_path;
|
2009-02-01 21:30:40 +08:00
|
|
|
|
2008-08-25 02:17:02 +08:00
|
|
|
static char *FromWide (const wchar_t *wide)
|
2008-08-24 17:42:39 +08:00
|
|
|
{
|
2008-08-25 02:17:02 +08:00
|
|
|
size_t len;
|
|
|
|
len = WideCharToMultiByte (CP_UTF8, 0, wide, -1, NULL, 0, NULL, NULL);
|
2008-08-24 17:42:39 +08:00
|
|
|
|
2008-08-25 02:17:02 +08:00
|
|
|
char *out = (char *)malloc (len);
|
|
|
|
if (out)
|
|
|
|
WideCharToMultiByte (CP_UTF8, 0, wide, -1, out, len, NULL, NULL);
|
|
|
|
return out;
|
2008-08-24 17:42:39 +08:00
|
|
|
}
|
|
|
|
|
2016-11-19 02:07:58 +08:00
|
|
|
#if (_WIN32_WINNT < _WIN32_WINNT_WIN8)
|
|
|
|
static BOOL SetDefaultDllDirectories_(DWORD flags)
|
|
|
|
{
|
|
|
|
HMODULE h = GetModuleHandle(TEXT("kernel32.dll"));
|
|
|
|
if (h == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
2017-02-14 20:25:56 +08:00
|
|
|
BOOL (WINAPI * SetDefaultDllDirectoriesReal)(DWORD);
|
2016-11-19 02:07:58 +08:00
|
|
|
|
|
|
|
SetDefaultDllDirectoriesReal = GetProcAddress(h,
|
|
|
|
"SetDefaultDllDirectories");
|
|
|
|
if (SetDefaultDllDirectoriesReal == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return SetDefaultDllDirectoriesReal(flags);
|
|
|
|
}
|
|
|
|
# define SetDefaultDllDirectories SetDefaultDllDirectories_
|
|
|
|
#endif
|
|
|
|
|
2008-08-25 02:17:02 +08:00
|
|
|
int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
|
|
|
|
LPSTR lpCmdLine,
|
|
|
|
int nCmdShow )
|
2008-08-24 17:42:39 +08:00
|
|
|
{
|
2010-02-01 05:40:16 +08:00
|
|
|
int argc;
|
2011-07-29 00:47:50 +08:00
|
|
|
|
2012-07-13 03:39:44 +08:00
|
|
|
/* VLC does not change the thread locale, so gettext/libintil will use the
|
|
|
|
* user default locale as reference. */
|
|
|
|
/* gettext versions 0.18-0.18.1 will use the Windows Vista locale name
|
|
|
|
* if the GETTEXT_MUI environment variable is set. If not set or if running
|
|
|
|
* on Windows 2000/XP/2003 an hard-coded language ID list is used. This
|
|
|
|
* putenv() call may become redundant with later versions of gettext. */
|
|
|
|
putenv("GETTEXT_MUI=1");
|
2011-07-29 00:47:50 +08:00
|
|
|
#ifdef TOP_BUILDDIR
|
|
|
|
putenv("VLC_PLUGIN_PATH=Z:"TOP_BUILDDIR"/modules");
|
2012-03-21 02:41:56 +08:00
|
|
|
putenv("VLC_DATA_PATH=Z:"TOP_SRCDIR"/share");
|
2011-07-29 00:47:50 +08:00
|
|
|
#endif
|
|
|
|
|
2014-02-08 05:05:36 +08:00
|
|
|
SetErrorMode(SEM_FAILCRITICALERRORS);
|
2010-01-25 03:05:30 +08:00
|
|
|
HeapSetInformation(NULL, HeapEnableTerminationOnCorruption, NULL, 0);
|
2010-07-02 04:17:38 +08:00
|
|
|
|
2017-03-10 20:58:57 +08:00
|
|
|
/* SetProcessDEPPolicy, SetDllDirectory, & Co. */
|
2016-11-19 02:10:25 +08:00
|
|
|
HINSTANCE h_Kernel32 = GetModuleHandle(TEXT("kernel32.dll"));
|
|
|
|
if (h_Kernel32 != NULL)
|
2010-07-02 04:17:38 +08:00
|
|
|
{
|
2017-03-10 20:58:57 +08:00
|
|
|
/* Enable DEP */
|
2010-07-02 04:17:38 +08:00
|
|
|
# define PROCESS_DEP_ENABLE 1
|
2017-03-10 20:58:57 +08:00
|
|
|
BOOL (WINAPI * mySetProcessDEPPolicy)( DWORD dwFlags);
|
2014-10-22 21:30:09 +08:00
|
|
|
mySetProcessDEPPolicy = (BOOL (WINAPI *)(DWORD))
|
2010-07-02 04:17:38 +08:00
|
|
|
GetProcAddress(h_Kernel32, "SetProcessDEPPolicy");
|
|
|
|
if(mySetProcessDEPPolicy)
|
|
|
|
mySetProcessDEPPolicy(PROCESS_DEP_ENABLE);
|
2011-09-04 00:26:59 +08:00
|
|
|
|
|
|
|
/* Do NOT load any library from cwd. */
|
2017-03-10 20:58:57 +08:00
|
|
|
BOOL (WINAPI * mySetDllDirectoryA)(const char* lpPathName);
|
2014-10-22 21:30:09 +08:00
|
|
|
mySetDllDirectoryA = (BOOL (WINAPI *)(const char*))
|
2012-06-09 02:02:55 +08:00
|
|
|
GetProcAddress(h_Kernel32, "SetDllDirectoryA");
|
2011-09-04 00:26:59 +08:00
|
|
|
if(mySetDllDirectoryA)
|
|
|
|
mySetDllDirectoryA("");
|
2010-07-02 04:17:38 +08:00
|
|
|
}
|
|
|
|
|
2017-03-10 20:58:57 +08:00
|
|
|
/***
|
|
|
|
* The LoadLibrary* calls from the modules and the 3rd party code
|
|
|
|
* will search in SYSTEM32 only
|
|
|
|
* */
|
2016-11-19 02:07:58 +08:00
|
|
|
SetDefaultDllDirectories(LOAD_LIBRARY_SEARCH_SYSTEM32);
|
|
|
|
|
2011-05-20 07:40:18 +08:00
|
|
|
/* Args */
|
2008-08-25 02:17:02 +08:00
|
|
|
wchar_t **wargv = CommandLineToArgvW (GetCommandLine (), &argc);
|
|
|
|
if (wargv == NULL)
|
|
|
|
return 1;
|
2008-08-24 17:42:39 +08:00
|
|
|
|
2015-03-03 02:28:14 +08:00
|
|
|
char *argv[argc + 3];
|
2009-07-06 21:58:23 +08:00
|
|
|
BOOL crash_handling = TRUE;
|
|
|
|
int j = 0;
|
2013-09-07 01:49:36 +08:00
|
|
|
char *lang = NULL;
|
2009-10-05 00:56:20 +08:00
|
|
|
|
2010-10-21 01:54:54 +08:00
|
|
|
argv[j++] = FromWide( L"--media-library" );
|
2009-10-05 00:56:20 +08:00
|
|
|
argv[j++] = FromWide( L"--no-ignore-config" );
|
|
|
|
for (int i = 1; i < argc; i++)
|
2009-07-06 21:58:23 +08:00
|
|
|
{
|
|
|
|
if(!wcscmp(wargv[i], L"--no-crashdump"))
|
|
|
|
{
|
|
|
|
crash_handling = FALSE;
|
2010-10-23 00:08:25 +08:00
|
|
|
continue; /* don't give argument to libvlc */
|
2009-07-06 21:58:23 +08:00
|
|
|
}
|
2013-09-07 01:49:36 +08:00
|
|
|
if (!wcsncmp(wargv[i], L"--language", 10) )
|
|
|
|
{
|
|
|
|
if (i < argc - 1 && wcsncmp( wargv[i + 1], L"--", 2 ))
|
|
|
|
lang = FromWide (wargv[++i]);
|
|
|
|
continue;
|
|
|
|
}
|
2010-10-23 00:08:25 +08:00
|
|
|
|
|
|
|
argv[j++] = FromWide (wargv[i]);
|
2009-07-06 21:58:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
argc = j;
|
2008-08-25 02:17:02 +08:00
|
|
|
argv[argc] = NULL;
|
|
|
|
LocalFree (wargv);
|
2009-07-06 21:58:23 +08:00
|
|
|
|
|
|
|
if(crash_handling)
|
|
|
|
{
|
2011-11-17 01:15:49 +08:00
|
|
|
static wchar_t path[MAX_PATH];
|
|
|
|
if( S_OK != SHGetFolderPathW( NULL, CSIDL_APPDATA | CSIDL_FLAG_CREATE,
|
|
|
|
NULL, SHGFP_TYPE_CURRENT, path ) )
|
|
|
|
fprintf( stderr, "Can't open the vlc conf PATH\n" );
|
2013-01-15 23:03:48 +08:00
|
|
|
_snwprintf( path+wcslen( path ), MAX_PATH, L"%s", L"\\vlc\\crashdump" );
|
2011-11-17 01:15:49 +08:00
|
|
|
crashdump_path = &path[0];
|
|
|
|
|
2009-07-06 21:58:23 +08:00
|
|
|
check_crashdump();
|
|
|
|
SetUnhandledExceptionFilter(vlc_exception_filter);
|
|
|
|
}
|
|
|
|
|
2014-10-22 21:31:30 +08:00
|
|
|
_setmode( _fileno( stdin ), _O_BINARY ); /* Needed for pipes */
|
2011-11-23 00:09:51 +08:00
|
|
|
|
2013-09-07 01:49:36 +08:00
|
|
|
/* */
|
|
|
|
if (!lang)
|
|
|
|
{
|
|
|
|
HKEY h_key;
|
|
|
|
if( RegOpenKeyEx( HKEY_CURRENT_USER, TEXT("Software\\VideoLAN\\VLC\\"), 0, KEY_READ, &h_key )
|
|
|
|
== ERROR_SUCCESS )
|
|
|
|
{
|
|
|
|
TCHAR szData[256];
|
|
|
|
DWORD len = 256;
|
|
|
|
if( RegQueryValueEx( h_key, TEXT("Lang"), NULL, NULL, (LPBYTE) &szData, &len ) == ERROR_SUCCESS )
|
|
|
|
lang = FromWide( szData );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lang && strncmp( lang, "auto", 4 ) )
|
|
|
|
{
|
2013-09-08 03:04:22 +08:00
|
|
|
char tmp[11];
|
|
|
|
snprintf(tmp, 11, "LANG=%s", lang);
|
|
|
|
putenv(tmp);
|
2013-09-07 01:49:36 +08:00
|
|
|
}
|
|
|
|
free(lang);
|
|
|
|
|
2008-08-24 17:42:39 +08:00
|
|
|
/* Initialize libvlc */
|
2008-08-26 22:55:18 +08:00
|
|
|
libvlc_instance_t *vlc;
|
2010-02-01 05:40:16 +08:00
|
|
|
vlc = libvlc_new (argc, (const char **)argv);
|
2008-08-24 17:42:39 +08:00
|
|
|
if (vlc != NULL)
|
|
|
|
{
|
2013-06-16 16:11:55 +08:00
|
|
|
libvlc_set_app_id (vlc, "org.VideoLAN.VLC", PACKAGE_VERSION,
|
|
|
|
PACKAGE_NAME);
|
2012-02-04 01:24:54 +08:00
|
|
|
libvlc_set_user_agent (vlc, "VLC media player", "VLC/"PACKAGE_VERSION);
|
2012-11-02 04:55:22 +08:00
|
|
|
libvlc_add_intf (vlc, "hotkeys,none");
|
2010-01-05 01:13:46 +08:00
|
|
|
libvlc_add_intf (vlc, "globalhotkeys,none");
|
|
|
|
libvlc_add_intf (vlc, NULL);
|
2010-01-24 17:51:42 +08:00
|
|
|
libvlc_playlist_play (vlc, -1, 0, NULL);
|
2008-08-24 17:42:39 +08:00
|
|
|
libvlc_wait (vlc);
|
|
|
|
libvlc_release (vlc);
|
|
|
|
}
|
2013-03-14 23:57:37 +08:00
|
|
|
else
|
|
|
|
MessageBox (NULL, TEXT("VLC media player could not start.\n"
|
|
|
|
"Either the command line options were invalid or no plugins were found.\n"),
|
|
|
|
TEXT("VLC media player"),
|
|
|
|
MB_OK|MB_ICONERROR);
|
|
|
|
|
2008-08-24 17:42:39 +08:00
|
|
|
|
2008-08-25 02:17:02 +08:00
|
|
|
for (int i = 0; i < argc; i++)
|
|
|
|
free (argv[i]);
|
|
|
|
|
|
|
|
(void)hInstance; (void)hPrevInstance; (void)lpCmdLine; (void)nCmdShow;
|
2010-02-01 05:40:16 +08:00
|
|
|
return 0;
|
2008-08-24 17:42:39 +08:00
|
|
|
}
|
2009-02-01 21:30:40 +08:00
|
|
|
|
2011-05-20 07:40:18 +08:00
|
|
|
/* Crashdumps handling */
|
2011-11-17 01:15:49 +08:00
|
|
|
static void check_crashdump(void)
|
2009-02-25 04:37:29 +08:00
|
|
|
{
|
2014-08-14 02:09:20 +08:00
|
|
|
wchar_t mv_crashdump_path[MAX_PATH];
|
|
|
|
wcscpy (mv_crashdump_path, crashdump_path);
|
|
|
|
wcscat (mv_crashdump_path, L".mv");
|
|
|
|
|
|
|
|
if (_wrename (crashdump_path, mv_crashdump_path))
|
|
|
|
return;
|
|
|
|
|
|
|
|
FILE * fd = _wfopen ( mv_crashdump_path, L"r, ccs=UTF-8" );
|
2011-11-17 01:15:49 +08:00
|
|
|
if( !fd )
|
|
|
|
return;
|
|
|
|
fclose( fd );
|
2009-02-25 04:37:29 +08:00
|
|
|
|
2012-12-05 07:49:46 +08:00
|
|
|
int answer = MessageBox( NULL, L"Ooops: VLC media player just crashed.\n" \
|
|
|
|
"Would you like to send a bug report to the developers team?",
|
2011-11-17 01:15:49 +08:00
|
|
|
L"VLC crash reporting", MB_YESNO);
|
2009-02-25 04:37:29 +08:00
|
|
|
|
2011-11-17 01:15:49 +08:00
|
|
|
if(answer == IDYES)
|
2009-02-25 04:37:29 +08:00
|
|
|
{
|
2017-03-10 21:20:00 +08:00
|
|
|
HMODULE hWininet = LoadLibrary(TEXT("wininet.dll"));
|
|
|
|
if (hWininet == NULL)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "There was an error loading the network"
|
|
|
|
" 0x%08lx\n", (unsigned long)GetLastError());
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
HINTERNET (WINAPI *InternetOpenW_)(LPCWSTR ,DWORD dwAccessType,LPCWSTR lpszProxy,LPCWSTR lpszProxyBypass,DWORD dwFlags);
|
|
|
|
HINTERNET (WINAPI *InternetConnectW_)(HINTERNET hInternet,LPCWSTR lpszServerName,INTERNET_PORT nServerPort,LPCWSTR lpszUserName,LPCWSTR lpszPassword,DWORD dwService,DWORD dwFlags,DWORD_PTR dwContext);
|
|
|
|
BOOL (WINAPI *InternetCloseHandle_)(HINTERNET hInternet);
|
|
|
|
BOOL (WINAPI *FtpPutFileW_)(HINTERNET hConnect,LPCWSTR lpszLocalFile,LPCWSTR lpszNewRemoteFile,DWORD dwFlags,DWORD_PTR dwContext);
|
|
|
|
InternetOpenW_ = (void*)GetProcAddress(hWininet, "InternetOpenW");
|
|
|
|
InternetConnectW_ = (void*)GetProcAddress(hWininet, "InternetConnectW");
|
|
|
|
InternetCloseHandle_ = (void*)GetProcAddress(hWininet, "InternetCloseHandle");
|
|
|
|
FtpPutFileW_ = (void*)GetProcAddress(hWininet, "FtpPutFileW");
|
|
|
|
if (!InternetOpenW_ || !InternetConnectW_ || !InternetCloseHandle_ || !FtpPutFileW_)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "There was an error loading the network API entries"
|
|
|
|
" 0x%08lx\n", (unsigned long)GetLastError());
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
HINTERNET Hint = InternetOpenW_(L"VLC Crash Reporter",
|
2012-06-09 02:02:55 +08:00
|
|
|
INTERNET_OPEN_TYPE_PRECONFIG, NULL,NULL,0);
|
2011-11-17 01:15:49 +08:00
|
|
|
if(Hint)
|
2009-02-25 04:37:29 +08:00
|
|
|
{
|
2017-03-10 21:20:00 +08:00
|
|
|
HINTERNET ftp = InternetConnectW_(Hint, L"crash.videolan.org",
|
2012-06-10 05:53:17 +08:00
|
|
|
INTERNET_DEFAULT_FTP_PORT, NULL, NULL,
|
2012-06-09 02:02:55 +08:00
|
|
|
INTERNET_SERVICE_FTP, INTERNET_FLAG_PASSIVE, 0);
|
2011-11-17 01:15:49 +08:00
|
|
|
if(ftp)
|
2009-02-25 04:37:29 +08:00
|
|
|
{
|
2011-11-17 01:15:49 +08:00
|
|
|
SYSTEMTIME now;
|
|
|
|
GetSystemTime(&now);
|
|
|
|
wchar_t remote_file[MAX_PATH];
|
2013-01-15 23:03:48 +08:00
|
|
|
_snwprintf(remote_file, MAX_PATH,
|
2012-06-09 02:02:55 +08:00
|
|
|
L"/crashes-win32/%04d%02d%02d%02d%02d%02d",
|
|
|
|
now.wYear, now.wMonth, now.wDay, now.wHour,
|
|
|
|
now.wMinute, now.wSecond );
|
|
|
|
|
2017-03-10 21:20:00 +08:00
|
|
|
if( FtpPutFileW_( ftp, mv_crashdump_path, remote_file,
|
2012-06-09 02:02:55 +08:00
|
|
|
FTP_TRANSFER_TYPE_BINARY, 0) )
|
2016-10-11 06:01:50 +08:00
|
|
|
fprintf(stderr, "Report sent correctly to FTP.\n");
|
2009-02-25 04:37:29 +08:00
|
|
|
else
|
2016-09-24 17:06:30 +08:00
|
|
|
fprintf(stderr,"Couldn't send report to FTP server\n");
|
2016-09-24 00:34:56 +08:00
|
|
|
|
2017-03-10 21:20:00 +08:00
|
|
|
InternetCloseHandle_(ftp);
|
2009-02-25 04:37:29 +08:00
|
|
|
}
|
2011-05-20 05:42:34 +08:00
|
|
|
else
|
|
|
|
{
|
2016-10-12 05:03:42 +08:00
|
|
|
fprintf(stderr, "Can't connect to FTP server 0x%08lx\n",
|
2011-11-17 01:15:49 +08:00
|
|
|
(unsigned long)GetLastError());
|
2011-05-20 05:42:34 +08:00
|
|
|
}
|
2017-03-10 21:20:00 +08:00
|
|
|
InternetCloseHandle_(Hint);
|
2011-11-17 01:15:49 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-10-12 05:03:42 +08:00
|
|
|
fprintf(stderr, "There was an error while connecting to the "
|
|
|
|
"Internet 0x%08lx\n", (unsigned long)GetLastError());
|
2009-02-25 04:37:29 +08:00
|
|
|
}
|
2017-03-10 21:20:00 +08:00
|
|
|
done:
|
|
|
|
if (hWininet != NULL)
|
|
|
|
FreeLibrary(hWininet);
|
2016-10-11 06:01:50 +08:00
|
|
|
MessageBox( NULL, L"Thanks a lot for helping improving VLC!",
|
|
|
|
L"VLC crash report" , MB_OK);
|
2009-02-25 04:37:29 +08:00
|
|
|
}
|
2011-11-17 01:15:49 +08:00
|
|
|
|
2014-08-14 02:09:20 +08:00
|
|
|
_wremove(mv_crashdump_path);
|
2009-02-25 04:37:29 +08:00
|
|
|
}
|
|
|
|
|
2009-02-01 21:30:40 +08:00
|
|
|
/*****************************************************************************
|
|
|
|
* vlc_exception_filter: handles unhandled exceptions, like segfaults
|
|
|
|
*****************************************************************************/
|
|
|
|
LONG WINAPI vlc_exception_filter(struct _EXCEPTION_POINTERS *lpExceptionInfo)
|
|
|
|
{
|
2009-04-27 20:20:03 +08:00
|
|
|
if(IsDebuggerPresent())
|
2009-02-25 04:37:29 +08:00
|
|
|
{
|
2012-06-09 02:02:55 +08:00
|
|
|
//If a debugger is present, pass the exception to the debugger
|
|
|
|
//with EXCEPTION_CONTINUE_SEARCH
|
2009-04-27 20:20:03 +08:00
|
|
|
return EXCEPTION_CONTINUE_SEARCH;
|
2009-02-25 04:37:29 +08:00
|
|
|
}
|
2009-04-27 20:20:03 +08:00
|
|
|
else
|
2009-02-01 21:30:40 +08:00
|
|
|
{
|
2009-04-27 20:20:03 +08:00
|
|
|
fprintf( stderr, "unhandled vlc exception\n" );
|
2009-02-01 21:30:40 +08:00
|
|
|
|
2011-11-17 01:15:49 +08:00
|
|
|
FILE * fd = _wfopen ( crashdump_path, L"w, ccs=UTF-8" );
|
2009-04-27 20:20:03 +08:00
|
|
|
|
|
|
|
if( !fd )
|
|
|
|
{
|
|
|
|
fprintf( stderr, "\nerror while opening file" );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
2009-02-01 21:30:40 +08:00
|
|
|
|
2009-04-27 20:20:03 +08:00
|
|
|
OSVERSIONINFO osvi;
|
|
|
|
ZeroMemory( &osvi, sizeof(OSVERSIONINFO) );
|
|
|
|
osvi.dwOSVersionInfoSize = sizeof( OSVERSIONINFO );
|
|
|
|
GetVersionEx( &osvi );
|
|
|
|
|
2014-08-12 02:51:22 +08:00
|
|
|
fwprintf( fd, L"[version]\nOS=%d.%d.%d.%d.%ls\nVLC=" VERSION_MESSAGE,
|
2012-06-09 02:02:55 +08:00
|
|
|
osvi.dwMajorVersion, osvi.dwMinorVersion, osvi.dwBuildNumber,
|
|
|
|
osvi.dwPlatformId, osvi.szCSDVersion);
|
|
|
|
|
|
|
|
const CONTEXT *const pContext = (const CONTEXT *)
|
|
|
|
lpExceptionInfo->ContextRecord;
|
|
|
|
const EXCEPTION_RECORD *const pException = (const EXCEPTION_RECORD *)
|
|
|
|
lpExceptionInfo->ExceptionRecord;
|
|
|
|
/* No nested exceptions for now */
|
|
|
|
fwprintf( fd, L"\n\n[exceptions]\n%08x at %px",
|
|
|
|
pException->ExceptionCode, pException->ExceptionAddress );
|
2009-02-01 21:30:40 +08:00
|
|
|
|
2011-11-14 11:13:38 +08:00
|
|
|
for( unsigned int i = 0; i < pException->NumberParameters; i++ )
|
|
|
|
fwprintf( fd, L" | %p", pException->ExceptionInformation[i] );
|
|
|
|
|
2013-06-05 21:41:18 +08:00
|
|
|
#ifdef _WIN64
|
2011-11-14 11:13:38 +08:00
|
|
|
fwprintf( fd, L"\n\n[context]\nRDI:%px\nRSI:%px\n" \
|
|
|
|
"RBX:%px\nRDX:%px\nRCX:%px\nRAX:%px\n" \
|
|
|
|
"RBP:%px\nRIP:%px\nRSP:%px\nR8:%px\n" \
|
|
|
|
"R9:%px\nR10:%px\nR11:%px\nR12:%px\n" \
|
|
|
|
"R13:%px\nR14:%px\nR15:%px\n",
|
|
|
|
pContext->Rdi,pContext->Rsi,pContext->Rbx,
|
|
|
|
pContext->Rdx,pContext->Rcx,pContext->Rax,
|
|
|
|
pContext->Rbp,pContext->Rip,pContext->Rsp,
|
|
|
|
pContext->R8,pContext->R9,pContext->R10,
|
|
|
|
pContext->R11,pContext->R12,pContext->R13,
|
|
|
|
pContext->R14,pContext->R15 );
|
|
|
|
#else
|
|
|
|
fwprintf( fd, L"\n\n[context]\nEDI:%px\nESI:%px\n" \
|
|
|
|
"EBX:%px\nEDX:%px\nECX:%px\nEAX:%px\n" \
|
|
|
|
"EBP:%px\nEIP:%px\nESP:%px\n",
|
2009-04-27 20:20:03 +08:00
|
|
|
pContext->Edi,pContext->Esi,pContext->Ebx,
|
|
|
|
pContext->Edx,pContext->Ecx,pContext->Eax,
|
|
|
|
pContext->Ebp,pContext->Eip,pContext->Esp );
|
2011-11-14 11:13:38 +08:00
|
|
|
#endif
|
2009-03-30 01:09:23 +08:00
|
|
|
|
2009-04-27 20:20:03 +08:00
|
|
|
fwprintf( fd, L"\n[stacktrace]\n#EIP|base|module\n" );
|
2009-02-01 21:30:40 +08:00
|
|
|
|
2013-06-05 21:41:18 +08:00
|
|
|
#ifdef _WIN64
|
2011-11-14 11:13:38 +08:00
|
|
|
LPCVOID caller = (LPCVOID)pContext->Rip;
|
|
|
|
LPVOID *pBase = (LPVOID*)pContext->Rbp;
|
|
|
|
#else
|
|
|
|
LPVOID *pBase = (LPVOID*)pContext->Ebp;
|
|
|
|
LPCVOID caller = (LPCVOID)pContext->Eip;
|
|
|
|
#endif
|
|
|
|
for( unsigned frame = 0; frame <= 100; frame++ )
|
2009-04-27 20:20:03 +08:00
|
|
|
{
|
2011-11-14 11:13:38 +08:00
|
|
|
MEMORY_BASIC_INFORMATION mbi;
|
|
|
|
wchar_t module[ 256 ];
|
|
|
|
VirtualQuery( caller, &mbi, sizeof( mbi ) ) ;
|
|
|
|
GetModuleFileName( mbi.AllocationBase, module, 256 );
|
2014-08-12 02:51:22 +08:00
|
|
|
fwprintf( fd, L"%p|%ls\n", caller, module );
|
2011-11-14 11:13:38 +08:00
|
|
|
|
2014-10-21 00:06:13 +08:00
|
|
|
if( IsBadReadPtr( pBase, 2 * sizeof( void* ) ) )
|
|
|
|
break;
|
|
|
|
|
2011-11-14 11:13:38 +08:00
|
|
|
/*The last BP points to NULL!*/
|
|
|
|
caller = *(pBase + 1);
|
|
|
|
if( !caller )
|
|
|
|
break;
|
|
|
|
pBase = *pBase;
|
2014-08-12 02:49:31 +08:00
|
|
|
if( !pBase )
|
|
|
|
break;
|
2011-11-14 11:13:38 +08:00
|
|
|
}
|
2009-04-27 20:20:03 +08:00
|
|
|
|
2012-08-23 22:01:27 +08:00
|
|
|
HANDLE hpid = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ,
|
|
|
|
FALSE, GetCurrentProcessId());
|
|
|
|
if (hpid) {
|
|
|
|
HMODULE mods[1024];
|
|
|
|
DWORD size;
|
|
|
|
if (EnumProcessModules(hpid, mods, sizeof(mods), &size)) {
|
|
|
|
fwprintf( fd, L"\n\n[modules]\n" );
|
|
|
|
for (unsigned int i = 0; i < size / sizeof(HMODULE); i++) {
|
|
|
|
wchar_t module[ 256 ];
|
|
|
|
GetModuleFileName(mods[i], module, 256);
|
2014-08-12 02:51:22 +08:00
|
|
|
fwprintf( fd, L"%p|%ls\n", mods[i], module);
|
2012-08-23 22:01:27 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
CloseHandle(hpid);
|
|
|
|
}
|
|
|
|
|
2009-04-27 20:20:03 +08:00
|
|
|
fclose( fd );
|
|
|
|
fflush( stderr );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
2009-02-01 21:30:40 +08:00
|
|
|
}
|