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
|
/*
* Copyright 2023 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.
*/
/**
* @file mem_pool.h
* \brief Memory pools library.
*
* Memory pools library. Library is designed to implement efficient way to
* store data in memory avoiding calling of many malloc/free. It has overhead
* because of fact that objects live in pool for rather long time and are not freed
* immediately after use, but if we know certainly when these objects can be used, we
* can use pool for them
*/
#ifndef RSPAMD_MEM_POOL_H
#define RSPAMD_MEM_POOL_H
#include "config.h"
#if defined(HAVE_PTHREAD_PROCESS_SHARED) && !defined(DISABLE_PTHREAD_MUTEX)
#include <pthread.h>
#endif
#ifdef __cplusplus
#define MEMPOOL_STR_FUNC __FUNCTION__
#else
#define MEMPOOL_STR_FUNC G_STRFUNC
#endif
#ifdef __cplusplus
extern "C" {
#endif
struct f_str_s;
#ifdef __has_attribute
#if __has_attribute(alloc_size)
#define RSPAMD_ATTR_ALLOC_SIZE(pos) __attribute__((alloc_size(pos)))
#else
#define RSPAMD_ATTR_ALLOC_SIZE(pos)
#endif
#if __has_attribute(assume_aligned)
#define RSPAMD_ATTR_ALLOC_ALIGN(al) __attribute__((assume_aligned(al)))
#else
#define RSPAMD_ATTR_ALLOC_ALIGN(al)
#endif
#if __has_attribute(returns_nonnull)
#define RSPAMD_ATTR_RETURNS_NONNUL __attribute__((returns_nonnull))
#else
#define RSPAMD_ATTR_RETURNS_NONNUL
#endif
#else
#define RSPAMD_ATTR_ALLOC_SIZE(pos)
#define RSPAMD_ATTR_ALLOC_ALIGN(al)
#define RSPAMD_ATTR_RETURNS_NONNUL
#endif
#define MEMPOOL_TAG_LEN 16
#define MEMPOOL_UID_LEN 16
/* All pointers are aligned as this variable */
#define MIN_MEM_ALIGNMENT G_MEM_ALIGN
/**
* Destructor type definition
*/
typedef void (*rspamd_mempool_destruct_t)(void *ptr);
/**
* Pool mutex structure
*/
#if !defined(HAVE_PTHREAD_PROCESS_SHARED) || defined(DISABLE_PTHREAD_MUTEX)
typedef struct memory_pool_mutex_s {
gint lock;
pid_t owner;
guint spin;
} rspamd_mempool_mutex_t;
/**
* Rwlock for locking shared memory regions
*/
typedef struct memory_pool_rwlock_s {
rspamd_mempool_mutex_t *__r_lock; /**< read mutex (private) */
rspamd_mempool_mutex_t *__w_lock; /**< write mutex (private) */
} rspamd_mempool_rwlock_t;
#else
typedef pthread_mutex_t rspamd_mempool_mutex_t;
typedef pthread_rwlock_t rspamd_mempool_rwlock_t;
#endif
/**
* Tag to use for logging purposes
*/
struct rspamd_mempool_tag {
gchar tagname[MEMPOOL_TAG_LEN]; /**< readable name */
gchar uid[MEMPOOL_UID_LEN]; /**< unique id */
};
enum rspamd_mempool_flags {
RSPAMD_MEMPOOL_DEBUG = (1u << 0u),
};
/**
* Memory pool type
*/
struct rspamd_mempool_entry_point;
struct rspamd_mutex_s;
struct rspamd_mempool_specific;
typedef struct memory_pool_s {
struct rspamd_mempool_specific *priv;
struct rspamd_mempool_tag tag; /**< memory pool tag */
} rspamd_mempool_t;
/**
* Statistics structure
*/
typedef struct memory_pool_stat_s {
guint pools_allocated; /**< total number of allocated pools */
guint pools_freed; /**< number of freed pools */
guint bytes_allocated; /**< bytes that are allocated with pool allocator */
guint chunks_allocated; /**< number of chunks that are allocated */
guint shared_chunks_allocated; /**< shared chunks allocated */
guint chunks_freed; /**< chunks freed */
guint oversized_chunks; /**< oversized chunks */
guint fragmented_size; /**< fragmentation size */
} rspamd_mempool_stat_t;
/**
* Allocate new memory poll
* @param size size of pool's page
* @return new memory pool object
*/
rspamd_mempool_t *rspamd_mempool_new_(gsize size, const gchar *tag, gint flags,
const gchar *loc);
#define rspamd_mempool_new(size, tag, flags) \
rspamd_mempool_new_((size), (tag), (flags), G_STRLOC)
#define rspamd_mempool_new_default(tag, flags) \
rspamd_mempool_new_(rspamd_mempool_suggest_size_(G_STRLOC), (tag), (flags), G_STRLOC)
/**
* Get memory from pool
* @param pool memory pool object
* @param size bytes to allocate
* @return pointer to allocated object
*/
void *rspamd_mempool_alloc_(rspamd_mempool_t *pool, gsize size, gsize alignment, const gchar *loc)
RSPAMD_ATTR_ALLOC_SIZE(2) RSPAMD_ATTR_ALLOC_ALIGN(MIN_MEM_ALIGNMENT) RSPAMD_ATTR_RETURNS_NONNUL;
/**
* Allocates array handling potential integer overflow
* @param pool
* @param nmemb
* @param size
* @param alignment
* @param loc
* @return
*/
void *rspamd_mempool_alloc_array_(rspamd_mempool_t *pool, gsize nmemb, gsize size, gsize alignment, const gchar *loc)
RSPAMD_ATTR_ALLOC_SIZE(2) RSPAMD_ATTR_ALLOC_ALIGN(MIN_MEM_ALIGNMENT) RSPAMD_ATTR_RETURNS_NONNUL;
#define rspamd_mempool_alloc(pool, size) \
rspamd_mempool_alloc_((pool), (size), MIN_MEM_ALIGNMENT, (G_STRLOC))
#define rspamd_mempool_alloc_array(pool, nmemb, size) \
rspamd_mempool_alloc_array_((pool), (nmemb), (size), MIN_MEM_ALIGNMENT, (G_STRLOC))
#define rspamd_mempool_alloc_array_type(pool, nmemb, type) \
(type *) rspamd_mempool_alloc_array_((pool), (nmemb), sizeof(type), MIN_MEM_ALIGNMENT, (G_STRLOC))
#define rspamd_mempool_alloc_type(pool, type) \
(type *) (rspamd_mempool_alloc_((pool), sizeof(type), \
MAX(MIN_MEM_ALIGNMENT, RSPAMD_ALIGNOF(type)), (G_STRLOC)))
#define rspamd_mempool_alloc_buffer(pool, buflen) \
(char *) (rspamd_mempool_alloc_((pool), sizeof(char) * (buflen), MIN_MEM_ALIGNMENT, (G_STRLOC)))
/**
* Notify external memory usage for memory pool
* @param pool
* @param size
* @param loc
*/
void rspamd_mempool_notify_alloc_(rspamd_mempool_t *pool, gsize size, const gchar *loc);
#define rspamd_mempool_notify_alloc(pool, size) \
rspamd_mempool_notify_alloc_((pool), (size), (G_STRLOC))
/**
* Get memory and set it to zero
* @param pool memory pool object
* @param size bytes to allocate
* @return pointer to allocated object
*/
void *rspamd_mempool_alloc0_(rspamd_mempool_t *pool, gsize size, gsize alignment, const gchar *loc)
RSPAMD_ATTR_ALLOC_SIZE(2) RSPAMD_ATTR_ALLOC_ALIGN(MIN_MEM_ALIGNMENT) RSPAMD_ATTR_RETURNS_NONNUL;
#define rspamd_mempool_alloc0(pool, size) \
rspamd_mempool_alloc0_((pool), (size), MIN_MEM_ALIGNMENT, (G_STRLOC))
#define rspamd_mempool_alloc0_type(pool, type) \
(type *) (rspamd_mempool_alloc0_((pool), sizeof(type), \
MAX(MIN_MEM_ALIGNMENT, RSPAMD_ALIGNOF(type)), (G_STRLOC)))
/**
* Make a copy of string in pool
* @param pool memory pool object
* @param src source string
* @return pointer to newly created string that is copy of src
*/
gchar *rspamd_mempool_strdup_(rspamd_mempool_t *pool, const gchar *src, const gchar *loc)
RSPAMD_ATTR_ALLOC_ALIGN(MIN_MEM_ALIGNMENT);
#define rspamd_mempool_strdup(pool, src) \
rspamd_mempool_strdup_((pool), (src), (G_STRLOC))
gchar *rspamd_mempool_strdup_len_(rspamd_mempool_t *pool, const gchar *src, gsize len, const gchar *loc)
RSPAMD_ATTR_ALLOC_ALIGN(MIN_MEM_ALIGNMENT);
#define rspamd_mempool_strdup_len(pool, src, len) \
rspamd_mempool_strdup_len_((pool), (src), (len), (G_STRLOC))
struct f_str_tok;
/**
* Make a copy of fixed string token in pool as null terminated string
* @param pool memory pool object
* @param src source string
* @return pointer to newly created string that is copy of src
*/
gchar *rspamd_mempool_ftokdup_(rspamd_mempool_t *pool,
const struct f_str_tok *src,
const gchar *loc)
RSPAMD_ATTR_ALLOC_ALIGN(MIN_MEM_ALIGNMENT);
#define rspamd_mempool_ftokdup(pool, src) \
rspamd_mempool_ftokdup_((pool), (src), (G_STRLOC))
/**
* Allocate piece of shared memory
* @param pool memory pool object
* @param size bytes to allocate
*/
void *rspamd_mempool_alloc_shared_(rspamd_mempool_t *pool, gsize size, gsize alignment, const gchar *loc)
RSPAMD_ATTR_ALLOC_SIZE(2) RSPAMD_ATTR_ALLOC_ALIGN(MIN_MEM_ALIGNMENT) RSPAMD_ATTR_RETURNS_NONNUL;
#define rspamd_mempool_alloc_shared(pool, size) \
rspamd_mempool_alloc_shared_((pool), (size), MIN_MEM_ALIGNMENT, (G_STRLOC))
#define rspamd_mempool_alloc_shared_type(pool, type) \
(type *) (rspamd_mempool_alloc_shared_((pool), sizeof(type), \
MAX(MIN_MEM_ALIGNMENT, RSPAMD_ALIGNOF(type)), (G_STRLOC)))
void *rspamd_mempool_alloc0_shared_(rspamd_mempool_t *pool, gsize size, gsize alignment, const gchar *loc)
RSPAMD_ATTR_ALLOC_SIZE(2) RSPAMD_ATTR_ALLOC_ALIGN(MIN_MEM_ALIGNMENT) RSPAMD_ATTR_RETURNS_NONNUL;
#define rspamd_mempool_alloc0_shared(pool, size) \
rspamd_mempool_alloc0_shared_((pool), (size), MIN_MEM_ALIGNMENT, (G_STRLOC))
#define rspamd_mempool_alloc0_shared_type(pool, type) \
(type *) (rspamd_mempool_alloc0_shared_((pool), sizeof(type), \
MAX(MIN_MEM_ALIGNMENT, RSPAMD_ALIGNOF(type)), (G_STRLOC)))
/**
* Add destructor callback to pool
* @param pool memory pool object
* @param func pointer to function-destructor
* @param data pointer to data that would be passed to destructor
*/
void rspamd_mempool_add_destructor_full(rspamd_mempool_t *pool,
rspamd_mempool_destruct_t func,
void *data,
const gchar *function,
const gchar *line);
/* Macros for common usage */
#define rspamd_mempool_add_destructor(pool, func, data) \
rspamd_mempool_add_destructor_full(pool, func, data, (MEMPOOL_STR_FUNC), (G_STRLOC))
/**
* Replace destructor callback to pool for specified pointer
* @param pool memory pool object
* @param func pointer to function-destructor
* @param old_data pointer to old data
* @param new_data pointer to data that would be passed to destructor
*/
void rspamd_mempool_replace_destructor(rspamd_mempool_t *pool,
rspamd_mempool_destruct_t func,
void *old_data, void *new_data);
/**
* Calls all destructors associated with the specific memory pool without removing
* of the pool itself
* @param pool
*/
void rspamd_mempool_destructors_enforce(rspamd_mempool_t *pool);
/**
* Delete pool, free all its chunks and call destructors chain
* @param pool memory pool object
*/
void rspamd_mempool_delete(rspamd_mempool_t *pool);
/**
* Get new mutex from pool (allocated in shared memory)
* @param pool memory pool object
* @return mutex object
*/
rspamd_mempool_mutex_t *rspamd_mempool_get_mutex(rspamd_mempool_t *pool);
/**
* Lock mutex
* @param mutex mutex to lock
*/
void rspamd_mempool_lock_mutex(rspamd_mempool_mutex_t *mutex);
/**
* Unlock mutex
* @param mutex mutex to unlock
*/
void rspamd_mempool_unlock_mutex(rspamd_mempool_mutex_t *mutex);
/**
* Create new rwlock and place it in shared memory
* @param pool memory pool object
* @return rwlock object
*/
rspamd_mempool_rwlock_t *rspamd_mempool_get_rwlock(rspamd_mempool_t *pool);
/**
* Acquire read lock
* @param lock rwlock object
*/
void rspamd_mempool_rlock_rwlock(rspamd_mempool_rwlock_t *lock);
/**
* Acquire write lock
* @param lock rwlock object
*/
void rspamd_mempool_wlock_rwlock(rspamd_mempool_rwlock_t *lock);
/**
* Release read lock
* @param lock rwlock object
*/
void rspamd_mempool_runlock_rwlock(rspamd_mempool_rwlock_t *lock);
/**
* Release write lock
* @param lock rwlock object
*/
void rspamd_mempool_wunlock_rwlock(rspamd_mempool_rwlock_t *lock);
/**
* Get pool allocator statistics
* @param st stat pool struct
*/
void rspamd_mempool_stat(rspamd_mempool_stat_t *st);
/**
* Reset memory pool stat
*/
void rspamd_mempool_stat_reset(void);
/**
* Get optimal pool size based on page size for this system
* @return size of memory page in system
*/
#define rspamd_mempool_suggest_size() rspamd_mempool_suggest_size_(G_STRLOC)
gsize rspamd_mempool_suggest_size_(const char *loc);
gsize rspamd_mempool_get_used_size(rspamd_mempool_t *pool);
gsize rspamd_mempool_get_wasted_size(rspamd_mempool_t *pool);
/**
* Set memory pool variable
* @param pool memory pool object
* @param name name of variable
* @param gpointer value of variable
* @param destructor pointer to function-destructor
*/
void rspamd_mempool_set_variable(rspamd_mempool_t *pool,
const gchar *name,
gpointer value,
rspamd_mempool_destruct_t destructor);
/**
* Get memory pool variable
* @param pool memory pool object
* @param name name of variable
* @return NULL or pointer to variable data
*/
gpointer rspamd_mempool_get_variable(rspamd_mempool_t *pool,
const gchar *name);
/**
* Steal memory pool variable
* @param pool
* @param name
* @return
*/
gpointer rspamd_mempool_steal_variable(rspamd_mempool_t *pool,
const gchar *name);
/**
* Removes variable from memory pool
* @param pool memory pool object
* @param name name of variable
*/
void rspamd_mempool_remove_variable(rspamd_mempool_t *pool,
const gchar *name);
/**
* Prepend element to a list creating it in the memory pool
* @param l
* @param p
* @return
*/
GList *rspamd_mempool_glist_prepend(rspamd_mempool_t *pool,
GList *l, gpointer p) G_GNUC_WARN_UNUSED_RESULT;
/**
* Append element to a list creating it in the memory pool
* @param l
* @param p
* @return
*/
GList *rspamd_mempool_glist_append(rspamd_mempool_t *pool,
GList *l, gpointer p) G_GNUC_WARN_UNUSED_RESULT;
#ifdef __cplusplus
}
#endif
#ifdef __cplusplus
#include <stdexcept> /* For std::runtime_error */
namespace rspamd {
template<class T>
class mempool_allocator {
public:
typedef T value_type;
mempool_allocator() = delete;
template<class U>
mempool_allocator(const mempool_allocator<U> &other)
: pool(other.pool)
{
}
mempool_allocator(rspamd_mempool_t *_pool)
: pool(_pool)
{
}
[[nodiscard]] constexpr T *allocate(std::size_t n)
{
if (G_MAXSIZE / 2 / sizeof(T) > n) {
throw std::runtime_error("integer overflow");
}
return reinterpret_cast<T *>(rspamd_mempool_alloc(pool, n * sizeof(T)));
}
constexpr void deallocate(T *p, std::size_t n)
{
/* Do nothing */
}
private:
rspamd_mempool_t *pool;
};
}// namespace rspamd
#endif
#endif
|