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
|
/*
* Copyright (c) 2015, 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.
*/
#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 "libserver/worker_util.h"
#include "keypairs_cache.h"
#include "ottery.h"
#include "unix-std.h"
/* Rotate keys each minute by default */
#define DEFAULT_ROTATION_TIME 60.0
gpointer init_http_proxy (struct rspamd_config *cfg);
void start_http_proxy (struct rspamd_worker *worker);
worker_t http_proxy_worker = {
"http_proxy", /* Name */
init_http_proxy, /* Init function */
start_http_proxy, /* Start function */
TRUE, /* Has socket */
FALSE, /* Non unique */
FALSE, /* Non threaded */
TRUE, /* Killable */
SOCK_STREAM /* TCP socket */
};
struct rspamd_http_upstream {
gchar *name;
struct upstream_list *u;
gpointer key;
};
struct http_proxy_ctx {
gdouble timeout;
struct timeval io_tv;
/* DNS resolver */
struct rspamd_dns_resolver *resolver;
/* Events base */
struct event_base *ev_base;
/* Encryption key for clients */
gpointer key;
/* Keys cache */
struct rspamd_keypair_cache *keys_cache;
/* Upstreams to use */
GHashTable *upstreams;
/* Default upstream */
struct rspamd_http_upstream *default_upstream;
/* Local rotating keypair for upstreams */
gpointer local_key;
struct event rotate_ev;
gdouble rotate_tm;
};
struct http_proxy_session {
struct http_proxy_ctx *ctx;
struct event_base *ev_base;
gpointer local_key;
gpointer remote_key;
struct upstream *up;
gint client_sock;
gint backend_sock;
rspamd_inet_addr_t *client_addr;
struct rspamd_http_connection *client_conn;
struct rspamd_http_connection *backend_conn;
struct rspamd_dns_resolver *resolver;
gboolean replied;
};
static GQuark
http_proxy_quark (void)
{
return g_quark_from_static_string ("http-proxy");
}
static gboolean
http_proxy_parse_upstream (rspamd_mempool_t *pool,
const ucl_object_t *obj,
gpointer ud,
struct rspamd_rcl_section *section,
GError **err)
{
const ucl_object_t *elt;
struct rspamd_http_upstream *up = NULL;
struct http_proxy_ctx *ctx;
struct rspamd_rcl_struct_parser *pd = ud;
ctx = pd->user_struct;
if (ucl_object_type (obj) != UCL_OBJECT) {
g_set_error (err, http_proxy_quark (), 100,
"upstream option must be an object");
return FALSE;
}
elt = ucl_object_find_key (obj, "name");
if (elt == NULL) {
g_set_error (err, http_proxy_quark (), 100,
"upstream option must have some name definition");
return FALSE;
}
up = g_slice_alloc0 (sizeof (*up));
up->name = g_strdup (ucl_object_tostring (elt));
elt = ucl_object_find_key (obj, "key");
if (elt != NULL) {
up->key = rspamd_http_connection_make_peer_key (ucl_object_tostring (elt));
if (up->key == NULL) {
g_set_error (err, http_proxy_quark (), 100,
"cannot read upstream key");
goto err;
}
}
elt = ucl_object_find_key (obj, "hosts");
if (elt == NULL) {
g_set_error (err, http_proxy_quark (), 100,
"upstream option must have some hosts definition");
goto err;
}
up->u = rspamd_upstreams_create ();
if (!rspamd_upstreams_from_ucl (up->u, elt, 11333, NULL)) {
g_set_error (err, http_proxy_quark (), 100,
"upstream has bad hosts definition");
goto err;
}
elt = ucl_object_find_key (obj, "default");
if (elt && ucl_object_toboolean (elt)) {
ctx->default_upstream = up;
}
g_hash_table_insert (ctx->upstreams, up->name, up);
return TRUE;
err:
if (up) {
g_free (up->name);
rspamd_upstreams_destroy (up->u);
if (up->key) {
rspamd_http_connection_key_unref (up->key);
}
g_slice_free1 (sizeof (*up), up);
}
return FALSE;
}
gpointer
init_http_proxy (struct rspamd_config *cfg)
{
struct http_proxy_ctx *ctx;
GQuark type;
type = g_quark_try_string ("http_proxy");
ctx = g_malloc0 (sizeof (struct http_proxy_ctx));
ctx->timeout = 5.0;
ctx->upstreams = g_hash_table_new (rspamd_strcase_hash, rspamd_strcase_equal);
ctx->rotate_tm = DEFAULT_ROTATION_TIME;
rspamd_rcl_register_worker_option (cfg, type, "timeout",
rspamd_rcl_parse_struct_time, ctx,
G_STRUCT_OFFSET (struct http_proxy_ctx,
timeout), RSPAMD_CL_FLAG_TIME_FLOAT);
rspamd_rcl_register_worker_option (cfg, type, "rotate",
rspamd_rcl_parse_struct_time, ctx,
G_STRUCT_OFFSET (struct http_proxy_ctx,
rotate_tm), RSPAMD_CL_FLAG_TIME_FLOAT);
rspamd_rcl_register_worker_option (cfg, type, "keypair",
rspamd_rcl_parse_struct_keypair, ctx,
G_STRUCT_OFFSET (struct http_proxy_ctx,
key), 0);
rspamd_rcl_register_worker_option (cfg, type, "upstream",
http_proxy_parse_upstream, ctx, 0, 0);
return ctx;
}
static void
proxy_session_cleanup (struct http_proxy_session *session)
{
rspamd_inet_address_destroy (session->client_addr);
if (session->backend_conn) {
rspamd_http_connection_unref (session->backend_conn);
}
if (session->client_conn) {
rspamd_http_connection_unref (session->client_conn);
}
close (session->backend_sock);
close (session->client_sock);
g_slice_free1 (sizeof (*session), session);
}
static void
proxy_client_write_error (struct http_proxy_session *session, gint code)
{
struct rspamd_http_message *reply;
reply = rspamd_http_new_message (HTTP_RESPONSE);
reply->code = code;
rspamd_http_connection_write_message (session->client_conn,
reply, NULL, NULL, session, session->client_sock,
&session->ctx->io_tv, session->ev_base);
}
static void
proxy_backend_error_handler (struct rspamd_http_connection *conn, GError *err)
{
struct http_proxy_session *session = conn->ud;
msg_info ("abnormally closing connection from backend: %s, error: %s",
rspamd_inet_address_to_string (rspamd_upstream_addr (session->up)),
err->message);
rspamd_http_connection_reset (session->backend_conn);
/* Terminate session immediately */
proxy_client_write_error (session, err->code);
}
static gint
proxy_backend_finish_handler (struct rspamd_http_connection *conn,
struct rspamd_http_message *msg)
{
struct http_proxy_session *session = conn->ud;
rspamd_http_connection_steal_msg (session->backend_conn);
rspamd_http_message_remove_header (msg, "Content-Length");
rspamd_http_message_remove_header (msg, "Key");
rspamd_http_connection_reset (session->backend_conn);
rspamd_http_connection_write_message (session->client_conn,
msg, NULL, NULL, session, session->client_sock,
&session->ctx->io_tv, session->ev_base);
return 0;
}
static void
proxy_client_error_handler (struct rspamd_http_connection *conn, GError *err)
{
struct http_proxy_session *session = conn->ud;
msg_info ("abnormally closing connection from: %s, error: %s",
rspamd_inet_address_to_string (session->client_addr), err->message);
/* Terminate session immediately */
proxy_session_cleanup (session);
}
static gint
proxy_client_finish_handler (struct rspamd_http_connection *conn,
struct rspamd_http_message *msg)
{
struct http_proxy_session *session = conn->ud;
struct rspamd_http_upstream *backend = NULL;
const rspamd_ftok_t *host;
gchar hostbuf[512];
if (!session->replied) {
host = rspamd_http_message_find_header (msg, "Host");
if (host == NULL) {
backend = session->ctx->default_upstream;
}
else {
rspamd_strlcpy (hostbuf, host->begin, MIN(host->len + 1, sizeof (hostbuf)));
backend = g_hash_table_lookup (session->ctx->upstreams, hostbuf);
if (backend == NULL) {
backend = session->ctx->default_upstream;
}
}
if (backend == NULL) {
/* No backend */
msg_err ("cannot find upstream for %s", host ? hostbuf : "default");
goto err;
}
else {
session->up = rspamd_upstream_get (backend->u, RSPAMD_UPSTREAM_ROUND_ROBIN);
if (session->up == NULL) {
msg_err ("cannot select upstream for %s", host ? hostbuf : "default");
goto err;
}
session->backend_sock = rspamd_inet_address_connect (
rspamd_upstream_addr (session->up), SOCK_STREAM, TRUE);
if (session->backend_sock == -1) {
msg_err ("cannot connect upstream for %s", host ? hostbuf : "default");
rspamd_upstream_fail (session->up);
goto err;
}
rspamd_http_connection_steal_msg (session->client_conn);
rspamd_http_message_remove_header (msg, "Content-Length");
rspamd_http_message_remove_header (msg, "Key");
rspamd_http_connection_reset (session->client_conn);
session->backend_conn = rspamd_http_connection_new (
NULL,
proxy_backend_error_handler,
proxy_backend_finish_handler,
RSPAMD_HTTP_CLIENT_SIMPLE,
RSPAMD_HTTP_CLIENT,
session->ctx->keys_cache);
rspamd_http_connection_set_key (session->backend_conn,
session->ctx->local_key);
msg->peer_key = rspamd_http_connection_key_ref (backend->key);
session->replied = TRUE;
rspamd_http_connection_write_message (session->backend_conn,
msg, NULL, NULL, session, session->backend_sock,
&session->ctx->io_tv, session->ev_base);
}
}
else {
proxy_session_cleanup (session);
}
return 0;
err:
session->replied = TRUE;
proxy_client_write_error (session, 404);
return 0;
}
static void
proxy_accept_socket (gint fd, short what, void *arg)
{
struct rspamd_worker *worker = (struct rspamd_worker *) arg;
struct http_proxy_ctx *ctx;
rspamd_inet_addr_t *addr;
struct http_proxy_session *session;
gint nfd;
ctx = worker->ctx;
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));
session = g_slice_alloc0 (sizeof (*session));
session->client_sock = nfd;
session->client_addr = addr;
session->resolver = ctx->resolver;
session->client_conn = rspamd_http_connection_new (
NULL,
proxy_client_error_handler,
proxy_client_finish_handler,
0,
RSPAMD_HTTP_SERVER,
ctx->keys_cache);
session->ev_base = ctx->ev_base;
session->ctx = ctx;
if (ctx->key) {
rspamd_http_connection_set_key (session->client_conn, ctx->key);
}
rspamd_http_connection_read_message (session->client_conn,
session,
nfd,
&ctx->io_tv,
ctx->ev_base);
}
static void
proxy_rotate_key (gint fd, short what, void *arg)
{
struct timeval rot_tv;
struct http_proxy_ctx *ctx = arg;
gpointer kp;
double_to_tv (ctx->rotate_tm, &rot_tv);
rot_tv.tv_sec += ottery_rand_range (rot_tv.tv_sec);
event_del (&ctx->rotate_ev);
event_add (&ctx->rotate_ev, &rot_tv);
kp = ctx->local_key;
ctx->local_key = rspamd_http_connection_gen_key ();
rspamd_http_connection_key_unref (kp);
}
void
start_http_proxy (struct rspamd_worker *worker)
{
struct http_proxy_ctx *ctx = worker->ctx;
struct timeval rot_tv;
ctx->ev_base = rspamd_prepare_worker (worker, "http_proxy",
proxy_accept_socket);
rspamd_map_watch (worker->srv->cfg, ctx->ev_base);
ctx->resolver = dns_resolver_init (worker->srv->logger,
ctx->ev_base,
worker->srv->cfg);
double_to_tv (ctx->timeout, &ctx->io_tv);
rspamd_upstreams_library_init (ctx->resolver->r, ctx->ev_base);
rspamd_upstreams_library_config (worker->srv->cfg);
/* XXX: stupid default */
ctx->keys_cache = rspamd_keypair_cache_new (256);
ctx->local_key = rspamd_http_connection_gen_key ();
double_to_tv (ctx->rotate_tm, &rot_tv);
rot_tv.tv_sec += ottery_rand_range (rot_tv.tv_sec);
event_set (&ctx->rotate_ev, -1, EV_TIMEOUT, proxy_rotate_key, ctx);
event_base_set (ctx->ev_base, &ctx->rotate_ev);
event_add (&ctx->rotate_ev, &rot_tv);
event_base_loop (ctx->ev_base, 0);
g_mime_shutdown ();
rspamd_log_close (worker->srv->logger);
if (ctx->key) {
rspamd_http_connection_key_unref (ctx->key);
}
rspamd_keypair_cache_destroy (ctx->keys_cache);
exit (EXIT_SUCCESS);
}
|