Files
renderdoc/renderdoc/os/posix/linux/linux_hook.cpp
T

199 lines
5.4 KiB
C++

/******************************************************************************
* The MIT License (MIT)
*
* Copyright (c) 2016-2018 Baldur Karlsson
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
******************************************************************************/
#include <dlfcn.h>
#include <string.h>
#include <algorithm>
#include <map>
#include <string>
#include "3rdparty/plthook/plthook.h"
#include "common/threading.h"
#include "hooks/hooks.h"
#include "os/os_specific.h"
#include "strings/string_utils.h"
Threading::CriticalSection libLock;
static std::map<std::string, std::vector<FunctionLoadCallback>> libraryCallbacks;
static std::vector<std::string> libraryHooks;
static std::vector<FunctionHook> functionHooks;
void *intercept_dlopen(const char *filename, int flag, void *ret);
void plthook_lib(void *handle);
typedef void *(*DLOPENPROC)(const char *, int);
DLOPENPROC realdlopen = NULL;
__attribute__((visibility("default"))) void *dlopen(const char *filename, int flag)
{
if(!realdlopen)
{
DLOPENPROC passthru = (DLOPENPROC)dlsym(RTLD_NEXT, "dlopen");
void *ret = passthru(filename, flag);
if(filename && ret && (flag & RTLD_DEEPBIND))
plthook_lib(ret);
return ret;
}
void *ret = realdlopen(filename, flag);
if(filename && ret)
{
SCOPED_LOCK(libLock);
ret = intercept_dlopen(filename, flag, ret);
}
return ret;
}
void plthook_lib(void *handle)
{
plthook_t *plthook = NULL;
// minimal error handling as we can't do much more than log the error, and since this is
// 'best-effort' attempt to hook the unhookable, we just try and allow it to fail.
if(plthook_open_by_handle(&plthook, handle))
return;
plthook_replace(plthook, "dlopen", (void *)dlopen, NULL);
plthook_close(plthook);
}
void *intercept_dlopen(const char *filename, int flag, void *ret)
{
if(flag & RTLD_DEEPBIND)
plthook_lib(ret);
std::string base = basename(filename);
for(auto it = libraryHooks.begin(); it != libraryHooks.end(); ++it)
{
const std::string &libName = *it;
if(*it == base)
{
RDCDEBUG("Redirecting dlopen to ourselves for %s", filename);
for(FunctionHook &hook : functionHooks)
{
if(hook.orig && *hook.orig == NULL)
*hook.orig = dlsym(ret, hook.function.c_str());
}
for(FunctionLoadCallback cb : libraryCallbacks[libName])
if(cb)
cb(ret);
// don't call the callbacks again
libraryCallbacks[libName].clear();
ret = realdlopen("librenderdoc.so", flag);
break;
}
}
return ret;
}
void LibraryHooks::BeginHookRegistration()
{
realdlopen = (DLOPENPROC)dlsym(RTLD_NEXT, "dlopen");
}
bool LibraryHooks::Detect(const char *identifier)
{
return dlsym(RTLD_DEFAULT, identifier) != NULL;
}
void LibraryHooks::RemoveHooks()
{
RDCERR("Removing hooks is not possible on this platform");
}
void LibraryHooks::EndHookRegistration()
{
// iterate over the libraries and see which ones are already loaded, process function hooks for
// them and call callbacks.
for(auto it = libraryHooks.begin(); it != libraryHooks.end(); ++it)
{
std::string libName = *it;
void *handle = realdlopen(libName.c_str(), RTLD_NOW | RTLD_NOLOAD | RTLD_GLOBAL);
if(handle)
{
for(FunctionHook &hook : functionHooks)
{
if(hook.orig && *hook.orig == NULL)
*hook.orig = dlsym(handle, hook.function.c_str());
}
for(FunctionLoadCallback cb : libraryCallbacks[libName])
if(cb)
cb(handle);
// don't call callbacks again if the library is dlopen'd again
libraryCallbacks[libName].clear();
}
}
}
void LibraryHooks::Refresh()
{
// don't need to refresh on linux
}
void LibraryHooks::RegisterFunctionHook(const char *libraryName, const FunctionHook &hook)
{
// we don't use the library name
(void)libraryName;
SCOPED_LOCK(libLock);
functionHooks.push_back(hook);
}
void LibraryHooks::RegisterLibraryHook(char const *name, FunctionLoadCallback cb)
{
SCOPED_LOCK(libLock);
if(std::find(libraryHooks.begin(), libraryHooks.end(), name) == libraryHooks.end())
libraryHooks.push_back(name);
if(cb)
libraryCallbacks[name].push_back(cb);
}
void LibraryHooks::IgnoreLibrary(const char *libraryName)
{
}
// android only hooking functions, not used on linux
ScopedSuppressHooking::ScopedSuppressHooking()
{
}
ScopedSuppressHooking::~ScopedSuppressHooking()
{
}