1999-04-08 02:10:10 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Copyright (c) 1998, 1999 Andi Gutmans, Zeev Suraski |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| This source file is subject to the Zend license, that is bundled |
|
|
|
|
| with this package in the file LICENSE. If you did not receive a |
|
|
|
|
| copy of the Zend license, please mail us at zend@zend.com so we can |
|
|
|
|
| send you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Andi Gutmans <andi@zend.com> |
|
|
|
|
| Zeev Suraski <zeev@zend.com> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "zend.h"
|
|
|
|
#include "zend_alloc.h"
|
|
|
|
#include "zend_globals.h"
|
|
|
|
|
|
|
|
#ifndef ZTS
|
|
|
|
static zend_alloc_globals alloc_globals;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#if ZEND_DEBUG
|
|
|
|
# define END_MAGIC_SIZE sizeof(long)
|
|
|
|
# define END_ALIGNMENT(size) (((size)%PLATFORM_ALIGNMENT)?(PLATFORM_ALIGNMENT-((size)%PLATFORM_ALIGNMENT)):0)
|
|
|
|
#else
|
|
|
|
# define END_MAGIC_SIZE 0
|
|
|
|
# define END_ALIGNMENT(size) 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
# if MEMORY_LIMIT
|
|
|
|
# if ZEND_DEBUG
|
|
|
|
#define CHECK_MEMORY_LIMIT(s) _CHECK_MEMORY_LIMIT(s,filename,lineno)
|
|
|
|
# else
|
|
|
|
#define CHECK_MEMORY_LIMIT(s) _CHECK_MEMORY_LIMIT(s,NULL,0)
|
|
|
|
# endif
|
|
|
|
|
|
|
|
#define _CHECK_MEMORY_LIMIT(s,file,lineno) { AG(allocated_memory) += (s);\
|
1999-04-10 22:44:35 +08:00
|
|
|
if (AG(memory_limit)<AG(allocated_memory)) {\
|
1999-04-08 02:10:10 +08:00
|
|
|
if (!file) { \
|
1999-04-10 22:44:35 +08:00
|
|
|
zend_error(E_ERROR,"Allowed memory size of %d bytes exhausted (tried to allocate %d bytes)", AG(memory_limit),s); \
|
1999-04-08 02:10:10 +08:00
|
|
|
} else { \
|
1999-04-10 22:44:35 +08:00
|
|
|
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); \
|
1999-04-08 02:10:10 +08:00
|
|
|
} \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
|
|
|
|
#ifndef CHECK_MEMORY_LIMIT
|
|
|
|
#define CHECK_MEMORY_LIMIT(s)
|
|
|
|
#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; \
|
|
|
|
} \
|
|
|
|
p->pLast = (mem_header *) NULL;
|
|
|
|
|
|
|
|
|
1999-04-23 11:32:33 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
#if ZEND_DEBUG
|
|
|
|
ZEND_API void *_emalloc(size_t size, char *filename, uint lineno)
|
|
|
|
#else
|
|
|
|
ZEND_API void *_emalloc(size_t size)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
mem_header *p;
|
1999-04-21 11:49:09 +08:00
|
|
|
ALS_FETCH();
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
HANDLE_BLOCK_INTERRUPTIONS();
|
|
|
|
|
|
|
|
if ((size < MAX_CACHED_MEMORY) && (AG(cache_count)[size] > 0)) {
|
|
|
|
p = AG(cache)[size][--AG(cache_count)[size]];
|
|
|
|
#if ZEND_DEBUG
|
|
|
|
p->filename = filename;
|
|
|
|
p->lineno = lineno;
|
|
|
|
p->magic = MEM_BLOCK_START_MAGIC;
|
|
|
|
#endif
|
|
|
|
HANDLE_UNBLOCK_INTERRUPTIONS();
|
|
|
|
p->persistent = 0;
|
|
|
|
p->cached = 0;
|
|
|
|
return (void *)((char *)p + sizeof(mem_header) + PLATFORM_PADDING);
|
|
|
|
} else {
|
|
|
|
p = (mem_header *) malloc(sizeof(mem_header) + size + PLATFORM_PADDING + END_ALIGNMENT(size) + END_MAGIC_SIZE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!p) {
|
|
|
|
fprintf(stderr,"FATAL: emalloc(): Unable to allocate %d bytes\n", size);
|
|
|
|
exit(1);
|
|
|
|
HANDLE_UNBLOCK_INTERRUPTIONS();
|
|
|
|
return (void *)p;
|
|
|
|
}
|
|
|
|
p->persistent = p->cached = 0;
|
|
|
|
ADD_POINTER_TO_LIST(p);
|
|
|
|
p->size = size;
|
|
|
|
#if ZEND_DEBUG
|
|
|
|
p->filename = filename;
|
|
|
|
p->lineno = lineno;
|
|
|
|
p->magic = MEM_BLOCK_START_MAGIC;
|
|
|
|
*((long *)(((char *) p) + sizeof(mem_header)+size+PLATFORM_PADDING+END_ALIGNMENT(size))) = MEM_BLOCK_END_MAGIC;
|
|
|
|
#endif
|
|
|
|
#if MEMORY_LIMIT
|
|
|
|
CHECK_MEMORY_LIMIT(size);
|
|
|
|
#endif
|
|
|
|
HANDLE_UNBLOCK_INTERRUPTIONS();
|
|
|
|
return (void *)((char *)p + sizeof(mem_header) + PLATFORM_PADDING);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#if ZEND_DEBUG
|
|
|
|
ZEND_API void _efree(void *ptr, char *filename, uint lineno)
|
|
|
|
#else
|
|
|
|
ZEND_API void _efree(void *ptr)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
mem_header *p = (mem_header *) ((char *)ptr - sizeof(mem_header) - PLATFORM_PADDING);
|
1999-04-21 11:49:09 +08:00
|
|
|
ALS_FETCH();
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
#if ZEND_DEBUG
|
1999-05-12 05:38:39 +08:00
|
|
|
if (!_mem_block_check(ptr, 1, filename, lineno)) {
|
|
|
|
return;
|
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
memset(ptr, 0x5a, p->size);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!p->persistent && (p->size < MAX_CACHED_MEMORY) && (AG(cache_count)[p->size] < MAX_CACHED_ENTRIES)) {
|
|
|
|
AG(cache)[p->size][AG(cache_count)[p->size]++] = p;
|
|
|
|
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) -= p->size;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
free(p);
|
|
|
|
HANDLE_UNBLOCK_INTERRUPTIONS();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#if ZEND_DEBUG
|
|
|
|
ZEND_API void *_ecalloc(size_t nmemb, size_t size, char *filename, uint lineno)
|
|
|
|
#else
|
|
|
|
ZEND_API void *_ecalloc(size_t nmemb, size_t size)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
void *p;
|
|
|
|
int final_size=size*nmemb;
|
|
|
|
|
|
|
|
HANDLE_BLOCK_INTERRUPTIONS();
|
|
|
|
#if ZEND_DEBUG
|
|
|
|
p = _emalloc(final_size,filename,lineno);
|
|
|
|
#else
|
|
|
|
p = emalloc(final_size);
|
|
|
|
#endif
|
|
|
|
if (!p) {
|
|
|
|
HANDLE_UNBLOCK_INTERRUPTIONS();
|
|
|
|
return (void *) p;
|
|
|
|
}
|
|
|
|
memset(p,(int)NULL,final_size);
|
|
|
|
HANDLE_UNBLOCK_INTERRUPTIONS();
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#if ZEND_DEBUG
|
|
|
|
ZEND_API void *_erealloc(void *ptr, size_t size, char *filename, uint lineno)
|
|
|
|
#else
|
|
|
|
ZEND_API void *_erealloc(void *ptr, size_t size)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
mem_header *p = (mem_header *) ((char *)ptr-sizeof(mem_header)-PLATFORM_PADDING);
|
|
|
|
mem_header *orig = p;
|
1999-04-21 11:49:09 +08:00
|
|
|
ALS_FETCH();
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
if (!ptr) {
|
|
|
|
#if ZEND_DEBUG
|
|
|
|
return _emalloc(size, filename, lineno);
|
|
|
|
#else
|
|
|
|
return emalloc(size);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
HANDLE_BLOCK_INTERRUPTIONS();
|
|
|
|
REMOVE_POINTER_FROM_LIST(p);
|
|
|
|
p = (mem_header *) realloc(p,sizeof(mem_header)+size+PLATFORM_PADDING+END_ALIGNMENT(size)+END_MAGIC_SIZE);
|
|
|
|
if (!p) {
|
|
|
|
fprintf(stderr,"FATAL: erealloc(): Unable to allocate %d bytes\n", size);
|
|
|
|
HANDLE_UNBLOCK_INTERRUPTIONS();
|
|
|
|
zend_bailout();
|
|
|
|
ADD_POINTER_TO_LIST(orig);
|
|
|
|
return (void *)NULL;
|
|
|
|
}
|
|
|
|
ADD_POINTER_TO_LIST(p);
|
|
|
|
#if ZEND_DEBUG
|
|
|
|
p->filename = filename;
|
|
|
|
p->lineno = lineno;
|
|
|
|
p->magic = MEM_BLOCK_START_MAGIC;
|
|
|
|
*((long *)(((char *) p) + sizeof(mem_header)+size+PLATFORM_PADDING+END_ALIGNMENT(size))) = MEM_BLOCK_END_MAGIC;
|
|
|
|
#endif
|
|
|
|
#if MEMORY_LIMIT
|
|
|
|
CHECK_MEMORY_LIMIT(size - p->size);
|
|
|
|
#endif
|
|
|
|
p->size = size;
|
|
|
|
|
|
|
|
HANDLE_UNBLOCK_INTERRUPTIONS();
|
|
|
|
return (void *)((char *)p+sizeof(mem_header)+PLATFORM_PADDING);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#if ZEND_DEBUG
|
|
|
|
ZEND_API char *_estrdup(const char *s, char *filename, uint lineno)
|
|
|
|
#else
|
|
|
|
ZEND_API char *_estrdup(const char *s)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
int length;
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
length = strlen(s)+1;
|
|
|
|
HANDLE_BLOCK_INTERRUPTIONS();
|
|
|
|
#if ZEND_DEBUG
|
|
|
|
p = (char *) _emalloc(length,filename,lineno);
|
|
|
|
#else
|
|
|
|
p = (char *) emalloc(length);
|
|
|
|
#endif
|
|
|
|
if (!p) {
|
|
|
|
HANDLE_UNBLOCK_INTERRUPTIONS();
|
|
|
|
return (char *)NULL;
|
|
|
|
}
|
|
|
|
HANDLE_UNBLOCK_INTERRUPTIONS();
|
|
|
|
memcpy(p,s,length);
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#if ZEND_DEBUG
|
|
|
|
ZEND_API char *_estrndup(const char *s, uint length, char *filename, uint lineno)
|
|
|
|
#else
|
|
|
|
ZEND_API char *_estrndup(const char *s, uint length)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
HANDLE_BLOCK_INTERRUPTIONS();
|
|
|
|
#if ZEND_DEBUG
|
|
|
|
p = (char *) _emalloc(length+1,filename,lineno);
|
|
|
|
#else
|
|
|
|
p = (char *) emalloc(length+1);
|
|
|
|
#endif
|
|
|
|
if (!p) {
|
|
|
|
HANDLE_UNBLOCK_INTERRUPTIONS();
|
|
|
|
return (char *)NULL;
|
|
|
|
}
|
|
|
|
HANDLE_UNBLOCK_INTERRUPTIONS();
|
|
|
|
memcpy(p,s,length);
|
|
|
|
p[length]=0;
|
|
|
|
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) {
|
|
|
|
memcpy(p,s,length);
|
|
|
|
}
|
|
|
|
p[length]=0;
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-04-11 00:24:28 +08:00
|
|
|
ZEND_API int zend_set_memory_limit(unsigned int memory_limit)
|
1999-04-10 22:44:35 +08:00
|
|
|
{
|
|
|
|
#if MEMORY_LIMIT
|
|
|
|
ALS_FETCH();
|
|
|
|
|
|
|
|
AG(memory_limit) = memory_limit;
|
|
|
|
return SUCCESS;
|
|
|
|
#else
|
|
|
|
return FAILURE;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
ZEND_API void start_memory_manager(void)
|
|
|
|
{
|
1999-04-21 11:49:09 +08:00
|
|
|
ALS_FETCH();
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
AG(phead) = AG(head) = NULL;
|
|
|
|
|
|
|
|
#if MEMORY_LIMIT
|
1999-04-10 22:44:35 +08:00
|
|
|
AG(memory_limit)=1<<30; /* rediculous limit, effectively no limit */
|
1999-04-08 02:10:10 +08:00
|
|
|
AG(allocated_memory)=0;
|
|
|
|
AG(memory_exhausted)=0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
memset(AG(cache_count),0,MAX_CACHED_MEMORY*sizeof(unsigned char));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ZEND_API void shutdown_memory_manager(int silent, int clean_cache)
|
|
|
|
{
|
|
|
|
mem_header *p, *t;
|
1999-05-22 19:20:56 +08:00
|
|
|
#if ZEND_DEBUG
|
|
|
|
char *last_filename = NULL;
|
|
|
|
uint last_lineno = 0;
|
|
|
|
uint leak_count=0, total_bytes=0;
|
1999-05-23 00:48:23 +08:00
|
|
|
unsigned char had_leaks=0;
|
1999-05-22 19:20:56 +08:00
|
|
|
#endif
|
1999-04-21 11:49:09 +08:00
|
|
|
ALS_FETCH();
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
p=AG(head);
|
|
|
|
t=AG(head);
|
|
|
|
while (t) {
|
|
|
|
if (!t->cached || clean_cache) {
|
|
|
|
#if ZEND_DEBUG
|
|
|
|
if (!t->cached) {
|
1999-05-23 00:48:23 +08:00
|
|
|
had_leaks = 1;
|
1999-05-22 19:20:56 +08:00
|
|
|
if (last_filename != t->filename || last_lineno!=t->lineno) {
|
|
|
|
/* flush old leak */
|
|
|
|
if (leak_count>0) {
|
|
|
|
if (!silent && leak_count>1) {
|
1999-05-23 00:10:51 +08:00
|
|
|
zend_message_dispatcher(ZMSG_MEMORY_LEAK_REPEATED, (void *) (leak_count-1));
|
1999-05-22 19:20:56 +08:00
|
|
|
}
|
|
|
|
leak_count=0;
|
|
|
|
total_bytes=0;
|
|
|
|
}
|
|
|
|
last_filename = t->filename;
|
|
|
|
last_lineno = t->lineno;
|
|
|
|
if (!silent) {
|
|
|
|
zend_message_dispatcher(ZMSG_MEMORY_LEAK_DETECTED, t);
|
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
1999-05-22 19:20:56 +08:00
|
|
|
leak_count++;
|
|
|
|
total_bytes += t->size;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
p = t->pNext;
|
|
|
|
REMOVE_POINTER_FROM_LIST(t);
|
|
|
|
free(t);
|
|
|
|
t = p;
|
|
|
|
} else {
|
|
|
|
t = t->pNext;
|
|
|
|
}
|
|
|
|
}
|
1999-05-22 19:20:56 +08:00
|
|
|
#if ZEND_DEBUG
|
|
|
|
if (!silent && leak_count>1) {
|
1999-05-23 00:10:51 +08:00
|
|
|
zend_message_dispatcher(ZMSG_MEMORY_LEAK_REPEATED, (void *) (leak_count-1));
|
1999-05-22 19:20:56 +08:00
|
|
|
}
|
1999-05-23 00:48:23 +08:00
|
|
|
if (had_leaks) {
|
|
|
|
ELS_FETCH();
|
|
|
|
|
1999-05-28 20:06:59 +08:00
|
|
|
if (EG(AiCount)!=0 && !silent) {
|
1999-05-23 00:48:23 +08:00
|
|
|
fprintf(stderr, "AiCount did not zero out: %d\n", EG(AiCount));
|
|
|
|
}
|
|
|
|
}
|
1999-05-22 19:20:56 +08:00
|
|
|
#endif
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#if ZEND_DEBUG
|
1999-05-12 05:38:39 +08: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);
|
|
|
|
|
|
|
|
#if WIN32||WINNT
|
|
|
|
OutputDebugString(output_buf);
|
|
|
|
#else
|
|
|
|
fprintf(stderr, output_buf);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
ZEND_API int _mem_block_check(void *ptr, int silent, char *filename, int lineno)
|
|
|
|
{
|
|
|
|
mem_header *p = (mem_header *) ((char *)ptr - sizeof(mem_header) - PLATFORM_PADDING);
|
|
|
|
int no_cache_notice=0;
|
|
|
|
int valid_beginning=1;
|
|
|
|
int had_problems=0;
|
|
|
|
|
|
|
|
if (silent==2) {
|
|
|
|
silent=1;
|
|
|
|
no_cache_notice=1;
|
|
|
|
}
|
|
|
|
if (silent==3) {
|
|
|
|
silent=0;
|
|
|
|
no_cache_notice=1;
|
|
|
|
}
|
|
|
|
if (!silent) {
|
1999-05-12 05:38:39 +08:00
|
|
|
zend_debug_alloc_output("---------------------------------------\n");
|
|
|
|
zend_debug_alloc_output("Block 0x%0.8lX status at %s:%d:\n", (long) p, filename, lineno);
|
|
|
|
zend_debug_alloc_output("%10s\t","Beginning: ");
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (p->magic) {
|
|
|
|
case MEM_BLOCK_START_MAGIC:
|
|
|
|
if (!silent) {
|
1999-05-12 05:38:39 +08:00
|
|
|
zend_debug_alloc_output("OK (allocated on %s:%d, %d bytes)\n", p->filename, p->lineno, p->size);
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
break; /* ok */
|
|
|
|
case MEM_BLOCK_FREED_MAGIC:
|
|
|
|
if (!silent) {
|
1999-05-12 05:38:39 +08:00
|
|
|
zend_debug_alloc_output("Freed\n");
|
1999-04-08 02:10:10 +08:00
|
|
|
had_problems=1;
|
|
|
|
} else {
|
|
|
|
return _mem_block_check(ptr, 0, filename, lineno);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case MEM_BLOCK_CACHED_MAGIC:
|
|
|
|
if (!silent) {
|
|
|
|
if (!no_cache_notice) {
|
1999-05-12 05:38:39 +08:00
|
|
|
zend_debug_alloc_output("Cached (allocated on %s:%d, %d bytes)\n", p->filename, p->lineno, p->size);
|
1999-04-08 02:10:10 +08:00
|
|
|
had_problems=1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!no_cache_notice) {
|
|
|
|
return _mem_block_check(ptr, 0, filename, lineno);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (!silent) {
|
1999-05-12 05:38:39 +08:00
|
|
|
zend_debug_alloc_output("Overrun (magic=0x%0.8lX, expected=0x%0.8lX)\n", p->magic, MEM_BLOCK_START_MAGIC);
|
1999-04-08 02:10:10 +08:00
|
|
|
} else {
|
|
|
|
return _mem_block_check(ptr, 0, filename, lineno);
|
|
|
|
}
|
|
|
|
had_problems=1;
|
|
|
|
valid_beginning=0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (valid_beginning
|
|
|
|
&& *((long *)(((char *) p)+sizeof(mem_header)+p->size+PLATFORM_PADDING+END_ALIGNMENT(p->size))) != MEM_BLOCK_END_MAGIC) {
|
|
|
|
long magic_num = MEM_BLOCK_END_MAGIC;
|
|
|
|
char *overflow_ptr, *magic_ptr=(char *) &magic_num;
|
|
|
|
int overflows=0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (silent) {
|
|
|
|
return _mem_block_check(ptr, 0, filename, lineno);
|
|
|
|
}
|
|
|
|
had_problems=1;
|
|
|
|
overflow_ptr = ((char *) p)+sizeof(mem_header)+p->size+PLATFORM_PADDING;
|
|
|
|
|
|
|
|
for (i=0; i<sizeof(long); i++) {
|
|
|
|
if (overflow_ptr[i]!=magic_ptr[i]) {
|
|
|
|
overflows++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-05-12 05:38:39 +08:00
|
|
|
zend_debug_alloc_output("%10s\t", "End:");
|
|
|
|
zend_debug_alloc_output("Overflown (magic=0x%0.8lX instead of 0x%0.8lX)\n",
|
1999-04-08 02:10:10 +08:00
|
|
|
*((long *)(((char *) p) + sizeof(mem_header)+p->size+PLATFORM_PADDING+END_ALIGNMENT(p->size))), MEM_BLOCK_END_MAGIC);
|
1999-05-12 05:38:39 +08:00
|
|
|
zend_debug_alloc_output("%10s\t","");
|
1999-04-08 02:10:10 +08:00
|
|
|
if (overflows>=sizeof(long)) {
|
1999-05-12 05:38:39 +08:00
|
|
|
zend_debug_alloc_output("At least %d bytes overflown\n", sizeof(long));
|
1999-04-08 02:10:10 +08:00
|
|
|
} else {
|
1999-05-12 05:38:39 +08:00
|
|
|
zend_debug_alloc_output("%d byte(s) overflown\n", overflows);
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
} else if (!silent) {
|
1999-05-12 05:38:39 +08:00
|
|
|
zend_debug_alloc_output("%10s\t", "End:");
|
1999-04-08 02:10:10 +08:00
|
|
|
if (valid_beginning) {
|
1999-05-12 05:38:39 +08:00
|
|
|
zend_debug_alloc_output("OK\n");
|
1999-04-08 02:10:10 +08:00
|
|
|
} else {
|
1999-05-12 05:38:39 +08:00
|
|
|
zend_debug_alloc_output("Unknown\n");
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
}
|
1999-05-11 04:46:42 +08:00
|
|
|
|
|
|
|
if (had_problems) {
|
|
|
|
int foo = 5;
|
|
|
|
|
|
|
|
foo+=1;
|
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
if (!silent) {
|
1999-05-12 05:38:39 +08:00
|
|
|
zend_debug_alloc_output("---------------------------------------\n");
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
return ((!had_problems) ? 1 : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ZEND_API void _full_mem_check(int silent, char *filename, uint lineno)
|
|
|
|
{
|
1999-04-21 11:49:09 +08:00
|
|
|
mem_header *p;
|
1999-04-08 02:10:10 +08:00
|
|
|
int errors=0;
|
1999-04-21 11:49:09 +08:00
|
|
|
ALS_FETCH();
|
|
|
|
|
|
|
|
p = AG(head);
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
|
1999-05-12 05:38:39 +08:00
|
|
|
zend_debug_alloc_output("------------------------------------------------\n");
|
|
|
|
zend_debug_alloc_output("Full Memory Check at %s:%d\n", filename, lineno);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
while (p) {
|
|
|
|
if (!_mem_block_check((void *)((char *)p + sizeof(mem_header) + PLATFORM_PADDING), (silent?2:3), filename, lineno)) {
|
|
|
|
errors++;
|
|
|
|
}
|
|
|
|
p = p->pNext;
|
|
|
|
}
|
1999-05-12 05:38:39 +08:00
|
|
|
zend_debug_alloc_output("End of full memory check %s:%d (%d errors)\n", filename, lineno, errors);
|
|
|
|
zend_debug_alloc_output("------------------------------------------------\n");
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#if ZEND_DEBUG
|
|
|
|
ZEND_API void _persist_alloc(void *ptr, char *filename, uint lineno)
|
|
|
|
#else
|
|
|
|
ZEND_API void _persist_alloc(void *ptr)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
mem_header *p = (mem_header *) ((char *)ptr-sizeof(mem_header)-PLATFORM_PADDING);
|
1999-04-21 11:49:09 +08:00
|
|
|
ALS_FETCH();
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
#if ZEND_DEBUG
|
|
|
|
_mem_block_check(ptr, 1, filename, lineno);
|
|
|
|
#endif
|
|
|
|
|
1999-04-18 23:11:52 +08:00
|
|
|
HANDLE_BLOCK_INTERRUPTIONS();
|
|
|
|
|
1999-04-08 02:10:10 +08: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);
|
1999-04-18 23:11:52 +08:00
|
|
|
HANDLE_UNBLOCK_INTERRUPTIONS();
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-04-26 11:03:39 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
|
|
|
*/
|