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
|
/*-
* Copyright 2022 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 "stat_internal.h"
#include "libserver/http/http_connection.h"
#include "libserver/mempool_vars_internal.h"
#include "upstream.h"
#include "contrib/robin-hood/robin_hood.h"
#include <vector>
namespace rspamd::stat::http {
#define msg_debug_stat_http(...) rspamd_conditional_debug_fast (NULL, NULL, \
rspamd_stat_http_log_id, "stat_http", task->task_pool->tag.uid, \
RSPAMD_LOG_FUNC, \
__VA_ARGS__)
INIT_LOG_MODULE(stat_http)
/* Represents all http backends defined in some configuration */
class http_backends_collection {
std::vector<struct rspamd_statfile *> backends;
double timeout = 1.0; /* Default timeout */
struct upstream_list *read_servers = nullptr;
struct upstream_list *write_servers = nullptr;
public:
static auto get() -> http_backends_collection& {
static http_backends_collection *singleton = nullptr;
if (singleton == nullptr) {
singleton = new http_backends_collection;
}
return *singleton;
}
/**
* Add a new backend and (optionally initialize the basic backend parameters
* @param ctx
* @param cfg
* @param st
* @return
*/
auto add_backend(struct rspamd_stat_ctx *ctx,
struct rspamd_config *cfg,
struct rspamd_statfile *st) -> bool;
/**
* Remove a statfile cleaning things up if the last statfile is removed
* @param st
* @return
*/
auto remove_backend(struct rspamd_statfile *st) -> bool;
upstream *get_upstream(bool is_learn);
private:
http_backends_collection() = default;
auto first_init(struct rspamd_stat_ctx *ctx,
struct rspamd_config *cfg,
struct rspamd_statfile *st) -> bool;
};
/*
* Created one per each task
*/
class http_backend_runtime final {
public:
static auto create(struct rspamd_task *task, bool is_learn) -> http_backend_runtime *;
private:
http_backends_collection *all_backends;
robin_hood::unordered_flat_map<int, struct rspamd_statfile *> seen_statfiles;
struct upstream *selected;
private:
http_backend_runtime(struct rspamd_task *task, bool is_learn) :
all_backends(&http_backends_collection::get()) {
selected = all_backends->get_upstream(is_learn);
}
~http_backend_runtime() = default;
static auto dtor(void *p) -> void {
((http_backend_runtime *)p)->~http_backend_runtime();
}
};
auto http_backend_runtime::create(struct rspamd_task *task, bool is_learn) -> http_backend_runtime *
{
/* Alloc type provide proper size and alignment */
auto *allocated_runtime = rspamd_mempool_alloc_type(task->task_pool, http_backend_runtime);
rspamd_mempool_add_destructor(task->task_pool, http_backend_runtime::dtor, allocated_runtime);
return new (allocated_runtime) http_backend_runtime{task, is_learn};
}
auto
http_backends_collection::add_backend(struct rspamd_stat_ctx *ctx,
struct rspamd_config *cfg,
struct rspamd_statfile *st) -> bool
{
/* On empty list of backends we know that we need to load backend data actually */
if (backends.empty()) {
if (!first_init(ctx, cfg, st)) {
return false;
}
}
backends.push_back(st);
return true;
}
auto http_backends_collection::first_init(struct rspamd_stat_ctx *ctx,
struct rspamd_config *cfg,
struct rspamd_statfile *st) -> bool
{
auto try_load_backend_config = [&](const ucl_object_t *obj) -> bool {
if (!obj || ucl_object_type(obj) != UCL_OBJECT) {
return false;
}
/* First try to load read servers */
auto *rs = ucl_object_lookup_any(obj, "read_servers", "servers", nullptr);
if (rs) {
read_servers = rspamd_upstreams_create(cfg->ups_ctx);
if (read_servers == nullptr) {
return false;
}
if (!rspamd_upstreams_from_ucl(read_servers, rs, 80, this)) {
rspamd_upstreams_destroy(read_servers);
return false;
}
}
auto *ws = ucl_object_lookup_any(obj, "write_servers", "servers", nullptr);
if (ws) {
write_servers = rspamd_upstreams_create(cfg->ups_ctx);
if (write_servers == nullptr) {
return false;
}
if (!rspamd_upstreams_from_ucl(write_servers, rs, 80, this)) {
rspamd_upstreams_destroy(write_servers);
return false;
}
}
auto *tim = ucl_object_lookup(obj, "timeout");
if (tim) {
timeout = ucl_object_todouble(tim);
}
return true;
};
auto ret = false;
auto obj = ucl_object_lookup (st->classifier->cfg->opts, "backend");
if (obj != nullptr) {
ret = try_load_backend_config(obj);
}
/* Now try statfiles config */
if (!ret && st->stcf->opts) {
ret = try_load_backend_config(st->stcf->opts);
}
/* Now try classifier config */
if (!ret && st->classifier->cfg->opts) {
ret = try_load_backend_config(st->classifier->cfg->opts);
}
return ret;
}
auto http_backends_collection::remove_backend(struct rspamd_statfile *st) -> bool
{
auto backend_it = std::remove(std::begin(backends), std::end(backends), st);
if (backend_it != std::end(backends)) {
/* Fast erasure with no order preservation */
std::swap(*backend_it, backends.back());
backends.pop_back();
if (backends.empty()) {
/* De-init collection - likely config reload */
if (read_servers) {
rspamd_upstreams_destroy(read_servers);
read_servers = nullptr;
}
if (write_servers) {
rspamd_upstreams_destroy(write_servers);
write_servers = nullptr;
}
}
return true;
}
return false;
}
upstream *http_backends_collection::get_upstream(bool is_learn)
{
auto *ups_list = read_servers;
if (is_learn) {
ups_list = write_servers;
}
return rspamd_upstream_get(ups_list, RSPAMD_UPSTREAM_ROUND_ROBIN, nullptr, 0);
}
}
/* C API */
gpointer
rspamd_http_init(struct rspamd_stat_ctx* ctx,
struct rspamd_config* cfg,
struct rspamd_statfile* st)
{
auto &collections = rspamd::stat::http::http_backends_collection::get();
if (!collections.add_backend(ctx, cfg, st)) {
msg_err_config("cannot load http backend");
return nullptr;
}
return (void *)&collections;
}
gpointer
rspamd_http_runtime(struct rspamd_task* task,
struct rspamd_statfile_config* stcf,
gboolean learn,
gpointer ctx,
gint _id)
{
auto maybe_existing = rspamd_mempool_get_variable(task->task_pool, RSPAMD_MEMPOOL_HTTP_STAT_BACKEND_RUNTIME);
if (maybe_existing != nullptr) {
return maybe_existing;
}
auto runtime = rspamd::stat::http::http_backend_runtime::create(task, learn);
if (runtime) {
rspamd_mempool_set_variable(task->task_pool, RSPAMD_MEMPOOL_HTTP_STAT_BACKEND_RUNTIME,
(void *)runtime, nullptr);
}
return (void *)runtime;
}
gboolean
rspamd_http_process_tokens(struct rspamd_task* task,
GPtrArray* tokens,
gint id,
gpointer runtime)
{
auto real_runtime = (rspamd::stat::http::http_backend_runtime *)runtime;
if (real_runtime) {
/* TODO */
return true;
}
return false;
}
gboolean
rspamd_http_finalize_process(struct rspamd_task* task,
gpointer runtime,
gpointer ctx)
{
/* Not needed */
return true;
}
gboolean
rspamd_http_learn_tokens(struct rspamd_task* task,
GPtrArray* tokens,
gint id,
gpointer runtime)
{
auto real_runtime = (rspamd::stat::http::http_backend_runtime *)runtime;
if (real_runtime) {
/* TODO */
return true;
}
return false;
}
gboolean
rspamd_http_finalize_learn(struct rspamd_task* task,
gpointer runtime,
gpointer ctx,
GError** err)
{
return false;
}
gulong rspamd_http_total_learns(struct rspamd_task* task,
gpointer runtime,
gpointer ctx)
{
/* TODO */
return 0;
}
gulong
rspamd_http_inc_learns(struct rspamd_task* task,
gpointer runtime,
gpointer ctx)
{
/* TODO */
return 0;
}
gulong
rspamd_http_dec_learns(struct rspamd_task* task,
gpointer runtime,
gpointer ctx)
{
/* TODO */
return (gulong)-1;
}
gulong
rspamd_http_learns(struct rspamd_task* task,
gpointer runtime,
gpointer ctx)
{
/* TODO */
return 0;
}
ucl_object_t*
rspamd_http_get_stat(gpointer runtime, gpointer ctx)
{
/* TODO */
return nullptr;
}
gpointer
rspamd_http_load_tokenizer_config(gpointer runtime, gsize* len)
{
return nullptr;
}
void
rspamd_http_close(gpointer ctx)
{
/* TODO */
}
|