This repository was archived by the owner on Jun 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathplugin-c.c
194 lines (153 loc) · 4.38 KB
/
plugin-c.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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef _C_PLUGIN
/*******************************************************************************
*
* C plugin
*
*/
#include <dlfcn.h>
#include <string.h>
#ifdef __LINUX__
#include <alloca.h>
#endif
#include "core.h"
#include "utils.h"
#include "main.h"
#include "plugin.h"
#define xlog_c(t, ...) xlog(t, "["_C_VERSION_"] " __VA_ARGS__)
/**
*
*/
int proxenet_c_initialize_vm(plugin_t* plugin)
{
void *interpreter;
interpreter = dlopen(plugin->fullpath, RTLD_NOW);
if (!interpreter) {
xlog_c(LOG_ERROR, "Failed to dlopen('%s'): %s\n", plugin->fullpath, dlerror());
return -1;
}
plugin->interpreter->vm = interpreter;
plugin->interpreter->ready = true;
return 0;
}
/**
*
*/
int proxenet_c_destroy_plugin(plugin_t* plugin)
{
proxenet_plugin_set_state(plugin, INACTIVE);
plugin->pre_function = NULL;
plugin->post_function = NULL;
if (dlclose((void*)plugin->interpreter->vm) < 0) {
xlog_c(LOG_ERROR, "Failed to dlclose() for '%s': %s\n", plugin->name, dlerror());
return -1;
}
return 0;
}
/**
*
*/
int proxenet_c_destroy_vm(interpreter_t* interpreter)
{
interpreter->ready = false;
interpreter = NULL;
return 0;
}
/**
*
*/
static int proxenet_c_initialize_function(plugin_t* plugin, req_t type)
{
void *interpreter;
if (plugin->interpreter==NULL || plugin->interpreter->ready==false){
xlog_c(LOG_ERROR, "%s\n", "not ready (dlopen() failed?)");
return -1;
}
interpreter = (void *) plugin->interpreter->vm;
/* if already initialized, return ok */
if (plugin->pre_function && type==REQUEST)
return 0;
if (plugin->post_function && type==RESPONSE)
return 0;
if (type == REQUEST) {
plugin->pre_function = dlsym(interpreter, CFG_REQUEST_PLUGIN_FUNCTION);
if (plugin->pre_function) {
#ifdef DEBUG
xlog_c(LOG_DEBUG, "'%s' request_hook function is at %p\n",
plugin->name,
plugin->pre_function);
#endif
return 0;
}
} else {
plugin->post_function = dlsym(interpreter, CFG_RESPONSE_PLUGIN_FUNCTION);
if (plugin->post_function) {
#ifdef DEBUG
xlog_c(LOG_DEBUG, "'%s' response_hook function is at %p\n",
plugin->name,
plugin->post_function);
#endif
return 0;
}
}
xlog_c(LOG_ERROR, "dlsym(%s) failed for '%s': %s\n",
(type==REQUEST)?"REQUEST":"RESPONSE",
plugin->name,
dlerror());
return -1;
}
/**
*
*/
int proxenet_c_load_file(plugin_t* plugin)
{
if (proxenet_c_initialize_function(plugin, REQUEST) < 0) {
proxenet_plugin_set_state(plugin, INACTIVE);
xlog(LOG_ERROR, "Failed to init %s in %s\n", CFG_REQUEST_PLUGIN_FUNCTION, plugin->name);
return -1;
}
if (proxenet_c_initialize_function(plugin, RESPONSE) < 0) {
proxenet_plugin_set_state(plugin, INACTIVE);
xlog(LOG_ERROR, "Failed to init %s in %s\n", CFG_RESPONSE_PLUGIN_FUNCTION, plugin->name);
return -1;
}
return 0;
}
/**
* Execute a proxenet plugin written in C.
*
* @note Because there is no other consistent way in C of keeping track of the
* right size of the request (strlen() will break at the first NULL byte), the
* signature of functions in a C plugin must include a pointer to the size which
* **must** be changed by the called plugin.
* Therefore the definition is
* char* proxenet_request_hook(unsigned int rid, char* buf, char* uri, size_t* buflen);
*
* See examples/ for examples.
*/
char* proxenet_c_plugin(plugin_t *plugin, request_t *request)
{
char* (*plugin_function)(unsigned long, char*, char*, size_t*);
char *bufres, *uri;
size_t buflen;
uri = request->http_infos.uri;
if (!uri)
return NULL;
if (request->type == REQUEST)
plugin_function = plugin->pre_function;
else
plugin_function = plugin->post_function;
buflen = request->size;
bufres = (*plugin_function)(request->id, request->data, uri, &buflen);
if(!bufres){
request->size = -1;
goto end_exec_c_plugin;
}
request->data = proxenet_xstrdup(bufres, buflen);
request->size = buflen;
end_exec_c_plugin:
return request->data;
}
#endif