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
|
|
|
*
|
2011-12-21 14:28:28 +00:00
|
|
|
* Last changed in libpng 1.6.0 [(PENDING RELEASE)]
|
2011-01-04 15:57:06 +00:00
|
|
|
* Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
2000-06-04 19:29:29 +00:00
|
|
|
* (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
|
|
|
|
* (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
|
1998-01-01 13:13:13 +00:00
|
|
|
*
|
2009-06-27 02:46:52 +00:00
|
|
|
* This code is released under the libpng license.
|
2009-06-25 18:43:50 +00:00
|
|
|
* For conditions of distribution and use, see the disclaimer
|
2009-06-24 15:27:36 +00:00
|
|
|
* and license in png.h
|
2009-06-24 14:31:28 +00:00
|
|
|
*
|
1998-04-21 20:03:57 +00:00
|
|
|
* This file provides a location for all memory allocation. Users who
|
1998-06-14 19:43:31 +00:00
|
|
|
* need special memory handling are expected to supply replacement
|
|
|
|
* functions for png_malloc() and png_free(), and to use
|
|
|
|
* png_create_read_struct_2() and png_create_write_struct_2() to
|
|
|
|
* identify the replacement functions.
|
1998-01-01 13:13:13 +00:00
|
|
|
*/
|
1995-07-20 07:43:20 +00:00
|
|
|
|
2008-07-10 14:13:13 +00:00
|
|
|
#include "pngpriv.h"
|
2006-02-21 04:09:05 +00:00
|
|
|
|
2010-03-09 03:10:25 +00:00
|
|
|
#if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
|
2011-12-21 23:36:12 +00:00
|
|
|
/* Free a png_struct */
|
2000-05-06 19:09:57 +00:00
|
|
|
void /* PRIVATE */
|
2011-12-21 23:36:12 +00:00
|
|
|
png_destroy_png_struct(png_structp png_ptr)
|
1996-06-05 20:50:50 +00:00
|
|
|
{
|
2011-12-21 23:36:12 +00:00
|
|
|
if (png_ptr != NULL)
|
1998-01-31 03:45:12 +00:00
|
|
|
{
|
2011-12-21 23:36:12 +00:00
|
|
|
/* png_free might call png_error and may certainly call
|
|
|
|
* png_get_mem_ptr, so fake a temporary png_struct to support this.
|
|
|
|
*/
|
|
|
|
png_struct dummy_struct = *png_ptr;
|
|
|
|
memset(png_ptr, 0, sizeof *png_ptr);
|
|
|
|
png_free(&dummy_struct, png_ptr);
|
|
|
|
|
|
|
|
# ifdef PNG_SETJMP_SUPPORTED
|
|
|
|
/* We may have a jmp_buf left to deallocate. */
|
|
|
|
png_free_jmpbuf(&dummy_struct);
|
|
|
|
# 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
|
2009-05-16 01:39:34 +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.
|
|
|
|
*/
|
2010-08-02 13:00:10 +00:00
|
|
|
PNG_FUNCTION(png_voidp,PNGAPI
|
|
|
|
png_calloc,(png_structp png_ptr, png_alloc_size_t size),PNG_ALLOCATED)
|
2009-02-14 16:32:18 +00:00
|
|
|
{
|
|
|
|
png_voidp ret;
|
|
|
|
|
2011-12-21 23:36:12 +00:00
|
|
|
ret = png_malloc(png_ptr, size);
|
2010-05-06 14:44:04 +00:00
|
|
|
|
2009-02-14 16:32:18 +00:00
|
|
|
if (ret != NULL)
|
2011-12-21 23:36:12 +00:00
|
|
|
png_memset(ret, 0, size);
|
2010-05-06 14:44:04 +00:00
|
|
|
|
2011-12-21 23:36:12 +00:00
|
|
|
return ret;
|
2009-02-14 16:32:18 +00:00
|
|
|
}
|
|
|
|
|
2011-12-21 23:36:12 +00:00
|
|
|
/* png_malloc_base, an internal function added at libpng 1.6.0, does the work of
|
|
|
|
* allocating memory, taking into account limits and PNG_USER_MEM_SUPPORTED.
|
|
|
|
* Checking and error handling must happen outside this routine; it returns NULL
|
|
|
|
* if the allocation cannot be done (for any reason.)
|
|
|
|
*/
|
|
|
|
PNG_FUNCTION(png_voidp /* PRIVATE */,
|
|
|
|
png_malloc_base,(png_structp png_ptr, png_alloc_size_t size),PNG_ALLOCATED)
|
1996-01-16 07:51:56 +00:00
|
|
|
{
|
2011-12-21 23:36:12 +00:00
|
|
|
/* Moved to png_malloc_base from png_malloc_default in 1.6.0; the DOS
|
|
|
|
* allocators have also been removed in 1.6.0, so any 16-bit system now has
|
|
|
|
* to implement a user memory handler. This checks to be sure it isn't
|
|
|
|
* called with big numbers.
|
|
|
|
*/
|
|
|
|
if (size > 0 && size <= ~(size_t)0
|
|
|
|
# ifdef PNG_MAX_MALLOC_64K
|
|
|
|
&& size <= 65536U
|
|
|
|
# endif
|
|
|
|
)
|
|
|
|
{
|
|
|
|
if (png_ptr != NULL && png_ptr->malloc_fn != NULL)
|
|
|
|
return png_ptr->malloc_fn(png_ptr, size);
|
1996-01-16 07:51:56 +00:00
|
|
|
|
2011-12-21 23:36:12 +00:00
|
|
|
else
|
|
|
|
return malloc((size_t)size); /* checked for truncation above */
|
|
|
|
}
|
2010-05-06 14:44:04 +00:00
|
|
|
|
1998-06-06 20:31:35 +00:00
|
|
|
else
|
2011-12-21 23:36:12 +00:00
|
|
|
return NULL;
|
1998-06-06 20:31:35 +00:00
|
|
|
}
|
2002-05-25 16:12:10 +00:00
|
|
|
|
2011-12-21 23:36:12 +00:00
|
|
|
/* Various functions that have different error handling are derived from this.
|
|
|
|
* png_malloc always exists, but if PNG_USER_MEM_SUPPORTED is defined a separate
|
|
|
|
* function png_malloc_default is also provided.
|
|
|
|
*/
|
2010-08-02 13:00:10 +00:00
|
|
|
PNG_FUNCTION(png_voidp,PNGAPI
|
2011-12-21 23:36:12 +00:00
|
|
|
png_malloc,(png_structp png_ptr, png_alloc_size_t size),PNG_ALLOCATED)
|
1998-06-06 20:31:35 +00:00
|
|
|
{
|
|
|
|
png_voidp ret;
|
|
|
|
|
2011-12-21 23:36:12 +00:00
|
|
|
if (png_ptr == NULL)
|
|
|
|
return NULL;
|
2004-08-04 11:34:52 +00:00
|
|
|
|
2011-12-21 23:36:12 +00:00
|
|
|
ret = png_malloc_base(png_ptr, size);
|
2010-05-06 14:44:04 +00:00
|
|
|
|
2011-12-21 23:36:12 +00:00
|
|
|
if (ret == NULL)
|
|
|
|
png_error(png_ptr, "Out of memory"); /* 'm' means png_malloc */
|
1995-07-20 07:43:20 +00:00
|
|
|
|
2011-12-21 23:36:12 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef PNG_USER_MEM_SUPPORTED
|
|
|
|
PNG_FUNCTION(png_voidp,PNGAPI
|
|
|
|
png_malloc_default,(png_structp png_ptr, png_alloc_size_t size),
|
|
|
|
PNG_ALLOCATED PNG_DEPRECATED)
|
|
|
|
{
|
|
|
|
png_voidp ret;
|
2010-05-06 14:44:04 +00:00
|
|
|
|
2011-12-21 23:36:12 +00:00
|
|
|
if (png_ptr == NULL)
|
|
|
|
return NULL;
|
2010-05-06 14:44:04 +00:00
|
|
|
|
2011-12-21 23:36:12 +00:00
|
|
|
/* Passing 'NULL' here bypasses the application provided memory handler. */
|
|
|
|
ret = png_malloc_base(NULL/*use malloc*/, size);
|
2010-05-06 14:44:04 +00:00
|
|
|
|
2011-12-21 23:36:12 +00:00
|
|
|
if (ret == NULL)
|
|
|
|
png_error(png_ptr, "Out of Memory"); /* 'M' means png_malloc_default */
|
2010-05-06 14:44:04 +00:00
|
|
|
|
2011-12-21 23:36:12 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif /* PNG_USER_MEM_SUPPORTED */
|
2010-05-06 14:44:04 +00:00
|
|
|
|
2011-12-21 23:36:12 +00:00
|
|
|
/* This function was added at libpng version 1.2.3. The png_malloc_warn()
|
|
|
|
* function will issue a png_warning and return NULL instead of issuing a
|
|
|
|
* png_error, if it fails to allocate the requested memory.
|
|
|
|
*/
|
|
|
|
PNG_FUNCTION(png_voidp,PNGAPI
|
|
|
|
png_malloc_warn,(png_structp png_ptr, png_alloc_size_t size),PNG_ALLOCATED)
|
|
|
|
{
|
|
|
|
if (png_ptr != NULL)
|
|
|
|
{
|
|
|
|
png_voidp ret = png_malloc_base(png_ptr, size);
|
2010-05-06 14:44:04 +00:00
|
|
|
|
2011-12-21 23:36:12 +00:00
|
|
|
if (ret != NULL)
|
|
|
|
return ret;
|
1995-07-20 07:43:20 +00:00
|
|
|
|
2011-12-21 23:36:12 +00:00
|
|
|
png_warning(png_ptr, "Out of memory");
|
|
|
|
}
|
1995-07-20 07:43:20 +00:00
|
|
|
|
2011-12-21 23:36:12 +00:00
|
|
|
return NULL;
|
1995-07-20 07:43:20 +00:00
|
|
|
}
|
|
|
|
|
1998-06-06 20:31:35 +00:00
|
|
|
/* Free a pointer allocated by png_malloc(). If ptr is NULL, return
|
2009-05-16 01:39:34 +00:00
|
|
|
* without taking any action.
|
|
|
|
*/
|
2000-05-06 19:09:57 +00:00
|
|
|
void PNGAPI
|
1998-06-06 20:31:35 +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
|
|
|
|
2011-12-21 23:36:12 +00:00
|
|
|
#ifdef PNG_USER_MEM_SUPPORTED
|
1998-06-06 20:31:35 +00:00
|
|
|
if (png_ptr->free_fn != NULL)
|
2011-12-21 23:36:12 +00:00
|
|
|
png_ptr->free_fn(png_ptr, ptr);
|
2010-05-06 14:44:04 +00:00
|
|
|
|
2009-05-16 01:39:34 +00:00
|
|
|
else
|
|
|
|
png_free_default(png_ptr, ptr);
|
1998-06-06 20:31:35 +00:00
|
|
|
}
|
2010-08-02 13:00:10 +00:00
|
|
|
|
2011-12-21 23:36:12 +00:00
|
|
|
PNG_FUNCTION(void,PNGAPI
|
|
|
|
png_free_default,(png_structp png_ptr, png_voidp ptr),PNG_DEPRECATED)
|
1998-06-06 20:31:35 +00:00
|
|
|
{
|
1999-10-23 13:39:18 +00:00
|
|
|
if (png_ptr == NULL || ptr == NULL)
|
|
|
|
return;
|
2011-12-21 23:36:12 +00:00
|
|
|
#endif /* PNG_USER_MEM_SUPPORTED */
|
1999-10-23 13:39:18 +00:00
|
|
|
|
2008-07-10 14:13:13 +00:00
|
|
|
free(ptr);
|
1995-07-20 07:43:20 +00:00
|
|
|
}
|
1995-12-19 09:22:19 +00:00
|
|
|
|
1998-06-06 20:31:35 +00:00
|
|
|
#ifdef PNG_USER_MEM_SUPPORTED
|
|
|
|
/* This function is called when the application wants to use another method
|
|
|
|
* of allocating and freeing memory.
|
|
|
|
*/
|
2000-05-06 19:09:57 +00:00
|
|
|
void PNGAPI
|
1998-06-06 20:31:35 +00:00
|
|
|
png_set_mem_fn(png_structp png_ptr, png_voidp mem_ptr, png_malloc_ptr
|
|
|
|
malloc_fn, png_free_ptr free_fn)
|
|
|
|
{
|
2008-07-25 13:51:18 +00:00
|
|
|
if (png_ptr != NULL)
|
|
|
|
{
|
|
|
|
png_ptr->mem_ptr = mem_ptr;
|
|
|
|
png_ptr->malloc_fn = malloc_fn;
|
|
|
|
png_ptr->free_fn = free_fn;
|
2006-11-14 16:53:30 +00:00
|
|
|
}
|
1998-06-06 20:31:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* This function returns a pointer to the mem_ptr associated with the user
|
|
|
|
* functions. The application should free any memory associated with this
|
|
|
|
* pointer before png_write_destroy and png_read_destroy are called.
|
|
|
|
*/
|
2000-05-06 19:09:57 +00:00
|
|
|
png_voidp PNGAPI
|
2011-01-22 23:36:34 +00:00
|
|
|
png_get_mem_ptr(png_const_structp png_ptr)
|
1998-06-06 20:31:35 +00:00
|
|
|
{
|
2009-05-16 01:39:34 +00:00
|
|
|
if (png_ptr == NULL)
|
2011-12-21 23:36:12 +00:00
|
|
|
return NULL;
|
2010-05-06 14:44:04 +00:00
|
|
|
|
2011-12-21 23:36:12 +00:00
|
|
|
return png_ptr->mem_ptr;
|
1998-06-06 20:31:35 +00:00
|
|
|
}
|
|
|
|
#endif /* PNG_USER_MEM_SUPPORTED */
|
2006-02-21 04:09:05 +00:00
|
|
|
#endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */
|