blob: 545c217c2c2b8cd48e167cb2c6ee7a0b7620264a [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-Pehrson895a9c92008-07-25 08:51:18 -05004 * Last changed in libpng 1.4.0 [July 25, 2008]
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06005 * For conditions of distribution and use, see copyright notice in png.h
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05006 * Copyright (c) 1998-2008 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-Pehrson07748d12002-05-25 11:12:10 -0500114
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500115png_voidp PNGAPI
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500116png_malloc(png_structp png_ptr, png_alloc_size_t size)
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600117{
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600118 png_voidp ret;
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500119
Andreas Dilger47a0c421997-05-16 02:46:07 -0500120 if (png_ptr == NULL || size == 0)
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500121 return (NULL);
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600122
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500123#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500124 if (png_ptr->malloc_fn != NULL)
125 ret = ((png_voidp)(*(png_ptr->malloc_fn))(png_ptr, (png_size_t)size));
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500126 else
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500127 ret = (png_malloc_default(png_ptr, size));
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500128 if (ret == NULL && (png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500129 png_error(png_ptr, "Out of memory");
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500130 return (ret);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500131}
132
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500133png_voidp PNGAPI
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500134png_malloc_default(png_structp png_ptr, png_alloc_size_t size)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500135{
136 png_voidp ret;
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600137#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500138
Glenn Randers-Pehrson6b12c082006-11-14 10:53:30 -0600139 if (png_ptr == NULL || size == 0)
140 return (NULL);
141
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600142#ifdef PNG_MAX_MALLOC_64K
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500143 if (size > (png_uint_32)65536L)
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500144 {
145 png_warning(png_ptr, "Cannot Allocate > 64K");
146 ret = NULL;
147 }
148 else
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600149#endif
150
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500151 if (size != (size_t)size)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500152 ret = NULL;
153 else if (size == (png_uint_32)65536L)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600154 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500155 if (png_ptr->offset_table == NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600156 {
157 /* try to see if we need to do any of this fancy stuff */
158 ret = farmalloc(size);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500159 if (ret == NULL || ((png_size_t)ret & 0xffff))
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600160 {
161 int num_blocks;
162 png_uint_32 total_size;
163 png_bytep table;
164 int i;
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600165 png_byte huge * hptr;
166
Andreas Dilger47a0c421997-05-16 02:46:07 -0500167 if (ret != NULL)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600168 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600169 farfree(ret);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600170 ret = NULL;
171 }
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600172
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500173 if (png_ptr->zlib_window_bits > 14)
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500174 num_blocks = (int)(1 << (png_ptr->zlib_window_bits - 14));
175 else
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600176 num_blocks = 1;
177 if (png_ptr->zlib_mem_level >= 7)
178 num_blocks += (int)(1 << (png_ptr->zlib_mem_level - 7));
179 else
180 num_blocks++;
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600181
Guy Schalnate5a37791996-06-05 15:50:50 -0500182 total_size = ((png_uint_32)65536L) * (png_uint_32)num_blocks+16;
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600183
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600184 table = farmalloc(total_size);
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600185
Andreas Dilger47a0c421997-05-16 02:46:07 -0500186 if (table == NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600187 {
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500188#ifndef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -0500189 if ((png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500190 png_error(png_ptr, "Out Of Memory"); /* Note "O" and "M" */
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600191 else
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500192 png_warning(png_ptr, "Out Of Memory");
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500193#endif
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600194 return (NULL);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600195 }
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600196
Andreas Dilger47a0c421997-05-16 02:46:07 -0500197 if ((png_size_t)table & 0xfff0)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600198 {
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500199#ifndef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -0500200 if ((png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600201 png_error(png_ptr,
202 "Farmalloc didn't return normalized pointer");
203 else
204 png_warning(png_ptr,
205 "Farmalloc didn't return normalized pointer");
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500206#endif
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600207 return (NULL);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600208 }
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600209
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600210 png_ptr->offset_table = table;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500211 png_ptr->offset_table_ptr = farmalloc(num_blocks *
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500212 png_sizeof(png_bytep));
Guy Schalnate5a37791996-06-05 15:50:50 -0500213
Andreas Dilger47a0c421997-05-16 02:46:07 -0500214 if (png_ptr->offset_table_ptr == NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600215 {
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500216#ifndef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -0500217 if ((png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500218 png_error(png_ptr, "Out Of memory"); /* Note "O" and "M" */
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600219 else
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500220 png_warning(png_ptr, "Out Of memory");
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500221#endif
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600222 return (NULL);
Guy Schalnate5a37791996-06-05 15:50:50 -0500223 }
224
225 hptr = (png_byte huge *)table;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500226 if ((png_size_t)hptr & 0xf)
Guy Schalnate5a37791996-06-05 15:50:50 -0500227 {
228 hptr = (png_byte huge *)((long)(hptr) & 0xfffffff0L);
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500229 hptr = hptr + 16L; /* "hptr += 16L" fails on Turbo C++ 3.0 */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600230 }
231 for (i = 0; i < num_blocks; i++)
232 {
233 png_ptr->offset_table_ptr[i] = (png_bytep)hptr;
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500234 hptr = hptr + (png_uint_32)65536L; /* "+=" fails on TC++3.0 */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600235 }
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600236
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600237 png_ptr->offset_table_number = num_blocks;
238 png_ptr->offset_table_count = 0;
239 png_ptr->offset_table_count_free = 0;
240 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600241 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500242
243 if (png_ptr->offset_table_count >= png_ptr->offset_table_number)
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600244 {
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500245#ifndef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -0500246 if ((png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500247 png_error(png_ptr, "Out of Memory"); /* Note "o" and "M" */
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600248 else
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500249 png_warning(png_ptr, "Out of Memory");
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500250#endif
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600251 return (NULL);
252 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500253
254 ret = png_ptr->offset_table_ptr[png_ptr->offset_table_count++];
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600255 }
256 else
257 ret = farmalloc(size);
Guy Schalnat0d580581995-07-20 02:43:20 -0500258
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500259#ifndef PNG_USER_MEM_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500260 if (ret == NULL)
Guy Schalnat0d580581995-07-20 02:43:20 -0500261 {
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -0500262 if ((png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500263 png_error(png_ptr, "Out of memory"); /* Note "o" and "m" */
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600264 else
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500265 png_warning(png_ptr, "Out of memory"); /* Note "o" and "m" */
Guy Schalnat0d580581995-07-20 02:43:20 -0500266 }
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500267#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500268
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600269 return (ret);
Guy Schalnat0d580581995-07-20 02:43:20 -0500270}
271
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500272/* free a pointer allocated by png_malloc(). In the default
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600273 configuration, png_ptr is not used, but is passed in case it
274 is needed. If ptr is NULL, return without taking any action. */
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500275
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500276void PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500277png_free(png_structp png_ptr, png_voidp ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500278{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500279 if (png_ptr == NULL || ptr == NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600280 return;
281
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500282#ifdef PNG_USER_MEM_SUPPORTED
283 if (png_ptr->free_fn != NULL)
284 {
285 (*(png_ptr->free_fn))(png_ptr, ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500286 return;
287 }
288 else png_free_default(png_ptr, ptr);
289}
290
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500291void PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500292png_free_default(png_structp png_ptr, png_voidp ptr)
293{
294#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600295
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500296 if (png_ptr == NULL || ptr == NULL) return;
Glenn Randers-Pehrson6b12c082006-11-14 10:53:30 -0600297
Andreas Dilger47a0c421997-05-16 02:46:07 -0500298 if (png_ptr->offset_table != NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600299 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500300 int i;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600301
Andreas Dilger47a0c421997-05-16 02:46:07 -0500302 for (i = 0; i < png_ptr->offset_table_count; i++)
303 {
304 if (ptr == png_ptr->offset_table_ptr[i])
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600305 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500306 ptr = NULL;
307 png_ptr->offset_table_count_free++;
308 break;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600309 }
310 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500311 if (png_ptr->offset_table_count_free == png_ptr->offset_table_count)
312 {
313 farfree(png_ptr->offset_table);
314 farfree(png_ptr->offset_table_ptr);
315 png_ptr->offset_table = NULL;
316 png_ptr->offset_table_ptr = NULL;
317 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600318 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500319
320 if (ptr != NULL)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600321 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500322 farfree(ptr);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600323 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600324}
325
326#else /* Not the Borland DOS special memory handler */
327
Guy Schalnate5a37791996-06-05 15:50:50 -0500328/* Allocate memory for a png_struct or a png_info. The malloc and
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600329 memset can be replaced by a single call to calloc() if this is thought
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -0500330 to improve performance noticably. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500331png_voidp /* PRIVATE */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600332png_create_struct(int type)
Guy Schalnate5a37791996-06-05 15:50:50 -0500333{
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500334#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500335 return (png_create_struct_2(type, NULL, NULL));
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500336}
337
338/* Allocate memory for a png_struct or a png_info. The malloc and
339 memset can be replaced by a single call to calloc() if this is thought
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -0500340 to improve performance noticably. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500341png_voidp /* PRIVATE */
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500342png_create_struct_2(int type, png_malloc_ptr malloc_fn, png_voidp mem_ptr)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500343{
344#endif /* PNG_USER_MEM_SUPPORTED */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500345 png_size_t size;
Guy Schalnate5a37791996-06-05 15:50:50 -0500346 png_voidp struct_ptr;
347
348 if (type == PNG_STRUCT_INFO)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500349 size = png_sizeof(png_info);
Guy Schalnate5a37791996-06-05 15:50:50 -0500350 else if (type == PNG_STRUCT_PNG)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500351 size = png_sizeof(png_struct);
Guy Schalnate5a37791996-06-05 15:50:50 -0500352 else
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500353 return (NULL);
Guy Schalnate5a37791996-06-05 15:50:50 -0500354
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500355#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500356 if (malloc_fn != NULL)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500357 {
Glenn Randers-Pehrson5cded0b2001-11-07 07:10:08 -0600358 png_struct dummy_struct;
359 png_structp png_ptr = &dummy_struct;
360 png_ptr->mem_ptr=mem_ptr;
Glenn Randers-Pehrsonae498dc2001-11-24 14:53:31 -0600361 struct_ptr = (*(malloc_fn))(png_ptr, size);
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500362 if (struct_ptr != NULL)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500363 png_memset(struct_ptr, 0, size);
364 return (struct_ptr);
365 }
366#endif /* PNG_USER_MEM_SUPPORTED */
367
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500368#if defined(__TURBOC__) && !defined(__FLAT__)
369 struct_ptr = (png_voidp)farmalloc(size);
370#else
371# if defined(_MSC_VER) && defined(MAXSEG_64K)
372 struct_ptr = (png_voidp)halloc(size, 1);
373# else
374 struct_ptr = (png_voidp)malloc(size);
375# endif
376#endif
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500377 if (struct_ptr != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500378 png_memset(struct_ptr, 0, size);
Guy Schalnate5a37791996-06-05 15:50:50 -0500379
380 return (struct_ptr);
381}
382
383
384/* Free memory allocated by a png_create_struct() call */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500385void /* PRIVATE */
Guy Schalnate5a37791996-06-05 15:50:50 -0500386png_destroy_struct(png_voidp struct_ptr)
387{
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500388#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500389 png_destroy_struct_2(struct_ptr, NULL, NULL);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500390}
391
392/* Free memory allocated by a png_create_struct() call */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500393void /* PRIVATE */
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500394png_destroy_struct_2(png_voidp struct_ptr, png_free_ptr free_fn,
395 png_voidp mem_ptr)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500396{
397#endif /* PNG_USER_MEM_SUPPORTED */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500398 if (struct_ptr != NULL)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600399 {
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500400#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500401 if (free_fn != NULL)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500402 {
403 png_struct dummy_struct;
404 png_structp png_ptr = &dummy_struct;
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500405 png_ptr->mem_ptr=mem_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500406 (*(free_fn))(png_ptr, struct_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500407 return;
408 }
409#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500410#if defined(__TURBOC__) && !defined(__FLAT__)
411 farfree(struct_ptr);
412#else
413# if defined(_MSC_VER) && defined(MAXSEG_64K)
414 hfree(struct_ptr);
415# else
416 free(struct_ptr);
417# endif
418#endif
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600419 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500420}
421
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600422/* Allocate memory. For reasonable files, size should never exceed
423 64K. However, zlib may allocate more then 64K if you don't tell
Andreas Dilger47a0c421997-05-16 02:46:07 -0500424 it not to. See zconf.h and png.h for more information. zlib does
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600425 need to allocate exactly 64K, so whatever you call here must
426 have the ability to do that. */
427
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500428png_voidp PNGAPI
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500429png_malloc(png_structp png_ptr, png_alloc_size_t size)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600430{
431 png_voidp ret;
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500432
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500433#ifdef PNG_USER_MEM_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500434 if (png_ptr == NULL || size == 0)
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500435 return (NULL);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600436
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500437 if (png_ptr->malloc_fn != NULL)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500438 ret = ((png_voidp)(*(png_ptr->malloc_fn))(png_ptr, (png_size_t)size));
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500439 else
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500440 ret = (png_malloc_default(png_ptr, size));
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500441 if (ret == NULL && (png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500442 png_error(png_ptr, "Out of Memory");
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500443 return (ret);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500444}
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500445
Glenn Randers-Pehrson73d57cb2002-03-25 18:49:08 -0600446png_voidp PNGAPI
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500447png_malloc_default(png_structp png_ptr, png_alloc_size_t size)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500448{
449 png_voidp ret;
450#endif /* PNG_USER_MEM_SUPPORTED */
451
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500452 if (png_ptr == NULL || size == 0)
453 return (NULL);
454
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600455#ifdef PNG_MAX_MALLOC_64K
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500456 if (size > (png_uint_32)65536L)
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600457 {
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500458#ifndef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500459 if ((png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600460 png_error(png_ptr, "Cannot Allocate > 64K");
461 else
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500462#endif
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600463 return NULL;
464 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600465#endif
466
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500467 /* Check for overflow */
468#if defined(__TURBOC__) && !defined(__FLAT__)
469 if (size != (unsigned long)size)
470 ret = NULL;
471 else
472 ret = farmalloc(size);
473#else
474# if defined(_MSC_VER) && defined(MAXSEG_64K)
475 if (size != (unsigned long)size)
476 ret = NULL;
477 else
478 ret = halloc(size, 1);
479# else
480 if (size != (size_t)size)
481 ret = NULL;
482 else
483 ret = malloc((size_t)size);
484# endif
485#endif
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600486
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500487#ifndef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600488 if (ret == NULL && (png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600489 png_error(png_ptr, "Out of Memory");
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500490#endif
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600491
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600492 return (ret);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600493}
494
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500495/* Free a pointer allocated by png_malloc(). If ptr is NULL, return
496 without taking any action. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500497void PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500498png_free(png_structp png_ptr, png_voidp ptr)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600499{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500500 if (png_ptr == NULL || ptr == NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600501 return;
Guy Schalnat0d580581995-07-20 02:43:20 -0500502
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500503#ifdef PNG_USER_MEM_SUPPORTED
504 if (png_ptr->free_fn != NULL)
505 {
506 (*(png_ptr->free_fn))(png_ptr, ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500507 return;
508 }
509 else png_free_default(png_ptr, ptr);
510}
Glenn Randers-Pehrson73d57cb2002-03-25 18:49:08 -0600511void PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500512png_free_default(png_structp png_ptr, png_voidp ptr)
513{
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500514 if (png_ptr == NULL || ptr == NULL)
515 return;
516
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500517#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500518
519#if defined(__TURBOC__) && !defined(__FLAT__)
520 farfree(ptr);
521#else
522# if defined(_MSC_VER) && defined(MAXSEG_64K)
523 hfree(ptr);
524# else
525 free(ptr);
526# endif
527#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500528}
529
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600530#endif /* Not Borland DOS special memory handler */
Guy Schalnat6d764711995-12-19 03:22:19 -0600531
Glenn Randers-Pehrson2ae022d2002-07-01 22:23:46 -0500532/* This function was added at libpng version 1.2.3. The png_malloc_warn()
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500533 * function will set up png_malloc() to issue a png_warning and return NULL
534 * instead of issuing a png_error, if it fails to allocate the requested
535 * memory.
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500536 */
537png_voidp PNGAPI
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500538png_malloc_warn(png_structp png_ptr, png_alloc_size_t size)
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500539{
540 png_voidp ptr;
Glenn Randers-Pehrsonae4bd5c2006-11-16 20:35:49 -0600541 png_uint_32 save_flags;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500542 if (png_ptr == NULL) return (NULL);
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500543
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500544 save_flags = png_ptr->flags;
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500545 png_ptr->flags|=PNG_FLAG_MALLOC_NULL_MEM_OK;
546 ptr = (png_voidp)png_malloc((png_structp)png_ptr, size);
547 png_ptr->flags=save_flags;
548 return(ptr);
549}
550
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500551
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500552#ifdef PNG_USER_MEM_SUPPORTED
553/* This function is called when the application wants to use another method
554 * of allocating and freeing memory.
555 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500556void PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500557png_set_mem_fn(png_structp png_ptr, png_voidp mem_ptr, png_malloc_ptr
558 malloc_fn, png_free_ptr free_fn)
559{
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500560 if (png_ptr != NULL)
561 {
562 png_ptr->mem_ptr = mem_ptr;
563 png_ptr->malloc_fn = malloc_fn;
564 png_ptr->free_fn = free_fn;
Glenn Randers-Pehrson6b12c082006-11-14 10:53:30 -0600565 }
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500566}
567
568/* This function returns a pointer to the mem_ptr associated with the user
569 * functions. The application should free any memory associated with this
570 * pointer before png_write_destroy and png_read_destroy are called.
571 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500572png_voidp PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500573png_get_mem_ptr(png_structp png_ptr)
574{
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500575 if (png_ptr == NULL) return (NULL);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500576 return ((png_voidp)png_ptr->mem_ptr);
577}
578#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600579#endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */