blob: 6d359bc017f795ae1e6cb7b51057cb66af2f9ea9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
/**
* Dynamically Loaded Object
* (C) 2010 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#include <botan/internal/dyn_load.h>
#include <botan/build.h>
#include <stdexcept>
#if defined(BOTAN_TARGET_OS_HAS_DLOPEN)
#include <dlfcn.h>
#endif
namespace Botan {
Dynamically_Loaded_Library::Dynamically_Loaded_Library(
const std::string& library) :
lib_name(library), lib(0)
{
#if defined(BOTAN_TARGET_OS_HAS_DLOPEN)
lib = ::dlopen(lib_name.c_str(), RTLD_LAZY);
if(!lib)
{
const char* dl_err = dlerror();
if(!dl_err)
dl_err = "Unknown error";
throw std::runtime_error("Failed to load engine " + lib_name + ": " +
dl_err);
}
#endif
}
Dynamically_Loaded_Library::~Dynamically_Loaded_Library()
{
#if defined(BOTAN_TARGET_OS_HAS_DLOPEN)
::dlclose(lib);
#endif
}
void* Dynamically_Loaded_Library::resolve_symbol(const std::string& symbol)
{
void* addr = 0;
#if defined(BOTAN_TARGET_OS_HAS_DLOPEN)
addr = ::dlsym(lib, symbol.c_str());
#endif
if(!addr)
throw std::runtime_error("Failed to resolve symbol " + symbol +
" in " + lib_name);
return addr;
}
}
|