]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/mem_pool.c
Add Environment arrays + Rescheduling of jobs + cancel FD when blocked on SD write
[bacula/bacula] / bacula / src / lib / mem_pool.c
1 /*
2  *  Bacula memory pool routines. 
3  *
4  *  The idea behind these routines is that there will be
5  *  pools of memory that are pre-allocated for quick
6  *  access. The pools will have a fixed memory size on allocation
7  *  but if need be, the size can be increased. This is 
8  *  particularly useful for filename
9  *  buffers where 256 bytes should be sufficient in 99.99%
10  *  of the cases, but when it isn't we want to be able to
11  *  increase the size.
12  *
13  *  A major advantage of the pool memory aside from the speed
14  *  is that the buffer carrys around its size, so to ensure that
15  *  there is enough memory, simply call the check_pool_memory_size()
16  *  with the desired size and it will adjust only if necessary.
17  *
18  *           Kern E. Sibbald
19  *
20  *   Version $Id$
21  */
22
23 /*
24    Copyright (C) 2000-2003 Kern Sibbald and John Walker
25
26    This program is free software; you can redistribute it and/or
27    modify it under the terms of the GNU General Public License as
28    published by the Free Software Foundation; either version 2 of
29    the License, or (at your option) any later version.
30
31    This program is distributed in the hope that it will be useful,
32    but WITHOUT ANY WARRANTY; without even the implied warranty of
33    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
34    General Public License for more details.
35
36    You should have received a copy of the GNU General Public
37    License along with this program; if not, write to the Free
38    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
39    MA 02111-1307, USA.
40
41  */
42
43 #include "bacula.h"
44
45 struct s_pool_ctl {
46    int32_t size;                      /* default size */
47    int32_t max_size;                  /* max allocated */
48    int32_t max_used;                  /* max buffers used */
49    int32_t in_use;                    /* number in use */
50    struct abufhead *free_buf;         /* pointer to free buffers */
51 };
52
53 /* Bacula Name length plus extra */
54 #define NLEN (MAX_NAME_LENGTH+2)
55
56 /* #define STRESS_TEST_POOL */
57 #ifndef STRESS_TEST_POOL
58 /*
59  * Define default Pool buffer sizes
60  */
61 static struct s_pool_ctl pool_ctl[] = {
62    {  256,  256, 0, 0, NULL },        /* PM_NOPOOL no pooling */
63    {  NLEN, NLEN,0, 0, NULL },        /* PM_NAME Bacula name */
64    {  256,  256, 0, 0, NULL },        /* PM_FNAME filename buffers */
65    {  512,  512, 0, 0, NULL },        /* PM_MESSAGE message buffer */
66    { 1024, 1024, 0, 0, NULL }         /* PM_EMSG error message buffer */
67 };
68 #else
69
70 /* This is used ONLY when stress testing the code */
71 static struct s_pool_ctl pool_ctl[] = {
72    {   20,   20, 0, 0, NULL },        /* PM_NOPOOL no pooling */
73    {  NLEN, NLEN,0, 0, NULL },        /* PM_NAME Bacula name */
74    {   20,   20, 0, 0, NULL },        /* PM_FNAME filename buffers */
75    {   20,   20, 0, 0, NULL },        /* PM_MESSAGE message buffer */
76    {   20,   20, 0, 0, NULL }         /* PM_EMSG error message buffer */
77 };
78 #endif
79
80
81 /*  Memory allocation control structures and storage.  */
82 struct abufhead {
83    int32_t ablen;                     /* Buffer length in bytes */
84    int32_t pool;                      /* pool */
85    struct abufhead *next;             /* pointer to next free buffer */
86 };
87
88 static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
89
90
91 #ifdef SMARTALLOC
92
93 #define HEAD_SIZE BALIGN(sizeof(struct abufhead))
94
95 POOLMEM *sm_get_pool_memory(char *fname, int lineno, int pool)
96 {
97    struct abufhead *buf;
98
99    if (pool > PM_MAX) {
100       Emsg2(M_ABORT, 0, "MemPool index %d larger than max %d\n", pool, PM_MAX);
101    }
102    P(mutex);
103    if (pool_ctl[pool].free_buf) {
104       buf = pool_ctl[pool].free_buf;
105       pool_ctl[pool].free_buf = buf->next;
106       pool_ctl[pool].in_use++;
107       if (pool_ctl[pool].in_use > pool_ctl[pool].max_used) {
108          pool_ctl[pool].max_used = pool_ctl[pool].in_use;
109       }
110       V(mutex);
111       Dmsg3(150, "sm_get_pool_memory reuse %x to %s:%d\n", buf, fname, lineno);
112       sm_new_owner(fname, lineno, (char *)buf);
113       return (POOLMEM *)((char *)buf+HEAD_SIZE);
114    }
115       
116    if ((buf = (struct abufhead *) sm_malloc(fname, lineno, pool_ctl[pool].size+HEAD_SIZE)) == NULL) {
117       V(mutex);
118       Emsg1(M_ABORT, 0, "Out of memory requesting %d bytes\n", pool_ctl[pool].size);
119    }
120    buf->ablen = pool_ctl[pool].size;
121    buf->pool = pool;
122    pool_ctl[pool].in_use++;
123    if (pool_ctl[pool].in_use > pool_ctl[pool].max_used) {
124       pool_ctl[pool].max_used = pool_ctl[pool].in_use;
125    }
126    V(mutex);
127    Dmsg3(150, "sm_get_pool_memory give %x to %s:%d\n", buf, fname, lineno);
128    return (POOLMEM *)((char *)buf+HEAD_SIZE);
129 }
130
131 /* Get nonpool memory of size requested */
132 POOLMEM *sm_get_memory(char *fname, int lineno, int32_t size)
133 {
134    struct abufhead *buf;
135    int pool = 0;
136
137    if ((buf = (struct abufhead *) sm_malloc(fname, lineno, size+HEAD_SIZE)) == NULL) {
138       Emsg1(M_ABORT, 0, "Out of memory requesting %d bytes\n", size);
139    }
140    buf->ablen = size;
141    buf->pool = pool;
142    buf->next = NULL;
143    pool_ctl[pool].in_use++;
144    if (pool_ctl[pool].in_use > pool_ctl[pool].max_used)
145       pool_ctl[pool].max_used = pool_ctl[pool].in_use;
146    return (POOLMEM *)(((char *)buf)+HEAD_SIZE);
147 }
148
149
150 /* Return the size of a memory buffer */
151 int32_t sm_sizeof_pool_memory(char *fname, int lineno, POOLMEM *obuf)
152 {
153    char *cp = (char *)obuf;
154
155    ASSERT(obuf);
156    cp -= HEAD_SIZE;
157    return ((struct abufhead *)cp)->ablen;
158 }
159
160 /* Realloc pool memory buffer */
161 POOLMEM *sm_realloc_pool_memory(char *fname, int lineno, POOLMEM *obuf, int32_t size)
162 {
163    char *cp = (char *)obuf;
164    void *buf;
165    int pool;
166
167    ASSERT(obuf);
168    P(mutex);
169    cp -= HEAD_SIZE;
170    buf = sm_realloc(fname, lineno, cp, size+HEAD_SIZE);
171    if (buf == NULL) {
172       V(mutex);
173       Emsg1(M_ABORT, 0, "Out of memory requesting %d bytes\n", size);
174    }
175    ((struct abufhead *)buf)->ablen = size;
176    pool = ((struct abufhead *)buf)->pool;
177    if (size > pool_ctl[pool].max_size) {
178       pool_ctl[pool].max_size = size;
179    }
180    V(mutex);
181    return (POOLMEM *)(((char *)buf)+HEAD_SIZE);
182 }
183
184 POOLMEM *sm_check_pool_memory_size(char *fname, int lineno, POOLMEM *obuf, int32_t size)
185 {
186    ASSERT(obuf);
187    if (size <= sizeof_pool_memory(obuf)) {
188       return obuf;
189    }
190    return realloc_pool_memory(obuf, size);
191 }
192
193 /* Free a memory buffer */
194 void sm_free_pool_memory(char *fname, int lineno, POOLMEM *obuf)
195 {
196    struct abufhead *buf;
197    int pool;
198
199    ASSERT(obuf);
200    P(mutex);
201    buf = (struct abufhead *)((char *)obuf - HEAD_SIZE);
202    pool = buf->pool;
203    pool_ctl[pool].in_use--;
204    if (pool == 0) {
205       free((char *)buf);              /* free nonpooled memory */
206    } else {                           /* otherwise link it to the free pool chain */
207 #ifdef DEBUG
208       struct abufhead *next;
209       /* Don't let him free the same buffer twice */
210       for (next=pool_ctl[pool].free_buf; next; next=next->next) {
211          ASSERT(next != buf);  /* attempt to free twice */
212       }
213 #endif
214       buf->next = pool_ctl[pool].free_buf;
215       pool_ctl[pool].free_buf = buf;
216    }
217    Dmsg2(150, "free_pool_memory %x pool=%d\n", buf, pool);
218    V(mutex);
219 }
220
221
222 #else
223
224 /* ===================================================================  */
225
226 POOLMEM *get_pool_memory(int pool)
227 {
228    struct abufhead *buf;
229
230    P(mutex);
231    if (pool_ctl[pool].free_buf) {
232       buf = pool_ctl[pool].free_buf;
233       pool_ctl[pool].free_buf = buf->next;
234       V(mutex);
235       return (POOLMEM *)((char *)buf+HEAD_SIZE);
236    }
237       
238    if ((buf=malloc(pool_ctl[pool].size+HEAD_SIZE)) == NULL) {
239       V(mutex);
240       Emsg1(M_ABORT, 0, "Out of memory requesting %d bytes\n", pool_ctl[pool].size);
241    }
242    buf->ablen = pool_ctl[pool].size;
243    buf->pool = pool;
244    buf->next = NULL;
245    pool_ctl[pool].in_use++;
246    if (pool_ctl[pool].in_use > pool_ctl[pool].max_used) {
247       pool_ctl[pool].max_used = pool_ctl[pool].in_use;
248    }
249    V(mutex);
250    return (POOLMEM *)(((char *)buf)+HEAD_SIZE);
251 }
252
253 /* Get nonpool memory of size requested */
254 POOLMEM *get_memory(int32_t size)
255 {
256    struct abufhead *buf;
257    int pool = 0;
258
259    if ((buf=malloc(size+HEAD_SIZE)) == NULL) {
260       Emsg1(M_ABORT, 0, "Out of memory requesting %d bytes\n", size);
261    }
262    buf->ablen = size;
263    buf->pool = pool;
264    buf->next = NULL;
265    pool_ctl[pool].in_use++;
266    if (pool_ctl[pool].in_use > pool_ctl[pool].max_used) {
267       pool_ctl[pool].max_used = pool_ctl[pool].in_use;
268    }
269    return (POOLMEM *)(((char *)buf)+HEAD_SIZE);
270 }
271
272
273 /* Return the size of a memory buffer */
274 int32_t sizeof_pool_memory(POOLMEM *obuf)
275 {
276    char *cp = (char *)obuf;
277
278    ASSERT(obuf);
279    cp -= HEAD_SIZE;
280    return ((struct abufhead *)cp)->ablen;
281 }
282
283 /* Realloc pool memory buffer */
284 POOLMEM *realloc_pool_memory(POOLMEM *obuf, int32_t size)
285 {
286    char *cp = (char *)obuf;
287    void *buf;
288    int pool;
289
290    ASSERT(obuf);
291    P(mutex);
292    cp -= HEAD_SIZE;
293    buf = realloc(cp, size+HEAD_SIZE);
294    if (buf == NULL) {
295       V(mutex);
296       Emsg1(M_ABORT, 0, "Out of memory requesting %d bytes\n", size);
297    }
298    ((struct abufhead *)buf)->ablen = size;
299    pool = ((struct abufhead *)buf)->pool;
300    if (size > pool_ctl[pool].max_size) {
301       pool_ctl[pool].max_size = size;
302    }
303    V(mutex);
304    return (POOLMEM *)(((char *)buf)+HEAD_SIZE);
305 }
306
307 POOLMEM *check_pool_memory_size(POOLMEM *obuf, int32_t size)
308 {
309    ASSERT(obuf);
310    if (size <= sizeof_pool_memory(obuf)) {
311       return obuf;
312    }
313    return realloc_pool_memory(obuf, size);
314 }
315
316 /* Free a memory buffer */
317 void free_pool_memory(POOLMEM *obuf)
318 {
319    struct abufhead *buf;
320    int pool;
321
322    ASSERT(obuf);
323    P(mutex);
324    buf = (struct abufhead *)((char *)obuf - HEAD_SIZE);
325    pool = buf->pool;
326    pool_ctl[pool].in_use--;
327    if (pool == 0) {
328       free((char *)buf);              /* free nonpooled memory */
329    } else {                           /* otherwise link it to the free pool chain */
330 #ifdef DEBUG
331       struct abufhead *next;
332       /* Don't let him free the same buffer twice */
333       for (next=pool_ctl[pool].free_buf; next; next=next->next) {
334          ASSERT(next != buf);  /* attempt to free twice */
335       }
336 #endif
337       buf->next = pool_ctl[pool].free_buf;
338       pool_ctl[pool].free_buf = buf;
339    }
340    Dmsg2(150, "free_pool_memory %x pool=%d\n", buf, pool);
341    V(mutex);
342 }
343
344 #endif /* SMARTALLOC */
345
346
347
348
349
350
351 /* Release all pooled memory */
352 void close_memory_pool()
353 {
354    struct abufhead *buf, *next;
355    int i;
356
357    sm_check(__FILE__, __LINE__, False);
358    P(mutex);
359    for (i=1; i<=PM_MAX; i++) {
360       buf = pool_ctl[i].free_buf;
361       while (buf) {
362          next = buf->next;
363          free((char *)buf);
364          buf = next;
365       }
366       pool_ctl[i].free_buf = NULL;
367    }
368    V(mutex);
369 }
370
371 #ifdef DEBUG
372
373 static char *pool_name(int pool)
374 {
375    static char *name[] = {"NoPool", "FNAME ", "MSG   ", "EMSG  "};
376    static char buf[30];
377
378    if (pool >= 0 && pool <= PM_MAX) {
379       return name[pool];
380    }
381    sprintf(buf, "%-6d", pool);
382    return buf;
383 }
384    
385 /* Print staticstics on memory pool usage   
386  */ 
387 void print_memory_pool_stats()
388 {
389    int i;
390
391    Dmsg0(-1, "Pool   Maxsize  Maxused  Inuse\n");
392    for (i=0; i<=PM_MAX; i++)
393       Dmsg4(-1, "%5s  %7d  %7d  %5d\n", pool_name(i), pool_ctl[i].max_size,
394          pool_ctl[i].max_used, pool_ctl[i].in_use);
395
396    Dmsg0(-1, "\n");
397 }
398
399 #else
400 void print_memory_pool_stats() {} 
401 #endif /* DEBUG */