blob: 9a065a1fd769388f5382e9f76fb7edbcae53e045 [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-Pehrson8b6a8892001-05-18 04:54:50 -05004 * libpng 1.2.0beta3 - May 18, 2001
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06005 * For conditions of distribution and use, see copyright notice in png.h
Glenn Randers-Pehrsonbe9de0f2001-01-22 08:52:16 -06006 * Copyright (c) 1998-2001 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
17#define PNG_INTERNAL
18#include "png.h"
19
Guy Schalnat4ee97b01996-01-16 01:51:56 -060020/* Borland DOS special memory handler */
21#if defined(__TURBOC__) && !defined(_Windows) && !defined(__FLAT__)
22/* if you change this, be sure to change the one in png.h also */
23
Guy Schalnate5a37791996-06-05 15:50:50 -050024/* Allocate memory for a png_struct. The malloc and memset can be replaced
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060025 by a single call to calloc() if this is thought to improve performance. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050026png_voidp /* PRIVATE */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060027png_create_struct(int type)
Guy Schalnate5a37791996-06-05 15:50:50 -050028{
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050029#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -050030 return (png_create_struct_2(type, NULL, NULL));
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050031}
32
33/* Alternate version of png_create_struct, for use with user-defined malloc. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050034png_voidp /* PRIVATE */
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -050035png_create_struct_2(int type, png_malloc_ptr malloc_fn, png_voidp mem_ptr)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050036{
37#endif /* PNG_USER_MEM_SUPPORTED */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060038 png_size_t size;
Guy Schalnate5a37791996-06-05 15:50:50 -050039 png_voidp struct_ptr;
40
41 if (type == PNG_STRUCT_INFO)
42 size = sizeof(png_info);
43 else if (type == PNG_STRUCT_PNG)
44 size = sizeof(png_struct);
45 else
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -060046 return ((png_voidp)NULL);
Guy Schalnate5a37791996-06-05 15:50:50 -050047
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050048#ifdef PNG_USER_MEM_SUPPORTED
49 if(malloc_fn != NULL)
50 {
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -050051 if (mem_ptr != NULL)
52 {
53 png_struct dummy_struct;
54 png_structp png_ptr = &dummy_struct;
55 png_ptr->mem_ptr=mem_ptr;
56 struct_ptr = (*(malloc_fn))(png_ptr, size);
57 }
58 else
59 struct_ptr = (*(malloc_fn))(NULL, size);
60 if (struct_ptr != NULL)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050061 png_memset(struct_ptr, 0, size);
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -050062 return (struct_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050063 }
64#endif /* PNG_USER_MEM_SUPPORTED */
Guy Schalnate5a37791996-06-05 15:50:50 -050065 if ((struct_ptr = (png_voidp)farmalloc(size)) != NULL)
66 {
67 png_memset(struct_ptr, 0, size);
68 }
Guy Schalnate5a37791996-06-05 15:50:50 -050069 return (struct_ptr);
70}
71
72
73/* Free memory allocated by a png_create_struct() call */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050074void /* PRIVATE */
Guy Schalnate5a37791996-06-05 15:50:50 -050075png_destroy_struct(png_voidp struct_ptr)
76{
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050077#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -050078 png_destroy_struct_2(struct_ptr, (png_free_ptr)NULL, (png_voidp)NULL);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050079}
80
81/* Free memory allocated by a png_create_struct() call */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050082void /* PRIVATE */
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -050083png_destroy_struct_2(png_voidp struct_ptr, png_free_ptr free_fn,
84 png_voidp mem_ptr)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050085{
86#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -050087 if (struct_ptr != NULL)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -060088 {
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050089#ifdef PNG_USER_MEM_SUPPORTED
90 if(free_fn != NULL)
91 {
92 png_struct dummy_struct;
93 png_structp png_ptr = &dummy_struct;
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -050094 png_ptr->mem_ptr=mem_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050095 (*(free_fn))(png_ptr, struct_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050096 return;
97 }
98#endif /* PNG_USER_MEM_SUPPORTED */
Guy Schalnate5a37791996-06-05 15:50:50 -050099 farfree (struct_ptr);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600100 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500101}
102
Guy Schalnat0d580581995-07-20 02:43:20 -0500103/* Allocate memory. For reasonable files, size should never exceed
Andreas Dilger47a0c421997-05-16 02:46:07 -0500104 * 64K. However, zlib may allocate more then 64K if you don't tell
105 * it not to. See zconf.h and png.h for more information. zlib does
106 * need to allocate exactly 64K, so whatever you call here must
107 * have the ability to do that.
108 *
109 * Borland seems to have a problem in DOS mode for exactly 64K.
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -0500110 * It gives you a segment with an offset of 8 (perhaps to store its
Andreas Dilger47a0c421997-05-16 02:46:07 -0500111 * memory stuff). zlib doesn't like this at all, so we have to
112 * detect and deal with it. This code should not be needed in
113 * Windows or OS/2 modes, and only in 16 bit mode. This code has
114 * been updated by Alexander Lehmann for version 0.89 to waste less
115 * memory.
116 *
117 * Note that we can't use png_size_t for the "size" declaration,
118 * since on some systems a png_size_t is a 16-bit quantity, and as a
119 * result, we would be truncating potentially larger memory requests
120 * (which should cause a fatal error) and introducing major problems.
121 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500122png_voidp PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500123png_malloc(png_structp png_ptr, png_uint_32 size)
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600124{
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500125#ifndef PNG_USER_MEM_SUPPORTED
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600126 png_voidp ret;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500127#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500128 if (png_ptr == NULL || size == 0)
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600129 return ((png_voidp)NULL);
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600130
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500131#ifdef PNG_USER_MEM_SUPPORTED
132 if(png_ptr->malloc_fn != NULL)
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500133 {
134 ret = ((png_voidp)(*(png_ptr->malloc_fn))(png_ptr, size));
135 if (ret == NULL)
136 png_error(png_ptr, "Out of memory!");
137 return (ret);
138 }
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500139 else
140 return png_malloc_default(png_ptr, size);
141}
142
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500143png_voidp PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500144png_malloc_default(png_structp png_ptr, png_uint_32 size)
145{
146 png_voidp ret;
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600147#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500148
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600149#ifdef PNG_MAX_MALLOC_64K
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600150 if (size > (png_uint_32)65536L)
151 png_error(png_ptr, "Cannot Allocate > 64K");
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600152#endif
153
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600154 if (size == (png_uint_32)65536L)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600155 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500156 if (png_ptr->offset_table == NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600157 {
158 /* try to see if we need to do any of this fancy stuff */
159 ret = farmalloc(size);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500160 if (ret == NULL || ((png_size_t)ret & 0xffff))
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600161 {
162 int num_blocks;
163 png_uint_32 total_size;
164 png_bytep table;
165 int i;
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600166 png_byte huge * hptr;
167
Andreas Dilger47a0c421997-05-16 02:46:07 -0500168 if (ret != NULL)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600169 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600170 farfree(ret);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600171 ret = NULL;
172 }
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600173
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500174 if(png_ptr->zlib_window_bits > 14)
175 num_blocks = (int)(1 << (png_ptr->zlib_window_bits - 14));
176 else
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600177 num_blocks = 1;
178 if (png_ptr->zlib_mem_level >= 7)
179 num_blocks += (int)(1 << (png_ptr->zlib_mem_level - 7));
180 else
181 num_blocks++;
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600182
Guy Schalnate5a37791996-06-05 15:50:50 -0500183 total_size = ((png_uint_32)65536L) * (png_uint_32)num_blocks+16;
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600184
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600185 table = farmalloc(total_size);
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600186
Andreas Dilger47a0c421997-05-16 02:46:07 -0500187 if (table == NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600188 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600189 png_error(png_ptr, "Out Of Memory."); /* Note "O" and "M" */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600190 }
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600191
Andreas Dilger47a0c421997-05-16 02:46:07 -0500192 if ((png_size_t)table & 0xfff0)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600193 {
Guy Schalnate5a37791996-06-05 15:50:50 -0500194 png_error(png_ptr, "Farmalloc didn't return normalized pointer");
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600195 }
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600196
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600197 png_ptr->offset_table = table;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500198 png_ptr->offset_table_ptr = farmalloc(num_blocks *
199 sizeof (png_bytep));
Guy Schalnate5a37791996-06-05 15:50:50 -0500200
Andreas Dilger47a0c421997-05-16 02:46:07 -0500201 if (png_ptr->offset_table_ptr == NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600202 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600203 png_error(png_ptr, "Out Of memory.");
Guy Schalnate5a37791996-06-05 15:50:50 -0500204 }
205
206 hptr = (png_byte huge *)table;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500207 if ((png_size_t)hptr & 0xf)
Guy Schalnate5a37791996-06-05 15:50:50 -0500208 {
209 hptr = (png_byte huge *)((long)(hptr) & 0xfffffff0L);
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500210 hptr = hptr + 16L; /* "hptr += 16L" fails on Turbo C++ 3.0 */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600211 }
212 for (i = 0; i < num_blocks; i++)
213 {
214 png_ptr->offset_table_ptr[i] = (png_bytep)hptr;
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500215 hptr = hptr + (png_uint_32)65536L; /* "+=" fails on TC++3.0 */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600216 }
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600217
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600218 png_ptr->offset_table_number = num_blocks;
219 png_ptr->offset_table_count = 0;
220 png_ptr->offset_table_count_free = 0;
221 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600222 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500223
224 if (png_ptr->offset_table_count >= png_ptr->offset_table_number)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600225 png_error(png_ptr, "Out of Memory.");
Guy Schalnate5a37791996-06-05 15:50:50 -0500226
227 ret = png_ptr->offset_table_ptr[png_ptr->offset_table_count++];
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600228 }
229 else
230 ret = farmalloc(size);
Guy Schalnat0d580581995-07-20 02:43:20 -0500231
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500232 if (ret == NULL)
Guy Schalnat0d580581995-07-20 02:43:20 -0500233 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600234 png_error(png_ptr, "Out of memory."); /* Note "o" and "m" */
Guy Schalnat0d580581995-07-20 02:43:20 -0500235 }
236
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600237 return (ret);
Guy Schalnat0d580581995-07-20 02:43:20 -0500238}
239
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500240/* free a pointer allocated by png_malloc(). In the default
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600241 configuration, png_ptr is not used, but is passed in case it
242 is needed. If ptr is NULL, return without taking any action. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500243void PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500244png_free(png_structp png_ptr, png_voidp ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500245{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500246 if (png_ptr == NULL || ptr == NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600247 return;
248
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500249#ifdef PNG_USER_MEM_SUPPORTED
250 if (png_ptr->free_fn != NULL)
251 {
252 (*(png_ptr->free_fn))(png_ptr, ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500253 return;
254 }
255 else png_free_default(png_ptr, ptr);
256}
257
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500258void PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500259png_free_default(png_structp png_ptr, png_voidp ptr)
260{
261#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600262
Andreas Dilger47a0c421997-05-16 02:46:07 -0500263 if (png_ptr->offset_table != NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600264 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500265 int i;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600266
Andreas Dilger47a0c421997-05-16 02:46:07 -0500267 for (i = 0; i < png_ptr->offset_table_count; i++)
268 {
269 if (ptr == png_ptr->offset_table_ptr[i])
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600270 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500271 ptr = NULL;
272 png_ptr->offset_table_count_free++;
273 break;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600274 }
275 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500276 if (png_ptr->offset_table_count_free == png_ptr->offset_table_count)
277 {
278 farfree(png_ptr->offset_table);
279 farfree(png_ptr->offset_table_ptr);
280 png_ptr->offset_table = NULL;
281 png_ptr->offset_table_ptr = NULL;
282 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600283 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500284
285 if (ptr != NULL)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600286 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500287 farfree(ptr);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600288 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600289}
290
291#else /* Not the Borland DOS special memory handler */
292
Guy Schalnate5a37791996-06-05 15:50:50 -0500293/* Allocate memory for a png_struct or a png_info. The malloc and
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600294 memset can be replaced by a single call to calloc() if this is thought
295 to improve performance noticably.*/
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500296png_voidp /* PRIVATE */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600297png_create_struct(int type)
Guy Schalnate5a37791996-06-05 15:50:50 -0500298{
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500299#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500300 return (png_create_struct_2(type, NULL, NULL));
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500301}
302
303/* Allocate memory for a png_struct or a png_info. The malloc and
304 memset can be replaced by a single call to calloc() if this is thought
305 to improve performance noticably.*/
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500306png_voidp /* PRIVATE */
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500307png_create_struct_2(int type, png_malloc_ptr malloc_fn, png_voidp mem_ptr)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500308{
309#endif /* PNG_USER_MEM_SUPPORTED */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500310 png_size_t size;
Guy Schalnate5a37791996-06-05 15:50:50 -0500311 png_voidp struct_ptr;
312
313 if (type == PNG_STRUCT_INFO)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500314 size = sizeof(png_info);
Guy Schalnate5a37791996-06-05 15:50:50 -0500315 else if (type == PNG_STRUCT_PNG)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500316 size = sizeof(png_struct);
Guy Schalnate5a37791996-06-05 15:50:50 -0500317 else
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600318 return ((png_voidp)NULL);
Guy Schalnate5a37791996-06-05 15:50:50 -0500319
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500320#ifdef PNG_USER_MEM_SUPPORTED
321 if(malloc_fn != NULL)
322 {
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500323 if (mem_ptr != NULL)
324 {
325 png_struct dummy_struct;
326 png_structp png_ptr = &dummy_struct;
327 png_ptr->mem_ptr=mem_ptr;
328 struct_ptr = (*(malloc_fn))(png_ptr, size);
329 }
330 else
331 struct_ptr = (*(malloc_fn))(NULL, size);
332 if (struct_ptr != NULL)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500333 png_memset(struct_ptr, 0, size);
334 return (struct_ptr);
335 }
336#endif /* PNG_USER_MEM_SUPPORTED */
337
Guy Schalnate5a37791996-06-05 15:50:50 -0500338#if defined(__TURBOC__) && !defined(__FLAT__)
339 if ((struct_ptr = (png_voidp)farmalloc(size)) != NULL)
340#else
341# if defined(_MSC_VER) && defined(MAXSEG_64K)
Guy Schalnatc21f90c1996-06-17 16:24:45 -0500342 if ((struct_ptr = (png_voidp)halloc(size,1)) != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500343# else
344 if ((struct_ptr = (png_voidp)malloc(size)) != NULL)
345# endif
346#endif
347 {
348 png_memset(struct_ptr, 0, size);
349 }
350
351 return (struct_ptr);
352}
353
354
355/* Free memory allocated by a png_create_struct() call */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500356void /* PRIVATE */
Guy Schalnate5a37791996-06-05 15:50:50 -0500357png_destroy_struct(png_voidp struct_ptr)
358{
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500359#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500360 png_destroy_struct_2(struct_ptr, (png_free_ptr)NULL, (png_voidp)NULL);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500361}
362
363/* Free memory allocated by a png_create_struct() call */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500364void /* PRIVATE */
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500365png_destroy_struct_2(png_voidp struct_ptr, png_free_ptr free_fn,
366 png_voidp mem_ptr)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500367{
368#endif /* PNG_USER_MEM_SUPPORTED */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500369 if (struct_ptr != NULL)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600370 {
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500371#ifdef PNG_USER_MEM_SUPPORTED
372 if(free_fn != NULL)
373 {
374 png_struct dummy_struct;
375 png_structp png_ptr = &dummy_struct;
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500376 png_ptr->mem_ptr=mem_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500377 (*(free_fn))(png_ptr, struct_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500378 return;
379 }
380#endif /* PNG_USER_MEM_SUPPORTED */
Guy Schalnate5a37791996-06-05 15:50:50 -0500381#if defined(__TURBOC__) && !defined(__FLAT__)
382 farfree(struct_ptr);
383#else
384# if defined(_MSC_VER) && defined(MAXSEG_64K)
385 hfree(struct_ptr);
386# else
387 free(struct_ptr);
388# endif
389#endif
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600390 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500391}
392
393
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600394/* Allocate memory. For reasonable files, size should never exceed
395 64K. However, zlib may allocate more then 64K if you don't tell
Andreas Dilger47a0c421997-05-16 02:46:07 -0500396 it not to. See zconf.h and png.h for more information. zlib does
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600397 need to allocate exactly 64K, so whatever you call here must
398 have the ability to do that. */
399
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500400png_voidp PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500401png_malloc(png_structp png_ptr, png_uint_32 size)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600402{
403 png_voidp ret;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500404 if (png_ptr == NULL || size == 0)
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600405 return ((png_voidp)NULL);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600406
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500407#ifdef PNG_USER_MEM_SUPPORTED
408 if(png_ptr->malloc_fn != NULL)
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500409 {
410 ret = ((png_voidp)(*(png_ptr->malloc_fn))(png_ptr, size));
411 if (ret == NULL)
412 png_error(png_ptr, "Out of Memory!");
413 return (ret);
414 }
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500415 else
416 return (png_malloc_default(png_ptr, size));
417}
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500418png_voidp /* PRIVATE */
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500419png_malloc_default(png_structp png_ptr, png_uint_32 size)
420{
421 png_voidp ret;
422#endif /* PNG_USER_MEM_SUPPORTED */
423
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600424#ifdef PNG_MAX_MALLOC_64K
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600425 if (size > (png_uint_32)65536L)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600426 png_error(png_ptr, "Cannot Allocate > 64K");
427#endif
428
429#if defined(__TURBOC__) && !defined(__FLAT__)
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600430 ret = farmalloc(size);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600431#else
432# if defined(_MSC_VER) && defined(MAXSEG_64K)
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600433 ret = halloc(size, 1);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600434# else
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -0600435 ret = malloc((size_t)size);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600436# endif
437#endif
438
439 if (ret == NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600440 png_error(png_ptr, "Out of Memory");
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600441
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600442 return (ret);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600443}
444
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500445/* Free a pointer allocated by png_malloc(). If ptr is NULL, return
446 without taking any action. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500447void PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500448png_free(png_structp png_ptr, png_voidp ptr)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600449{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500450 if (png_ptr == NULL || ptr == NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600451 return;
Guy Schalnat0d580581995-07-20 02:43:20 -0500452
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500453#ifdef PNG_USER_MEM_SUPPORTED
454 if (png_ptr->free_fn != NULL)
455 {
456 (*(png_ptr->free_fn))(png_ptr, ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500457 return;
458 }
459 else png_free_default(png_ptr, ptr);
460}
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500461void /* PRIVATE */
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500462png_free_default(png_structp png_ptr, png_voidp ptr)
463{
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500464 if (png_ptr == NULL || ptr == NULL)
465 return;
466
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500467#endif /* PNG_USER_MEM_SUPPORTED */
468
Guy Schalnat6d764711995-12-19 03:22:19 -0600469#if defined(__TURBOC__) && !defined(__FLAT__)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500470 farfree(ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -0500471#else
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600472# if defined(_MSC_VER) && defined(MAXSEG_64K)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500473 hfree(ptr);
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600474# else
Andreas Dilger47a0c421997-05-16 02:46:07 -0500475 free(ptr);
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600476# endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500477#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500478}
479
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600480#endif /* Not Borland DOS special memory handler */
Guy Schalnat6d764711995-12-19 03:22:19 -0600481
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500482png_voidp /* PRIVATE */
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600483png_memcpy_check (png_structp png_ptr, png_voidp s1, png_voidp s2,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600484 png_uint_32 length)
485{
486 png_size_t size;
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600487
488 size = (png_size_t)length;
489 if ((png_uint_32)size != length)
490 png_error(png_ptr,"Overflow in png_memcpy_check.");
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600491
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600492 return(png_memcpy (s1, s2, size));
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600493}
494
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500495png_voidp /* PRIVATE */
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600496png_memset_check (png_structp png_ptr, png_voidp s1, int value,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600497 png_uint_32 length)
498{
499 png_size_t size;
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600500
501 size = (png_size_t)length;
502 if ((png_uint_32)size != length)
503 png_error(png_ptr,"Overflow in png_memset_check.");
504
505 return (png_memset (s1, value, size));
506
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600507}
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500508
509#ifdef PNG_USER_MEM_SUPPORTED
510/* This function is called when the application wants to use another method
511 * of allocating and freeing memory.
512 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500513void PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500514png_set_mem_fn(png_structp png_ptr, png_voidp mem_ptr, png_malloc_ptr
515 malloc_fn, png_free_ptr free_fn)
516{
517 png_ptr->mem_ptr = mem_ptr;
518 png_ptr->malloc_fn = malloc_fn;
519 png_ptr->free_fn = free_fn;
520}
521
522/* This function returns a pointer to the mem_ptr associated with the user
523 * functions. The application should free any memory associated with this
524 * pointer before png_write_destroy and png_read_destroy are called.
525 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500526png_voidp PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500527png_get_mem_ptr(png_structp png_ptr)
528{
529 return ((png_voidp)png_ptr->mem_ptr);
530}
531#endif /* PNG_USER_MEM_SUPPORTED */