This repository has been archived on 2023-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
libpng/pngmem.c

361 lines
9.3 KiB
C
Raw Normal View History

1998-03-07 12:06:55 +00:00
1995-11-28 17:22:13 +00:00
/* pngmem.c - stub functions for memory allocation
1998-01-01 13:13:13 +00:00
*
1998-05-09 15:02:29 +00:00
* libpng 1.0.1c
1998-01-01 13:13:13 +00:00
* For conditions of distribution and use, see copyright notice in png.h
* Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
* Copyright (c) 1996, 1997 Andreas Dilger
1998-01-08 02:54:20 +00:00
* Copyright (c) 1998, Glenn Randers-Pehrson
1998-05-09 15:02:29 +00:00
* May 9, 1998
1998-01-01 13:13:13 +00:00
*
1998-04-21 20:03:57 +00:00
* This file provides a location for all memory allocation. Users who
1998-01-01 13:13:13 +00:00
* need special memory handling are expected to modify the code in this file
* to meet their needs. See the instructions at each function.
*/
1995-07-20 07:43:20 +00:00
#define PNG_INTERNAL
#include "png.h"
1998-01-17 04:06:18 +00:00
/* The following "hides" PNG_MALLOC and PNG_FREE thus allowing the pngtest
application to put a wrapper on top of them. */
#ifdef PNGTEST_MEMORY_DEBUG
1998-03-07 20:33:00 +00:00
#define PNG_MALLOC png_debug_malloc
#define PNG_FREE png_debug_free
1998-01-17 04:06:18 +00:00
#else
1998-03-07 20:33:00 +00:00
#define PNG_MALLOC png_malloc
#define PNG_FREE png_free
1998-01-17 04:06:18 +00:00
#endif
1996-01-16 07:51:56 +00:00
/* Borland DOS special memory handler */
#if defined(__TURBOC__) && !defined(_Windows) && !defined(__FLAT__)
/* if you change this, be sure to change the one in png.h also */
1996-06-05 20:50:50 +00:00
/* Allocate memory for a png_struct. The malloc and memset can be replaced
1997-01-17 07:34:35 +00:00
by a single call to calloc() if this is thought to improve performance. */
1996-06-05 20:50:50 +00:00
png_voidp
1997-01-17 07:34:35 +00:00
png_create_struct(int type)
1996-06-05 20:50:50 +00:00
{
1997-01-17 07:34:35 +00:00
png_size_t size;
1996-06-05 20:50:50 +00:00
png_voidp struct_ptr;
if (type == PNG_STRUCT_INFO)
size = sizeof(png_info);
else if (type == PNG_STRUCT_PNG)
size = sizeof(png_struct);
else
1998-02-01 02:07:59 +00:00
return ((png_voidp)NULL);
1996-06-05 20:50:50 +00:00
if ((struct_ptr = (png_voidp)farmalloc(size)) != NULL)
{
png_memset(struct_ptr, 0, size);
}
return (struct_ptr);
}
/* Free memory allocated by a png_create_struct() call */
void
png_destroy_struct(png_voidp struct_ptr)
{
1997-05-16 07:46:07 +00:00
if (struct_ptr != NULL)
1998-01-31 03:45:12 +00:00
{
1996-06-05 20:50:50 +00:00
farfree (struct_ptr);
1998-01-31 03:45:12 +00:00
struct_ptr = NULL;
}
1996-06-05 20:50:50 +00:00
}
1995-07-20 07:43:20 +00:00
/* Allocate memory. For reasonable files, size should never exceed
1997-05-16 07:46:07 +00:00
* 64K. However, zlib may allocate more then 64K if you don't tell
* it not to. See zconf.h and png.h for more information. zlib does
* need to allocate exactly 64K, so whatever you call here must
* have the ability to do that.
*
* Borland seems to have a problem in DOS mode for exactly 64K.
* It gives you a segment with an offset of 8 (perhaps to store it's
* memory stuff). zlib doesn't like this at all, so we have to
* detect and deal with it. This code should not be needed in
* Windows or OS/2 modes, and only in 16 bit mode. This code has
* been updated by Alexander Lehmann for version 0.89 to waste less
* memory.
*
* Note that we can't use png_size_t for the "size" declaration,
* since on some systems a png_size_t is a 16-bit quantity, and as a
* result, we would be truncating potentially larger memory requests
* (which should cause a fatal error) and introducing major problems.
*/
1995-12-19 09:22:19 +00:00
png_voidp
1998-01-17 04:06:18 +00:00
PNG_MALLOC(png_structp png_ptr, png_uint_32 size)
1995-07-20 07:43:20 +00:00
{
1996-01-26 07:38:47 +00:00
png_voidp ret;
1997-05-16 07:46:07 +00:00
if (png_ptr == NULL || size == 0)
1998-02-01 02:07:59 +00:00
return ((png_voidp)NULL);
1995-07-20 07:43:20 +00:00
#ifdef PNG_MAX_MALLOC_64K
1996-01-26 07:38:47 +00:00
if (size > (png_uint_32)65536L)
png_error(png_ptr, "Cannot Allocate > 64K");
1996-01-16 07:51:56 +00:00
#endif
1998-01-01 13:13:13 +00:00
if (size == (png_uint_32)65536L)
1996-01-26 07:38:47 +00:00
{
1997-05-16 07:46:07 +00:00
if (png_ptr->offset_table == NULL)
1996-01-26 07:38:47 +00:00
{
/* try to see if we need to do any of this fancy stuff */
ret = farmalloc(size);
1997-05-16 07:46:07 +00:00
if (ret == NULL || ((png_size_t)ret & 0xffff))
1996-01-26 07:38:47 +00:00
{
int num_blocks;
png_uint_32 total_size;
png_bytep table;
int i;
1996-01-16 07:51:56 +00:00
png_byte huge * hptr;
1997-05-16 07:46:07 +00:00
if (ret != NULL)
1998-01-31 03:45:12 +00:00
{
1996-01-26 07:38:47 +00:00
farfree(ret);
1998-01-31 03:45:12 +00:00
ret = NULL;
}
1996-01-26 07:38:47 +00:00
num_blocks = (int)(1 << (png_ptr->zlib_window_bits - 14));
if (num_blocks < 1)
num_blocks = 1;
if (png_ptr->zlib_mem_level >= 7)
num_blocks += (int)(1 << (png_ptr->zlib_mem_level - 7));
else
num_blocks++;
1996-06-05 20:50:50 +00:00
total_size = ((png_uint_32)65536L) * (png_uint_32)num_blocks+16;
1996-01-26 07:38:47 +00:00
table = farmalloc(total_size);
1997-05-16 07:46:07 +00:00
if (table == NULL)
1996-01-26 07:38:47 +00:00
{
1998-01-31 03:45:12 +00:00
png_error(png_ptr, "Out Of Memory."); /* Note "O" and "M" */
1996-01-26 07:38:47 +00:00
}
1997-05-16 07:46:07 +00:00
if ((png_size_t)table & 0xfff0)
1996-01-26 07:38:47 +00:00
{
1996-06-05 20:50:50 +00:00
png_error(png_ptr, "Farmalloc didn't return normalized pointer");
1996-01-26 07:38:47 +00:00
}
1996-06-05 20:50:50 +00:00
png_ptr->offset_table = table;
1997-05-16 07:46:07 +00:00
png_ptr->offset_table_ptr = farmalloc(num_blocks *
sizeof (png_bytep));
1996-01-26 07:38:47 +00:00
1997-05-16 07:46:07 +00:00
if (png_ptr->offset_table_ptr == NULL)
1996-01-26 07:38:47 +00:00
{
1998-01-31 03:45:12 +00:00
png_error(png_ptr, "Out Of memory.");
1996-01-26 07:38:47 +00:00
}
hptr = (png_byte huge *)table;
1997-05-16 07:46:07 +00:00
if ((png_size_t)hptr & 0xf)
1996-01-26 07:38:47 +00:00
{
1996-06-05 20:50:50 +00:00
hptr = (png_byte huge *)((long)(hptr) & 0xfffffff0L);
hptr += 16L;
1996-01-26 07:38:47 +00:00
}
for (i = 0; i < num_blocks; i++)
{
png_ptr->offset_table_ptr[i] = (png_bytep)hptr;
1998-01-01 13:13:13 +00:00
hptr += (png_uint_32)65536L;
1996-01-26 07:38:47 +00:00
}
png_ptr->offset_table_number = num_blocks;
png_ptr->offset_table_count = 0;
png_ptr->offset_table_count_free = 0;
}
1996-06-05 20:50:50 +00:00
}
1996-01-26 07:38:47 +00:00
1996-06-05 20:50:50 +00:00
if (png_ptr->offset_table_count >= png_ptr->offset_table_number)
1998-01-31 03:45:12 +00:00
png_error(png_ptr, "Out of Memory.");
1996-01-16 07:51:56 +00:00
1996-06-05 20:50:50 +00:00
ret = png_ptr->offset_table_ptr[png_ptr->offset_table_count++];
1996-01-26 07:38:47 +00:00
}
else
ret = farmalloc(size);
1996-01-16 07:51:56 +00:00
1996-01-26 07:38:47 +00:00
if (ret == NULL)
{
1998-01-31 03:45:12 +00:00
png_error(png_ptr, "Out of memory."); /* Note "o" and "m" */
1996-01-26 07:38:47 +00:00
}
1996-01-16 07:51:56 +00:00
1998-02-01 02:07:59 +00:00
return (ret);
1996-01-16 07:51:56 +00:00
}
1998-01-17 04:06:18 +00:00
/* free a pointer allocated by PNG_MALLOC(). In the default
1997-01-17 07:34:35 +00:00
configuration, png_ptr is not used, but is passed in case it
is needed. If ptr is NULL, return without taking any action. */
1996-01-16 07:51:56 +00:00
void
1998-01-17 04:06:18 +00:00
PNG_FREE(png_structp png_ptr, png_voidp ptr)
1996-01-16 07:51:56 +00:00
{
1997-05-16 07:46:07 +00:00
if (png_ptr == NULL || ptr == NULL)
1996-01-26 07:38:47 +00:00
return;
1997-05-16 07:46:07 +00:00
if (png_ptr->offset_table != NULL)
1996-01-26 07:38:47 +00:00
{
1997-05-16 07:46:07 +00:00
int i;
1996-01-26 07:38:47 +00:00
1997-05-16 07:46:07 +00:00
for (i = 0; i < png_ptr->offset_table_count; i++)
{
if (ptr == png_ptr->offset_table_ptr[i])
1996-01-26 07:38:47 +00:00
{
1997-05-16 07:46:07 +00:00
ptr = NULL;
png_ptr->offset_table_count_free++;
break;
1996-01-16 07:51:56 +00:00
}
1996-01-26 07:38:47 +00:00
}
1997-05-16 07:46:07 +00:00
if (png_ptr->offset_table_count_free == png_ptr->offset_table_count)
{
farfree(png_ptr->offset_table);
farfree(png_ptr->offset_table_ptr);
png_ptr->offset_table = NULL;
png_ptr->offset_table_ptr = NULL;
}
1996-01-26 07:38:47 +00:00
}
1997-05-16 07:46:07 +00:00
if (ptr != NULL)
1998-01-31 03:45:12 +00:00
{
1997-05-16 07:46:07 +00:00
farfree(ptr);
1998-01-31 03:45:12 +00:00
ptr = NULL;
}
1996-01-16 07:51:56 +00:00
}
#else /* Not the Borland DOS special memory handler */
1996-06-05 20:50:50 +00:00
/* Allocate memory for a png_struct or a png_info. The malloc and
1997-01-17 07:34:35 +00:00
memset can be replaced by a single call to calloc() if this is thought
to improve performance noticably.*/
1996-06-05 20:50:50 +00:00
png_voidp
1997-01-17 07:34:35 +00:00
png_create_struct(int type)
1996-06-05 20:50:50 +00:00
{
1997-05-16 07:46:07 +00:00
png_size_t size;
1996-06-05 20:50:50 +00:00
png_voidp struct_ptr;
if (type == PNG_STRUCT_INFO)
1997-05-16 07:46:07 +00:00
size = sizeof(png_info);
1996-06-05 20:50:50 +00:00
else if (type == PNG_STRUCT_PNG)
1997-05-16 07:46:07 +00:00
size = sizeof(png_struct);
1996-06-05 20:50:50 +00:00
else
1998-02-01 02:07:59 +00:00
return ((png_voidp)NULL);
1996-06-05 20:50:50 +00:00
#if defined(__TURBOC__) && !defined(__FLAT__)
if ((struct_ptr = (png_voidp)farmalloc(size)) != NULL)
#else
# if defined(_MSC_VER) && defined(MAXSEG_64K)
1996-06-17 21:24:45 +00:00
if ((struct_ptr = (png_voidp)halloc(size,1)) != NULL)
1996-06-05 20:50:50 +00:00
# else
if ((struct_ptr = (png_voidp)malloc(size)) != NULL)
# endif
#endif
{
png_memset(struct_ptr, 0, size);
}
return (struct_ptr);
}
/* Free memory allocated by a png_create_struct() call */
void
png_destroy_struct(png_voidp struct_ptr)
{
1997-05-16 07:46:07 +00:00
if (struct_ptr != NULL)
1998-01-31 03:45:12 +00:00
{
1996-06-05 20:50:50 +00:00
#if defined(__TURBOC__) && !defined(__FLAT__)
farfree(struct_ptr);
#else
# if defined(_MSC_VER) && defined(MAXSEG_64K)
hfree(struct_ptr);
# else
free(struct_ptr);
# endif
#endif
1998-01-31 03:45:12 +00:00
}
1996-06-05 20:50:50 +00:00
}
1996-01-16 07:51:56 +00:00
/* Allocate memory. For reasonable files, size should never exceed
1996-01-26 07:38:47 +00:00
64K. However, zlib may allocate more then 64K if you don't tell
1997-05-16 07:46:07 +00:00
it not to. See zconf.h and png.h for more information. zlib does
1996-01-26 07:38:47 +00:00
need to allocate exactly 64K, so whatever you call here must
have the ability to do that. */
1996-01-16 07:51:56 +00:00
png_voidp
1998-01-17 04:06:18 +00:00
PNG_MALLOC(png_structp png_ptr, png_uint_32 size)
1996-01-16 07:51:56 +00:00
{
1996-01-26 07:38:47 +00:00
png_voidp ret;
1998-02-07 16:20:57 +00:00
1997-05-16 07:46:07 +00:00
if (png_ptr == NULL || size == 0)
1998-02-01 02:07:59 +00:00
return ((png_voidp)NULL);
1996-01-16 07:51:56 +00:00
#ifdef PNG_MAX_MALLOC_64K
1998-02-09 02:56:40 +00:00
if (size > (png_uint_32)65536L)
1996-01-26 07:38:47 +00:00
png_error(png_ptr, "Cannot Allocate > 64K");
1995-07-20 07:43:20 +00:00
#endif
1995-12-19 09:22:19 +00:00
#if defined(__TURBOC__) && !defined(__FLAT__)
1998-02-09 02:56:40 +00:00
ret = farmalloc(size);
1995-12-19 09:22:19 +00:00
#else
1996-01-16 07:51:56 +00:00
# if defined(_MSC_VER) && defined(MAXSEG_64K)
1998-02-09 02:56:40 +00:00
ret = halloc(size, 1);
1996-01-16 07:51:56 +00:00
# else
1998-02-28 13:00:24 +00:00
ret = malloc((size_t)size);
1996-01-16 07:51:56 +00:00
# endif
1995-07-20 07:43:20 +00:00
#endif
1995-09-26 10:22:39 +00:00
if (ret == NULL)
1995-07-20 07:43:20 +00:00
{
1995-12-19 09:22:19 +00:00
png_error(png_ptr, "Out of Memory");
1995-07-20 07:43:20 +00:00
}
1998-02-01 02:07:59 +00:00
return (ret);
1995-07-20 07:43:20 +00:00
}
1998-01-17 04:06:18 +00:00
/* Free a pointer allocated by PNG_MALLOC(). In the default
1995-07-20 07:43:20 +00:00
configuration, png_ptr is not used, but is passed in case it
is needed. If ptr is NULL, return without taking any action. */
void
1998-01-17 04:06:18 +00:00
PNG_FREE(png_structp png_ptr, png_voidp ptr)
1995-07-20 07:43:20 +00:00
{
1997-05-16 07:46:07 +00:00
if (png_ptr == NULL || ptr == NULL)
1996-01-26 07:38:47 +00:00
return;
1995-07-20 07:43:20 +00:00
1995-12-19 09:22:19 +00:00
#if defined(__TURBOC__) && !defined(__FLAT__)
1997-05-16 07:46:07 +00:00
farfree(ptr);
1995-07-20 07:43:20 +00:00
#else
1996-01-16 07:51:56 +00:00
# if defined(_MSC_VER) && defined(MAXSEG_64K)
1997-05-16 07:46:07 +00:00
hfree(ptr);
1996-01-16 07:51:56 +00:00
# else
1997-05-16 07:46:07 +00:00
free(ptr);
1996-01-16 07:51:56 +00:00
# endif
1995-07-20 07:43:20 +00:00
#endif
}
1996-01-16 07:51:56 +00:00
#endif /* Not Borland DOS special memory handler */
1995-12-19 09:22:19 +00:00
1998-02-09 02:56:40 +00:00
png_voidp
png_memcpy_check (png_structp png_ptr, png_voidp s1, png_voidp s2,
1998-02-07 16:20:57 +00:00
png_uint_32 length)
{
png_size_t size;
1998-02-09 02:56:40 +00:00
size = (png_size_t)length;
if ((png_uint_32)size != length)
png_error(png_ptr,"Overflow in png_memcpy_check.");
return(png_memcpy (s1, s2, size));
1998-02-07 16:20:57 +00:00
}
1998-02-09 02:56:40 +00:00
png_voidp
png_memset_check (png_structp png_ptr, png_voidp s1, int value,
1998-02-07 16:20:57 +00:00
png_uint_32 length)
{
png_size_t size;
1998-02-09 02:56:40 +00:00
size = (png_size_t)length;
if ((png_uint_32)size != length)
png_error(png_ptr,"Overflow in png_memset_check.");
return (png_memset (s1, value, size));
1998-02-07 16:20:57 +00:00
}