php-src/Zend/zend_alloc.c

770 lines
21 KiB
C
Raw Normal View History

1999-04-07 18:10:10 +00:00
/*
+----------------------------------------------------------------------+
| Zend Engine |
+----------------------------------------------------------------------+
2002-01-06 15:21:36 +00:00
| Copyright (c) 1998-2002 Zend Technologies Ltd. (http://www.zend.com) |
1999-04-07 18:10:10 +00:00
+----------------------------------------------------------------------+
2001-12-11 15:16:21 +00:00
| This source file is subject to version 2.00 of the Zend license, |
1999-07-16 14:58:16 +00:00
| that is bundled with this package in the file LICENSE, and is |
| available at through the world-wide-web at |
2001-12-11 15:16:21 +00:00
| http://www.zend.com/license/2_00.txt. |
1999-07-16 14:58:16 +00:00
| If you did not receive a copy of the Zend license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@zend.com so we can mail you a copy immediately. |
1999-04-07 18:10:10 +00:00
+----------------------------------------------------------------------+
| Authors: Andi Gutmans <andi@zend.com> |
| Zeev Suraski <zeev@zend.com> |
+----------------------------------------------------------------------+
*/
1999-07-16 14:58:16 +00:00
1999-04-07 18:10:10 +00:00
#include <stdlib.h>
#include "zend.h"
#include "zend_alloc.h"
#include "zend_globals.h"
#include "zend_fast_cache.h"
#ifdef HAVE_SIGNAL_H
# include <signal.h>
1999-07-09 11:19:38 +00:00
#endif
#ifdef HAVE_UNISTD_H
# include <unistd.h>
1999-07-09 11:19:38 +00:00
#endif
1999-04-07 18:10:10 +00:00
#ifndef ZTS
ZEND_API zend_alloc_globals alloc_globals;
1999-04-07 18:10:10 +00:00
#endif
#define ZEND_DISABLE_MEMORY_CACHE 0
#ifdef ZEND_WIN32
#define ZEND_DO_MALLOC(size) (AG(memory_heap) ? HeapAlloc(AG(memory_heap), HEAP_NO_SERIALIZE, size) : malloc(size))
#define ZEND_DO_FREE(ptr) (AG(memory_heap) ? HeapFree(AG(memory_heap), HEAP_NO_SERIALIZE, ptr) : free(ptr))
#define ZEND_DO_REALLOC(ptr, size) (AG(memory_heap) ? HeapReAlloc(AG(memory_heap), HEAP_NO_SERIALIZE, ptr, size) : realloc(ptr, size))
#else
#define ZEND_DO_MALLOC(size) malloc(size)
2001-08-03 08:15:16 +00:00
#define ZEND_DO_FREE(ptr) free(ptr)
#define ZEND_DO_REALLOC(ptr, size) realloc(ptr, size)
#endif
1999-04-07 18:10:10 +00:00
#if ZEND_DEBUG
# define END_MAGIC_SIZE sizeof(long)
static long mem_block_end_magic = MEM_BLOCK_END_MAGIC;
1999-04-07 18:10:10 +00:00
#else
# define END_MAGIC_SIZE 0
#endif
# if MEMORY_LIMIT
# if ZEND_DEBUG
2000-06-09 17:51:37 +00:00
#define CHECK_MEMORY_LIMIT(s, rs) _CHECK_MEMORY_LIMIT(s, rs, __zend_filename, __zend_lineno)
1999-04-07 18:10:10 +00:00
# else
2001-08-11 15:56:40 +00:00
#define CHECK_MEMORY_LIMIT(s, rs) _CHECK_MEMORY_LIMIT(s, rs, NULL, 0)
1999-04-07 18:10:10 +00:00
# endif
2000-06-09 17:51:37 +00:00
#define _CHECK_MEMORY_LIMIT(s, rs, file, lineno) { AG(allocated_memory) += rs;\
1999-04-10 14:44:35 +00:00
if (AG(memory_limit)<AG(allocated_memory)) {\
2000-08-19 16:35:02 +00:00
if ((AG(memory_limit)+1048576)<AG(allocated_memory)) { \
/* failed to handle this gracefully, exit() */ \
exit(1); \
} \
if (!AG(memory_exhausted)) { \
if (!file) { \
2001-08-11 15:56:40 +00:00
zend_error(E_ERROR,"Allowed memory size of %d bytes exhausted (tried to allocate %d bytes)", AG(memory_limit), s); \
2000-08-19 16:35:02 +00:00
} else { \
zend_error(E_ERROR,"Allowed memory size of %d bytes exhausted at %s:%d (tried to allocate %d bytes)", AG(memory_limit), file, lineno, s); \
} \
AG(memory_exhausted)=1; \
} \
1999-04-07 18:10:10 +00:00
} \
}
# endif
#ifndef CHECK_MEMORY_LIMIT
2000-06-09 17:51:37 +00:00
#define CHECK_MEMORY_LIMIT(s, rs)
1999-04-07 18:10:10 +00:00
#endif
#define REMOVE_POINTER_FROM_LIST(p) \
if (!p->persistent && p==AG(head)) { \
AG(head) = p->pNext; \
} else if (p->persistent && p==AG(phead)) { \
AG(phead) = p->pNext; \
} else { \
p->pLast->pNext = p->pNext; \
} \
if (p->pNext) { \
p->pNext->pLast = p->pLast; \
}
#define ADD_POINTER_TO_LIST(p) \
if (p->persistent) { \
p->pNext = AG(phead); \
if (AG(phead)) { \
AG(phead)->pLast = p; \
} \
AG(phead) = p; \
} else { \
p->pNext = AG(head); \
if (AG(head)) { \
AG(head)->pLast = p; \
} \
AG(head) = p; \
} \
1999-12-26 20:45:42 +00:00
p->pLast = (zend_mem_header *) NULL;
1999-04-07 18:10:10 +00:00
2001-04-17 15:19:14 +00:00
#define DECLARE_CACHE_VARS() \
unsigned int real_size; \
2001-04-17 15:19:14 +00:00
unsigned int cache_index
1999-04-07 18:10:10 +00:00
2000-06-14 19:10:30 +00:00
#define REAL_SIZE(size) ((size+7) & ~0x7)
#define CALCULATE_REAL_SIZE_AND_CACHE_INDEX(size) \
real_size = REAL_SIZE(size); \
cache_index = real_size >> 3;
#define SIZE real_size
#define CACHE_INDEX cache_index
1999-08-28 10:18:54 +00:00
ZEND_API void *_emalloc(size_t size ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC)
1999-04-07 18:10:10 +00:00
{
1999-12-26 20:45:42 +00:00
zend_mem_header *p;
2001-04-17 15:19:14 +00:00
DECLARE_CACHE_VARS();
TSRMLS_FETCH();
1999-04-07 18:10:10 +00:00
CALCULATE_REAL_SIZE_AND_CACHE_INDEX(size);
if (!ZEND_DISABLE_MEMORY_CACHE && (CACHE_INDEX < MAX_CACHED_MEMORY) && (AG(cache_count)[CACHE_INDEX] > 0)) {
p = AG(cache)[CACHE_INDEX][--AG(cache_count)[CACHE_INDEX]];
1999-04-07 18:10:10 +00:00
#if ZEND_DEBUG
1999-08-27 19:17:19 +00:00
p->filename = __zend_filename;
p->lineno = __zend_lineno;
1999-08-28 10:18:54 +00:00
p->orig_filename = __zend_orig_filename;
p->orig_lineno = __zend_orig_lineno;
1999-04-07 18:10:10 +00:00
p->magic = MEM_BLOCK_START_MAGIC;
p->reported = 0;
/* Setting the thread id should not be necessary, because we fetched this block
* from this thread's cache
*/
AG(cache_stats)[CACHE_INDEX][1]++;
memcpy((((char *) p) + sizeof(zend_mem_header) + MEM_HEADER_PADDING + size), &mem_block_end_magic, sizeof(long));
1999-04-07 18:10:10 +00:00
#endif
p->persistent = 0;
p->cached = 0;
p->size = size;
return (void *)((char *)p + sizeof(zend_mem_header) + MEM_HEADER_PADDING);
1999-04-07 18:10:10 +00:00
} else {
1999-12-27 16:42:59 +00:00
#if ZEND_DEBUG
if (CACHE_INDEX<MAX_CACHED_MEMORY) {
AG(cache_stats)[CACHE_INDEX][0]++;
1999-12-27 16:42:59 +00:00
}
#endif
p = (zend_mem_header *) ZEND_DO_MALLOC(sizeof(zend_mem_header) + MEM_HEADER_PADDING + SIZE + END_MAGIC_SIZE);
1999-04-07 18:10:10 +00:00
}
HANDLE_BLOCK_INTERRUPTIONS();
1999-04-07 18:10:10 +00:00
if (!p) {
fprintf(stderr,"FATAL: emalloc(): Unable to allocate %ld bytes\n", (long) size);
#if ZEND_DEBUG && defined(HAVE_KILL) && defined(HAVE_GETPID)
kill(getpid(), SIGSEGV);
#else
1999-04-07 18:10:10 +00:00
exit(1);
#endif
1999-04-07 18:10:10 +00:00
HANDLE_UNBLOCK_INTERRUPTIONS();
return (void *)p;
}
p->persistent = p->cached = 0;
ADD_POINTER_TO_LIST(p);
p->size = size; /* Save real size for correct cache output */
1999-04-07 18:10:10 +00:00
#if ZEND_DEBUG
1999-08-27 19:17:19 +00:00
p->filename = __zend_filename;
p->lineno = __zend_lineno;
1999-08-28 10:18:54 +00:00
p->orig_filename = __zend_orig_filename;
p->orig_lineno = __zend_orig_lineno;
1999-04-07 18:10:10 +00:00
p->magic = MEM_BLOCK_START_MAGIC;
p->reported = 0;
# ifdef ZTS
p->thread_id = tsrm_thread_id();
# endif
memcpy((((char *) p) + sizeof(zend_mem_header) + MEM_HEADER_PADDING + size), &mem_block_end_magic, sizeof(long));
1999-04-07 18:10:10 +00:00
#endif
#if MEMORY_LIMIT
2000-06-09 17:51:37 +00:00
CHECK_MEMORY_LIMIT(size, SIZE);
2001-05-17 11:22:49 +00:00
if (AG(allocated_memory) > AG(allocated_memory_peak)) {
2001-05-16 15:02:30 +00:00
AG(allocated_memory_peak) = AG(allocated_memory);
}
2001-05-11 18:16:41 +00:00
#endif
1999-04-07 18:10:10 +00:00
HANDLE_UNBLOCK_INTERRUPTIONS();
return (void *)((char *)p + sizeof(zend_mem_header) + MEM_HEADER_PADDING);
1999-04-07 18:10:10 +00:00
}
1999-08-28 10:18:54 +00:00
ZEND_API void _efree(void *ptr ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC)
1999-04-07 18:10:10 +00:00
{
zend_mem_header *p = (zend_mem_header *) ((char *)ptr - sizeof(zend_mem_header) - MEM_HEADER_PADDING);
2001-04-17 15:19:14 +00:00
DECLARE_CACHE_VARS();
TSRMLS_FETCH();
1999-04-07 18:10:10 +00:00
#if defined(ZTS) && TSRM_DEBUG
if (p->thread_id != tsrm_thread_id()) {
tsrm_error(TSRM_ERROR_LEVEL_ERROR, "Memory block allocated at %s:(%d) on thread %x freed at %s:(%d) on thread %x, ignoring",
p->filename, p->lineno, p->thread_id,
__zend_filename, __zend_lineno, tsrm_thread_id());
return;
}
#endif
CALCULATE_REAL_SIZE_AND_CACHE_INDEX(p->size);
1999-04-07 18:10:10 +00:00
#if ZEND_DEBUG
1999-08-28 10:18:54 +00:00
if (!_mem_block_check(ptr, 1 ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC)) {
1999-05-11 21:38:39 +00:00
return;
}
memset(ptr, 0x5a, p->size);
1999-04-07 18:10:10 +00:00
#endif
if (!ZEND_DISABLE_MEMORY_CACHE
&& !p->persistent && (CACHE_INDEX < MAX_CACHED_MEMORY) && (AG(cache_count)[CACHE_INDEX] < MAX_CACHED_ENTRIES)) {
AG(cache)[CACHE_INDEX][AG(cache_count)[CACHE_INDEX]++] = p;
1999-04-07 18:10:10 +00:00
p->cached = 1;
#if ZEND_DEBUG
p->magic = MEM_BLOCK_CACHED_MAGIC;
#endif
return;
}
HANDLE_BLOCK_INTERRUPTIONS();
REMOVE_POINTER_FROM_LIST(p);
#if MEMORY_LIMIT
AG(allocated_memory) -= SIZE;
1999-04-07 18:10:10 +00:00
#endif
ZEND_DO_FREE(p);
1999-04-07 18:10:10 +00:00
HANDLE_UNBLOCK_INTERRUPTIONS();
}
1999-08-28 10:18:54 +00:00
ZEND_API void *_ecalloc(size_t nmemb, size_t size ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC)
1999-04-07 18:10:10 +00:00
{
void *p;
2001-04-28 15:59:39 +00:00
int final_size = size*nmemb;
1999-04-07 18:10:10 +00:00
HANDLE_BLOCK_INTERRUPTIONS();
1999-08-28 10:18:54 +00:00
p = _emalloc(final_size ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC);
1999-04-07 18:10:10 +00:00
if (!p) {
HANDLE_UNBLOCK_INTERRUPTIONS();
return (void *) p;
}
2001-04-28 15:59:39 +00:00
memset(p, 0, final_size);
1999-04-07 18:10:10 +00:00
HANDLE_UNBLOCK_INTERRUPTIONS();
return p;
}
1999-08-28 10:18:54 +00:00
ZEND_API void *_erealloc(void *ptr, size_t size, int allow_failure ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC)
1999-04-07 18:10:10 +00:00
{
zend_mem_header *p;
zend_mem_header *orig;
2001-04-17 15:19:14 +00:00
DECLARE_CACHE_VARS();
TSRMLS_FETCH();
1999-04-07 18:10:10 +00:00
if (!ptr) {
1999-08-28 10:18:54 +00:00
return _emalloc(size ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC);
1999-04-07 18:10:10 +00:00
}
p = orig = (zend_mem_header *) ((char *)ptr-sizeof(zend_mem_header)-MEM_HEADER_PADDING);
#if defined(ZTS) && TSRM_DEBUG
if (p->thread_id != tsrm_thread_id()) {
void *new_p;
tsrm_error(TSRM_ERROR_LEVEL_ERROR, "Memory block allocated at %s:(%d) on thread %x reallocated at %s:(%d) on thread %x, duplicating",
p->filename, p->lineno, p->thread_id,
__zend_filename, __zend_lineno, tsrm_thread_id());
new_p = _emalloc(size ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC);
memcpy(new_p, ptr, p->size);
return new_p;
}
#endif
CALCULATE_REAL_SIZE_AND_CACHE_INDEX(size);
1999-04-07 18:10:10 +00:00
HANDLE_BLOCK_INTERRUPTIONS();
REMOVE_POINTER_FROM_LIST(p);
2001-08-11 15:56:40 +00:00
p = (zend_mem_header *) ZEND_DO_REALLOC(p, sizeof(zend_mem_header)+MEM_HEADER_PADDING+SIZE+END_MAGIC_SIZE);
1999-04-07 18:10:10 +00:00
if (!p) {
if (!allow_failure) {
fprintf(stderr,"FATAL: erealloc(): Unable to allocate %ld bytes\n", (long) size);
1999-07-09 11:19:38 +00:00
#if ZEND_DEBUG && HAVE_KILL && HAVE_GETPID
kill(getpid(), SIGSEGV);
#else
exit(1);
#endif
}
1999-04-07 18:10:10 +00:00
ADD_POINTER_TO_LIST(orig);
HANDLE_UNBLOCK_INTERRUPTIONS();
1999-04-07 18:10:10 +00:00
return (void *)NULL;
}
ADD_POINTER_TO_LIST(p);
#if ZEND_DEBUG
1999-08-27 19:17:19 +00:00
p->filename = __zend_filename;
p->lineno = __zend_lineno;
1999-04-07 18:10:10 +00:00
p->magic = MEM_BLOCK_START_MAGIC;
memcpy((((char *) p) + sizeof(zend_mem_header) + MEM_HEADER_PADDING + size), &mem_block_end_magic, sizeof(long));
1999-04-07 18:10:10 +00:00
#endif
#if MEMORY_LIMIT
2000-06-09 17:51:37 +00:00
CHECK_MEMORY_LIMIT(size - p->size, SIZE - REAL_SIZE(p->size));
2001-05-16 15:02:30 +00:00
if (AG(allocated_memory) > AG(allocated_memory_peak)) {
AG(allocated_memory_peak) = AG(allocated_memory);
2001-05-17 12:51:24 +00:00
}
2001-05-11 18:16:41 +00:00
#endif
1999-04-07 18:10:10 +00:00
p->size = size;
HANDLE_UNBLOCK_INTERRUPTIONS();
return (void *)((char *)p+sizeof(zend_mem_header)+MEM_HEADER_PADDING);
1999-04-07 18:10:10 +00:00
}
1999-08-28 10:18:54 +00:00
ZEND_API char *_estrdup(const char *s ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC)
1999-04-07 18:10:10 +00:00
{
int length;
char *p;
length = strlen(s)+1;
HANDLE_BLOCK_INTERRUPTIONS();
1999-08-28 10:18:54 +00:00
p = (char *) _emalloc(length ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC);
1999-04-07 18:10:10 +00:00
if (!p) {
HANDLE_UNBLOCK_INTERRUPTIONS();
return (char *)NULL;
}
HANDLE_UNBLOCK_INTERRUPTIONS();
2001-04-28 15:59:39 +00:00
memcpy(p, s, length);
1999-04-07 18:10:10 +00:00
return p;
}
1999-08-28 10:18:54 +00:00
ZEND_API char *_estrndup(const char *s, uint length ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC)
1999-04-07 18:10:10 +00:00
{
char *p;
HANDLE_BLOCK_INTERRUPTIONS();
1999-08-28 10:18:54 +00:00
p = (char *) _emalloc(length+1 ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC);
1999-04-07 18:10:10 +00:00
if (!p) {
HANDLE_UNBLOCK_INTERRUPTIONS();
return (char *)NULL;
}
HANDLE_UNBLOCK_INTERRUPTIONS();
2001-04-28 15:59:39 +00:00
memcpy(p, s, length);
p[length] = 0;
1999-04-07 18:10:10 +00:00
return p;
}
ZEND_API char *zend_strndup(const char *s, uint length)
{
char *p;
p = (char *) malloc(length+1);
if (!p) {
return (char *)NULL;
}
if (length) {
2001-04-28 15:59:39 +00:00
memcpy(p, s, length);
1999-04-07 18:10:10 +00:00
}
2001-04-28 15:59:39 +00:00
p[length] = 0;
1999-04-07 18:10:10 +00:00
return p;
}
ZEND_API int zend_set_memory_limit(unsigned int memory_limit)
1999-04-10 14:44:35 +00:00
{
#if MEMORY_LIMIT
TSRMLS_FETCH();
1999-04-10 14:44:35 +00:00
AG(memory_limit) = memory_limit;
return SUCCESS;
#else
return FAILURE;
#endif
}
ZEND_API void start_memory_manager(TSRMLS_D)
1999-04-07 18:10:10 +00:00
{
2001-06-29 00:36:34 +00:00
#if 0
2000-05-18 14:51:19 +00:00
#ifndef ZTS
int i, j;
void *cached_entries[MAX_CACHED_MEMORY][MAX_CACHED_ENTRIES];
2001-06-29 00:36:34 +00:00
#endif
2000-05-18 12:07:15 +00:00
#endif
1999-04-07 18:10:10 +00:00
AG(phead) = AG(head) = NULL;
#if MEMORY_LIMIT
2001-08-17 14:53:55 +00:00
AG(memory_limit) = 1<<30; /* ridiculous limit, effectively no limit */
2001-04-28 15:59:39 +00:00
AG(allocated_memory) = 0;
AG(memory_exhausted) = 0;
2001-05-16 15:02:30 +00:00
AG(allocated_memory_peak) = 0;
2001-05-11 18:16:41 +00:00
#endif
1999-04-07 18:10:10 +00:00
memset(AG(fast_cache_list_head), 0, sizeof(AG(fast_cache_list_head)));
memset(AG(cache_count), 0, sizeof(AG(cache_count)));
#ifdef ZEND_WIN32
AG(memory_heap) = HeapCreate(HEAP_NO_SERIALIZE, 256*1024, 0);
#endif
#if 0
2000-05-18 14:51:19 +00:00
#ifndef ZTS
/* Initialize cache, to prevent fragmentation */
2000-05-18 14:51:19 +00:00
/* We can't do this in ZTS mode, because calling emalloc() from within start_memory_manager()
* will yield an endless recursion calling to alloc_globals_ctor()
*/
for (i=1; i<MAX_CACHED_MEMORY; i++) {
for (j=0; j<PRE_INIT_CACHE_ENTRIES; j++) {
2000-06-09 16:08:30 +00:00
cached_entries[i][j] = emalloc(8*i);
}
}
for (i=1; i<MAX_CACHED_MEMORY; i++) {
for (j=0; j<PRE_INIT_CACHE_ENTRIES; j++) {
efree(cached_entries[i][j]);
}
}
2000-05-18 11:25:03 +00:00
#endif
#endif
#if ZEND_DEBUG
memset(AG(cache_stats), 0, sizeof(AG(cache_stats)));
memset(AG(fast_cache_stats), 0, sizeof(AG(fast_cache_stats)));
#endif
1999-04-07 18:10:10 +00:00
}
ZEND_API void shutdown_memory_manager(int silent, int clean_cache)
{
1999-12-26 20:45:42 +00:00
zend_mem_header *p, *t;
2000-06-24 22:11:11 +00:00
unsigned int fci, i, j;
1999-08-28 21:43:24 +00:00
#if ZEND_DEBUG
2001-04-28 15:59:39 +00:00
int had_leaks = 0;
#endif
zend_fast_cache_list_entry *fast_cache_list_entry, *next_fast_cache_list_entry;
TSRMLS_FETCH();
1999-04-07 18:10:10 +00:00
#if defined(ZEND_WIN32) && !ZEND_DEBUG
2001-08-03 16:08:01 +00:00
if (clean_cache && AG(memory_heap)) {
HeapDestroy(AG(memory_heap));
return;
}
#endif
for (fci=0; fci<MAX_FAST_CACHE_TYPES; fci++) {
fast_cache_list_entry = AG(fast_cache_list_head)[fci];
while (fast_cache_list_entry) {
next_fast_cache_list_entry = fast_cache_list_entry->next;
efree(fast_cache_list_entry);
fast_cache_list_entry = next_fast_cache_list_entry;
}
AG(fast_cache_list_head)[fci] = NULL;
}
if (1 || clean_cache) {
zend_mem_header *ptr;
for (i=1; i<MAX_CACHED_MEMORY; i++) {
for (j=0; j<AG(cache_count)[i]; j++) {
2001-06-30 07:58:34 +00:00
ptr = (zend_mem_header *) AG(cache)[i][j];
2001-06-29 00:36:34 +00:00
#if MEMORY_LIMIT
AG(allocated_memory) -= REAL_SIZE(ptr->size);
#endif
REMOVE_POINTER_FROM_LIST(ptr);
ZEND_DO_FREE(ptr);
}
AG(cache_count)[i] = 0;
}
}
2001-04-28 15:59:39 +00:00
p = AG(head);
t = AG(head);
1999-04-07 18:10:10 +00:00
while (t) {
if (!t->cached) {
1999-04-07 18:10:10 +00:00
#if ZEND_DEBUG
if (!t->cached && !t->reported) {
1999-12-26 20:45:42 +00:00
zend_mem_header *iterator;
int total_leak=0, total_leak_count=0;
2001-04-28 15:59:39 +00:00
had_leaks = 1;
if (!silent) {
zend_message_dispatcher(ZMSG_MEMORY_LEAK_DETECTED, t);
}
t->reported = 1;
for (iterator=t->pNext; iterator; iterator=iterator->pNext) {
1999-07-10 22:50:44 +00:00
if (!iterator->cached
&& iterator->filename==t->filename
&& iterator->lineno==t->lineno) {
total_leak += iterator->size;
total_leak_count++;
iterator->reported = 1;
}
1999-04-07 18:10:10 +00:00
}
if (!silent && total_leak_count>0) {
zend_message_dispatcher(ZMSG_MEMORY_LEAK_REPEATED, (void *) (long) (total_leak_count));
}
1999-04-07 18:10:10 +00:00
}
#endif
2000-08-19 16:51:30 +00:00
#if MEMORY_LIMIT
2000-08-19 16:35:02 +00:00
AG(allocated_memory) -= t->size;
2000-08-19 16:51:30 +00:00
#endif
1999-04-07 18:10:10 +00:00
p = t->pNext;
REMOVE_POINTER_FROM_LIST(t);
ZEND_DO_FREE(t);
1999-04-07 18:10:10 +00:00
t = p;
} else {
t = t->pNext;
}
}
1999-12-27 16:42:59 +00:00
2000-08-19 16:51:30 +00:00
#if MEMORY_LIMIT
2000-08-19 16:35:02 +00:00
AG(memory_exhausted)=0;
AG(allocated_memory_peak) = 0;
2000-08-19 16:51:30 +00:00
#endif
2001-05-16 15:02:30 +00:00
#if (ZEND_DEBUG)
1999-12-27 16:42:59 +00:00
do {
zval display_memory_cache_stats;
int i, j;
1999-12-27 17:24:33 +00:00
if (clean_cache) {
/* we're shutting down completely, don't even touch the INI subsystem */
break;
}
if (zend_get_configuration_directive("display_memory_cache_stats", sizeof("display_memory_cache_stats"), &display_memory_cache_stats)==FAILURE) {
1999-12-27 16:42:59 +00:00
break;
}
if (!atoi(display_memory_cache_stats.value.str.val)) {
break;
}
fprintf(stderr, "Memory cache statistics\n"
"-----------------------\n\n"
1999-12-28 20:33:02 +00:00
"[zval, %2ld]\t\t%d / %d (%.2f%%)\n"
"[hash, %2ld]\t\t%d / %d (%.2f%%)\n",
(long) sizeof(zval),
AG(fast_cache_stats)[ZVAL_CACHE_LIST][1], AG(fast_cache_stats)[ZVAL_CACHE_LIST][0]+AG(fast_cache_stats)[ZVAL_CACHE_LIST][1],
((double) AG(fast_cache_stats)[ZVAL_CACHE_LIST][1] / (AG(fast_cache_stats)[ZVAL_CACHE_LIST][0]+AG(fast_cache_stats)[ZVAL_CACHE_LIST][1]))*100,
(long) sizeof(HashTable),
AG(fast_cache_stats)[HASHTABLE_CACHE_LIST][1], AG(fast_cache_stats)[HASHTABLE_CACHE_LIST][0]+AG(fast_cache_stats)[HASHTABLE_CACHE_LIST][1],
((double) AG(fast_cache_stats)[HASHTABLE_CACHE_LIST][1] / (AG(fast_cache_stats)[HASHTABLE_CACHE_LIST][0]+AG(fast_cache_stats)[HASHTABLE_CACHE_LIST][1]))*100);
1999-12-27 16:42:59 +00:00
for (i=0; i<MAX_CACHED_MEMORY; i+=2) {
fprintf(stderr, "[%2d, %2d]\t\t", i, i+1);
1999-12-27 16:42:59 +00:00
for (j=0; j<2; j++) {
fprintf(stderr, "%d / %d (%.2f%%)\t\t",
AG(cache_stats)[i+j][1], AG(cache_stats)[i+j][0]+AG(cache_stats)[i+j][1],
((double) AG(cache_stats)[i+j][1] / (AG(cache_stats)[i+j][0]+AG(cache_stats)[i+j][1]))*100);
}
fprintf(stderr, "\n");
}
} while (0);
#if defined(ZEND_WIN32) && ZEND_DEBUG
if (clean_cache && AG(memory_heap)) {
HeapDestroy(AG(memory_heap));
}
#endif
1999-12-27 16:42:59 +00:00
#endif
1999-04-07 18:10:10 +00:00
}
#if ZEND_DEBUG
1999-05-11 21:38:39 +00:00
void zend_debug_alloc_output(char *format, ...)
{
char output_buf[256];
va_list args;
va_start(args, format);
vsprintf(output_buf, format, args);
va_end(args);
2000-02-11 15:59:30 +00:00
#ifdef ZEND_WIN32
1999-05-11 21:38:39 +00:00
OutputDebugString(output_buf);
#else
2000-10-04 19:29:28 +00:00
fprintf(stderr, "%s", output_buf);
1999-05-11 21:38:39 +00:00
#endif
}
1999-08-28 10:18:54 +00:00
ZEND_API int _mem_block_check(void *ptr, int silent ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC)
1999-04-07 18:10:10 +00:00
{
zend_mem_header *p = (zend_mem_header *) ((char *)ptr - sizeof(zend_mem_header) - MEM_HEADER_PADDING);
1999-04-07 18:10:10 +00:00
int no_cache_notice=0;
int valid_beginning=1;
int had_problems=0;
long end_magic;
1999-04-07 18:10:10 +00:00
if (silent==2) {
2001-04-28 15:59:39 +00:00
silent = 1;
no_cache_notice = 1;
1999-04-07 18:10:10 +00:00
}
if (silent==3) {
2001-04-28 15:59:39 +00:00
silent = 0;
no_cache_notice = 1;
1999-04-07 18:10:10 +00:00
}
if (!silent) {
1999-05-31 18:39:29 +00:00
zend_message_dispatcher(ZMSG_LOG_SCRIPT_NAME, NULL);
1999-05-11 21:38:39 +00:00
zend_debug_alloc_output("---------------------------------------\n");
1999-08-27 19:17:19 +00:00
zend_debug_alloc_output("%s(%d) : Block 0x%0.8lX status:\n" ZEND_FILE_LINE_RELAY_CC, (long) p);
1999-08-28 10:18:54 +00:00
if (__zend_orig_filename) {
zend_debug_alloc_output("%s(%d) : Actual location (location was relayed)\n" ZEND_FILE_LINE_ORIG_RELAY_CC);
}
1999-05-11 21:38:39 +00:00
zend_debug_alloc_output("%10s\t","Beginning: ");
1999-04-07 18:10:10 +00:00
}
switch (p->magic) {
case MEM_BLOCK_START_MAGIC:
if (!silent) {
1999-05-11 21:38:39 +00:00
zend_debug_alloc_output("OK (allocated on %s:%d, %d bytes)\n", p->filename, p->lineno, p->size);
1999-04-07 18:10:10 +00:00
}
break; /* ok */
case MEM_BLOCK_FREED_MAGIC:
if (!silent) {
1999-05-11 21:38:39 +00:00
zend_debug_alloc_output("Freed\n");
2001-04-28 15:59:39 +00:00
had_problems = 1;
1999-04-07 18:10:10 +00:00
} else {
1999-08-28 10:18:54 +00:00
return _mem_block_check(ptr, 0 ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC);
1999-04-07 18:10:10 +00:00
}
break;
case MEM_BLOCK_CACHED_MAGIC:
if (!silent) {
if (!no_cache_notice) {
1999-05-11 21:38:39 +00:00
zend_debug_alloc_output("Cached (allocated on %s:%d, %d bytes)\n", p->filename, p->lineno, p->size);
2001-04-28 15:59:39 +00:00
had_problems = 1;
1999-04-07 18:10:10 +00:00
}
} else {
if (!no_cache_notice) {
1999-08-28 10:18:54 +00:00
return _mem_block_check(ptr, 0 ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC);
1999-04-07 18:10:10 +00:00
}
}
break;
default:
if (!silent) {
1999-05-11 21:38:39 +00:00
zend_debug_alloc_output("Overrun (magic=0x%0.8lX, expected=0x%0.8lX)\n", p->magic, MEM_BLOCK_START_MAGIC);
1999-04-07 18:10:10 +00:00
} else {
1999-08-28 10:18:54 +00:00
return _mem_block_check(ptr, 0 ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC);
1999-04-07 18:10:10 +00:00
}
2001-04-28 15:59:39 +00:00
had_problems = 1;
valid_beginning = 0;
1999-04-07 18:10:10 +00:00
break;
}
memcpy(&end_magic, (((char *) p)+sizeof(zend_mem_header)+MEM_HEADER_PADDING+p->size), sizeof(long));
if (valid_beginning && (end_magic != MEM_BLOCK_END_MAGIC)) {
char *overflow_ptr, *magic_ptr=(char *) &mem_block_end_magic;
1999-04-07 18:10:10 +00:00
int overflows=0;
int i;
if (silent) {
1999-08-28 10:18:54 +00:00
return _mem_block_check(ptr, 0 ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC);
1999-04-07 18:10:10 +00:00
}
2001-04-28 15:59:39 +00:00
had_problems = 1;
overflow_ptr = (char *) &end_magic;
1999-04-07 18:10:10 +00:00
for (i=0; i<sizeof(long); i++) {
if (overflow_ptr[i]!=magic_ptr[i]) {
overflows++;
}
}
1999-05-11 21:38:39 +00:00
zend_debug_alloc_output("%10s\t", "End:");
zend_debug_alloc_output("Overflown (magic=0x%0.8lX instead of 0x%0.8lX)\n", end_magic, MEM_BLOCK_END_MAGIC);
1999-05-11 21:38:39 +00:00
zend_debug_alloc_output("%10s\t","");
1999-04-07 18:10:10 +00:00
if (overflows>=sizeof(long)) {
1999-05-11 21:38:39 +00:00
zend_debug_alloc_output("At least %d bytes overflown\n", sizeof(long));
1999-04-07 18:10:10 +00:00
} else {
1999-05-11 21:38:39 +00:00
zend_debug_alloc_output("%d byte(s) overflown\n", overflows);
1999-04-07 18:10:10 +00:00
}
} else if (!silent) {
1999-05-11 21:38:39 +00:00
zend_debug_alloc_output("%10s\t", "End:");
1999-04-07 18:10:10 +00:00
if (valid_beginning) {
1999-05-11 21:38:39 +00:00
zend_debug_alloc_output("OK\n");
1999-04-07 18:10:10 +00:00
} else {
1999-05-11 21:38:39 +00:00
zend_debug_alloc_output("Unknown\n");
1999-04-07 18:10:10 +00:00
}
}
if (had_problems) {
int foo = 5;
2001-04-28 15:59:39 +00:00
foo += 1;
}
1999-04-07 18:10:10 +00:00
if (!silent) {
1999-05-11 21:38:39 +00:00
zend_debug_alloc_output("---------------------------------------\n");
1999-04-07 18:10:10 +00:00
}
return ((!had_problems) ? 1 : 0);
}
1999-08-28 10:18:54 +00:00
ZEND_API void _full_mem_check(int silent ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC)
1999-04-07 18:10:10 +00:00
{
1999-12-26 20:45:42 +00:00
zend_mem_header *p;
1999-04-07 18:10:10 +00:00
int errors=0;
TSRMLS_FETCH();
p = AG(head);
1999-04-07 18:10:10 +00:00
1999-05-11 21:38:39 +00:00
zend_debug_alloc_output("------------------------------------------------\n");
1999-08-27 19:17:19 +00:00
zend_debug_alloc_output("Full Memory Check at %s:%d\n" ZEND_FILE_LINE_RELAY_CC);
1999-04-07 18:10:10 +00:00
while (p) {
if (!_mem_block_check((void *)((char *)p + sizeof(zend_mem_header) + MEM_HEADER_PADDING), (silent?2:3) ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC)) {
1999-04-07 18:10:10 +00:00
errors++;
}
p = p->pNext;
}
1999-08-27 19:17:19 +00:00
zend_debug_alloc_output("End of full memory check %s:%d (%d errors)\n" ZEND_FILE_LINE_RELAY_CC, errors);
1999-05-11 21:38:39 +00:00
zend_debug_alloc_output("------------------------------------------------\n");
1999-04-07 18:10:10 +00:00
}
#endif
2000-03-25 19:23:16 +00:00
ZEND_API int _persist_alloc(void *ptr ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC)
1999-04-07 18:10:10 +00:00
{
zend_mem_header *p = (zend_mem_header *) ((char *)ptr-sizeof(zend_mem_header)-MEM_HEADER_PADDING);
TSRMLS_FETCH();
1999-04-07 18:10:10 +00:00
#if ZEND_DEBUG
1999-08-28 10:18:54 +00:00
_mem_block_check(ptr, 1 ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC);
1999-04-07 18:10:10 +00:00
#endif
HANDLE_BLOCK_INTERRUPTIONS();
1999-04-07 18:10:10 +00:00
/* remove the block from the non persistent list */
REMOVE_POINTER_FROM_LIST(p);
p->persistent = 1;
/* add the block to the persistent list */
ADD_POINTER_TO_LIST(p);
HANDLE_UNBLOCK_INTERRUPTIONS();
return REAL_SIZE(p->size)+sizeof(zend_mem_header)+MEM_HEADER_PADDING;
1999-04-07 18:10:10 +00:00
}
1999-04-26 03:03:39 +00:00
1999-04-07 18:10:10 +00:00
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
*/