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
|
#include <sys/types.h>
#include <glib.h>
#include <string.h>
#include <stdlib.h>
#include <sys/mman.h>
#include <errno.h>
#include "config.h"
#ifdef HAVE_SCHED_YIELD
#include <sched.h>
#endif
#ifdef HAVE_NANOSLEEP
#include <time.h>
#endif
#include "mem_pool.h"
/* Sleep time for spin lock in nanoseconds */
#define MUTEX_SLEEP_TIME 10000000L
#ifdef _THREAD_SAFE
pthread_mutex_t stat_mtx = PTHREAD_MUTEX_INITIALIZER;
#define STAT_LOCK() do { pthread_mutex_lock (&stat_mtx); } while (0)
#define STAT_UNLOCK() do { pthread_mutex_unlock (&stat_mtx); } while (0)
#else
#define STAT_LOCK() do {} while (0)
#define STAT_UNLOCK() do {} while (0)
#endif
/*
* This define specify whether we should check all pools for free space for new object
* or just begin scan from current (recently attached) pool
* If MEMORY_GREEDY is defined, then we scan all pools to find free space (more CPU usage, slower
* but requires less memory). If it is not defined check only current pool and if object is too large
* to place in it allocate new one (this may cause huge CPU usage in some cases too, but generally faster than
* greedy method)
*/
#undef MEMORY_GREEDY
/* Internal statistic */
static size_t bytes_allocated = 0;
static size_t chunks_allocated = 0;
static size_t chunks_freed = 0;
static size_t shared_chunks_allocated = 0;
static struct _pool_chain *
pool_chain_new (size_t size)
{
struct _pool_chain *chain;
chain = g_malloc (sizeof (struct _pool_chain));
chain->begin = g_malloc (size);
chain->len = size;
chain->pos = chain->begin;
chain->next = NULL;
STAT_LOCK ();
chunks_allocated ++;
STAT_UNLOCK ();
return chain;
}
static struct _pool_chain_shared *
pool_chain_new_shared (size_t size)
{
struct _pool_chain_shared *chain;
#if defined(HAVE_MMAP_ANON)
chain = mmap (NULL, size + sizeof (struct _pool_chain_shared), PROT_READ|PROT_WRITE, MAP_ANON|MAP_SHARED, -1, 0);
chain->begin = ((u_char *)chain) + sizeof (struct _pool_chain_shared);
if (chain == MAP_FAILED) {
return NULL;
}
#elif defined(HAVE_MMAP_ZERO)
int fd;
fd = open ("/dev/zero", O_RDWR);
if (fd == -1) {
return NULL;
}
chain = mmap (NULL, shm->size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
chain->begin = ((u_char *)chain) + sizeof (struct _pool_chain_shared);
if (chain == MAP_FAILED) {
return NULL;
}
#else
# error No mmap methods are defined
#endif
chain->len = size;
chain->pos = chain->begin;
chain->lock = 0;
chain->next = NULL;
STAT_LOCK ();
shared_chunks_allocated ++;
STAT_UNLOCK ();
return chain;
}
memory_pool_t*
memory_pool_new (size_t size)
{
memory_pool_t *new;
new = g_malloc (sizeof (memory_pool_t));
new->cur_pool = pool_chain_new (size);
new->shared_pool = NULL;
new->first_pool = new->cur_pool;
new->destructors = NULL;
return new;
}
void *
memory_pool_alloc (memory_pool_t *pool, size_t size)
{
u_char *tmp;
struct _pool_chain *new, *cur;
if (pool) {
#ifdef MEMORY_GREEDY
cur = pool->first_pool;
#else
cur = pool->cur_pool;
#endif
/* Find free space in pool chain */
while (memory_pool_free (cur) < size && cur->next) {
cur = cur->next;
}
if (cur->next == NULL && memory_pool_free (cur) < size) {
/* Allocate new pool */
if (cur->len >= size) {
new = pool_chain_new (cur->len);
}
else {
new = pool_chain_new (size + cur->len);
}
/* Attach new pool to chain */
cur->next = new;
pool->cur_pool = new;
new->pos += size;
STAT_LOCK ();
bytes_allocated += size;
STAT_UNLOCK ();
return new->begin;
}
tmp = cur->pos;
cur->pos += size;
STAT_LOCK ();
bytes_allocated += size;
STAT_UNLOCK ();
return tmp;
}
return NULL;
}
void *
memory_pool_alloc0 (memory_pool_t *pool, size_t size)
{
void *pointer = memory_pool_alloc (pool, size);
if (pointer) {
bzero (pointer, size);
}
return pointer;
}
char *
memory_pool_strdup (memory_pool_t *pool, const char *src)
{
size_t len;
char *newstr;
if (src == NULL) {
return NULL;
}
len = strlen (src);
newstr = memory_pool_alloc (pool, len + 1);
memcpy (newstr, src, len + 1);
return newstr;
}
void *
memory_pool_alloc_shared (memory_pool_t *pool, size_t size)
{
u_char *tmp;
struct _pool_chain_shared *new, *cur;
if (pool) {
cur = pool->shared_pool;
if (!cur) {
cur = pool_chain_new_shared (pool->first_pool->len);
pool->shared_pool = cur;
}
/* Find free space in pool chain */
while (memory_pool_free (cur) < size && cur->next) {
cur = cur->next;
}
if (cur->next == NULL && memory_pool_free (cur) < size) {
/* Allocate new pool */
if (cur->len >= size) {
new = pool_chain_new_shared (cur->len);
}
else {
new = pool_chain_new_shared (size + cur->len);
}
/* Attach new pool to chain */
cur->next = new;
new->pos += size;
STAT_LOCK ();
bytes_allocated += size;
STAT_UNLOCK ();
return new->begin;
}
tmp = cur->pos;
cur->pos += size;
STAT_LOCK ();
bytes_allocated += size;
STAT_UNLOCK ();
return tmp;
}
return NULL;
}
/* Find pool for a pointer, returns NULL if pointer is not in pool */
static struct _pool_chain_shared *
memory_pool_find_pool (memory_pool_t *pool, void *pointer)
{
struct _pool_chain_shared *cur = pool->shared_pool;
while (cur) {
if ((u_char *)pointer >= cur->begin && (u_char *)pointer <= (cur->begin + cur->len)) {
return cur;
}
cur = cur->next;
}
return NULL;
}
static void
memory_pool_spin (struct _pool_chain_shared *chain)
{
while (!g_atomic_int_compare_and_exchange (&chain->lock, 0, 1)) {
/* lock was aqquired */
#ifdef HAVE_NANOSLEEP
struct timespec ts;
ts.tv_sec = 0;
ts.tv_nsec = MUTEX_SLEEP_TIME;
/* Spin */
while (nanosleep (&ts, &ts) == -1 && errno == EINTR);
#endif
#ifdef HAVE_SCHED_YIELD
(void)sched_yield ();
#endif
#if !defined(HAVE_NANOSLEEP) && !defined(HAVE_SCHED_YIELD)
# error No methods to spin are defined
#endif
}
}
/* Simple implementation of spinlock */
void
memory_pool_lock_shared (memory_pool_t *pool, void *pointer)
{
struct _pool_chain_shared *chain;
chain = memory_pool_find_pool (pool, pointer);
if (chain == NULL) {
return;
}
memory_pool_spin (chain);
}
void memory_pool_unlock_shared (memory_pool_t *pool, void *pointer)
{
struct _pool_chain_shared *chain;
chain = memory_pool_find_pool (pool, pointer);
if (chain == NULL) {
return;
}
(void)g_atomic_int_dec_and_test (&chain->lock);
}
void
memory_pool_add_destructor (memory_pool_t *pool, pool_destruct_func func, void *data)
{
struct _pool_destructors *cur;
cur = memory_pool_alloc (pool, sizeof (struct _pool_destructors));
if (cur) {
cur->func = func;
cur->data = data;
cur->prev = pool->destructors;
pool->destructors = cur;
}
}
void
memory_pool_delete (memory_pool_t *pool)
{
struct _pool_chain *cur = pool->first_pool, *tmp;
struct _pool_chain_shared *cur_shared = pool->shared_pool, *tmp_shared;
struct _pool_destructors *destructor = pool->destructors;
/* Call all pool destructors */
while (destructor) {
destructor->func (destructor->data);
destructor = destructor->prev;
}
while (cur) {
tmp = cur;
cur = cur->next;
g_free (tmp->begin);
g_free (tmp);
STAT_LOCK ();
chunks_freed ++;
STAT_UNLOCK ();
}
/* Unmap shared memory */
while (cur_shared) {
tmp_shared = cur_shared;
cur_shared = cur_shared->next;
munmap (tmp_shared, tmp_shared->len + sizeof (struct _pool_chain_shared));
STAT_LOCK ();
chunks_freed ++;
STAT_UNLOCK ();
}
g_free (pool);
}
void
memory_pool_stat (memory_pool_stat_t *st)
{
st->bytes_allocated = bytes_allocated;
st->chunks_allocated = chunks_allocated;
st->shared_chunks_allocated = shared_chunks_allocated;
st->chunks_freed = chunks_freed;
}
#define FIXED_POOL_SIZE 4095
size_t
memory_pool_get_size ()
{
#ifdef HAVE_GETPAGESIZE
return getpagesize () - 1;
#else
return FIXED_POOL_SIZE;
#endif
}
/*
* vi:ts=4
*/
|