| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2005-09-14 20:46:50 +00:00
										 |  |  |  * Asterisk -- An open source telephony toolkit. | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-01-04 21:54:09 +00:00
										 |  |  |  * Copyright (C) 1999 - 2006, Digium, Inc. | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-03-23 05:56:32 +00:00
										 |  |  |  * Mark Spencer <markster@digium.com> | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-09-14 20:46:50 +00:00
										 |  |  |  * See http://www.asterisk.org for more information about
 | 
					
						
							|  |  |  |  * the Asterisk project. Please do not directly contact | 
					
						
							|  |  |  |  * any of the maintainers of this project for assistance; | 
					
						
							|  |  |  |  * the project provides a web site, mailing lists and IRC | 
					
						
							|  |  |  |  * channels for your use. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  |  * This program is free software, distributed under the terms of | 
					
						
							| 
									
										
										
										
											2005-09-14 20:46:50 +00:00
										 |  |  |  * the GNU General Public License Version 2. See the LICENSE file | 
					
						
							|  |  |  |  * at the top of the source tree. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-24 20:12:06 +00:00
										 |  |  | /*! \file
 | 
					
						
							| 
									
										
										
										
											2005-09-14 20:46:50 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-10-24 20:12:06 +00:00
										 |  |  |  * \brief Memory Management | 
					
						
							| 
									
										
										
										
											2005-12-30 21:18:06 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * \author Mark Spencer <markster@digium.com> | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-06-06 20:27:51 +00:00
										 |  |  | #include "asterisk.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-27 15:52:56 +00:00
										 |  |  | #ifdef __AST_DEBUG_MALLOC
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-06-06 23:12:05 +00:00
										 |  |  | ASTERISK_FILE_VERSION(__FILE__, "$Revision$") | 
					
						
							| 
									
										
										
										
											2005-06-06 20:27:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-21 01:35:30 +00:00
										 |  |  | #include "asterisk/paths.h"	/* use ast_config_AST_LOG_DIR */
 | 
					
						
							| 
									
										
										
										
											2008-07-11 14:16:15 +00:00
										 |  |  | #include <stddef.h>
 | 
					
						
							| 
									
										
										
										
											2006-06-07 18:54:56 +00:00
										 |  |  | #include <time.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-21 06:02:45 +00:00
										 |  |  | #include "asterisk/cli.h"
 | 
					
						
							|  |  |  | #include "asterisk/lock.h"
 | 
					
						
							| 
									
										
										
										
											2005-08-23 15:08:55 +00:00
										 |  |  | #include "asterisk/strings.h"
 | 
					
						
							| 
									
										
										
										
											2006-03-20 02:00:30 +00:00
										 |  |  | #include "asterisk/unaligned.h"
 | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define SOME_PRIME 563
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-15 01:48:54 +00:00
										 |  |  | enum func_type { | 
					
						
							|  |  |  | 	FUNC_CALLOC = 1, | 
					
						
							|  |  |  | 	FUNC_MALLOC, | 
					
						
							|  |  |  | 	FUNC_REALLOC, | 
					
						
							|  |  |  | 	FUNC_STRDUP, | 
					
						
							|  |  |  | 	FUNC_STRNDUP, | 
					
						
							|  |  |  | 	FUNC_VASPRINTF, | 
					
						
							|  |  |  | 	FUNC_ASPRINTF | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Undefine all our macros */ | 
					
						
							|  |  |  | #undef malloc
 | 
					
						
							|  |  |  | #undef calloc
 | 
					
						
							|  |  |  | #undef realloc
 | 
					
						
							|  |  |  | #undef strdup
 | 
					
						
							|  |  |  | #undef strndup
 | 
					
						
							|  |  |  | #undef free
 | 
					
						
							| 
									
										
										
										
											2004-01-14 06:35:01 +00:00
										 |  |  | #undef vasprintf
 | 
					
						
							| 
									
										
										
										
											2006-01-04 21:54:09 +00:00
										 |  |  | #undef asprintf
 | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-29 04:34:11 +00:00
										 |  |  | #define FENCE_MAGIC 0xdeadbeef
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-06 00:01:32 +00:00
										 |  |  | static FILE *mmlog; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-11 14:16:15 +00:00
										 |  |  | /* NOTE: Be EXTREMELY careful with modifying this structure; the total size of this structure
 | 
					
						
							|  |  |  |    must result in 'automatic' alignment so that the 'fence' field lands exactly at the end of | 
					
						
							|  |  |  |    the structure in memory (and thus immediately before the allocated region the fence is | 
					
						
							|  |  |  |    supposed to be used to monitor). In other words, we cannot allow the compiler to insert | 
					
						
							|  |  |  |    any padding between this structure and anything following it, so add up the sizes of all the | 
					
						
							|  |  |  |    fields and compare to sizeof(struct ast_region)... if they don't match, then the compiler | 
					
						
							|  |  |  |    is padding the structure and either the fields need to be rearranged to eliminate internal | 
					
						
							|  |  |  |    padding, or a dummy field will need to be inserted before the 'fence' field to push it to | 
					
						
							|  |  |  |    the end of the actual space it will consume. Note that this must be checked for both 32-bit | 
					
						
							|  |  |  |    and 64-bit platforms, as the sizes of pointers and 'size_t' differ on these platforms. | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | static struct ast_region { | 
					
						
							|  |  |  | 	struct ast_region *next; | 
					
						
							| 
									
										
										
										
											2008-07-11 14:16:15 +00:00
										 |  |  | 	size_t len; | 
					
						
							| 
									
										
										
										
											2008-01-24 18:35:04 +00:00
										 |  |  | 	char file[64]; | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 	char func[40]; | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 	unsigned int lineno; | 
					
						
							| 
									
										
										
										
											2006-02-15 01:48:54 +00:00
										 |  |  | 	enum func_type which; | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 	unsigned int cache;		/* region was allocated as part of a cache pool */ | 
					
						
							| 
									
										
										
										
											2005-09-29 04:34:11 +00:00
										 |  |  | 	unsigned int fence; | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 	unsigned char data[0]; | 
					
						
							|  |  |  | } *regions[SOME_PRIME]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define HASH(a) \
 | 
					
						
							|  |  |  | 	(((unsigned long)(a)) % SOME_PRIME) | 
					
						
							| 
									
										
										
										
											2007-08-03 19:41:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*! Tracking this mutex will cause infinite recursion, as the mutex tracking
 | 
					
						
							|  |  |  |  *  code allocates memory */ | 
					
						
							|  |  |  | AST_MUTEX_DEFINE_STATIC_NOTRACKING(reglock); | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | #define astmm_log(...)                               \
 | 
					
						
							|  |  |  | 	do {                                         \ | 
					
						
							|  |  |  | 		fprintf(stderr, __VA_ARGS__);        \ | 
					
						
							|  |  |  | 		if (mmlog) {                         \ | 
					
						
							|  |  |  | 			fprintf(mmlog, __VA_ARGS__); \ | 
					
						
							|  |  |  | 			fflush(mmlog);               \ | 
					
						
							|  |  |  | 		}                                    \ | 
					
						
							|  |  |  | 	} while (0) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | static inline void *__ast_alloc_region(size_t size, const enum func_type which, const char *file, int lineno, const char *func, unsigned int cache) | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct ast_region *reg; | 
					
						
							| 
									
										
										
										
											2005-08-03 04:50:09 +00:00
										 |  |  | 	void *ptr = NULL; | 
					
						
							| 
									
										
										
										
											2005-09-29 04:34:11 +00:00
										 |  |  | 	unsigned int *fence; | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 	int hash; | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!(reg = malloc(size + sizeof(*reg) + sizeof(*fence)))) { | 
					
						
							|  |  |  | 		astmm_log("Memory Allocation Failure - '%d' bytes in function %s " | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 			  "at line %d of %s\n", (int) size, func, lineno, file); | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ast_copy_string(reg->file, file, sizeof(reg->file)); | 
					
						
							|  |  |  | 	ast_copy_string(reg->func, func, sizeof(reg->func)); | 
					
						
							|  |  |  | 	reg->lineno = lineno; | 
					
						
							|  |  |  | 	reg->len = size; | 
					
						
							|  |  |  | 	reg->which = which; | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 	reg->cache = cache; | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 	ptr = reg->data; | 
					
						
							|  |  |  | 	hash = HASH(ptr); | 
					
						
							|  |  |  | 	reg->fence = FENCE_MAGIC; | 
					
						
							|  |  |  | 	fence = (ptr + reg->len); | 
					
						
							|  |  |  | 	put_unaligned_uint32(fence, FENCE_MAGIC); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ast_mutex_lock(®lock); | 
					
						
							|  |  |  | 	reg->next = regions[hash]; | 
					
						
							|  |  |  | 	regions[hash] = reg; | 
					
						
							| 
									
										
										
										
											2003-08-13 15:25:16 +00:00
										 |  |  | 	ast_mutex_unlock(®lock); | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 	return ptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline size_t __ast_sizeof_region(void *ptr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int hash = HASH(ptr); | 
					
						
							|  |  |  | 	struct ast_region *reg; | 
					
						
							|  |  |  | 	size_t len = 0; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2003-08-13 15:25:16 +00:00
										 |  |  | 	ast_mutex_lock(®lock); | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 	for (reg = regions[hash]; reg; reg = reg->next) { | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 		if (reg->data == ptr) { | 
					
						
							|  |  |  | 			len = reg->len; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-08-13 15:25:16 +00:00
										 |  |  | 	ast_mutex_unlock(®lock); | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 	return len; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __ast_free_region(void *ptr, const char *file, int lineno, const char *func) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-17 20:25:40 +00:00
										 |  |  | 	int hash; | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 	struct ast_region *reg, *prev = NULL; | 
					
						
							| 
									
										
										
										
											2005-09-29 04:34:11 +00:00
										 |  |  | 	unsigned int *fence; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-17 20:25:40 +00:00
										 |  |  | 	if (!ptr) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hash = HASH(ptr); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-13 15:25:16 +00:00
										 |  |  | 	ast_mutex_lock(®lock); | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 	for (reg = regions[hash]; reg; reg = reg->next) { | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 		if (reg->data == ptr) { | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 			if (prev) | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 				prev->next = reg->next; | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 			else | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 				regions[hash] = reg->next; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		prev = reg; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-08-13 15:25:16 +00:00
										 |  |  | 	ast_mutex_unlock(®lock); | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 	if (reg) { | 
					
						
							| 
									
										
										
										
											2005-09-29 04:34:11 +00:00
										 |  |  | 		fence = (unsigned int *)(reg->data + reg->len); | 
					
						
							|  |  |  | 		if (reg->fence != FENCE_MAGIC) { | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 			astmm_log("WARNING: Low fence violation at %p, in %s of %s, " | 
					
						
							|  |  |  | 				"line %d\n", reg->data, reg->func, reg->file, reg->lineno); | 
					
						
							| 
									
										
										
										
											2005-09-29 04:34:11 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2006-03-20 02:00:30 +00:00
										 |  |  | 		if (get_unaligned_uint32(fence) != FENCE_MAGIC) { | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 			astmm_log("WARNING: High fence violation at %p, in %s of %s, " | 
					
						
							|  |  |  | 				"line %d\n", reg->data, reg->func, reg->file, reg->lineno); | 
					
						
							| 
									
										
										
										
											2005-09-29 04:34:11 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 		free(reg); | 
					
						
							| 
									
										
										
										
											2003-05-06 00:01:32 +00:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 		astmm_log("WARNING: Freeing unused memory at %p, in %s of %s, line %d\n",	 | 
					
						
							|  |  |  | 			ptr, func, file, lineno); | 
					
						
							| 
									
										
										
										
											2003-05-06 00:01:32 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void *__ast_calloc(size_t nmemb, size_t size, const char *file, int lineno, const char *func)  | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	void *ptr; | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 	if ((ptr = __ast_alloc_region(size * nmemb, FUNC_CALLOC, file, lineno, func, 0)))  | 
					
						
							|  |  |  | 		memset(ptr, 0, size * nmemb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void *__ast_calloc_cache(size_t nmemb, size_t size, const char *file, int lineno, const char *func)  | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	void *ptr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ((ptr = __ast_alloc_region(size * nmemb, FUNC_CALLOC, file, lineno, func, 1)))  | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 		memset(ptr, 0, size * nmemb); | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 	return ptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void *__ast_malloc(size_t size, const char *file, int lineno, const char *func)  | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 	return __ast_alloc_region(size, FUNC_MALLOC, file, lineno, func, 0); | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void __ast_free(void *ptr, const char *file, int lineno, const char *func)  | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	__ast_free_region(ptr, file, lineno, func); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void *__ast_realloc(void *ptr, size_t size, const char *file, int lineno, const char *func)  | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	void *tmp; | 
					
						
							| 
									
										
										
										
											2005-08-03 04:50:09 +00:00
										 |  |  | 	size_t len = 0; | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-15 01:48:54 +00:00
										 |  |  | 	if (ptr && !(len = __ast_sizeof_region(ptr))) { | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 		astmm_log("WARNING: Realloc of unalloced memory at %p, in %s of %s, " | 
					
						
							|  |  |  | 			"line %d\n", ptr, func, file, lineno); | 
					
						
							| 
									
										
										
										
											2006-02-15 01:48:54 +00:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 	if (!(tmp = __ast_alloc_region(size, FUNC_REALLOC, file, lineno, func, 0))) | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (len > size) | 
					
						
							|  |  |  | 		len = size; | 
					
						
							|  |  |  | 	if (ptr) { | 
					
						
							|  |  |  | 		memcpy(tmp, ptr, len); | 
					
						
							|  |  |  | 		__ast_free_region(ptr, file, lineno, func); | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 	return tmp; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | char *__ast_strdup(const char *s, const char *file, int lineno, const char *func)  | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	size_t len; | 
					
						
							|  |  |  | 	void *ptr; | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 	if (!s) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 	len = strlen(s) + 1; | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 	if ((ptr = __ast_alloc_region(len, FUNC_STRDUP, file, lineno, func, 0))) | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 		strcpy(ptr, s); | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 	return ptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | char *__ast_strndup(const char *s, size_t n, const char *file, int lineno, const char *func)  | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	size_t len; | 
					
						
							|  |  |  | 	void *ptr; | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 	if (!s) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 	len = strlen(s) + 1; | 
					
						
							|  |  |  | 	if (len > n) | 
					
						
							|  |  |  | 		len = n; | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 	if ((ptr = __ast_alloc_region(len, FUNC_STRNDUP, file, lineno, func, 0))) | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 		strcpy(ptr, s); | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 	return ptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-04 21:54:09 +00:00
										 |  |  | int __ast_asprintf(const char *file, int lineno, const char *func, char **strp, const char *fmt, ...) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int size; | 
					
						
							|  |  |  | 	va_list ap, ap2; | 
					
						
							|  |  |  | 	char s; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	*strp = NULL; | 
					
						
							|  |  |  | 	va_start(ap, fmt); | 
					
						
							|  |  |  | 	va_copy(ap2, ap); | 
					
						
							|  |  |  | 	size = vsnprintf(&s, 1, fmt, ap2); | 
					
						
							|  |  |  | 	va_end(ap2); | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 	if (!(*strp = __ast_alloc_region(size + 1, FUNC_ASPRINTF, file, lineno, func, 0))) { | 
					
						
							| 
									
										
										
										
											2006-01-04 21:54:09 +00:00
										 |  |  | 		va_end(ap); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	vsnprintf(*strp, size + 1, fmt, ap); | 
					
						
							|  |  |  | 	va_end(ap); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return size; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-01-14 06:35:01 +00:00
										 |  |  | int __ast_vasprintf(char **strp, const char *fmt, va_list ap, const char *file, int lineno, const char *func)  | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-16 02:20:16 +00:00
										 |  |  | 	int size; | 
					
						
							|  |  |  | 	va_list ap2; | 
					
						
							|  |  |  | 	char s; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	*strp = NULL; | 
					
						
							|  |  |  | 	va_copy(ap2, ap); | 
					
						
							|  |  |  | 	size = vsnprintf(&s, 1, fmt, ap2); | 
					
						
							|  |  |  | 	va_end(ap2); | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 	if (!(*strp = __ast_alloc_region(size + 1, FUNC_VASPRINTF, file, lineno, func, 0))) { | 
					
						
							| 
									
										
										
										
											2006-01-04 21:54:09 +00:00
										 |  |  | 		va_end(ap); | 
					
						
							| 
									
										
										
										
											2005-11-16 02:20:16 +00:00
										 |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											2006-01-04 21:54:09 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-11-16 02:20:16 +00:00
										 |  |  | 	vsnprintf(*strp, size + 1, fmt, ap); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return size; | 
					
						
							| 
									
										
										
										
											2004-01-14 06:35:01 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-20 23:14:30 +00:00
										 |  |  | static char *handle_memory_show(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a) | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	char *fn = NULL; | 
					
						
							|  |  |  | 	struct ast_region *reg; | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 	unsigned int x; | 
					
						
							| 
									
										
										
										
											2005-08-03 04:50:09 +00:00
										 |  |  | 	unsigned int len = 0; | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 	unsigned int cache_len = 0; | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 	unsigned int count = 0; | 
					
						
							| 
									
										
										
										
											2005-09-29 04:34:11 +00:00
										 |  |  | 	unsigned int *fence; | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-20 23:14:30 +00:00
										 |  |  | 	switch (cmd) { | 
					
						
							|  |  |  | 	case CLI_INIT: | 
					
						
							|  |  |  | 		e->command = "memory show allocations"; | 
					
						
							|  |  |  | 		e->usage = | 
					
						
							|  |  |  | 			"Usage: memory show allocations [<file>]\n" | 
					
						
							|  |  |  | 			"       Dumps a list of all segments of allocated memory, optionally\n" | 
					
						
							|  |  |  | 			"       limited to those from a specific file\n"; | 
					
						
							| 
									
										
										
										
											2007-11-06 19:51:37 +00:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2007-09-20 23:14:30 +00:00
										 |  |  | 	case CLI_GENERATE: | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (a->argc > 3) | 
					
						
							|  |  |  | 		fn = a->argv[3]; | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-29 19:47:52 +00:00
										 |  |  | 	ast_mutex_lock(®lock); | 
					
						
							| 
									
										
										
										
											2005-08-03 04:50:09 +00:00
										 |  |  | 	for (x = 0; x < SOME_PRIME; x++) { | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 		for (reg = regions[x]; reg; reg = reg->next) { | 
					
						
							| 
									
										
										
										
											2005-09-29 04:34:11 +00:00
										 |  |  | 			if (!fn || !strcasecmp(fn, reg->file) || !strcasecmp(fn, "anomolies")) { | 
					
						
							|  |  |  | 				fence = (unsigned int *)(reg->data + reg->len); | 
					
						
							|  |  |  | 				if (reg->fence != FENCE_MAGIC) { | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 					astmm_log("WARNING: Low fence violation at %p, " | 
					
						
							|  |  |  | 						"in %s of %s, line %d\n", reg->data,  | 
					
						
							|  |  |  | 						reg->func, reg->file, reg->lineno); | 
					
						
							| 
									
										
										
										
											2005-09-29 04:34:11 +00:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2006-03-20 02:00:30 +00:00
										 |  |  | 				if (get_unaligned_uint32(fence) != FENCE_MAGIC) { | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 					astmm_log("WARNING: High fence violation at %p, in %s of %s, " | 
					
						
							|  |  |  | 						"line %d\n", reg->data, reg->func, reg->file, reg->lineno); | 
					
						
							| 
									
										
										
										
											2005-09-29 04:34:11 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 			if (!fn || !strcasecmp(fn, reg->file)) { | 
					
						
							| 
									
										
										
										
											2007-09-20 23:14:30 +00:00
										 |  |  | 				ast_cli(a->fd, "%10d bytes allocated%s in %20s at line %5d of %s\n",  | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 					(int) reg->len, reg->cache ? " (cache)" : "",  | 
					
						
							|  |  |  | 					reg->func, reg->lineno, reg->file); | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 				len += reg->len; | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 				if (reg->cache) | 
					
						
							|  |  |  | 					cache_len += reg->len; | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 				count++; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-10-29 19:47:52 +00:00
										 |  |  | 	ast_mutex_unlock(®lock); | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 	if (cache_len) | 
					
						
							| 
									
										
										
										
											2007-09-20 23:14:30 +00:00
										 |  |  | 		ast_cli(a->fd, "%d bytes allocated (%d in caches) in %d allocations\n", len, cache_len, count); | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2007-09-20 23:14:30 +00:00
										 |  |  | 		ast_cli(a->fd, "%d bytes allocated in %d allocations\n", len, count); | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2007-09-20 23:14:30 +00:00
										 |  |  | 	return CLI_SUCCESS; | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-20 23:14:30 +00:00
										 |  |  | static char *handle_memory_show_summary(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a) | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	char *fn = NULL; | 
					
						
							|  |  |  | 	int x; | 
					
						
							|  |  |  | 	struct ast_region *reg; | 
					
						
							| 
									
										
										
										
											2005-08-03 04:50:09 +00:00
										 |  |  | 	unsigned int len = 0; | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 	unsigned int cache_len = 0; | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 	int count = 0; | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 	struct file_summary { | 
					
						
							|  |  |  | 		char fn[80]; | 
					
						
							|  |  |  | 		int len; | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 		int cache_len; | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 		int count; | 
					
						
							|  |  |  | 		struct file_summary *next; | 
					
						
							|  |  |  | 	} *list = NULL, *cur; | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2007-09-20 23:14:30 +00:00
										 |  |  | 	switch (cmd) { | 
					
						
							|  |  |  | 	case CLI_INIT: | 
					
						
							|  |  |  | 		e->command = "memory show summary"; | 
					
						
							|  |  |  | 		e->usage = | 
					
						
							|  |  |  | 			"Usage: memory show summary [<file>]\n" | 
					
						
							|  |  |  | 			"       Summarizes heap memory allocations by file, or optionally\n" | 
					
						
							|  |  |  | 			"by function, if a file is specified\n"; | 
					
						
							| 
									
										
										
										
											2007-11-07 00:16:03 +00:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2007-09-20 23:14:30 +00:00
										 |  |  | 	case CLI_GENERATE: | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (a->argc > 3)  | 
					
						
							|  |  |  | 		fn = a->argv[3]; | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-13 15:25:16 +00:00
										 |  |  | 	ast_mutex_lock(®lock); | 
					
						
							| 
									
										
										
										
											2005-08-03 04:50:09 +00:00
										 |  |  | 	for (x = 0; x < SOME_PRIME; x++) { | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 		for (reg = regions[x]; reg; reg = reg->next) { | 
					
						
							|  |  |  | 			if (fn && strcasecmp(fn, reg->file)) | 
					
						
							|  |  |  | 				continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			for (cur = list; cur; cur = cur->next) { | 
					
						
							|  |  |  | 				if ((!fn && !strcmp(cur->fn, reg->file)) || (fn && !strcmp(cur->fn, reg->func))) | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if (!cur) { | 
					
						
							|  |  |  | 				cur = alloca(sizeof(*cur)); | 
					
						
							|  |  |  | 				memset(cur, 0, sizeof(*cur)); | 
					
						
							|  |  |  | 				ast_copy_string(cur->fn, fn ? reg->func : reg->file, sizeof(cur->fn)); | 
					
						
							|  |  |  | 				cur->next = list; | 
					
						
							|  |  |  | 				list = cur; | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			cur->len += reg->len; | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 			if (reg->cache) | 
					
						
							|  |  |  | 				cur->cache_len += reg->len; | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 			cur->count++; | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-08-13 15:25:16 +00:00
										 |  |  | 	ast_mutex_unlock(®lock); | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* Dump the whole list */ | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 	for (cur = list; cur; cur = cur->next) { | 
					
						
							| 
									
										
										
										
											2006-09-20 22:14:04 +00:00
										 |  |  | 		len += cur->len; | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 		cache_len += cur->cache_len; | 
					
						
							| 
									
										
										
										
											2006-09-20 22:14:04 +00:00
										 |  |  | 		count += cur->count; | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 		if (cur->cache_len) { | 
					
						
							|  |  |  | 			if (fn) { | 
					
						
							| 
									
										
										
										
											2007-09-20 23:14:30 +00:00
										 |  |  | 				ast_cli(a->fd, "%10d bytes (%10d cache) in %d allocations in function '%s' of '%s'\n",  | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 					cur->len, cur->cache_len, cur->count, cur->fn, fn); | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2007-09-20 23:14:30 +00:00
										 |  |  | 				ast_cli(a->fd, "%10d bytes (%10d cache) in %d allocations in file '%s'\n",  | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 					cur->len, cur->cache_len, cur->count, cur->fn); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2005-08-03 04:50:09 +00:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 			if (fn) { | 
					
						
							| 
									
										
										
										
											2007-09-20 23:14:30 +00:00
										 |  |  | 				ast_cli(a->fd, "%10d bytes in %d allocations in function '%s' of '%s'\n",  | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 					cur->len, cur->count, cur->fn, fn); | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2007-09-20 23:14:30 +00:00
										 |  |  | 				ast_cli(a->fd, "%10d bytes in %d allocations in file '%s'\n",  | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 					cur->len, cur->count, cur->fn); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2005-08-03 04:50:09 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 	if (cache_len) | 
					
						
							| 
									
										
										
										
											2007-09-20 23:14:30 +00:00
										 |  |  | 		ast_cli(a->fd, "%d bytes allocated (%d in caches) in %d allocations\n", len, cache_len, count); | 
					
						
							| 
									
										
										
										
											2006-12-27 18:33:44 +00:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2007-09-20 23:14:30 +00:00
										 |  |  | 		ast_cli(a->fd, "%d bytes allocated in %d allocations\n", len, count); | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-20 23:14:30 +00:00
										 |  |  | 	return CLI_SUCCESS; | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-18 19:54:18 +00:00
										 |  |  | static struct ast_cli_entry cli_memory[] = { | 
					
						
							| 
									
										
										
										
											2007-10-22 20:05:18 +00:00
										 |  |  | 	AST_CLI_DEFINE(handle_memory_show, "Display outstanding memory allocations"), | 
					
						
							|  |  |  | 	AST_CLI_DEFINE(handle_memory_show_summary, "Summarize outstanding memory allocations"), | 
					
						
							| 
									
										
										
										
											2006-09-18 19:54:18 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | void __ast_mm_init(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 	char filename[PATH_MAX]; | 
					
						
							| 
									
										
										
										
											2008-07-11 14:16:15 +00:00
										 |  |  | 	size_t pad = sizeof(struct ast_region) - offsetof(struct ast_region, data); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (pad) { | 
					
						
							|  |  |  | 		ast_log(LOG_ERROR, "struct ast_region has %d bytes of padding! This must be eliminated for low-fence checking to work properly!\n", (int) pad); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-18 19:54:18 +00:00
										 |  |  | 	ast_cli_register_multiple(cli_memory, sizeof(cli_memory) / sizeof(struct ast_cli_entry)); | 
					
						
							| 
									
										
										
										
											2005-08-03 04:50:09 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2007-12-18 09:46:18 +00:00
										 |  |  | 	snprintf(filename, sizeof(filename), "%s/mmlog", ast_config_AST_LOG_DIR); | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2008-02-05 23:00:15 +00:00
										 |  |  | 	ast_verb(1, "Asterisk Malloc Debugger Started (see %s))\n", filename); | 
					
						
							| 
									
										
										
										
											2006-08-21 19:18:09 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	if ((mmlog = fopen(filename, "a+"))) { | 
					
						
							| 
									
										
										
										
											2007-10-22 17:40:29 +00:00
										 |  |  | 		fprintf(mmlog, "%ld - New session\n", (long)time(NULL)); | 
					
						
							| 
									
										
										
										
											2003-05-08 18:51:06 +00:00
										 |  |  | 		fflush(mmlog); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-04-28 19:58:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 |