mirror of https://github.com/asterisk/asterisk
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
178 lines
5.5 KiB
178 lines
5.5 KiB
/*
|
|
* Asterisk -- An open source telephony toolkit.
|
|
*
|
|
* Copyright (C) 1999 - 2006, Digium, Inc.
|
|
*
|
|
* Mark Spencer <markster@digium.com>
|
|
*
|
|
* 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.
|
|
*
|
|
* This program is free software, distributed under the terms of
|
|
* the GNU General Public License Version 2. See the LICENSE file
|
|
* at the top of the source tree.
|
|
*/
|
|
|
|
/*! \file
|
|
* \brief Asterisk memory usage debugging
|
|
* This file provides headers for MALLOC_DEBUG, a define used for tracking down
|
|
* memory leaks. It should never be \#included directly; always use the
|
|
* MALLOC_DEBUG definition in menuselect to activate those functions.
|
|
*/
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef _ASTERISK_ASTMM_H
|
|
#define _ASTERISK_ASTMM_H
|
|
/* IWYU pragma: private, include "asterisk.h" */
|
|
|
|
#define __AST_DEBUG_MALLOC
|
|
|
|
void *ast_std_malloc(size_t size);
|
|
void *ast_std_calloc(size_t nmemb, size_t size);
|
|
void *ast_std_realloc(void *ptr, size_t size);
|
|
void ast_std_free(void *ptr);
|
|
void ast_free_ptr(void *ptr);
|
|
|
|
void *__ast_calloc(size_t nmemb, size_t size, const char *file, int lineno, const char *func);
|
|
void *__ast_calloc_cache(size_t nmemb, size_t size, const char *file, int lineno, const char *func);
|
|
void *__ast_malloc(size_t size, const char *file, int lineno, const char *func);
|
|
void __ast_free(void *ptr, const char *file, int lineno, const char *func);
|
|
void *__ast_realloc(void *ptr, size_t size, const char *file, int lineno, const char *func);
|
|
char *__ast_strdup(const char *s, const char *file, int lineno, const char *func);
|
|
char *__ast_strndup(const char *s, size_t n, const char *file, int lineno, const char *func);
|
|
int __ast_asprintf(const char *file, int lineno, const char *func, char **strp, const char *format, ...)
|
|
__attribute__((format(printf, 5, 6)));
|
|
int __ast_vasprintf(char **strp, const char *format, va_list ap, const char *file, int lineno, const char *func)
|
|
__attribute__((format(printf, 2, 0)));
|
|
void __ast_mm_init_phase_1(void);
|
|
void __ast_mm_init_phase_2(void);
|
|
|
|
/*!
|
|
* \brief ASTMM_LIBC can be defined to control the meaning of standard allocators.
|
|
*
|
|
* \note The standard allocators effected by this compiler define are:
|
|
* malloc, calloc, realloc, strdup, strndup, asprintf, vasprintf and free.
|
|
*
|
|
* @{
|
|
*/
|
|
|
|
/*!
|
|
* \brief Produce compiler errors if standard allocators are used.
|
|
*
|
|
* \note This is the default option, and in most cases the correct option.
|
|
* Any use of standard allocators will cause an error, even if those uses
|
|
* are in unused static inline header functions.
|
|
*/
|
|
#define ASTMM_BLOCK 0
|
|
|
|
/*!
|
|
* \brief Redirect standard allocators to use Asterisk functions.
|
|
*
|
|
* \note This option is used in some cases instead of changing the
|
|
* existing source to use Asterisk functions. New code should
|
|
* generally avoid this option, except where it's needed to work
|
|
* with situations where switching the code is unreasonable, such
|
|
* as output from code generators that are hard coded to use
|
|
* standard functions.
|
|
*/
|
|
#define ASTMM_REDIRECT 1
|
|
|
|
/*!
|
|
* \brief Standard allocators are used directly.
|
|
*
|
|
* \note This option is needed when including 3rd party headers with calls
|
|
* to standard allocators from inline functions. Using ASTMM_REDIRECT in
|
|
* this situation could result in an object being allocated by malloc and
|
|
* freed by ast_free, or the reverse.
|
|
*/
|
|
#define ASTMM_IGNORE 2
|
|
|
|
/*!
|
|
* }@
|
|
*/
|
|
|
|
#if !defined(ASTMM_LIBC)
|
|
/* BLOCK libc allocators by default. */
|
|
#define ASTMM_LIBC ASTMM_BLOCK
|
|
#endif
|
|
|
|
#if ASTMM_LIBC == ASTMM_IGNORE
|
|
/* Don't touch the libc functions. */
|
|
#else
|
|
|
|
/* Undefine any macros */
|
|
#undef malloc
|
|
#undef calloc
|
|
#undef realloc
|
|
#undef strdup
|
|
#undef strndup
|
|
#undef asprintf
|
|
#undef vasprintf
|
|
#undef free
|
|
|
|
#if ASTMM_LIBC == ASTMM_REDIRECT
|
|
|
|
/* Redefine libc functions to our own versions */
|
|
#define calloc(a,b) \
|
|
__ast_calloc(a,b,__FILE__, __LINE__, __PRETTY_FUNCTION__)
|
|
#define malloc(a) \
|
|
__ast_malloc(a,__FILE__, __LINE__, __PRETTY_FUNCTION__)
|
|
#define free(a) \
|
|
__ast_free(a,__FILE__, __LINE__, __PRETTY_FUNCTION__)
|
|
#define realloc(a,b) \
|
|
__ast_realloc(a,b,__FILE__, __LINE__, __PRETTY_FUNCTION__)
|
|
#define strdup(a) \
|
|
__ast_strdup(a,__FILE__, __LINE__, __PRETTY_FUNCTION__)
|
|
#define strndup(a,b) \
|
|
__ast_strndup(a,b,__FILE__, __LINE__, __PRETTY_FUNCTION__)
|
|
#define asprintf(a, b, c...) \
|
|
__ast_asprintf(__FILE__, __LINE__, __PRETTY_FUNCTION__, a, b, c)
|
|
#define vasprintf(a,b,c) \
|
|
__ast_vasprintf(a,b,c,__FILE__, __LINE__, __PRETTY_FUNCTION__)
|
|
|
|
#elif ASTMM_LIBC == ASTMM_BLOCK
|
|
|
|
/* Redefine libc functions to cause compile errors */
|
|
#define calloc(a,b) \
|
|
Do_not_use_calloc__use_ast_calloc->fail(a,b)
|
|
#define malloc(a) \
|
|
Do_not_use_malloc__use_ast_malloc->fail(a)
|
|
#define free(a) \
|
|
Do_not_use_free__use_ast_free_or_ast_std_free_for_remotely_allocated_memory->fail(a)
|
|
#define realloc(a,b) \
|
|
Do_not_use_realloc__use_ast_realloc->fail(a,b)
|
|
#define strdup(a) \
|
|
Do_not_use_strdup__use_ast_strdup->fail(a)
|
|
#define strndup(a,b) \
|
|
Do_not_use_strndup__use_ast_strndup->fail(a,b)
|
|
#define asprintf(a, b, c...) \
|
|
Do_not_use_asprintf__use_ast_asprintf->fail(a,b,c)
|
|
#define vasprintf(a,b,c) \
|
|
Do_not_use_vasprintf__use_ast_vasprintf->fail(a,b,c)
|
|
|
|
#else
|
|
#error "Unacceptable value for the macro ASTMM_LIBC"
|
|
#endif
|
|
|
|
#endif
|
|
|
|
/* Provide our own definition for ast_free */
|
|
|
|
#define ast_free(a) \
|
|
__ast_free(a,__FILE__, __LINE__, __PRETTY_FUNCTION__)
|
|
|
|
#else
|
|
#error "NEVER INCLUDE astmm.h DIRECTLY!!"
|
|
#endif /* _ASTERISK_ASTMM_H */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|