blob: 8ee0866f67aa4ac9458f44e71bfff07bc392b521 [file] [log] [blame]
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001
Guy Schalnat0f716451995-11-28 11:22:13 -06002/* pngmem.c - stub functions for memory allocation
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06003 *
Glenn Randers-Pehrsonbe3977d2013-12-19 09:04:52 -06004 * Last changed in libpng 1.6.8 [December 19, 2013]
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06005 * Copyright (c) 1998-2013 Glenn Randers-Pehrson
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -05006 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06008 *
Glenn Randers-Pehrsonbfbf8652009-06-26 21:46:52 -05009 * This code is released under the libpng license.
Glenn Randers-Pehrsonc332bbc2009-06-25 13:43:50 -050010 * For conditions of distribution and use, see the disclaimer
Glenn Randers-Pehrson037023b2009-06-24 10:27:36 -050011 * and license in png.h
Glenn Randers-Pehrson3e61d792009-06-24 09:31:28 -050012 *
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -050013 * This file provides a location for all memory allocation. Users who
Glenn Randers-Pehrson345bc271998-06-14 14:43:31 -050014 * need special memory handling are expected to supply replacement
15 * functions for png_malloc() and png_free(), and to use
16 * png_create_read_struct_2() and png_create_write_struct_2() to
17 * identify the replacement functions.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060018 */
Guy Schalnat0d580581995-07-20 02:43:20 -050019
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -050020#include "pngpriv.h"
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -060021
Glenn Randers-Pehrsonc3cd22b2010-03-08 21:10:25 -060022#if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
John Bowlerd332c672011-12-21 17:36:12 -060023/* Free a png_struct */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050024void /* PRIVATE */
John Bowler5d567862011-12-24 09:12:00 -060025png_destroy_png_struct(png_structrp png_ptr)
Guy Schalnate5a37791996-06-05 15:50:50 -050026{
John Bowlerd332c672011-12-21 17:36:12 -060027 if (png_ptr != NULL)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -060028 {
John Bowlerd332c672011-12-21 17:36:12 -060029 /* png_free might call png_error and may certainly call
30 * png_get_mem_ptr, so fake a temporary png_struct to support this.
31 */
32 png_struct dummy_struct = *png_ptr;
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -060033 memset(png_ptr, 0, (sizeof *png_ptr));
John Bowlerd332c672011-12-21 17:36:12 -060034 png_free(&dummy_struct, png_ptr);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -050035
John Bowlerd332c672011-12-21 17:36:12 -060036# ifdef PNG_SETJMP_SUPPORTED
37 /* We may have a jmp_buf left to deallocate. */
38 png_free_jmpbuf(&dummy_struct);
39# endif
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -060040 }
Guy Schalnate5a37791996-06-05 15:50:50 -050041}
42
Guy Schalnatb2e01bd1996-01-26 01:38:47 -060043/* Allocate memory. For reasonable files, size should never exceed
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050044 * 64K. However, zlib may allocate more then 64K if you don't tell
45 * it not to. See zconf.h and png.h for more information. zlib does
46 * need to allocate exactly 64K, so whatever you call here must
47 * have the ability to do that.
48 */
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -050049PNG_FUNCTION(png_voidp,PNGAPI
John Bowler5d567862011-12-24 09:12:00 -060050png_calloc,(png_const_structrp png_ptr, png_alloc_size_t size),PNG_ALLOCATED)
Glenn Randers-Pehrson79134c62009-02-14 10:32:18 -060051{
52 png_voidp ret;
53
John Bowlerd332c672011-12-21 17:36:12 -060054 ret = png_malloc(png_ptr, size);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -050055
Glenn Randers-Pehrson79134c62009-02-14 10:32:18 -060056 if (ret != NULL)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -060057 memset(ret, 0, size);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -050058
John Bowlerd332c672011-12-21 17:36:12 -060059 return ret;
Glenn Randers-Pehrson79134c62009-02-14 10:32:18 -060060}
61
John Bowlerd332c672011-12-21 17:36:12 -060062/* png_malloc_base, an internal function added at libpng 1.6.0, does the work of
63 * allocating memory, taking into account limits and PNG_USER_MEM_SUPPORTED.
64 * Checking and error handling must happen outside this routine; it returns NULL
65 * if the allocation cannot be done (for any reason.)
66 */
67PNG_FUNCTION(png_voidp /* PRIVATE */,
John Bowler5d567862011-12-24 09:12:00 -060068png_malloc_base,(png_const_structrp png_ptr, png_alloc_size_t size),
John Bowler40b26032011-12-22 08:09:15 -060069 PNG_ALLOCATED)
John Bowlerd332c672011-12-21 17:36:12 -060070{
71 /* Moved to png_malloc_base from png_malloc_default in 1.6.0; the DOS
72 * allocators have also been removed in 1.6.0, so any 16-bit system now has
73 * to implement a user memory handler. This checks to be sure it isn't
74 * called with big numbers.
75 */
Glenn Randers-Pehrsonc9120502013-11-22 14:58:04 -060076#ifndef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson3c1c9532011-12-21 18:11:51 -060077 PNG_UNUSED(png_ptr)
78#endif
Glenn Randers-Pehrsonc9120502013-11-22 14:58:04 -060079
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -060080 if (size > 0 && size <= PNG_SIZE_MAX
John Bowlerd332c672011-12-21 17:36:12 -060081# ifdef PNG_MAX_MALLOC_64K
82 && size <= 65536U
83# endif
84 )
85 {
Glenn Randers-Pehrson3c1c9532011-12-21 18:11:51 -060086#ifdef PNG_USER_MEM_SUPPORTED
John Bowlerd332c672011-12-21 17:36:12 -060087 if (png_ptr != NULL && png_ptr->malloc_fn != NULL)
John Bowler5d567862011-12-24 09:12:00 -060088 return png_ptr->malloc_fn(png_constcast(png_structrp,png_ptr), size);
John Bowlerd332c672011-12-21 17:36:12 -060089
90 else
Glenn Randers-Pehrson3c1c9532011-12-21 18:11:51 -060091#endif
John Bowlerd332c672011-12-21 17:36:12 -060092 return malloc((size_t)size); /* checked for truncation above */
93 }
94
95 else
96 return NULL;
97}
98
Glenn Randers-Pehrsonc9120502013-11-22 14:58:04 -060099#if defined(PNG_TEXT_SUPPORTED) || defined(PNG_sPLT_SUPPORTED) ||\
100 defined(PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600101/* This is really here only to work round a spurious warning in GCC 4.6 and 4.7
102 * that arises because of the checks in png_realloc_array that are repeated in
103 * png_malloc_array.
104 */
105static png_voidp
106png_malloc_array_checked(png_const_structrp png_ptr, int nelements,
107 size_t element_size)
108{
109 png_alloc_size_t req = nelements; /* known to be > 0 */
110
111 if (req <= PNG_SIZE_MAX/element_size)
112 return png_malloc_base(png_ptr, req * element_size);
113
114 /* The failure case when the request is too large */
115 return NULL;
116}
117
118PNG_FUNCTION(png_voidp /* PRIVATE */,
119png_malloc_array,(png_const_structrp png_ptr, int nelements,
120 size_t element_size),PNG_ALLOCATED)
121{
122 if (nelements <= 0 || element_size == 0)
123 png_error(png_ptr, "internal error: array alloc");
124
125 return png_malloc_array_checked(png_ptr, nelements, element_size);
126}
127
128PNG_FUNCTION(png_voidp /* PRIVATE */,
129png_realloc_array,(png_const_structrp png_ptr, png_const_voidp old_array,
130 int old_elements, int add_elements, size_t element_size),PNG_ALLOCATED)
131{
132 /* These are internal errors: */
133 if (add_elements <= 0 || element_size == 0 || old_elements < 0 ||
134 (old_array == NULL && old_elements > 0))
135 png_error(png_ptr, "internal error: array realloc");
136
137 /* Check for overflow on the elements count (so the caller does not have to
138 * check.)
139 */
140 if (add_elements <= INT_MAX - old_elements)
141 {
142 png_voidp new_array = png_malloc_array_checked(png_ptr,
143 old_elements+add_elements, element_size);
144
145 if (new_array != NULL)
146 {
147 /* Because png_malloc_array worked the size calculations below cannot
148 * overflow.
149 */
150 if (old_elements > 0)
151 memcpy(new_array, old_array, element_size*(unsigned)old_elements);
152
153 memset((char*)new_array + element_size*(unsigned)old_elements, 0,
154 element_size*(unsigned)add_elements);
155
156 return new_array;
157 }
158 }
159
160 return NULL; /* error */
161}
Glenn Randers-Pehrsonc9120502013-11-22 14:58:04 -0600162#endif /* TEXT || sPLT || STORE_UNKNOWN_CHUNKS */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600163
John Bowlerd332c672011-12-21 17:36:12 -0600164/* Various functions that have different error handling are derived from this.
165 * png_malloc always exists, but if PNG_USER_MEM_SUPPORTED is defined a separate
166 * function png_malloc_default is also provided.
167 */
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500168PNG_FUNCTION(png_voidp,PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600169png_malloc,(png_const_structrp png_ptr, png_alloc_size_t size),PNG_ALLOCATED)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600170{
171 png_voidp ret;
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500172
John Bowlerd332c672011-12-21 17:36:12 -0600173 if (png_ptr == NULL)
174 return NULL;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600175
John Bowlerd332c672011-12-21 17:36:12 -0600176 ret = png_malloc_base(png_ptr, size);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500177
John Bowlerd332c672011-12-21 17:36:12 -0600178 if (ret == NULL)
179 png_error(png_ptr, "Out of memory"); /* 'm' means png_malloc */
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500180
John Bowlerd332c672011-12-21 17:36:12 -0600181 return ret;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500182}
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500183
John Bowlerd332c672011-12-21 17:36:12 -0600184#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500185PNG_FUNCTION(png_voidp,PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600186png_malloc_default,(png_const_structrp png_ptr, png_alloc_size_t size),
John Bowlerd332c672011-12-21 17:36:12 -0600187 PNG_ALLOCATED PNG_DEPRECATED)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500188{
189 png_voidp ret;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500190
John Bowlerd332c672011-12-21 17:36:12 -0600191 if (png_ptr == NULL)
192 return NULL;
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500193
John Bowlerd332c672011-12-21 17:36:12 -0600194 /* Passing 'NULL' here bypasses the application provided memory handler. */
195 ret = png_malloc_base(NULL/*use malloc*/, size);
196
197 if (ret == NULL)
198 png_error(png_ptr, "Out of Memory"); /* 'M' means png_malloc_default */
199
200 return ret;
201}
202#endif /* PNG_USER_MEM_SUPPORTED */
203
204/* This function was added at libpng version 1.2.3. The png_malloc_warn()
205 * function will issue a png_warning and return NULL instead of issuing a
206 * png_error, if it fails to allocate the requested memory.
207 */
208PNG_FUNCTION(png_voidp,PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600209png_malloc_warn,(png_const_structrp png_ptr, png_alloc_size_t size),
John Bowler40b26032011-12-22 08:09:15 -0600210 PNG_ALLOCATED)
John Bowlerd332c672011-12-21 17:36:12 -0600211{
212 if (png_ptr != NULL)
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600213 {
John Bowlerd332c672011-12-21 17:36:12 -0600214 png_voidp ret = png_malloc_base(png_ptr, size);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500215
John Bowlerd332c672011-12-21 17:36:12 -0600216 if (ret != NULL)
217 return ret;
218
219 png_warning(png_ptr, "Out of memory");
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600220 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600221
John Bowlerd332c672011-12-21 17:36:12 -0600222 return NULL;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600223}
224
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500225/* Free a pointer allocated by png_malloc(). If ptr is NULL, return
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500226 * without taking any action.
227 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500228void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600229png_free(png_const_structrp png_ptr, png_voidp ptr)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600230{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500231 if (png_ptr == NULL || ptr == NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600232 return;
Guy Schalnat0d580581995-07-20 02:43:20 -0500233
John Bowlerd332c672011-12-21 17:36:12 -0600234#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500235 if (png_ptr->free_fn != NULL)
John Bowler5d567862011-12-24 09:12:00 -0600236 png_ptr->free_fn(png_constcast(png_structrp,png_ptr), ptr);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500237
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500238 else
239 png_free_default(png_ptr, ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500240}
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500241
John Bowlerd332c672011-12-21 17:36:12 -0600242PNG_FUNCTION(void,PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600243png_free_default,(png_const_structrp png_ptr, png_voidp ptr),PNG_DEPRECATED)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500244{
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500245 if (png_ptr == NULL || ptr == NULL)
246 return;
John Bowlerd332c672011-12-21 17:36:12 -0600247#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500248
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500249 free(ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -0500250}
Guy Schalnat6d764711995-12-19 03:22:19 -0600251
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500252#ifdef PNG_USER_MEM_SUPPORTED
253/* This function is called when the application wants to use another method
254 * of allocating and freeing memory.
255 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500256void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600257png_set_mem_fn(png_structrp png_ptr, png_voidp mem_ptr, png_malloc_ptr
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500258 malloc_fn, png_free_ptr free_fn)
259{
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500260 if (png_ptr != NULL)
261 {
262 png_ptr->mem_ptr = mem_ptr;
263 png_ptr->malloc_fn = malloc_fn;
264 png_ptr->free_fn = free_fn;
Glenn Randers-Pehrson6b12c082006-11-14 10:53:30 -0600265 }
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500266}
267
268/* This function returns a pointer to the mem_ptr associated with the user
269 * functions. The application should free any memory associated with this
270 * pointer before png_write_destroy and png_read_destroy are called.
271 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500272png_voidp PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600273png_get_mem_ptr(png_const_structrp png_ptr)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500274{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500275 if (png_ptr == NULL)
John Bowlerd332c672011-12-21 17:36:12 -0600276 return NULL;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500277
John Bowlerd332c672011-12-21 17:36:12 -0600278 return png_ptr->mem_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500279}
280#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600281#endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */