2011-07-26 11:23:27 -04:00
|
|
|
#ifndef HEADER_CURL_MEMDEBUG_H
|
|
|
|
#define HEADER_CURL_MEMDEBUG_H
|
2011-09-02 13:40:53 -04:00
|
|
|
#ifdef CURLDEBUG
|
2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-11-09 09:00:56 -05:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2002-03-19 02:54:55 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2016-04-03 14:28:34 -04:00
|
|
|
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2002-03-19 02:54:55 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2004-11-09 09:00:56 -05:00
|
|
|
*
|
2002-03-19 02:54:55 -05:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
2002-03-19 02:54:55 -05:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2000-12-19 08:23:54 -05:00
|
|
|
|
2004-02-18 07:18:33 -05:00
|
|
|
/*
|
|
|
|
* CAUTION: this header is designed to work when included by the app-side
|
|
|
|
* as well as the library. Do not mix with library internals!
|
|
|
|
*/
|
|
|
|
|
2011-08-20 11:26:02 -04:00
|
|
|
#define CURL_MT_LOGFNAME_BUFSIZE 512
|
|
|
|
|
2003-08-14 10:19:36 -04:00
|
|
|
#define logfile curl_debuglogfile
|
|
|
|
|
2001-10-04 09:25:12 -04:00
|
|
|
extern FILE *logfile;
|
|
|
|
|
2000-12-14 10:56:59 -05:00
|
|
|
/* memory functions */
|
2004-11-09 09:00:56 -05:00
|
|
|
CURL_EXTERN void *curl_domalloc(size_t size, int line, const char *source);
|
2011-04-20 09:17:42 -04:00
|
|
|
CURL_EXTERN void *curl_docalloc(size_t elements, size_t size, int line,
|
|
|
|
const char *source);
|
|
|
|
CURL_EXTERN void *curl_dorealloc(void *ptr, size_t size, int line,
|
|
|
|
const char *source);
|
2004-11-09 09:00:56 -05:00
|
|
|
CURL_EXTERN void curl_dofree(void *ptr, int line, const char *source);
|
|
|
|
CURL_EXTERN char *curl_dostrdup(const char *str, int line, const char *source);
|
2013-07-19 00:44:46 -04:00
|
|
|
#if defined(WIN32) && defined(UNICODE)
|
2013-07-18 14:04:02 -04:00
|
|
|
CURL_EXTERN wchar_t *curl_dowcsdup(const wchar_t *str, int line,
|
|
|
|
const char *source);
|
|
|
|
#endif
|
|
|
|
|
2004-11-09 09:00:56 -05:00
|
|
|
CURL_EXTERN void curl_memdebug(const char *logname);
|
|
|
|
CURL_EXTERN void curl_memlimit(long limit);
|
2010-01-18 15:22:04 -05:00
|
|
|
CURL_EXTERN void curl_memlog(const char *format, ...);
|
2000-10-09 07:11:43 -04:00
|
|
|
|
2000-12-14 10:56:59 -05:00
|
|
|
/* file descriptor manipulators */
|
2010-02-22 18:28:56 -05:00
|
|
|
CURL_EXTERN curl_socket_t curl_socket(int domain, int type, int protocol,
|
2016-04-03 14:28:34 -04:00
|
|
|
int line, const char *source);
|
2010-02-22 18:28:56 -05:00
|
|
|
CURL_EXTERN void curl_mark_sclose(curl_socket_t sockfd,
|
2016-04-03 14:28:34 -04:00
|
|
|
int line, const char *source);
|
2010-02-22 18:28:56 -05:00
|
|
|
CURL_EXTERN int curl_sclose(curl_socket_t sockfd,
|
2016-04-03 14:28:34 -04:00
|
|
|
int line, const char *source);
|
2010-02-22 18:28:56 -05:00
|
|
|
CURL_EXTERN curl_socket_t curl_accept(curl_socket_t s, void *a, void *alen,
|
|
|
|
int line, const char *source);
|
2011-07-29 07:25:52 -04:00
|
|
|
#ifdef HAVE_SOCKETPAIR
|
|
|
|
CURL_EXTERN int curl_socketpair(int domain, int type, int protocol,
|
|
|
|
curl_socket_t socket_vector[2],
|
2016-04-03 14:28:34 -04:00
|
|
|
int line, const char *source);
|
2011-07-29 07:25:52 -04:00
|
|
|
#endif
|
2000-12-14 10:56:59 -05:00
|
|
|
|
2000-12-19 08:23:54 -05:00
|
|
|
/* FILE functions */
|
2004-11-09 09:00:56 -05:00
|
|
|
CURL_EXTERN FILE *curl_fopen(const char *file, const char *mode, int line,
|
|
|
|
const char *source);
|
2008-09-12 23:45:03 -04:00
|
|
|
#ifdef HAVE_FDOPEN
|
2007-06-28 07:11:29 -04:00
|
|
|
CURL_EXTERN FILE *curl_fdopen(int filedes, const char *mode, int line,
|
|
|
|
const char *source);
|
2008-09-12 23:45:03 -04:00
|
|
|
#endif
|
2004-11-09 09:00:56 -05:00
|
|
|
CURL_EXTERN int curl_fclose(FILE *file, int line, const char *source);
|
2000-12-19 08:23:54 -05:00
|
|
|
|
2004-01-29 08:56:45 -05:00
|
|
|
#ifndef MEMDEBUG_NODEFINES
|
|
|
|
|
2000-10-09 07:11:43 -04:00
|
|
|
/* Set this symbol on the command-line, recompile all lib-sources */
|
2002-10-28 14:20:59 -05:00
|
|
|
#undef strdup
|
2000-10-09 07:11:43 -04:00
|
|
|
#define strdup(ptr) curl_dostrdup(ptr, __LINE__, __FILE__)
|
|
|
|
#define malloc(size) curl_domalloc(size, __LINE__, __FILE__)
|
2004-02-26 09:52:51 -05:00
|
|
|
#define calloc(nbelem,size) curl_docalloc(nbelem, size, __LINE__, __FILE__)
|
2000-10-09 07:11:43 -04:00
|
|
|
#define realloc(ptr,size) curl_dorealloc(ptr, size, __LINE__, __FILE__)
|
|
|
|
#define free(ptr) curl_dofree(ptr, __LINE__, __FILE__)
|
2000-12-14 10:56:59 -05:00
|
|
|
|
2013-07-18 14:04:02 -04:00
|
|
|
#ifdef WIN32
|
|
|
|
# ifdef UNICODE
|
2013-07-19 00:44:46 -04:00
|
|
|
# undef wcsdup
|
|
|
|
# define wcsdup(ptr) curl_dowcsdup(ptr, __LINE__, __FILE__)
|
|
|
|
# undef _wcsdup
|
|
|
|
# define _wcsdup(ptr) curl_dowcsdup(ptr, __LINE__, __FILE__)
|
|
|
|
# undef _tcsdup
|
2013-07-18 14:04:02 -04:00
|
|
|
# define _tcsdup(ptr) curl_dowcsdup(ptr, __LINE__, __FILE__)
|
|
|
|
# else
|
2013-07-19 00:44:46 -04:00
|
|
|
# undef _tcsdup
|
2013-07-18 14:04:02 -04:00
|
|
|
# define _tcsdup(ptr) curl_dostrdup(ptr, __LINE__, __FILE__)
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2015-12-07 14:27:29 -05:00
|
|
|
#undef socket
|
2000-12-14 10:56:59 -05:00
|
|
|
#define socket(domain,type,protocol)\
|
2015-03-17 08:41:49 -04:00
|
|
|
curl_socket(domain, type, protocol, __LINE__, __FILE__)
|
2004-02-02 16:34:01 -05:00
|
|
|
#undef accept /* for those with accept as a macro */
|
2000-12-18 11:13:37 -05:00
|
|
|
#define accept(sock,addr,len)\
|
2015-03-17 08:41:49 -04:00
|
|
|
curl_accept(sock, addr, len, __LINE__, __FILE__)
|
2011-07-29 07:25:52 -04:00
|
|
|
#ifdef HAVE_SOCKETPAIR
|
|
|
|
#define socketpair(domain,type,protocol,socket_vector)\
|
2015-03-17 08:41:49 -04:00
|
|
|
curl_socketpair(domain, type, protocol, socket_vector, __LINE__, __FILE__)
|
2011-07-29 07:25:52 -04:00
|
|
|
#endif
|
2000-12-14 10:56:59 -05:00
|
|
|
|
2008-10-30 15:02:23 -04:00
|
|
|
#ifdef HAVE_GETADDRINFO
|
2005-06-30 09:28:58 -04:00
|
|
|
#if defined(getaddrinfo) && defined(__osf__)
|
|
|
|
/* OSF/1 and Tru64 have getaddrinfo as a define already, so we cannot define
|
|
|
|
our macro as for other platforms. Instead, we redefine the new name they
|
|
|
|
define getaddrinfo to become! */
|
|
|
|
#define ogetaddrinfo(host,serv,hint,res) \
|
2015-03-17 08:41:49 -04:00
|
|
|
curl_dogetaddrinfo(host, serv, hint, res, __LINE__, __FILE__)
|
2005-06-30 09:28:58 -04:00
|
|
|
#else
|
2005-11-13 18:53:14 -05:00
|
|
|
#undef getaddrinfo
|
2001-10-04 09:25:12 -04:00
|
|
|
#define getaddrinfo(host,serv,hint,res) \
|
2015-03-17 08:41:49 -04:00
|
|
|
curl_dogetaddrinfo(host, serv, hint, res, __LINE__, __FILE__)
|
2005-06-30 09:28:58 -04:00
|
|
|
#endif
|
2008-10-30 15:02:23 -04:00
|
|
|
#endif /* HAVE_GETADDRINFO */
|
2006-07-03 22:27:11 -04:00
|
|
|
|
|
|
|
#ifdef HAVE_GETNAMEINFO
|
2005-11-13 18:53:14 -05:00
|
|
|
#undef getnameinfo
|
2004-04-26 03:20:11 -04:00
|
|
|
#define getnameinfo(sa,salen,host,hostlen,serv,servlen,flags) \
|
2015-03-17 08:41:49 -04:00
|
|
|
curl_dogetnameinfo(sa, salen, host, hostlen, serv, servlen, flags, \
|
|
|
|
__LINE__, __FILE__)
|
2008-10-30 15:02:23 -04:00
|
|
|
#endif /* HAVE_GETNAMEINFO */
|
2006-07-03 22:27:11 -04:00
|
|
|
|
2008-10-30 15:02:23 -04:00
|
|
|
#ifdef HAVE_FREEADDRINFO
|
2005-11-13 18:53:14 -05:00
|
|
|
#undef freeaddrinfo
|
2001-10-04 09:25:12 -04:00
|
|
|
#define freeaddrinfo(data) \
|
2015-03-17 08:41:49 -04:00
|
|
|
curl_dofreeaddrinfo(data, __LINE__, __FILE__)
|
2008-10-30 15:02:23 -04:00
|
|
|
#endif /* HAVE_FREEADDRINFO */
|
2001-10-04 09:25:12 -04:00
|
|
|
|
2000-12-14 10:56:59 -05:00
|
|
|
/* sclose is probably already defined, redefine it! */
|
|
|
|
#undef sclose
|
|
|
|
#define sclose(sockfd) curl_sclose(sockfd,__LINE__,__FILE__)
|
|
|
|
|
2009-10-28 16:30:23 -04:00
|
|
|
#define fake_sclose(sockfd) curl_mark_sclose(sockfd,__LINE__,__FILE__)
|
|
|
|
|
2000-12-19 08:23:54 -05:00
|
|
|
#undef fopen
|
|
|
|
#define fopen(file,mode) curl_fopen(file,mode,__LINE__,__FILE__)
|
2007-06-28 07:11:29 -04:00
|
|
|
#undef fdopen
|
|
|
|
#define fdopen(file,mode) curl_fdopen(file,mode,__LINE__,__FILE__)
|
2000-12-19 08:23:54 -05:00
|
|
|
#define fclose(file) curl_fclose(file,__LINE__,__FILE__)
|
|
|
|
|
2004-01-29 08:56:45 -05:00
|
|
|
#endif /* MEMDEBUG_NODEFINES */
|
|
|
|
|
2004-02-18 07:18:33 -05:00
|
|
|
#endif /* CURLDEBUG */
|
2009-10-28 16:30:23 -04:00
|
|
|
|
2011-09-02 13:40:53 -04:00
|
|
|
/*
|
|
|
|
** Following section applies even when CURLDEBUG is not defined.
|
|
|
|
*/
|
|
|
|
|
2009-10-28 16:30:23 -04:00
|
|
|
#ifndef fake_sclose
|
2011-09-03 10:06:10 -04:00
|
|
|
#define fake_sclose(x) Curl_nop_stmt
|
2009-10-28 16:30:23 -04:00
|
|
|
#endif
|
2011-09-02 13:40:53 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Curl_safefree defined as a macro to allow MemoryTracking feature
|
|
|
|
* to log free() calls at same location where Curl_safefree is used.
|
2011-09-15 11:35:23 -04:00
|
|
|
* This macro also assigns NULL to given pointer when free'd.
|
2011-09-02 13:40:53 -04:00
|
|
|
*/
|
|
|
|
|
2011-09-15 11:35:23 -04:00
|
|
|
#define Curl_safefree(ptr) \
|
2015-03-16 10:01:15 -04:00
|
|
|
do { free((ptr)); (ptr) = NULL;} WHILE_FALSE
|
2011-09-02 13:40:53 -04:00
|
|
|
|
|
|
|
#endif /* HEADER_CURL_MEMDEBUG_H */
|