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
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
|
/*-
* Copyright 2016 Vsevolod Stakhov
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "config.h"
#include "util.h"
#include "rspamd.h"
#include "libserver/worker_util.h"
#include "protocol.h"
#include "upstream.h"
#include "cfg_file.h"
#include "url.h"
#include "message.h"
#include "map.h"
#include "dns.h"
#include "unix-std.h"
#include "lua/lua_common.h"
#ifdef WITH_GPERF_TOOLS
# include <glib/gprintf.h>
#endif
/* 60 seconds for worker's IO */
#define DEFAULT_WORKER_IO_TIMEOUT 60000
gpointer init_lua_worker (struct rspamd_config *cfg);
void start_lua_worker (struct rspamd_worker *worker);
worker_t lua_worker = {
"lua", /* Name */
init_lua_worker, /* Init function */
start_lua_worker, /* Start function */
TRUE, /* Has socket */
FALSE, /* Non unique */
FALSE, /* Non threaded */
TRUE, /* Killable */
SOCK_STREAM /* TCP socket */
};
/*
* Worker's context
*/
struct rspamd_lua_worker_ctx {
/* DNS resolver */
struct rspamd_dns_resolver *resolver;
/* Events base */
struct event_base *ev_base;
/* Other params */
GHashTable *params;
/* Lua script to load */
gchar *file;
/* Lua state */
lua_State *L;
/* Callback for accept */
gint cbref_accept;
/* Callback for finishing */
gint cbref_fin;
/* Config file */
struct rspamd_config *cfg;
/* The rest options */
ucl_object_t *opts;
};
/* Lua bindings */
LUA_FUNCTION_DEF (worker, get_ev_base);
LUA_FUNCTION_DEF (worker, register_accept_callback);
LUA_FUNCTION_DEF (worker, register_exit_callback);
LUA_FUNCTION_DEF (worker, get_option);
LUA_FUNCTION_DEF (worker, get_resolver);
LUA_FUNCTION_DEF (worker, get_cfg);
static const struct luaL_reg lua_workerlib_m[] = {
LUA_INTERFACE_DEF (worker, get_ev_base),
LUA_INTERFACE_DEF (worker, register_accept_callback),
LUA_INTERFACE_DEF (worker, register_exit_callback),
LUA_INTERFACE_DEF (worker, get_option),
LUA_INTERFACE_DEF (worker, get_resolver),
LUA_INTERFACE_DEF (worker, get_cfg),
{"__tostring", rspamd_lua_class_tostring},
{NULL, NULL}
};
/* Basic functions of LUA API for worker object */
static gint
luaopen_lua_worker (lua_State * L)
{
rspamd_lua_new_class (L, "rspamd{worker}", lua_workerlib_m);
luaL_register (L, "rspamd_worker", null_reg);
lua_pop (L, 1); /* remove metatable from stack */
return 1;
}
struct rspamd_lua_worker_ctx *
lua_check_lua_worker (lua_State * L)
{
void *ud = luaL_checkudata (L, 1, "rspamd{worker}");
luaL_argcheck (L, ud != NULL, 1, "'worker' expected");
return ud ? *((struct rspamd_lua_worker_ctx **)ud) : NULL;
}
static int
lua_worker_get_ev_base (lua_State *L)
{
struct rspamd_lua_worker_ctx *ctx = lua_check_lua_worker (L);
struct event_base **pbase;
if (ctx) {
pbase = lua_newuserdata (L, sizeof (struct event_base *));
rspamd_lua_setclass (L, "rspamd{ev_base}", -1);
*pbase = ctx->ev_base;
}
else {
lua_pushnil (L);
}
return 1;
}
static int
lua_worker_register_accept_callback (lua_State *L)
{
struct rspamd_lua_worker_ctx *ctx = lua_check_lua_worker (L);
if (ctx) {
if (!lua_isfunction (L, 2)) {
msg_err ("invalid callback passed");
lua_pushnil (L);
}
else {
lua_pushvalue (L, 2);
ctx->cbref_accept = luaL_ref (L, LUA_REGISTRYINDEX);
return 0;
}
}
else {
lua_pushnil (L);
}
return 1;
}
static int
lua_worker_register_exit_callback (lua_State *L)
{
struct rspamd_lua_worker_ctx *ctx = lua_check_lua_worker (L);
if (ctx) {
if (!lua_isfunction (L, 2)) {
msg_err ("invalid callback passed");
lua_pushnil (L);
}
else {
lua_pushvalue (L, 2);
ctx->cbref_fin = luaL_ref (L, LUA_REGISTRYINDEX);
return 0;
}
}
else {
lua_pushnil (L);
}
return 1;
}
/* XXX: This fucntions should be rewritten completely */
static int
lua_worker_get_option (lua_State *L)
{
struct rspamd_lua_worker_ctx *ctx = lua_check_lua_worker (L);
const ucl_object_t *val;
const gchar *name;
if (ctx) {
name = luaL_checkstring (L, 2);
if (name == NULL) {
msg_err ("no name specified");
lua_pushnil (L);
}
else {
val = ucl_object_find_key (ctx->opts, name);
if (val == NULL) {
lua_pushnil (L);
}
else {
ucl_object_push_lua (L, val, TRUE);
}
}
}
else {
lua_pushnil (L);
}
return 1;
}
static int
lua_worker_get_resolver (lua_State *L)
{
struct rspamd_lua_worker_ctx *ctx = lua_check_lua_worker (L);
struct rspamd_dns_resolver **presolver;
if (ctx) {
presolver = lua_newuserdata (L, sizeof (gpointer));
rspamd_lua_setclass (L, "rspamd{resolver}", -1);
*presolver = ctx->resolver;
}
else {
lua_pushnil (L);
}
return 1;
}
static int
lua_worker_get_cfg (lua_State *L)
{
struct rspamd_lua_worker_ctx *ctx = lua_check_lua_worker (L);
struct rspamd_config **pcfg;
if (ctx) {
pcfg = lua_newuserdata (L, sizeof (gpointer));
rspamd_lua_setclass (L, "rspamd{config}", -1);
*pcfg = ctx->cfg;
}
else {
lua_pushnil (L);
}
return 1;
}
/* End of lua API */
/*
* Accept new connection and construct task
*/
static void
lua_accept_socket (gint fd, short what, void *arg)
{
struct rspamd_worker *worker = (struct rspamd_worker *) arg;
struct rspamd_lua_worker_ctx *ctx, **pctx;
gint nfd;
lua_State *L;
rspamd_inet_addr_t *addr;
ctx = worker->ctx;
L = ctx->L;
if ((nfd =
rspamd_accept_from_socket (fd, &addr)) == -1) {
msg_warn ("accept failed: %s", strerror (errno));
return;
}
/* Check for EAGAIN */
if (nfd == 0) {
return;
}
msg_info ("accepted connection from %s port %d",
rspamd_inet_address_to_string (addr),
rspamd_inet_address_get_port (addr));
/* Call finalizer function */
lua_rawgeti (L, LUA_REGISTRYINDEX, ctx->cbref_accept);
pctx = lua_newuserdata (L, sizeof (gpointer));
rspamd_lua_setclass (L, "rspamd{worker}", -1);
*pctx = ctx;
lua_pushinteger (L, nfd);
rspamd_lua_ip_push (L, addr);
lua_pushinteger (L, 0);
if (lua_pcall (L, 4, 0, 0) != 0) {
msg_info ("call to worker accept failed: %s", lua_tostring (L, -1));
}
rspamd_inet_address_destroy (addr);
}
static gboolean
rspamd_lua_worker_parser (ucl_object_t *obj, gpointer ud)
{
struct rspamd_lua_worker_ctx *ctx = ud;
ctx->opts = obj;
return TRUE;
}
gpointer
init_lua_worker (struct rspamd_config *cfg)
{
struct rspamd_lua_worker_ctx *ctx;
GQuark type;
type = g_quark_try_string ("lua");
ctx = g_malloc0 (sizeof (struct rspamd_lua_worker_ctx));
ctx->params = g_hash_table_new_full (rspamd_str_hash,
rspamd_str_equal,
g_free,
(GDestroyNotify)g_list_free);
rspamd_rcl_register_worker_option (cfg,
type,
"file",
rspamd_rcl_parse_struct_string,
ctx,
G_STRUCT_OFFSET (struct rspamd_lua_worker_ctx, file),
0,
"Run the following lua script when accepting a connection");
rspamd_rcl_register_worker_parser (cfg, type, rspamd_lua_worker_parser,
ctx);
return ctx;
}
/*
* Start worker process
*/
void
start_lua_worker (struct rspamd_worker *worker)
{
struct rspamd_lua_worker_ctx *ctx = worker->ctx, **pctx;
lua_State *L;
#ifdef WITH_PROFILER
extern void _start (void), etext (void);
monstartup ((u_long) & _start, (u_long) & etext);
#endif
ctx->ev_base = rspamd_prepare_worker (worker,
"lua_worker",
lua_accept_socket);
L = worker->srv->cfg->lua_state;
ctx->L = L;
ctx->cfg = worker->srv->cfg;
ctx->resolver = dns_resolver_init (worker->srv->logger,
ctx->ev_base,
worker->srv->cfg);
/* Open worker's lib */
luaopen_lua_worker (L);
if (ctx->file == NULL) {
msg_err ("No lua script defined, so no reason to exist");
exit (EXIT_SUCCESS);
}
if (access (ctx->file, R_OK) == -1) {
msg_err ("Error reading lua script %s: %s", ctx->file,
strerror (errno));
exit (EXIT_SUCCESS);
}
pctx = lua_newuserdata (L, sizeof (gpointer));
rspamd_lua_setclass (L, "rspamd{worker}", -1);
lua_setglobal (L, "rspamd_worker");
*pctx = ctx;
if (luaL_dofile (L, ctx->file) != 0) {
msg_err ("Error executing lua script %s: %s", ctx->file,
lua_tostring (L, -1));
exit (EXIT_SUCCESS);
}
if (ctx->cbref_accept == 0) {
msg_err ("No accept function defined, so no reason to exist");
exit (EXIT_SUCCESS);
}
/* Maps events */
rspamd_map_watch (worker->srv->cfg, ctx->ev_base);
event_base_loop (ctx->ev_base, 0);
rspamd_worker_block_signals ();
luaL_unref (L, LUA_REGISTRYINDEX, ctx->cbref_accept);
if (ctx->cbref_fin != 0) {
/* Call finalizer function */
lua_rawgeti (L, LUA_REGISTRYINDEX, ctx->cbref_fin);
pctx = lua_newuserdata (L, sizeof (gpointer));
rspamd_lua_setclass (L, "rspamd{worker}", -1);
*pctx = ctx;
if (lua_pcall (L, 1, 0, 0) != 0) {
msg_info ("call to worker finalizer failed: %s", lua_tostring (L,
-1));
}
/* Free resources */
luaL_unref (L, LUA_REGISTRYINDEX, ctx->cbref_fin);
}
rspamd_log_close (worker->srv->logger);
exit (EXIT_SUCCESS);
}
/*
* vi:ts=4
*/
|