These libraries are required now that we don't load the functions from them
dynamically (see e78be14ac1
)
Closes #17180
295 lines
9.2 KiB
C++
295 lines
9.2 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/msw/dlmsw.cpp
|
|
// Purpose: Win32-specific part of wxDynamicLibrary and related classes
|
|
// Author: Vadim Zeitlin
|
|
// Modified by:
|
|
// Created: 2005-01-10 (partly extracted from common/dynlib.cpp)
|
|
// Copyright: (c) 1998-2005 Vadim Zeitlin <vadim@wxwindows.org>
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ============================================================================
|
|
// declarations
|
|
// ============================================================================
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// headers
|
|
// ----------------------------------------------------------------------------
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#if wxUSE_DYNLIB_CLASS
|
|
|
|
#include "wx/msw/private.h"
|
|
#include "wx/msw/debughlp.h"
|
|
#include "wx/filename.h"
|
|
|
|
// For MSVC we can link in the required library explicitly, for the other
|
|
// compilers (e.g. MinGW) this needs to be done at makefiles level.
|
|
#ifdef __VISUALC__
|
|
#pragma comment(lib, "version")
|
|
#endif
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// private classes
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// class used to create wxDynamicLibraryDetails objects
|
|
class WXDLLIMPEXP_BASE wxDynamicLibraryDetailsCreator
|
|
{
|
|
public:
|
|
// type of parameters being passed to EnumModulesProc
|
|
struct EnumModulesProcParams
|
|
{
|
|
wxDynamicLibraryDetailsArray *dlls;
|
|
};
|
|
|
|
static BOOL CALLBACK
|
|
EnumModulesProc(const wxChar* name, DWORD64 base, ULONG size, PVOID data);
|
|
};
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// DLL version operations
|
|
// ----------------------------------------------------------------------------
|
|
|
|
static wxString GetFileVersion(const wxString& filename)
|
|
{
|
|
wxString ver;
|
|
wxChar *pc = const_cast<wxChar *>((const wxChar*) filename.t_str());
|
|
|
|
DWORD dummy;
|
|
DWORD sizeVerInfo = ::GetFileVersionInfoSize(pc, &dummy);
|
|
if ( sizeVerInfo )
|
|
{
|
|
wxCharBuffer buf(sizeVerInfo);
|
|
if ( ::GetFileVersionInfo(pc, 0, sizeVerInfo, buf.data()) )
|
|
{
|
|
void *pVer;
|
|
UINT sizeInfo;
|
|
if ( ::VerQueryValue(buf.data(),
|
|
const_cast<wxChar *>(wxT("\\")),
|
|
&pVer,
|
|
&sizeInfo) )
|
|
{
|
|
VS_FIXEDFILEINFO *info = (VS_FIXEDFILEINFO *)pVer;
|
|
ver.Printf(wxT("%d.%d.%d.%d"),
|
|
HIWORD(info->dwFileVersionMS),
|
|
LOWORD(info->dwFileVersionMS),
|
|
HIWORD(info->dwFileVersionLS),
|
|
LOWORD(info->dwFileVersionLS));
|
|
}
|
|
}
|
|
}
|
|
|
|
return ver;
|
|
}
|
|
|
|
// ============================================================================
|
|
// wxDynamicLibraryDetailsCreator implementation
|
|
// ============================================================================
|
|
|
|
/* static */
|
|
BOOL CALLBACK
|
|
wxDynamicLibraryDetailsCreator::EnumModulesProc(const wxChar* name,
|
|
DWORD64 base,
|
|
ULONG size,
|
|
void *data)
|
|
{
|
|
EnumModulesProcParams *params = (EnumModulesProcParams *)data;
|
|
|
|
wxDynamicLibraryDetails *details = new wxDynamicLibraryDetails;
|
|
|
|
// fill in simple properties
|
|
details->m_name = name;
|
|
details->m_address = wxUIntToPtr(base);
|
|
details->m_length = size;
|
|
|
|
// to get the version, we first need the full path
|
|
const HMODULE hmod = wxDynamicLibrary::MSWGetModuleHandle
|
|
(
|
|
details->m_name,
|
|
details->m_address
|
|
);
|
|
if ( hmod )
|
|
{
|
|
wxString fullname = wxGetFullModuleName(hmod);
|
|
if ( !fullname.empty() )
|
|
{
|
|
details->m_path = fullname;
|
|
details->m_version = GetFileVersion(fullname);
|
|
}
|
|
}
|
|
|
|
params->dlls->Add(details);
|
|
|
|
// continue enumeration (returning FALSE would have stopped it)
|
|
return TRUE;
|
|
}
|
|
|
|
// ============================================================================
|
|
// wxDynamicLibrary implementation
|
|
// ============================================================================
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// misc functions
|
|
// ----------------------------------------------------------------------------
|
|
|
|
wxDllType wxDynamicLibrary::GetProgramHandle()
|
|
{
|
|
return (wxDllType)::GetModuleHandle(NULL);
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// loading/unloading DLLs
|
|
// ----------------------------------------------------------------------------
|
|
|
|
#ifndef MAX_PATH
|
|
#define MAX_PATH 260 // from VC++ headers
|
|
#endif
|
|
|
|
/* static */
|
|
wxDllType
|
|
wxDynamicLibrary::RawLoad(const wxString& libname, int flags)
|
|
{
|
|
if (flags & wxDL_GET_LOADED)
|
|
return ::GetModuleHandle(libname.t_str());
|
|
|
|
return ::LoadLibrary(libname.t_str());
|
|
}
|
|
|
|
/* static */
|
|
void wxDynamicLibrary::Unload(wxDllType handle)
|
|
{
|
|
::FreeLibrary(handle);
|
|
}
|
|
|
|
/* static */
|
|
void *wxDynamicLibrary::RawGetSymbol(wxDllType handle, const wxString& name)
|
|
{
|
|
return (void *)::GetProcAddress(handle,
|
|
name.ToAscii()
|
|
);
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// enumerating loaded DLLs
|
|
// ----------------------------------------------------------------------------
|
|
|
|
/* static */
|
|
wxDynamicLibraryDetailsArray wxDynamicLibrary::ListLoaded()
|
|
{
|
|
wxDynamicLibraryDetailsArray dlls;
|
|
|
|
#if wxUSE_DBGHELP
|
|
if ( wxDbgHelpDLL::Init() )
|
|
{
|
|
wxDynamicLibraryDetailsCreator::EnumModulesProcParams params;
|
|
params.dlls = &dlls;
|
|
|
|
if ( !wxDbgHelpDLL::CallEnumerateLoadedModules
|
|
(
|
|
::GetCurrentProcess(),
|
|
wxDynamicLibraryDetailsCreator::EnumModulesProc,
|
|
¶ms
|
|
) )
|
|
{
|
|
wxLogLastError(wxT("EnumerateLoadedModules"));
|
|
}
|
|
}
|
|
#endif // wxUSE_DBGHELP
|
|
|
|
return dlls;
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Getting the module from an address inside it
|
|
// ----------------------------------------------------------------------------
|
|
|
|
namespace
|
|
{
|
|
|
|
// Tries to dynamically load GetModuleHandleEx() from kernel32.dll and call it
|
|
// to get the module handle from the given address. Returns NULL if it fails to
|
|
// either resolve the function (which can only happen on pre-Vista systems
|
|
// normally) or if the function itself failed.
|
|
HMODULE CallGetModuleHandleEx(const void* addr)
|
|
{
|
|
typedef BOOL (WINAPI *GetModuleHandleEx_t)(DWORD, LPCTSTR, HMODULE *);
|
|
static const GetModuleHandleEx_t INVALID_FUNC_PTR = (GetModuleHandleEx_t)-1;
|
|
|
|
static GetModuleHandleEx_t s_pfnGetModuleHandleEx = INVALID_FUNC_PTR;
|
|
if ( s_pfnGetModuleHandleEx == INVALID_FUNC_PTR )
|
|
{
|
|
wxDynamicLibrary dll(wxT("kernel32.dll"), wxDL_VERBATIM);
|
|
|
|
wxDL_INIT_FUNC_AW(s_pfn, GetModuleHandleEx, dll);
|
|
|
|
// dll object can be destroyed, kernel32.dll won't be unloaded anyhow
|
|
}
|
|
|
|
if ( !s_pfnGetModuleHandleEx )
|
|
return NULL;
|
|
|
|
// flags are GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT |
|
|
// GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS
|
|
HMODULE hmod;
|
|
if ( !s_pfnGetModuleHandleEx(6, (LPCTSTR)addr, &hmod) )
|
|
return NULL;
|
|
|
|
return hmod;
|
|
}
|
|
|
|
} // anonymous namespace
|
|
|
|
/* static */
|
|
void* wxDynamicLibrary::GetModuleFromAddress(const void* addr, wxString* path)
|
|
{
|
|
HMODULE hmod = CallGetModuleHandleEx(addr);
|
|
if ( !hmod )
|
|
{
|
|
wxLogLastError(wxT("GetModuleHandleEx"));
|
|
return NULL;
|
|
}
|
|
|
|
if ( path )
|
|
{
|
|
TCHAR libname[MAX_PATH];
|
|
if ( !::GetModuleFileName(hmod, libname, MAX_PATH) )
|
|
{
|
|
// GetModuleFileName could also return extended-length paths (paths
|
|
// prepended with "//?/", maximum length is 32767 charachters) so,
|
|
// in principle, MAX_PATH could be unsufficient and we should try
|
|
// increasing the buffer size here.
|
|
wxLogLastError(wxT("GetModuleFromAddress"));
|
|
return NULL;
|
|
}
|
|
|
|
libname[MAX_PATH-1] = wxT('\0');
|
|
|
|
*path = libname;
|
|
}
|
|
|
|
// In Windows HMODULE is actually the base address of the module so we
|
|
// can just cast it to the address.
|
|
return reinterpret_cast<void *>(hmod);
|
|
}
|
|
|
|
/* static */
|
|
WXHMODULE wxDynamicLibrary::MSWGetModuleHandle(const wxString& name, void *addr)
|
|
{
|
|
// we want to use GetModuleHandleEx() instead of usual GetModuleHandle()
|
|
// because the former works correctly for comctl32.dll while the latter
|
|
// returns NULL when comctl32.dll version 6 is used under XP (note that
|
|
// GetModuleHandleEx() is only available under XP and later, coincidence?)
|
|
HMODULE hmod = CallGetModuleHandleEx(addr);
|
|
|
|
return hmod ? hmod : ::GetModuleHandle(name.t_str());
|
|
}
|
|
|
|
#endif // wxUSE_DYNLIB_CLASS
|
|
|