Major cleanup.

committer: mfx <mfx> 1042637889 +0000
This commit is contained in:
Markus F.X.J. Oberhumer
2003-01-15 13:38:09 +00:00
parent 63d49f0143
commit 29db8bca3a
2 changed files with 86 additions and 27 deletions
+83 -25
View File
@@ -34,11 +34,39 @@
// //
**************************************************************************/ **************************************************************************/
static int use_mcheck = -1;
static int mcheck_init()
{
if (use_mcheck < 0)
{
use_mcheck = 1;
#if defined(WITH_VALGRIND) && defined(RUNNING_ON_VALGRIND)
if (RUNNING_ON_VALGRIND)
{
//fprintf(stderr, "upx: detected RUNNING_ON_VALGRIND\n");
use_mcheck = 0;
}
#endif
}
return use_mcheck;
}
/*************************************************************************
//
**************************************************************************/
MemBuffer::MemBuffer() :
ptr(NULL), psize(0)
{
}
MemBuffer::MemBuffer(unsigned size) : MemBuffer::MemBuffer(unsigned size) :
ptr(NULL), psize(0) ptr(NULL), psize(0)
{ {
if (size > 0) alloc(size);
alloc(size);
} }
@@ -52,10 +80,23 @@ void MemBuffer::dealloc()
if (ptr) if (ptr)
{ {
checkState(); checkState();
::free(ptr - 8); if (use_mcheck)
{
// clear magic constants
set_be32(ptr - 8, 0);
set_be32(ptr - 4, 0);
set_be32(ptr + psize, 0);
set_be32(ptr + psize + 4, 0);
//
::free(ptr - 8);
}
else
::free(ptr);
ptr = NULL;
psize = 0;
} }
ptr = NULL; else
psize = 0; assert(psize == 0);
} }
@@ -63,7 +104,8 @@ void MemBuffer::allocForCompression(unsigned uncompressed_size, unsigned extra)
{ {
assert((int)uncompressed_size > 0); assert((int)uncompressed_size > 0);
assert((int)extra >= 0); assert((int)extra >= 0);
alloc(uncompressed_size + uncompressed_size/8 + 256 + extra); unsigned size = uncompressed_size + uncompressed_size/8 + 256 + extra;
alloc(size);
} }
@@ -71,9 +113,13 @@ void MemBuffer::allocForUncompression(unsigned uncompressed_size, unsigned extra
{ {
assert((int)uncompressed_size > 0); assert((int)uncompressed_size > 0);
assert((int)extra >= 0); assert((int)extra >= 0);
// note: 3 bytes are allowed overrun for the asm_fast decompressors unsigned size = uncompressed_size + extra;
// alloc(uncompressed_size + 3 + 512 + extra); // 512 safety bytes // size += 512; // 512 safety bytes
alloc(uncompressed_size + 3 + extra); // INFO: 3 bytes are the allowed overrun for the i386 asm_fast decompressors
#if defined(__i386__)
size += 3;
#endif
alloc(size);
} }
@@ -81,8 +127,8 @@ void MemBuffer::allocForUncompression(unsigned uncompressed_size, unsigned extra
// //
**************************************************************************/ **************************************************************************/
#define MAGIC1(p) ((unsigned)(p) ^ 0xfefdbeeb) #define MAGIC1(p) (((unsigned)(p) & 0xffffffff) ^ 0xfefdbeeb)
#define MAGIC2(p) ((unsigned)(p) ^ 0xfefdbeeb ^ 0x80024001) #define MAGIC2(p) (((unsigned)(p) & 0xffffffff) ^ 0xfefdbeeb ^ 0x80024001)
unsigned MemBuffer::global_alloc_counter = 0; unsigned MemBuffer::global_alloc_counter = 0;
@@ -91,23 +137,30 @@ void MemBuffer::checkState() const
{ {
if (!ptr) if (!ptr)
throwInternalError("block not allocated"); throwInternalError("block not allocated");
if (get_be32(ptr - 4) != MAGIC1(ptr)) if (use_mcheck)
throwInternalError("memory clobbered before allocated block 1"); {
if (get_be32(ptr - 8) != psize) if (get_be32(ptr - 4) != MAGIC1(ptr))
throwInternalError("memory clobbered before allocated block 2"); throwInternalError("memory clobbered before allocated block 1");
if (get_be32(ptr + psize) != MAGIC2(ptr)) if (get_be32(ptr - 8) != psize)
throwInternalError("memory clobbered past end of allocated block"); throwInternalError("memory clobbered before allocated block 2");
if (get_be32(ptr + psize) != MAGIC2(ptr))
throwInternalError("memory clobbered past end of allocated block");
}
assert((int)psize > 0);
} }
void MemBuffer::alloc(unsigned size) void MemBuffer::alloc(unsigned size)
{ {
// NOTE: we don't automaticlly free a used buffer if (use_mcheck < 0)
mcheck_init();
// NOTE: we don't automatically free a used buffer
assert(ptr == NULL); assert(ptr == NULL);
assert(psize == 0); assert(psize == 0);
// //
assert((int)size > 0); assert((int)size > 0);
unsigned total = 4 + 4 + size + 4 + 4; unsigned total = use_mcheck ? size + 16 : size;
assert((int)total > 0); assert((int)total > 0);
unsigned char *p = (unsigned char *) malloc(total); unsigned char *p = (unsigned char *) malloc(total);
if (!p) if (!p)
@@ -116,13 +169,18 @@ void MemBuffer::alloc(unsigned size)
throwCantPack("out of memory"); throwCantPack("out of memory");
//exit(1); //exit(1);
} }
ptr = p + 8;
psize = size; psize = size;
// store magic state if (use_mcheck)
set_be32(ptr - 8, psize); {
set_be32(ptr - 4, MAGIC1(ptr)); ptr = p + 8;
set_be32(ptr + psize, MAGIC2(ptr)); // store magic constants to detect buffer overruns
set_be32(ptr + psize + 4, global_alloc_counter++); set_be32(ptr - 8, psize);
set_be32(ptr - 4, MAGIC1(ptr));
set_be32(ptr + psize, MAGIC2(ptr));
set_be32(ptr + psize + 4, global_alloc_counter++);
}
else
ptr = p ;
} }
+3 -2
View File
@@ -37,7 +37,8 @@
class MemBuffer class MemBuffer
{ {
public: public:
MemBuffer(unsigned size=0); MemBuffer();
MemBuffer(unsigned size);
~MemBuffer(); ~MemBuffer();
void alloc(unsigned size); void alloc(unsigned size);
@@ -52,13 +53,13 @@ public:
operator unsigned char * () { return ptr; } operator unsigned char * () { return ptr; }
//operator const unsigned char * () const { return ptr; } //operator const unsigned char * () const { return ptr; }
const unsigned char *getBuf() const { return ptr; }
void *getVoidPtr() { return (void *) ptr; } void *getVoidPtr() { return (void *) ptr; }
const void *getVoidPtr() const { return (const void *) ptr; } const void *getVoidPtr() const { return (const void *) ptr; }
private: private:
unsigned char *ptr; unsigned char *ptr;
unsigned psize; unsigned psize;
static unsigned global_alloc_counter; static unsigned global_alloc_counter;
// disable copy and assignment // disable copy and assignment