blob: 6c187341724eca89f0ee61f3aad3fd92cd4b6ed3 [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-Pehrson glennrp@comcast.net11a3c7b2009-05-15 20:33:24 -05004 * Last changed in libpng 1.4.0 [May 15, 2009]
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06005 * For conditions of distribution and use, see copyright notice in png.h
Glenn Randers-Pehrson79134c62009-02-14 10:32:18 -06006 * Copyright (c) 1998-2009 Glenn Randers-Pehrson
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -05007 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
8 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06009 *
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -050010 * This file provides a location for all memory allocation. Users who
Glenn Randers-Pehrson345bc271998-06-14 14:43:31 -050011 * need special memory handling are expected to supply replacement
12 * functions for png_malloc() and png_free(), and to use
13 * png_create_read_struct_2() and png_create_write_struct_2() to
14 * identify the replacement functions.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060015 */
Guy Schalnat0d580581995-07-20 02:43:20 -050016
Guy Schalnat0d580581995-07-20 02:43:20 -050017#include "png.h"
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -060018#if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -050019#include "pngpriv.h"
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -060020
Guy Schalnat4ee97b01996-01-16 01:51:56 -060021/* Borland DOS special memory handler */
22#if defined(__TURBOC__) && !defined(_Windows) && !defined(__FLAT__)
23/* if you change this, be sure to change the one in png.h also */
24
Guy Schalnate5a37791996-06-05 15:50:50 -050025/* Allocate memory for a png_struct. The malloc and memset can be replaced
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060026 by a single call to calloc() if this is thought to improve performance. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050027png_voidp /* PRIVATE */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060028png_create_struct(int type)
Guy Schalnate5a37791996-06-05 15:50:50 -050029{
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050030#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -050031 return (png_create_struct_2(type, NULL, NULL));
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050032}
33
34/* Alternate version of png_create_struct, for use with user-defined malloc. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050035png_voidp /* PRIVATE */
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -050036png_create_struct_2(int type, png_malloc_ptr malloc_fn, png_voidp mem_ptr)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050037{
38#endif /* PNG_USER_MEM_SUPPORTED */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060039 png_size_t size;
Guy Schalnate5a37791996-06-05 15:50:50 -050040 png_voidp struct_ptr;
41
42 if (type == PNG_STRUCT_INFO)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -050043 size = png_sizeof(png_info);
Guy Schalnate5a37791996-06-05 15:50:50 -050044 else if (type == PNG_STRUCT_PNG)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -050045 size = png_sizeof(png_struct);
Guy Schalnate5a37791996-06-05 15:50:50 -050046 else
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -050047 return (png_get_copyright(NULL));
Guy Schalnate5a37791996-06-05 15:50:50 -050048
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050049#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -050050 if (malloc_fn != NULL)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050051 {
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -050052 png_struct dummy_struct;
53 png_structp png_ptr = &dummy_struct;
54 png_ptr->mem_ptr=mem_ptr;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -050055 struct_ptr = (*(malloc_fn))(png_ptr, (png_uint_32)size);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050056 }
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -050057 else
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050058#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -050059 struct_ptr = (png_voidp)farmalloc(size);
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -050060 if (struct_ptr != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -050061 png_memset(struct_ptr, 0, size);
Guy Schalnate5a37791996-06-05 15:50:50 -050062 return (struct_ptr);
63}
64
Guy Schalnate5a37791996-06-05 15:50:50 -050065/* Free memory allocated by a png_create_struct() call */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050066void /* PRIVATE */
Guy Schalnate5a37791996-06-05 15:50:50 -050067png_destroy_struct(png_voidp struct_ptr)
68{
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050069#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -050070 png_destroy_struct_2(struct_ptr, NULL, NULL);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050071}
72
73/* Free memory allocated by a png_create_struct() call */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050074void /* PRIVATE */
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -050075png_destroy_struct_2(png_voidp struct_ptr, png_free_ptr free_fn,
76 png_voidp mem_ptr)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050077{
78#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -050079 if (struct_ptr != NULL)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -060080 {
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050081#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -050082 if (free_fn != NULL)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050083 {
84 png_struct dummy_struct;
85 png_structp png_ptr = &dummy_struct;
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -050086 png_ptr->mem_ptr=mem_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050087 (*(free_fn))(png_ptr, struct_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050088 return;
89 }
90#endif /* PNG_USER_MEM_SUPPORTED */
Guy Schalnate5a37791996-06-05 15:50:50 -050091 farfree (struct_ptr);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -060092 }
Guy Schalnate5a37791996-06-05 15:50:50 -050093}
94
Guy Schalnat0d580581995-07-20 02:43:20 -050095/* Allocate memory. For reasonable files, size should never exceed
Andreas Dilger47a0c421997-05-16 02:46:07 -050096 * 64K. However, zlib may allocate more then 64K if you don't tell
97 * it not to. See zconf.h and png.h for more information. zlib does
98 * need to allocate exactly 64K, so whatever you call here must
99 * have the ability to do that.
100 *
101 * Borland seems to have a problem in DOS mode for exactly 64K.
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -0500102 * It gives you a segment with an offset of 8 (perhaps to store its
Andreas Dilger47a0c421997-05-16 02:46:07 -0500103 * memory stuff). zlib doesn't like this at all, so we have to
104 * detect and deal with it. This code should not be needed in
105 * Windows or OS/2 modes, and only in 16 bit mode. This code has
106 * been updated by Alexander Lehmann for version 0.89 to waste less
107 * memory.
108 *
109 * Note that we can't use png_size_t for the "size" declaration,
110 * since on some systems a png_size_t is a 16-bit quantity, and as a
111 * result, we would be truncating potentially larger memory requests
112 * (which should cause a fatal error) and introducing major problems.
113 */
Glenn Randers-Pehrson0ffb71a2009-02-28 06:08:20 -0600114#ifdef PNG_CALLOC_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500115png_voidp PNGAPI
Glenn Randers-Pehrson79134c62009-02-14 10:32:18 -0600116png_calloc(png_structp png_ptr, png_alloc_size_t size)
117{
118 png_voidp ret;
119
120 ret = (png_malloc(png_ptr, size));
121 if (ret != NULL)
122 png_memset(ret,0,(png_size_t)size);
123 return (ret);
124}
Glenn Randers-Pehrson0ffb71a2009-02-28 06:08:20 -0600125#endif
Glenn Randers-Pehrson79134c62009-02-14 10:32:18 -0600126
127png_voidp PNGAPI
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500128png_malloc(png_structp png_ptr, png_alloc_size_t size)
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600129{
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600130 png_voidp ret;
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500131
Andreas Dilger47a0c421997-05-16 02:46:07 -0500132 if (png_ptr == NULL || size == 0)
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500133 return (NULL);
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600134
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500135#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500136 if (png_ptr->malloc_fn != NULL)
137 ret = ((png_voidp)(*(png_ptr->malloc_fn))(png_ptr, (png_size_t)size));
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500138 else
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500139 ret = (png_malloc_default(png_ptr, size));
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500140 if (ret == NULL && (png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500141 png_error(png_ptr, "Out of memory");
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500142 return (ret);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500143}
144
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500145png_voidp PNGAPI
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500146png_malloc_default(png_structp png_ptr, png_alloc_size_t size)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500147{
148 png_voidp ret;
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600149#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500150
Glenn Randers-Pehrson6b12c082006-11-14 10:53:30 -0600151 if (png_ptr == NULL || size == 0)
152 return (NULL);
153
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600154#ifdef PNG_MAX_MALLOC_64K
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500155 if (size > (png_uint_32)65536L)
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500156 {
157 png_warning(png_ptr, "Cannot Allocate > 64K");
158 ret = NULL;
159 }
160 else
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600161#endif
162
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500163 if (size != (size_t)size)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500164 ret = NULL;
165 else if (size == (png_uint_32)65536L)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600166 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500167 if (png_ptr->offset_table == NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600168 {
169 /* try to see if we need to do any of this fancy stuff */
170 ret = farmalloc(size);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500171 if (ret == NULL || ((png_size_t)ret & 0xffff))
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600172 {
173 int num_blocks;
174 png_uint_32 total_size;
175 png_bytep table;
176 int i;
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600177 png_byte huge * hptr;
178
Andreas Dilger47a0c421997-05-16 02:46:07 -0500179 if (ret != NULL)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600180 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600181 farfree(ret);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600182 ret = NULL;
183 }
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600184
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500185 if (png_ptr->zlib_window_bits > 14)
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500186 num_blocks = (int)(1 << (png_ptr->zlib_window_bits - 14));
187 else
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600188 num_blocks = 1;
189 if (png_ptr->zlib_mem_level >= 7)
190 num_blocks += (int)(1 << (png_ptr->zlib_mem_level - 7));
191 else
192 num_blocks++;
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600193
Guy Schalnate5a37791996-06-05 15:50:50 -0500194 total_size = ((png_uint_32)65536L) * (png_uint_32)num_blocks+16;
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600195
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600196 table = farmalloc(total_size);
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600197
Andreas Dilger47a0c421997-05-16 02:46:07 -0500198 if (table == NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600199 {
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500200#ifndef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -0500201 if ((png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500202 png_error(png_ptr, "Out Of Memory"); /* Note "O" and "M" */
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600203 else
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500204 png_warning(png_ptr, "Out Of Memory");
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500205#endif
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600206 return (NULL);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600207 }
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600208
Andreas Dilger47a0c421997-05-16 02:46:07 -0500209 if ((png_size_t)table & 0xfff0)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600210 {
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500211#ifndef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -0500212 if ((png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600213 png_error(png_ptr,
214 "Farmalloc didn't return normalized pointer");
215 else
216 png_warning(png_ptr,
217 "Farmalloc didn't return normalized pointer");
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500218#endif
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600219 return (NULL);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600220 }
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600221
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600222 png_ptr->offset_table = table;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500223 png_ptr->offset_table_ptr = farmalloc(num_blocks *
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500224 png_sizeof(png_bytep));
Guy Schalnate5a37791996-06-05 15:50:50 -0500225
Andreas Dilger47a0c421997-05-16 02:46:07 -0500226 if (png_ptr->offset_table_ptr == NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600227 {
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500228#ifndef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -0500229 if ((png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500230 png_error(png_ptr, "Out Of memory"); /* Note "O" and "M" */
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600231 else
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500232 png_warning(png_ptr, "Out Of memory");
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500233#endif
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600234 return (NULL);
Guy Schalnate5a37791996-06-05 15:50:50 -0500235 }
236
237 hptr = (png_byte huge *)table;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500238 if ((png_size_t)hptr & 0xf)
Guy Schalnate5a37791996-06-05 15:50:50 -0500239 {
240 hptr = (png_byte huge *)((long)(hptr) & 0xfffffff0L);
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500241 hptr = hptr + 16L; /* "hptr += 16L" fails on Turbo C++ 3.0 */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600242 }
243 for (i = 0; i < num_blocks; i++)
244 {
245 png_ptr->offset_table_ptr[i] = (png_bytep)hptr;
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500246 hptr = hptr + (png_uint_32)65536L; /* "+=" fails on TC++3.0 */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600247 }
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600248
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600249 png_ptr->offset_table_number = num_blocks;
250 png_ptr->offset_table_count = 0;
251 png_ptr->offset_table_count_free = 0;
252 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600253 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500254
255 if (png_ptr->offset_table_count >= png_ptr->offset_table_number)
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600256 {
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500257#ifndef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -0500258 if ((png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500259 png_error(png_ptr, "Out of Memory"); /* Note "o" and "M" */
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600260 else
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500261 png_warning(png_ptr, "Out of Memory");
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500262#endif
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600263 return (NULL);
264 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500265
266 ret = png_ptr->offset_table_ptr[png_ptr->offset_table_count++];
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600267 }
268 else
269 ret = farmalloc(size);
Guy Schalnat0d580581995-07-20 02:43:20 -0500270
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500271#ifndef PNG_USER_MEM_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500272 if (ret == NULL)
Guy Schalnat0d580581995-07-20 02:43:20 -0500273 {
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -0500274 if ((png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500275 png_error(png_ptr, "Out of memory"); /* Note "o" and "m" */
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600276 else
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500277 png_warning(png_ptr, "Out of memory"); /* Note "o" and "m" */
Guy Schalnat0d580581995-07-20 02:43:20 -0500278 }
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500279#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500280
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600281 return (ret);
Guy Schalnat0d580581995-07-20 02:43:20 -0500282}
283
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500284/* free a pointer allocated by png_malloc(). In the default
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600285 configuration, png_ptr is not used, but is passed in case it
286 is needed. If ptr is NULL, return without taking any action. */
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500287
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500288void PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500289png_free(png_structp png_ptr, png_voidp ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500290{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500291 if (png_ptr == NULL || ptr == NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600292 return;
293
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500294#ifdef PNG_USER_MEM_SUPPORTED
295 if (png_ptr->free_fn != NULL)
296 {
297 (*(png_ptr->free_fn))(png_ptr, ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500298 return;
299 }
300 else png_free_default(png_ptr, ptr);
301}
302
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500303void PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500304png_free_default(png_structp png_ptr, png_voidp ptr)
305{
306#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600307
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500308 if (png_ptr == NULL || ptr == NULL) return;
Glenn Randers-Pehrson6b12c082006-11-14 10:53:30 -0600309
Andreas Dilger47a0c421997-05-16 02:46:07 -0500310 if (png_ptr->offset_table != NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600311 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500312 int i;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600313
Andreas Dilger47a0c421997-05-16 02:46:07 -0500314 for (i = 0; i < png_ptr->offset_table_count; i++)
315 {
316 if (ptr == png_ptr->offset_table_ptr[i])
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600317 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500318 ptr = NULL;
319 png_ptr->offset_table_count_free++;
320 break;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600321 }
322 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500323 if (png_ptr->offset_table_count_free == png_ptr->offset_table_count)
324 {
325 farfree(png_ptr->offset_table);
326 farfree(png_ptr->offset_table_ptr);
327 png_ptr->offset_table = NULL;
328 png_ptr->offset_table_ptr = NULL;
329 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600330 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500331
332 if (ptr != NULL)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600333 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500334 farfree(ptr);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600335 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600336}
337
338#else /* Not the Borland DOS special memory handler */
339
Guy Schalnate5a37791996-06-05 15:50:50 -0500340/* Allocate memory for a png_struct or a png_info. The malloc and
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600341 memset can be replaced by a single call to calloc() if this is thought
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -0500342 to improve performance noticably. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500343png_voidp /* PRIVATE */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600344png_create_struct(int type)
Guy Schalnate5a37791996-06-05 15:50:50 -0500345{
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500346#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500347 return (png_create_struct_2(type, NULL, NULL));
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500348}
349
350/* Allocate memory for a png_struct or a png_info. The malloc and
351 memset can be replaced by a single call to calloc() if this is thought
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -0500352 to improve performance noticably. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500353png_voidp /* PRIVATE */
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500354png_create_struct_2(int type, png_malloc_ptr malloc_fn, png_voidp mem_ptr)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500355{
356#endif /* PNG_USER_MEM_SUPPORTED */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500357 png_size_t size;
Guy Schalnate5a37791996-06-05 15:50:50 -0500358 png_voidp struct_ptr;
359
360 if (type == PNG_STRUCT_INFO)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500361 size = png_sizeof(png_info);
Guy Schalnate5a37791996-06-05 15:50:50 -0500362 else if (type == PNG_STRUCT_PNG)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500363 size = png_sizeof(png_struct);
Guy Schalnate5a37791996-06-05 15:50:50 -0500364 else
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500365 return (NULL);
Guy Schalnate5a37791996-06-05 15:50:50 -0500366
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500367#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500368 if (malloc_fn != NULL)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500369 {
Glenn Randers-Pehrson5cded0b2001-11-07 07:10:08 -0600370 png_struct dummy_struct;
371 png_structp png_ptr = &dummy_struct;
372 png_ptr->mem_ptr=mem_ptr;
Glenn Randers-Pehrsonae498dc2001-11-24 14:53:31 -0600373 struct_ptr = (*(malloc_fn))(png_ptr, size);
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500374 if (struct_ptr != NULL)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500375 png_memset(struct_ptr, 0, size);
376 return (struct_ptr);
377 }
378#endif /* PNG_USER_MEM_SUPPORTED */
379
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500380#if defined(__TURBOC__) && !defined(__FLAT__)
381 struct_ptr = (png_voidp)farmalloc(size);
382#else
383# if defined(_MSC_VER) && defined(MAXSEG_64K)
384 struct_ptr = (png_voidp)halloc(size, 1);
385# else
386 struct_ptr = (png_voidp)malloc(size);
387# endif
388#endif
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500389 if (struct_ptr != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500390 png_memset(struct_ptr, 0, size);
Guy Schalnate5a37791996-06-05 15:50:50 -0500391
392 return (struct_ptr);
393}
394
395
396/* Free memory allocated by a png_create_struct() call */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500397void /* PRIVATE */
Guy Schalnate5a37791996-06-05 15:50:50 -0500398png_destroy_struct(png_voidp struct_ptr)
399{
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500400#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500401 png_destroy_struct_2(struct_ptr, NULL, NULL);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500402}
403
404/* Free memory allocated by a png_create_struct() call */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500405void /* PRIVATE */
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500406png_destroy_struct_2(png_voidp struct_ptr, png_free_ptr free_fn,
407 png_voidp mem_ptr)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500408{
409#endif /* PNG_USER_MEM_SUPPORTED */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500410 if (struct_ptr != NULL)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600411 {
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500412#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500413 if (free_fn != NULL)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500414 {
415 png_struct dummy_struct;
416 png_structp png_ptr = &dummy_struct;
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500417 png_ptr->mem_ptr=mem_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500418 (*(free_fn))(png_ptr, struct_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500419 return;
420 }
421#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500422#if defined(__TURBOC__) && !defined(__FLAT__)
423 farfree(struct_ptr);
424#else
425# if defined(_MSC_VER) && defined(MAXSEG_64K)
426 hfree(struct_ptr);
427# else
428 free(struct_ptr);
429# endif
430#endif
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600431 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500432}
433
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600434/* Allocate memory. For reasonable files, size should never exceed
435 64K. However, zlib may allocate more then 64K if you don't tell
Andreas Dilger47a0c421997-05-16 02:46:07 -0500436 it not to. See zconf.h and png.h for more information. zlib does
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600437 need to allocate exactly 64K, so whatever you call here must
438 have the ability to do that. */
439
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500440png_voidp PNGAPI
Glenn Randers-Pehrson79134c62009-02-14 10:32:18 -0600441png_calloc(png_structp png_ptr, png_alloc_size_t size)
442{
443 png_voidp ret;
444
445 ret = (png_malloc(png_ptr, size));
446 if (ret != NULL)
447 png_memset(ret,0,(png_size_t)size);
448 return (ret);
449}
450
451png_voidp PNGAPI
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500452png_malloc(png_structp png_ptr, png_alloc_size_t size)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600453{
454 png_voidp ret;
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500455
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500456#ifdef PNG_USER_MEM_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500457 if (png_ptr == NULL || size == 0)
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500458 return (NULL);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600459
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500460 if (png_ptr->malloc_fn != NULL)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500461 ret = ((png_voidp)(*(png_ptr->malloc_fn))(png_ptr, (png_size_t)size));
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500462 else
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500463 ret = (png_malloc_default(png_ptr, size));
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500464 if (ret == NULL && (png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500465 png_error(png_ptr, "Out of Memory");
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500466 return (ret);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500467}
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500468
Glenn Randers-Pehrson73d57cb2002-03-25 18:49:08 -0600469png_voidp PNGAPI
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500470png_malloc_default(png_structp png_ptr, png_alloc_size_t size)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500471{
472 png_voidp ret;
473#endif /* PNG_USER_MEM_SUPPORTED */
474
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500475 if (png_ptr == NULL || size == 0)
476 return (NULL);
477
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600478#ifdef PNG_MAX_MALLOC_64K
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500479 if (size > (png_uint_32)65536L)
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600480 {
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500481#ifndef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500482 if ((png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600483 png_error(png_ptr, "Cannot Allocate > 64K");
484 else
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500485#endif
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600486 return NULL;
487 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600488#endif
489
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500490 /* Check for overflow */
491#if defined(__TURBOC__) && !defined(__FLAT__)
492 if (size != (unsigned long)size)
493 ret = NULL;
494 else
495 ret = farmalloc(size);
496#else
497# if defined(_MSC_VER) && defined(MAXSEG_64K)
498 if (size != (unsigned long)size)
499 ret = NULL;
500 else
501 ret = halloc(size, 1);
502# else
503 if (size != (size_t)size)
504 ret = NULL;
505 else
506 ret = malloc((size_t)size);
507# endif
508#endif
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600509
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500510#ifndef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600511 if (ret == NULL && (png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600512 png_error(png_ptr, "Out of Memory");
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500513#endif
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600514
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600515 return (ret);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600516}
517
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500518/* Free a pointer allocated by png_malloc(). If ptr is NULL, return
519 without taking any action. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500520void PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500521png_free(png_structp png_ptr, png_voidp ptr)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600522{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500523 if (png_ptr == NULL || ptr == NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600524 return;
Guy Schalnat0d580581995-07-20 02:43:20 -0500525
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500526#ifdef PNG_USER_MEM_SUPPORTED
527 if (png_ptr->free_fn != NULL)
528 {
529 (*(png_ptr->free_fn))(png_ptr, ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500530 return;
531 }
532 else png_free_default(png_ptr, ptr);
533}
Glenn Randers-Pehrson73d57cb2002-03-25 18:49:08 -0600534void PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500535png_free_default(png_structp png_ptr, png_voidp ptr)
536{
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500537 if (png_ptr == NULL || ptr == NULL)
538 return;
539
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500540#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500541
542#if defined(__TURBOC__) && !defined(__FLAT__)
543 farfree(ptr);
544#else
545# if defined(_MSC_VER) && defined(MAXSEG_64K)
546 hfree(ptr);
547# else
548 free(ptr);
549# endif
550#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500551}
552
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600553#endif /* Not Borland DOS special memory handler */
Guy Schalnat6d764711995-12-19 03:22:19 -0600554
Glenn Randers-Pehrson2ae022d2002-07-01 22:23:46 -0500555/* This function was added at libpng version 1.2.3. The png_malloc_warn()
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500556 * function will set up png_malloc() to issue a png_warning and return NULL
557 * instead of issuing a png_error, if it fails to allocate the requested
558 * memory.
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500559 */
560png_voidp PNGAPI
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500561png_malloc_warn(png_structp png_ptr, png_alloc_size_t size)
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500562{
563 png_voidp ptr;
Glenn Randers-Pehrsonae4bd5c2006-11-16 20:35:49 -0600564 png_uint_32 save_flags;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500565 if (png_ptr == NULL) return (NULL);
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500566
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500567 save_flags = png_ptr->flags;
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500568 png_ptr->flags|=PNG_FLAG_MALLOC_NULL_MEM_OK;
569 ptr = (png_voidp)png_malloc((png_structp)png_ptr, size);
570 png_ptr->flags=save_flags;
571 return(ptr);
572}
573
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500574
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500575#ifdef PNG_USER_MEM_SUPPORTED
576/* This function is called when the application wants to use another method
577 * of allocating and freeing memory.
578 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500579void PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500580png_set_mem_fn(png_structp png_ptr, png_voidp mem_ptr, png_malloc_ptr
581 malloc_fn, png_free_ptr free_fn)
582{
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500583 if (png_ptr != NULL)
584 {
585 png_ptr->mem_ptr = mem_ptr;
586 png_ptr->malloc_fn = malloc_fn;
587 png_ptr->free_fn = free_fn;
Glenn Randers-Pehrson6b12c082006-11-14 10:53:30 -0600588 }
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500589}
590
591/* This function returns a pointer to the mem_ptr associated with the user
592 * functions. The application should free any memory associated with this
593 * pointer before png_write_destroy and png_read_destroy are called.
594 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500595png_voidp PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500596png_get_mem_ptr(png_structp png_ptr)
597{
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500598 if (png_ptr == NULL) return (NULL);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500599 return ((png_voidp)png_ptr->mem_ptr);
600}
601#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600602#endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */