blob: 05084e3da232694e9d2d7d791c5c56a492ac7853 [file] [log] [blame]
Owen Taylor3473f882001-02-23 17:55:21 +00001/*
Daniel Veillard26908ab2002-01-01 16:50:03 +00002 * xmlmemory.c: libxml memory allocator wrapper.
Owen Taylor3473f882001-02-23 17:55:21 +00003 *
Daniel Veillardc5d64342001-06-24 12:13:24 +00004 * daniel@veillard.com
Owen Taylor3473f882001-02-23 17:55:21 +00005 */
6
Daniel Veillard34ce8be2002-03-18 19:37:11 +00007#define IN_LIBXML
Bjorn Reese70a9da52001-04-21 16:57:29 +00008#include "libxml.h"
Owen Taylor3473f882001-02-23 17:55:21 +00009
Owen Taylor3473f882001-02-23 17:55:21 +000010#include <string.h>
11
12#ifdef HAVE_SYS_TYPES_H
13#include <sys/types.h>
14#endif
Daniel Veillard0ba59232002-02-10 13:20:39 +000015
Owen Taylor3473f882001-02-23 17:55:21 +000016#ifdef HAVE_TIME_H
17#include <time.h>
18#endif
Daniel Veillard0ba59232002-02-10 13:20:39 +000019
20#ifdef HAVE_STDLIB_H
21#include <stdlib.h>
22#else
Owen Taylor3473f882001-02-23 17:55:21 +000023#ifdef HAVE_MALLOC_H
24#include <malloc.h>
25#endif
Owen Taylor3473f882001-02-23 17:55:21 +000026#endif
Daniel Veillard0ba59232002-02-10 13:20:39 +000027
Owen Taylor3473f882001-02-23 17:55:21 +000028#ifdef HAVE_CTYPE_H
29#include <ctype.h>
30#endif
31
Daniel Veillardf93a8662004-07-01 12:56:30 +000032/* #define DEBUG_MEMORY */
Daniel Veillard4432df22003-09-28 18:58:27 +000033
Daniel Veillard70cab352002-02-06 16:06:58 +000034/**
35 * MEM_LIST:
36 *
Daniel Veillard09459bf2008-07-30 12:58:11 +000037 * keep track of all allocated blocks for error reporting
Daniel Veillard70cab352002-02-06 16:06:58 +000038 * Always build the memory list !
39 */
Daniel Veillardc064b472003-09-29 10:55:05 +000040#ifdef DEBUG_MEMORY_LOCATION
Daniel Veillard70cab352002-02-06 16:06:58 +000041#ifndef MEM_LIST
42#define MEM_LIST /* keep a list of all the allocated memory blocks */
43#endif
Daniel Veillardc064b472003-09-29 10:55:05 +000044#endif
Owen Taylor3473f882001-02-23 17:55:21 +000045
William M. Brack5ab479b2004-06-10 13:00:15 +000046#include <libxml/globals.h> /* must come before xmlmemory.h */
Owen Taylor3473f882001-02-23 17:55:21 +000047#include <libxml/xmlmemory.h>
48#include <libxml/xmlerror.h>
William M. Brack0622fe82003-11-29 10:47:56 +000049#include <libxml/threads.h>
Owen Taylor3473f882001-02-23 17:55:21 +000050
Daniel Veillard4432df22003-09-28 18:58:27 +000051static int xmlMemInitialized = 0;
Daniel Veillardfb43bd62003-09-29 09:22:39 +000052static unsigned long debugMemSize = 0;
Daniel Veillard36e5cd52004-11-02 14:52:23 +000053static unsigned long debugMemBlocks = 0;
Daniel Veillardfb43bd62003-09-29 09:22:39 +000054static unsigned long debugMaxMemSize = 0;
William M. Brack0622fe82003-11-29 10:47:56 +000055static xmlMutexPtr xmlMemMutex = NULL;
Daniel Veillard4432df22003-09-28 18:58:27 +000056
Daniel Veillard56a4cb82001-03-24 17:00:36 +000057void xmlMallocBreakpoint(void);
Daniel Veillard56a4cb82001-03-24 17:00:36 +000058
59/************************************************************************
60 * *
Daniel Veillardf8e3db02012-09-11 13:26:36 +080061 * Macros, variables and associated types *
Daniel Veillard56a4cb82001-03-24 17:00:36 +000062 * *
63 ************************************************************************/
64
William M. Brack5ab479b2004-06-10 13:00:15 +000065#if !defined(LIBXML_THREAD_ENABLED) && !defined(LIBXML_THREAD_ALLOC_ENABLED)
Owen Taylor3473f882001-02-23 17:55:21 +000066#ifdef xmlMalloc
67#undef xmlMalloc
68#endif
69#ifdef xmlRealloc
70#undef xmlRealloc
71#endif
72#ifdef xmlMemStrdup
73#undef xmlMemStrdup
74#endif
William M. Brack5ab479b2004-06-10 13:00:15 +000075#endif
Owen Taylor3473f882001-02-23 17:55:21 +000076
77/*
78 * Each of the blocks allocated begin with a header containing informations
79 */
80
81#define MEMTAG 0x5aa5
82
83#define MALLOC_TYPE 1
84#define REALLOC_TYPE 2
85#define STRDUP_TYPE 3
Daniel Veillard3c908dc2003-04-19 00:07:51 +000086#define MALLOC_ATOMIC_TYPE 4
87#define REALLOC_ATOMIC_TYPE 5
Owen Taylor3473f882001-02-23 17:55:21 +000088
89typedef struct memnod {
90 unsigned int mh_tag;
91 unsigned int mh_type;
92 unsigned long mh_number;
93 size_t mh_size;
94#ifdef MEM_LIST
95 struct memnod *mh_next;
96 struct memnod *mh_prev;
97#endif
98 const char *mh_file;
99 unsigned int mh_line;
100} MEMHDR;
101
102
103#ifdef SUN4
104#define ALIGN_SIZE 16
105#else
106#define ALIGN_SIZE sizeof(double)
107#endif
108#define HDR_SIZE sizeof(MEMHDR)
109#define RESERVE_SIZE (((HDR_SIZE + (ALIGN_SIZE-1)) \
110 / ALIGN_SIZE ) * ALIGN_SIZE)
111
112
113#define CLIENT_2_HDR(a) ((MEMHDR *) (((char *) (a)) - RESERVE_SIZE))
114#define HDR_2_CLIENT(a) ((void *) (((char *) (a)) + RESERVE_SIZE))
115
116
William M. Brack0622fe82003-11-29 10:47:56 +0000117static unsigned int block=0;
118static unsigned int xmlMemStopAtBlock = 0;
Daniel Veillardb44025c2001-10-11 22:55:55 +0000119static void *xmlMemTraceBlockAt = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +0000120#ifdef MEM_LIST
121static MEMHDR *memlist = NULL;
122#endif
123
Daniel Veillard01c13b52002-12-10 15:19:08 +0000124static void debugmem_tag_error(void *addr);
Owen Taylor3473f882001-02-23 17:55:21 +0000125#ifdef MEM_LIST
Daniel Veillard01c13b52002-12-10 15:19:08 +0000126static void debugmem_list_add(MEMHDR *);
127static void debugmem_list_delete(MEMHDR *);
Owen Taylor3473f882001-02-23 17:55:21 +0000128#endif
129#define Mem_Tag_Err(a) debugmem_tag_error(a);
130
131#ifndef TEST_POINT
132#define TEST_POINT
133#endif
134
135/**
136 * xmlMallocBreakpoint:
137 *
138 * Breakpoint to use in conjunction with xmlMemStopAtBlock. When the block
139 * number reaches the specified value this function is called. One need to add a breakpoint
140 * to it to get the context in which the given block is allocated.
141 */
142
143void
144xmlMallocBreakpoint(void) {
145 xmlGenericError(xmlGenericErrorContext,
146 "xmlMallocBreakpoint reached on block %d\n", xmlMemStopAtBlock);
147}
148
149/**
150 * xmlMallocLoc:
151 * @size: an int specifying the size in byte to allocate.
152 * @file: the file name or NULL
153 * @line: the line number
154 *
155 * a malloc() equivalent, with logging of the allocation info.
156 *
157 * Returns a pointer to the allocated area or NULL in case of lack of memory.
158 */
159
160void *
Daniel Veillard8599e702001-07-17 21:38:51 +0000161xmlMallocLoc(size_t size, const char * file, int line)
Owen Taylor3473f882001-02-23 17:55:21 +0000162{
163 MEMHDR *p;
Daniel Veillard7d7e3792001-07-30 13:42:13 +0000164 void *ret;
Daniel Veillard09459bf2008-07-30 12:58:11 +0000165
Owen Taylor3473f882001-02-23 17:55:21 +0000166 if (!xmlMemInitialized) xmlInitMemory();
167#ifdef DEBUG_MEMORY
168 xmlGenericError(xmlGenericErrorContext,
169 "Malloc(%d)\n",size);
170#endif
171
172 TEST_POINT
Daniel Veillard09459bf2008-07-30 12:58:11 +0000173
Owen Taylor3473f882001-02-23 17:55:21 +0000174 p = (MEMHDR *) malloc(RESERVE_SIZE+size);
175
176 if (!p) {
177 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard26908ab2002-01-01 16:50:03 +0000178 "xmlMallocLoc : Out of free space\n");
Owen Taylor3473f882001-02-23 17:55:21 +0000179 xmlMemoryDump();
180 return(NULL);
Daniel Veillard09459bf2008-07-30 12:58:11 +0000181 }
Owen Taylor3473f882001-02-23 17:55:21 +0000182 p->mh_tag = MEMTAG;
Owen Taylor3473f882001-02-23 17:55:21 +0000183 p->mh_size = size;
184 p->mh_type = MALLOC_TYPE;
185 p->mh_file = file;
186 p->mh_line = line;
William M. Brack0622fe82003-11-29 10:47:56 +0000187 xmlMutexLock(xmlMemMutex);
188 p->mh_number = ++block;
Owen Taylor3473f882001-02-23 17:55:21 +0000189 debugMemSize += size;
Daniel Veillard36e5cd52004-11-02 14:52:23 +0000190 debugMemBlocks++;
Owen Taylor3473f882001-02-23 17:55:21 +0000191 if (debugMemSize > debugMaxMemSize) debugMaxMemSize = debugMemSize;
192#ifdef MEM_LIST
193 debugmem_list_add(p);
194#endif
William M. Brack0622fe82003-11-29 10:47:56 +0000195 xmlMutexUnlock(xmlMemMutex);
Daniel Veillard09459bf2008-07-30 12:58:11 +0000196
Owen Taylor3473f882001-02-23 17:55:21 +0000197#ifdef DEBUG_MEMORY
198 xmlGenericError(xmlGenericErrorContext,
199 "Malloc(%d) Ok\n",size);
200#endif
Daniel Veillard09459bf2008-07-30 12:58:11 +0000201
William M. Brack0622fe82003-11-29 10:47:56 +0000202 if (xmlMemStopAtBlock == p->mh_number) xmlMallocBreakpoint();
Owen Taylor3473f882001-02-23 17:55:21 +0000203
Daniel Veillard7d7e3792001-07-30 13:42:13 +0000204 ret = HDR_2_CLIENT(p);
205
206 if (xmlMemTraceBlockAt == ret) {
207 xmlGenericError(xmlGenericErrorContext,
Stefan Kostecb5d5a2011-05-06 17:40:10 +0300208 "%p : Malloc(%lu) Ok\n", xmlMemTraceBlockAt,
209 (long unsigned)size);
Daniel Veillard7d7e3792001-07-30 13:42:13 +0000210 xmlMallocBreakpoint();
211 }
212
Owen Taylor3473f882001-02-23 17:55:21 +0000213 TEST_POINT
214
Daniel Veillard7d7e3792001-07-30 13:42:13 +0000215 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +0000216}
217
218/**
Daniel Veillard3c908dc2003-04-19 00:07:51 +0000219 * xmlMallocAtomicLoc:
220 * @size: an int specifying the size in byte to allocate.
221 * @file: the file name or NULL
222 * @line: the line number
223 *
224 * a malloc() equivalent, with logging of the allocation info.
225 *
226 * Returns a pointer to the allocated area or NULL in case of lack of memory.
227 */
228
229void *
230xmlMallocAtomicLoc(size_t size, const char * file, int line)
231{
232 MEMHDR *p;
233 void *ret;
Daniel Veillard09459bf2008-07-30 12:58:11 +0000234
Daniel Veillard3c908dc2003-04-19 00:07:51 +0000235 if (!xmlMemInitialized) xmlInitMemory();
236#ifdef DEBUG_MEMORY
237 xmlGenericError(xmlGenericErrorContext,
238 "Malloc(%d)\n",size);
239#endif
240
241 TEST_POINT
Daniel Veillard09459bf2008-07-30 12:58:11 +0000242
Daniel Veillard3c908dc2003-04-19 00:07:51 +0000243 p = (MEMHDR *) malloc(RESERVE_SIZE+size);
244
245 if (!p) {
246 xmlGenericError(xmlGenericErrorContext,
247 "xmlMallocLoc : Out of free space\n");
248 xmlMemoryDump();
249 return(NULL);
Daniel Veillard09459bf2008-07-30 12:58:11 +0000250 }
Daniel Veillard3c908dc2003-04-19 00:07:51 +0000251 p->mh_tag = MEMTAG;
Daniel Veillard3c908dc2003-04-19 00:07:51 +0000252 p->mh_size = size;
253 p->mh_type = MALLOC_ATOMIC_TYPE;
254 p->mh_file = file;
255 p->mh_line = line;
William M. Brack0622fe82003-11-29 10:47:56 +0000256 xmlMutexLock(xmlMemMutex);
257 p->mh_number = ++block;
Daniel Veillard3c908dc2003-04-19 00:07:51 +0000258 debugMemSize += size;
Daniel Veillard36e5cd52004-11-02 14:52:23 +0000259 debugMemBlocks++;
Daniel Veillard3c908dc2003-04-19 00:07:51 +0000260 if (debugMemSize > debugMaxMemSize) debugMaxMemSize = debugMemSize;
261#ifdef MEM_LIST
262 debugmem_list_add(p);
263#endif
William M. Brack0622fe82003-11-29 10:47:56 +0000264 xmlMutexUnlock(xmlMemMutex);
Daniel Veillard3c908dc2003-04-19 00:07:51 +0000265
266#ifdef DEBUG_MEMORY
267 xmlGenericError(xmlGenericErrorContext,
268 "Malloc(%d) Ok\n",size);
269#endif
Daniel Veillard09459bf2008-07-30 12:58:11 +0000270
William M. Brack0622fe82003-11-29 10:47:56 +0000271 if (xmlMemStopAtBlock == p->mh_number) xmlMallocBreakpoint();
Daniel Veillard3c908dc2003-04-19 00:07:51 +0000272
273 ret = HDR_2_CLIENT(p);
274
275 if (xmlMemTraceBlockAt == ret) {
276 xmlGenericError(xmlGenericErrorContext,
Stefan Kostecb5d5a2011-05-06 17:40:10 +0300277 "%p : Malloc(%lu) Ok\n", xmlMemTraceBlockAt,
278 (long unsigned)size);
Daniel Veillard3c908dc2003-04-19 00:07:51 +0000279 xmlMallocBreakpoint();
280 }
281
282 TEST_POINT
283
284 return(ret);
285}
286/**
Owen Taylor3473f882001-02-23 17:55:21 +0000287 * xmlMemMalloc:
288 * @size: an int specifying the size in byte to allocate.
289 *
290 * a malloc() equivalent, with logging of the allocation info.
291 *
292 * Returns a pointer to the allocated area or NULL in case of lack of memory.
293 */
294
295void *
Daniel Veillard8599e702001-07-17 21:38:51 +0000296xmlMemMalloc(size_t size)
Owen Taylor3473f882001-02-23 17:55:21 +0000297{
298 return(xmlMallocLoc(size, "none", 0));
299}
300
301/**
302 * xmlReallocLoc:
303 * @ptr: the initial memory block pointer
304 * @size: an int specifying the size in byte to allocate.
305 * @file: the file name or NULL
306 * @line: the line number
307 *
308 * a realloc() equivalent, with logging of the allocation info.
309 *
310 * Returns a pointer to the allocated area or NULL in case of lack of memory.
311 */
312
313void *
Daniel Veillard8599e702001-07-17 21:38:51 +0000314xmlReallocLoc(void *ptr,size_t size, const char * file, int line)
Owen Taylor3473f882001-02-23 17:55:21 +0000315{
316 MEMHDR *p;
317 unsigned long number;
Daniel Veillard529233c2004-07-02 12:23:44 +0000318#ifdef DEBUG_MEMORY
319 size_t oldsize;
320#endif
Owen Taylor3473f882001-02-23 17:55:21 +0000321
Daniel Veillarda76fe5c2003-04-24 16:06:47 +0000322 if (ptr == NULL)
Aleksey Sanine9f08112004-01-22 22:20:31 +0000323 return(xmlMallocLoc(size, file, line));
324
325 if (!xmlMemInitialized) xmlInitMemory();
Owen Taylor3473f882001-02-23 17:55:21 +0000326 TEST_POINT
327
328 p = CLIENT_2_HDR(ptr);
329 number = p->mh_number;
Daniel Veillard18ffe202005-04-14 17:50:59 +0000330 if (xmlMemStopAtBlock == number) xmlMallocBreakpoint();
Owen Taylor3473f882001-02-23 17:55:21 +0000331 if (p->mh_tag != MEMTAG) {
332 Mem_Tag_Err(p);
333 goto error;
334 }
335 p->mh_tag = ~MEMTAG;
William M. Brack0622fe82003-11-29 10:47:56 +0000336 xmlMutexLock(xmlMemMutex);
Owen Taylor3473f882001-02-23 17:55:21 +0000337 debugMemSize -= p->mh_size;
Daniel Veillard36e5cd52004-11-02 14:52:23 +0000338 debugMemBlocks--;
Daniel Veillard529233c2004-07-02 12:23:44 +0000339#ifdef DEBUG_MEMORY
340 oldsize = p->mh_size;
341#endif
Owen Taylor3473f882001-02-23 17:55:21 +0000342#ifdef MEM_LIST
343 debugmem_list_delete(p);
344#endif
William M. Brack0622fe82003-11-29 10:47:56 +0000345 xmlMutexUnlock(xmlMemMutex);
Daniel Veillard09459bf2008-07-30 12:58:11 +0000346
Owen Taylor3473f882001-02-23 17:55:21 +0000347 p = (MEMHDR *) realloc(p,RESERVE_SIZE+size);
348 if (!p) {
349 goto error;
350 }
Daniel Veillard7d7e3792001-07-30 13:42:13 +0000351 if (xmlMemTraceBlockAt == ptr) {
352 xmlGenericError(xmlGenericErrorContext,
Stefan Kostecb5d5a2011-05-06 17:40:10 +0300353 "%p : Realloced(%lu -> %lu) Ok\n",
354 xmlMemTraceBlockAt, (long unsigned)p->mh_size,
355 (long unsigned)size);
Daniel Veillard7d7e3792001-07-30 13:42:13 +0000356 xmlMallocBreakpoint();
357 }
Owen Taylor3473f882001-02-23 17:55:21 +0000358 p->mh_tag = MEMTAG;
359 p->mh_number = number;
360 p->mh_type = REALLOC_TYPE;
361 p->mh_size = size;
362 p->mh_file = file;
363 p->mh_line = line;
William M. Brack0622fe82003-11-29 10:47:56 +0000364 xmlMutexLock(xmlMemMutex);
Owen Taylor3473f882001-02-23 17:55:21 +0000365 debugMemSize += size;
Daniel Veillard36e5cd52004-11-02 14:52:23 +0000366 debugMemBlocks++;
Owen Taylor3473f882001-02-23 17:55:21 +0000367 if (debugMemSize > debugMaxMemSize) debugMaxMemSize = debugMemSize;
368#ifdef MEM_LIST
369 debugmem_list_add(p);
370#endif
William M. Brack0622fe82003-11-29 10:47:56 +0000371 xmlMutexUnlock(xmlMemMutex);
Owen Taylor3473f882001-02-23 17:55:21 +0000372
373 TEST_POINT
374
Daniel Veillard529233c2004-07-02 12:23:44 +0000375#ifdef DEBUG_MEMORY
376 xmlGenericError(xmlGenericErrorContext,
377 "Realloced(%d to %d) Ok\n", oldsize, size);
378#endif
Owen Taylor3473f882001-02-23 17:55:21 +0000379 return(HDR_2_CLIENT(p));
Daniel Veillard09459bf2008-07-30 12:58:11 +0000380
381error:
Owen Taylor3473f882001-02-23 17:55:21 +0000382 return(NULL);
383}
384
385/**
386 * xmlMemRealloc:
387 * @ptr: the initial memory block pointer
388 * @size: an int specifying the size in byte to allocate.
389 *
390 * a realloc() equivalent, with logging of the allocation info.
391 *
392 * Returns a pointer to the allocated area or NULL in case of lack of memory.
393 */
394
395void *
Daniel Veillard8599e702001-07-17 21:38:51 +0000396xmlMemRealloc(void *ptr,size_t size) {
Owen Taylor3473f882001-02-23 17:55:21 +0000397 return(xmlReallocLoc(ptr, size, "none", 0));
398}
399
400/**
401 * xmlMemFree:
402 * @ptr: the memory block pointer
403 *
404 * a free() equivalent, with error checking.
405 */
406void
407xmlMemFree(void *ptr)
408{
409 MEMHDR *p;
Daniel Veillard92ad2102001-03-27 12:47:33 +0000410 char *target;
Daniel Veillard529233c2004-07-02 12:23:44 +0000411#ifdef DEBUG_MEMORY
412 size_t size;
413#endif
Owen Taylor3473f882001-02-23 17:55:21 +0000414
Daniel Veillard2a512da2007-10-30 20:24:40 +0000415 if (ptr == NULL)
416 return;
417
Daniel Veillard7d7e3792001-07-30 13:42:13 +0000418 if (ptr == (void *) -1) {
419 xmlGenericError(xmlGenericErrorContext,
420 "trying to free pointer from freed area\n");
421 goto error;
422 }
423
424 if (xmlMemTraceBlockAt == ptr) {
425 xmlGenericError(xmlGenericErrorContext,
426 "%p : Freed()\n", xmlMemTraceBlockAt);
427 xmlMallocBreakpoint();
428 }
429
Owen Taylor3473f882001-02-23 17:55:21 +0000430 TEST_POINT
431
Daniel Veillard92ad2102001-03-27 12:47:33 +0000432 target = (char *) ptr;
433
Owen Taylor3473f882001-02-23 17:55:21 +0000434 p = CLIENT_2_HDR(ptr);
435 if (p->mh_tag != MEMTAG) {
Daniel Veillard7d7e3792001-07-30 13:42:13 +0000436 Mem_Tag_Err(p);
437 goto error;
Owen Taylor3473f882001-02-23 17:55:21 +0000438 }
Daniel Veillard18ffe202005-04-14 17:50:59 +0000439 if (xmlMemStopAtBlock == p->mh_number) xmlMallocBreakpoint();
Owen Taylor3473f882001-02-23 17:55:21 +0000440 p->mh_tag = ~MEMTAG;
Daniel Veillard92ad2102001-03-27 12:47:33 +0000441 memset(target, -1, p->mh_size);
William M. Brack0622fe82003-11-29 10:47:56 +0000442 xmlMutexLock(xmlMemMutex);
443 debugMemSize -= p->mh_size;
Daniel Veillard36e5cd52004-11-02 14:52:23 +0000444 debugMemBlocks--;
Daniel Veillard529233c2004-07-02 12:23:44 +0000445#ifdef DEBUG_MEMORY
446 size = p->mh_size;
447#endif
Owen Taylor3473f882001-02-23 17:55:21 +0000448#ifdef MEM_LIST
449 debugmem_list_delete(p);
450#endif
William M. Brack0622fe82003-11-29 10:47:56 +0000451 xmlMutexUnlock(xmlMemMutex);
452
Owen Taylor3473f882001-02-23 17:55:21 +0000453 free(p);
454
455 TEST_POINT
456
Daniel Veillard529233c2004-07-02 12:23:44 +0000457#ifdef DEBUG_MEMORY
458 xmlGenericError(xmlGenericErrorContext,
459 "Freed(%d) Ok\n", size);
460#endif
Daniel Veillard09459bf2008-07-30 12:58:11 +0000461
Owen Taylor3473f882001-02-23 17:55:21 +0000462 return;
Daniel Veillard09459bf2008-07-30 12:58:11 +0000463
464error:
Owen Taylor3473f882001-02-23 17:55:21 +0000465 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard26908ab2002-01-01 16:50:03 +0000466 "xmlMemFree(%lX) error\n", (unsigned long) ptr);
Daniel Veillard7d7e3792001-07-30 13:42:13 +0000467 xmlMallocBreakpoint();
Owen Taylor3473f882001-02-23 17:55:21 +0000468 return;
469}
470
471/**
472 * xmlMemStrdupLoc:
Daniel Veillard9d06d302002-01-22 18:15:52 +0000473 * @str: the initial string pointer
Owen Taylor3473f882001-02-23 17:55:21 +0000474 * @file: the file name or NULL
475 * @line: the line number
476 *
477 * a strdup() equivalent, with logging of the allocation info.
478 *
Daniel Veillard26908ab2002-01-01 16:50:03 +0000479 * Returns a pointer to the new string or NULL if allocation error occurred.
Owen Taylor3473f882001-02-23 17:55:21 +0000480 */
481
482char *
483xmlMemStrdupLoc(const char *str, const char *file, int line)
484{
485 char *s;
486 size_t size = strlen(str) + 1;
487 MEMHDR *p;
488
489 if (!xmlMemInitialized) xmlInitMemory();
490 TEST_POINT
491
492 p = (MEMHDR *) malloc(RESERVE_SIZE+size);
493 if (!p) {
494 goto error;
495 }
496 p->mh_tag = MEMTAG;
Owen Taylor3473f882001-02-23 17:55:21 +0000497 p->mh_size = size;
498 p->mh_type = STRDUP_TYPE;
499 p->mh_file = file;
500 p->mh_line = line;
William M. Brack0622fe82003-11-29 10:47:56 +0000501 xmlMutexLock(xmlMemMutex);
502 p->mh_number = ++block;
Owen Taylor3473f882001-02-23 17:55:21 +0000503 debugMemSize += size;
Daniel Veillard36e5cd52004-11-02 14:52:23 +0000504 debugMemBlocks++;
Owen Taylor3473f882001-02-23 17:55:21 +0000505 if (debugMemSize > debugMaxMemSize) debugMaxMemSize = debugMemSize;
506#ifdef MEM_LIST
507 debugmem_list_add(p);
508#endif
William M. Brack0622fe82003-11-29 10:47:56 +0000509 xmlMutexUnlock(xmlMemMutex);
Daniel Veillard09459bf2008-07-30 12:58:11 +0000510
Owen Taylor3473f882001-02-23 17:55:21 +0000511 s = (char *) HDR_2_CLIENT(p);
Daniel Veillard09459bf2008-07-30 12:58:11 +0000512
William M. Brack0622fe82003-11-29 10:47:56 +0000513 if (xmlMemStopAtBlock == p->mh_number) xmlMallocBreakpoint();
Owen Taylor3473f882001-02-23 17:55:21 +0000514
Gaurav Guptab8480ae2014-07-26 21:14:53 +0800515 strcpy(s,str);
Daniel Veillard09459bf2008-07-30 12:58:11 +0000516
Owen Taylor3473f882001-02-23 17:55:21 +0000517 TEST_POINT
518
Daniel Veillard7d7e3792001-07-30 13:42:13 +0000519 if (xmlMemTraceBlockAt == s) {
520 xmlGenericError(xmlGenericErrorContext,
521 "%p : Strdup() Ok\n", xmlMemTraceBlockAt);
522 xmlMallocBreakpoint();
523 }
524
Owen Taylor3473f882001-02-23 17:55:21 +0000525 return(s);
526
527error:
528 return(NULL);
529}
530
531/**
532 * xmlMemoryStrdup:
Daniel Veillard01c13b52002-12-10 15:19:08 +0000533 * @str: the initial string pointer
Owen Taylor3473f882001-02-23 17:55:21 +0000534 *
535 * a strdup() equivalent, with logging of the allocation info.
536 *
Daniel Veillard26908ab2002-01-01 16:50:03 +0000537 * Returns a pointer to the new string or NULL if allocation error occurred.
Owen Taylor3473f882001-02-23 17:55:21 +0000538 */
539
540char *
541xmlMemoryStrdup(const char *str) {
542 return(xmlMemStrdupLoc(str, "none", 0));
543}
544
545/**
546 * xmlMemUsed:
547 *
Daniel Veillarda9b66d02002-12-11 14:23:49 +0000548 * Provides the amount of memory currently allocated
Owen Taylor3473f882001-02-23 17:55:21 +0000549 *
550 * Returns an int representing the amount of memory allocated.
551 */
552
553int
554xmlMemUsed(void) {
555 return(debugMemSize);
556}
557
Daniel Veillard36e5cd52004-11-02 14:52:23 +0000558/**
559 * xmlMemBlocks:
560 *
561 * Provides the number of memory areas currently allocated
562 *
563 * Returns an int representing the number of blocks
564 */
565
566int
567xmlMemBlocks(void) {
568 return(debugMemBlocks);
569}
570
Owen Taylor3473f882001-02-23 17:55:21 +0000571#ifdef MEM_LIST
572/**
573 * xmlMemContentShow:
574 * @fp: a FILE descriptor used as the output file
575 * @p: a memory block header
576 *
577 * tries to show some content from the memory block
578 */
579
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000580static void
Owen Taylor3473f882001-02-23 17:55:21 +0000581xmlMemContentShow(FILE *fp, MEMHDR *p)
582{
Gaurav7966a762014-05-09 17:00:08 +0800583 int i,j,k,len;
584 const char *buf;
Owen Taylor3473f882001-02-23 17:55:21 +0000585
586 if (p == NULL) {
587 fprintf(fp, " NULL");
588 return;
589 }
Gaurav7966a762014-05-09 17:00:08 +0800590 len = p->mh_size;
591 buf = (const char *) HDR_2_CLIENT(p);
Owen Taylor3473f882001-02-23 17:55:21 +0000592
593 for (i = 0;i < len;i++) {
594 if (buf[i] == 0) break;
Daniel Veillard9f28f302002-02-15 20:48:08 +0000595 if (!isprint((unsigned char) buf[i])) break;
Owen Taylor3473f882001-02-23 17:55:21 +0000596 }
597 if ((i < 4) && ((buf[i] != 0) || (i == 0))) {
598 if (len >= 4) {
599 MEMHDR *q;
600 void *cur;
601
Daniel Veillardf4721d62006-10-11 21:12:10 +0000602 for (j = 0;(j < len -3) && (j < 40);j += 4) {
Owen Taylor3473f882001-02-23 17:55:21 +0000603 cur = *((void **) &buf[j]);
604 q = CLIENT_2_HDR(cur);
605 p = memlist;
Daniel Veillardf4721d62006-10-11 21:12:10 +0000606 k = 0;
Owen Taylor3473f882001-02-23 17:55:21 +0000607 while (p != NULL) {
608 if (p == q) break;
609 p = p->mh_next;
Daniel Veillardf4721d62006-10-11 21:12:10 +0000610 if (k++ > 100) break;
Owen Taylor3473f882001-02-23 17:55:21 +0000611 }
612 if ((p != NULL) && (p == q)) {
613 fprintf(fp, " pointer to #%lu at index %d",
614 p->mh_number, j);
615 return;
616 }
617 }
618 }
619 } else if ((i == 0) && (buf[i] == 0)) {
620 fprintf(fp," null");
621 } else {
Daniel Veillard09459bf2008-07-30 12:58:11 +0000622 if (buf[i] == 0) fprintf(fp," \"%.25s\"", buf);
Owen Taylor3473f882001-02-23 17:55:21 +0000623 else {
624 fprintf(fp," [");
625 for (j = 0;j < i;j++)
626 fprintf(fp,"%c", buf[j]);
627 fprintf(fp,"]");
628 }
629 }
630}
631#endif
632
633/**
Daniel Veillard09459bf2008-07-30 12:58:11 +0000634 * xmlMemDisplayLast:
635 * @fp: a FILE descriptor used as the output file, if NULL, the result is
636 * written to the file .memorylist
637 * @nbBytes: the amount of memory to dump
638 *
639 * the last nbBytes of memory allocated and not freed, useful for dumping
640 * the memory left allocated between two places at runtime.
641 */
642
643void
644xmlMemDisplayLast(FILE *fp, long nbBytes)
645{
646#ifdef MEM_LIST
647 MEMHDR *p;
648 unsigned idx;
649 int nb = 0;
650#endif
651 FILE *old_fp = fp;
652
653 if (nbBytes <= 0)
654 return;
655
656 if (fp == NULL) {
657 fp = fopen(".memorylist", "w");
658 if (fp == NULL)
659 return;
660 }
661
662#ifdef MEM_LIST
663 fprintf(fp," Last %li MEMORY ALLOCATED : %lu, MAX was %lu\n",
664 nbBytes, debugMemSize, debugMaxMemSize);
665 fprintf(fp,"BLOCK NUMBER SIZE TYPE\n");
666 idx = 0;
667 xmlMutexLock(xmlMemMutex);
668 p = memlist;
669 while ((p) && (nbBytes > 0)) {
670 fprintf(fp,"%-5u %6lu %6lu ",idx++,p->mh_number,
671 (unsigned long)p->mh_size);
672 switch (p->mh_type) {
673 case STRDUP_TYPE:fprintf(fp,"strdup() in ");break;
674 case MALLOC_TYPE:fprintf(fp,"malloc() in ");break;
675 case REALLOC_TYPE:fprintf(fp,"realloc() in ");break;
676 case MALLOC_ATOMIC_TYPE:fprintf(fp,"atomicmalloc() in ");break;
677 case REALLOC_ATOMIC_TYPE:fprintf(fp,"atomicrealloc() in ");break;
678 default:
679 fprintf(fp,"Unknown memory block, may be corrupted");
680 xmlMutexUnlock(xmlMemMutex);
681 if (old_fp == NULL)
682 fclose(fp);
683 return;
684 }
685 if (p->mh_file != NULL) fprintf(fp,"%s(%u)", p->mh_file, p->mh_line);
686 if (p->mh_tag != MEMTAG)
687 fprintf(fp," INVALID");
688 nb++;
689 if (nb < 100)
690 xmlMemContentShow(fp, p);
691 else
692 fprintf(fp," skip");
693
694 fprintf(fp,"\n");
695 nbBytes -= (unsigned long)p->mh_size;
696 p = p->mh_next;
697 }
698 xmlMutexUnlock(xmlMemMutex);
699#else
700 fprintf(fp,"Memory list not compiled (MEM_LIST not defined !)\n");
701#endif
702 if (old_fp == NULL)
703 fclose(fp);
704}
705
706/**
Owen Taylor3473f882001-02-23 17:55:21 +0000707 * xmlMemDisplay:
708 * @fp: a FILE descriptor used as the output file, if NULL, the result is
709 * written to the file .memorylist
710 *
711 * show in-extenso the memory blocks allocated
712 */
713
714void
715xmlMemDisplay(FILE *fp)
716{
717#ifdef MEM_LIST
718 MEMHDR *p;
Daniel Veillard144024e2002-02-13 21:14:46 +0000719 unsigned idx;
Daniel Veillard7d7e3792001-07-30 13:42:13 +0000720 int nb = 0;
Owen Taylor3473f882001-02-23 17:55:21 +0000721#if defined(HAVE_LOCALTIME) && defined(HAVE_STRFTIME)
722 time_t currentTime;
723 char buf[500];
724 struct tm * tstruct;
Daniel Veillard942d6c72005-05-08 11:39:56 +0000725#endif
726#endif
727 FILE *old_fp = fp;
Owen Taylor3473f882001-02-23 17:55:21 +0000728
Daniel Veillard942d6c72005-05-08 11:39:56 +0000729 if (fp == NULL) {
730 fp = fopen(".memorylist", "w");
731 if (fp == NULL)
732 return;
733 }
734
735#ifdef MEM_LIST
736#if defined(HAVE_LOCALTIME) && defined(HAVE_STRFTIME)
Owen Taylor3473f882001-02-23 17:55:21 +0000737 currentTime = time(NULL);
738 tstruct = localtime(&currentTime);
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000739 strftime(buf, sizeof(buf) - 1, "%I:%M:%S %p", tstruct);
Owen Taylor3473f882001-02-23 17:55:21 +0000740 fprintf(fp," %s\n\n", buf);
741#endif
742
Daniel Veillard09459bf2008-07-30 12:58:11 +0000743
Owen Taylor3473f882001-02-23 17:55:21 +0000744 fprintf(fp," MEMORY ALLOCATED : %lu, MAX was %lu\n",
745 debugMemSize, debugMaxMemSize);
746 fprintf(fp,"BLOCK NUMBER SIZE TYPE\n");
747 idx = 0;
William M. Brack0622fe82003-11-29 10:47:56 +0000748 xmlMutexLock(xmlMemMutex);
Owen Taylor3473f882001-02-23 17:55:21 +0000749 p = memlist;
750 while (p) {
Daniel Veillard144024e2002-02-13 21:14:46 +0000751 fprintf(fp,"%-5u %6lu %6lu ",idx++,p->mh_number,
752 (unsigned long)p->mh_size);
Owen Taylor3473f882001-02-23 17:55:21 +0000753 switch (p->mh_type) {
754 case STRDUP_TYPE:fprintf(fp,"strdup() in ");break;
755 case MALLOC_TYPE:fprintf(fp,"malloc() in ");break;
Daniel Veillard529233c2004-07-02 12:23:44 +0000756 case REALLOC_TYPE:fprintf(fp,"realloc() in ");break;
Daniel Veillard3c908dc2003-04-19 00:07:51 +0000757 case MALLOC_ATOMIC_TYPE:fprintf(fp,"atomicmalloc() in ");break;
Daniel Veillard529233c2004-07-02 12:23:44 +0000758 case REALLOC_ATOMIC_TYPE:fprintf(fp,"atomicrealloc() in ");break;
759 default:
William M. Brack13dfa872004-09-18 04:52:08 +0000760 fprintf(fp,"Unknown memory block, may be corrupted");
Daniel Veillard529233c2004-07-02 12:23:44 +0000761 xmlMutexUnlock(xmlMemMutex);
Daniel Veillard942d6c72005-05-08 11:39:56 +0000762 if (old_fp == NULL)
763 fclose(fp);
Daniel Veillard529233c2004-07-02 12:23:44 +0000764 return;
Owen Taylor3473f882001-02-23 17:55:21 +0000765 }
William M. Brack13dfa872004-09-18 04:52:08 +0000766 if (p->mh_file != NULL) fprintf(fp,"%s(%u)", p->mh_file, p->mh_line);
Owen Taylor3473f882001-02-23 17:55:21 +0000767 if (p->mh_tag != MEMTAG)
768 fprintf(fp," INVALID");
Daniel Veillard7d7e3792001-07-30 13:42:13 +0000769 nb++;
770 if (nb < 100)
771 xmlMemContentShow(fp, p);
772 else
773 fprintf(fp," skip");
774
Owen Taylor3473f882001-02-23 17:55:21 +0000775 fprintf(fp,"\n");
776 p = p->mh_next;
777 }
William M. Brack0622fe82003-11-29 10:47:56 +0000778 xmlMutexUnlock(xmlMemMutex);
Owen Taylor3473f882001-02-23 17:55:21 +0000779#else
780 fprintf(fp,"Memory list not compiled (MEM_LIST not defined !)\n");
781#endif
Daniel Veillard942d6c72005-05-08 11:39:56 +0000782 if (old_fp == NULL)
783 fclose(fp);
Owen Taylor3473f882001-02-23 17:55:21 +0000784}
785
786#ifdef MEM_LIST
787
Daniel Veillard01c13b52002-12-10 15:19:08 +0000788static void debugmem_list_add(MEMHDR *p)
Owen Taylor3473f882001-02-23 17:55:21 +0000789{
790 p->mh_next = memlist;
791 p->mh_prev = NULL;
792 if (memlist) memlist->mh_prev = p;
793 memlist = p;
794#ifdef MEM_LIST_DEBUG
795 if (stderr)
796 Mem_Display(stderr);
797#endif
798}
799
Daniel Veillard01c13b52002-12-10 15:19:08 +0000800static void debugmem_list_delete(MEMHDR *p)
Owen Taylor3473f882001-02-23 17:55:21 +0000801{
802 if (p->mh_next)
803 p->mh_next->mh_prev = p->mh_prev;
804 if (p->mh_prev)
805 p->mh_prev->mh_next = p->mh_next;
806 else memlist = p->mh_next;
807#ifdef MEM_LIST_DEBUG
808 if (stderr)
809 Mem_Display(stderr);
810#endif
811}
812
813#endif
814
815/*
Daniel Veillard01c13b52002-12-10 15:19:08 +0000816 * debugmem_tag_error:
817 *
818 * internal error function.
Owen Taylor3473f882001-02-23 17:55:21 +0000819 */
Daniel Veillard09459bf2008-07-30 12:58:11 +0000820
Daniel Veillard01c13b52002-12-10 15:19:08 +0000821static void debugmem_tag_error(void *p)
Owen Taylor3473f882001-02-23 17:55:21 +0000822{
823 xmlGenericError(xmlGenericErrorContext,
824 "Memory tag error occurs :%p \n\t bye\n", p);
825#ifdef MEM_LIST
826 if (stderr)
827 xmlMemDisplay(stderr);
828#endif
829}
830
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000831#ifdef MEM_LIST
Daniel Veillardb44025c2001-10-11 22:55:55 +0000832static FILE *xmlMemoryDumpFile = NULL;
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000833#endif
Owen Taylor3473f882001-02-23 17:55:21 +0000834
Owen Taylor3473f882001-02-23 17:55:21 +0000835/**
Daniel Veillardfb43bd62003-09-29 09:22:39 +0000836 * xmlMemShow:
837 * @fp: a FILE descriptor used as the output file
838 * @nr: number of entries to dump
839 *
840 * show a show display of the memory allocated, and dump
841 * the @nr last allocated areas which were not freed
842 */
843
844void
Daniel Veillardc064b472003-09-29 10:55:05 +0000845xmlMemShow(FILE *fp, int nr ATTRIBUTE_UNUSED)
Daniel Veillardfb43bd62003-09-29 09:22:39 +0000846{
Daniel Veillardfb43bd62003-09-29 09:22:39 +0000847#ifdef MEM_LIST
848 MEMHDR *p;
849#endif
Daniel Veillardfb43bd62003-09-29 09:22:39 +0000850
851 if (fp != NULL)
852 fprintf(fp," MEMORY ALLOCATED : %lu, MAX was %lu\n",
853 debugMemSize, debugMaxMemSize);
Daniel Veillardfb43bd62003-09-29 09:22:39 +0000854#ifdef MEM_LIST
William M. Brack0622fe82003-11-29 10:47:56 +0000855 xmlMutexLock(xmlMemMutex);
Daniel Veillardfb43bd62003-09-29 09:22:39 +0000856 if (nr > 0) {
857 fprintf(fp,"NUMBER SIZE TYPE WHERE\n");
858 p = memlist;
859 while ((p) && nr > 0) {
860 fprintf(fp,"%6lu %6lu ",p->mh_number,(unsigned long)p->mh_size);
861 switch (p->mh_type) {
862 case STRDUP_TYPE:fprintf(fp,"strdup() in ");break;
863 case MALLOC_TYPE:fprintf(fp,"malloc() in ");break;
864 case MALLOC_ATOMIC_TYPE:fprintf(fp,"atomicmalloc() in ");break;
865 case REALLOC_TYPE:fprintf(fp,"realloc() in ");break;
866 case REALLOC_ATOMIC_TYPE:fprintf(fp,"atomicrealloc() in ");break;
867 default:fprintf(fp," ??? in ");break;
868 }
869 if (p->mh_file != NULL)
William M. Brack13dfa872004-09-18 04:52:08 +0000870 fprintf(fp,"%s(%u)", p->mh_file, p->mh_line);
Daniel Veillardfb43bd62003-09-29 09:22:39 +0000871 if (p->mh_tag != MEMTAG)
872 fprintf(fp," INVALID");
873 xmlMemContentShow(fp, p);
874 fprintf(fp,"\n");
875 nr--;
876 p = p->mh_next;
877 }
878 }
William M. Brack0622fe82003-11-29 10:47:56 +0000879 xmlMutexUnlock(xmlMemMutex);
Daniel Veillard09459bf2008-07-30 12:58:11 +0000880#endif /* MEM_LIST */
Daniel Veillardfb43bd62003-09-29 09:22:39 +0000881}
882
883/**
Owen Taylor3473f882001-02-23 17:55:21 +0000884 * xmlMemoryDump:
885 *
886 * Dump in-extenso the memory blocks allocated to the file .memorylist
887 */
888
889void
890xmlMemoryDump(void)
891{
Daniel Veillardc064b472003-09-29 10:55:05 +0000892#ifdef MEM_LIST
Owen Taylor3473f882001-02-23 17:55:21 +0000893 FILE *dump;
894
Daniel Veillard5997aca2002-03-18 18:36:20 +0000895 if (debugMaxMemSize == 0)
896 return;
Owen Taylor3473f882001-02-23 17:55:21 +0000897 dump = fopen(".memdump", "w");
Daniel Veillardcd337f02001-11-22 18:20:37 +0000898 if (dump == NULL)
899 xmlMemoryDumpFile = stderr;
Owen Taylor3473f882001-02-23 17:55:21 +0000900 else xmlMemoryDumpFile = dump;
901
902 xmlMemDisplay(xmlMemoryDumpFile);
903
904 if (dump != NULL) fclose(dump);
Daniel Veillardc064b472003-09-29 10:55:05 +0000905#endif /* MEM_LIST */
Owen Taylor3473f882001-02-23 17:55:21 +0000906}
907
908
909/****************************************************************
910 * *
911 * Initialization Routines *
912 * *
913 ****************************************************************/
914
Owen Taylor3473f882001-02-23 17:55:21 +0000915/**
916 * xmlInitMemory:
917 *
918 * Initialize the memory layer.
919 *
920 * Returns 0 on success
921 */
Owen Taylor3473f882001-02-23 17:55:21 +0000922int
923xmlInitMemory(void)
924{
Daniel Veillarde15df582004-07-13 15:25:08 +0000925#ifdef HAVE_STDLIB_H
926 char *breakpoint;
Daniel Veillard09459bf2008-07-30 12:58:11 +0000927#endif
Daniel Veillardf93a8662004-07-01 12:56:30 +0000928#ifdef DEBUG_MEMORY
929 xmlGenericError(xmlGenericErrorContext,
930 "xmlInitMemory()\n");
Daniel Veillard09459bf2008-07-30 12:58:11 +0000931#endif
William M. Brack92029422004-01-04 01:01:14 +0000932 /*
933 This is really not good code (see Bug 130419). Suggestions for
934 improvement will be welcome!
935 */
936 if (xmlMemInitialized) return(-1);
William M. Brack0622fe82003-11-29 10:47:56 +0000937 xmlMemInitialized = 1;
William M. Brack0622fe82003-11-29 10:47:56 +0000938 xmlMemMutex = xmlNewMutex();
Owen Taylor3473f882001-02-23 17:55:21 +0000939
940#ifdef HAVE_STDLIB_H
941 breakpoint = getenv("XML_MEM_BREAKPOINT");
942 if (breakpoint != NULL) {
William M. Brack0622fe82003-11-29 10:47:56 +0000943 sscanf(breakpoint, "%ud", &xmlMemStopAtBlock);
Owen Taylor3473f882001-02-23 17:55:21 +0000944 }
Daniel Veillard09459bf2008-07-30 12:58:11 +0000945#endif
Daniel Veillard7d7e3792001-07-30 13:42:13 +0000946#ifdef HAVE_STDLIB_H
947 breakpoint = getenv("XML_MEM_TRACE");
948 if (breakpoint != NULL) {
949 sscanf(breakpoint, "%p", &xmlMemTraceBlockAt);
950 }
Daniel Veillard09459bf2008-07-30 12:58:11 +0000951#endif
952
Owen Taylor3473f882001-02-23 17:55:21 +0000953#ifdef DEBUG_MEMORY
954 xmlGenericError(xmlGenericErrorContext,
955 "xmlInitMemory() Ok\n");
Daniel Veillard09459bf2008-07-30 12:58:11 +0000956#endif
Daniel Veillard4432df22003-09-28 18:58:27 +0000957 return(0);
Owen Taylor3473f882001-02-23 17:55:21 +0000958}
959
960/**
William M. Brack72ee48d2003-12-30 08:30:19 +0000961 * xmlCleanupMemory:
962 *
Daniel Veillard91b955c2004-12-10 10:26:42 +0000963 * Free up all the memory allocated by the library for its own
964 * use. This should not be called by user level code.
William M. Brack72ee48d2003-12-30 08:30:19 +0000965 */
966void
967xmlCleanupMemory(void) {
Daniel Veillardf93a8662004-07-01 12:56:30 +0000968#ifdef DEBUG_MEMORY
969 xmlGenericError(xmlGenericErrorContext,
970 "xmlCleanupMemory()\n");
Daniel Veillard09459bf2008-07-30 12:58:11 +0000971#endif
William M. Brack72ee48d2003-12-30 08:30:19 +0000972 if (xmlMemInitialized == 0)
973 return;
974
975 xmlFreeMutex(xmlMemMutex);
Daniel Veillard1a9b7082004-01-02 10:42:01 +0000976 xmlMemMutex = NULL;
William M. Brack72ee48d2003-12-30 08:30:19 +0000977 xmlMemInitialized = 0;
Daniel Veillardf93a8662004-07-01 12:56:30 +0000978#ifdef DEBUG_MEMORY
979 xmlGenericError(xmlGenericErrorContext,
980 "xmlCleanupMemory() Ok\n");
Daniel Veillard09459bf2008-07-30 12:58:11 +0000981#endif
William M. Brack72ee48d2003-12-30 08:30:19 +0000982}
983
984/**
Owen Taylor3473f882001-02-23 17:55:21 +0000985 * xmlMemSetup:
986 * @freeFunc: the free() function to use
987 * @mallocFunc: the malloc() function to use
988 * @reallocFunc: the realloc() function to use
989 * @strdupFunc: the strdup() function to use
990 *
991 * Override the default memory access functions with a new set
992 * This has to be called before any other libxml routines !
993 *
994 * Should this be blocked if there was already some allocations
995 * done ?
996 *
997 * Returns 0 on success
998 */
999int
1000xmlMemSetup(xmlFreeFunc freeFunc, xmlMallocFunc mallocFunc,
1001 xmlReallocFunc reallocFunc, xmlStrdupFunc strdupFunc) {
Daniel Veillardf93a8662004-07-01 12:56:30 +00001002#ifdef DEBUG_MEMORY
1003 xmlGenericError(xmlGenericErrorContext,
1004 "xmlMemSetup()\n");
Daniel Veillard09459bf2008-07-30 12:58:11 +00001005#endif
Owen Taylor3473f882001-02-23 17:55:21 +00001006 if (freeFunc == NULL)
1007 return(-1);
1008 if (mallocFunc == NULL)
1009 return(-1);
1010 if (reallocFunc == NULL)
1011 return(-1);
1012 if (strdupFunc == NULL)
1013 return(-1);
1014 xmlFree = freeFunc;
1015 xmlMalloc = mallocFunc;
Daniel Veillard3c908dc2003-04-19 00:07:51 +00001016 xmlMallocAtomic = mallocFunc;
Owen Taylor3473f882001-02-23 17:55:21 +00001017 xmlRealloc = reallocFunc;
1018 xmlMemStrdup = strdupFunc;
Daniel Veillardf93a8662004-07-01 12:56:30 +00001019#ifdef DEBUG_MEMORY
1020 xmlGenericError(xmlGenericErrorContext,
1021 "xmlMemSetup() Ok\n");
Daniel Veillard09459bf2008-07-30 12:58:11 +00001022#endif
Owen Taylor3473f882001-02-23 17:55:21 +00001023 return(0);
1024}
1025
1026/**
1027 * xmlMemGet:
Daniel Veillarda9b66d02002-12-11 14:23:49 +00001028 * @freeFunc: place to save the free() function in use
1029 * @mallocFunc: place to save the malloc() function in use
1030 * @reallocFunc: place to save the realloc() function in use
1031 * @strdupFunc: place to save the strdup() function in use
Owen Taylor3473f882001-02-23 17:55:21 +00001032 *
Daniel Veillarda9b66d02002-12-11 14:23:49 +00001033 * Provides the memory access functions set currently in use
Owen Taylor3473f882001-02-23 17:55:21 +00001034 *
1035 * Returns 0 on success
1036 */
1037int
1038xmlMemGet(xmlFreeFunc *freeFunc, xmlMallocFunc *mallocFunc,
1039 xmlReallocFunc *reallocFunc, xmlStrdupFunc *strdupFunc) {
1040 if (freeFunc != NULL) *freeFunc = xmlFree;
1041 if (mallocFunc != NULL) *mallocFunc = xmlMalloc;
1042 if (reallocFunc != NULL) *reallocFunc = xmlRealloc;
1043 if (strdupFunc != NULL) *strdupFunc = xmlMemStrdup;
1044 return(0);
1045}
1046
Daniel Veillard3c908dc2003-04-19 00:07:51 +00001047/**
1048 * xmlGcMemSetup:
1049 * @freeFunc: the free() function to use
1050 * @mallocFunc: the malloc() function to use
1051 * @mallocAtomicFunc: the malloc() function to use for atomic allocations
1052 * @reallocFunc: the realloc() function to use
1053 * @strdupFunc: the strdup() function to use
1054 *
1055 * Override the default memory access functions with a new set
1056 * This has to be called before any other libxml routines !
1057 * The mallocAtomicFunc is specialized for atomic block
1058 * allocations (i.e. of areas useful for garbage collected memory allocators
1059 *
1060 * Should this be blocked if there was already some allocations
1061 * done ?
1062 *
1063 * Returns 0 on success
1064 */
1065int
1066xmlGcMemSetup(xmlFreeFunc freeFunc, xmlMallocFunc mallocFunc,
1067 xmlMallocFunc mallocAtomicFunc, xmlReallocFunc reallocFunc,
1068 xmlStrdupFunc strdupFunc) {
Daniel Veillardf93a8662004-07-01 12:56:30 +00001069#ifdef DEBUG_MEMORY
1070 xmlGenericError(xmlGenericErrorContext,
1071 "xmlGcMemSetup()\n");
Daniel Veillard09459bf2008-07-30 12:58:11 +00001072#endif
Daniel Veillard3c908dc2003-04-19 00:07:51 +00001073 if (freeFunc == NULL)
1074 return(-1);
1075 if (mallocFunc == NULL)
1076 return(-1);
1077 if (mallocAtomicFunc == NULL)
1078 return(-1);
1079 if (reallocFunc == NULL)
1080 return(-1);
1081 if (strdupFunc == NULL)
1082 return(-1);
1083 xmlFree = freeFunc;
1084 xmlMalloc = mallocFunc;
1085 xmlMallocAtomic = mallocAtomicFunc;
1086 xmlRealloc = reallocFunc;
1087 xmlMemStrdup = strdupFunc;
Daniel Veillardf93a8662004-07-01 12:56:30 +00001088#ifdef DEBUG_MEMORY
1089 xmlGenericError(xmlGenericErrorContext,
1090 "xmlGcMemSetup() Ok\n");
Daniel Veillard09459bf2008-07-30 12:58:11 +00001091#endif
Daniel Veillard3c908dc2003-04-19 00:07:51 +00001092 return(0);
1093}
1094
1095/**
1096 * xmlGcMemGet:
1097 * @freeFunc: place to save the free() function in use
1098 * @mallocFunc: place to save the malloc() function in use
1099 * @mallocAtomicFunc: place to save the atomic malloc() function in use
1100 * @reallocFunc: place to save the realloc() function in use
1101 * @strdupFunc: place to save the strdup() function in use
1102 *
1103 * Provides the memory access functions set currently in use
1104 * The mallocAtomicFunc is specialized for atomic block
1105 * allocations (i.e. of areas useful for garbage collected memory allocators
1106 *
1107 * Returns 0 on success
1108 */
1109int
1110xmlGcMemGet(xmlFreeFunc *freeFunc, xmlMallocFunc *mallocFunc,
1111 xmlMallocFunc *mallocAtomicFunc, xmlReallocFunc *reallocFunc,
1112 xmlStrdupFunc *strdupFunc) {
1113 if (freeFunc != NULL) *freeFunc = xmlFree;
1114 if (mallocFunc != NULL) *mallocFunc = xmlMalloc;
1115 if (mallocAtomicFunc != NULL) *mallocAtomicFunc = xmlMallocAtomic;
1116 if (reallocFunc != NULL) *reallocFunc = xmlRealloc;
1117 if (strdupFunc != NULL) *strdupFunc = xmlMemStrdup;
1118 return(0);
1119}
1120
Daniel Veillard5d4644e2005-04-01 13:11:58 +00001121#define bottom_xmlmemory
1122#include "elfgcchack.h"