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
|
|
|
*
|
2014-11-20 15:33:25 +00:00
|
|
|
* Last changed in libpng 1.6.15 [November 20, 2014]
|
2015-12-14 04:41:17 +00:00
|
|
|
* Copyright (c) 1998-2002,2004,2006-2014 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-24 15:12:00 +00:00
|
|
|
png_destroy_png_struct(png_structrp 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;
|
2013-03-02 20:58:22 +00:00
|
|
|
memset(png_ptr, 0, (sizeof *png_ptr));
|
2011-12-21 23:36:12 +00:00
|
|
|
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
|
2015-03-07 19:13:11 +00:00
|
|
|
* 64K. However, zlib may allocate more than 64K if you don't tell
|
2009-05-16 01:39:34 +00:00
|
|
|
* 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
|
2011-12-24 15:12:00 +00:00
|
|
|
png_calloc,(png_const_structrp 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)
|
2013-03-02 20:58:22 +00:00
|
|
|
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 */,
|
2011-12-24 15:12:00 +00:00
|
|
|
png_malloc_base,(png_const_structrp png_ptr, png_alloc_size_t size),
|
2011-12-22 14:09:15 +00:00
|
|
|
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.
|
|
|
|
*/
|
2013-11-22 20:58:04 +00:00
|
|
|
#ifndef PNG_USER_MEM_SUPPORTED
|
2011-12-22 00:11:51 +00:00
|
|
|
PNG_UNUSED(png_ptr)
|
|
|
|
#endif
|
2013-11-22 20:58:04 +00:00
|
|
|
|
2015-04-01 17:06:01 +00:00
|
|
|
/* Some compilers complain that this is always true. However, it
|
|
|
|
* can be false when integer overflow happens.
|
|
|
|
*/
|
2013-03-02 20:58:22 +00:00
|
|
|
if (size > 0 && size <= PNG_SIZE_MAX
|
2011-12-21 23:36:12 +00:00
|
|
|
# ifdef PNG_MAX_MALLOC_64K
|
|
|
|
&& size <= 65536U
|
|
|
|
# endif
|
|
|
|
)
|
|
|
|
{
|
2011-12-22 00:11:51 +00:00
|
|
|
#ifdef PNG_USER_MEM_SUPPORTED
|
2011-12-21 23:36:12 +00:00
|
|
|
if (png_ptr != NULL && png_ptr->malloc_fn != NULL)
|
2011-12-24 15:12:00 +00:00
|
|
|
return png_ptr->malloc_fn(png_constcast(png_structrp,png_ptr), size);
|
1996-01-16 07:51:56 +00:00
|
|
|
|
2011-12-21 23:36:12 +00:00
|
|
|
else
|
2011-12-22 00:11:51 +00:00
|
|
|
#endif
|
2011-12-21 23:36:12 +00:00
|
|
|
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
|
|
|
|
2013-11-22 20:58:04 +00:00
|
|
|
#if defined(PNG_TEXT_SUPPORTED) || defined(PNG_sPLT_SUPPORTED) ||\
|
|
|
|
defined(PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED)
|
2013-03-02 20:58:22 +00:00
|
|
|
/* This is really here only to work round a spurious warning in GCC 4.6 and 4.7
|
|
|
|
* that arises because of the checks in png_realloc_array that are repeated in
|
|
|
|
* png_malloc_array.
|
|
|
|
*/
|
|
|
|
static png_voidp
|
|
|
|
png_malloc_array_checked(png_const_structrp png_ptr, int nelements,
|
|
|
|
size_t element_size)
|
|
|
|
{
|
|
|
|
png_alloc_size_t req = nelements; /* known to be > 0 */
|
|
|
|
|
|
|
|
if (req <= PNG_SIZE_MAX/element_size)
|
|
|
|
return png_malloc_base(png_ptr, req * element_size);
|
|
|
|
|
|
|
|
/* The failure case when the request is too large */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
PNG_FUNCTION(png_voidp /* PRIVATE */,
|
|
|
|
png_malloc_array,(png_const_structrp png_ptr, int nelements,
|
|
|
|
size_t element_size),PNG_ALLOCATED)
|
|
|
|
{
|
|
|
|
if (nelements <= 0 || element_size == 0)
|
|
|
|
png_error(png_ptr, "internal error: array alloc");
|
|
|
|
|
|
|
|
return png_malloc_array_checked(png_ptr, nelements, element_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
PNG_FUNCTION(png_voidp /* PRIVATE */,
|
|
|
|
png_realloc_array,(png_const_structrp png_ptr, png_const_voidp old_array,
|
|
|
|
int old_elements, int add_elements, size_t element_size),PNG_ALLOCATED)
|
|
|
|
{
|
|
|
|
/* These are internal errors: */
|
|
|
|
if (add_elements <= 0 || element_size == 0 || old_elements < 0 ||
|
|
|
|
(old_array == NULL && old_elements > 0))
|
|
|
|
png_error(png_ptr, "internal error: array realloc");
|
|
|
|
|
|
|
|
/* Check for overflow on the elements count (so the caller does not have to
|
|
|
|
* check.)
|
|
|
|
*/
|
|
|
|
if (add_elements <= INT_MAX - old_elements)
|
|
|
|
{
|
|
|
|
png_voidp new_array = png_malloc_array_checked(png_ptr,
|
|
|
|
old_elements+add_elements, element_size);
|
|
|
|
|
|
|
|
if (new_array != NULL)
|
|
|
|
{
|
|
|
|
/* Because png_malloc_array worked the size calculations below cannot
|
|
|
|
* overflow.
|
|
|
|
*/
|
|
|
|
if (old_elements > 0)
|
|
|
|
memcpy(new_array, old_array, element_size*(unsigned)old_elements);
|
|
|
|
|
|
|
|
memset((char*)new_array + element_size*(unsigned)old_elements, 0,
|
|
|
|
element_size*(unsigned)add_elements);
|
|
|
|
|
|
|
|
return new_array;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL; /* error */
|
|
|
|
}
|
2013-11-22 20:58:04 +00:00
|
|
|
#endif /* TEXT || sPLT || STORE_UNKNOWN_CHUNKS */
|
2013-03-02 20:58:22 +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-24 15:12:00 +00:00
|
|
|
png_malloc,(png_const_structrp 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
|
2011-12-24 15:12:00 +00:00
|
|
|
png_malloc_default,(png_const_structrp png_ptr, png_alloc_size_t size),
|
2011-12-21 23:36:12 +00:00
|
|
|
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;
|
|
|
|
}
|
2014-11-07 04:11:39 +00:00
|
|
|
#endif /* USER_MEM */
|
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
|
2011-12-24 15:12:00 +00:00
|
|
|
png_malloc_warn,(png_const_structrp png_ptr, png_alloc_size_t size),
|
2011-12-22 14:09:15 +00:00
|
|
|
PNG_ALLOCATED)
|
2011-12-21 23:36:12 +00:00
|
|
|
{
|
|
|
|
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
|
2011-12-24 15:12:00 +00:00
|
|
|
png_free(png_const_structrp 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-24 15:12:00 +00:00
|
|
|
png_ptr->free_fn(png_constcast(png_structrp,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
|
2011-12-24 15:12:00 +00:00
|
|
|
png_free_default,(png_const_structrp 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;
|
2014-11-07 04:11:39 +00:00
|
|
|
#endif /* USER_MEM */
|
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
|
2011-12-24 15:12:00 +00:00
|
|
|
png_set_mem_fn(png_structrp png_ptr, png_voidp mem_ptr, png_malloc_ptr
|
1998-06-06 20:31:35 +00:00
|
|
|
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-12-24 15:12:00 +00:00
|
|
|
png_get_mem_ptr(png_const_structrp 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
|
|
|
}
|
2014-11-07 04:11:39 +00:00
|
|
|
#endif /* USER_MEM */
|
|
|
|
#endif /* READ || WRITE */
|