1998-03-07 07:06:55 -05:00
|
|
|
|
1995-11-28 12:22:13 -05:00
|
|
|
/* pngmem.c - stub functions for memory allocation
|
1998-01-01 08:13:13 -05:00
|
|
|
*
|
2011-12-21 09:28:28 -05:00
|
|
|
* Last changed in libpng 1.6.0 [(PENDING RELEASE)]
|
2011-01-04 10:57:06 -05:00
|
|
|
* Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
2000-06-04 15:29:29 -04: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 08:13:13 -05:00
|
|
|
*
|
2009-06-26 22:46:52 -04:00
|
|
|
* This code is released under the libpng license.
|
2009-06-25 14:43:50 -04:00
|
|
|
* For conditions of distribution and use, see the disclaimer
|
2009-06-24 11:27:36 -04:00
|
|
|
* and license in png.h
|
2009-06-24 10:31:28 -04:00
|
|
|
*
|
1998-04-21 16:03:57 -04:00
|
|
|
* This file provides a location for all memory allocation. Users who
|
1998-06-14 15:43:31 -04: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 08:13:13 -05:00
|
|
|
*/
|
1995-07-20 03:43:20 -04:00
|
|
|
|
2008-07-10 10:13:13 -04:00
|
|
|
#include "pngpriv.h"
|
2006-02-20 23:09:05 -05:00
|
|
|
|
2010-03-08 22:10:25 -05:00
|
|
|
#if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
|
2011-12-21 18:36:12 -05:00
|
|
|
/* Free a png_struct */
|
2000-05-06 15:09:57 -04:00
|
|
|
void /* PRIVATE */
|
2011-12-21 18:36:12 -05:00
|
|
|
png_destroy_png_struct(png_structp png_ptr)
|
1996-06-05 16:50:50 -04:00
|
|
|
{
|
2011-12-21 18:36:12 -05:00
|
|
|
if (png_ptr != NULL)
|
1998-01-30 22:45:12 -05:00
|
|
|
{
|
2011-12-21 18:36:12 -05: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-30 22:45:12 -05:00
|
|
|
}
|
1996-06-05 16:50:50 -04:00
|
|
|
}
|
|
|
|
|
1996-01-16 02:51:56 -05:00
|
|
|
/* Allocate memory. For reasonable files, size should never exceed
|
2009-05-15 21:39:34 -04: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 09:00:10 -04:00
|
|
|
PNG_FUNCTION(png_voidp,PNGAPI
|
2011-12-22 09:09:15 -05:00
|
|
|
png_calloc,(png_const_structp png_ptr, png_alloc_size_t size),PNG_ALLOCATED)
|
2009-02-14 11:32:18 -05:00
|
|
|
{
|
|
|
|
png_voidp ret;
|
|
|
|
|
2011-12-21 18:36:12 -05:00
|
|
|
ret = png_malloc(png_ptr, size);
|
2010-05-06 10:44:04 -04:00
|
|
|
|
2009-02-14 11:32:18 -05:00
|
|
|
if (ret != NULL)
|
2011-12-21 18:36:12 -05:00
|
|
|
png_memset(ret, 0, size);
|
2010-05-06 10:44:04 -04:00
|
|
|
|
2011-12-21 18:36:12 -05:00
|
|
|
return ret;
|
2009-02-14 11:32:18 -05:00
|
|
|
}
|
|
|
|
|
2011-12-21 18:36:12 -05: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 */,
|
2011-12-22 09:09:15 -05:00
|
|
|
png_malloc_base,(png_const_structp png_ptr, png_alloc_size_t size),
|
|
|
|
PNG_ALLOCATED)
|
1996-01-16 02:51:56 -05:00
|
|
|
{
|
2011-12-21 18:36:12 -05: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.
|
|
|
|
*/
|
2011-12-21 19:11:51 -05:00
|
|
|
#ifdef PNG_USER_MEM_SUPPORTED
|
|
|
|
PNG_UNUSED(png_ptr)
|
|
|
|
#endif
|
2011-12-21 18:36:12 -05:00
|
|
|
if (size > 0 && size <= ~(size_t)0
|
|
|
|
# ifdef PNG_MAX_MALLOC_64K
|
|
|
|
&& size <= 65536U
|
|
|
|
# endif
|
|
|
|
)
|
|
|
|
{
|
2011-12-21 19:11:51 -05:00
|
|
|
#ifdef PNG_USER_MEM_SUPPORTED
|
2011-12-21 18:36:12 -05:00
|
|
|
if (png_ptr != NULL && png_ptr->malloc_fn != NULL)
|
2011-12-22 09:09:15 -05:00
|
|
|
return png_ptr->malloc_fn(png_constcast(png_structp,png_ptr), size);
|
1996-01-16 02:51:56 -05:00
|
|
|
|
2011-12-21 18:36:12 -05:00
|
|
|
else
|
2011-12-21 19:11:51 -05:00
|
|
|
#endif
|
2011-12-21 18:36:12 -05:00
|
|
|
return malloc((size_t)size); /* checked for truncation above */
|
|
|
|
}
|
2010-05-06 10:44:04 -04:00
|
|
|
|
1998-06-06 16:31:35 -04:00
|
|
|
else
|
2011-12-21 18:36:12 -05:00
|
|
|
return NULL;
|
1998-06-06 16:31:35 -04:00
|
|
|
}
|
2002-05-25 12:12:10 -04:00
|
|
|
|
2011-12-21 18:36:12 -05: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 09:00:10 -04:00
|
|
|
PNG_FUNCTION(png_voidp,PNGAPI
|
2011-12-22 09:09:15 -05:00
|
|
|
png_malloc,(png_const_structp png_ptr, png_alloc_size_t size),PNG_ALLOCATED)
|
1998-06-06 16:31:35 -04:00
|
|
|
{
|
|
|
|
png_voidp ret;
|
|
|
|
|
2011-12-21 18:36:12 -05:00
|
|
|
if (png_ptr == NULL)
|
|
|
|
return NULL;
|
2004-08-04 07:34:52 -04:00
|
|
|
|
2011-12-21 18:36:12 -05:00
|
|
|
ret = png_malloc_base(png_ptr, size);
|
2010-05-06 10:44:04 -04:00
|
|
|
|
2011-12-21 18:36:12 -05:00
|
|
|
if (ret == NULL)
|
|
|
|
png_error(png_ptr, "Out of memory"); /* 'm' means png_malloc */
|
1995-07-20 03:43:20 -04:00
|
|
|
|
2011-12-21 18:36:12 -05:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef PNG_USER_MEM_SUPPORTED
|
|
|
|
PNG_FUNCTION(png_voidp,PNGAPI
|
2011-12-22 09:09:15 -05:00
|
|
|
png_malloc_default,(png_const_structp png_ptr, png_alloc_size_t size),
|
2011-12-21 18:36:12 -05:00
|
|
|
PNG_ALLOCATED PNG_DEPRECATED)
|
|
|
|
{
|
|
|
|
png_voidp ret;
|
2010-05-06 10:44:04 -04:00
|
|
|
|
2011-12-21 18:36:12 -05:00
|
|
|
if (png_ptr == NULL)
|
|
|
|
return NULL;
|
2010-05-06 10:44:04 -04:00
|
|
|
|
2011-12-21 18:36:12 -05:00
|
|
|
/* Passing 'NULL' here bypasses the application provided memory handler. */
|
|
|
|
ret = png_malloc_base(NULL/*use malloc*/, size);
|
2010-05-06 10:44:04 -04:00
|
|
|
|
2011-12-21 18:36:12 -05:00
|
|
|
if (ret == NULL)
|
|
|
|
png_error(png_ptr, "Out of Memory"); /* 'M' means png_malloc_default */
|
2010-05-06 10:44:04 -04:00
|
|
|
|
2011-12-21 18:36:12 -05:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif /* PNG_USER_MEM_SUPPORTED */
|
2010-05-06 10:44:04 -04:00
|
|
|
|
2011-12-21 18:36:12 -05: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
|
2011-12-22 09:09:15 -05:00
|
|
|
png_malloc_warn,(png_const_structp png_ptr, png_alloc_size_t size),
|
|
|
|
PNG_ALLOCATED)
|
2011-12-21 18:36:12 -05:00
|
|
|
{
|
|
|
|
if (png_ptr != NULL)
|
|
|
|
{
|
|
|
|
png_voidp ret = png_malloc_base(png_ptr, size);
|
2010-05-06 10:44:04 -04:00
|
|
|
|
2011-12-21 18:36:12 -05:00
|
|
|
if (ret != NULL)
|
|
|
|
return ret;
|
1995-07-20 03:43:20 -04:00
|
|
|
|
2011-12-21 18:36:12 -05:00
|
|
|
png_warning(png_ptr, "Out of memory");
|
|
|
|
}
|
1995-07-20 03:43:20 -04:00
|
|
|
|
2011-12-21 18:36:12 -05:00
|
|
|
return NULL;
|
1995-07-20 03:43:20 -04:00
|
|
|
}
|
|
|
|
|
1998-06-06 16:31:35 -04:00
|
|
|
/* Free a pointer allocated by png_malloc(). If ptr is NULL, return
|
2009-05-15 21:39:34 -04:00
|
|
|
* without taking any action.
|
|
|
|
*/
|
2000-05-06 15:09:57 -04:00
|
|
|
void PNGAPI
|
2011-12-22 09:09:15 -05:00
|
|
|
png_free(png_const_structp png_ptr, png_voidp ptr)
|
1995-07-20 03:43:20 -04:00
|
|
|
{
|
1997-05-16 03:46:07 -04:00
|
|
|
if (png_ptr == NULL || ptr == NULL)
|
1996-01-26 02:38:47 -05:00
|
|
|
return;
|
1995-07-20 03:43:20 -04:00
|
|
|
|
2011-12-21 18:36:12 -05:00
|
|
|
#ifdef PNG_USER_MEM_SUPPORTED
|
1998-06-06 16:31:35 -04:00
|
|
|
if (png_ptr->free_fn != NULL)
|
2011-12-22 09:09:15 -05:00
|
|
|
png_ptr->free_fn(png_constcast(png_structp,png_ptr), ptr);
|
2010-05-06 10:44:04 -04:00
|
|
|
|
2009-05-15 21:39:34 -04:00
|
|
|
else
|
|
|
|
png_free_default(png_ptr, ptr);
|
1998-06-06 16:31:35 -04:00
|
|
|
}
|
2010-08-02 09:00:10 -04:00
|
|
|
|
2011-12-21 18:36:12 -05:00
|
|
|
PNG_FUNCTION(void,PNGAPI
|
2011-12-22 09:09:15 -05:00
|
|
|
png_free_default,(png_const_structp png_ptr, png_voidp ptr),PNG_DEPRECATED)
|
1998-06-06 16:31:35 -04:00
|
|
|
{
|
1999-10-23 09:39:18 -04:00
|
|
|
if (png_ptr == NULL || ptr == NULL)
|
|
|
|
return;
|
2011-12-21 18:36:12 -05:00
|
|
|
#endif /* PNG_USER_MEM_SUPPORTED */
|
1999-10-23 09:39:18 -04:00
|
|
|
|
2008-07-10 10:13:13 -04:00
|
|
|
free(ptr);
|
1995-07-20 03:43:20 -04:00
|
|
|
}
|
1995-12-19 04:22:19 -05:00
|
|
|
|
1998-06-06 16:31:35 -04: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 15:09:57 -04:00
|
|
|
void PNGAPI
|
1998-06-06 16:31:35 -04: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 09:51:18 -04: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 11:53:30 -05:00
|
|
|
}
|
1998-06-06 16:31:35 -04: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 15:09:57 -04:00
|
|
|
png_voidp PNGAPI
|
2011-01-22 18:36:34 -05:00
|
|
|
png_get_mem_ptr(png_const_structp png_ptr)
|
1998-06-06 16:31:35 -04:00
|
|
|
{
|
2009-05-15 21:39:34 -04:00
|
|
|
if (png_ptr == NULL)
|
2011-12-21 18:36:12 -05:00
|
|
|
return NULL;
|
2010-05-06 10:44:04 -04:00
|
|
|
|
2011-12-21 18:36:12 -05:00
|
|
|
return png_ptr->mem_ptr;
|
1998-06-06 16:31:35 -04:00
|
|
|
}
|
|
|
|
#endif /* PNG_USER_MEM_SUPPORTED */
|
2006-02-20 23:09:05 -05:00
|
|
|
#endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */
|