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
|
/*
* 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 fuzzy storage server
*/
#include "config.h"
#include "util.h"
#include "rspamd.h"
#include "map.h"
#include "fuzzy_storage.h"
#include "fuzzy_backend.h"
#include "ottery.h"
#include "libserver/worker_util.h"
#include "cryptobox.h"
#include "keypairs_cache.h"
#include "keypair_private.h"
/* This number is used as expire time in seconds for cache items (2 days) */
#define DEFAULT_EXPIRE 172800L
/* Resync value in seconds */
#define DEFAULT_SYNC_TIMEOUT 60.0
#define DEFAULT_KEYPAIR_CACHE_SIZE 512
#define INVALID_NODE_TIME (guint64) - 1
/* Init functions */
gpointer init_fuzzy (struct rspamd_config *cfg);
void start_fuzzy (struct rspamd_worker *worker);
worker_t fuzzy_worker = {
"fuzzy", /* Name */
init_fuzzy, /* Init function */
start_fuzzy, /* Start function */
TRUE, /* No socket */
TRUE, /* Unique */
TRUE, /* Threaded */
FALSE, /* Non killable */
SOCK_DGRAM /* UDP socket */
};
/* For evtimer */
static struct timeval tmv;
static struct event tev;
static struct rspamd_stat *server_stat;
struct rspamd_fuzzy_storage_ctx {
char *hashfile;
gdouble expire;
gdouble sync_timeout;
radix_compressed_t *update_ips;
gchar *update_map;
guint keypair_cache_size;
struct event_base *ev_base;
/* Local keypair */
gpointer key;
struct rspamd_keypair_cache *keypair_cache;
struct rspamd_fuzzy_backend *backend;
};
enum fuzzy_cmd_type {
CMD_NORMAL,
CMD_SHINGLE,
CMD_ENCRYPTED_NORMAL,
CMD_ENCRYPTED_SHINGLE
};
struct fuzzy_session {
struct rspamd_worker *worker;
union {
struct rspamd_fuzzy_encrypted_shingle_cmd enc_shingle;
struct rspamd_fuzzy_encrypted_cmd enc_normal;
struct rspamd_fuzzy_cmd normal;
struct rspamd_fuzzy_shingle_cmd shingle;
} cmd;
enum rspamd_fuzzy_epoch epoch;
enum fuzzy_cmd_type cmd_type;
gint fd;
guint64 time;
rspamd_inet_addr_t *addr;
struct rspamd_fuzzy_storage_ctx *ctx;
guchar nm[rspamd_cryptobox_NMBYTES];
};
static gboolean
rspamd_fuzzy_check_client (struct fuzzy_session *session)
{
if (session->ctx->update_ips != NULL) {
if (radix_find_compressed_addr (session->ctx->update_ips,
session->addr) == RADIX_NO_VALUE) {
return FALSE;
}
}
return TRUE;
}
static void
rspamd_fuzzy_write_reply (struct fuzzy_session *session,
gconstpointer data, gsize len)
{
gssize r;
r = rspamd_inet_address_sendto (session->fd, data, len, 0,
session->addr);
if (r == -1) {
if (errno == EINTR) {
rspamd_fuzzy_write_reply (session, data, len);
}
else {
msg_err ("error while writing reply: %s", strerror (errno));
}
}
}
static void
rspamd_fuzzy_process_command (struct fuzzy_session *session)
{
gboolean res = FALSE, encrypted = FALSE;
struct rspamd_fuzzy_cmd *cmd;
struct rspamd_fuzzy_encrypted_reply rep;
struct rspamd_fuzzy_reply result;
switch (session->cmd_type) {
case CMD_NORMAL:
cmd = &session->cmd.normal;
break;
case CMD_SHINGLE:
cmd = &session->cmd.shingle.basic;
break;
case CMD_ENCRYPTED_NORMAL:
cmd = &session->cmd.enc_normal.cmd;
encrypted = TRUE;
break;
case CMD_ENCRYPTED_SHINGLE:
cmd = &session->cmd.enc_shingle.cmd.basic;
encrypted = TRUE;
break;
}
if (cmd->cmd == FUZZY_CHECK) {
result = rspamd_fuzzy_backend_check (session->ctx->backend, cmd,
session->ctx->expire);
/* XXX: actually, these updates are not atomic, but we don't care */
server_stat->fuzzy_hashes_checked[session->epoch] ++;
if (result.prob > 0.5) {
server_stat->fuzzy_hashes_found[session->epoch] ++;
}
}
else {
result.flag = cmd->flag;
if (rspamd_fuzzy_check_client (session)) {
if (cmd->cmd == FUZZY_WRITE) {
res = rspamd_fuzzy_backend_add (session->ctx->backend, cmd);
}
else {
res = rspamd_fuzzy_backend_del (session->ctx->backend, cmd);
}
if (!res) {
result.value = 404;
result.prob = 0.0;
}
else {
result.value = 0;
result.prob = 1.0;
}
}
else {
result.value = 403;
result.prob = 0.0;
}
server_stat->fuzzy_hashes = rspamd_fuzzy_backend_count (session->ctx->backend);
}
result.tag = cmd->tag;
memcpy (&rep.rep, &result, sizeof (result));
if (encrypted) {
/* We need also to encrypt reply */
ottery_rand_bytes (rep.hdr.nonce, sizeof (rep.hdr.nonce));
rspamd_cryptobox_encrypt_nm_inplace ((guchar *)&rep.rep, sizeof (rep.rep),
rep.hdr.nonce, session->nm, rep.hdr.mac);
rspamd_fuzzy_write_reply (session, &rep, sizeof (rep));
}
else {
rspamd_fuzzy_write_reply (session, &rep.rep, sizeof (rep.rep));
}
}
static enum rspamd_fuzzy_epoch
rspamd_fuzzy_command_valid (struct rspamd_fuzzy_cmd *cmd, gint r)
{
enum rspamd_fuzzy_epoch ret = RSPAMD_FUZZY_EPOCH_MAX;
if (cmd->version == RSPAMD_FUZZY_VERSION) {
if (cmd->shingles_count > 0) {
if (r == sizeof (struct rspamd_fuzzy_shingle_cmd)) {
ret = RSPAMD_FUZZY_EPOCH9;
}
}
else {
if (r == sizeof (*cmd)) {
ret = RSPAMD_FUZZY_EPOCH9;
}
}
}
else if (cmd->version == 2) {
/*
* rspamd 0.8 has slightly different tokenizer then it might be not
* 100% compatible
*/
if (cmd->shingles_count > 0) {
if (r == sizeof (struct rspamd_fuzzy_shingle_cmd)) {
ret = RSPAMD_FUZZY_EPOCH8;
}
}
else {
ret = RSPAMD_FUZZY_EPOCH8;
}
}
return ret;
}
static gboolean
rspamd_fuzzy_decrypt_command (struct fuzzy_session *s)
{
struct rspamd_fuzzy_encrypted_req_hdr *hdr;
guchar *payload;
gsize payload_len;
struct rspamd_http_keypair rk;
if (s->ctx->key == NULL) {
msg_warn ("received encrypted request when encryption is not enabled");
return FALSE;
}
if (s->cmd_type == CMD_ENCRYPTED_NORMAL) {
hdr = &s->cmd.enc_normal.hdr;
payload = (guchar *)&s->cmd.enc_normal.cmd;
payload_len = sizeof (s->cmd.enc_normal.cmd);
}
else {
hdr = &s->cmd.enc_shingle.hdr;
payload = (guchar *) &s->cmd.enc_shingle.cmd;
payload_len = sizeof (s->cmd.enc_shingle.cmd);
}
/* Compare magic */
if (memcmp (hdr->magic, fuzzy_encrypted_magic, sizeof (hdr->magic)) != 0) {
msg_debug ("invalid magic for the encrypted packet");
return FALSE;
}
/* Now process keypair */
memcpy (rk.pk, hdr->pubkey, sizeof (rk.pk));
rspamd_keypair_cache_process (s->ctx->keypair_cache, s->ctx->key, &rk);
/* Now decrypt request */
if (!rspamd_cryptobox_decrypt_nm_inplace (payload, payload_len, hdr->nonce,
rk.nm, hdr->mac)) {
msg_debug ("decryption failed");
rspamd_explicit_memzero (rk.nm, sizeof (rk.nm));
return FALSE;
}
memcpy (s->nm, rk.nm, sizeof (s->nm));
rspamd_explicit_memzero (rk.nm, sizeof (rk.nm));
return TRUE;
}
static gboolean
rspamd_fuzzy_cmd_from_wire (guchar *buf, guint buflen, struct fuzzy_session *s)
{
enum rspamd_fuzzy_epoch epoch;
/* For now, we assume that recvfrom returns a complete datagramm */
switch (buflen) {
case sizeof (struct rspamd_fuzzy_cmd):
s->cmd_type = CMD_NORMAL;
memcpy (&s->cmd.normal, buf, sizeof (s->cmd.normal));
epoch = rspamd_fuzzy_command_valid (&s->cmd.normal, buflen);
if (epoch == RSPAMD_FUZZY_EPOCH_MAX) {
msg_debug ("invalid fuzzy command of size %d received", buflen);
return FALSE;
}
s->epoch = epoch;
break;
case sizeof (struct rspamd_fuzzy_shingle_cmd):
s->cmd_type = CMD_SHINGLE;
memcpy (&s->cmd.shingle, buf, sizeof (s->cmd.shingle));
epoch = rspamd_fuzzy_command_valid (&s->cmd.shingle.basic, buflen);
if (epoch == RSPAMD_FUZZY_EPOCH_MAX) {
msg_debug ("invalid fuzzy command of size %d received", buflen);
return FALSE;
}
s->epoch = epoch;
break;
case sizeof (struct rspamd_fuzzy_encrypted_cmd):
s->cmd_type = CMD_ENCRYPTED_NORMAL;
memcpy (&s->cmd.enc_normal, buf, sizeof (s->cmd.enc_normal));
if (!rspamd_fuzzy_decrypt_command (s)) {
return FALSE;
}
epoch = rspamd_fuzzy_command_valid (&s->cmd.enc_normal.cmd,
sizeof (s->cmd.enc_normal.cmd));
if (epoch == RSPAMD_FUZZY_EPOCH_MAX) {
msg_debug ("invalid fuzzy command of size %d received", buflen);
return FALSE;
}
/* Encrypted is epoch 10 at least */
s->epoch = RSPAMD_FUZZY_EPOCH10;
break;
case sizeof (struct rspamd_fuzzy_encrypted_shingle_cmd):
s->cmd_type = CMD_ENCRYPTED_SHINGLE;
memcpy (&s->cmd.enc_shingle, buf, sizeof (s->cmd.enc_shingle));
if (!rspamd_fuzzy_decrypt_command (s)) {
return FALSE;
}
epoch = rspamd_fuzzy_command_valid (&s->cmd.enc_shingle.cmd.basic,
sizeof (s->cmd.enc_shingle.cmd));
if (epoch == RSPAMD_FUZZY_EPOCH_MAX) {
msg_debug ("invalid fuzzy command of size %d received", buflen);
return FALSE;
}
s->epoch = RSPAMD_FUZZY_EPOCH10;
break;
default:
msg_debug ("invalid fuzzy command of size %d received", buflen);
return FALSE;
}
return TRUE;
}
/*
* Accept new connection and construct task
*/
static void
accept_fuzzy_socket (gint fd, short what, void *arg)
{
struct rspamd_worker *worker = (struct rspamd_worker *)arg;
struct fuzzy_session session;
gssize r;
guint8 buf[512];
session.worker = worker;
session.fd = fd;
session.ctx = worker->ctx;
session.time = (guint64)time (NULL);
/* Got some data */
if (what == EV_READ) {
while ((r = rspamd_inet_address_recvfrom (fd, buf, sizeof (buf), 0,
&session.addr)) == -1) {
if (errno == EINTR) {
continue;
}
msg_err ("got error while reading from socket: %d, %s",
errno,
strerror (errno));
return;
}
if (rspamd_fuzzy_cmd_from_wire (buf, r, &session)) {
/* Check shingles count sanity */
rspamd_fuzzy_process_command (&session);
}
else {
/* Discard input */
server_stat->fuzzy_hashes_checked[RSPAMD_FUZZY_EPOCH6] ++;
msg_debug ("invalid fuzzy command of size %d received", r);
}
rspamd_inet_address_destroy (session.addr);
}
rspamd_explicit_memzero (session.nm, sizeof (session.nm));
}
static void
sync_callback (gint fd, short what, void *arg)
{
struct rspamd_worker *worker = (struct rspamd_worker *)arg;
struct rspamd_fuzzy_storage_ctx *ctx;
gdouble next_check;
guint64 old_expired, new_expired;
ctx = worker->ctx;
/* Call backend sync */
old_expired = rspamd_fuzzy_backend_expired (ctx->backend);
rspamd_fuzzy_backend_sync (ctx->backend, ctx->expire, TRUE);
new_expired = rspamd_fuzzy_backend_expired (ctx->backend);
if (old_expired < new_expired) {
server_stat->fuzzy_hashes_expired += new_expired - old_expired;
}
/* Timer event */
event_del (&tev);
evtimer_set (&tev, sync_callback, worker);
event_base_set (ctx->ev_base, &tev);
/* Plan event with jitter */
next_check = rspamd_time_jitter (ctx->sync_timeout, 0);
double_to_tv (next_check, &tmv);
evtimer_add (&tev, &tmv);
}
gpointer
init_fuzzy (struct rspamd_config *cfg)
{
struct rspamd_fuzzy_storage_ctx *ctx;
GQuark type;
type = g_quark_try_string ("fuzzy");
ctx = g_malloc0 (sizeof (struct rspamd_fuzzy_storage_ctx));
ctx->sync_timeout = DEFAULT_SYNC_TIMEOUT;
ctx->expire = DEFAULT_EXPIRE;
ctx->keypair_cache_size = DEFAULT_KEYPAIR_CACHE_SIZE;
rspamd_rcl_register_worker_option (cfg, type, "hashfile",
rspamd_rcl_parse_struct_string, ctx,
G_STRUCT_OFFSET (struct rspamd_fuzzy_storage_ctx, hashfile), 0);
rspamd_rcl_register_worker_option (cfg, type, "hash_file",
rspamd_rcl_parse_struct_string, ctx,
G_STRUCT_OFFSET (struct rspamd_fuzzy_storage_ctx, hashfile), 0);
rspamd_rcl_register_worker_option (cfg, type, "file",
rspamd_rcl_parse_struct_string, ctx,
G_STRUCT_OFFSET (struct rspamd_fuzzy_storage_ctx, hashfile), 0);
rspamd_rcl_register_worker_option (cfg, type, "database",
rspamd_rcl_parse_struct_string, ctx,
G_STRUCT_OFFSET (struct rspamd_fuzzy_storage_ctx, hashfile), 0);
rspamd_rcl_register_worker_option (cfg, type, "sync",
rspamd_rcl_parse_struct_time, ctx,
G_STRUCT_OFFSET (struct rspamd_fuzzy_storage_ctx,
sync_timeout), RSPAMD_CL_FLAG_TIME_FLOAT);
rspamd_rcl_register_worker_option (cfg, type, "expire",
rspamd_rcl_parse_struct_time, ctx,
G_STRUCT_OFFSET (struct rspamd_fuzzy_storage_ctx,
expire), RSPAMD_CL_FLAG_TIME_FLOAT);
rspamd_rcl_register_worker_option (cfg, type, "allow_update",
rspamd_rcl_parse_struct_string, ctx,
G_STRUCT_OFFSET (struct rspamd_fuzzy_storage_ctx, update_map), 0);
rspamd_rcl_register_worker_option (cfg, type, "keypair",
rspamd_rcl_parse_struct_keypair, ctx,
G_STRUCT_OFFSET (struct rspamd_fuzzy_storage_ctx, key), 0);
rspamd_rcl_register_worker_option (cfg, type, "keypair_cache_size",
rspamd_rcl_parse_struct_integer, ctx,
G_STRUCT_OFFSET (struct rspamd_fuzzy_storage_ctx, keypair_cache_size),
RSPAMD_CL_FLAG_UINT);
return ctx;
}
/*
* Start worker process
*/
void
start_fuzzy (struct rspamd_worker *worker)
{
struct rspamd_fuzzy_storage_ctx *ctx = worker->ctx;
GError *err = NULL;
gdouble next_check;
ctx->ev_base = rspamd_prepare_worker (worker,
"fuzzy",
accept_fuzzy_socket);
server_stat = worker->srv->stat;
/*
* Open DB and perform VACUUM
*/
if ((ctx->backend = rspamd_fuzzy_backend_open (ctx->hashfile, TRUE, &err)) == NULL) {
msg_err ("cannot open backend: %e", err);
g_error_free (err);
exit (EXIT_SUCCESS);
}
server_stat->fuzzy_hashes = rspamd_fuzzy_backend_count (ctx->backend);
if (ctx->key && ctx->keypair_cache_size > 0) {
/* Create keypairs cache */
ctx->keypair_cache = rspamd_keypair_cache_new (ctx->keypair_cache_size);
}
rspamd_fuzzy_backend_sync (ctx->backend, ctx->expire, TRUE);
/* Timer event */
evtimer_set (&tev, sync_callback, worker);
event_base_set (ctx->ev_base, &tev);
/* Plan event with jitter */
next_check = rspamd_time_jitter (ctx->sync_timeout, 0);
double_to_tv (next_check, &tmv);
evtimer_add (&tev, &tmv);
/* Create radix tree */
if (ctx->update_map != NULL) {
if (!rspamd_map_add (worker->srv->cfg, ctx->update_map,
"Allow fuzzy updates from specified addresses",
rspamd_radix_read, rspamd_radix_fin, (void **)&ctx->update_ips)) {
if (!radix_add_generic_iplist (ctx->update_map,
&ctx->update_ips)) {
msg_warn ("cannot load or parse ip list from '%s'",
ctx->update_map);
}
}
}
/* Maps events */
rspamd_map_watch (worker->srv->cfg, ctx->ev_base);
event_base_loop (ctx->ev_base, 0);
rspamd_fuzzy_backend_sync (ctx->backend, ctx->expire, TRUE);
rspamd_fuzzy_backend_close (ctx->backend);
rspamd_log_close (worker->srv->logger);
if (ctx->keypair_cache) {
rspamd_keypair_cache_destroy (ctx->keypair_cache);
}
if (ctx->key) {
rspamd_http_connection_key_unref (ctx->key);
}
exit (EXIT_SUCCESS);
}
|