blob: daed74588f41be9c388cf2d45d5181d5cbf68805 [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
50png_calloc,(png_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 */,
68png_malloc_base,(png_structp png_ptr, png_alloc_size_t size),PNG_ALLOCATED)
69{
70 /* Moved to png_malloc_base from png_malloc_default in 1.6.0; the DOS
71 * allocators have also been removed in 1.6.0, so any 16-bit system now has
72 * to implement a user memory handler. This checks to be sure it isn't
73 * called with big numbers.
74 */
75 if (size > 0 && size <= ~(size_t)0
76# ifdef PNG_MAX_MALLOC_64K
77 && size <= 65536U
78# endif
79 )
80 {
81 if (png_ptr != NULL && png_ptr->malloc_fn != NULL)
82 return png_ptr->malloc_fn(png_ptr, size);
83
84 else
85 return malloc((size_t)size); /* checked for truncation above */
86 }
87
88 else
89 return NULL;
90}
91
92/* Various functions that have different error handling are derived from this.
93 * png_malloc always exists, but if PNG_USER_MEM_SUPPORTED is defined a separate
94 * function png_malloc_default is also provided.
95 */
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -050096PNG_FUNCTION(png_voidp,PNGAPI
97png_malloc,(png_structp png_ptr, png_alloc_size_t size),PNG_ALLOCATED)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -060098{
99 png_voidp ret;
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500100
John Bowlerd332c672011-12-21 17:36:12 -0600101 if (png_ptr == NULL)
102 return NULL;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600103
John Bowlerd332c672011-12-21 17:36:12 -0600104 ret = png_malloc_base(png_ptr, size);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500105
John Bowlerd332c672011-12-21 17:36:12 -0600106 if (ret == NULL)
107 png_error(png_ptr, "Out of memory"); /* 'm' means png_malloc */
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500108
John Bowlerd332c672011-12-21 17:36:12 -0600109 return ret;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500110}
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500111
John Bowlerd332c672011-12-21 17:36:12 -0600112#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500113PNG_FUNCTION(png_voidp,PNGAPI
John Bowlerd332c672011-12-21 17:36:12 -0600114png_malloc_default,(png_structp png_ptr, png_alloc_size_t size),
115 PNG_ALLOCATED PNG_DEPRECATED)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500116{
117 png_voidp ret;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500118
John Bowlerd332c672011-12-21 17:36:12 -0600119 if (png_ptr == NULL)
120 return NULL;
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500121
John Bowlerd332c672011-12-21 17:36:12 -0600122 /* Passing 'NULL' here bypasses the application provided memory handler. */
123 ret = png_malloc_base(NULL/*use malloc*/, size);
124
125 if (ret == NULL)
126 png_error(png_ptr, "Out of Memory"); /* 'M' means png_malloc_default */
127
128 return ret;
129}
130#endif /* PNG_USER_MEM_SUPPORTED */
131
132/* This function was added at libpng version 1.2.3. The png_malloc_warn()
133 * function will issue a png_warning and return NULL instead of issuing a
134 * png_error, if it fails to allocate the requested memory.
135 */
136PNG_FUNCTION(png_voidp,PNGAPI
137png_malloc_warn,(png_structp png_ptr, png_alloc_size_t size),PNG_ALLOCATED)
138{
139 if (png_ptr != NULL)
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600140 {
John Bowlerd332c672011-12-21 17:36:12 -0600141 png_voidp ret = png_malloc_base(png_ptr, size);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500142
John Bowlerd332c672011-12-21 17:36:12 -0600143 if (ret != NULL)
144 return ret;
145
146 png_warning(png_ptr, "Out of memory");
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600147 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600148
John Bowlerd332c672011-12-21 17:36:12 -0600149 return NULL;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600150}
151
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500152/* Free a pointer allocated by png_malloc(). If ptr is NULL, return
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500153 * without taking any action.
154 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500155void PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500156png_free(png_structp png_ptr, png_voidp ptr)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600157{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500158 if (png_ptr == NULL || ptr == NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600159 return;
Guy Schalnat0d580581995-07-20 02:43:20 -0500160
John Bowlerd332c672011-12-21 17:36:12 -0600161#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500162 if (png_ptr->free_fn != NULL)
John Bowlerd332c672011-12-21 17:36:12 -0600163 png_ptr->free_fn(png_ptr, ptr);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500164
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500165 else
166 png_free_default(png_ptr, ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500167}
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500168
John Bowlerd332c672011-12-21 17:36:12 -0600169PNG_FUNCTION(void,PNGAPI
170png_free_default,(png_structp png_ptr, png_voidp ptr),PNG_DEPRECATED)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500171{
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500172 if (png_ptr == NULL || ptr == NULL)
173 return;
John Bowlerd332c672011-12-21 17:36:12 -0600174#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500175
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500176 free(ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -0500177}
Guy Schalnat6d764711995-12-19 03:22:19 -0600178
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500179#ifdef PNG_USER_MEM_SUPPORTED
180/* This function is called when the application wants to use another method
181 * of allocating and freeing memory.
182 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500183void PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500184png_set_mem_fn(png_structp png_ptr, png_voidp mem_ptr, png_malloc_ptr
185 malloc_fn, png_free_ptr free_fn)
186{
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500187 if (png_ptr != NULL)
188 {
189 png_ptr->mem_ptr = mem_ptr;
190 png_ptr->malloc_fn = malloc_fn;
191 png_ptr->free_fn = free_fn;
Glenn Randers-Pehrson6b12c082006-11-14 10:53:30 -0600192 }
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500193}
194
195/* This function returns a pointer to the mem_ptr associated with the user
196 * functions. The application should free any memory associated with this
197 * pointer before png_write_destroy and png_read_destroy are called.
198 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500199png_voidp PNGAPI
John Bowler0a5c9c02011-01-22 17:36:34 -0600200png_get_mem_ptr(png_const_structp png_ptr)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500201{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500202 if (png_ptr == NULL)
John Bowlerd332c672011-12-21 17:36:12 -0600203 return NULL;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500204
John Bowlerd332c672011-12-21 17:36:12 -0600205 return png_ptr->mem_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500206}
207#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600208#endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */