-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathswitch_dso.c
162 lines (137 loc) · 3.94 KB
/
switch_dso.c
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/*
* Cross Platform dso/dll load abstraction
* Copyright(C) 2008 Michael Jerris
*
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
* copies of the Software, and permit persons to whom the Software is
* furnished to do so.
*
* This work is provided under this license on an "as is" basis, without warranty of any kind,
* either expressed or implied, including, without limitation, warranties that the covered code
* is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire
* risk as to the quality and performance of the covered code is with you. Should any covered
* code prove defective in any respect, you (not the initial developer or any other contributor)
* assume the cost of any necessary servicing, repair or correction. This disclaimer of warranty
* constitutes an essential part of this license. No use of any covered code is authorized hereunder
* except under this disclaimer.
*
*/
#include <switch.h>
#include "switch_dso.h"
#include <stdlib.h>
#include <string.h>
#ifdef WIN32
SWITCH_DECLARE(void) switch_dso_destroy(switch_dso_lib_t *lib)
{
if (lib && *lib) {
FreeLibrary(*lib);
*lib = NULL;
}
}
SWITCH_DECLARE(switch_dso_lib_t) switch_dso_open(const char *path, int global, char **err)
{
HINSTANCE lib;
lib = LoadLibraryEx(path, NULL, 0);
if (!lib) {
lib = LoadLibraryEx(path, NULL, LOAD_WITH_ALTERED_SEARCH_PATH);
}
if (!lib) {
lib = LoadLibraryEx(path, NULL, LOAD_LIBRARY_SEARCH_DEFAULT_DIRS);
}
if (!lib) {
DWORD error = GetLastError();
*err = switch_mprintf("dll open error [%ul]\n", error);
}
return lib;
}
SWITCH_DECLARE(switch_dso_func_t) switch_dso_func_sym(switch_dso_lib_t lib, const char *sym, char **err)
{
FARPROC func = GetProcAddress(lib, sym);
if (!func) {
DWORD error = GetLastError();
*err = switch_mprintf("dll sym error [%ul]\n", error);
}
return (switch_dso_func_t) func;
}
SWITCH_DECLARE(void *) switch_dso_data_sym(switch_dso_lib_t lib, const char *sym, char **err)
{
FARPROC addr = GetProcAddress(lib, sym);
if (!addr) {
DWORD error = GetLastError();
*err = switch_mprintf("dll sym error [%ul]\n", error);
}
return (void *) (intptr_t) addr;
}
#else
/*
** {========================================================================
** This is an implementation of loadlib based on the dlfcn interface.
** The dlfcn interface is available in Linux, SunOS, Solaris, IRIX, FreeBSD,
** NetBSD, AIX 4.2, HPUX 11, and probably most other Unix flavors, at least
** as an emulation layer on top of native functions.
** =========================================================================
*/
#include <dlfcn.h>
void switch_dso_destroy(switch_dso_lib_t *lib)
{
if (lib && *lib) {
#ifndef HAVE_FAKE_DLCLOSE
dlclose(*lib);
#endif
*lib = NULL;
}
}
switch_dso_lib_t switch_dso_open(const char *path, int global, char **err)
{
void *lib;
if (global) {
lib = dlopen(path, RTLD_NOW | RTLD_GLOBAL);
} else {
lib = dlopen(path, RTLD_NOW | RTLD_LOCAL);
}
if (lib == NULL) {
const char *dlerr = dlerror();
/* Work around broken uclibc returning NULL on both dlopen() and dlerror() */
if (dlerr) {
*err = strdup(dlerr);
} else {
*err = strdup("Unknown error");
}
}
return lib;
}
switch_dso_func_t switch_dso_func_sym(switch_dso_lib_t lib, const char *sym, char **err)
{
void *func = dlsym(lib, sym);
if (!func) {
*err = strdup(dlerror());
}
return (switch_dso_func_t) (intptr_t) func;
}
void *switch_dso_data_sym(switch_dso_lib_t lib, const char *sym, char **err)
{
void *addr = dlsym(lib, sym);
if (!addr) {
char *err_str = NULL;
dlerror();
if (!(addr = dlsym(lib, sym))) {
err_str = (char *)dlerror();
}
if (err_str) {
*err = strdup(err_str);
}
}
return addr;
}
#endif
/* }====================================================== */
/* For Emacs:
* Local Variables:
* mode:c
* indent-tabs-mode:t
* tab-width:4
* c-basic-offset:4
* End:
* For VIM:
* vim:set softtabstop=4 shiftwidth=4 tabstop=4 noet
*/