blob: 7bcfd005072b8bd317a567e2095f2f8d36e5a7fd [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-Pehrsone8ef6892014-11-20 09:33:25 -06004 * Last changed in libpng 1.6.15 [November 20, 2014]
Glenn Randers-Pehrson4d8de332015-12-13 22:41:17 -06005 * Copyright (c) 1998-2002,2004,2006-2014 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-Pehrsonbbe2be32015-03-07 13:13:11 -060044 * 64K. However, zlib may allocate more than 64K if you don't tell
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050045 * 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-Pehrsonc861dc82015-04-01 12:06:01 -050080 /* Some compilers complain that this is always true. However, it
81 * can be false when integer overflow happens.
82 */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -060083 if (size > 0 && size <= PNG_SIZE_MAX
John Bowlerd332c672011-12-21 17:36:12 -060084# ifdef PNG_MAX_MALLOC_64K
85 && size <= 65536U
86# endif
87 )
88 {
Glenn Randers-Pehrson3c1c9532011-12-21 18:11:51 -060089#ifdef PNG_USER_MEM_SUPPORTED
John Bowlerd332c672011-12-21 17:36:12 -060090 if (png_ptr != NULL && png_ptr->malloc_fn != NULL)
John Bowler5d567862011-12-24 09:12:00 -060091 return png_ptr->malloc_fn(png_constcast(png_structrp,png_ptr), size);
John Bowlerd332c672011-12-21 17:36:12 -060092
93 else
Glenn Randers-Pehrson3c1c9532011-12-21 18:11:51 -060094#endif
John Bowlerd332c672011-12-21 17:36:12 -060095 return malloc((size_t)size); /* checked for truncation above */
96 }
97
98 else
99 return NULL;
100}
101
Glenn Randers-Pehrsonc9120502013-11-22 14:58:04 -0600102#if defined(PNG_TEXT_SUPPORTED) || defined(PNG_sPLT_SUPPORTED) ||\
103 defined(PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600104/* This is really here only to work round a spurious warning in GCC 4.6 and 4.7
105 * that arises because of the checks in png_realloc_array that are repeated in
106 * png_malloc_array.
107 */
108static png_voidp
109png_malloc_array_checked(png_const_structrp png_ptr, int nelements,
110 size_t element_size)
111{
112 png_alloc_size_t req = nelements; /* known to be > 0 */
113
114 if (req <= PNG_SIZE_MAX/element_size)
115 return png_malloc_base(png_ptr, req * element_size);
116
117 /* The failure case when the request is too large */
118 return NULL;
119}
120
121PNG_FUNCTION(png_voidp /* PRIVATE */,
122png_malloc_array,(png_const_structrp png_ptr, int nelements,
123 size_t element_size),PNG_ALLOCATED)
124{
125 if (nelements <= 0 || element_size == 0)
126 png_error(png_ptr, "internal error: array alloc");
127
128 return png_malloc_array_checked(png_ptr, nelements, element_size);
129}
130
131PNG_FUNCTION(png_voidp /* PRIVATE */,
132png_realloc_array,(png_const_structrp png_ptr, png_const_voidp old_array,
133 int old_elements, int add_elements, size_t element_size),PNG_ALLOCATED)
134{
135 /* These are internal errors: */
136 if (add_elements <= 0 || element_size == 0 || old_elements < 0 ||
137 (old_array == NULL && old_elements > 0))
138 png_error(png_ptr, "internal error: array realloc");
139
140 /* Check for overflow on the elements count (so the caller does not have to
141 * check.)
142 */
143 if (add_elements <= INT_MAX - old_elements)
144 {
145 png_voidp new_array = png_malloc_array_checked(png_ptr,
146 old_elements+add_elements, element_size);
147
148 if (new_array != NULL)
149 {
150 /* Because png_malloc_array worked the size calculations below cannot
151 * overflow.
152 */
153 if (old_elements > 0)
154 memcpy(new_array, old_array, element_size*(unsigned)old_elements);
155
156 memset((char*)new_array + element_size*(unsigned)old_elements, 0,
157 element_size*(unsigned)add_elements);
158
159 return new_array;
160 }
161 }
162
163 return NULL; /* error */
164}
Glenn Randers-Pehrsonc9120502013-11-22 14:58:04 -0600165#endif /* TEXT || sPLT || STORE_UNKNOWN_CHUNKS */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600166
John Bowlerd332c672011-12-21 17:36:12 -0600167/* Various functions that have different error handling are derived from this.
168 * png_malloc always exists, but if PNG_USER_MEM_SUPPORTED is defined a separate
169 * function png_malloc_default is also provided.
170 */
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500171PNG_FUNCTION(png_voidp,PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600172png_malloc,(png_const_structrp png_ptr, png_alloc_size_t size),PNG_ALLOCATED)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600173{
174 png_voidp ret;
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500175
John Bowlerd332c672011-12-21 17:36:12 -0600176 if (png_ptr == NULL)
177 return NULL;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600178
John Bowlerd332c672011-12-21 17:36:12 -0600179 ret = png_malloc_base(png_ptr, size);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500180
John Bowlerd332c672011-12-21 17:36:12 -0600181 if (ret == NULL)
182 png_error(png_ptr, "Out of memory"); /* 'm' means png_malloc */
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500183
John Bowlerd332c672011-12-21 17:36:12 -0600184 return ret;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500185}
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500186
John Bowlerd332c672011-12-21 17:36:12 -0600187#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500188PNG_FUNCTION(png_voidp,PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600189png_malloc_default,(png_const_structrp png_ptr, png_alloc_size_t size),
John Bowlerd332c672011-12-21 17:36:12 -0600190 PNG_ALLOCATED PNG_DEPRECATED)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500191{
192 png_voidp ret;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500193
John Bowlerd332c672011-12-21 17:36:12 -0600194 if (png_ptr == NULL)
195 return NULL;
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500196
John Bowlerd332c672011-12-21 17:36:12 -0600197 /* Passing 'NULL' here bypasses the application provided memory handler. */
198 ret = png_malloc_base(NULL/*use malloc*/, size);
199
200 if (ret == NULL)
201 png_error(png_ptr, "Out of Memory"); /* 'M' means png_malloc_default */
202
203 return ret;
204}
Glenn Randers-Pehrsoncda68df2014-11-06 22:11:39 -0600205#endif /* USER_MEM */
John Bowlerd332c672011-12-21 17:36:12 -0600206
207/* This function was added at libpng version 1.2.3. The png_malloc_warn()
208 * function will issue a png_warning and return NULL instead of issuing a
209 * png_error, if it fails to allocate the requested memory.
210 */
211PNG_FUNCTION(png_voidp,PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600212png_malloc_warn,(png_const_structrp png_ptr, png_alloc_size_t size),
John Bowler40b26032011-12-22 08:09:15 -0600213 PNG_ALLOCATED)
John Bowlerd332c672011-12-21 17:36:12 -0600214{
215 if (png_ptr != NULL)
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600216 {
John Bowlerd332c672011-12-21 17:36:12 -0600217 png_voidp ret = png_malloc_base(png_ptr, size);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500218
John Bowlerd332c672011-12-21 17:36:12 -0600219 if (ret != NULL)
220 return ret;
221
222 png_warning(png_ptr, "Out of memory");
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600223 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600224
John Bowlerd332c672011-12-21 17:36:12 -0600225 return NULL;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600226}
227
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500228/* Free a pointer allocated by png_malloc(). If ptr is NULL, return
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500229 * without taking any action.
230 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500231void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600232png_free(png_const_structrp png_ptr, png_voidp ptr)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600233{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500234 if (png_ptr == NULL || ptr == NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600235 return;
Guy Schalnat0d580581995-07-20 02:43:20 -0500236
John Bowlerd332c672011-12-21 17:36:12 -0600237#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500238 if (png_ptr->free_fn != NULL)
John Bowler5d567862011-12-24 09:12:00 -0600239 png_ptr->free_fn(png_constcast(png_structrp,png_ptr), ptr);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500240
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500241 else
242 png_free_default(png_ptr, ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500243}
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500244
John Bowlerd332c672011-12-21 17:36:12 -0600245PNG_FUNCTION(void,PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600246png_free_default,(png_const_structrp png_ptr, png_voidp ptr),PNG_DEPRECATED)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500247{
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500248 if (png_ptr == NULL || ptr == NULL)
249 return;
Glenn Randers-Pehrsoncda68df2014-11-06 22:11:39 -0600250#endif /* USER_MEM */
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500251
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500252 free(ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -0500253}
Guy Schalnat6d764711995-12-19 03:22:19 -0600254
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500255#ifdef PNG_USER_MEM_SUPPORTED
256/* This function is called when the application wants to use another method
257 * of allocating and freeing memory.
258 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500259void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600260png_set_mem_fn(png_structrp png_ptr, png_voidp mem_ptr, png_malloc_ptr
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500261 malloc_fn, png_free_ptr free_fn)
262{
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500263 if (png_ptr != NULL)
264 {
265 png_ptr->mem_ptr = mem_ptr;
266 png_ptr->malloc_fn = malloc_fn;
267 png_ptr->free_fn = free_fn;
Glenn Randers-Pehrson6b12c082006-11-14 10:53:30 -0600268 }
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500269}
270
271/* This function returns a pointer to the mem_ptr associated with the user
272 * functions. The application should free any memory associated with this
273 * pointer before png_write_destroy and png_read_destroy are called.
274 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500275png_voidp PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600276png_get_mem_ptr(png_const_structrp png_ptr)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500277{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500278 if (png_ptr == NULL)
John Bowlerd332c672011-12-21 17:36:12 -0600279 return NULL;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500280
John Bowlerd332c672011-12-21 17:36:12 -0600281 return png_ptr->mem_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500282}
Glenn Randers-Pehrsoncda68df2014-11-06 22:11:39 -0600283#endif /* USER_MEM */
284#endif /* READ || WRITE */