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-java.c
379 lines (288 loc) · 9 KB
/
plugin-java.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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef _JAVA_PLUGIN
/*******************************************************************************
*
* Java plugin
*
*/
#include <jni.h>
#include <string.h>
#include <stdlib.h>
#include "core.h"
#include "utils.h"
#include "main.h"
#include "plugin.h"
#include "plugin-java.h"
#define xlog_java(t, ...) xlog(t, "["_JAVA_VERSION_"] " __VA_ARGS__)
/**
*
*/
static int proxenet_java_get_class(JNIEnv *env, char *name, void **res)
{
jclass jcls;
jcls = (*env)->FindClass(env, name);
if(!jcls){
xlog_java(LOG_ERROR, "Java class '%s' not found\n", name);
return -1;
}
*res = (void*)jcls;
#ifdef DEBUG
xlog_java(LOG_DEBUG, "Class '%s' jcls=%#lx\n", name, jcls);
#endif
return 0;
}
/**
*
*/
static int proxenet_java_get_method(JNIEnv *env, jclass jcls, char* name, char *proto, void **res)
{
jmethodID jmid;
jmid = (*env)->GetStaticMethodID(env, jcls, name, proto);
if(!jmid){
xlog_java(LOG_ERROR, "Method '%s()' not found\n", name);
return -1;
}
#ifdef DEBUG
xlog_java(LOG_DEBUG, "'%s()' jmid=%#lx\n", name, jmid);
#endif
*res = (void*)jmid;
return 0;
}
/**
*
*/
static inline int proxenet_execute_plugin_method(plugin_t* plugin, jmethodID jmid)
{
JavaVM* jvm;
JNIEnv *env;
jclass jcls;
jvm = ((proxenet_jvm_t*)plugin->interpreter->vm)->jvm;
jcls = (jclass)plugin->internal;
if (!jcls || !jmid)
return -1;
(*jvm)->AttachCurrentThread(jvm, (void**)&env, NULL);
(*env)->CallStaticObjectMethod(env, jcls, jmid);
(*jvm)->DetachCurrentThread(jvm);
return 0;
}
/**
*
*/
static int proxenet_execute_onload_method(plugin_t* plugin)
{
return proxenet_execute_plugin_method(plugin, plugin->onload_function);
}
/**
*
*/
static int proxenet_execute_onleave_method(plugin_t* plugin)
{
return proxenet_execute_plugin_method(plugin, plugin->onleave_function);
}
/**
* Loads a compiled Java file (.class), allocates the structure, and execute the onload()
* function.
*/
int proxenet_java_load_file(plugin_t* plugin)
{
proxenet_jvm_t* pxnt_jvm;
JavaVM *jvm;
JNIEnv *env;
if(plugin->state != INACTIVE){
#ifdef DEBUG
if(cfg->verbose > 2)
xlog_java(LOG_DEBUG, "Plugin '%s' is already loaded. Skipping...\n", plugin->name);
#endif
return 0;
}
pxnt_jvm = (proxenet_jvm_t*) plugin->interpreter->vm;
jvm = (JavaVM*) pxnt_jvm->jvm;
env = (JNIEnv*) pxnt_jvm->env;
#ifdef DEBUG
xlog_java(LOG_DEBUG, "Trying to load Java class '%s'\n", plugin->name);
#endif
/* check that Class can be found */
if(proxenet_java_get_class(env, plugin->name, &plugin->internal) < 0)
goto detach_vm;
/* check that Methods can be found in Class */
if(proxenet_java_get_method(env, plugin->internal, CFG_REQUEST_PLUGIN_FUNCTION, JAVA_PLUGIN_METHOD_SIGNATURE, &plugin->pre_function) < 0)
goto detach_vm;
if(proxenet_java_get_method(env, plugin->internal, CFG_RESPONSE_PLUGIN_FUNCTION, JAVA_PLUGIN_METHOD_SIGNATURE, &plugin->post_function) < 0)
goto detach_vm;
proxenet_java_get_method(env, plugin->internal, CFG_ONLOAD_PLUGIN_FUNCTION, JAVA_VOID_METHOD_SIGNATURE, &plugin->onload_function);
proxenet_java_get_method(env, plugin->internal, CFG_ONLEAVE_PLUGIN_FUNCTION, JAVA_VOID_METHOD_SIGNATURE, &plugin->onleave_function);
(*jvm)->DetachCurrentThread(jvm);
if(plugin->onload_function)
if (proxenet_execute_onload_method(plugin) < 0){
xlog_java(LOG_ERROR, "An error occured on %s.onload()\n", plugin->name);
}
return 0;
detach_vm:
(*jvm)->DetachCurrentThread(jvm);
return -1;
}
/**
*
*/
int proxenet_java_initialize_vm(plugin_t* plugin)
{
int ret;
JavaVMInitArgs vm_args;
JavaVMOption options;
proxenet_jvm_t *pxnt_jvm;
char java_classpath_option[256] = {0, };
if (plugin->interpreter->ready)
return 0;
pxnt_jvm = proxenet_xmalloc(sizeof(proxenet_jvm_t));
ret = proxenet_xsnprintf(java_classpath_option, sizeof(java_classpath_option),
"-Djava.class.path=%s", cfg->plugins_path);
if (ret < 0)
return -1;
options.optionString = java_classpath_option;
#if (_JAVA_MINOR_ == 8)
vm_args.version = JNI_VERSION_1_8;
#elif (_JAVA_MINOR_ == 7) || (_JAVA_MINOR_ == 6)
vm_args.version = JNI_VERSION_1_6;
#endif
vm_args.nOptions = 1;
vm_args.options = &options;
vm_args.ignoreUnrecognized = JNI_TRUE;
ret = JNI_CreateJavaVM(&pxnt_jvm->jvm, (void**)&pxnt_jvm->env, &vm_args);
if (ret != JNI_OK) {
xlog_java(LOG_ERROR, "Failed to initialize JVM (%d)\n", ret);
plugin->interpreter->ready = false;
return -1;
}
#ifdef DEBUG
xlog_java(LOG_DEBUG, "JVM created jvm=%#lx env=%#lx\n", pxnt_jvm->jvm, pxnt_jvm->env);
#endif
plugin->interpreter->vm = (void*)pxnt_jvm;
plugin->interpreter->ready = true;
return 0;
}
/**
* Disable the Java plugin, invoke onleave() function (if any), and deallocate
* plugin structures.
*/
int proxenet_java_destroy_plugin(plugin_t* plugin)
{
proxenet_plugin_set_state(plugin, INACTIVE);
if (plugin->onleave_function)
if (proxenet_execute_onleave_method(plugin) < 0){
xlog_java(LOG_ERROR, "An error occured on %s.onleave()\n", plugin->name);
}
plugin->pre_function = NULL;
plugin->post_function = NULL;
plugin->onload_function = NULL;
plugin->onleave_function = NULL;
return 0;
}
/**
*
*/
int proxenet_java_destroy_vm(interpreter_t* interpreter)
{
proxenet_jvm_t *pxnt_jvm;
JavaVM *jvm;
pxnt_jvm = (proxenet_jvm_t*) interpreter->vm;
jvm = (JavaVM*) pxnt_jvm->jvm;
(*jvm)->DestroyJavaVM(jvm);
proxenet_xfree(interpreter->vm);
interpreter->ready = false;
interpreter->vm = NULL;
return 0;
}
/**
*
*/
static char* proxenet_java_execute_plugin_function(plugin_t* plugin, request_t *request)
{
char *buf, *uri, *meth;
proxenet_jvm_t* pxnt_jvm;
JavaVM* jvm;
JNIEnv *env;
jclass jcls;
jmethodID jmid;
jint jrid;
jbyteArray jreq;
jstring juri;
jbyteArray jret;
jsize jretlen;
jbyte *jret2;
jboolean is_copy;
buf = NULL;
uri = request->http_infos.uri;
if (!uri)
return NULL;
/* get method id inside the JVM */
pxnt_jvm = (proxenet_jvm_t*)plugin->interpreter->vm;
jvm = pxnt_jvm->jvm;
(*jvm)->AttachCurrentThread(jvm, (void**)&env, NULL);
if (request->type==REQUEST){
meth = CFG_REQUEST_PLUGIN_FUNCTION;
jcls = (jclass)plugin->internal;
jmid = (jmethodID)plugin->pre_function;
} else {
meth = CFG_RESPONSE_PLUGIN_FUNCTION;
jcls = (jclass)plugin->internal;
jmid = (jmethodID)plugin->post_function;
}
#ifdef DEBUG
xlog_java(LOG_DEBUG, "'%s:%s' -> jvm=%#lx env=%#lx jcls=%#lx jmid=%#lx\n",
plugin->name, meth, jvm, env, jcls, jmid);
#endif
/* prepare the arguments */
jrid = request->id;
jreq = (*env)->NewByteArray(env, request->size);
(*env)->SetByteArrayRegion(env, jreq, 0, request->size, (jbyte*)request->data);
juri = (*env)->NewStringUTF(env, uri);
#ifdef DEBUG
xlog_java(LOG_DEBUG, "'%s:%s' -> jrid=%#lx jreq=%#lx juri=%#lx\n",
plugin->name, meth, jrid, jreq, juri);
#endif
/* call the method id */
jret = (*env)->CallStaticObjectMethod(env, jcls, jmid, jrid, jreq, juri);
if(!jret){
xlog_java(LOG_ERROR, "An error occured when invoking '%s.%s()'\n", plugin->name, meth);
goto end;
}
jretlen = (*env)->GetArrayLength(env, jret);
jret2 = (*env)->GetByteArrayElements(env, jret, &is_copy);
/* treat the result */
buf = proxenet_xstrdup((char*)jret2, jretlen);
if (!buf)
goto end;
request->size = jretlen;
end:
(*jvm)->DetachCurrentThread(jvm);
return buf;
}
/**
*
*/
static inline void proxenet_java_lock_vm(interpreter_t *interpreter)
{
pthread_mutex_lock(&interpreter->mutex);
}
/**
*
*/
static inline void proxenet_java_unlock_vm(interpreter_t *interpreter)
{
pthread_mutex_unlock(&interpreter->mutex);
}
/**
*
*/
char* proxenet_java_plugin(plugin_t* plugin, request_t *request)
{
char* buf = NULL;
interpreter_t *interpreter = plugin->interpreter;
proxenet_java_lock_vm(interpreter);
buf = proxenet_java_execute_plugin_function(plugin, request);
proxenet_java_unlock_vm(interpreter);
return buf;
}
#endif /* _JAVA_PLUGIN */