blob: ca905d97b9c892e1d0d1ca20ca46ffed2d02ed60 [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-Pehrson13831bc2011-12-21 08:28:28 -06004 * Last changed in libpng 1.6.0 [(PENDING RELEASE)]
Glenn Randers-Pehrson64b863c2011-01-04 09:57:06 -06005 * Copyright (c) 1998-2011 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 Bowlerd332c672011-12-21 17:36:12 -060025png_destroy_png_struct(png_structp 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;
33 memset(png_ptr, 0, sizeof *png_ptr);
34 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 Bowler40b26032011-12-22 08:09:15 -060050png_calloc,(png_const_structp 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)
John Bowlerd332c672011-12-21 17:36:12 -060057 png_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 Bowler40b26032011-12-22 08:09:15 -060068png_malloc_base,(png_const_structp png_ptr, png_alloc_size_t size),
69 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-Pehrson3c1c9532011-12-21 18:11:51 -060076#ifdef PNG_USER_MEM_SUPPORTED
77 PNG_UNUSED(png_ptr)
78#endif
John Bowlerd332c672011-12-21 17:36:12 -060079 if (size > 0 && size <= ~(size_t)0
80# ifdef PNG_MAX_MALLOC_64K
81 && size <= 65536U
82# endif
83 )
84 {
Glenn Randers-Pehrson3c1c9532011-12-21 18:11:51 -060085#ifdef PNG_USER_MEM_SUPPORTED
John Bowlerd332c672011-12-21 17:36:12 -060086 if (png_ptr != NULL && png_ptr->malloc_fn != NULL)
John Bowler40b26032011-12-22 08:09:15 -060087 return png_ptr->malloc_fn(png_constcast(png_structp,png_ptr), size);
John Bowlerd332c672011-12-21 17:36:12 -060088
89 else
Glenn Randers-Pehrson3c1c9532011-12-21 18:11:51 -060090#endif
John Bowlerd332c672011-12-21 17:36:12 -060091 return malloc((size_t)size); /* checked for truncation above */
92 }
93
94 else
95 return NULL;
96}
97
98/* Various functions that have different error handling are derived from this.
99 * png_malloc always exists, but if PNG_USER_MEM_SUPPORTED is defined a separate
100 * function png_malloc_default is also provided.
101 */
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500102PNG_FUNCTION(png_voidp,PNGAPI
John Bowler40b26032011-12-22 08:09:15 -0600103png_malloc,(png_const_structp png_ptr, png_alloc_size_t size),PNG_ALLOCATED)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600104{
105 png_voidp ret;
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500106
John Bowlerd332c672011-12-21 17:36:12 -0600107 if (png_ptr == NULL)
108 return NULL;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600109
John Bowlerd332c672011-12-21 17:36:12 -0600110 ret = png_malloc_base(png_ptr, size);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500111
John Bowlerd332c672011-12-21 17:36:12 -0600112 if (ret == NULL)
113 png_error(png_ptr, "Out of memory"); /* 'm' means png_malloc */
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500114
John Bowlerd332c672011-12-21 17:36:12 -0600115 return ret;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500116}
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500117
John Bowlerd332c672011-12-21 17:36:12 -0600118#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500119PNG_FUNCTION(png_voidp,PNGAPI
John Bowler40b26032011-12-22 08:09:15 -0600120png_malloc_default,(png_const_structp png_ptr, png_alloc_size_t size),
John Bowlerd332c672011-12-21 17:36:12 -0600121 PNG_ALLOCATED PNG_DEPRECATED)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500122{
123 png_voidp ret;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500124
John Bowlerd332c672011-12-21 17:36:12 -0600125 if (png_ptr == NULL)
126 return NULL;
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500127
John Bowlerd332c672011-12-21 17:36:12 -0600128 /* Passing 'NULL' here bypasses the application provided memory handler. */
129 ret = png_malloc_base(NULL/*use malloc*/, size);
130
131 if (ret == NULL)
132 png_error(png_ptr, "Out of Memory"); /* 'M' means png_malloc_default */
133
134 return ret;
135}
136#endif /* PNG_USER_MEM_SUPPORTED */
137
138/* This function was added at libpng version 1.2.3. The png_malloc_warn()
139 * function will issue a png_warning and return NULL instead of issuing a
140 * png_error, if it fails to allocate the requested memory.
141 */
142PNG_FUNCTION(png_voidp,PNGAPI
John Bowler40b26032011-12-22 08:09:15 -0600143png_malloc_warn,(png_const_structp png_ptr, png_alloc_size_t size),
144 PNG_ALLOCATED)
John Bowlerd332c672011-12-21 17:36:12 -0600145{
146 if (png_ptr != NULL)
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600147 {
John Bowlerd332c672011-12-21 17:36:12 -0600148 png_voidp ret = png_malloc_base(png_ptr, size);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500149
John Bowlerd332c672011-12-21 17:36:12 -0600150 if (ret != NULL)
151 return ret;
152
153 png_warning(png_ptr, "Out of memory");
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600154 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600155
John Bowlerd332c672011-12-21 17:36:12 -0600156 return NULL;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600157}
158
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500159/* Free a pointer allocated by png_malloc(). If ptr is NULL, return
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500160 * without taking any action.
161 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500162void PNGAPI
John Bowler40b26032011-12-22 08:09:15 -0600163png_free(png_const_structp png_ptr, png_voidp ptr)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600164{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500165 if (png_ptr == NULL || ptr == NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600166 return;
Guy Schalnat0d580581995-07-20 02:43:20 -0500167
John Bowlerd332c672011-12-21 17:36:12 -0600168#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500169 if (png_ptr->free_fn != NULL)
John Bowler40b26032011-12-22 08:09:15 -0600170 png_ptr->free_fn(png_constcast(png_structp,png_ptr), ptr);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500171
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500172 else
173 png_free_default(png_ptr, ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500174}
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500175
John Bowlerd332c672011-12-21 17:36:12 -0600176PNG_FUNCTION(void,PNGAPI
John Bowler40b26032011-12-22 08:09:15 -0600177png_free_default,(png_const_structp png_ptr, png_voidp ptr),PNG_DEPRECATED)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500178{
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500179 if (png_ptr == NULL || ptr == NULL)
180 return;
John Bowlerd332c672011-12-21 17:36:12 -0600181#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500182
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500183 free(ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -0500184}
Guy Schalnat6d764711995-12-19 03:22:19 -0600185
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500186#ifdef PNG_USER_MEM_SUPPORTED
187/* This function is called when the application wants to use another method
188 * of allocating and freeing memory.
189 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500190void PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500191png_set_mem_fn(png_structp png_ptr, png_voidp mem_ptr, png_malloc_ptr
192 malloc_fn, png_free_ptr free_fn)
193{
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500194 if (png_ptr != NULL)
195 {
196 png_ptr->mem_ptr = mem_ptr;
197 png_ptr->malloc_fn = malloc_fn;
198 png_ptr->free_fn = free_fn;
Glenn Randers-Pehrson6b12c082006-11-14 10:53:30 -0600199 }
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500200}
201
202/* This function returns a pointer to the mem_ptr associated with the user
203 * functions. The application should free any memory associated with this
204 * pointer before png_write_destroy and png_read_destroy are called.
205 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500206png_voidp PNGAPI
John Bowler0a5c9c02011-01-22 17:36:34 -0600207png_get_mem_ptr(png_const_structp png_ptr)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500208{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500209 if (png_ptr == NULL)
John Bowlerd332c672011-12-21 17:36:12 -0600210 return NULL;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500211
John Bowlerd332c672011-12-21 17:36:12 -0600212 return png_ptr->mem_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500213}
214#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600215#endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */