使用dlopen
,您可以提供NULL
作为库名称,并获取一个句柄,允许您在任何加载的库中找到符号:
如果filename是一个NULL指针,则返回的句柄用于 主程序。当给予dlsym()时,此句柄会导致搜索a 主程序中的符号,后跟所有加载的共享库 程序启动,然后由dlopen()加载的所有共享库 标志RTLD_GLOBAL。
你可以对GetProcAddress
做同样的事吗?我想搜索Windows API的存在,但在Windows 8中加载了不同的库。
我知道通过查看COFF标头加载了哪些库,我想我可以在那里循环处理...
这是我目前正在使用的代码:
.hpp
#include <string>
#include <stdexcept>
/**
* @~english
* Looks up a Windows API function. Make sure you set @c _WIN32_WINNT so that the definition is available at compile
* time.
* @par Example
* @code
* # undef _WIN32_WINNT
* # define _WIN32_WINNT 0x600
* # include <system/inc/nt/windows.h>
* static const auto initialize_srw_lock_ptr = FunctionPtrLookup(InitializeSRWLock, "kernel32");
* @endcode
* @param function the function definition to lookup
* @retval nullptr the function did not exist on this version of Windows
* @returns a function pointer to invoke
*/
#define FunctionPtrLookup(function, library) \
FunctionLookup<decltype(function)>(#function, library)
/**
* @~english
* The return type of FunctionLookup
*/
typedef void(*FunctionLookupPtr)();
/**
* @~english
* Looks up a Windows API function.
* @param name the name of the function to find in the library
* @retval nullptr the function did not exist on this version of Windows
* @returns a function pointer to invoke
* @see FunctionPtrLookup
*/
FunctionLookupPtr FunctionLookup(const std::string& name, const std::string& library);
/// @copydoc FunctionLookup
template<typename Signature>
const Signature * FunctionLookup(const std::string& name, const std::string& library) {
return reinterpret_cast<const Signature*>(FunctionLookup(name, library));
}
.cpp
FunctionLookupPtr FunctionLookup(const std::string& name, const std::string& library) {
const auto wide_library = Utf8ToWide(library);
const auto lib = LoadLibraryW(wide_library.c_str());
if (!lib) {
return nullptr;
}
return reinterpret_cast<FunctionLookupPtr>(GetProcAddress(lib, name.c_str()));
}
理想情况下,我想删除library
变量。
答案 0 :(得分:5)
您可以使用EnumProcessModules枚举当前流程的所有已加载模块,请使用示例:http://msdn.microsoft.com/en-us/library/ms682621%28v=vs.85%29.aspx,如果您使用PrintModules
调用GetCurrentProcessId()
,则会枚举所有当前进程的HMODULE句柄(值为hMods[i]
)。您可以将它们与GetProcAddress一起使用来查找您的函数。
你必须意识到可以在不同的dll-s中找到相同的命名函数,大多数你知道WinAPI函数的dll名称。