2003-06-26 07:22:12 -04:00
|
|
|
#ifdef CURLDEBUG
|
2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2000-10-09 07:11:43 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2004-01-07 04:19:33 -05:00
|
|
|
* Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2000-10-09 07:11:43 -04: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
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
|
|
|
*
|
2001-01-03 04:29:33 -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.
|
2000-10-09 07:11:43 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
2000-10-09 07:11:43 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* $Id$
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2000-10-09 07:11:43 -04:00
|
|
|
|
|
|
|
#include "setup.h"
|
|
|
|
|
|
|
|
#include <curl/curl.h>
|
2000-11-21 14:05:26 -05:00
|
|
|
|
2000-12-14 10:56:59 -05:00
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
|
|
|
|
2000-11-21 14:05:26 -05:00
|
|
|
#define _MPRINTF_REPLACE
|
|
|
|
#include <curl/mprintf.h>
|
2000-10-09 07:11:43 -04:00
|
|
|
#include "urldata.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2000-11-17 09:05:43 -05:00
|
|
|
#include <stdlib.h>
|
2000-10-09 07:11:43 -04:00
|
|
|
|
2000-12-19 08:35:23 -05:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2004-01-29 08:56:45 -05:00
|
|
|
#define MEMDEBUG_NODEFINES /* don't redefine the standard functions */
|
|
|
|
#include "memdebug.h"
|
2000-12-14 10:56:59 -05:00
|
|
|
|
2002-02-28 07:18:15 -05:00
|
|
|
struct memdebug {
|
|
|
|
int size;
|
2002-05-21 18:17:19 -04:00
|
|
|
double mem[1];
|
|
|
|
/* I'm hoping this is the thing with the strictest alignment
|
|
|
|
* requirements. That also means we waste some space :-( */
|
2002-02-28 07:18:15 -05:00
|
|
|
};
|
|
|
|
|
2000-10-09 07:11:43 -04:00
|
|
|
/*
|
|
|
|
* Note that these debug functions are very simple and they are meant to
|
|
|
|
* remain so. For advanced analysis, record a log file and write perl scripts
|
|
|
|
* to analyze them!
|
|
|
|
*
|
|
|
|
* Don't use these with multithreaded test programs!
|
|
|
|
*/
|
|
|
|
|
2003-08-14 10:19:36 -04:00
|
|
|
#define logfile curl_debuglogfile
|
|
|
|
FILE *curl_debuglogfile;
|
|
|
|
static bool memlimit; /* enable memory limit */
|
|
|
|
static long memsize; /* set number of mallocs allowed */
|
2000-10-09 07:11:43 -04:00
|
|
|
|
|
|
|
/* this sets the log file name */
|
2001-08-14 05:24:48 -04:00
|
|
|
void curl_memdebug(const char *logname)
|
2000-10-09 07:11:43 -04:00
|
|
|
{
|
2001-10-17 08:33:35 -04:00
|
|
|
if(logname)
|
|
|
|
logfile = fopen(logname, "w");
|
|
|
|
else
|
|
|
|
logfile = stderr;
|
2000-10-09 07:11:43 -04:00
|
|
|
}
|
|
|
|
|
2003-08-14 10:19:36 -04:00
|
|
|
/* This function sets the number of malloc() calls that should return
|
|
|
|
successfully! */
|
|
|
|
void curl_memlimit(long limit)
|
|
|
|
{
|
|
|
|
memlimit = TRUE;
|
|
|
|
memsize = limit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* returns TRUE if this isn't allowed! */
|
|
|
|
static bool countcheck(const char *func, int line, const char *source)
|
|
|
|
{
|
|
|
|
/* if source is NULL, then the call is made internally and this check
|
|
|
|
should not be made */
|
|
|
|
if(memlimit && source) {
|
|
|
|
if(!memsize) {
|
|
|
|
if(logfile && source)
|
|
|
|
fprintf(logfile, "LIMIT %s:%d %s reached memlimit\n",
|
|
|
|
source, line, func);
|
|
|
|
return TRUE; /* RETURN ERROR! */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
memsize--; /* countdown */
|
|
|
|
|
|
|
|
/* log the countdown */
|
|
|
|
if(logfile && source)
|
|
|
|
fprintf(logfile, "LIMIT %s:%d %ld ALLOCS left\n",
|
|
|
|
source, line, memsize);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE; /* allow this */
|
|
|
|
}
|
2000-10-09 07:11:43 -04:00
|
|
|
|
2002-02-28 07:18:15 -05:00
|
|
|
void *curl_domalloc(size_t wantedsize, int line, const char *source)
|
2000-10-09 07:11:43 -04:00
|
|
|
{
|
2002-02-28 07:37:05 -05:00
|
|
|
struct memdebug *mem;
|
2002-02-28 07:18:15 -05:00
|
|
|
size_t size;
|
|
|
|
|
2003-08-14 10:19:36 -04:00
|
|
|
if(countcheck("malloc", line, source))
|
|
|
|
return NULL;
|
|
|
|
|
2002-02-28 07:18:15 -05:00
|
|
|
/* alloc at least 64 bytes */
|
2002-02-28 07:37:05 -05:00
|
|
|
size = sizeof(struct memdebug)+wantedsize;
|
2002-02-28 07:18:15 -05:00
|
|
|
|
2002-02-28 07:37:05 -05:00
|
|
|
mem=(struct memdebug *)(malloc)(size);
|
|
|
|
if(mem) {
|
2001-11-28 18:19:17 -05:00
|
|
|
/* fill memory with junk */
|
2002-02-28 07:37:05 -05:00
|
|
|
memset(mem->mem, 0xA5, wantedsize);
|
|
|
|
mem->size = wantedsize;
|
|
|
|
}
|
|
|
|
|
2002-02-28 07:18:15 -05:00
|
|
|
if(logfile && source)
|
2001-10-17 08:33:35 -04:00
|
|
|
fprintf(logfile, "MEM %s:%d malloc(%d) = %p\n",
|
2002-02-28 07:37:05 -05:00
|
|
|
source, line, wantedsize, mem->mem);
|
|
|
|
return mem->mem;
|
2000-10-09 07:11:43 -04:00
|
|
|
}
|
|
|
|
|
2004-02-26 09:52:51 -05:00
|
|
|
void *curl_docalloc(size_t wanted_elements, size_t wanted_size,
|
|
|
|
int line, const char *source)
|
|
|
|
{
|
|
|
|
struct memdebug *mem;
|
|
|
|
size_t size, user_size;
|
|
|
|
|
|
|
|
if(countcheck("calloc", line, source))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* alloc at least 64 bytes */
|
|
|
|
user_size = wanted_size * wanted_elements;
|
|
|
|
size = sizeof(struct memdebug) + user_size;
|
|
|
|
|
|
|
|
mem = (struct memdebug *)(malloc)(size);
|
|
|
|
if(mem) {
|
|
|
|
/* fill memory with zeroes */
|
|
|
|
memset(mem->mem, 0, user_size);
|
|
|
|
mem->size = user_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(logfile && source)
|
|
|
|
fprintf(logfile, "MEM %s:%d calloc(%u,%u) = %p\n",
|
|
|
|
source, line, wanted_elements, wanted_size, mem->mem);
|
|
|
|
return mem->mem;
|
|
|
|
}
|
|
|
|
|
2001-08-14 04:31:27 -04:00
|
|
|
char *curl_dostrdup(const char *str, int line, const char *source)
|
2000-10-09 07:11:43 -04:00
|
|
|
{
|
2000-11-17 10:31:45 -05:00
|
|
|
char *mem;
|
|
|
|
size_t len;
|
|
|
|
|
2003-12-16 09:08:53 -05:00
|
|
|
curlassert(str != NULL);
|
|
|
|
|
2003-08-14 10:19:36 -04:00
|
|
|
if(countcheck("strdup", line, source))
|
|
|
|
return NULL;
|
|
|
|
|
2000-11-17 10:31:45 -05:00
|
|
|
len=strlen(str)+1;
|
2002-02-28 07:18:15 -05:00
|
|
|
|
|
|
|
mem=curl_domalloc(len, 0, NULL); /* NULL prevents logging */
|
|
|
|
memcpy(mem, str, len);
|
|
|
|
|
2001-10-17 08:33:35 -04:00
|
|
|
if(logfile)
|
|
|
|
fprintf(logfile, "MEM %s:%d strdup(%p) (%d) = %p\n",
|
|
|
|
source, line, str, len, mem);
|
2002-02-28 07:37:05 -05:00
|
|
|
|
2000-10-09 07:11:43 -04:00
|
|
|
return mem;
|
|
|
|
}
|
|
|
|
|
2004-02-16 11:23:19 -05:00
|
|
|
/* We provide a realloc() that accepts a NULL as pointer, which then
|
|
|
|
performs a malloc(). In order to work with ares. */
|
2002-02-28 07:18:15 -05:00
|
|
|
void *curl_dorealloc(void *ptr, size_t wantedsize,
|
|
|
|
int line, const char *source)
|
2000-10-09 07:11:43 -04:00
|
|
|
{
|
2004-02-16 11:23:19 -05:00
|
|
|
struct memdebug *mem=NULL;
|
2002-02-28 07:37:05 -05:00
|
|
|
|
|
|
|
size_t size = sizeof(struct memdebug)+wantedsize;
|
2002-02-28 07:18:15 -05:00
|
|
|
|
2003-08-14 10:19:36 -04:00
|
|
|
if(countcheck("realloc", line, source))
|
|
|
|
return NULL;
|
|
|
|
|
2004-02-16 11:23:19 -05:00
|
|
|
if(ptr)
|
|
|
|
mem = (struct memdebug *)((char *)ptr - offsetof(struct memdebug, mem));
|
2002-02-28 07:18:15 -05:00
|
|
|
|
2002-02-28 07:37:05 -05:00
|
|
|
mem=(struct memdebug *)(realloc)(mem, size);
|
2001-10-17 08:33:35 -04:00
|
|
|
if(logfile)
|
2004-02-16 11:23:19 -05:00
|
|
|
fprintf(logfile, "MEM %s:%d realloc(0x%x, %d) = %p\n",
|
2002-02-28 07:37:05 -05:00
|
|
|
source, line, ptr, wantedsize, mem?mem->mem:NULL);
|
|
|
|
|
|
|
|
if(mem) {
|
|
|
|
mem->size = wantedsize;
|
|
|
|
return mem->mem;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2000-10-09 07:11:43 -04:00
|
|
|
}
|
|
|
|
|
2001-08-14 04:31:27 -04:00
|
|
|
void curl_dofree(void *ptr, int line, const char *source)
|
2000-10-09 07:11:43 -04:00
|
|
|
{
|
2002-02-28 07:37:05 -05:00
|
|
|
struct memdebug *mem;
|
|
|
|
|
2003-12-16 09:08:53 -05:00
|
|
|
curlassert(ptr != NULL);
|
|
|
|
|
2002-02-28 07:37:05 -05:00
|
|
|
mem = (struct memdebug *)((char *)ptr - offsetof(struct memdebug, mem));
|
2000-11-17 10:31:45 -05:00
|
|
|
|
2002-02-28 07:37:05 -05:00
|
|
|
/* destroy */
|
|
|
|
memset(mem->mem, 0x13, mem->size);
|
|
|
|
|
2002-02-28 07:18:15 -05:00
|
|
|
/* free for real */
|
2002-02-28 07:37:05 -05:00
|
|
|
(free)(mem);
|
2000-11-17 10:31:45 -05:00
|
|
|
|
2001-10-17 08:33:35 -04:00
|
|
|
if(logfile)
|
|
|
|
fprintf(logfile, "MEM %s:%d free(%p)\n", source, line, ptr);
|
2000-10-09 07:11:43 -04:00
|
|
|
}
|
|
|
|
|
2004-01-29 08:56:45 -05:00
|
|
|
int curl_socket(int domain, int type, int protocol, int line,
|
|
|
|
const char *source)
|
2000-12-14 10:56:59 -05:00
|
|
|
{
|
|
|
|
int sockfd=(socket)(domain, type, protocol);
|
2003-11-13 02:33:51 -05:00
|
|
|
if(logfile && (sockfd!=-1))
|
2001-10-17 08:33:35 -04:00
|
|
|
fprintf(logfile, "FD %s:%d socket() = %d\n",
|
|
|
|
source, line, sockfd);
|
2000-12-14 10:56:59 -05:00
|
|
|
return sockfd;
|
|
|
|
}
|
|
|
|
|
2004-02-18 07:22:56 -05:00
|
|
|
int curl_accept(int s, void *saddr, void *saddrlen,
|
2001-08-14 04:31:27 -04:00
|
|
|
int line, const char *source)
|
2000-12-18 11:13:37 -05:00
|
|
|
{
|
2004-02-18 07:18:33 -05:00
|
|
|
struct sockaddr *addr = (struct sockaddr *)saddr;
|
2004-02-18 07:22:56 -05:00
|
|
|
socklen_t *addrlen = (socklen_t *)saddrlen;
|
2000-12-18 11:13:37 -05:00
|
|
|
int sockfd=(accept)(s, addr, addrlen);
|
2001-10-17 08:33:35 -04:00
|
|
|
if(logfile)
|
|
|
|
fprintf(logfile, "FD %s:%d accept() = %d\n",
|
|
|
|
source, line, sockfd);
|
2000-12-18 11:13:37 -05:00
|
|
|
return sockfd;
|
|
|
|
}
|
|
|
|
|
2000-12-14 10:56:59 -05:00
|
|
|
/* this is our own defined way to close sockets on *ALL* platforms */
|
2004-01-29 08:56:45 -05:00
|
|
|
int curl_sclose(int sockfd, int line, const char *source)
|
2000-12-14 10:56:59 -05:00
|
|
|
{
|
|
|
|
int res=sclose(sockfd);
|
2001-10-17 08:33:35 -04:00
|
|
|
if(logfile)
|
|
|
|
fprintf(logfile, "FD %s:%d sclose(%d)\n",
|
|
|
|
source, line, sockfd);
|
2001-01-05 05:11:41 -05:00
|
|
|
return res;
|
2000-12-14 10:56:59 -05:00
|
|
|
}
|
|
|
|
|
2001-08-14 04:31:27 -04:00
|
|
|
FILE *curl_fopen(const char *file, const char *mode,
|
|
|
|
int line, const char *source)
|
2000-12-19 08:23:54 -05:00
|
|
|
{
|
|
|
|
FILE *res=(fopen)(file, mode);
|
2001-10-17 08:33:35 -04:00
|
|
|
if(logfile)
|
2004-02-26 09:52:51 -05:00
|
|
|
fprintf(logfile, "FILE %s:%d fopen(\"%s\",\"%s\") = %p\n",
|
|
|
|
source, line, file, mode, res);
|
2000-12-19 08:23:54 -05:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2001-08-14 04:31:27 -04:00
|
|
|
int curl_fclose(FILE *file, int line, const char *source)
|
2000-12-19 08:23:54 -05:00
|
|
|
{
|
2002-03-08 10:31:44 -05:00
|
|
|
int res;
|
|
|
|
|
2003-12-16 09:08:53 -05:00
|
|
|
curlassert(file != NULL);
|
2002-03-08 10:31:44 -05:00
|
|
|
|
|
|
|
res=(fclose)(file);
|
2001-10-17 08:33:35 -04:00
|
|
|
if(logfile)
|
|
|
|
fprintf(logfile, "FILE %s:%d fclose(%p)\n",
|
|
|
|
source, line, file);
|
2000-12-19 08:23:54 -05:00
|
|
|
return res;
|
|
|
|
}
|
2002-02-20 08:46:53 -05:00
|
|
|
#else
|
|
|
|
#ifdef VMS
|
|
|
|
int VOID_VAR_MEMDEBUG;
|
2004-02-20 11:22:47 -05:00
|
|
|
#else
|
|
|
|
/* we provide a fake do-nothing function here to avoid compiler warnings */
|
|
|
|
void curl_memdebug(void) {}
|
|
|
|
#endif /* VMS */
|
2003-06-26 07:22:12 -04:00
|
|
|
#endif /* CURLDEBUG */
|