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
|
/*
* Copyright (c) 2009, Rambler media
* 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 Rambler media ''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 Rambler 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 "statfile.h"
#include "main.h"
/* Maximum number of statistics files */
#define STATFILES_MAX 255
static int
cmpstatfile (const void *a, const void *b)
{
const stat_file_t *s1 = a, *s2 = b;
return rspamd_strcase_equal (s1->filename, s2->filename);
}
/* Check whether specified file is statistic file and calculate its len in blocks */
static int
statfile_pool_check (stat_file_t *file)
{
struct stat_file *f;
char *c;
if (!file || !file->map) {
return -1;
}
if (file->len < sizeof (struct stat_file)) {
msg_info ("statfile_pool_check: file %s is too short to be stat file: %zd", file->filename, file->len);
return -1;
}
f = (struct stat_file *)file->map;
c = f->header.magic;
/* Check magic and version */
if (*c++ != 'r' || *c++ != 's' || *c++ != 'd' ||
/* version */ *c++ != 1 || *c != 0) {
msg_info ("statfile_pool_check: file %s is invalid stat file", file->filename);
return -1;
}
/* Check first section and set new offset */
file->cur_section.code = f->section.code;
file->cur_section.length = f->section.length;
file->seek_pos = sizeof (struct stat_file) - sizeof (struct stat_file_block);
return 0;
}
struct expiration_data {
statfile_pool_t *pool;
uint64_t oldest;
char *filename;
};
static int
statfile_pool_expire (statfile_pool_t *pool)
{
struct expiration_data exp;
stat_file_t *file;
int i;
if (pool->opened == 0) {
return -1;
}
exp.pool = pool;
exp.oldest = ULLONG_MAX;
exp.filename = NULL;
for (i = 0; i < pool->opened; i++) {
file = &pool->files[i];
if ((uint64_t)file->access_time < exp.oldest) {
exp.oldest = file->access_time;
exp.filename = file->filename;
}
}
if (exp.filename) {
statfile_pool_close (pool, file, TRUE);
}
return 0;
}
statfile_pool_t*
statfile_pool_new (size_t max_size)
{
statfile_pool_t *new;
new = g_malloc (sizeof (statfile_pool_t));
bzero (new, sizeof (statfile_pool_t));
new->pool = memory_pool_new (memory_pool_get_size ());
new->max = max_size;
new->files = memory_pool_alloc_shared (new->pool, STATFILES_MAX * sizeof (stat_file_t));
return new;
}
stat_file_t *
statfile_pool_open (statfile_pool_t *pool, char *filename)
{
struct stat st;
stat_file_t *new_file;
if ((new_file = statfile_pool_is_open (pool, filename)) != NULL) {
return new_file;
}
if (pool->opened >= STATFILES_MAX - 1) {
msg_err ("sttafile_pool_open: reached hard coded limit of statfiles opened: %d", STATFILES_MAX);
return NULL;
}
if (stat (filename, &st) == -1) {
msg_info ("statfile_pool_open: cannot stat file %s, error %s, %d", filename, strerror (errno), errno);
return NULL;
}
if (st.st_size > pool->max) {
msg_info ("statfile_pool_open: cannot attach file to pool, too large: %zd", (size_t)st.st_size);
return NULL;
}
while (pool->max <= pool->occupied + st.st_size) {
if (statfile_pool_expire (pool) == -1) {
/* Failed to find any more free space in pool */
msg_info ("statfile_pool_open: expiration for pool failed, opening file %s failed", filename);
return NULL;
}
}
new_file = &pool->files[pool->opened ++];
if ((new_file->fd = open (filename, O_RDWR)) == -1 ) {
msg_info ("statfile_pool_open: cannot open file %s, error %d, %s", filename, errno, strerror (errno));
pool->opened --;
return NULL;
}
if ((new_file->map = mmap (NULL, st.st_size, PROT_READ | PROT_WRITE, MAP_SHARED, new_file->fd, 0)) == MAP_FAILED) {
close (new_file->fd);
msg_info ("statfile_pool_open: cannot mmap file %s, error %d, %s", filename, errno, strerror (errno));
pool->opened --;
return NULL;
}
/* XXX: this is temporary copy of name to avoid strdup early */
new_file->filename = filename;
new_file->len = st.st_size;
if (statfile_pool_check (new_file) == -1) {
pool->opened --;
return NULL;
}
pool->occupied += st.st_size;
new_file->filename = memory_pool_strdup (pool->pool, filename);
new_file->open_time = time (NULL);
new_file->access_time = new_file->open_time;
new_file->lock = memory_pool_get_mutex (pool->pool);
/* Keep sorted */
qsort (pool->files, pool->opened, sizeof (stat_file_t), cmpstatfile);
return new_file;
}
int
statfile_pool_close (statfile_pool_t *pool, stat_file_t *file, gboolean keep_sorted)
{
stat_file_t *pos;
if ((pos = statfile_pool_is_open (pool, file->filename)) == NULL) {
msg_info ("statfile_pool_open: file %s is not opened", file->filename);
return -1;
}
if (file->lock) {
memory_pool_lock_mutex (file->lock);
}
if (file->map) {
munmap (file->map, file->len);
}
if (file->fd != -1) {
close (file->fd);
}
pool->occupied -= file->len;
if (keep_sorted) {
memmove (pos, &pool->files[pool->opened--], sizeof (stat_file_t));
/* Keep sorted */
qsort (pool->files, pool->opened, sizeof (stat_file_t), cmpstatfile);
}
return 0;
}
int
statfile_pool_create (statfile_pool_t *pool, char *filename, size_t blocks)
{
struct stat_file_header header = {
.magic = {'r', 's', 'd'},
.version = {1, 0},
.padding = {0, 0, 0},
};
struct stat_file_section section = {
.code = STATFILE_SECTION_COMMON,
};
struct stat_file_block block = {0, 0, 0, 0};
int fd;
if (statfile_pool_is_open (pool, filename) != NULL) {
msg_info ("statfile_pool_open: file %s is already opened", filename);
return 0;
}
if ((fd = open (filename, O_RDWR | O_TRUNC | O_CREAT, S_IWUSR | S_IRUSR)) == -1 ) {
msg_info ("statfile_pool_create: cannot create file %s, error %d, %s", filename, errno, strerror (errno));
return -1;
}
header.create_time = (uint64_t)time (NULL);
if (write (fd, &header, sizeof (header)) == -1) {
msg_info ("statfile_pool_create: cannot write header to file %s, error %d, %s", filename, errno, strerror (errno));
close (fd);
return -1;
}
section.length = (uint64_t)blocks;
if (write (fd, §ion, sizeof (section)) == -1) {
msg_info ("statfile_pool_create: cannot write section header to file %s, error %d, %s", filename, errno, strerror (errno));
close (fd);
return -1;
}
while (blocks --) {
if (write (fd, &block, sizeof (block)) == -1) {
msg_info ("statfile_pool_create: cannot write block to file %s, error %d, %s", filename, errno, strerror (errno));
close (fd);
return -1;
}
}
close (fd);
return 0;
}
void
statfile_pool_delete (statfile_pool_t *pool)
{
int i;
for (i = 0; i < pool->opened; i ++) {
statfile_pool_close (pool, &pool->files[i], FALSE);
}
memory_pool_delete (pool->pool);
g_free (pool);
}
void
statfile_pool_lock_file (statfile_pool_t *pool, stat_file_t *file)
{
memory_pool_lock_mutex (file->lock);
}
void
statfile_pool_unlock_file (statfile_pool_t *pool, stat_file_t *file)
{
memory_pool_unlock_mutex (file->lock);
}
float
statfile_pool_get_block (statfile_pool_t *pool, stat_file_t *file, uint32_t h1, uint32_t h2, time_t now)
{
struct stat_file_block *block;
struct stat_file_header *header;
unsigned int i, blocknum;
u_char *c;
file->access_time = now;
if (!file->map) {
return 0;
}
blocknum = h1 % file->cur_section.length;
header = (struct stat_file_header *)file->map;
c = (u_char *)file->map + file->seek_pos + blocknum * sizeof (struct stat_file_block);
block = (struct stat_file_block *)c;
for (i = 0; i < CHAIN_LENGTH; i ++) {
if (i + blocknum > file->cur_section.length) {
break;
}
if (block->hash1 == h1 && block->hash2 == h2) {
block->last_access = now - (time_t)header->create_time;
return block->value;
}
c += sizeof (struct stat_file_block);
block = (struct stat_file_block *)c;
}
return 0;
}
void
statfile_pool_set_block (statfile_pool_t *pool, stat_file_t *file, uint32_t h1, uint32_t h2, time_t now, float value)
{
struct stat_file_block *block, *to_expire = NULL;
struct stat_file_header *header;
unsigned int i, blocknum, oldest = 0;
u_char *c;
file->access_time = now;
if (!file->map) {
return;
}
blocknum = h1 % file->cur_section.length;
header = (struct stat_file_header *)file->map;
c = (u_char *)file->map + file->seek_pos + blocknum * sizeof (struct stat_file_block);
block = (struct stat_file_block *)c;
for (i = 0; i < CHAIN_LENGTH; i ++) {
if (i + blocknum > file->cur_section.length) {
/* Need to expire some block in chain */
msg_debug ("statfile_pool_set_block: chain %u is full, starting expire", blocknum);
break;
}
/* First try to find block in chain */
if (block->hash1 == h1 && block->hash2 == h2) {
block->last_access = now - (time_t)header->create_time;
block->value = value;
return;
}
/* Check whether we have a free block in chain */
if (block->hash1 == 0 && block->hash2 == 0) {
/* Write new block here */
msg_debug ("statfile_pool_set_block: found free block %u in chain %u, set h1=%u, h2=%u", i, blocknum, h1, h2);
block->hash1 = h1;
block->hash2 = h2;
block->value = value;
block->last_access = now - (time_t)header->create_time;
return;
}
if (block->last_access > oldest) {
to_expire = block;
}
c += sizeof (struct stat_file_block);
block = (struct stat_file_block *)c;
}
/* Try expire some block */
if (to_expire) {
block = to_expire;
}
else {
/* Expire first block in chain */
c = (u_char *)file->map + file->seek_pos + blocknum * sizeof (struct stat_file_block);
block = (struct stat_file_block *)c;
}
block->last_access = now - (time_t)header->create_time;
block->hash1 = h1;
block->hash2 = h2;
block->value = value;
}
stat_file_t *
statfile_pool_is_open (statfile_pool_t *pool, char *filename)
{
static stat_file_t f, *ret;
f.filename = filename;
ret = bsearch (&f, pool->files, pool->opened, sizeof (stat_file_t), cmpstatfile);
return ret;
}
uint32_t
statfile_pool_get_section (statfile_pool_t *pool, stat_file_t *file)
{
return file->cur_section.code;
}
gboolean
statfile_pool_set_section (statfile_pool_t *pool, stat_file_t *file, uint32_t code, gboolean from_begin)
{
struct stat_file_section *sec;
off_t cur_offset;
/* Try to find section */
if (from_begin) {
cur_offset = sizeof (struct stat_file_header);
}
else {
cur_offset = file->seek_pos - sizeof (struct stat_file_section);
}
while (cur_offset < file->len) {
sec = (struct stat_file_section *)((char *)file->map + cur_offset);
if (sec->code == code) {
file->cur_section.code = code;
file->cur_section.length = sec->length;
file->seek_pos = cur_offset + sizeof (struct stat_file_section);
return TRUE;
}
cur_offset += sec->length;
}
return FALSE;
}
gboolean
statfile_pool_add_section (statfile_pool_t *pool, stat_file_t *file, uint32_t code, uint64_t length)
{
struct stat_file_section sect;
struct stat_file_block block = {0, 0, 0, 0};
if (lseek (file->fd, 0, SEEK_END) == -1) {
msg_info ("statfile_pool_add_section: cannot lseek file %s, error %d, %s", file->filename, errno, strerror (errno));
return FALSE;
}
sect.code = code;
sect.length = length;
if (write (file->fd, §, sizeof (sect)) == -1) {
msg_info ("statfile_pool_add_section: cannot write block to file %s, error %d, %s", file->filename, errno, strerror (errno));
return FALSE;
}
while (length --) {
if (write (file->fd, &block, sizeof (block)) == -1) {
msg_info ("statfile_pool_add_section: cannot write block to file %s, error %d, %s", file->filename, errno, strerror (errno));
return FALSE;
}
}
/* Lock statfile to remap memory */
statfile_pool_lock_file (pool, file);
munmap (file->map, file->len);
fsync (file->fd);
file->len += length;
if (file->len > pool->max) {
msg_info ("statfile_pool_open: cannot attach file to pool, too large: %lu", (long int)file->len);
return FALSE;
}
while (pool->max <= pool->occupied + file->len) {
if (statfile_pool_expire (pool) == -1) {
/* Failed to find any more free space in pool */
msg_info ("statfile_pool_open: expiration for pool failed, opening file %s failed", file->filename);
return FALSE;
}
}
if ((file->map = mmap (NULL, file->len, PROT_READ | PROT_WRITE, MAP_SHARED, file->fd, 0)) == NULL) {
msg_info ("statfile_pool_open: cannot mmap file %s, error %d, %s", file->filename, errno, strerror (errno));
return FALSE;
}
statfile_pool_unlock_file (pool, file);
return TRUE;
}
uint32_t
statfile_get_section_by_name (const char *name)
{
if (g_ascii_strcasecmp (name, "common") == 0) {
return STATFILE_SECTION_COMMON;
}
else if (g_ascii_strcasecmp (name, "header") == 0) {
return STATFILE_SECTION_HEADERS;
}
else if (g_ascii_strcasecmp (name, "url") == 0) {
return STATFILE_SECTION_URLS;
}
else if (g_ascii_strcasecmp (name, "regexp") == 0) {
return STATFILE_SECTION_REGEXP;
}
return 0;
}
|