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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
|
/*
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY AUTHOR ''AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL AUTHOR BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* Rspamd worker implementation
*/
#include "config.h"
#include "util.h"
#include "main.h"
#include "protocol.h"
#include "upstream.h"
#include "cfg_file.h"
#include "cfg_xml.h"
#include "url.h"
#include "message.h"
#include "map.h"
#include "dns.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_worker (struct config_file *cfg);
void start_worker (struct rspamd_worker *worker);
worker_t normal_worker = {
"normal", /* Name */
init_worker, /* Init function */
start_worker, /* Start function */
TRUE, /* Has socket */
FALSE, /* Non unique */
FALSE, /* Non threaded */
TRUE, /* Killable */
SOCK_STREAM /* TCP socket */
};
/*
* Worker's context
*/
struct rspamd_worker_ctx {
guint32 timeout;
struct timeval io_tv;
/* Detect whether this worker is mime worker */
gboolean is_mime;
/* HTTP worker */
gboolean is_http;
/* JSON output */
gboolean is_json;
/* Allow learning throught worker */
gboolean allow_learn;
/* DNS resolver */
struct rspamd_dns_resolver *resolver;
/* Current tasks */
guint32 tasks;
/* Limit of tasks */
guint32 max_tasks;
/* Classify threads */
guint32 classify_threads;
/* Classify threads */
GThreadPool *classify_pool;
/* Events base */
struct event_base *ev_base;
};
static gboolean write_socket (void *arg);
static sig_atomic_t wanna_die = 0;
#ifndef HAVE_SA_SIGINFO
static void
sig_handler (gint signo)
#else
static void
sig_handler (gint signo, siginfo_t * info, void *unused)
#endif
{
struct timeval tv;
switch (signo) {
case SIGINT:
case SIGTERM:
if (!wanna_die) {
wanna_die = 1;
tv.tv_sec = 0;
tv.tv_usec = 0;
event_loopexit (&tv);
#ifdef WITH_GPERF_TOOLS
ProfilerStop ();
#endif
}
break;
}
}
/*
* Config reload is designed by sending sigusr2 to active workers and pending shutdown of them
*/
static void
sigusr2_handler (gint fd, short what, void *arg)
{
struct rspamd_worker *worker = (struct rspamd_worker *) arg;
/* Do not accept new connections, preparing to end worker's process */
struct timeval tv;
if (!wanna_die) {
tv.tv_sec = SOFT_SHUTDOWN_TIME;
tv.tv_usec = 0;
event_del (&worker->sig_ev_usr1);
event_del (&worker->sig_ev_usr2);
worker_stop_accept (worker);
msg_info ("worker's shutdown is pending in %d sec", SOFT_SHUTDOWN_TIME);
event_loopexit (&tv);
}
return;
}
/*
* Reopen log is designed by sending sigusr1 to active workers and pending shutdown of them
*/
static void
sigusr1_handler (gint fd, short what, void *arg)
{
struct rspamd_worker *worker = (struct rspamd_worker *) arg;
reopen_log (worker->srv->logger);
return;
}
/*
* Callback that is called when there is data to read in buffer
*/
static gboolean
read_socket (f_str_t * in, void *arg)
{
struct worker_task *task = (struct worker_task *) arg;
struct rspamd_worker_ctx *ctx;
ssize_t r;
GError *err = NULL;
ctx = task->worker->ctx;
switch (task->state) {
case READ_COMMAND:
case READ_HEADER:
if (!read_rspamd_input_line (task, in)) {
if (!task->last_error) {
task->last_error = "Read error";
task->error_code = RSPAMD_NETWORK_ERROR;
}
task->state = WRITE_ERROR;
}
if (task->state == WRITE_REPLY || task->state == WRITE_ERROR) {
return write_socket (task);
}
break;
case READ_MESSAGE:
/* Allow half-closed connections to be proceed */
debug_task ("got string of length %z", task->msg->len);
if (task->content_length > 0) {
task->msg->begin = in->begin;
task->msg->len = in->len;
task->state = WAIT_FILTER;
task->dispatcher->want_read = FALSE;
}
else {
task->dispatcher->want_read = FALSE;
if (in->len > 0) {
if (task->msg->begin == NULL) {
/* Allocate buf */
task->msg->size = MAX (BUFSIZ, in->len);
task->msg->begin = g_malloc (task->msg->size);
memcpy (task->msg->begin, in->begin, in->len);
task->msg->len = in->len;
}
else if (task->msg->size >= task->msg->len + in->len) {
memcpy (task->msg->begin + task->msg->len, in->begin, in->len);
task->msg->len += in->len;
}
else {
/* Need to realloc */
task->msg->size = MAX (task->msg->size * 2, task->msg->size + in->len);
task->msg->begin = g_realloc (task->msg->begin, task->msg->size);
memcpy (task->msg->begin + task->msg->len, in->begin, in->len);
task->msg->len += in->len;
}
/* Want more */
return TRUE;
}
else if (task->msg->len > 0) {
memory_pool_add_destructor (task->task_pool, (pool_destruct_func)g_free, task->msg->begin);
}
else {
msg_warn ("empty message passed");
task->last_error = "MIME processing error";
task->error_code = RSPAMD_FILTER_ERROR;
task->state = WRITE_ERROR;
return write_socket (task);
}
}
r = process_message (task);
if (r == -1) {
msg_warn ("processing of message failed");
task->last_error = "MIME processing error";
task->error_code = RSPAMD_FILTER_ERROR;
task->state = WRITE_ERROR;
return write_socket (task);
}
if (task->cmd == CMD_OTHER) {
/* Skip filters */
task->state = WRITE_REPLY;
return write_socket (task);
}
else if (task->cmd == CMD_LEARN) {
if (!learn_task (task->statfile, task, &err)) {
task->last_error = memory_pool_strdup (task->task_pool, err->message);
task->error_code = err->code;
g_error_free (err);
task->state = WRITE_ERROR;
}
else {
task->last_error = "learn ok";
task->error_code = 0;
task->state = WRITE_REPLY;
}
return write_socket (task);
}
else {
if (task->cfg->pre_filters == NULL) {
r = process_filters (task);
if (r == -1) {
task->last_error = "Filter processing error";
task->error_code = RSPAMD_FILTER_ERROR;
task->state = WRITE_ERROR;
return write_socket (task);
}
/* Add task to classify to classify pool */
if (!task->is_skipped && ctx->classify_pool) {
register_async_thread (task->s);
g_thread_pool_push (ctx->classify_pool, task, &err);
if (err != NULL) {
msg_err ("cannot pull task to the pool: %s", err->message);
remove_async_thread (task->s);
}
}
if (task->is_skipped) {
/* Call write_socket to write reply and exit */
return write_socket (task);
}
}
else {
lua_call_pre_filters (task);
/* We want fin_task after pre filters are processed */
task->s->wanna_die = TRUE;
task->state = WAIT_PRE_FILTER;
check_session_pending (task->s);
}
}
break;
case WRITE_REPLY:
case WRITE_ERROR:
return write_socket (task);
break;
case WAIT_FILTER:
case WAIT_POST_FILTER:
case WAIT_PRE_FILTER:
msg_info ("ignoring trailing garbadge of size %z", in->len);
break;
default:
debug_task ("invalid state on reading stage");
break;
}
return TRUE;
}
/*
* Callback for socket writing
*/
static gboolean
write_socket (void *arg)
{
struct worker_task *task = (struct worker_task *) arg;
struct rspamd_worker_ctx *ctx;
GError *err = NULL;
gint r;
ctx = task->worker->ctx;
switch (task->state) {
case WRITE_REPLY:
task->state = WRITING_REPLY;
if (!write_reply (task)) {
return FALSE;
}
destroy_session (task->s);
return FALSE;
break;
case WRITE_ERROR:
task->state = WRITING_REPLY;
if (!write_reply (task)) {
return FALSE;
}
destroy_session (task->s);
return FALSE;
break;
case CLOSING_CONNECTION:
debug_task ("normally closing connection");
destroy_session (task->s);
return FALSE;
break;
case WRITING_REPLY:
case WAIT_FILTER:
case WAIT_POST_FILTER:
/* Do nothing here */
break;
case WAIT_PRE_FILTER:
task->state = WAIT_FILTER;
r = process_filters (task);
if (r == -1) {
task->last_error = "Filter processing error";
task->error_code = RSPAMD_FILTER_ERROR;
task->state = WRITE_ERROR;
return write_socket (task);
}
/* Add task to classify to classify pool */
if (!task->is_skipped && ctx->classify_pool) {
register_async_thread (task->s);
g_thread_pool_push (ctx->classify_pool, task, &err);
if (err != NULL) {
msg_err ("cannot pull task to the pool: %s", err->message);
remove_async_thread (task->s);
}
}
if (task->is_skipped) {
/* Call write_socket again to write reply and exit */
return write_socket (task);
}
break;
default:
msg_info ("abnormally closing connection at state: %d", task->state);
destroy_session (task->s);
return FALSE;
break;
}
return TRUE;
}
/*
* Called if something goes wrong
*/
static void
err_socket (GError * err, void *arg)
{
struct worker_task *task = (struct worker_task *) arg;
struct rspamd_worker_ctx *ctx;
ctx = task->worker->ctx;
msg_info ("abnormally closing connection from: %s, error: %s", inet_ntoa (task->client_addr), err->message);
/* Free buffers */
g_error_free (err);
destroy_session (task->s);
}
/*
* Called if all filters are processed
*/
static gboolean
fin_task (void *arg)
{
struct worker_task *task = (struct worker_task *) arg;
struct rspamd_worker_ctx *ctx;
ctx = task->worker->ctx;
/* Task is already finished or skipped */
if (task->state == WRITE_REPLY) {
if (task->fin_callback) {
task->fin_callback (task->fin_arg);
}
else {
rspamd_dispatcher_restore (task->dispatcher);
}
return TRUE;
}
/* We processed all filters and want to process statfiles */
if (task->state != WAIT_POST_FILTER && task->state != WAIT_PRE_FILTER) {
/* Process all statfiles */
if (ctx->classify_pool == NULL) {
/* Non-threaded version */
process_statfiles (task);
}
else {
/* Just process composites */
make_composites (task);
}
if (task->cfg->post_filters) {
/* More to process */
/* Special state */
task->state = WAIT_POST_FILTER;
return FALSE;
}
}
/* We are on post-filter waiting state */
if (task->state != WAIT_PRE_FILTER) {
/* Check if we have all events finished */
task->state = WRITE_REPLY;
if (task->fin_callback) {
task->fin_callback (task->fin_arg);
}
else {
rspamd_dispatcher_restore (task->dispatcher);
}
}
else {
/* We were waiting for pre-filter */
if (task->pre_result.action != METRIC_ACTION_NOACTION) {
/* Write result based on pre filters */
task->state = WRITE_REPLY;
if (task->fin_callback) {
task->fin_callback (task->fin_arg);
}
else {
rspamd_dispatcher_restore (task->dispatcher);
}
}
else {
/* Check normal filters in write callback */
rspamd_dispatcher_restore (task->dispatcher);
}
}
return TRUE;
}
/*
* Called if session was restored inside fin callback
*/
static void
restore_task (void *arg)
{
struct worker_task *task = (struct worker_task *) arg;
/* Call post filters */
lua_call_post_filters (task);
task->s->wanna_die = TRUE;
}
/*
* Reduce number of tasks proceeded
*/
static void
reduce_tasks_count (gpointer arg)
{
guint32 *tasks = arg;
(*tasks) --;
}
/*
* Accept new connection and construct task
*/
static void
accept_socket (gint fd, short what, void *arg)
{
struct rspamd_worker *worker = (struct rspamd_worker *) arg;
struct rspamd_worker_ctx *ctx;
union sa_union su;
struct worker_task *new_task;
socklen_t addrlen = sizeof (su.ss);
gint nfd;
ctx = worker->ctx;
if (ctx->max_tasks != 0 && ctx->tasks > ctx->max_tasks) {
msg_info ("current tasks is now: %uD while maximum is: %uD", ctx->tasks, ctx->max_tasks);
return;
}
if ((nfd =
accept_from_socket (fd, (struct sockaddr *) &su.ss, &addrlen)) == -1) {
msg_warn ("accept failed: %s", strerror (errno));
return;
}
/* Check for EAGAIN */
if (nfd == 0){
return;
}
new_task = construct_task (worker);
if (su.ss.ss_family == AF_UNIX) {
msg_info ("accepted connection from unix socket");
new_task->client_addr.s_addr = INADDR_NONE;
}
else if (su.ss.ss_family == AF_INET) {
msg_info ("accepted connection from %s port %d",
inet_ntoa (su.s4.sin_addr), ntohs (su.s4.sin_port));
memcpy (&new_task->client_addr, &su.s4.sin_addr,
sizeof (struct in_addr));
}
/* Copy some variables */
new_task->sock = nfd;
new_task->is_mime = ctx->is_mime;
new_task->is_json = ctx->is_json;
new_task->is_http = ctx->is_http;
new_task->allow_learn = ctx->allow_learn;
worker->srv->stat->connections_count++;
new_task->resolver = ctx->resolver;
msec_to_tv (ctx->timeout, &ctx->io_tv);
/* Set up dispatcher */
new_task->dispatcher =
rspamd_create_dispatcher (ctx->ev_base, nfd, BUFFER_LINE, read_socket, write_socket,
err_socket, &ctx->io_tv, (void *) new_task);
new_task->dispatcher->peer_addr = new_task->client_addr.s_addr;
new_task->ev_base = ctx->ev_base;
ctx->tasks ++;
memory_pool_add_destructor (new_task->task_pool, (pool_destruct_func)reduce_tasks_count, &ctx->tasks);
/* Set up async session */
new_task->s =
new_async_session (new_task->task_pool, fin_task, restore_task, free_task_hard, new_task);
}
gpointer
init_worker (struct config_file *cfg)
{
struct rspamd_worker_ctx *ctx;
GQuark type;
type = g_quark_try_string ("normal");
ctx = g_malloc0 (sizeof (struct rspamd_worker_ctx));
ctx->is_mime = TRUE;
ctx->timeout = DEFAULT_WORKER_IO_TIMEOUT;
ctx->classify_threads = 1;
rspamd_rcl_register_worker_option (cfg, type, "mime",
rspamd_rcl_parse_struct_boolean, ctx,
G_STRUCT_OFFSET (struct rspamd_worker_ctx, is_mime), 0);
rspamd_rcl_register_worker_option (cfg, type, "http",
rspamd_rcl_parse_struct_boolean, ctx,
G_STRUCT_OFFSET (struct rspamd_worker_ctx, is_http), 0);
rspamd_rcl_register_worker_option (cfg, type, "json",
rspamd_rcl_parse_struct_boolean, ctx,
G_STRUCT_OFFSET (struct rspamd_worker_ctx, is_json), 0);
rspamd_rcl_register_worker_option (cfg, type, "allow_learn",
rspamd_rcl_parse_struct_boolean, ctx,
G_STRUCT_OFFSET (struct rspamd_worker_ctx, allow_learn), 0);
rspamd_rcl_register_worker_option (cfg, type, "timeout",
rspamd_rcl_parse_struct_time, ctx,
G_STRUCT_OFFSET (struct rspamd_worker_ctx, timeout), RSPAMD_CL_FLAG_TIME_INTEGER);
rspamd_rcl_register_worker_option (cfg, type, "max_tasks",
rspamd_rcl_parse_struct_integer, ctx,
G_STRUCT_OFFSET (struct rspamd_worker_ctx, max_tasks), RSPAMD_CL_FLAG_INT_32);
rspamd_rcl_register_worker_option (cfg, type, "classify_threads",
rspamd_rcl_parse_struct_integer, ctx,
G_STRUCT_OFFSET (struct rspamd_worker_ctx, classify_threads), RSPAMD_CL_FLAG_INT_32);
return ctx;
}
/*
* Start worker process
*/
void
start_worker (struct rspamd_worker *worker)
{
struct rspamd_worker_ctx *ctx = worker->ctx;
GError *err = NULL;
struct lua_locked_state *nL;
ctx->ev_base = prepare_worker (worker, "normal", sig_handler, accept_socket);
/* SIGUSR2 handler */
signal_set (&worker->sig_ev_usr2, SIGUSR2, sigusr2_handler, (void *) worker);
event_base_set (ctx->ev_base, &worker->sig_ev_usr2);
signal_add (&worker->sig_ev_usr2, NULL);
/* SIGUSR1 handler */
signal_set (&worker->sig_ev_usr1, SIGUSR1, sigusr1_handler, (void *) worker);
event_base_set (ctx->ev_base, &worker->sig_ev_usr1);
signal_add (&worker->sig_ev_usr1, NULL);
start_map_watch (worker->srv->cfg, ctx->ev_base);
ctx->resolver = dns_resolver_init (ctx->ev_base, worker->srv->cfg);
/* Create classify pool */
ctx->classify_pool = NULL;
if (ctx->classify_threads > 1) {
nL = init_lua_locked (worker->srv->cfg);
ctx->classify_pool = g_thread_pool_new (process_statfiles_threaded, nL, ctx->classify_threads, TRUE, &err);
if (err != NULL) {
msg_err ("pool create failed: %s", err->message);
ctx->classify_pool = NULL;
}
}
event_base_loop (ctx->ev_base, 0);
close_log (rspamd_main->logger);
exit (EXIT_SUCCESS);
}
/*
* vi:ts=4
*/
|