pngmem.c 8.18 KB
Newer Older
1 2 3

/* pngmem.c - stub functions for memory allocation
 *
4
 * Last changed in libpng 1.6.26 [October 20, 2016]
kurenai's avatar
kurenai committed
5
 * Copyright (c) 1998-2002,2004,2006-2014,2016 Glenn Randers-Pehrson
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
 *
 * This code is released under the libpng license.
 * For conditions of distribution and use, see the disclaimer
 * and license in png.h
 *
 * This file provides a location for all memory allocation.  Users who
 * need special memory handling are expected to supply replacement
 * functions for png_malloc() and png_free(), and to use
 * png_create_read_struct_2() and png_create_write_struct_2() to
 * identify the replacement functions.
 */

#include "pngpriv.h"

#if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
23
/* Free a png_struct */
24
void /* PRIVATE */
25
png_destroy_png_struct(png_structrp png_ptr)
26
{
27
   if (png_ptr != NULL)
28
   {
29 30 31 32 33 34 35 36 37 38 39
      /* png_free might call png_error and may certainly call
       * png_get_mem_ptr, so fake a temporary png_struct to support this.
       */
      png_struct dummy_struct = *png_ptr;
      memset(png_ptr, 0, (sizeof *png_ptr));
      png_free(&dummy_struct, png_ptr);

#     ifdef PNG_SETJMP_SUPPORTED
         /* We may have a jmp_buf left to deallocate. */
         png_free_jmpbuf(&dummy_struct);
#     endif
40 41 42 43
   }
}

/* Allocate memory.  For reasonable files, size should never exceed
44 45
 * 64K.  However, zlib may allocate more than 64K if you don't tell
 * it not to.  See zconf.h and png.h for more information.  zlib does
46 47 48 49
 * need to allocate exactly 64K, so whatever you call here must
 * have the ability to do that.
 */
PNG_FUNCTION(png_voidp,PNGAPI
50
png_calloc,(png_const_structrp png_ptr, png_alloc_size_t size),PNG_ALLOCATED)
51 52 53
{
   png_voidp ret;

54
   ret = png_malloc(png_ptr, size);
55 56

   if (ret != NULL)
57
      memset(ret, 0, size);
58

59
   return ret;
60 61
}

62 63 64 65 66 67 68
/* png_malloc_base, an internal function added at libpng 1.6.0, does the work of
 * allocating memory, taking into account limits and PNG_USER_MEM_SUPPORTED.
 * Checking and error handling must happen outside this routine; it returns NULL
 * if the allocation cannot be done (for any reason.)
 */
PNG_FUNCTION(png_voidp /* PRIVATE */,
png_malloc_base,(png_const_structrp png_ptr, png_alloc_size_t size),
kurenai's avatar
kurenai committed
69
    PNG_ALLOCATED)
70
{
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
   /* Moved to png_malloc_base from png_malloc_default in 1.6.0; the DOS
    * allocators have also been removed in 1.6.0, so any 16-bit system now has
    * to implement a user memory handler.  This checks to be sure it isn't
    * called with big numbers.
    */
#ifndef PNG_USER_MEM_SUPPORTED
   PNG_UNUSED(png_ptr)
#endif

   /* Some compilers complain that this is always true.  However, it
    * can be false when integer overflow happens.
    */
   if (size > 0 && size <= PNG_SIZE_MAX
#     ifdef PNG_MAX_MALLOC_64K
         && size <= 65536U
#     endif
      )
88
   {
89 90 91
#ifdef PNG_USER_MEM_SUPPORTED
      if (png_ptr != NULL && png_ptr->malloc_fn != NULL)
         return png_ptr->malloc_fn(png_constcast(png_structrp,png_ptr), size);
92 93

      else
94 95
#endif
         return malloc((size_t)size); /* checked for truncation above */
96 97
   }

98 99
   else
      return NULL;
100 101
}

102 103 104 105 106
#if defined(PNG_TEXT_SUPPORTED) || defined(PNG_sPLT_SUPPORTED) ||\
   defined(PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED)
/* This is really here only to work round a spurious warning in GCC 4.6 and 4.7
 * that arises because of the checks in png_realloc_array that are repeated in
 * png_malloc_array.
107
 */
108 109
static png_voidp
png_malloc_array_checked(png_const_structrp png_ptr, int nelements,
kurenai's avatar
kurenai committed
110
    size_t element_size)
111
{
112
   png_alloc_size_t req = (png_alloc_size_t)nelements; /* known to be > 0 */
113

114 115
   if (req <= PNG_SIZE_MAX/element_size)
      return png_malloc_base(png_ptr, req * element_size);
116

117 118
   /* The failure case when the request is too large */
   return NULL;
119 120 121
}

PNG_FUNCTION(png_voidp /* PRIVATE */,
122
png_malloc_array,(png_const_structrp png_ptr, int nelements,
kurenai's avatar
kurenai committed
123
    size_t element_size),PNG_ALLOCATED)
124
{
125 126 127 128
   if (nelements <= 0 || element_size == 0)
      png_error(png_ptr, "internal error: array alloc");

   return png_malloc_array_checked(png_ptr, nelements, element_size);
129 130 131
}

PNG_FUNCTION(png_voidp /* PRIVATE */,
132
png_realloc_array,(png_const_structrp png_ptr, png_const_voidp old_array,
kurenai's avatar
kurenai committed
133
    int old_elements, int add_elements, size_t element_size),PNG_ALLOCATED)
134
{
135 136 137 138 139 140 141 142 143
   /* These are internal errors: */
   if (add_elements <= 0 || element_size == 0 || old_elements < 0 ||
      (old_array == NULL && old_elements > 0))
      png_error(png_ptr, "internal error: array realloc");

   /* Check for overflow on the elements count (so the caller does not have to
    * check.)
    */
   if (add_elements <= INT_MAX - old_elements)
144
   {
145
      png_voidp new_array = png_malloc_array_checked(png_ptr,
kurenai's avatar
kurenai committed
146
          old_elements+add_elements, element_size);
147

148
      if (new_array != NULL)
149
      {
150 151 152 153 154
         /* Because png_malloc_array worked the size calculations below cannot
          * overflow.
          */
         if (old_elements > 0)
            memcpy(new_array, old_array, element_size*(unsigned)old_elements);
155

156
         memset((char*)new_array + element_size*(unsigned)old_elements, 0,
kurenai's avatar
kurenai committed
157
             element_size*(unsigned)add_elements);
158

159 160
         return new_array;
      }
161
   }
162 163

   return NULL; /* error */
164
}
165
#endif /* TEXT || sPLT || STORE_UNKNOWN_CHUNKS */
166

167 168 169
/* Various functions that have different error handling are derived from this.
 * png_malloc always exists, but if PNG_USER_MEM_SUPPORTED is defined a separate
 * function png_malloc_default is also provided.
170 171
 */
PNG_FUNCTION(png_voidp,PNGAPI
172
png_malloc,(png_const_structrp png_ptr, png_alloc_size_t size),PNG_ALLOCATED)
173 174 175
{
   png_voidp ret;

176 177
   if (png_ptr == NULL)
      return NULL;
178

179
   ret = png_malloc_base(png_ptr, size);
180

181 182 183 184
   if (ret == NULL)
       png_error(png_ptr, "Out of memory"); /* 'm' means png_malloc */

   return ret;
185 186
}

187
#ifdef PNG_USER_MEM_SUPPORTED
188
PNG_FUNCTION(png_voidp,PNGAPI
189
png_malloc_default,(png_const_structrp png_ptr, png_alloc_size_t size),
kurenai's avatar
kurenai committed
190
    PNG_ALLOCATED PNG_DEPRECATED)
191 192 193
{
   png_voidp ret;

194 195
   if (png_ptr == NULL)
      return NULL;
196

197 198
   /* Passing 'NULL' here bypasses the application provided memory handler. */
   ret = png_malloc_base(NULL/*use malloc*/, size);
199

200 201
   if (ret == NULL)
      png_error(png_ptr, "Out of Memory"); /* 'M' means png_malloc_default */
202

203
   return ret;
204
}
205
#endif /* USER_MEM */
206

207 208 209 210
/* This function was added at libpng version 1.2.3.  The png_malloc_warn()
 * function will issue a png_warning and return NULL instead of issuing a
 * png_error, if it fails to allocate the requested memory.
 */
211
PNG_FUNCTION(png_voidp,PNGAPI
212
png_malloc_warn,(png_const_structrp png_ptr, png_alloc_size_t size),
kurenai's avatar
kurenai committed
213
    PNG_ALLOCATED)
214
{
215
   if (png_ptr != NULL)
216
   {
217
      png_voidp ret = png_malloc_base(png_ptr, size);
218

219 220
      if (ret != NULL)
         return ret;
221

222 223
      png_warning(png_ptr, "Out of memory");
   }
224

225
   return NULL;
226 227 228 229 230 231
}

/* Free a pointer allocated by png_malloc().  If ptr is NULL, return
 * without taking any action.
 */
void PNGAPI
232
png_free(png_const_structrp png_ptr, png_voidp ptr)
233 234 235 236
{
   if (png_ptr == NULL || ptr == NULL)
      return;

237
#ifdef PNG_USER_MEM_SUPPORTED
238
   if (png_ptr->free_fn != NULL)
239
      png_ptr->free_fn(png_constcast(png_structrp,png_ptr), ptr);
240 241 242 243 244

   else
      png_free_default(png_ptr, ptr);
}

245 246
PNG_FUNCTION(void,PNGAPI
png_free_default,(png_const_structrp png_ptr, png_voidp ptr),PNG_DEPRECATED)
247 248 249
{
   if (png_ptr == NULL || ptr == NULL)
      return;
250
#endif /* USER_MEM */
251 252 253 254 255 256 257 258 259

   free(ptr);
}

#ifdef PNG_USER_MEM_SUPPORTED
/* This function is called when the application wants to use another method
 * of allocating and freeing memory.
 */
void PNGAPI
260
png_set_mem_fn(png_structrp png_ptr, png_voidp mem_ptr, png_malloc_ptr
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
  malloc_fn, png_free_ptr free_fn)
{
   if (png_ptr != NULL)
   {
      png_ptr->mem_ptr = mem_ptr;
      png_ptr->malloc_fn = malloc_fn;
      png_ptr->free_fn = free_fn;
   }
}

/* This function returns a pointer to the mem_ptr associated with the user
 * functions.  The application should free any memory associated with this
 * pointer before png_write_destroy and png_read_destroy are called.
 */
png_voidp PNGAPI
276
png_get_mem_ptr(png_const_structrp png_ptr)
277 278
{
   if (png_ptr == NULL)
279
      return NULL;
280

281
   return png_ptr->mem_ptr;
282
}
283 284
#endif /* USER_MEM */
#endif /* READ || WRITE */