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
|
/*-
* 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.
*/
/*
* Rspamd worker implementation
*/
#include <libserver/rspamd_control.h>
#include "config.h"
#include "libutil/util.h"
#include "libutil/map.h"
#include "libutil/upstream.h"
#include "libserver/protocol.h"
#include "libserver/cfg_file.h"
#include "libserver/url.h"
#include "libserver/dns.h"
#include "libmime/message.h"
#include "rspamd.h"
#include "keypairs_cache.h"
#include "libstat/stat_api.h"
#include "libserver/worker_util.h"
#include "libserver/rspamd_control.h"
#include "worker_private.h"
#include "utlist.h"
#include "lua/lua_common.h"
/* 60 seconds for worker's IO */
#define DEFAULT_WORKER_IO_TIMEOUT 60000
/* Timeout for task processing */
#define DEFAULT_TASK_TIMEOUT 8.0
gpointer init_worker (struct rspamd_config *cfg);
void start_worker (struct rspamd_worker *worker);
worker_t normal_worker = {
"normal", /* Name */
init_worker, /* Init function */
start_worker, /* Start function */
RSPAMD_WORKER_HAS_SOCKET|RSPAMD_WORKER_KILLABLE,
SOCK_STREAM, /* TCP socket */
RSPAMD_WORKER_VER /* Version info */
};
#define msg_err_ctx(...) rspamd_default_log_function(G_LOG_LEVEL_CRITICAL, \
"controller", ctx->cfg->cfg_pool->tag.uid, \
G_STRFUNC, \
__VA_ARGS__)
#define msg_warn_ctx(...) rspamd_default_log_function (G_LOG_LEVEL_WARNING, \
"controller", ctx->cfg->cfg_pool->tag.uid, \
G_STRFUNC, \
__VA_ARGS__)
#define msg_info_ctx(...) rspamd_default_log_function (G_LOG_LEVEL_INFO, \
"controller", ctx->cfg->cfg_pool->tag.uid, \
G_STRFUNC, \
__VA_ARGS__)
#define msg_debug_ctx(...) rspamd_default_log_function (G_LOG_LEVEL_DEBUG, \
"controller", ctx->cfg->cfg_pool->tag.uid, \
G_STRFUNC, \
__VA_ARGS__)
/*
* Reduce number of tasks proceeded
*/
static void
reduce_tasks_count (gpointer arg)
{
guint *nconns = arg;
(*nconns)--;
}
static void
rspamd_task_timeout (gint fd, short what, gpointer ud)
{
struct rspamd_task *task = (struct rspamd_task *) ud;
if (!(task->processed_stages & RSPAMD_TASK_STAGE_FILTERS)) {
msg_info_task ("processing of task timed out, forced processing");
task->processed_stages |= RSPAMD_TASK_STAGE_FILTERS;
rspamd_session_cleanup (task->s);
rspamd_task_process (task, RSPAMD_TASK_PROCESS_ALL);
rspamd_session_pending (task->s);
}
}
static void
rspamd_worker_guard_handler (gint fd, short what, void *data)
{
struct rspamd_task *task = data;
gchar fake_buf[1024];
gssize r;
#ifdef EV_CLOSED
if (what == EV_CLOSED) {
if (!(task->flags & RSPAMD_TASK_FLAG_JSON) &&
task->cfg->enable_shutdown_workaround) {
msg_info_task ("workaround for shutdown enabled, please update "
"your client, this support might be removed in future");
shutdown (fd, SHUT_RD);
event_del (task->guard_ev);
task->guard_ev = NULL;
}
else {
msg_err_task ("the peer has closed connection unexpectedly");
rspamd_session_destroy (task->s);
}
return;
}
#endif
r = read (fd, fake_buf, sizeof (fake_buf));
if (r > 0) {
msg_warn_task ("received extra data after task is loaded, ignoring");
}
else {
if (r == 0) {
/*
* Poor man approach, that might break things in case of
* shutdown (SHUT_WR) but sockets are so bad that there's no
* reliable way to distinguish between shutdown(SHUT_WR) and
* close.
*/
if (!(task->flags & RSPAMD_TASK_FLAG_JSON) &&
task->cfg->enable_shutdown_workaround) {
msg_info_task ("workaround for shutdown enabled, please update "
"your client, this support might be removed in future");
shutdown (fd, SHUT_RD);
event_del (task->guard_ev);
task->guard_ev = NULL;
}
else {
msg_err_task ("the peer has closed connection unexpectedly");
rspamd_session_destroy (task->s);
}
}
else if (errno != EAGAIN) {
msg_err_task ("the peer has closed connection unexpectedly: %s",
strerror (errno));
rspamd_session_destroy (task->s);
}
else {
return;
}
}
}
static gint
rspamd_worker_body_handler (struct rspamd_http_connection *conn,
struct rspamd_http_message *msg,
const gchar *chunk, gsize len)
{
struct rspamd_task *task = (struct rspamd_task *) conn->ud;
struct rspamd_worker_ctx *ctx;
struct timeval task_tv;
struct event *guard_ev;
ctx = task->worker->ctx;
if (!rspamd_protocol_handle_request (task, msg)) {
msg_err_task ("cannot handle request: %e", task->err);
task->flags |= RSPAMD_TASK_FLAG_SKIP;
}
else {
if (task->cmd == CMD_PING) {
task->flags |= RSPAMD_TASK_FLAG_SKIP;
}
else {
if (!rspamd_task_load_message (task, msg, chunk, len)) {
msg_err_task ("cannot load message: %e", task->err);
task->flags |= RSPAMD_TASK_FLAG_SKIP;
}
}
}
/* Set global timeout for the task */
if (ctx->task_timeout > 0.0) {
event_set (&task->timeout_ev, -1, EV_TIMEOUT, rspamd_task_timeout,
task);
event_base_set (ctx->ev_base, &task->timeout_ev);
double_to_tv (ctx->task_timeout, &task_tv);
event_add (&task->timeout_ev, &task_tv);
}
/* Set socket guard */
guard_ev = rspamd_mempool_alloc (task->task_pool, sizeof (*guard_ev));
#ifdef EV_CLOSED
event_set (guard_ev, task->sock, EV_READ|EV_PERSIST|EV_CLOSED,
rspamd_worker_guard_handler, task);
#else
event_set (guard_ev, task->sock, EV_READ|EV_PERSIST,
rspamd_worker_guard_handler, task);
#endif
event_base_set (task->ev_base, guard_ev);
event_add (guard_ev, NULL);
task->guard_ev = guard_ev;
rspamd_task_process (task, RSPAMD_TASK_PROCESS_ALL);
return 0;
}
static void
rspamd_worker_error_handler (struct rspamd_http_connection *conn, GError *err)
{
struct rspamd_task *task = (struct rspamd_task *) conn->ud;
msg_info_task ("abnormally closing connection from: %s, error: %e",
rspamd_inet_address_to_string (task->client_addr), err);
/* Terminate session immediately */
rspamd_session_destroy (task->s);
}
static gint
rspamd_worker_finish_handler (struct rspamd_http_connection *conn,
struct rspamd_http_message *msg)
{
struct rspamd_task *task = (struct rspamd_task *) conn->ud;
if (task->processed_stages & RSPAMD_TASK_STAGE_REPLIED) {
/* We are done here */
msg_debug_task ("normally closing connection from: %s",
rspamd_inet_address_to_string (task->client_addr));
rspamd_session_destroy (task->s);
}
else if (task->processed_stages & RSPAMD_TASK_STAGE_DONE) {
rspamd_session_pending (task->s);
}
return 0;
}
/*
* 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;
struct rspamd_task *task;
rspamd_inet_addr_t *addr;
gint nfd;
ctx = worker->ctx;
if (ctx->max_tasks != 0 && worker->nconns > ctx->max_tasks) {
msg_info_ctx ("current tasks is now: %uD while maximum is: %uD",
worker->nconns,
ctx->max_tasks);
return;
}
if ((nfd =
rspamd_accept_from_socket (fd, &addr)) == -1) {
msg_warn_ctx ("accept failed: %s", strerror (errno));
return;
}
/* Check for EAGAIN */
if (nfd == 0) {
return;
}
task = rspamd_task_new (worker, ctx->cfg);
msg_info_task ("accepted connection from %s port %d",
rspamd_inet_address_to_string (addr),
rspamd_inet_address_get_port (addr));
/* Copy some variables */
if (ctx->is_mime) {
task->flags |= RSPAMD_TASK_FLAG_MIME;
}
else {
task->flags &= ~RSPAMD_TASK_FLAG_MIME;
}
task->sock = nfd;
task->client_addr = addr;
worker->srv->stat->connections_count++;
task->resolver = ctx->resolver;
/* TODO: allow to disable autolearn in protocol */
task->flags |= RSPAMD_TASK_FLAG_LEARN_AUTO;
task->http_conn = rspamd_http_connection_new (
rspamd_worker_body_handler,
rspamd_worker_error_handler,
rspamd_worker_finish_handler,
0,
RSPAMD_HTTP_SERVER,
ctx->keys_cache);
task->ev_base = ctx->ev_base;
worker->nconns++;
rspamd_mempool_add_destructor (task->task_pool,
(rspamd_mempool_destruct_t)reduce_tasks_count, &worker->nconns);
/* Set up async session */
task->s = rspamd_session_create (task->task_pool, rspamd_task_fin,
rspamd_task_restore, (event_finalizer_t )rspamd_task_free, task);
if (ctx->key) {
rspamd_http_connection_set_key (task->http_conn, ctx->key);
}
rspamd_http_connection_read_message (task->http_conn,
task,
nfd,
&ctx->io_tv,
ctx->ev_base);
}
#ifdef WITH_HYPERSCAN
static gboolean
rspamd_worker_hyperscan_ready (struct rspamd_main *rspamd_main,
struct rspamd_worker *worker, gint fd,
gint attached_fd,
struct rspamd_control_command *cmd,
gpointer ud)
{
struct rspamd_control_reply rep;
struct rspamd_re_cache *cache = worker->srv->cfg->re_cache;
memset (&rep, 0, sizeof (rep));
rep.type = RSPAMD_CONTROL_HYPERSCAN_LOADED;
if (!rspamd_re_cache_is_hs_loaded (cache) || cmd->cmd.hs_loaded.forced) {
msg_info ("loading hyperscan expressions after receiving compilation "
"notice: %s",
(!rspamd_re_cache_is_hs_loaded (cache)) ?
"new db" : "forced update");
rep.reply.hs_loaded.status = rspamd_re_cache_load_hyperscan (
worker->srv->cfg->re_cache, cmd->cmd.hs_loaded.cache_dir);
}
if (write (fd, &rep, sizeof (rep)) != sizeof (rep)) {
msg_err ("cannot write reply to the control socket: %s",
strerror (errno));
}
return TRUE;
}
#endif
static gboolean
rspamd_worker_log_pipe_handler (struct rspamd_main *rspamd_main,
struct rspamd_worker *worker, gint fd,
gint attached_fd,
struct rspamd_control_command *cmd,
gpointer ud)
{
struct rspamd_worker_ctx *ctx = ud;
struct rspamd_worker_log_pipe *lp;
struct rspamd_control_reply rep;
memset (&rep, 0, sizeof (rep));
rep.type = RSPAMD_CONTROL_LOG_PIPE;
if (attached_fd != -1) {
lp = g_slice_alloc0 (sizeof (*lp));
lp->fd = attached_fd;
lp->type = cmd->cmd.log_pipe.type;
DL_APPEND (ctx->log_pipes, lp);
msg_info ("added new log pipe");
}
else {
rep.reply.log_pipe.status = ENOENT;
msg_err ("cannot attach log pipe: invalid fd");
}
if (write (fd, &rep, sizeof (rep)) != sizeof (rep)) {
msg_err ("cannot write reply to the control socket: %s",
strerror (errno));
}
return TRUE;
}
gpointer
init_worker (struct rspamd_config *cfg)
{
struct rspamd_worker_ctx *ctx;
GQuark type;
type = g_quark_try_string ("normal");
ctx = g_malloc0 (sizeof (struct rspamd_worker_ctx));
ctx->magic = rspamd_worker_magic;
ctx->is_mime = TRUE;
ctx->timeout = DEFAULT_WORKER_IO_TIMEOUT;
ctx->cfg = cfg;
ctx->task_timeout = DEFAULT_TASK_TIMEOUT;
rspamd_rcl_register_worker_option (cfg,
type,
"mime",
rspamd_rcl_parse_struct_boolean,
ctx,
G_STRUCT_OFFSET (struct rspamd_worker_ctx, is_mime),
0,
"Set to `false` if this worker is intended to work with non-MIME messages");
rspamd_rcl_register_worker_option (cfg,
type,
"http",
rspamd_rcl_parse_struct_boolean,
ctx,
G_STRUCT_OFFSET (struct rspamd_worker_ctx, is_http),
0,
"Deprecated: always true now");
rspamd_rcl_register_worker_option (cfg,
type,
"json",
rspamd_rcl_parse_struct_boolean,
ctx,
G_STRUCT_OFFSET (struct rspamd_worker_ctx, is_json),
0,
"Deprecated: always true now");
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,
"Deprecated: disabled and forgotten");
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,
"Protocol IO timeout");
rspamd_rcl_register_worker_option (cfg,
type,
"task_timeout",
rspamd_rcl_parse_struct_time,
ctx,
G_STRUCT_OFFSET (struct rspamd_worker_ctx,
task_timeout),
RSPAMD_CL_FLAG_TIME_FLOAT,
"Maximum task processing time, default: "
G_STRINGIFY(DEFAULT_TASK_TIMEOUT)
" seconds");
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,
"Maximum count of parallel tasks processed by a single worker process");
rspamd_rcl_register_worker_option (cfg,
type,
"keypair",
rspamd_rcl_parse_struct_keypair,
ctx,
G_STRUCT_OFFSET (struct rspamd_worker_ctx,
key),
0,
"Encryption keypair");
return ctx;
}
/*
* Start worker process
*/
void
start_worker (struct rspamd_worker *worker)
{
struct rspamd_worker_ctx *ctx = worker->ctx;
struct rspamd_worker_log_pipe *lp, *ltmp;
ctx->ev_base = rspamd_prepare_worker (worker, "normal", accept_socket);
msec_to_tv (ctx->timeout, &ctx->io_tv);
rspamd_symbols_cache_start_refresh (worker->srv->cfg->cache, ctx->ev_base);
ctx->resolver = dns_resolver_init (worker->srv->logger,
ctx->ev_base,
worker->srv->cfg);
rspamd_map_watch (worker->srv->cfg, ctx->ev_base, ctx->resolver);
rspamd_upstreams_library_config (worker->srv->cfg, ctx->cfg->ups_ctx,
ctx->ev_base, ctx->resolver->r);
/* XXX: stupid default */
ctx->keys_cache = rspamd_keypair_cache_new (256);
rspamd_stat_init (worker->srv->cfg, ctx->ev_base);
#ifdef WITH_HYPERSCAN
rspamd_control_worker_add_cmd_handler (worker,
RSPAMD_CONTROL_HYPERSCAN_LOADED,
rspamd_worker_hyperscan_ready,
ctx);
#endif
rspamd_control_worker_add_cmd_handler (worker,
RSPAMD_CONTROL_LOG_PIPE,
rspamd_worker_log_pipe_handler,
ctx);
event_base_loop (ctx->ev_base, 0);
rspamd_worker_block_signals ();
g_mime_shutdown ();
rspamd_stat_close ();
rspamd_log_close (worker->srv->logger);
if (ctx->key) {
rspamd_keypair_unref (ctx->key);
}
rspamd_keypair_cache_destroy (ctx->keys_cache);
DL_FOREACH_SAFE (ctx->log_pipes, lp, ltmp) {
close (lp->fd);
g_slice_free1 (sizeof (*lp), lp);
}
exit (EXIT_SUCCESS);
}
|