Bug 946178 - Disable test_outgoing_radio_off.js to see if it fixes Mnw and lets us...
[gecko.git] / media / libpng / pngrutil.c
blob7fc1d275bc9eab82ab9824d427b4d9505a872d3e
2 /* pngrutil.c - utilities to read a PNG file
4 * Last changed in libpng 1.6.4 [September 16, 2013]
5 * Copyright (c) 1998-2013 Glenn Randers-Pehrson
6 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
9 * This code is released under the libpng license.
10 * For conditions of distribution and use, see the disclaimer
11 * and license in png.h
13 * This file contains routines that are only called from within
14 * libpng itself during the course of reading an image.
17 #include "pngpriv.h"
19 #ifdef PNG_READ_SUPPORTED
21 png_uint_32 PNGAPI
22 png_get_uint_31(png_const_structrp png_ptr, png_const_bytep buf)
24 png_uint_32 uval = png_get_uint_32(buf);
26 if (uval > PNG_UINT_31_MAX)
27 png_error(png_ptr, "PNG unsigned integer out of range");
29 return (uval);
32 #if defined(PNG_READ_gAMA_SUPPORTED) || defined(PNG_READ_cHRM_SUPPORTED)
33 /* The following is a variation on the above for use with the fixed
34 * point values used for gAMA and cHRM. Instead of png_error it
35 * issues a warning and returns (-1) - an invalid value because both
36 * gAMA and cHRM use *unsigned* integers for fixed point values.
38 #define PNG_FIXED_ERROR (-1)
40 static png_fixed_point /* PRIVATE */
41 png_get_fixed_point(png_structrp png_ptr, png_const_bytep buf)
43 png_uint_32 uval = png_get_uint_32(buf);
45 if (uval <= PNG_UINT_31_MAX)
46 return (png_fixed_point)uval; /* known to be in range */
48 /* The caller can turn off the warning by passing NULL. */
49 if (png_ptr != NULL)
50 png_warning(png_ptr, "PNG fixed point integer out of range");
52 return PNG_FIXED_ERROR;
54 #endif
56 #ifdef PNG_READ_INT_FUNCTIONS_SUPPORTED
57 /* NOTE: the read macros will obscure these definitions, so that if
58 * PNG_USE_READ_MACROS is set the library will not use them internally,
59 * but the APIs will still be available externally.
61 * The parentheses around "PNGAPI function_name" in the following three
62 * functions are necessary because they allow the macros to co-exist with
63 * these (unused but exported) functions.
66 /* Grab an unsigned 32-bit integer from a buffer in big-endian format. */
67 png_uint_32 (PNGAPI
68 png_get_uint_32)(png_const_bytep buf)
70 png_uint_32 uval =
71 ((png_uint_32)(*(buf )) << 24) +
72 ((png_uint_32)(*(buf + 1)) << 16) +
73 ((png_uint_32)(*(buf + 2)) << 8) +
74 ((png_uint_32)(*(buf + 3)) ) ;
76 return uval;
79 /* Grab a signed 32-bit integer from a buffer in big-endian format. The
80 * data is stored in the PNG file in two's complement format and there
81 * is no guarantee that a 'png_int_32' is exactly 32 bits, therefore
82 * the following code does a two's complement to native conversion.
84 png_int_32 (PNGAPI
85 png_get_int_32)(png_const_bytep buf)
87 png_uint_32 uval = png_get_uint_32(buf);
88 if ((uval & 0x80000000) == 0) /* non-negative */
89 return uval;
91 uval = (uval ^ 0xffffffff) + 1; /* 2's complement: -x = ~x+1 */
92 return -(png_int_32)uval;
95 /* Grab an unsigned 16-bit integer from a buffer in big-endian format. */
96 png_uint_16 (PNGAPI
97 png_get_uint_16)(png_const_bytep buf)
99 /* ANSI-C requires an int value to accomodate at least 16 bits so this
100 * works and allows the compiler not to worry about possible narrowing
101 * on 32 bit systems. (Pre-ANSI systems did not make integers smaller
102 * than 16 bits either.)
104 unsigned int val =
105 ((unsigned int)(*buf) << 8) +
106 ((unsigned int)(*(buf + 1)));
108 return (png_uint_16)val;
111 #endif /* PNG_READ_INT_FUNCTIONS_SUPPORTED */
113 /* Read and check the PNG file signature */
114 void /* PRIVATE */
115 png_read_sig(png_structrp png_ptr, png_inforp info_ptr)
117 png_size_t num_checked, num_to_check;
119 /* Exit if the user application does not expect a signature. */
120 if (png_ptr->sig_bytes >= 8)
121 return;
123 num_checked = png_ptr->sig_bytes;
124 num_to_check = 8 - num_checked;
126 #ifdef PNG_IO_STATE_SUPPORTED
127 png_ptr->io_state = PNG_IO_READING | PNG_IO_SIGNATURE;
128 #endif
130 /* The signature must be serialized in a single I/O call. */
131 png_read_data(png_ptr, &(info_ptr->signature[num_checked]), num_to_check);
132 png_ptr->sig_bytes = 8;
134 if (png_sig_cmp(info_ptr->signature, num_checked, num_to_check))
136 if (num_checked < 4 &&
137 png_sig_cmp(info_ptr->signature, num_checked, num_to_check - 4))
138 png_error(png_ptr, "Not a PNG file");
139 else
140 png_error(png_ptr, "PNG file corrupted by ASCII conversion");
142 if (num_checked < 3)
143 png_ptr->mode |= PNG_HAVE_PNG_SIGNATURE;
146 /* Read the chunk header (length + type name).
147 * Put the type name into png_ptr->chunk_name, and return the length.
149 png_uint_32 /* PRIVATE */
150 png_read_chunk_header(png_structrp png_ptr)
152 png_byte buf[8];
153 png_uint_32 length;
155 #ifdef PNG_IO_STATE_SUPPORTED
156 png_ptr->io_state = PNG_IO_READING | PNG_IO_CHUNK_HDR;
157 #endif
159 /* Read the length and the chunk name.
160 * This must be performed in a single I/O call.
162 png_read_data(png_ptr, buf, 8);
163 length = png_get_uint_31(png_ptr, buf);
165 /* Put the chunk name into png_ptr->chunk_name. */
166 png_ptr->chunk_name = PNG_CHUNK_FROM_STRING(buf+4);
168 png_debug2(0, "Reading %lx chunk, length = %lu",
169 (unsigned long)png_ptr->chunk_name, (unsigned long)length);
171 /* Reset the crc and run it over the chunk name. */
172 png_reset_crc(png_ptr);
173 png_calculate_crc(png_ptr, buf + 4, 4);
175 /* Check to see if chunk name is valid. */
176 png_check_chunk_name(png_ptr, png_ptr->chunk_name);
178 #ifdef PNG_IO_STATE_SUPPORTED
179 png_ptr->io_state = PNG_IO_READING | PNG_IO_CHUNK_DATA;
180 #endif
182 return length;
185 /* Read data, and (optionally) run it through the CRC. */
186 void /* PRIVATE */
187 png_crc_read(png_structrp png_ptr, png_bytep buf, png_uint_32 length)
189 if (png_ptr == NULL)
190 return;
192 png_read_data(png_ptr, buf, length);
193 png_calculate_crc(png_ptr, buf, length);
196 /* Optionally skip data and then check the CRC. Depending on whether we
197 * are reading an ancillary or critical chunk, and how the program has set
198 * things up, we may calculate the CRC on the data and print a message.
199 * Returns '1' if there was a CRC error, '0' otherwise.
201 int /* PRIVATE */
202 png_crc_finish(png_structrp png_ptr, png_uint_32 skip)
204 /* The size of the local buffer for inflate is a good guess as to a
205 * reasonable size to use for buffering reads from the application.
207 while (skip > 0)
209 png_uint_32 len;
210 png_byte tmpbuf[PNG_INFLATE_BUF_SIZE];
212 len = (sizeof tmpbuf);
213 if (len > skip)
214 len = skip;
215 skip -= len;
217 png_crc_read(png_ptr, tmpbuf, len);
220 if (png_crc_error(png_ptr))
222 if (PNG_CHUNK_ANCILLARY(png_ptr->chunk_name) ?
223 !(png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_NOWARN) :
224 (png_ptr->flags & PNG_FLAG_CRC_CRITICAL_USE))
226 png_chunk_warning(png_ptr, "CRC error");
229 else
231 png_chunk_benign_error(png_ptr, "CRC error");
232 return (0);
235 return (1);
238 return (0);
241 /* Compare the CRC stored in the PNG file with that calculated by libpng from
242 * the data it has read thus far.
244 int /* PRIVATE */
245 png_crc_error(png_structrp png_ptr)
247 png_byte crc_bytes[4];
248 png_uint_32 crc;
249 int need_crc = 1;
251 if (PNG_CHUNK_ANCILLARY(png_ptr->chunk_name))
253 if ((png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_MASK) ==
254 (PNG_FLAG_CRC_ANCILLARY_USE | PNG_FLAG_CRC_ANCILLARY_NOWARN))
255 need_crc = 0;
258 else /* critical */
260 if (png_ptr->flags & PNG_FLAG_CRC_CRITICAL_IGNORE)
261 need_crc = 0;
264 #ifdef PNG_IO_STATE_SUPPORTED
265 png_ptr->io_state = PNG_IO_READING | PNG_IO_CHUNK_CRC;
266 #endif
268 /* The chunk CRC must be serialized in a single I/O call. */
269 png_read_data(png_ptr, crc_bytes, 4);
271 if (need_crc)
273 crc = png_get_uint_32(crc_bytes);
274 return ((int)(crc != png_ptr->crc));
277 else
278 return (0);
281 /* Manage the read buffer; this simply reallocates the buffer if it is not small
282 * enough (or if it is not allocated). The routine returns a pointer to the
283 * buffer; if an error occurs and 'warn' is set the routine returns NULL, else
284 * it will call png_error (via png_malloc) on failure. (warn == 2 means
285 * 'silent').
287 static png_bytep
288 png_read_buffer(png_structrp png_ptr, png_alloc_size_t new_size, int warn)
290 png_bytep buffer = png_ptr->read_buffer;
292 if (buffer != NULL && new_size > png_ptr->read_buffer_size)
294 png_ptr->read_buffer = NULL;
295 png_ptr->read_buffer = NULL;
296 png_ptr->read_buffer_size = 0;
297 png_free(png_ptr, buffer);
298 buffer = NULL;
301 if (buffer == NULL)
303 buffer = png_voidcast(png_bytep, png_malloc_base(png_ptr, new_size));
305 if (buffer != NULL)
307 png_ptr->read_buffer = buffer;
308 png_ptr->read_buffer_size = new_size;
311 else if (warn < 2) /* else silent */
313 #ifdef PNG_WARNINGS_SUPPORTED
314 if (warn)
315 png_chunk_warning(png_ptr, "insufficient memory to read chunk");
316 else
317 #endif
319 #ifdef PNG_ERROR_TEXT_SUPPORTED
320 png_chunk_error(png_ptr, "insufficient memory to read chunk");
321 #endif
326 return buffer;
329 /* png_inflate_claim: claim the zstream for some nefarious purpose that involves
330 * decompression. Returns Z_OK on success, else a zlib error code. It checks
331 * the owner but, in final release builds, just issues a warning if some other
332 * chunk apparently owns the stream. Prior to release it does a png_error.
334 static int
335 png_inflate_claim(png_structrp png_ptr, png_uint_32 owner)
337 if (png_ptr->zowner != 0)
339 char msg[64];
341 PNG_STRING_FROM_CHUNK(msg, png_ptr->zowner);
342 /* So the message that results is "<chunk> using zstream"; this is an
343 * internal error, but is very useful for debugging. i18n requirements
344 * are minimal.
346 (void)png_safecat(msg, (sizeof msg), 4, " using zstream");
347 # if PNG_LIBPNG_BUILD_BASE_TYPE >= PNG_LIBPNG_BUILD_RC
348 png_chunk_warning(png_ptr, msg);
349 png_ptr->zowner = 0;
350 # else
351 png_chunk_error(png_ptr, msg);
352 # endif
355 /* Implementation note: unlike 'png_deflate_claim' this internal function
356 * does not take the size of the data as an argument. Some efficiency could
357 * be gained by using this when it is known *if* the zlib stream itself does
358 * not record the number; however, this is an illusion: the original writer
359 * of the PNG may have selected a lower window size, and we really must
360 * follow that because, for systems with with limited capabilities, we
361 * would otherwise reject the application's attempts to use a smaller window
362 * size (zlib doesn't have an interface to say "this or lower"!).
364 * inflateReset2 was added to zlib 1.2.4; before this the window could not be
365 * reset, therefore it is necessary to always allocate the maximum window
366 * size with earlier zlibs just in case later compressed chunks need it.
369 int ret; /* zlib return code */
370 # if PNG_ZLIB_VERNUM >= 0x1240
372 # if defined(PNG_SET_OPTION_SUPPORTED) && \
373 defined(PNG_MAXIMUM_INFLATE_WINDOW)
374 int window_bits;
376 if (((png_ptr->options >> PNG_MAXIMUM_INFLATE_WINDOW) & 3) ==
377 PNG_OPTION_ON)
378 window_bits = 15;
380 else
381 window_bits = 0;
382 # else
383 # define window_bits 0
384 # endif
385 # endif
387 /* Set this for safety, just in case the previous owner left pointers to
388 * memory allocations.
390 png_ptr->zstream.next_in = NULL;
391 png_ptr->zstream.avail_in = 0;
392 png_ptr->zstream.next_out = NULL;
393 png_ptr->zstream.avail_out = 0;
395 if (png_ptr->flags & PNG_FLAG_ZSTREAM_INITIALIZED)
397 # if PNG_ZLIB_VERNUM < 0x1240
398 ret = inflateReset(&png_ptr->zstream);
399 # else
400 ret = inflateReset2(&png_ptr->zstream, window_bits);
401 # endif
404 else
406 # if PNG_ZLIB_VERNUM < 0x1240
407 ret = inflateInit(&png_ptr->zstream);
408 # else
409 ret = inflateInit2(&png_ptr->zstream, window_bits);
410 # endif
412 if (ret == Z_OK)
413 png_ptr->flags |= PNG_FLAG_ZSTREAM_INITIALIZED;
416 if (ret == Z_OK)
417 png_ptr->zowner = owner;
419 else
420 png_zstream_error(png_ptr, ret);
422 return ret;
425 # ifdef window_bits
426 # undef window_bits
427 # endif
430 #ifdef PNG_READ_COMPRESSED_TEXT_SUPPORTED
431 /* png_inflate now returns zlib error codes including Z_OK and Z_STREAM_END to
432 * allow the caller to do multiple calls if required. If the 'finish' flag is
433 * set Z_FINISH will be passed to the final inflate() call and Z_STREAM_END must
434 * be returned or there has been a problem, otherwise Z_SYNC_FLUSH is used and
435 * Z_OK or Z_STREAM_END will be returned on success.
437 * The input and output sizes are updated to the actual amounts of data consumed
438 * or written, not the amount available (as in a z_stream). The data pointers
439 * are not changed, so the next input is (data+input_size) and the next
440 * available output is (output+output_size).
442 static int
443 png_inflate(png_structrp png_ptr, png_uint_32 owner, int finish,
444 /* INPUT: */ png_const_bytep input, png_uint_32p input_size_ptr,
445 /* OUTPUT: */ png_bytep output, png_alloc_size_t *output_size_ptr)
447 if (png_ptr->zowner == owner) /* Else not claimed */
449 int ret;
450 png_alloc_size_t avail_out = *output_size_ptr;
451 png_uint_32 avail_in = *input_size_ptr;
453 /* zlib can't necessarily handle more than 65535 bytes at once (i.e. it
454 * can't even necessarily handle 65536 bytes) because the type uInt is
455 * "16 bits or more". Consequently it is necessary to chunk the input to
456 * zlib. This code uses ZLIB_IO_MAX, from pngpriv.h, as the maximum (the
457 * maximum value that can be stored in a uInt.) It is possible to set
458 * ZLIB_IO_MAX to a lower value in pngpriv.h and this may sometimes have
459 * a performance advantage, because it reduces the amount of data accessed
460 * at each step and that may give the OS more time to page it in.
462 png_ptr->zstream.next_in = PNGZ_INPUT_CAST(input);
463 /* avail_in and avail_out are set below from 'size' */
464 png_ptr->zstream.avail_in = 0;
465 png_ptr->zstream.avail_out = 0;
467 /* Read directly into the output if it is available (this is set to
468 * a local buffer below if output is NULL).
470 if (output != NULL)
471 png_ptr->zstream.next_out = output;
475 uInt avail;
476 Byte local_buffer[PNG_INFLATE_BUF_SIZE];
478 /* zlib INPUT BUFFER */
479 /* The setting of 'avail_in' used to be outside the loop; by setting it
480 * inside it is possible to chunk the input to zlib and simply rely on
481 * zlib to advance the 'next_in' pointer. This allows arbitrary
482 * amounts of data to be passed through zlib at the unavoidable cost of
483 * requiring a window save (memcpy of up to 32768 output bytes)
484 * every ZLIB_IO_MAX input bytes.
486 avail_in += png_ptr->zstream.avail_in; /* not consumed last time */
488 avail = ZLIB_IO_MAX;
490 if (avail_in < avail)
491 avail = (uInt)avail_in; /* safe: < than ZLIB_IO_MAX */
493 avail_in -= avail;
494 png_ptr->zstream.avail_in = avail;
496 /* zlib OUTPUT BUFFER */
497 avail_out += png_ptr->zstream.avail_out; /* not written last time */
499 avail = ZLIB_IO_MAX; /* maximum zlib can process */
501 if (output == NULL)
503 /* Reset the output buffer each time round if output is NULL and
504 * make available the full buffer, up to 'remaining_space'
506 png_ptr->zstream.next_out = local_buffer;
507 if ((sizeof local_buffer) < avail)
508 avail = (sizeof local_buffer);
511 if (avail_out < avail)
512 avail = (uInt)avail_out; /* safe: < ZLIB_IO_MAX */
514 png_ptr->zstream.avail_out = avail;
515 avail_out -= avail;
517 /* zlib inflate call */
518 /* In fact 'avail_out' may be 0 at this point, that happens at the end
519 * of the read when the final LZ end code was not passed at the end of
520 * the previous chunk of input data. Tell zlib if we have reached the
521 * end of the output buffer.
523 ret = inflate(&png_ptr->zstream, avail_out > 0 ? Z_NO_FLUSH :
524 (finish ? Z_FINISH : Z_SYNC_FLUSH));
525 } while (ret == Z_OK);
527 /* For safety kill the local buffer pointer now */
528 if (output == NULL)
529 png_ptr->zstream.next_out = NULL;
531 /* Claw back the 'size' and 'remaining_space' byte counts. */
532 avail_in += png_ptr->zstream.avail_in;
533 avail_out += png_ptr->zstream.avail_out;
535 /* Update the input and output sizes; the updated values are the amount
536 * consumed or written, effectively the inverse of what zlib uses.
538 if (avail_out > 0)
539 *output_size_ptr -= avail_out;
541 if (avail_in > 0)
542 *input_size_ptr -= avail_in;
544 /* Ensure png_ptr->zstream.msg is set (even in the success case!) */
545 png_zstream_error(png_ptr, ret);
546 return ret;
549 else
551 /* This is a bad internal error. The recovery assigns to the zstream msg
552 * pointer, which is not owned by the caller, but this is safe; it's only
553 * used on errors!
555 png_ptr->zstream.msg = PNGZ_MSG_CAST("zstream unclaimed");
556 return Z_STREAM_ERROR;
561 * Decompress trailing data in a chunk. The assumption is that read_buffer
562 * points at an allocated area holding the contents of a chunk with a
563 * trailing compressed part. What we get back is an allocated area
564 * holding the original prefix part and an uncompressed version of the
565 * trailing part (the malloc area passed in is freed).
567 static int
568 png_decompress_chunk(png_structrp png_ptr,
569 png_uint_32 chunklength, png_uint_32 prefix_size,
570 png_alloc_size_t *newlength /* must be initialized to the maximum! */,
571 int terminate /*add a '\0' to the end of the uncompressed data*/)
573 /* TODO: implement different limits for different types of chunk.
575 * The caller supplies *newlength set to the maximum length of the
576 * uncompressed data, but this routine allocates space for the prefix and
577 * maybe a '\0' terminator too. We have to assume that 'prefix_size' is
578 * limited only by the maximum chunk size.
580 png_alloc_size_t limit = PNG_SIZE_MAX;
582 # ifdef PNG_SET_CHUNK_MALLOC_LIMIT_SUPPORTED
583 if (png_ptr->user_chunk_malloc_max > 0 &&
584 png_ptr->user_chunk_malloc_max < limit)
585 limit = png_ptr->user_chunk_malloc_max;
586 # elif PNG_USER_CHUNK_MALLOC_MAX > 0
587 if (PNG_USER_CHUNK_MALLOC_MAX < limit)
588 limit = PNG_USER_CHUNK_MALLOC_MAX;
589 # endif
591 if (limit >= prefix_size + (terminate != 0))
593 int ret;
595 limit -= prefix_size + (terminate != 0);
597 if (limit < *newlength)
598 *newlength = limit;
600 /* Now try to claim the stream. */
601 ret = png_inflate_claim(png_ptr, png_ptr->chunk_name);
603 if (ret == Z_OK)
605 png_uint_32 lzsize = chunklength - prefix_size;
607 ret = png_inflate(png_ptr, png_ptr->chunk_name, 1/*finish*/,
608 /* input: */ png_ptr->read_buffer + prefix_size, &lzsize,
609 /* output: */ NULL, newlength);
611 if (ret == Z_STREAM_END)
613 /* Use 'inflateReset' here, not 'inflateReset2' because this
614 * preserves the previously decided window size (otherwise it would
615 * be necessary to store the previous window size.) In practice
616 * this doesn't matter anyway, because png_inflate will call inflate
617 * with Z_FINISH in almost all cases, so the window will not be
618 * maintained.
620 if (inflateReset(&png_ptr->zstream) == Z_OK)
622 /* Because of the limit checks above we know that the new,
623 * expanded, size will fit in a size_t (let alone an
624 * png_alloc_size_t). Use png_malloc_base here to avoid an
625 * extra OOM message.
627 png_alloc_size_t new_size = *newlength;
628 png_alloc_size_t buffer_size = prefix_size + new_size +
629 (terminate != 0);
630 png_bytep text = png_voidcast(png_bytep, png_malloc_base(png_ptr,
631 buffer_size));
633 if (text != NULL)
635 ret = png_inflate(png_ptr, png_ptr->chunk_name, 1/*finish*/,
636 png_ptr->read_buffer + prefix_size, &lzsize,
637 text + prefix_size, newlength);
639 if (ret == Z_STREAM_END)
641 if (new_size == *newlength)
643 if (terminate)
644 text[prefix_size + *newlength] = 0;
646 if (prefix_size > 0)
647 memcpy(text, png_ptr->read_buffer, prefix_size);
650 png_bytep old_ptr = png_ptr->read_buffer;
652 png_ptr->read_buffer = text;
653 png_ptr->read_buffer_size = buffer_size;
654 text = old_ptr; /* freed below */
658 else
660 /* The size changed on the second read, there can be no
661 * guarantee that anything is correct at this point.
662 * The 'msg' pointer has been set to "unexpected end of
663 * LZ stream", which is fine, but return an error code
664 * that the caller won't accept.
666 ret = PNG_UNEXPECTED_ZLIB_RETURN;
670 else if (ret == Z_OK)
671 ret = PNG_UNEXPECTED_ZLIB_RETURN; /* for safety */
673 /* Free the text pointer (this is the old read_buffer on
674 * success)
676 png_free(png_ptr, text);
678 /* This really is very benign, but it's still an error because
679 * the extra space may otherwise be used as a Trojan Horse.
681 if (ret == Z_STREAM_END &&
682 chunklength - prefix_size != lzsize)
683 png_chunk_benign_error(png_ptr, "extra compressed data");
686 else
688 /* Out of memory allocating the buffer */
689 ret = Z_MEM_ERROR;
690 png_zstream_error(png_ptr, Z_MEM_ERROR);
694 else
696 /* inflateReset failed, store the error message */
697 png_zstream_error(png_ptr, ret);
699 if (ret == Z_STREAM_END)
700 ret = PNG_UNEXPECTED_ZLIB_RETURN;
704 else if (ret == Z_OK)
705 ret = PNG_UNEXPECTED_ZLIB_RETURN;
707 /* Release the claimed stream */
708 png_ptr->zowner = 0;
711 else /* the claim failed */ if (ret == Z_STREAM_END) /* impossible! */
712 ret = PNG_UNEXPECTED_ZLIB_RETURN;
714 return ret;
717 else
719 /* Application/configuration limits exceeded */
720 png_zstream_error(png_ptr, Z_MEM_ERROR);
721 return Z_MEM_ERROR;
724 #endif /* PNG_READ_COMPRESSED_TEXT_SUPPORTED */
726 #ifdef PNG_READ_iCCP_SUPPORTED
727 /* Perform a partial read and decompress, producing 'avail_out' bytes and
728 * reading from the current chunk as required.
730 static int
731 png_inflate_read(png_structrp png_ptr, png_bytep read_buffer, uInt read_size,
732 png_uint_32p chunk_bytes, png_bytep next_out, png_alloc_size_t *out_size,
733 int finish)
735 if (png_ptr->zowner == png_ptr->chunk_name)
737 int ret;
739 /* next_in and avail_in must have been initialized by the caller. */
740 png_ptr->zstream.next_out = next_out;
741 png_ptr->zstream.avail_out = 0; /* set in the loop */
745 if (png_ptr->zstream.avail_in == 0)
747 if (read_size > *chunk_bytes)
748 read_size = (uInt)*chunk_bytes;
749 *chunk_bytes -= read_size;
751 if (read_size > 0)
752 png_crc_read(png_ptr, read_buffer, read_size);
754 png_ptr->zstream.next_in = read_buffer;
755 png_ptr->zstream.avail_in = read_size;
758 if (png_ptr->zstream.avail_out == 0)
760 uInt avail = ZLIB_IO_MAX;
761 if (avail > *out_size)
762 avail = (uInt)*out_size;
763 *out_size -= avail;
765 png_ptr->zstream.avail_out = avail;
768 /* Use Z_SYNC_FLUSH when there is no more chunk data to ensure that all
769 * the available output is produced; this allows reading of truncated
770 * streams.
772 ret = inflate(&png_ptr->zstream,
773 *chunk_bytes > 0 ? Z_NO_FLUSH : (finish ? Z_FINISH : Z_SYNC_FLUSH));
775 while (ret == Z_OK && (*out_size > 0 || png_ptr->zstream.avail_out > 0));
777 *out_size += png_ptr->zstream.avail_out;
778 png_ptr->zstream.avail_out = 0; /* Should not be required, but is safe */
780 /* Ensure the error message pointer is always set: */
781 png_zstream_error(png_ptr, ret);
782 return ret;
785 else
787 png_ptr->zstream.msg = PNGZ_MSG_CAST("zstream unclaimed");
788 return Z_STREAM_ERROR;
791 #endif
793 /* Read and check the IDHR chunk */
794 void /* PRIVATE */
795 png_handle_IHDR(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
797 png_byte buf[13];
798 png_uint_32 width, height;
799 int bit_depth, color_type, compression_type, filter_type;
800 int interlace_type;
802 png_debug(1, "in png_handle_IHDR");
804 if (png_ptr->mode & PNG_HAVE_IHDR)
805 png_chunk_error(png_ptr, "out of place");
807 /* Check the length */
808 if (length != 13)
809 png_chunk_error(png_ptr, "invalid");
811 png_ptr->mode |= PNG_HAVE_IHDR;
813 png_crc_read(png_ptr, buf, 13);
814 png_crc_finish(png_ptr, 0);
816 width = png_get_uint_31(png_ptr, buf);
817 height = png_get_uint_31(png_ptr, buf + 4);
818 bit_depth = buf[8];
819 color_type = buf[9];
820 compression_type = buf[10];
821 filter_type = buf[11];
822 interlace_type = buf[12];
824 #ifdef PNG_READ_APNG_SUPPORTED
825 png_ptr->first_frame_width = width;
826 png_ptr->first_frame_height = height;
827 #endif
829 /* Set internal variables */
830 png_ptr->width = width;
831 png_ptr->height = height;
832 png_ptr->bit_depth = (png_byte)bit_depth;
833 png_ptr->interlaced = (png_byte)interlace_type;
834 png_ptr->color_type = (png_byte)color_type;
835 #ifdef PNG_MNG_FEATURES_SUPPORTED
836 png_ptr->filter_type = (png_byte)filter_type;
837 #endif
838 png_ptr->compression_type = (png_byte)compression_type;
840 /* Find number of channels */
841 switch (png_ptr->color_type)
843 default: /* invalid, png_set_IHDR calls png_error */
844 case PNG_COLOR_TYPE_GRAY:
845 case PNG_COLOR_TYPE_PALETTE:
846 png_ptr->channels = 1;
847 break;
849 case PNG_COLOR_TYPE_RGB:
850 png_ptr->channels = 3;
851 break;
853 case PNG_COLOR_TYPE_GRAY_ALPHA:
854 png_ptr->channels = 2;
855 break;
857 case PNG_COLOR_TYPE_RGB_ALPHA:
858 png_ptr->channels = 4;
859 break;
862 /* Set up other useful info */
863 png_ptr->pixel_depth = (png_byte)(png_ptr->bit_depth *
864 png_ptr->channels);
865 png_ptr->rowbytes = PNG_ROWBYTES(png_ptr->pixel_depth, png_ptr->width);
866 png_debug1(3, "bit_depth = %d", png_ptr->bit_depth);
867 png_debug1(3, "channels = %d", png_ptr->channels);
868 png_debug1(3, "rowbytes = %lu", (unsigned long)png_ptr->rowbytes);
869 png_set_IHDR(png_ptr, info_ptr, width, height, bit_depth,
870 color_type, interlace_type, compression_type, filter_type);
873 /* Read and check the palette */
874 void /* PRIVATE */
875 png_handle_PLTE(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
877 png_color palette[PNG_MAX_PALETTE_LENGTH];
878 int num, i;
879 #ifdef PNG_POINTER_INDEXING_SUPPORTED
880 png_colorp pal_ptr;
881 #endif
883 png_debug(1, "in png_handle_PLTE");
885 if (!(png_ptr->mode & PNG_HAVE_IHDR))
886 png_chunk_error(png_ptr, "missing IHDR");
888 /* Moved to before the 'after IDAT' check below because otherwise duplicate
889 * PLTE chunks are potentially ignored (the spec says there shall not be more
890 * than one PLTE, the error is not treated as benign, so this check trumps
891 * the requirement that PLTE appears before IDAT.)
893 else if (png_ptr->mode & PNG_HAVE_PLTE)
894 png_chunk_error(png_ptr, "duplicate");
896 else if (png_ptr->mode & PNG_HAVE_IDAT)
898 /* This is benign because the non-benign error happened before, when an
899 * IDAT was encountered in a color-mapped image with no PLTE.
901 png_crc_finish(png_ptr, length);
902 png_chunk_benign_error(png_ptr, "out of place");
903 return;
906 png_ptr->mode |= PNG_HAVE_PLTE;
908 if (!(png_ptr->color_type & PNG_COLOR_MASK_COLOR))
910 png_crc_finish(png_ptr, length);
911 png_chunk_benign_error(png_ptr, "ignored in grayscale PNG");
912 return;
915 #ifndef PNG_READ_OPT_PLTE_SUPPORTED
916 if (png_ptr->color_type != PNG_COLOR_TYPE_PALETTE)
918 png_crc_finish(png_ptr, length);
919 return;
921 #endif
923 if (length > 3*PNG_MAX_PALETTE_LENGTH || length % 3)
925 png_crc_finish(png_ptr, length);
927 if (png_ptr->color_type != PNG_COLOR_TYPE_PALETTE)
928 png_chunk_benign_error(png_ptr, "invalid");
930 else
931 png_chunk_error(png_ptr, "invalid");
933 return;
936 /* The cast is safe because 'length' is less than 3*PNG_MAX_PALETTE_LENGTH */
937 num = (int)length / 3;
939 #ifdef PNG_POINTER_INDEXING_SUPPORTED
940 for (i = 0, pal_ptr = palette; i < num; i++, pal_ptr++)
942 png_byte buf[3];
944 png_crc_read(png_ptr, buf, 3);
945 pal_ptr->red = buf[0];
946 pal_ptr->green = buf[1];
947 pal_ptr->blue = buf[2];
949 #else
950 for (i = 0; i < num; i++)
952 png_byte buf[3];
954 png_crc_read(png_ptr, buf, 3);
955 /* Don't depend upon png_color being any order */
956 palette[i].red = buf[0];
957 palette[i].green = buf[1];
958 palette[i].blue = buf[2];
960 #endif
962 /* If we actually need the PLTE chunk (ie for a paletted image), we do
963 * whatever the normal CRC configuration tells us. However, if we
964 * have an RGB image, the PLTE can be considered ancillary, so
965 * we will act as though it is.
967 #ifndef PNG_READ_OPT_PLTE_SUPPORTED
968 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
969 #endif
971 png_crc_finish(png_ptr, 0);
974 #ifndef PNG_READ_OPT_PLTE_SUPPORTED
975 else if (png_crc_error(png_ptr)) /* Only if we have a CRC error */
977 /* If we don't want to use the data from an ancillary chunk,
978 * we have two options: an error abort, or a warning and we
979 * ignore the data in this chunk (which should be OK, since
980 * it's considered ancillary for a RGB or RGBA image).
982 * IMPLEMENTATION NOTE: this is only here because png_crc_finish uses the
983 * chunk type to determine whether to check the ancillary or the critical
984 * flags.
986 if (!(png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_USE))
988 if (png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_NOWARN)
990 png_chunk_benign_error(png_ptr, "CRC error");
993 else
995 png_chunk_warning(png_ptr, "CRC error");
996 return;
1000 /* Otherwise, we (optionally) emit a warning and use the chunk. */
1001 else if (!(png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_NOWARN))
1003 png_chunk_warning(png_ptr, "CRC error");
1006 #endif
1008 /* TODO: png_set_PLTE has the side effect of setting png_ptr->palette to its
1009 * own copy of the palette. This has the side effect that when png_start_row
1010 * is called (this happens after any call to png_read_update_info) the
1011 * info_ptr palette gets changed. This is extremely unexpected and
1012 * confusing.
1014 * Fix this by not sharing the palette in this way.
1016 png_set_PLTE(png_ptr, info_ptr, palette, num);
1018 /* The three chunks, bKGD, hIST and tRNS *must* appear after PLTE and before
1019 * IDAT. Prior to 1.6.0 this was not checked; instead the code merely
1020 * checked the apparent validity of a tRNS chunk inserted before PLTE on a
1021 * palette PNG. 1.6.0 attempts to rigorously follow the standard and
1022 * therefore does a benign error if the erroneous condition is detected *and*
1023 * cancels the tRNS if the benign error returns. The alternative is to
1024 * amend the standard since it would be rather hypocritical of the standards
1025 * maintainers to ignore it.
1027 #ifdef PNG_READ_tRNS_SUPPORTED
1028 if (png_ptr->num_trans > 0 ||
1029 (info_ptr != NULL && (info_ptr->valid & PNG_INFO_tRNS) != 0))
1031 /* Cancel this because otherwise it would be used if the transforms
1032 * require it. Don't cancel the 'valid' flag because this would prevent
1033 * detection of duplicate chunks.
1035 png_ptr->num_trans = 0;
1037 if (info_ptr != NULL)
1038 info_ptr->num_trans = 0;
1040 png_chunk_benign_error(png_ptr, "tRNS must be after");
1042 #endif
1044 #ifdef PNG_READ_hIST_SUPPORTED
1045 if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_hIST) != 0)
1046 png_chunk_benign_error(png_ptr, "hIST must be after");
1047 #endif
1049 #ifdef PNG_READ_bKGD_SUPPORTED
1050 if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_bKGD) != 0)
1051 png_chunk_benign_error(png_ptr, "bKGD must be after");
1052 #endif
1055 void /* PRIVATE */
1056 png_handle_IEND(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
1058 png_debug(1, "in png_handle_IEND");
1060 if (!(png_ptr->mode & PNG_HAVE_IHDR) || !(png_ptr->mode & PNG_HAVE_IDAT))
1061 png_chunk_error(png_ptr, "out of place");
1063 png_ptr->mode |= (PNG_AFTER_IDAT | PNG_HAVE_IEND);
1065 png_crc_finish(png_ptr, length);
1067 if (length != 0)
1068 png_chunk_benign_error(png_ptr, "invalid");
1070 PNG_UNUSED(info_ptr)
1073 #ifdef PNG_READ_gAMA_SUPPORTED
1074 void /* PRIVATE */
1075 png_handle_gAMA(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
1077 png_fixed_point igamma;
1078 png_byte buf[4];
1080 png_debug(1, "in png_handle_gAMA");
1082 if (!(png_ptr->mode & PNG_HAVE_IHDR))
1083 png_chunk_error(png_ptr, "missing IHDR");
1085 else if (png_ptr->mode & (PNG_HAVE_IDAT|PNG_HAVE_PLTE))
1087 png_crc_finish(png_ptr, length);
1088 png_chunk_benign_error(png_ptr, "out of place");
1089 return;
1092 if (length != 4)
1094 png_crc_finish(png_ptr, length);
1095 png_chunk_benign_error(png_ptr, "invalid");
1096 return;
1099 png_crc_read(png_ptr, buf, 4);
1101 if (png_crc_finish(png_ptr, 0))
1102 return;
1104 igamma = png_get_fixed_point(NULL, buf);
1106 png_colorspace_set_gamma(png_ptr, &png_ptr->colorspace, igamma);
1107 png_colorspace_sync(png_ptr, info_ptr);
1109 #endif
1111 #ifdef PNG_READ_sBIT_SUPPORTED
1112 void /* PRIVATE */
1113 png_handle_sBIT(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
1115 unsigned int truelen;
1116 png_byte buf[4];
1118 png_debug(1, "in png_handle_sBIT");
1120 buf[0] = buf[1] = buf[2] = buf[3] = 0;
1122 if (!(png_ptr->mode & PNG_HAVE_IHDR))
1123 png_chunk_error(png_ptr, "missing IHDR");
1125 else if (png_ptr->mode & (PNG_HAVE_IDAT|PNG_HAVE_PLTE))
1127 png_crc_finish(png_ptr, length);
1128 png_chunk_benign_error(png_ptr, "out of place");
1129 return;
1132 if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_sBIT))
1134 png_crc_finish(png_ptr, length);
1135 png_chunk_benign_error(png_ptr, "duplicate");
1136 return;
1139 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
1140 truelen = 3;
1142 else
1143 truelen = png_ptr->channels;
1145 if (length != truelen || length > 4)
1147 png_chunk_benign_error(png_ptr, "invalid");
1148 png_crc_finish(png_ptr, length);
1149 return;
1152 png_crc_read(png_ptr, buf, truelen);
1154 if (png_crc_finish(png_ptr, 0))
1155 return;
1157 if (png_ptr->color_type & PNG_COLOR_MASK_COLOR)
1159 png_ptr->sig_bit.red = buf[0];
1160 png_ptr->sig_bit.green = buf[1];
1161 png_ptr->sig_bit.blue = buf[2];
1162 png_ptr->sig_bit.alpha = buf[3];
1165 else
1167 png_ptr->sig_bit.gray = buf[0];
1168 png_ptr->sig_bit.red = buf[0];
1169 png_ptr->sig_bit.green = buf[0];
1170 png_ptr->sig_bit.blue = buf[0];
1171 png_ptr->sig_bit.alpha = buf[1];
1174 png_set_sBIT(png_ptr, info_ptr, &(png_ptr->sig_bit));
1176 #endif
1178 #ifdef PNG_READ_cHRM_SUPPORTED
1179 void /* PRIVATE */
1180 png_handle_cHRM(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
1182 png_byte buf[32];
1183 png_xy xy;
1185 png_debug(1, "in png_handle_cHRM");
1187 if (!(png_ptr->mode & PNG_HAVE_IHDR))
1188 png_chunk_error(png_ptr, "missing IHDR");
1190 else if (png_ptr->mode & (PNG_HAVE_IDAT|PNG_HAVE_PLTE))
1192 png_crc_finish(png_ptr, length);
1193 png_chunk_benign_error(png_ptr, "out of place");
1194 return;
1197 if (length != 32)
1199 png_crc_finish(png_ptr, length);
1200 png_chunk_benign_error(png_ptr, "invalid");
1201 return;
1204 png_crc_read(png_ptr, buf, 32);
1206 if (png_crc_finish(png_ptr, 0))
1207 return;
1209 xy.whitex = png_get_fixed_point(NULL, buf);
1210 xy.whitey = png_get_fixed_point(NULL, buf + 4);
1211 xy.redx = png_get_fixed_point(NULL, buf + 8);
1212 xy.redy = png_get_fixed_point(NULL, buf + 12);
1213 xy.greenx = png_get_fixed_point(NULL, buf + 16);
1214 xy.greeny = png_get_fixed_point(NULL, buf + 20);
1215 xy.bluex = png_get_fixed_point(NULL, buf + 24);
1216 xy.bluey = png_get_fixed_point(NULL, buf + 28);
1218 if (xy.whitex == PNG_FIXED_ERROR ||
1219 xy.whitey == PNG_FIXED_ERROR ||
1220 xy.redx == PNG_FIXED_ERROR ||
1221 xy.redy == PNG_FIXED_ERROR ||
1222 xy.greenx == PNG_FIXED_ERROR ||
1223 xy.greeny == PNG_FIXED_ERROR ||
1224 xy.bluex == PNG_FIXED_ERROR ||
1225 xy.bluey == PNG_FIXED_ERROR)
1227 png_chunk_benign_error(png_ptr, "invalid values");
1228 return;
1231 /* If a colorspace error has already been output skip this chunk */
1232 if (png_ptr->colorspace.flags & PNG_COLORSPACE_INVALID)
1233 return;
1235 if (png_ptr->colorspace.flags & PNG_COLORSPACE_FROM_cHRM)
1237 png_ptr->colorspace.flags |= PNG_COLORSPACE_INVALID;
1238 png_colorspace_sync(png_ptr, info_ptr);
1239 png_chunk_benign_error(png_ptr, "duplicate");
1240 return;
1243 png_ptr->colorspace.flags |= PNG_COLORSPACE_FROM_cHRM;
1244 (void)png_colorspace_set_chromaticities(png_ptr, &png_ptr->colorspace, &xy,
1245 1/*prefer cHRM values*/);
1246 png_colorspace_sync(png_ptr, info_ptr);
1248 #endif
1250 #ifdef PNG_READ_sRGB_SUPPORTED
1251 void /* PRIVATE */
1252 png_handle_sRGB(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
1254 png_byte intent;
1256 png_debug(1, "in png_handle_sRGB");
1258 if (!(png_ptr->mode & PNG_HAVE_IHDR))
1259 png_chunk_error(png_ptr, "missing IHDR");
1261 else if (png_ptr->mode & (PNG_HAVE_IDAT|PNG_HAVE_PLTE))
1263 png_crc_finish(png_ptr, length);
1264 png_chunk_benign_error(png_ptr, "out of place");
1265 return;
1268 if (length != 1)
1270 png_crc_finish(png_ptr, length);
1271 png_chunk_benign_error(png_ptr, "invalid");
1272 return;
1275 png_crc_read(png_ptr, &intent, 1);
1277 if (png_crc_finish(png_ptr, 0))
1278 return;
1280 /* If a colorspace error has already been output skip this chunk */
1281 if (png_ptr->colorspace.flags & PNG_COLORSPACE_INVALID)
1282 return;
1284 /* Only one sRGB or iCCP chunk is allowed, use the HAVE_INTENT flag to detect
1285 * this.
1287 if (png_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_INTENT)
1289 png_ptr->colorspace.flags |= PNG_COLORSPACE_INVALID;
1290 png_colorspace_sync(png_ptr, info_ptr);
1291 png_chunk_benign_error(png_ptr, "too many profiles");
1292 return;
1295 (void)png_colorspace_set_sRGB(png_ptr, &png_ptr->colorspace, intent);
1296 png_colorspace_sync(png_ptr, info_ptr);
1298 #endif /* PNG_READ_sRGB_SUPPORTED */
1300 #ifdef PNG_READ_iCCP_SUPPORTED
1301 void /* PRIVATE */
1302 png_handle_iCCP(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
1303 /* Note: this does not properly handle profiles that are > 64K under DOS */
1305 png_const_charp errmsg = NULL; /* error message output, or no error */
1306 int finished = 0; /* crc checked */
1308 png_debug(1, "in png_handle_iCCP");
1310 if (!(png_ptr->mode & PNG_HAVE_IHDR))
1311 png_chunk_error(png_ptr, "missing IHDR");
1313 else if (png_ptr->mode & (PNG_HAVE_IDAT|PNG_HAVE_PLTE))
1315 png_crc_finish(png_ptr, length);
1316 png_chunk_benign_error(png_ptr, "out of place");
1317 return;
1320 /* Consistent with all the above colorspace handling an obviously *invalid*
1321 * chunk is just ignored, so does not invalidate the color space. An
1322 * alternative is to set the 'invalid' flags at the start of this routine
1323 * and only clear them in they were not set before and all the tests pass.
1324 * The minimum 'deflate' stream is assumed to be just the 2 byte header and 4
1325 * byte checksum. The keyword must be one character and there is a
1326 * terminator (0) byte and the compression method.
1328 if (length < 9)
1330 png_crc_finish(png_ptr, length);
1331 png_chunk_benign_error(png_ptr, "too short");
1332 return;
1335 /* If a colorspace error has already been output skip this chunk */
1336 if (png_ptr->colorspace.flags & PNG_COLORSPACE_INVALID)
1338 png_crc_finish(png_ptr, length);
1339 return;
1342 /* Only one sRGB or iCCP chunk is allowed, use the HAVE_INTENT flag to detect
1343 * this.
1345 if ((png_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_INTENT) == 0)
1347 uInt read_length, keyword_length;
1348 char keyword[81];
1350 /* Find the keyword; the keyword plus separator and compression method
1351 * bytes can be at most 81 characters long.
1353 read_length = 81; /* maximum */
1354 if (read_length > length)
1355 read_length = (uInt)length;
1357 png_crc_read(png_ptr, (png_bytep)keyword, read_length);
1358 length -= read_length;
1360 keyword_length = 0;
1361 while (keyword_length < 80 && keyword_length < read_length &&
1362 keyword[keyword_length] != 0)
1363 ++keyword_length;
1365 /* TODO: make the keyword checking common */
1366 if (keyword_length >= 1 && keyword_length <= 79)
1368 /* We only understand '0' compression - deflate - so if we get a
1369 * different value we can't safely decode the chunk.
1371 if (keyword_length+1 < read_length &&
1372 keyword[keyword_length+1] == PNG_COMPRESSION_TYPE_BASE)
1374 read_length -= keyword_length+2;
1376 if (png_inflate_claim(png_ptr, png_iCCP) == Z_OK)
1378 Byte profile_header[132];
1379 Byte local_buffer[PNG_INFLATE_BUF_SIZE];
1380 png_alloc_size_t size = (sizeof profile_header);
1382 png_ptr->zstream.next_in = (Bytef*)keyword + (keyword_length+2);
1383 png_ptr->zstream.avail_in = read_length;
1384 (void)png_inflate_read(png_ptr, local_buffer,
1385 (sizeof local_buffer), &length, profile_header, &size,
1386 0/*finish: don't, because the output is too small*/);
1388 if (size == 0)
1390 /* We have the ICC profile header; do the basic header checks.
1392 const png_uint_32 profile_length =
1393 png_get_uint_32(profile_header);
1395 if (png_icc_check_length(png_ptr, &png_ptr->colorspace,
1396 keyword, profile_length))
1398 /* The length is apparently ok, so we can check the 132
1399 * byte header.
1401 if (png_icc_check_header(png_ptr, &png_ptr->colorspace,
1402 keyword, profile_length, profile_header,
1403 png_ptr->color_type))
1405 /* Now read the tag table; a variable size buffer is
1406 * needed at this point, allocate one for the whole
1407 * profile. The header check has already validated
1408 * that none of these stuff will overflow.
1410 const png_uint_32 tag_count = png_get_uint_32(
1411 profile_header+128);
1412 png_bytep profile = png_read_buffer(png_ptr,
1413 profile_length, 2/*silent*/);
1415 if (profile != NULL)
1417 memcpy(profile, profile_header,
1418 (sizeof profile_header));
1420 size = 12 * tag_count;
1422 (void)png_inflate_read(png_ptr, local_buffer,
1423 (sizeof local_buffer), &length,
1424 profile + (sizeof profile_header), &size, 0);
1426 /* Still expect a a buffer error because we expect
1427 * there to be some tag data!
1429 if (size == 0)
1431 if (png_icc_check_tag_table(png_ptr,
1432 &png_ptr->colorspace, keyword, profile_length,
1433 profile))
1435 /* The profile has been validated for basic
1436 * security issues, so read the whole thing in.
1438 size = profile_length - (sizeof profile_header)
1439 - 12 * tag_count;
1441 (void)png_inflate_read(png_ptr, local_buffer,
1442 (sizeof local_buffer), &length,
1443 profile + (sizeof profile_header) +
1444 12 * tag_count, &size, 1/*finish*/);
1446 if (length > 0 && !(png_ptr->flags &
1447 PNG_FLAG_BENIGN_ERRORS_WARN))
1448 errmsg = "extra compressed data";
1450 /* But otherwise allow extra data: */
1451 else if (size == 0)
1453 if (length > 0)
1455 /* This can be handled completely, so
1456 * keep going.
1458 png_chunk_warning(png_ptr,
1459 "extra compressed data");
1462 png_crc_finish(png_ptr, length);
1463 finished = 1;
1465 # ifdef PNG_sRGB_SUPPORTED
1466 /* Check for a match against sRGB */
1467 png_icc_set_sRGB(png_ptr,
1468 &png_ptr->colorspace, profile,
1469 png_ptr->zstream.adler);
1470 # endif
1472 /* Steal the profile for info_ptr. */
1473 if (info_ptr != NULL)
1475 png_free_data(png_ptr, info_ptr,
1476 PNG_FREE_ICCP, 0);
1478 info_ptr->iccp_name = png_voidcast(char*,
1479 png_malloc_base(png_ptr,
1480 keyword_length+1));
1481 if (info_ptr->iccp_name != NULL)
1483 memcpy(info_ptr->iccp_name, keyword,
1484 keyword_length+1);
1485 info_ptr->iccp_proflen =
1486 profile_length;
1487 info_ptr->iccp_profile = profile;
1488 png_ptr->read_buffer = NULL; /*steal*/
1489 info_ptr->free_me |= PNG_FREE_ICCP;
1490 info_ptr->valid |= PNG_INFO_iCCP;
1493 else
1495 png_ptr->colorspace.flags |=
1496 PNG_COLORSPACE_INVALID;
1497 errmsg = "out of memory";
1501 /* else the profile remains in the read
1502 * buffer which gets reused for subsequent
1503 * chunks.
1506 if (info_ptr != NULL)
1507 png_colorspace_sync(png_ptr, info_ptr);
1509 if (errmsg == NULL)
1511 png_ptr->zowner = 0;
1512 return;
1516 else if (size > 0)
1517 errmsg = "truncated";
1519 else
1520 errmsg = png_ptr->zstream.msg;
1523 /* else png_icc_check_tag_table output an error */
1526 else /* profile truncated */
1527 errmsg = png_ptr->zstream.msg;
1530 else
1531 errmsg = "out of memory";
1534 /* else png_icc_check_header output an error */
1537 /* else png_icc_check_length output an error */
1540 else /* profile truncated */
1541 errmsg = png_ptr->zstream.msg;
1543 /* Release the stream */
1544 png_ptr->zowner = 0;
1547 else /* png_inflate_claim failed */
1548 errmsg = png_ptr->zstream.msg;
1551 else
1552 errmsg = "bad compression method"; /* or missing */
1555 else
1556 errmsg = "bad keyword";
1559 else
1560 errmsg = "too many profiles";
1562 /* Failure: the reason is in 'errmsg' */
1563 if (!finished)
1564 png_crc_finish(png_ptr, length);
1566 png_ptr->colorspace.flags |= PNG_COLORSPACE_INVALID;
1567 png_colorspace_sync(png_ptr, info_ptr);
1568 if (errmsg != NULL) /* else already output */
1569 png_chunk_benign_error(png_ptr, errmsg);
1571 #endif /* PNG_READ_iCCP_SUPPORTED */
1573 #ifdef PNG_READ_sPLT_SUPPORTED
1574 void /* PRIVATE */
1575 png_handle_sPLT(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
1576 /* Note: this does not properly handle chunks that are > 64K under DOS */
1578 png_bytep entry_start, buffer;
1579 png_sPLT_t new_palette;
1580 png_sPLT_entryp pp;
1581 png_uint_32 data_length;
1582 int entry_size, i;
1583 png_uint_32 skip = 0;
1584 png_uint_32 dl;
1585 png_size_t max_dl;
1587 png_debug(1, "in png_handle_sPLT");
1589 #ifdef PNG_USER_LIMITS_SUPPORTED
1590 if (png_ptr->user_chunk_cache_max != 0)
1592 if (png_ptr->user_chunk_cache_max == 1)
1594 png_crc_finish(png_ptr, length);
1595 return;
1598 if (--png_ptr->user_chunk_cache_max == 1)
1600 png_warning(png_ptr, "No space in chunk cache for sPLT");
1601 png_crc_finish(png_ptr, length);
1602 return;
1605 #endif
1607 if (!(png_ptr->mode & PNG_HAVE_IHDR))
1608 png_chunk_error(png_ptr, "missing IHDR");
1610 else if (png_ptr->mode & PNG_HAVE_IDAT)
1612 png_crc_finish(png_ptr, length);
1613 png_chunk_benign_error(png_ptr, "out of place");
1614 return;
1617 #ifdef PNG_MAX_MALLOC_64K
1618 if (length > 65535U)
1620 png_crc_finish(png_ptr, length);
1621 png_chunk_benign_error(png_ptr, "too large to fit in memory");
1622 return;
1624 #endif
1626 buffer = png_read_buffer(png_ptr, length+1, 2/*silent*/);
1627 if (buffer == NULL)
1629 png_crc_finish(png_ptr, length);
1630 png_chunk_benign_error(png_ptr, "out of memory");
1631 return;
1635 /* WARNING: this may break if size_t is less than 32 bits; it is assumed
1636 * that the PNG_MAX_MALLOC_64K test is enabled in this case, but this is a
1637 * potential breakage point if the types in pngconf.h aren't exactly right.
1639 png_crc_read(png_ptr, buffer, length);
1641 if (png_crc_finish(png_ptr, skip))
1642 return;
1644 buffer[length] = 0;
1646 for (entry_start = buffer; *entry_start; entry_start++)
1647 /* Empty loop to find end of name */ ;
1649 ++entry_start;
1651 /* A sample depth should follow the separator, and we should be on it */
1652 if (entry_start > buffer + length - 2)
1654 png_warning(png_ptr, "malformed sPLT chunk");
1655 return;
1658 new_palette.depth = *entry_start++;
1659 entry_size = (new_palette.depth == 8 ? 6 : 10);
1660 /* This must fit in a png_uint_32 because it is derived from the original
1661 * chunk data length.
1663 data_length = length - (png_uint_32)(entry_start - buffer);
1665 /* Integrity-check the data length */
1666 if (data_length % entry_size)
1668 png_warning(png_ptr, "sPLT chunk has bad length");
1669 return;
1672 dl = (png_int_32)(data_length / entry_size);
1673 max_dl = PNG_SIZE_MAX / (sizeof (png_sPLT_entry));
1675 if (dl > max_dl)
1677 png_warning(png_ptr, "sPLT chunk too long");
1678 return;
1681 new_palette.nentries = (png_int_32)(data_length / entry_size);
1683 new_palette.entries = (png_sPLT_entryp)png_malloc_warn(
1684 png_ptr, new_palette.nentries * (sizeof (png_sPLT_entry)));
1686 if (new_palette.entries == NULL)
1688 png_warning(png_ptr, "sPLT chunk requires too much memory");
1689 return;
1692 #ifdef PNG_POINTER_INDEXING_SUPPORTED
1693 for (i = 0; i < new_palette.nentries; i++)
1695 pp = new_palette.entries + i;
1697 if (new_palette.depth == 8)
1699 pp->red = *entry_start++;
1700 pp->green = *entry_start++;
1701 pp->blue = *entry_start++;
1702 pp->alpha = *entry_start++;
1705 else
1707 pp->red = png_get_uint_16(entry_start); entry_start += 2;
1708 pp->green = png_get_uint_16(entry_start); entry_start += 2;
1709 pp->blue = png_get_uint_16(entry_start); entry_start += 2;
1710 pp->alpha = png_get_uint_16(entry_start); entry_start += 2;
1713 pp->frequency = png_get_uint_16(entry_start); entry_start += 2;
1715 #else
1716 pp = new_palette.entries;
1718 for (i = 0; i < new_palette.nentries; i++)
1721 if (new_palette.depth == 8)
1723 pp[i].red = *entry_start++;
1724 pp[i].green = *entry_start++;
1725 pp[i].blue = *entry_start++;
1726 pp[i].alpha = *entry_start++;
1729 else
1731 pp[i].red = png_get_uint_16(entry_start); entry_start += 2;
1732 pp[i].green = png_get_uint_16(entry_start); entry_start += 2;
1733 pp[i].blue = png_get_uint_16(entry_start); entry_start += 2;
1734 pp[i].alpha = png_get_uint_16(entry_start); entry_start += 2;
1737 pp[i].frequency = png_get_uint_16(entry_start); entry_start += 2;
1739 #endif
1741 /* Discard all chunk data except the name and stash that */
1742 new_palette.name = (png_charp)buffer;
1744 png_set_sPLT(png_ptr, info_ptr, &new_palette, 1);
1746 png_free(png_ptr, new_palette.entries);
1748 #endif /* PNG_READ_sPLT_SUPPORTED */
1750 #ifdef PNG_READ_tRNS_SUPPORTED
1751 void /* PRIVATE */
1752 png_handle_tRNS(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
1754 png_byte readbuf[PNG_MAX_PALETTE_LENGTH];
1756 png_debug(1, "in png_handle_tRNS");
1758 if (!(png_ptr->mode & PNG_HAVE_IHDR))
1759 png_chunk_error(png_ptr, "missing IHDR");
1761 else if (png_ptr->mode & PNG_HAVE_IDAT)
1763 png_crc_finish(png_ptr, length);
1764 png_chunk_benign_error(png_ptr, "out of place");
1765 return;
1768 else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_tRNS))
1770 png_crc_finish(png_ptr, length);
1771 png_chunk_benign_error(png_ptr, "duplicate");
1772 return;
1775 if (png_ptr->color_type == PNG_COLOR_TYPE_GRAY)
1777 png_byte buf[2];
1779 if (length != 2)
1781 png_crc_finish(png_ptr, length);
1782 png_chunk_benign_error(png_ptr, "invalid");
1783 return;
1786 png_crc_read(png_ptr, buf, 2);
1787 png_ptr->num_trans = 1;
1788 png_ptr->trans_color.gray = png_get_uint_16(buf);
1791 else if (png_ptr->color_type == PNG_COLOR_TYPE_RGB)
1793 png_byte buf[6];
1795 if (length != 6)
1797 png_crc_finish(png_ptr, length);
1798 png_chunk_benign_error(png_ptr, "invalid");
1799 return;
1802 png_crc_read(png_ptr, buf, length);
1803 png_ptr->num_trans = 1;
1804 png_ptr->trans_color.red = png_get_uint_16(buf);
1805 png_ptr->trans_color.green = png_get_uint_16(buf + 2);
1806 png_ptr->trans_color.blue = png_get_uint_16(buf + 4);
1809 else if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
1811 if (!(png_ptr->mode & PNG_HAVE_PLTE))
1813 /* TODO: is this actually an error in the ISO spec? */
1814 png_crc_finish(png_ptr, length);
1815 png_chunk_benign_error(png_ptr, "out of place");
1816 return;
1819 if (length > png_ptr->num_palette || length > PNG_MAX_PALETTE_LENGTH ||
1820 length == 0)
1822 png_crc_finish(png_ptr, length);
1823 png_chunk_benign_error(png_ptr, "invalid");
1824 return;
1827 png_crc_read(png_ptr, readbuf, length);
1828 png_ptr->num_trans = (png_uint_16)length;
1831 else
1833 png_crc_finish(png_ptr, length);
1834 png_chunk_benign_error(png_ptr, "invalid with alpha channel");
1835 return;
1838 if (png_crc_finish(png_ptr, 0))
1840 png_ptr->num_trans = 0;
1841 return;
1844 /* TODO: this is a horrible side effect in the palette case because the
1845 * png_struct ends up with a pointer to the tRNS buffer owned by the
1846 * png_info. Fix this.
1848 png_set_tRNS(png_ptr, info_ptr, readbuf, png_ptr->num_trans,
1849 &(png_ptr->trans_color));
1851 #endif
1853 #ifdef PNG_READ_bKGD_SUPPORTED
1854 void /* PRIVATE */
1855 png_handle_bKGD(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
1857 unsigned int truelen;
1858 png_byte buf[6];
1859 png_color_16 background;
1861 png_debug(1, "in png_handle_bKGD");
1863 if (!(png_ptr->mode & PNG_HAVE_IHDR))
1864 png_chunk_error(png_ptr, "missing IHDR");
1866 else if ((png_ptr->mode & PNG_HAVE_IDAT) ||
1867 (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE &&
1868 !(png_ptr->mode & PNG_HAVE_PLTE)))
1870 png_crc_finish(png_ptr, length);
1871 png_chunk_benign_error(png_ptr, "out of place");
1872 return;
1875 else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_bKGD))
1877 png_crc_finish(png_ptr, length);
1878 png_chunk_benign_error(png_ptr, "duplicate");
1879 return;
1882 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
1883 truelen = 1;
1885 else if (png_ptr->color_type & PNG_COLOR_MASK_COLOR)
1886 truelen = 6;
1888 else
1889 truelen = 2;
1891 if (length != truelen)
1893 png_crc_finish(png_ptr, length);
1894 png_chunk_benign_error(png_ptr, "invalid");
1895 return;
1898 png_crc_read(png_ptr, buf, truelen);
1900 if (png_crc_finish(png_ptr, 0))
1901 return;
1903 /* We convert the index value into RGB components so that we can allow
1904 * arbitrary RGB values for background when we have transparency, and
1905 * so it is easy to determine the RGB values of the background color
1906 * from the info_ptr struct.
1908 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
1910 background.index = buf[0];
1912 if (info_ptr && info_ptr->num_palette)
1914 if (buf[0] >= info_ptr->num_palette)
1916 png_chunk_benign_error(png_ptr, "invalid index");
1917 return;
1920 background.red = (png_uint_16)png_ptr->palette[buf[0]].red;
1921 background.green = (png_uint_16)png_ptr->palette[buf[0]].green;
1922 background.blue = (png_uint_16)png_ptr->palette[buf[0]].blue;
1925 else
1926 background.red = background.green = background.blue = 0;
1928 background.gray = 0;
1931 else if (!(png_ptr->color_type & PNG_COLOR_MASK_COLOR)) /* GRAY */
1933 background.index = 0;
1934 background.red =
1935 background.green =
1936 background.blue =
1937 background.gray = png_get_uint_16(buf);
1940 else
1942 background.index = 0;
1943 background.red = png_get_uint_16(buf);
1944 background.green = png_get_uint_16(buf + 2);
1945 background.blue = png_get_uint_16(buf + 4);
1946 background.gray = 0;
1949 png_set_bKGD(png_ptr, info_ptr, &background);
1951 #endif
1953 #ifdef PNG_READ_hIST_SUPPORTED
1954 void /* PRIVATE */
1955 png_handle_hIST(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
1957 unsigned int num, i;
1958 png_uint_16 readbuf[PNG_MAX_PALETTE_LENGTH];
1960 png_debug(1, "in png_handle_hIST");
1962 if (!(png_ptr->mode & PNG_HAVE_IHDR))
1963 png_chunk_error(png_ptr, "missing IHDR");
1965 else if ((png_ptr->mode & PNG_HAVE_IDAT) || !(png_ptr->mode & PNG_HAVE_PLTE))
1967 png_crc_finish(png_ptr, length);
1968 png_chunk_benign_error(png_ptr, "out of place");
1969 return;
1972 else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_hIST))
1974 png_crc_finish(png_ptr, length);
1975 png_chunk_benign_error(png_ptr, "duplicate");
1976 return;
1979 num = length / 2 ;
1981 if (num != png_ptr->num_palette || num > PNG_MAX_PALETTE_LENGTH)
1983 png_crc_finish(png_ptr, length);
1984 png_chunk_benign_error(png_ptr, "invalid");
1985 return;
1988 for (i = 0; i < num; i++)
1990 png_byte buf[2];
1992 png_crc_read(png_ptr, buf, 2);
1993 readbuf[i] = png_get_uint_16(buf);
1996 if (png_crc_finish(png_ptr, 0))
1997 return;
1999 png_set_hIST(png_ptr, info_ptr, readbuf);
2001 #endif
2003 #ifdef PNG_READ_pHYs_SUPPORTED
2004 void /* PRIVATE */
2005 png_handle_pHYs(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
2007 png_byte buf[9];
2008 png_uint_32 res_x, res_y;
2009 int unit_type;
2011 png_debug(1, "in png_handle_pHYs");
2013 if (!(png_ptr->mode & PNG_HAVE_IHDR))
2014 png_chunk_error(png_ptr, "missing IHDR");
2016 else if (png_ptr->mode & PNG_HAVE_IDAT)
2018 png_crc_finish(png_ptr, length);
2019 png_chunk_benign_error(png_ptr, "out of place");
2020 return;
2023 else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_pHYs))
2025 png_crc_finish(png_ptr, length);
2026 png_chunk_benign_error(png_ptr, "duplicate");
2027 return;
2030 if (length != 9)
2032 png_crc_finish(png_ptr, length);
2033 png_chunk_benign_error(png_ptr, "invalid");
2034 return;
2037 png_crc_read(png_ptr, buf, 9);
2039 if (png_crc_finish(png_ptr, 0))
2040 return;
2042 res_x = png_get_uint_32(buf);
2043 res_y = png_get_uint_32(buf + 4);
2044 unit_type = buf[8];
2045 png_set_pHYs(png_ptr, info_ptr, res_x, res_y, unit_type);
2047 #endif
2049 #ifdef PNG_READ_oFFs_SUPPORTED
2050 void /* PRIVATE */
2051 png_handle_oFFs(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
2053 png_byte buf[9];
2054 png_int_32 offset_x, offset_y;
2055 int unit_type;
2057 png_debug(1, "in png_handle_oFFs");
2059 if (!(png_ptr->mode & PNG_HAVE_IHDR))
2060 png_chunk_error(png_ptr, "missing IHDR");
2062 else if (png_ptr->mode & PNG_HAVE_IDAT)
2064 png_crc_finish(png_ptr, length);
2065 png_chunk_benign_error(png_ptr, "out of place");
2066 return;
2069 else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_oFFs))
2071 png_crc_finish(png_ptr, length);
2072 png_chunk_benign_error(png_ptr, "duplicate");
2073 return;
2076 if (length != 9)
2078 png_crc_finish(png_ptr, length);
2079 png_chunk_benign_error(png_ptr, "invalid");
2080 return;
2083 png_crc_read(png_ptr, buf, 9);
2085 if (png_crc_finish(png_ptr, 0))
2086 return;
2088 offset_x = png_get_int_32(buf);
2089 offset_y = png_get_int_32(buf + 4);
2090 unit_type = buf[8];
2091 png_set_oFFs(png_ptr, info_ptr, offset_x, offset_y, unit_type);
2093 #endif
2095 #ifdef PNG_READ_pCAL_SUPPORTED
2096 /* Read the pCAL chunk (described in the PNG Extensions document) */
2097 void /* PRIVATE */
2098 png_handle_pCAL(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
2100 png_int_32 X0, X1;
2101 png_byte type, nparams;
2102 png_bytep buffer, buf, units, endptr;
2103 png_charpp params;
2104 int i;
2106 png_debug(1, "in png_handle_pCAL");
2108 if (!(png_ptr->mode & PNG_HAVE_IHDR))
2109 png_chunk_error(png_ptr, "missing IHDR");
2111 else if (png_ptr->mode & PNG_HAVE_IDAT)
2113 png_crc_finish(png_ptr, length);
2114 png_chunk_benign_error(png_ptr, "out of place");
2115 return;
2118 else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_pCAL))
2120 png_crc_finish(png_ptr, length);
2121 png_chunk_benign_error(png_ptr, "duplicate");
2122 return;
2125 png_debug1(2, "Allocating and reading pCAL chunk data (%u bytes)",
2126 length + 1);
2128 buffer = png_read_buffer(png_ptr, length+1, 2/*silent*/);
2130 if (buffer == NULL)
2132 png_crc_finish(png_ptr, length);
2133 png_chunk_benign_error(png_ptr, "out of memory");
2134 return;
2137 png_crc_read(png_ptr, buffer, length);
2139 if (png_crc_finish(png_ptr, 0))
2140 return;
2142 buffer[length] = 0; /* Null terminate the last string */
2144 png_debug(3, "Finding end of pCAL purpose string");
2145 for (buf = buffer; *buf; buf++)
2146 /* Empty loop */ ;
2148 endptr = buffer + length;
2150 /* We need to have at least 12 bytes after the purpose string
2151 * in order to get the parameter information.
2153 if (endptr <= buf + 12)
2155 png_chunk_benign_error(png_ptr, "invalid");
2156 return;
2159 png_debug(3, "Reading pCAL X0, X1, type, nparams, and units");
2160 X0 = png_get_int_32((png_bytep)buf+1);
2161 X1 = png_get_int_32((png_bytep)buf+5);
2162 type = buf[9];
2163 nparams = buf[10];
2164 units = buf + 11;
2166 png_debug(3, "Checking pCAL equation type and number of parameters");
2167 /* Check that we have the right number of parameters for known
2168 * equation types.
2170 if ((type == PNG_EQUATION_LINEAR && nparams != 2) ||
2171 (type == PNG_EQUATION_BASE_E && nparams != 3) ||
2172 (type == PNG_EQUATION_ARBITRARY && nparams != 3) ||
2173 (type == PNG_EQUATION_HYPERBOLIC && nparams != 4))
2175 png_chunk_benign_error(png_ptr, "invalid parameter count");
2176 return;
2179 else if (type >= PNG_EQUATION_LAST)
2181 png_chunk_benign_error(png_ptr, "unrecognized equation type");
2184 for (buf = units; *buf; buf++)
2185 /* Empty loop to move past the units string. */ ;
2187 png_debug(3, "Allocating pCAL parameters array");
2189 params = png_voidcast(png_charpp, png_malloc_warn(png_ptr,
2190 nparams * (sizeof (png_charp))));
2192 if (params == NULL)
2194 png_chunk_benign_error(png_ptr, "out of memory");
2195 return;
2198 /* Get pointers to the start of each parameter string. */
2199 for (i = 0; i < nparams; i++)
2201 buf++; /* Skip the null string terminator from previous parameter. */
2203 png_debug1(3, "Reading pCAL parameter %d", i);
2205 for (params[i] = (png_charp)buf; buf <= endptr && *buf != 0; buf++)
2206 /* Empty loop to move past each parameter string */ ;
2208 /* Make sure we haven't run out of data yet */
2209 if (buf > endptr)
2211 png_free(png_ptr, params);
2212 png_chunk_benign_error(png_ptr, "invalid data");
2213 return;
2217 png_set_pCAL(png_ptr, info_ptr, (png_charp)buffer, X0, X1, type, nparams,
2218 (png_charp)units, params);
2220 png_free(png_ptr, params);
2222 #endif
2224 #ifdef PNG_READ_sCAL_SUPPORTED
2225 /* Read the sCAL chunk */
2226 void /* PRIVATE */
2227 png_handle_sCAL(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
2229 png_bytep buffer;
2230 png_size_t i;
2231 int state;
2233 png_debug(1, "in png_handle_sCAL");
2235 if (!(png_ptr->mode & PNG_HAVE_IHDR))
2236 png_chunk_error(png_ptr, "missing IHDR");
2238 else if (png_ptr->mode & PNG_HAVE_IDAT)
2240 png_crc_finish(png_ptr, length);
2241 png_chunk_benign_error(png_ptr, "out of place");
2242 return;
2245 else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_sCAL))
2247 png_crc_finish(png_ptr, length);
2248 png_chunk_benign_error(png_ptr, "duplicate");
2249 return;
2252 /* Need unit type, width, \0, height: minimum 4 bytes */
2253 else if (length < 4)
2255 png_crc_finish(png_ptr, length);
2256 png_chunk_benign_error(png_ptr, "invalid");
2257 return;
2260 png_debug1(2, "Allocating and reading sCAL chunk data (%u bytes)",
2261 length + 1);
2263 buffer = png_read_buffer(png_ptr, length+1, 2/*silent*/);
2265 if (buffer == NULL)
2267 png_chunk_benign_error(png_ptr, "out of memory");
2268 png_crc_finish(png_ptr, length);
2269 return;
2272 png_crc_read(png_ptr, buffer, length);
2273 buffer[length] = 0; /* Null terminate the last string */
2275 if (png_crc_finish(png_ptr, 0))
2276 return;
2278 /* Validate the unit. */
2279 if (buffer[0] != 1 && buffer[0] != 2)
2281 png_chunk_benign_error(png_ptr, "invalid unit");
2282 return;
2285 /* Validate the ASCII numbers, need two ASCII numbers separated by
2286 * a '\0' and they need to fit exactly in the chunk data.
2288 i = 1;
2289 state = 0;
2291 if (!png_check_fp_number((png_const_charp)buffer, length, &state, &i) ||
2292 i >= length || buffer[i++] != 0)
2293 png_chunk_benign_error(png_ptr, "bad width format");
2295 else if (!PNG_FP_IS_POSITIVE(state))
2296 png_chunk_benign_error(png_ptr, "non-positive width");
2298 else
2300 png_size_t heighti = i;
2302 state = 0;
2303 if (!png_check_fp_number((png_const_charp)buffer, length, &state, &i) ||
2304 i != length)
2305 png_chunk_benign_error(png_ptr, "bad height format");
2307 else if (!PNG_FP_IS_POSITIVE(state))
2308 png_chunk_benign_error(png_ptr, "non-positive height");
2310 else
2311 /* This is the (only) success case. */
2312 png_set_sCAL_s(png_ptr, info_ptr, buffer[0],
2313 (png_charp)buffer+1, (png_charp)buffer+heighti);
2316 #endif
2318 #ifdef PNG_READ_tIME_SUPPORTED
2319 void /* PRIVATE */
2320 png_handle_tIME(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
2322 png_byte buf[7];
2323 png_time mod_time;
2325 png_debug(1, "in png_handle_tIME");
2327 if (!(png_ptr->mode & PNG_HAVE_IHDR))
2328 png_chunk_error(png_ptr, "missing IHDR");
2330 else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_tIME))
2332 png_crc_finish(png_ptr, length);
2333 png_chunk_benign_error(png_ptr, "duplicate");
2334 return;
2337 if (png_ptr->mode & PNG_HAVE_IDAT)
2338 png_ptr->mode |= PNG_AFTER_IDAT;
2340 if (length != 7)
2342 png_crc_finish(png_ptr, length);
2343 png_chunk_benign_error(png_ptr, "invalid");
2344 return;
2347 png_crc_read(png_ptr, buf, 7);
2349 if (png_crc_finish(png_ptr, 0))
2350 return;
2352 mod_time.second = buf[6];
2353 mod_time.minute = buf[5];
2354 mod_time.hour = buf[4];
2355 mod_time.day = buf[3];
2356 mod_time.month = buf[2];
2357 mod_time.year = png_get_uint_16(buf);
2359 png_set_tIME(png_ptr, info_ptr, &mod_time);
2361 #endif
2363 #ifdef PNG_READ_tEXt_SUPPORTED
2364 /* Note: this does not properly handle chunks that are > 64K under DOS */
2365 void /* PRIVATE */
2366 png_handle_tEXt(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
2368 png_text text_info;
2369 png_bytep buffer;
2370 png_charp key;
2371 png_charp text;
2372 png_uint_32 skip = 0;
2374 png_debug(1, "in png_handle_tEXt");
2376 #ifdef PNG_USER_LIMITS_SUPPORTED
2377 if (png_ptr->user_chunk_cache_max != 0)
2379 if (png_ptr->user_chunk_cache_max == 1)
2381 png_crc_finish(png_ptr, length);
2382 return;
2385 if (--png_ptr->user_chunk_cache_max == 1)
2387 png_crc_finish(png_ptr, length);
2388 png_chunk_benign_error(png_ptr, "no space in chunk cache");
2389 return;
2392 #endif
2394 if (!(png_ptr->mode & PNG_HAVE_IHDR))
2395 png_chunk_error(png_ptr, "missing IHDR");
2397 if (png_ptr->mode & PNG_HAVE_IDAT)
2398 png_ptr->mode |= PNG_AFTER_IDAT;
2400 #ifdef PNG_MAX_MALLOC_64K
2401 if (length > 65535U)
2403 png_crc_finish(png_ptr, length);
2404 png_chunk_benign_error(png_ptr, "too large to fit in memory");
2405 return;
2407 #endif
2409 buffer = png_read_buffer(png_ptr, length+1, 1/*warn*/);
2411 if (buffer == NULL)
2413 png_chunk_benign_error(png_ptr, "out of memory");
2414 return;
2417 png_crc_read(png_ptr, buffer, length);
2419 if (png_crc_finish(png_ptr, skip))
2420 return;
2422 key = (png_charp)buffer;
2423 key[length] = 0;
2425 for (text = key; *text; text++)
2426 /* Empty loop to find end of key */ ;
2428 if (text != key + length)
2429 text++;
2431 text_info.compression = PNG_TEXT_COMPRESSION_NONE;
2432 text_info.key = key;
2433 text_info.lang = NULL;
2434 text_info.lang_key = NULL;
2435 text_info.itxt_length = 0;
2436 text_info.text = text;
2437 text_info.text_length = strlen(text);
2439 if (png_set_text_2(png_ptr, info_ptr, &text_info, 1))
2440 png_warning(png_ptr, "Insufficient memory to process text chunk");
2442 #endif
2444 #ifdef PNG_READ_zTXt_SUPPORTED
2445 /* Note: this does not correctly handle chunks that are > 64K under DOS */
2446 void /* PRIVATE */
2447 png_handle_zTXt(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
2449 png_const_charp errmsg = NULL;
2450 png_bytep buffer;
2451 png_uint_32 keyword_length;
2453 png_debug(1, "in png_handle_zTXt");
2455 #ifdef PNG_USER_LIMITS_SUPPORTED
2456 if (png_ptr->user_chunk_cache_max != 0)
2458 if (png_ptr->user_chunk_cache_max == 1)
2460 png_crc_finish(png_ptr, length);
2461 return;
2464 if (--png_ptr->user_chunk_cache_max == 1)
2466 png_crc_finish(png_ptr, length);
2467 png_chunk_benign_error(png_ptr, "no space in chunk cache");
2468 return;
2471 #endif
2473 if (!(png_ptr->mode & PNG_HAVE_IHDR))
2474 png_chunk_error(png_ptr, "missing IHDR");
2476 if (png_ptr->mode & PNG_HAVE_IDAT)
2477 png_ptr->mode |= PNG_AFTER_IDAT;
2479 buffer = png_read_buffer(png_ptr, length, 2/*silent*/);
2481 if (buffer == NULL)
2483 png_crc_finish(png_ptr, length);
2484 png_chunk_benign_error(png_ptr, "out of memory");
2485 return;
2488 png_crc_read(png_ptr, buffer, length);
2490 if (png_crc_finish(png_ptr, 0))
2491 return;
2493 /* TODO: also check that the keyword contents match the spec! */
2494 for (keyword_length = 0;
2495 keyword_length < length && buffer[keyword_length] != 0;
2496 ++keyword_length)
2497 /* Empty loop to find end of name */ ;
2499 if (keyword_length > 79 || keyword_length < 1)
2500 errmsg = "bad keyword";
2502 /* zTXt must have some LZ data after the keyword, although it may expand to
2503 * zero bytes; we need a '\0' at the end of the keyword, the compression type
2504 * then the LZ data:
2506 else if (keyword_length + 3 > length)
2507 errmsg = "truncated";
2509 else if (buffer[keyword_length+1] != PNG_COMPRESSION_TYPE_BASE)
2510 errmsg = "unknown compression type";
2512 else
2514 png_alloc_size_t uncompressed_length = PNG_SIZE_MAX;
2516 /* TODO: at present png_decompress_chunk imposes a single application
2517 * level memory limit, this should be split to different values for iCCP
2518 * and text chunks.
2520 if (png_decompress_chunk(png_ptr, length, keyword_length+2,
2521 &uncompressed_length, 1/*terminate*/) == Z_STREAM_END)
2523 png_text text;
2525 /* It worked; png_ptr->read_buffer now looks like a tEXt chunk except
2526 * for the extra compression type byte and the fact that it isn't
2527 * necessarily '\0' terminated.
2529 buffer = png_ptr->read_buffer;
2530 buffer[uncompressed_length+(keyword_length+2)] = 0;
2532 text.compression = PNG_TEXT_COMPRESSION_zTXt;
2533 text.key = (png_charp)buffer;
2534 text.text = (png_charp)(buffer + keyword_length+2);
2535 text.text_length = uncompressed_length;
2536 text.itxt_length = 0;
2537 text.lang = NULL;
2538 text.lang_key = NULL;
2540 if (png_set_text_2(png_ptr, info_ptr, &text, 1))
2541 errmsg = "insufficient memory";
2544 else
2545 errmsg = png_ptr->zstream.msg;
2548 if (errmsg != NULL)
2549 png_chunk_benign_error(png_ptr, errmsg);
2551 #endif
2553 #ifdef PNG_READ_iTXt_SUPPORTED
2554 /* Note: this does not correctly handle chunks that are > 64K under DOS */
2555 void /* PRIVATE */
2556 png_handle_iTXt(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
2558 png_const_charp errmsg = NULL;
2559 png_bytep buffer;
2560 png_uint_32 prefix_length;
2562 png_debug(1, "in png_handle_iTXt");
2564 #ifdef PNG_USER_LIMITS_SUPPORTED
2565 if (png_ptr->user_chunk_cache_max != 0)
2567 if (png_ptr->user_chunk_cache_max == 1)
2569 png_crc_finish(png_ptr, length);
2570 return;
2573 if (--png_ptr->user_chunk_cache_max == 1)
2575 png_crc_finish(png_ptr, length);
2576 png_chunk_benign_error(png_ptr, "no space in chunk cache");
2577 return;
2580 #endif
2582 if (!(png_ptr->mode & PNG_HAVE_IHDR))
2583 png_chunk_error(png_ptr, "missing IHDR");
2585 if (png_ptr->mode & PNG_HAVE_IDAT)
2586 png_ptr->mode |= PNG_AFTER_IDAT;
2588 buffer = png_read_buffer(png_ptr, length+1, 1/*warn*/);
2590 if (buffer == NULL)
2592 png_crc_finish(png_ptr, length);
2593 png_chunk_benign_error(png_ptr, "out of memory");
2594 return;
2597 png_crc_read(png_ptr, buffer, length);
2599 if (png_crc_finish(png_ptr, 0))
2600 return;
2602 /* First the keyword. */
2603 for (prefix_length=0;
2604 prefix_length < length && buffer[prefix_length] != 0;
2605 ++prefix_length)
2606 /* Empty loop */ ;
2608 /* Perform a basic check on the keyword length here. */
2609 if (prefix_length > 79 || prefix_length < 1)
2610 errmsg = "bad keyword";
2612 /* Expect keyword, compression flag, compression type, language, translated
2613 * keyword (both may be empty but are 0 terminated) then the text, which may
2614 * be empty.
2616 else if (prefix_length + 5 > length)
2617 errmsg = "truncated";
2619 else if (buffer[prefix_length+1] == 0 ||
2620 (buffer[prefix_length+1] == 1 &&
2621 buffer[prefix_length+2] == PNG_COMPRESSION_TYPE_BASE))
2623 int compressed = buffer[prefix_length+1] != 0;
2624 png_uint_32 language_offset, translated_keyword_offset;
2625 png_alloc_size_t uncompressed_length = 0;
2627 /* Now the language tag */
2628 prefix_length += 3;
2629 language_offset = prefix_length;
2631 for (; prefix_length < length && buffer[prefix_length] != 0;
2632 ++prefix_length)
2633 /* Empty loop */ ;
2635 /* WARNING: the length may be invalid here, this is checked below. */
2636 translated_keyword_offset = ++prefix_length;
2638 for (; prefix_length < length && buffer[prefix_length] != 0;
2639 ++prefix_length)
2640 /* Empty loop */ ;
2642 /* prefix_length should now be at the trailing '\0' of the translated
2643 * keyword, but it may already be over the end. None of this arithmetic
2644 * can overflow because chunks are at most 2^31 bytes long, but on 16-bit
2645 * systems the available allocaton may overflow.
2647 ++prefix_length;
2649 if (!compressed && prefix_length <= length)
2650 uncompressed_length = length - prefix_length;
2652 else if (compressed && prefix_length < length)
2654 uncompressed_length = PNG_SIZE_MAX;
2656 /* TODO: at present png_decompress_chunk imposes a single application
2657 * level memory limit, this should be split to different values for
2658 * iCCP and text chunks.
2660 if (png_decompress_chunk(png_ptr, length, prefix_length,
2661 &uncompressed_length, 1/*terminate*/) == Z_STREAM_END)
2662 buffer = png_ptr->read_buffer;
2664 else
2665 errmsg = png_ptr->zstream.msg;
2668 else
2669 errmsg = "truncated";
2671 if (errmsg == NULL)
2673 png_text text;
2675 buffer[uncompressed_length+prefix_length] = 0;
2677 if (compressed)
2678 text.compression = PNG_ITXT_COMPRESSION_NONE;
2680 else
2681 text.compression = PNG_ITXT_COMPRESSION_zTXt;
2683 text.key = (png_charp)buffer;
2684 text.lang = (png_charp)buffer + language_offset;
2685 text.lang_key = (png_charp)buffer + translated_keyword_offset;
2686 text.text = (png_charp)buffer + prefix_length;
2687 text.text_length = 0;
2688 text.itxt_length = uncompressed_length;
2690 if (png_set_text_2(png_ptr, info_ptr, &text, 1))
2691 errmsg = "insufficient memory";
2695 else
2696 errmsg = "bad compression info";
2698 if (errmsg != NULL)
2699 png_chunk_benign_error(png_ptr, errmsg);
2701 #endif
2703 #ifdef PNG_READ_APNG_SUPPORTED
2704 void /* PRIVATE */
2705 png_handle_acTL(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
2707 png_byte data[8];
2708 png_uint_32 num_frames;
2709 png_uint_32 num_plays;
2710 png_uint_32 didSet;
2712 png_debug(1, "in png_handle_acTL");
2714 if (!(png_ptr->mode & PNG_HAVE_IHDR))
2716 png_error(png_ptr, "Missing IHDR before acTL");
2718 else if (png_ptr->mode & PNG_HAVE_IDAT)
2720 png_warning(png_ptr, "Invalid acTL after IDAT skipped");
2721 png_crc_finish(png_ptr, length);
2722 return;
2724 else if (png_ptr->mode & PNG_HAVE_acTL)
2726 png_warning(png_ptr, "Duplicate acTL skipped");
2727 png_crc_finish(png_ptr, length);
2728 return;
2730 else if (length != 8)
2732 png_warning(png_ptr, "acTL with invalid length skipped");
2733 png_crc_finish(png_ptr, length);
2734 return;
2737 png_crc_read(png_ptr, data, 8);
2738 png_crc_finish(png_ptr, 0);
2740 num_frames = png_get_uint_31(png_ptr, data);
2741 num_plays = png_get_uint_31(png_ptr, data + 4);
2743 /* the set function will do error checking on num_frames */
2744 didSet = png_set_acTL(png_ptr, info_ptr, num_frames, num_plays);
2745 if(didSet)
2746 png_ptr->mode |= PNG_HAVE_acTL;
2749 void /* PRIVATE */
2750 png_handle_fcTL(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
2752 png_byte data[22];
2753 png_uint_32 width;
2754 png_uint_32 height;
2755 png_uint_32 x_offset;
2756 png_uint_32 y_offset;
2757 png_uint_16 delay_num;
2758 png_uint_16 delay_den;
2759 png_byte dispose_op;
2760 png_byte blend_op;
2762 png_debug(1, "in png_handle_fcTL");
2764 png_ensure_sequence_number(png_ptr, length);
2766 if (!(png_ptr->mode & PNG_HAVE_IHDR))
2768 png_error(png_ptr, "Missing IHDR before fcTL");
2770 else if (png_ptr->mode & PNG_HAVE_IDAT)
2772 /* for any frames other then the first this message may be misleading,
2773 * but correct. PNG_HAVE_IDAT is unset before the frame head is read
2774 * i can't think of a better message */
2775 png_warning(png_ptr, "Invalid fcTL after IDAT skipped");
2776 png_crc_finish(png_ptr, length-4);
2777 return;
2779 else if (png_ptr->mode & PNG_HAVE_fcTL)
2781 png_warning(png_ptr, "Duplicate fcTL within one frame skipped");
2782 png_crc_finish(png_ptr, length-4);
2783 return;
2785 else if (length != 26)
2787 png_warning(png_ptr, "fcTL with invalid length skipped");
2788 png_crc_finish(png_ptr, length-4);
2789 return;
2792 png_crc_read(png_ptr, data, 22);
2793 png_crc_finish(png_ptr, 0);
2795 width = png_get_uint_31(png_ptr, data);
2796 height = png_get_uint_31(png_ptr, data + 4);
2797 x_offset = png_get_uint_31(png_ptr, data + 8);
2798 y_offset = png_get_uint_31(png_ptr, data + 12);
2799 delay_num = png_get_uint_16(data + 16);
2800 delay_den = png_get_uint_16(data + 18);
2801 dispose_op = data[20];
2802 blend_op = data[21];
2804 if (png_ptr->num_frames_read == 0 && (x_offset != 0 || y_offset != 0))
2806 png_warning(png_ptr, "fcTL for the first frame must have zero offset");
2807 return;
2810 if (info_ptr != NULL)
2812 if (png_ptr->num_frames_read == 0 &&
2813 (width != info_ptr->width || height != info_ptr->height))
2815 png_warning(png_ptr, "size in first frame's fcTL must match "
2816 "the size in IHDR");
2817 return;
2820 /* The set function will do more error checking */
2821 png_set_next_frame_fcTL(png_ptr, info_ptr, width, height,
2822 x_offset, y_offset, delay_num, delay_den,
2823 dispose_op, blend_op);
2825 png_read_reinit(png_ptr, info_ptr);
2827 png_ptr->mode |= PNG_HAVE_fcTL;
2831 void /* PRIVATE */
2832 png_have_info(png_structp png_ptr, png_infop info_ptr)
2834 if((info_ptr->valid & PNG_INFO_acTL) && !(info_ptr->valid & PNG_INFO_fcTL))
2836 png_ptr->apng_flags |= PNG_FIRST_FRAME_HIDDEN;
2837 info_ptr->num_frames++;
2841 void /* PRIVATE */
2842 png_handle_fdAT(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
2844 png_ensure_sequence_number(png_ptr, length);
2846 /* This function is only called from png_read_end(), png_read_info(),
2847 * and png_push_read_chunk() which means that:
2848 * - the user doesn't want to read this frame
2849 * - or this is an out-of-place fdAT
2850 * in either case it is safe to ignore the chunk with a warning */
2851 png_warning(png_ptr, "ignoring fdAT chunk");
2852 png_crc_finish(png_ptr, length - 4);
2853 PNG_UNUSED(info_ptr)
2856 void /* PRIVATE */
2857 png_ensure_sequence_number(png_structp png_ptr, png_uint_32 length)
2859 png_byte data[4];
2860 png_uint_32 sequence_number;
2862 if (length < 4)
2863 png_error(png_ptr, "invalid fcTL or fdAT chunk found");
2865 png_crc_read(png_ptr, data, 4);
2866 sequence_number = png_get_uint_31(png_ptr, data);
2868 if (sequence_number != png_ptr->next_seq_num)
2869 png_error(png_ptr, "fcTL or fdAT chunk with out-of-order sequence "
2870 "number found");
2872 png_ptr->next_seq_num++;
2874 #endif /* PNG_READ_APNG_SUPPORTED */
2876 #ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
2877 /* Utility function for png_handle_unknown; set up png_ptr::unknown_chunk */
2878 static int
2879 png_cache_unknown_chunk(png_structrp png_ptr, png_uint_32 length)
2881 png_alloc_size_t limit = PNG_SIZE_MAX;
2883 if (png_ptr->unknown_chunk.data != NULL)
2885 png_free(png_ptr, png_ptr->unknown_chunk.data);
2886 png_ptr->unknown_chunk.data = NULL;
2889 # ifdef PNG_SET_CHUNK_MALLOC_LIMIT_SUPPORTED
2890 if (png_ptr->user_chunk_malloc_max > 0 &&
2891 png_ptr->user_chunk_malloc_max < limit)
2892 limit = png_ptr->user_chunk_malloc_max;
2894 # elif PNG_USER_CHUNK_MALLOC_MAX > 0
2895 if (PNG_USER_CHUNK_MALLOC_MAX < limit)
2896 limit = PNG_USER_CHUNK_MALLOC_MAX;
2897 # endif
2899 if (length <= limit)
2901 PNG_CSTRING_FROM_CHUNK(png_ptr->unknown_chunk.name, png_ptr->chunk_name);
2902 /* The following is safe because of the PNG_SIZE_MAX init above */
2903 png_ptr->unknown_chunk.size = (png_size_t)length/*SAFE*/;
2904 /* 'mode' is a flag array, only the bottom four bits matter here */
2905 png_ptr->unknown_chunk.location = (png_byte)png_ptr->mode/*SAFE*/;
2907 if (length == 0)
2908 png_ptr->unknown_chunk.data = NULL;
2910 else
2912 /* Do a 'warn' here - it is handled below. */
2913 png_ptr->unknown_chunk.data = png_voidcast(png_bytep,
2914 png_malloc_warn(png_ptr, length));
2918 if (png_ptr->unknown_chunk.data == NULL && length > 0)
2920 /* This is benign because we clean up correctly */
2921 png_crc_finish(png_ptr, length);
2922 png_chunk_benign_error(png_ptr, "unknown chunk exceeds memory limits");
2923 return 0;
2926 else
2928 if (length > 0)
2929 png_crc_read(png_ptr, png_ptr->unknown_chunk.data, length);
2930 png_crc_finish(png_ptr, 0);
2931 return 1;
2934 #endif /* PNG_READ_UNKNOWN_CHUNKS_SUPPORTED */
2936 /* Handle an unknown, or known but disabled, chunk */
2937 void /* PRIVATE */
2938 png_handle_unknown(png_structrp png_ptr, png_inforp info_ptr,
2939 png_uint_32 length, int keep)
2941 int handled = 0; /* the chunk was handled */
2943 png_debug(1, "in png_handle_unknown");
2945 /* NOTE: this code is based on the code in libpng-1.4.12 except for fixing
2946 * the bug which meant that setting a non-default behavior for a specific
2947 * chunk would be ignored (the default was always used unless a user
2948 * callback was installed).
2950 * 'keep' is the value from the png_chunk_unknown_handling, the setting for
2951 * this specific chunk_name, if PNG_HANDLE_AS_UNKNOWN_SUPPORTED, if not it
2952 * will always be PNG_HANDLE_CHUNK_AS_DEFAULT and it needs to be set here.
2953 * This is just an optimization to avoid multiple calls to the lookup
2954 * function.
2956 # ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
2957 keep = png_chunk_unknown_handling(png_ptr, png_ptr->chunk_name);
2958 # endif
2960 /* One of the following methods will read the chunk or skip it (at least one
2961 * of these is always defined because this is the only way to switch on
2962 * PNG_READ_UNKNOWN_CHUNKS_SUPPORTED)
2964 #ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
2965 # ifdef PNG_READ_USER_CHUNKS_SUPPORTED
2966 /* The user callback takes precedence over the chunk keep value, but the
2967 * keep value is still required to validate a save of a critical chunk.
2969 if (png_ptr->read_user_chunk_fn != NULL)
2971 if (png_cache_unknown_chunk(png_ptr, length))
2973 /* Callback to user unknown chunk handler */
2974 int ret = (*(png_ptr->read_user_chunk_fn))(png_ptr,
2975 &png_ptr->unknown_chunk);
2977 /* ret is:
2978 * negative: An error occured, png_chunk_error will be called.
2979 * zero: The chunk was not handled, the chunk will be discarded
2980 * unless png_set_keep_unknown_chunks has been used to set
2981 * a 'keep' behavior for this particular chunk, in which
2982 * case that will be used. A critical chunk will cause an
2983 * error at this point unless it is to be saved.
2984 * positive: The chunk was handled, libpng will ignore/discard it.
2986 if (ret < 0)
2987 png_chunk_error(png_ptr, "error in user chunk");
2989 else if (ret == 0)
2991 /* If the keep value is 'default' or 'never' override it, but
2992 * still error out on critical chunks unless the keep value is
2993 * 'always' While this is weird it is the behavior in 1.4.12.
2994 * A possible improvement would be to obey the value set for the
2995 * chunk, but this would be an API change that would probably
2996 * damage some applications.
2998 * The png_app_warning below catches the case that matters, where
2999 * the application has not set specific save or ignore for this
3000 * chunk or global save or ignore.
3002 if (keep < PNG_HANDLE_CHUNK_IF_SAFE)
3004 # ifdef PNG_SET_UNKNOWN_CHUNKS_SUPPORTED
3005 if (png_ptr->unknown_default < PNG_HANDLE_CHUNK_IF_SAFE)
3007 png_chunk_warning(png_ptr, "Saving unknown chunk:");
3008 png_app_warning(png_ptr,
3009 "forcing save of an unhandled chunk;"
3010 " please call png_set_keep_unknown_chunks");
3011 /* with keep = PNG_HANDLE_CHUNK_IF_SAFE */
3013 # endif
3014 keep = PNG_HANDLE_CHUNK_IF_SAFE;
3018 else /* chunk was handled */
3020 handled = 1;
3021 /* Critical chunks can be safely discarded at this point. */
3022 keep = PNG_HANDLE_CHUNK_NEVER;
3026 else
3027 keep = PNG_HANDLE_CHUNK_NEVER; /* insufficient memory */
3030 else
3031 /* Use the SAVE_UNKNOWN_CHUNKS code or skip the chunk */
3032 # endif /* PNG_READ_USER_CHUNKS_SUPPORTED */
3034 # ifdef PNG_SAVE_UNKNOWN_CHUNKS_SUPPORTED
3036 /* keep is currently just the per-chunk setting, if there was no
3037 * setting change it to the global default now (not that this may
3038 * still be AS_DEFAULT) then obtain the cache of the chunk if required,
3039 * if not simply skip the chunk.
3041 if (keep == PNG_HANDLE_CHUNK_AS_DEFAULT)
3042 keep = png_ptr->unknown_default;
3044 if (keep == PNG_HANDLE_CHUNK_ALWAYS ||
3045 (keep == PNG_HANDLE_CHUNK_IF_SAFE &&
3046 PNG_CHUNK_ANCILLARY(png_ptr->chunk_name)))
3048 if (!png_cache_unknown_chunk(png_ptr, length))
3049 keep = PNG_HANDLE_CHUNK_NEVER;
3052 else
3053 png_crc_finish(png_ptr, length);
3055 # else
3056 # ifndef PNG_READ_USER_CHUNKS_SUPPORTED
3057 # error no method to support READ_UNKNOWN_CHUNKS
3058 # endif
3061 /* If here there is no read callback pointer set and no support is
3062 * compiled in to just save the unknown chunks, so simply skip this
3063 * chunk. If 'keep' is something other than AS_DEFAULT or NEVER then
3064 * the app has erroneously asked for unknown chunk saving when there
3065 * is no support.
3067 if (keep > PNG_HANDLE_CHUNK_NEVER)
3068 png_app_error(png_ptr, "no unknown chunk support available");
3070 png_crc_finish(png_ptr, length);
3072 # endif /* PNG_SAVE_UNKNOWN_CHUNKS_SUPPORTED */
3074 # ifdef PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED
3075 /* Now store the chunk in the chunk list if appropriate, and if the limits
3076 * permit it.
3078 if (keep == PNG_HANDLE_CHUNK_ALWAYS ||
3079 (keep == PNG_HANDLE_CHUNK_IF_SAFE &&
3080 PNG_CHUNK_ANCILLARY(png_ptr->chunk_name)))
3082 # ifdef PNG_USER_LIMITS_SUPPORTED
3083 switch (png_ptr->user_chunk_cache_max)
3085 case 2:
3086 png_ptr->user_chunk_cache_max = 1;
3087 png_chunk_benign_error(png_ptr, "no space in chunk cache");
3088 /* FALL THROUGH */
3089 case 1:
3090 /* NOTE: prior to 1.6.0 this case resulted in an unknown critical
3091 * chunk being skipped, now there will be a hard error below.
3093 break;
3095 default: /* not at limit */
3096 --(png_ptr->user_chunk_cache_max);
3097 /* FALL THROUGH */
3098 case 0: /* no limit */
3099 # endif /* PNG_USER_LIMITS_SUPPORTED */
3100 /* Here when the limit isn't reached or when limits are compiled
3101 * out; store the chunk.
3103 png_set_unknown_chunks(png_ptr, info_ptr,
3104 &png_ptr->unknown_chunk, 1);
3105 handled = 1;
3106 # ifdef PNG_USER_LIMITS_SUPPORTED
3107 break;
3109 # endif
3111 # else /* no store support! */
3112 PNG_UNUSED(info_ptr)
3113 # error untested code (reading unknown chunks with no store support)
3114 # endif
3116 /* Regardless of the error handling below the cached data (if any) can be
3117 * freed now. Notice that the data is not freed if there is a png_error, but
3118 * it will be freed by destroy_read_struct.
3120 if (png_ptr->unknown_chunk.data != NULL)
3121 png_free(png_ptr, png_ptr->unknown_chunk.data);
3122 png_ptr->unknown_chunk.data = NULL;
3124 #else /* !PNG_READ_UNKNOWN_CHUNKS_SUPPORTED */
3125 /* There is no support to read an unknown chunk, so just skip it. */
3126 png_crc_finish(png_ptr, length);
3127 PNG_UNUSED(info_ptr)
3128 PNG_UNUSED(keep)
3129 #endif /* !PNG_READ_UNKNOWN_CHUNKS_SUPPORTED */
3131 /* Check for unhandled critical chunks */
3132 if (!handled && PNG_CHUNK_CRITICAL(png_ptr->chunk_name))
3133 png_chunk_error(png_ptr, "unhandled critical chunk");
3136 /* This function is called to verify that a chunk name is valid.
3137 * This function can't have the "critical chunk check" incorporated
3138 * into it, since in the future we will need to be able to call user
3139 * functions to handle unknown critical chunks after we check that
3140 * the chunk name itself is valid.
3143 /* Bit hacking: the test for an invalid byte in the 4 byte chunk name is:
3145 * ((c) < 65 || (c) > 122 || ((c) > 90 && (c) < 97))
3148 void /* PRIVATE */
3149 png_check_chunk_name(png_structrp png_ptr, png_uint_32 chunk_name)
3151 int i;
3153 png_debug(1, "in png_check_chunk_name");
3155 for (i=1; i<=4; ++i)
3157 int c = chunk_name & 0xff;
3159 if (c < 65 || c > 122 || (c > 90 && c < 97))
3160 png_chunk_error(png_ptr, "invalid chunk type");
3162 chunk_name >>= 8;
3166 /* Combines the row recently read in with the existing pixels in the row. This
3167 * routine takes care of alpha and transparency if requested. This routine also
3168 * handles the two methods of progressive display of interlaced images,
3169 * depending on the 'display' value; if 'display' is true then the whole row
3170 * (dp) is filled from the start by replicating the available pixels. If
3171 * 'display' is false only those pixels present in the pass are filled in.
3173 void /* PRIVATE */
3174 png_combine_row(png_const_structrp png_ptr, png_bytep dp, int display)
3176 unsigned int pixel_depth = png_ptr->transformed_pixel_depth;
3177 png_const_bytep sp = png_ptr->row_buf + 1;
3178 png_uint_32 row_width = png_ptr->width;
3179 unsigned int pass = png_ptr->pass;
3180 png_bytep end_ptr = 0;
3181 png_byte end_byte = 0;
3182 unsigned int end_mask;
3184 png_debug(1, "in png_combine_row");
3186 /* Added in 1.5.6: it should not be possible to enter this routine until at
3187 * least one row has been read from the PNG data and transformed.
3189 if (pixel_depth == 0)
3190 png_error(png_ptr, "internal row logic error");
3192 /* Added in 1.5.4: the pixel depth should match the information returned by
3193 * any call to png_read_update_info at this point. Do not continue if we got
3194 * this wrong.
3196 if (png_ptr->info_rowbytes != 0 && png_ptr->info_rowbytes !=
3197 PNG_ROWBYTES(pixel_depth, row_width))
3198 png_error(png_ptr, "internal row size calculation error");
3200 /* Don't expect this to ever happen: */
3201 if (row_width == 0)
3202 png_error(png_ptr, "internal row width error");
3204 /* Preserve the last byte in cases where only part of it will be overwritten,
3205 * the multiply below may overflow, we don't care because ANSI-C guarantees
3206 * we get the low bits.
3208 end_mask = (pixel_depth * row_width) & 7;
3209 if (end_mask != 0)
3211 /* end_ptr == NULL is a flag to say do nothing */
3212 end_ptr = dp + PNG_ROWBYTES(pixel_depth, row_width) - 1;
3213 end_byte = *end_ptr;
3214 # ifdef PNG_READ_PACKSWAP_SUPPORTED
3215 if (png_ptr->transformations & PNG_PACKSWAP) /* little-endian byte */
3216 end_mask = 0xff << end_mask;
3218 else /* big-endian byte */
3219 # endif
3220 end_mask = 0xff >> end_mask;
3221 /* end_mask is now the bits to *keep* from the destination row */
3224 /* For non-interlaced images this reduces to a memcpy(). A memcpy()
3225 * will also happen if interlacing isn't supported or if the application
3226 * does not call png_set_interlace_handling(). In the latter cases the
3227 * caller just gets a sequence of the unexpanded rows from each interlace
3228 * pass.
3230 #ifdef PNG_READ_INTERLACING_SUPPORTED
3231 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE) &&
3232 pass < 6 && (display == 0 ||
3233 /* The following copies everything for 'display' on passes 0, 2 and 4. */
3234 (display == 1 && (pass & 1) != 0)))
3236 /* Narrow images may have no bits in a pass; the caller should handle
3237 * this, but this test is cheap:
3239 if (row_width <= PNG_PASS_START_COL(pass))
3240 return;
3242 if (pixel_depth < 8)
3244 /* For pixel depths up to 4 bpp the 8-pixel mask can be expanded to fit
3245 * into 32 bits, then a single loop over the bytes using the four byte
3246 * values in the 32-bit mask can be used. For the 'display' option the
3247 * expanded mask may also not require any masking within a byte. To
3248 * make this work the PACKSWAP option must be taken into account - it
3249 * simply requires the pixels to be reversed in each byte.
3251 * The 'regular' case requires a mask for each of the first 6 passes,
3252 * the 'display' case does a copy for the even passes in the range
3253 * 0..6. This has already been handled in the test above.
3255 * The masks are arranged as four bytes with the first byte to use in
3256 * the lowest bits (little-endian) regardless of the order (PACKSWAP or
3257 * not) of the pixels in each byte.
3259 * NOTE: the whole of this logic depends on the caller of this function
3260 * only calling it on rows appropriate to the pass. This function only
3261 * understands the 'x' logic; the 'y' logic is handled by the caller.
3263 * The following defines allow generation of compile time constant bit
3264 * masks for each pixel depth and each possibility of swapped or not
3265 * swapped bytes. Pass 'p' is in the range 0..6; 'x', a pixel index,
3266 * is in the range 0..7; and the result is 1 if the pixel is to be
3267 * copied in the pass, 0 if not. 'S' is for the sparkle method, 'B'
3268 * for the block method.
3270 * With some compilers a compile time expression of the general form:
3272 * (shift >= 32) ? (a >> (shift-32)) : (b >> shift)
3274 * Produces warnings with values of 'shift' in the range 33 to 63
3275 * because the right hand side of the ?: expression is evaluated by
3276 * the compiler even though it isn't used. Microsoft Visual C (various
3277 * versions) and the Intel C compiler are known to do this. To avoid
3278 * this the following macros are used in 1.5.6. This is a temporary
3279 * solution to avoid destabilizing the code during the release process.
3281 # if PNG_USE_COMPILE_TIME_MASKS
3282 # define PNG_LSR(x,s) ((x)>>((s) & 0x1f))
3283 # define PNG_LSL(x,s) ((x)<<((s) & 0x1f))
3284 # else
3285 # define PNG_LSR(x,s) ((x)>>(s))
3286 # define PNG_LSL(x,s) ((x)<<(s))
3287 # endif
3288 # define S_COPY(p,x) (((p)<4 ? PNG_LSR(0x80088822,(3-(p))*8+(7-(x))) :\
3289 PNG_LSR(0xaa55ff00,(7-(p))*8+(7-(x)))) & 1)
3290 # define B_COPY(p,x) (((p)<4 ? PNG_LSR(0xff0fff33,(3-(p))*8+(7-(x))) :\
3291 PNG_LSR(0xff55ff00,(7-(p))*8+(7-(x)))) & 1)
3293 /* Return a mask for pass 'p' pixel 'x' at depth 'd'. The mask is
3294 * little endian - the first pixel is at bit 0 - however the extra
3295 * parameter 's' can be set to cause the mask position to be swapped
3296 * within each byte, to match the PNG format. This is done by XOR of
3297 * the shift with 7, 6 or 4 for bit depths 1, 2 and 4.
3299 # define PIXEL_MASK(p,x,d,s) \
3300 (PNG_LSL(((PNG_LSL(1U,(d)))-1),(((x)*(d))^((s)?8-(d):0))))
3302 /* Hence generate the appropriate 'block' or 'sparkle' pixel copy mask.
3304 # define S_MASKx(p,x,d,s) (S_COPY(p,x)?PIXEL_MASK(p,x,d,s):0)
3305 # define B_MASKx(p,x,d,s) (B_COPY(p,x)?PIXEL_MASK(p,x,d,s):0)
3307 /* Combine 8 of these to get the full mask. For the 1-bpp and 2-bpp
3308 * cases the result needs replicating, for the 4-bpp case the above
3309 * generates a full 32 bits.
3311 # define MASK_EXPAND(m,d) ((m)*((d)==1?0x01010101:((d)==2?0x00010001:1)))
3313 # define S_MASK(p,d,s) MASK_EXPAND(S_MASKx(p,0,d,s) + S_MASKx(p,1,d,s) +\
3314 S_MASKx(p,2,d,s) + S_MASKx(p,3,d,s) + S_MASKx(p,4,d,s) +\
3315 S_MASKx(p,5,d,s) + S_MASKx(p,6,d,s) + S_MASKx(p,7,d,s), d)
3317 # define B_MASK(p,d,s) MASK_EXPAND(B_MASKx(p,0,d,s) + B_MASKx(p,1,d,s) +\
3318 B_MASKx(p,2,d,s) + B_MASKx(p,3,d,s) + B_MASKx(p,4,d,s) +\
3319 B_MASKx(p,5,d,s) + B_MASKx(p,6,d,s) + B_MASKx(p,7,d,s), d)
3321 #if PNG_USE_COMPILE_TIME_MASKS
3322 /* Utility macros to construct all the masks for a depth/swap
3323 * combination. The 's' parameter says whether the format is PNG
3324 * (big endian bytes) or not. Only the three odd-numbered passes are
3325 * required for the display/block algorithm.
3327 # define S_MASKS(d,s) { S_MASK(0,d,s), S_MASK(1,d,s), S_MASK(2,d,s),\
3328 S_MASK(3,d,s), S_MASK(4,d,s), S_MASK(5,d,s) }
3330 # define B_MASKS(d,s) { B_MASK(1,d,s), S_MASK(3,d,s), S_MASK(5,d,s) }
3332 # define DEPTH_INDEX(d) ((d)==1?0:((d)==2?1:2))
3334 /* Hence the pre-compiled masks indexed by PACKSWAP (or not), depth and
3335 * then pass:
3337 static PNG_CONST png_uint_32 row_mask[2/*PACKSWAP*/][3/*depth*/][6] =
3339 /* Little-endian byte masks for PACKSWAP */
3340 { S_MASKS(1,0), S_MASKS(2,0), S_MASKS(4,0) },
3341 /* Normal (big-endian byte) masks - PNG format */
3342 { S_MASKS(1,1), S_MASKS(2,1), S_MASKS(4,1) }
3345 /* display_mask has only three entries for the odd passes, so index by
3346 * pass>>1.
3348 static PNG_CONST png_uint_32 display_mask[2][3][3] =
3350 /* Little-endian byte masks for PACKSWAP */
3351 { B_MASKS(1,0), B_MASKS(2,0), B_MASKS(4,0) },
3352 /* Normal (big-endian byte) masks - PNG format */
3353 { B_MASKS(1,1), B_MASKS(2,1), B_MASKS(4,1) }
3356 # define MASK(pass,depth,display,png)\
3357 ((display)?display_mask[png][DEPTH_INDEX(depth)][pass>>1]:\
3358 row_mask[png][DEPTH_INDEX(depth)][pass])
3360 #else /* !PNG_USE_COMPILE_TIME_MASKS */
3361 /* This is the runtime alternative: it seems unlikely that this will
3362 * ever be either smaller or faster than the compile time approach.
3364 # define MASK(pass,depth,display,png)\
3365 ((display)?B_MASK(pass,depth,png):S_MASK(pass,depth,png))
3366 #endif /* !PNG_USE_COMPILE_TIME_MASKS */
3368 /* Use the appropriate mask to copy the required bits. In some cases
3369 * the byte mask will be 0 or 0xff, optimize these cases. row_width is
3370 * the number of pixels, but the code copies bytes, so it is necessary
3371 * to special case the end.
3373 png_uint_32 pixels_per_byte = 8 / pixel_depth;
3374 png_uint_32 mask;
3376 # ifdef PNG_READ_PACKSWAP_SUPPORTED
3377 if (png_ptr->transformations & PNG_PACKSWAP)
3378 mask = MASK(pass, pixel_depth, display, 0);
3380 else
3381 # endif
3382 mask = MASK(pass, pixel_depth, display, 1);
3384 for (;;)
3386 png_uint_32 m;
3388 /* It doesn't matter in the following if png_uint_32 has more than
3389 * 32 bits because the high bits always match those in m<<24; it is,
3390 * however, essential to use OR here, not +, because of this.
3392 m = mask;
3393 mask = (m >> 8) | (m << 24); /* rotate right to good compilers */
3394 m &= 0xff;
3396 if (m != 0) /* something to copy */
3398 if (m != 0xff)
3399 *dp = (png_byte)((*dp & ~m) | (*sp & m));
3400 else
3401 *dp = *sp;
3404 /* NOTE: this may overwrite the last byte with garbage if the image
3405 * is not an exact number of bytes wide; libpng has always done
3406 * this.
3408 if (row_width <= pixels_per_byte)
3409 break; /* May need to restore part of the last byte */
3411 row_width -= pixels_per_byte;
3412 ++dp;
3413 ++sp;
3417 else /* pixel_depth >= 8 */
3419 unsigned int bytes_to_copy, bytes_to_jump;
3421 /* Validate the depth - it must be a multiple of 8 */
3422 if (pixel_depth & 7)
3423 png_error(png_ptr, "invalid user transform pixel depth");
3425 pixel_depth >>= 3; /* now in bytes */
3426 row_width *= pixel_depth;
3428 /* Regardless of pass number the Adam 7 interlace always results in a
3429 * fixed number of pixels to copy then to skip. There may be a
3430 * different number of pixels to skip at the start though.
3433 unsigned int offset = PNG_PASS_START_COL(pass) * pixel_depth;
3435 row_width -= offset;
3436 dp += offset;
3437 sp += offset;
3440 /* Work out the bytes to copy. */
3441 if (display)
3443 /* When doing the 'block' algorithm the pixel in the pass gets
3444 * replicated to adjacent pixels. This is why the even (0,2,4,6)
3445 * passes are skipped above - the entire expanded row is copied.
3447 bytes_to_copy = (1<<((6-pass)>>1)) * pixel_depth;
3449 /* But don't allow this number to exceed the actual row width. */
3450 if (bytes_to_copy > row_width)
3451 bytes_to_copy = row_width;
3454 else /* normal row; Adam7 only ever gives us one pixel to copy. */
3455 bytes_to_copy = pixel_depth;
3457 /* In Adam7 there is a constant offset between where the pixels go. */
3458 bytes_to_jump = PNG_PASS_COL_OFFSET(pass) * pixel_depth;
3460 /* And simply copy these bytes. Some optimization is possible here,
3461 * depending on the value of 'bytes_to_copy'. Special case the low
3462 * byte counts, which we know to be frequent.
3464 * Notice that these cases all 'return' rather than 'break' - this
3465 * avoids an unnecessary test on whether to restore the last byte
3466 * below.
3468 switch (bytes_to_copy)
3470 case 1:
3471 for (;;)
3473 *dp = *sp;
3475 if (row_width <= bytes_to_jump)
3476 return;
3478 dp += bytes_to_jump;
3479 sp += bytes_to_jump;
3480 row_width -= bytes_to_jump;
3483 case 2:
3484 /* There is a possibility of a partial copy at the end here; this
3485 * slows the code down somewhat.
3489 dp[0] = sp[0], dp[1] = sp[1];
3491 if (row_width <= bytes_to_jump)
3492 return;
3494 sp += bytes_to_jump;
3495 dp += bytes_to_jump;
3496 row_width -= bytes_to_jump;
3498 while (row_width > 1);
3500 /* And there can only be one byte left at this point: */
3501 *dp = *sp;
3502 return;
3504 case 3:
3505 /* This can only be the RGB case, so each copy is exactly one
3506 * pixel and it is not necessary to check for a partial copy.
3508 for(;;)
3510 dp[0] = sp[0], dp[1] = sp[1], dp[2] = sp[2];
3512 if (row_width <= bytes_to_jump)
3513 return;
3515 sp += bytes_to_jump;
3516 dp += bytes_to_jump;
3517 row_width -= bytes_to_jump;
3520 default:
3521 #if PNG_ALIGN_TYPE != PNG_ALIGN_NONE
3522 /* Check for double byte alignment and, if possible, use a
3523 * 16-bit copy. Don't attempt this for narrow images - ones that
3524 * are less than an interlace panel wide. Don't attempt it for
3525 * wide bytes_to_copy either - use the memcpy there.
3527 if (bytes_to_copy < 16 /*else use memcpy*/ &&
3528 png_isaligned(dp, png_uint_16) &&
3529 png_isaligned(sp, png_uint_16) &&
3530 bytes_to_copy % (sizeof (png_uint_16)) == 0 &&
3531 bytes_to_jump % (sizeof (png_uint_16)) == 0)
3533 /* Everything is aligned for png_uint_16 copies, but try for
3534 * png_uint_32 first.
3536 if (png_isaligned(dp, png_uint_32) &&
3537 png_isaligned(sp, png_uint_32) &&
3538 bytes_to_copy % (sizeof (png_uint_32)) == 0 &&
3539 bytes_to_jump % (sizeof (png_uint_32)) == 0)
3541 png_uint_32p dp32 = png_aligncast(png_uint_32p,dp);
3542 png_const_uint_32p sp32 = png_aligncastconst(
3543 png_const_uint_32p, sp);
3544 size_t skip = (bytes_to_jump-bytes_to_copy) /
3545 (sizeof (png_uint_32));
3549 size_t c = bytes_to_copy;
3552 *dp32++ = *sp32++;
3553 c -= (sizeof (png_uint_32));
3555 while (c > 0);
3557 if (row_width <= bytes_to_jump)
3558 return;
3560 dp32 += skip;
3561 sp32 += skip;
3562 row_width -= bytes_to_jump;
3564 while (bytes_to_copy <= row_width);
3566 /* Get to here when the row_width truncates the final copy.
3567 * There will be 1-3 bytes left to copy, so don't try the
3568 * 16-bit loop below.
3570 dp = (png_bytep)dp32;
3571 sp = (png_const_bytep)sp32;
3573 *dp++ = *sp++;
3574 while (--row_width > 0);
3575 return;
3578 /* Else do it in 16-bit quantities, but only if the size is
3579 * not too large.
3581 else
3583 png_uint_16p dp16 = png_aligncast(png_uint_16p, dp);
3584 png_const_uint_16p sp16 = png_aligncastconst(
3585 png_const_uint_16p, sp);
3586 size_t skip = (bytes_to_jump-bytes_to_copy) /
3587 (sizeof (png_uint_16));
3591 size_t c = bytes_to_copy;
3594 *dp16++ = *sp16++;
3595 c -= (sizeof (png_uint_16));
3597 while (c > 0);
3599 if (row_width <= bytes_to_jump)
3600 return;
3602 dp16 += skip;
3603 sp16 += skip;
3604 row_width -= bytes_to_jump;
3606 while (bytes_to_copy <= row_width);
3608 /* End of row - 1 byte left, bytes_to_copy > row_width: */
3609 dp = (png_bytep)dp16;
3610 sp = (png_const_bytep)sp16;
3612 *dp++ = *sp++;
3613 while (--row_width > 0);
3614 return;
3617 #endif /* PNG_ALIGN_ code */
3619 /* The true default - use a memcpy: */
3620 for (;;)
3622 memcpy(dp, sp, bytes_to_copy);
3624 if (row_width <= bytes_to_jump)
3625 return;
3627 sp += bytes_to_jump;
3628 dp += bytes_to_jump;
3629 row_width -= bytes_to_jump;
3630 if (bytes_to_copy > row_width)
3631 bytes_to_copy = row_width;
3635 /* NOT REACHED*/
3636 } /* pixel_depth >= 8 */
3638 /* Here if pixel_depth < 8 to check 'end_ptr' below. */
3640 else
3641 #endif
3643 /* If here then the switch above wasn't used so just memcpy the whole row
3644 * from the temporary row buffer (notice that this overwrites the end of the
3645 * destination row if it is a partial byte.)
3647 memcpy(dp, sp, PNG_ROWBYTES(pixel_depth, row_width));
3649 /* Restore the overwritten bits from the last byte if necessary. */
3650 if (end_ptr != NULL)
3651 *end_ptr = (png_byte)((end_byte & end_mask) | (*end_ptr & ~end_mask));
3654 #ifdef PNG_READ_INTERLACING_SUPPORTED
3655 void /* PRIVATE */
3656 png_do_read_interlace(png_row_infop row_info, png_bytep row, int pass,
3657 png_uint_32 transformations /* Because these may affect the byte layout */)
3659 /* Arrays to facilitate easy interlacing - use pass (0 - 6) as index */
3660 /* Offset to next interlace block */
3661 static PNG_CONST int png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
3663 png_debug(1, "in png_do_read_interlace");
3664 if (row != NULL && row_info != NULL)
3666 png_uint_32 final_width;
3668 final_width = row_info->width * png_pass_inc[pass];
3670 switch (row_info->pixel_depth)
3672 case 1:
3674 png_bytep sp = row + (png_size_t)((row_info->width - 1) >> 3);
3675 png_bytep dp = row + (png_size_t)((final_width - 1) >> 3);
3676 int sshift, dshift;
3677 int s_start, s_end, s_inc;
3678 int jstop = png_pass_inc[pass];
3679 png_byte v;
3680 png_uint_32 i;
3681 int j;
3683 #ifdef PNG_READ_PACKSWAP_SUPPORTED
3684 if (transformations & PNG_PACKSWAP)
3686 sshift = (int)((row_info->width + 7) & 0x07);
3687 dshift = (int)((final_width + 7) & 0x07);
3688 s_start = 7;
3689 s_end = 0;
3690 s_inc = -1;
3693 else
3694 #endif
3696 sshift = 7 - (int)((row_info->width + 7) & 0x07);
3697 dshift = 7 - (int)((final_width + 7) & 0x07);
3698 s_start = 0;
3699 s_end = 7;
3700 s_inc = 1;
3703 for (i = 0; i < row_info->width; i++)
3705 v = (png_byte)((*sp >> sshift) & 0x01);
3706 for (j = 0; j < jstop; j++)
3708 unsigned int tmp = *dp & (0x7f7f >> (7 - dshift));
3709 tmp |= v << dshift;
3710 *dp = (png_byte)(tmp & 0xff);
3712 if (dshift == s_end)
3714 dshift = s_start;
3715 dp--;
3718 else
3719 dshift += s_inc;
3722 if (sshift == s_end)
3724 sshift = s_start;
3725 sp--;
3728 else
3729 sshift += s_inc;
3731 break;
3734 case 2:
3736 png_bytep sp = row + (png_uint_32)((row_info->width - 1) >> 2);
3737 png_bytep dp = row + (png_uint_32)((final_width - 1) >> 2);
3738 int sshift, dshift;
3739 int s_start, s_end, s_inc;
3740 int jstop = png_pass_inc[pass];
3741 png_uint_32 i;
3743 #ifdef PNG_READ_PACKSWAP_SUPPORTED
3744 if (transformations & PNG_PACKSWAP)
3746 sshift = (int)(((row_info->width + 3) & 0x03) << 1);
3747 dshift = (int)(((final_width + 3) & 0x03) << 1);
3748 s_start = 6;
3749 s_end = 0;
3750 s_inc = -2;
3753 else
3754 #endif
3756 sshift = (int)((3 - ((row_info->width + 3) & 0x03)) << 1);
3757 dshift = (int)((3 - ((final_width + 3) & 0x03)) << 1);
3758 s_start = 0;
3759 s_end = 6;
3760 s_inc = 2;
3763 for (i = 0; i < row_info->width; i++)
3765 png_byte v;
3766 int j;
3768 v = (png_byte)((*sp >> sshift) & 0x03);
3769 for (j = 0; j < jstop; j++)
3771 unsigned int tmp = *dp & (0x3f3f >> (6 - dshift));
3772 tmp |= v << dshift;
3773 *dp = (png_byte)(tmp & 0xff);
3775 if (dshift == s_end)
3777 dshift = s_start;
3778 dp--;
3781 else
3782 dshift += s_inc;
3785 if (sshift == s_end)
3787 sshift = s_start;
3788 sp--;
3791 else
3792 sshift += s_inc;
3794 break;
3797 case 4:
3799 png_bytep sp = row + (png_size_t)((row_info->width - 1) >> 1);
3800 png_bytep dp = row + (png_size_t)((final_width - 1) >> 1);
3801 int sshift, dshift;
3802 int s_start, s_end, s_inc;
3803 png_uint_32 i;
3804 int jstop = png_pass_inc[pass];
3806 #ifdef PNG_READ_PACKSWAP_SUPPORTED
3807 if (transformations & PNG_PACKSWAP)
3809 sshift = (int)(((row_info->width + 1) & 0x01) << 2);
3810 dshift = (int)(((final_width + 1) & 0x01) << 2);
3811 s_start = 4;
3812 s_end = 0;
3813 s_inc = -4;
3816 else
3817 #endif
3819 sshift = (int)((1 - ((row_info->width + 1) & 0x01)) << 2);
3820 dshift = (int)((1 - ((final_width + 1) & 0x01)) << 2);
3821 s_start = 0;
3822 s_end = 4;
3823 s_inc = 4;
3826 for (i = 0; i < row_info->width; i++)
3828 png_byte v = (png_byte)((*sp >> sshift) & 0x0f);
3829 int j;
3831 for (j = 0; j < jstop; j++)
3833 unsigned int tmp = *dp & (0xf0f >> (4 - dshift));
3834 tmp |= v << dshift;
3835 *dp = (png_byte)(tmp & 0xff);
3837 if (dshift == s_end)
3839 dshift = s_start;
3840 dp--;
3843 else
3844 dshift += s_inc;
3847 if (sshift == s_end)
3849 sshift = s_start;
3850 sp--;
3853 else
3854 sshift += s_inc;
3856 break;
3859 default:
3861 png_size_t pixel_bytes = (row_info->pixel_depth >> 3);
3863 png_bytep sp = row + (png_size_t)(row_info->width - 1)
3864 * pixel_bytes;
3866 png_bytep dp = row + (png_size_t)(final_width - 1) * pixel_bytes;
3868 int jstop = png_pass_inc[pass];
3869 png_uint_32 i;
3871 for (i = 0; i < row_info->width; i++)
3873 png_byte v[8]; /* SAFE; pixel_depth does not exceed 64 */
3874 int j;
3876 memcpy(v, sp, pixel_bytes);
3878 for (j = 0; j < jstop; j++)
3880 memcpy(dp, v, pixel_bytes);
3881 dp -= pixel_bytes;
3884 sp -= pixel_bytes;
3886 break;
3890 row_info->width = final_width;
3891 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth, final_width);
3893 #ifndef PNG_READ_PACKSWAP_SUPPORTED
3894 PNG_UNUSED(transformations) /* Silence compiler warning */
3895 #endif
3897 #endif /* PNG_READ_INTERLACING_SUPPORTED */
3899 static void
3900 png_read_filter_row_sub(png_row_infop row_info, png_bytep row,
3901 png_const_bytep prev_row)
3903 png_size_t i;
3904 png_size_t istop = row_info->rowbytes;
3905 unsigned int bpp = (row_info->pixel_depth + 7) >> 3;
3906 png_bytep rp = row + bpp;
3908 PNG_UNUSED(prev_row)
3910 for (i = bpp; i < istop; i++)
3912 *rp = (png_byte)(((int)(*rp) + (int)(*(rp-bpp))) & 0xff);
3913 rp++;
3917 static void
3918 png_read_filter_row_up(png_row_infop row_info, png_bytep row,
3919 png_const_bytep prev_row)
3921 png_size_t i;
3922 png_size_t istop = row_info->rowbytes;
3923 png_bytep rp = row;
3924 png_const_bytep pp = prev_row;
3926 for (i = 0; i < istop; i++)
3928 *rp = (png_byte)(((int)(*rp) + (int)(*pp++)) & 0xff);
3929 rp++;
3933 static void
3934 png_read_filter_row_avg(png_row_infop row_info, png_bytep row,
3935 png_const_bytep prev_row)
3937 png_size_t i;
3938 png_bytep rp = row;
3939 png_const_bytep pp = prev_row;
3940 unsigned int bpp = (row_info->pixel_depth + 7) >> 3;
3941 png_size_t istop = row_info->rowbytes - bpp;
3943 for (i = 0; i < bpp; i++)
3945 *rp = (png_byte)(((int)(*rp) +
3946 ((int)(*pp++) / 2 )) & 0xff);
3948 rp++;
3951 for (i = 0; i < istop; i++)
3953 *rp = (png_byte)(((int)(*rp) +
3954 (int)(*pp++ + *(rp-bpp)) / 2 ) & 0xff);
3956 rp++;
3960 static void
3961 png_read_filter_row_paeth_1byte_pixel(png_row_infop row_info, png_bytep row,
3962 png_const_bytep prev_row)
3964 png_bytep rp_end = row + row_info->rowbytes;
3965 int a, c;
3967 /* First pixel/byte */
3968 c = *prev_row++;
3969 a = *row + c;
3970 *row++ = (png_byte)a;
3972 /* Remainder */
3973 while (row < rp_end)
3975 int b, pa, pb, pc, p;
3977 a &= 0xff; /* From previous iteration or start */
3978 b = *prev_row++;
3980 p = b - c;
3981 pc = a - c;
3983 # ifdef PNG_USE_ABS
3984 pa = abs(p);
3985 pb = abs(pc);
3986 pc = abs(p + pc);
3987 # else
3988 pa = p < 0 ? -p : p;
3989 pb = pc < 0 ? -pc : pc;
3990 pc = (p + pc) < 0 ? -(p + pc) : p + pc;
3991 # endif
3993 /* Find the best predictor, the least of pa, pb, pc favoring the earlier
3994 * ones in the case of a tie.
3996 if (pb < pa) pa = pb, a = b;
3997 if (pc < pa) a = c;
3999 /* Calculate the current pixel in a, and move the previous row pixel to c
4000 * for the next time round the loop
4002 c = b;
4003 a += *row;
4004 *row++ = (png_byte)a;
4008 static void
4009 png_read_filter_row_paeth_multibyte_pixel(png_row_infop row_info, png_bytep row,
4010 png_const_bytep prev_row)
4012 int bpp = (row_info->pixel_depth + 7) >> 3;
4013 png_bytep rp_end = row + bpp;
4015 /* Process the first pixel in the row completely (this is the same as 'up'
4016 * because there is only one candidate predictor for the first row).
4018 while (row < rp_end)
4020 int a = *row + *prev_row++;
4021 *row++ = (png_byte)a;
4024 /* Remainder */
4025 rp_end += row_info->rowbytes - bpp;
4027 while (row < rp_end)
4029 int a, b, c, pa, pb, pc, p;
4031 c = *(prev_row - bpp);
4032 a = *(row - bpp);
4033 b = *prev_row++;
4035 p = b - c;
4036 pc = a - c;
4038 # ifdef PNG_USE_ABS
4039 pa = abs(p);
4040 pb = abs(pc);
4041 pc = abs(p + pc);
4042 # else
4043 pa = p < 0 ? -p : p;
4044 pb = pc < 0 ? -pc : pc;
4045 pc = (p + pc) < 0 ? -(p + pc) : p + pc;
4046 # endif
4048 if (pb < pa) pa = pb, a = b;
4049 if (pc < pa) a = c;
4051 c = b;
4052 a += *row;
4053 *row++ = (png_byte)a;
4057 static void
4058 png_init_filter_functions(png_structrp pp)
4059 /* This function is called once for every PNG image (except for PNG images
4060 * that only use PNG_FILTER_VALUE_NONE for all rows) to set the
4061 * implementations required to reverse the filtering of PNG rows. Reversing
4062 * the filter is the first transformation performed on the row data. It is
4063 * performed in place, therefore an implementation can be selected based on
4064 * the image pixel format. If the implementation depends on image width then
4065 * take care to ensure that it works correctly if the image is interlaced -
4066 * interlacing causes the actual row width to vary.
4069 unsigned int bpp = (pp->pixel_depth + 7) >> 3;
4071 pp->read_filter[PNG_FILTER_VALUE_SUB-1] = png_read_filter_row_sub;
4072 pp->read_filter[PNG_FILTER_VALUE_UP-1] = png_read_filter_row_up;
4073 pp->read_filter[PNG_FILTER_VALUE_AVG-1] = png_read_filter_row_avg;
4074 if (bpp == 1)
4075 pp->read_filter[PNG_FILTER_VALUE_PAETH-1] =
4076 png_read_filter_row_paeth_1byte_pixel;
4077 else
4078 pp->read_filter[PNG_FILTER_VALUE_PAETH-1] =
4079 png_read_filter_row_paeth_multibyte_pixel;
4081 #ifdef PNG_FILTER_OPTIMIZATIONS
4082 /* To use this define PNG_FILTER_OPTIMIZATIONS as the name of a function to
4083 * call to install hardware optimizations for the above functions; simply
4084 * replace whatever elements of the pp->read_filter[] array with a hardware
4085 * specific (or, for that matter, generic) optimization.
4087 * To see an example of this examine what configure.ac does when
4088 * --enable-arm-neon is specified on the command line.
4090 PNG_FILTER_OPTIMIZATIONS(pp, bpp);
4091 #endif
4094 void /* PRIVATE */
4095 png_read_filter_row(png_structrp pp, png_row_infop row_info, png_bytep row,
4096 png_const_bytep prev_row, int filter)
4098 /* OPTIMIZATION: DO NOT MODIFY THIS FUNCTION, instead #define
4099 * PNG_FILTER_OPTIMIZATIONS to a function that overrides the generic
4100 * implementations. See png_init_filter_functions above.
4102 if (filter > PNG_FILTER_VALUE_NONE && filter < PNG_FILTER_VALUE_LAST)
4104 if (pp->read_filter[0] == NULL)
4105 png_init_filter_functions(pp);
4107 pp->read_filter[filter-1](row_info, row, prev_row);
4111 #ifdef PNG_SEQUENTIAL_READ_SUPPORTED
4112 void /* PRIVATE */
4113 png_read_IDAT_data(png_structrp png_ptr, png_bytep output,
4114 png_alloc_size_t avail_out)
4116 /* Loop reading IDATs and decompressing the result into output[avail_out] */
4117 png_ptr->zstream.next_out = output;
4118 png_ptr->zstream.avail_out = 0; /* safety: set below */
4120 if (output == NULL)
4121 avail_out = 0;
4125 int ret;
4126 png_byte tmpbuf[PNG_INFLATE_BUF_SIZE];
4128 if (png_ptr->zstream.avail_in == 0)
4130 uInt avail_in;
4131 png_bytep buffer;
4133 #ifdef PNG_READ_APNG_SUPPORTED
4134 png_uint_32 bytes_to_skip = 0;
4136 while (png_ptr->idat_size == 0 || bytes_to_skip != 0)
4138 png_crc_finish(png_ptr, bytes_to_skip);
4139 bytes_to_skip = 0;
4141 png_ptr->idat_size = png_read_chunk_header(png_ptr);
4142 if (png_ptr->num_frames_read == 0)
4144 if (png_ptr->chunk_name != png_IDAT)
4145 png_error(png_ptr, "Not enough image data");
4147 else
4149 if (png_ptr->chunk_name == png_IEND)
4150 png_error(png_ptr, "Not enough image data");
4151 if (png_ptr->chunk_name != png_fdAT)
4153 png_warning(png_ptr, "Skipped (ignored) a chunk "
4154 "between APNG chunks");
4155 bytes_to_skip = png_ptr->idat_size;
4156 continue;
4159 png_ensure_sequence_number(png_ptr, png_ptr->idat_size);
4161 png_ptr->idat_size -= 4;
4164 #else
4165 while (png_ptr->idat_size == 0)
4167 png_crc_finish(png_ptr, 0);
4169 png_ptr->idat_size = png_read_chunk_header(png_ptr);
4170 /* This is an error even in the 'check' case because the code just
4171 * consumed a non-IDAT header.
4173 if (png_ptr->chunk_name != png_IDAT)
4174 png_error(png_ptr, "Not enough image data");
4176 #endif /* PNG_READ_APNG_SUPPORTED */
4178 avail_in = png_ptr->IDAT_read_size;
4180 if (avail_in > png_ptr->idat_size)
4181 avail_in = (uInt)png_ptr->idat_size;
4183 /* A PNG with a gradually increasing IDAT size will defeat this attempt
4184 * to minimize memory usage by causing lots of re-allocs, but
4185 * realistically doing IDAT_read_size re-allocs is not likely to be a
4186 * big problem.
4188 buffer = png_read_buffer(png_ptr, avail_in, 0/*error*/);
4190 png_crc_read(png_ptr, buffer, avail_in);
4191 png_ptr->idat_size -= avail_in;
4193 png_ptr->zstream.next_in = buffer;
4194 png_ptr->zstream.avail_in = avail_in;
4197 /* And set up the output side. */
4198 if (output != NULL) /* standard read */
4200 uInt out = ZLIB_IO_MAX;
4202 if (out > avail_out)
4203 out = (uInt)avail_out;
4205 avail_out -= out;
4206 png_ptr->zstream.avail_out = out;
4209 else /* after last row, checking for end */
4211 png_ptr->zstream.next_out = tmpbuf;
4212 png_ptr->zstream.avail_out = (sizeof tmpbuf);
4215 /* Use NO_FLUSH; this gives zlib the maximum opportunity to optimize the
4216 * process. If the LZ stream is truncated the sequential reader will
4217 * terminally damage the stream, above, by reading the chunk header of the
4218 * following chunk (it then exits with png_error).
4220 * TODO: deal more elegantly with truncated IDAT lists.
4222 ret = inflate(&png_ptr->zstream, Z_NO_FLUSH);
4224 /* Take the unconsumed output back. */
4225 if (output != NULL)
4226 avail_out += png_ptr->zstream.avail_out;
4228 else /* avail_out counts the extra bytes */
4229 avail_out += (sizeof tmpbuf) - png_ptr->zstream.avail_out;
4231 png_ptr->zstream.avail_out = 0;
4233 if (ret == Z_STREAM_END)
4235 /* Do this for safety; we won't read any more into this row. */
4236 png_ptr->zstream.next_out = NULL;
4238 png_ptr->mode |= PNG_AFTER_IDAT;
4239 png_ptr->flags |= PNG_FLAG_ZSTREAM_ENDED;
4240 #ifdef PNG_READ_APNG_SUPPORTED
4241 png_ptr->num_frames_read++;
4242 #endif
4244 if (png_ptr->zstream.avail_in > 0 || png_ptr->idat_size > 0)
4245 png_chunk_benign_error(png_ptr, "Extra compressed data");
4246 break;
4249 if (ret != Z_OK)
4251 png_zstream_error(png_ptr, ret);
4253 if (output != NULL)
4254 png_chunk_error(png_ptr, png_ptr->zstream.msg);
4256 else /* checking */
4258 png_chunk_benign_error(png_ptr, png_ptr->zstream.msg);
4259 return;
4262 } while (avail_out > 0);
4264 if (avail_out > 0)
4266 /* The stream ended before the image; this is the same as too few IDATs so
4267 * should be handled the same way.
4269 if (output != NULL)
4270 png_error(png_ptr, "Not enough image data");
4272 else /* the deflate stream contained extra data */
4273 png_chunk_benign_error(png_ptr, "Too much image data");
4277 void /* PRIVATE */
4278 png_read_finish_IDAT(png_structrp png_ptr)
4280 /* We don't need any more data and the stream should have ended, however the
4281 * LZ end code may actually not have been processed. In this case we must
4282 * read it otherwise stray unread IDAT data or, more likely, an IDAT chunk
4283 * may still remain to be consumed.
4285 if (!(png_ptr->flags & PNG_FLAG_ZSTREAM_ENDED))
4287 /* The NULL causes png_read_IDAT_data to swallow any remaining bytes in
4288 * the compressed stream, but the stream may be damaged too, so even after
4289 * this call we may need to terminate the zstream ownership.
4291 png_read_IDAT_data(png_ptr, NULL, 0);
4292 png_ptr->zstream.next_out = NULL; /* safety */
4294 /* Now clear everything out for safety; the following may not have been
4295 * done.
4297 if (!(png_ptr->flags & PNG_FLAG_ZSTREAM_ENDED))
4299 png_ptr->mode |= PNG_AFTER_IDAT;
4300 png_ptr->flags |= PNG_FLAG_ZSTREAM_ENDED;
4304 /* If the zstream has not been released do it now *and* terminate the reading
4305 * of the final IDAT chunk.
4307 if (png_ptr->zowner == png_IDAT)
4309 /* Always do this; the pointers otherwise point into the read buffer. */
4310 png_ptr->zstream.next_in = NULL;
4311 png_ptr->zstream.avail_in = 0;
4313 /* Now we no longer own the zstream. */
4314 png_ptr->zowner = 0;
4316 /* The slightly weird semantics of the sequential IDAT reading is that we
4317 * are always in or at the end of an IDAT chunk, so we always need to do a
4318 * crc_finish here. If idat_size is non-zero we also need to read the
4319 * spurious bytes at the end of the chunk now.
4321 (void)png_crc_finish(png_ptr, png_ptr->idat_size);
4325 void /* PRIVATE */
4326 png_read_finish_row(png_structrp png_ptr)
4328 #ifdef PNG_READ_INTERLACING_SUPPORTED
4329 /* Arrays to facilitate easy interlacing - use pass (0 - 6) as index */
4331 /* Start of interlace block */
4332 static PNG_CONST png_byte png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
4334 /* Offset to next interlace block */
4335 static PNG_CONST png_byte png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
4337 /* Start of interlace block in the y direction */
4338 static PNG_CONST png_byte png_pass_ystart[7] = {0, 0, 4, 0, 2, 0, 1};
4340 /* Offset to next interlace block in the y direction */
4341 static PNG_CONST png_byte png_pass_yinc[7] = {8, 8, 8, 4, 4, 2, 2};
4342 #endif /* PNG_READ_INTERLACING_SUPPORTED */
4344 png_debug(1, "in png_read_finish_row");
4345 png_ptr->row_number++;
4346 if (png_ptr->row_number < png_ptr->num_rows)
4347 return;
4349 #ifdef PNG_READ_INTERLACING_SUPPORTED
4350 if (png_ptr->interlaced)
4352 png_ptr->row_number = 0;
4354 /* TO DO: don't do this if prev_row isn't needed (requires
4355 * read-ahead of the next row's filter byte.
4357 memset(png_ptr->prev_row, 0, png_ptr->rowbytes + 1);
4361 png_ptr->pass++;
4363 if (png_ptr->pass >= 7)
4364 break;
4366 png_ptr->iwidth = (png_ptr->width +
4367 png_pass_inc[png_ptr->pass] - 1 -
4368 png_pass_start[png_ptr->pass]) /
4369 png_pass_inc[png_ptr->pass];
4371 if (!(png_ptr->transformations & PNG_INTERLACE))
4373 png_ptr->num_rows = (png_ptr->height +
4374 png_pass_yinc[png_ptr->pass] - 1 -
4375 png_pass_ystart[png_ptr->pass]) /
4376 png_pass_yinc[png_ptr->pass];
4379 else /* if (png_ptr->transformations & PNG_INTERLACE) */
4380 break; /* libpng deinterlacing sees every row */
4382 } while (png_ptr->num_rows == 0 || png_ptr->iwidth == 0);
4384 if (png_ptr->pass < 7)
4385 return;
4387 #endif /* PNG_READ_INTERLACING_SUPPORTED */
4389 /* Here after at the end of the last row of the last pass. */
4390 png_read_finish_IDAT(png_ptr);
4392 #endif /* PNG_SEQUENTIAL_READ_SUPPORTED */
4394 void /* PRIVATE */
4395 png_read_start_row(png_structrp png_ptr)
4397 #ifdef PNG_READ_INTERLACING_SUPPORTED
4398 /* Arrays to facilitate easy interlacing - use pass (0 - 6) as index */
4400 /* Start of interlace block */
4401 static PNG_CONST png_byte png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
4403 /* Offset to next interlace block */
4404 static PNG_CONST png_byte png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
4406 /* Start of interlace block in the y direction */
4407 static PNG_CONST png_byte png_pass_ystart[7] = {0, 0, 4, 0, 2, 0, 1};
4409 /* Offset to next interlace block in the y direction */
4410 static PNG_CONST png_byte png_pass_yinc[7] = {8, 8, 8, 4, 4, 2, 2};
4411 #endif
4413 int max_pixel_depth;
4414 png_size_t row_bytes;
4416 png_debug(1, "in png_read_start_row");
4418 #ifdef PNG_READ_TRANSFORMS_SUPPORTED
4419 png_init_read_transformations(png_ptr);
4420 #endif
4421 #ifdef PNG_READ_INTERLACING_SUPPORTED
4422 if (png_ptr->interlaced)
4424 if (!(png_ptr->transformations & PNG_INTERLACE))
4425 png_ptr->num_rows = (png_ptr->height + png_pass_yinc[0] - 1 -
4426 png_pass_ystart[0]) / png_pass_yinc[0];
4428 else
4429 png_ptr->num_rows = png_ptr->height;
4431 png_ptr->iwidth = (png_ptr->width +
4432 png_pass_inc[png_ptr->pass] - 1 -
4433 png_pass_start[png_ptr->pass]) /
4434 png_pass_inc[png_ptr->pass];
4437 else
4438 #endif /* PNG_READ_INTERLACING_SUPPORTED */
4440 png_ptr->num_rows = png_ptr->height;
4441 png_ptr->iwidth = png_ptr->width;
4444 max_pixel_depth = png_ptr->pixel_depth;
4446 /* WARNING: * png_read_transform_info (pngrtran.c) performs a simpliar set of
4447 * calculations to calculate the final pixel depth, then
4448 * png_do_read_transforms actually does the transforms. This means that the
4449 * code which effectively calculates this value is actually repeated in three
4450 * separate places. They must all match. Innocent changes to the order of
4451 * transformations can and will break libpng in a way that causes memory
4452 * overwrites.
4454 * TODO: fix this.
4456 #ifdef PNG_READ_PACK_SUPPORTED
4457 if ((png_ptr->transformations & PNG_PACK) && png_ptr->bit_depth < 8)
4458 max_pixel_depth = 8;
4459 #endif
4461 #ifdef PNG_READ_EXPAND_SUPPORTED
4462 if (png_ptr->transformations & PNG_EXPAND)
4464 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
4466 if (png_ptr->num_trans)
4467 max_pixel_depth = 32;
4469 else
4470 max_pixel_depth = 24;
4473 else if (png_ptr->color_type == PNG_COLOR_TYPE_GRAY)
4475 if (max_pixel_depth < 8)
4476 max_pixel_depth = 8;
4478 if (png_ptr->num_trans)
4479 max_pixel_depth *= 2;
4482 else if (png_ptr->color_type == PNG_COLOR_TYPE_RGB)
4484 if (png_ptr->num_trans)
4486 max_pixel_depth *= 4;
4487 max_pixel_depth /= 3;
4491 #endif
4493 #ifdef PNG_READ_EXPAND_16_SUPPORTED
4494 if (png_ptr->transformations & PNG_EXPAND_16)
4496 # ifdef PNG_READ_EXPAND_SUPPORTED
4497 /* In fact it is an error if it isn't supported, but checking is
4498 * the safe way.
4500 if (png_ptr->transformations & PNG_EXPAND)
4502 if (png_ptr->bit_depth < 16)
4503 max_pixel_depth *= 2;
4505 else
4506 # endif
4507 png_ptr->transformations &= ~PNG_EXPAND_16;
4509 #endif
4511 #ifdef PNG_READ_FILLER_SUPPORTED
4512 if (png_ptr->transformations & (PNG_FILLER))
4514 if (png_ptr->color_type == PNG_COLOR_TYPE_GRAY)
4516 if (max_pixel_depth <= 8)
4517 max_pixel_depth = 16;
4519 else
4520 max_pixel_depth = 32;
4523 else if (png_ptr->color_type == PNG_COLOR_TYPE_RGB ||
4524 png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
4526 if (max_pixel_depth <= 32)
4527 max_pixel_depth = 32;
4529 else
4530 max_pixel_depth = 64;
4533 #endif
4535 #ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
4536 if (png_ptr->transformations & PNG_GRAY_TO_RGB)
4538 if (
4539 #ifdef PNG_READ_EXPAND_SUPPORTED
4540 (png_ptr->num_trans && (png_ptr->transformations & PNG_EXPAND)) ||
4541 #endif
4542 #ifdef PNG_READ_FILLER_SUPPORTED
4543 (png_ptr->transformations & (PNG_FILLER)) ||
4544 #endif
4545 png_ptr->color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
4547 if (max_pixel_depth <= 16)
4548 max_pixel_depth = 32;
4550 else
4551 max_pixel_depth = 64;
4554 else
4556 if (max_pixel_depth <= 8)
4558 if (png_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA)
4559 max_pixel_depth = 32;
4561 else
4562 max_pixel_depth = 24;
4565 else if (png_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA)
4566 max_pixel_depth = 64;
4568 else
4569 max_pixel_depth = 48;
4572 #endif
4574 #if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) && \
4575 defined(PNG_USER_TRANSFORM_PTR_SUPPORTED)
4576 if (png_ptr->transformations & PNG_USER_TRANSFORM)
4578 int user_pixel_depth = png_ptr->user_transform_depth *
4579 png_ptr->user_transform_channels;
4581 if (user_pixel_depth > max_pixel_depth)
4582 max_pixel_depth = user_pixel_depth;
4584 #endif
4586 /* This value is stored in png_struct and double checked in the row read
4587 * code.
4589 png_ptr->maximum_pixel_depth = (png_byte)max_pixel_depth;
4590 png_ptr->transformed_pixel_depth = 0; /* calculated on demand */
4592 /* Align the width on the next larger 8 pixels. Mainly used
4593 * for interlacing
4595 row_bytes = ((png_ptr->width + 7) & ~((png_uint_32)7));
4596 /* Calculate the maximum bytes needed, adding a byte and a pixel
4597 * for safety's sake
4599 row_bytes = PNG_ROWBYTES(max_pixel_depth, row_bytes) +
4600 1 + ((max_pixel_depth + 7) >> 3);
4602 #ifdef PNG_MAX_MALLOC_64K
4603 if (row_bytes > (png_uint_32)65536L)
4604 png_error(png_ptr, "This image requires a row greater than 64KB");
4605 #endif
4607 if (row_bytes + 48 > png_ptr->old_big_row_buf_size)
4609 png_free(png_ptr, png_ptr->big_row_buf);
4610 png_free(png_ptr, png_ptr->big_prev_row);
4612 if (png_ptr->interlaced)
4613 png_ptr->big_row_buf = (png_bytep)png_calloc(png_ptr,
4614 row_bytes + 48);
4616 else
4617 png_ptr->big_row_buf = (png_bytep)png_malloc(png_ptr, row_bytes + 48);
4619 png_ptr->big_prev_row = (png_bytep)png_malloc(png_ptr, row_bytes + 48);
4621 #ifdef PNG_ALIGNED_MEMORY_SUPPORTED
4622 /* Use 16-byte aligned memory for row_buf with at least 16 bytes
4623 * of padding before and after row_buf; treat prev_row similarly.
4624 * NOTE: the alignment is to the start of the pixels, one beyond the start
4625 * of the buffer, because of the filter byte. Prior to libpng 1.5.6 this
4626 * was incorrect; the filter byte was aligned, which had the exact
4627 * opposite effect of that intended.
4630 png_bytep temp = png_ptr->big_row_buf + 32;
4631 int extra = (int)((temp - (png_bytep)0) & 0x0f);
4632 png_ptr->row_buf = temp - extra - 1/*filter byte*/;
4634 temp = png_ptr->big_prev_row + 32;
4635 extra = (int)((temp - (png_bytep)0) & 0x0f);
4636 png_ptr->prev_row = temp - extra - 1/*filter byte*/;
4639 #else
4640 /* Use 31 bytes of padding before and 17 bytes after row_buf. */
4641 png_ptr->row_buf = png_ptr->big_row_buf + 31;
4642 png_ptr->prev_row = png_ptr->big_prev_row + 31;
4643 #endif
4644 png_ptr->old_big_row_buf_size = row_bytes + 48;
4647 #ifdef PNG_MAX_MALLOC_64K
4648 if (png_ptr->rowbytes > 65535)
4649 png_error(png_ptr, "This image requires a row greater than 64KB");
4651 #endif
4652 if (png_ptr->rowbytes > (PNG_SIZE_MAX - 1))
4653 png_error(png_ptr, "Row has too many bytes to allocate in memory");
4655 memset(png_ptr->prev_row, 0, png_ptr->rowbytes + 1);
4657 png_debug1(3, "width = %u,", png_ptr->width);
4658 png_debug1(3, "height = %u,", png_ptr->height);
4659 png_debug1(3, "iwidth = %u,", png_ptr->iwidth);
4660 png_debug1(3, "num_rows = %u,", png_ptr->num_rows);
4661 png_debug1(3, "rowbytes = %lu,", (unsigned long)png_ptr->rowbytes);
4662 png_debug1(3, "irowbytes = %lu",
4663 (unsigned long)PNG_ROWBYTES(png_ptr->pixel_depth, png_ptr->iwidth) + 1);
4665 /* The sequential reader needs a buffer for IDAT, but the progressive reader
4666 * does not, so free the read buffer now regardless; the sequential reader
4667 * reallocates it on demand.
4669 if (png_ptr->read_buffer)
4671 png_bytep buffer = png_ptr->read_buffer;
4673 png_ptr->read_buffer_size = 0;
4674 png_ptr->read_buffer = NULL;
4675 png_free(png_ptr, buffer);
4678 /* Finally claim the zstream for the inflate of the IDAT data, use the bits
4679 * value from the stream (note that this will result in a fatal error if the
4680 * IDAT stream has a bogus deflate header window_bits value, but this should
4681 * not be happening any longer!)
4683 if (png_inflate_claim(png_ptr, png_IDAT) != Z_OK)
4684 png_error(png_ptr, png_ptr->zstream.msg);
4686 png_ptr->flags |= PNG_FLAG_ROW_INIT;
4689 #ifdef PNG_READ_APNG_SUPPORTED
4690 /* This function is to be called after the main IDAT set has been read and
4691 * before a new IDAT is read. It resets some parts of png_ptr
4692 * to make them usable by the read functions again */
4693 void /* PRIVATE */
4694 png_read_reset(png_structp png_ptr)
4696 png_ptr->mode &= ~PNG_HAVE_IDAT;
4697 png_ptr->mode &= ~PNG_AFTER_IDAT;
4698 png_ptr->row_number = 0;
4699 png_ptr->pass = 0;
4702 void /* PRIVATE */
4703 png_read_reinit(png_structp png_ptr, png_infop info_ptr)
4705 png_ptr->width = info_ptr->next_frame_width;
4706 png_ptr->height = info_ptr->next_frame_height;
4707 png_ptr->rowbytes = PNG_ROWBYTES(png_ptr->pixel_depth,png_ptr->width);
4708 png_ptr->info_rowbytes = PNG_ROWBYTES(info_ptr->pixel_depth,
4709 png_ptr->width);
4710 if (png_ptr->prev_row)
4711 memset(png_ptr->prev_row, 0, png_ptr->rowbytes + 1);
4714 #ifdef PNG_PROGRESSIVE_READ_SUPPORTED
4715 /* same as png_read_reset() but for the progressive reader */
4716 void /* PRIVATE */
4717 png_progressive_read_reset(png_structp png_ptr)
4719 #ifdef PNG_READ_INTERLACING_SUPPORTED
4720 /* Arrays to facilitate easy interlacing - use pass (0 - 6) as index */
4722 /* Start of interlace block */
4723 static PNG_CONST png_byte png_pass_start[] = {0, 4, 0, 2, 0, 1, 0};
4725 /* Offset to next interlace block */
4726 static PNG_CONST png_byte png_pass_inc[] = {8, 8, 4, 4, 2, 2, 1};
4728 /* Start of interlace block in the y direction */
4729 static PNG_CONST png_byte png_pass_ystart[] = {0, 0, 4, 0, 2, 0, 1};
4731 /* Offset to next interlace block in the y direction */
4732 static PNG_CONST png_byte png_pass_yinc[] = {8, 8, 8, 4, 4, 2, 2};
4734 if (png_ptr->interlaced)
4736 if (!(png_ptr->transformations & PNG_INTERLACE))
4737 png_ptr->num_rows = (png_ptr->height + png_pass_yinc[0] - 1 -
4738 png_pass_ystart[0]) / png_pass_yinc[0];
4739 else
4740 png_ptr->num_rows = png_ptr->height;
4742 png_ptr->iwidth = (png_ptr->width +
4743 png_pass_inc[png_ptr->pass] - 1 -
4744 png_pass_start[png_ptr->pass]) /
4745 png_pass_inc[png_ptr->pass];
4747 else
4748 #endif /* PNG_READ_INTERLACING_SUPPORTED */
4750 png_ptr->num_rows = png_ptr->height;
4751 png_ptr->iwidth = png_ptr->width;
4753 png_ptr->flags &= ~PNG_FLAG_ZSTREAM_ENDED;
4754 if (inflateReset(&(png_ptr->zstream)) != Z_OK)
4755 png_error(png_ptr, "inflateReset failed");
4756 png_ptr->zstream.avail_in = 0;
4757 png_ptr->zstream.next_in = 0;
4758 png_ptr->zstream.next_out = png_ptr->row_buf;
4759 png_ptr->zstream.avail_out = (uInt)PNG_ROWBYTES(png_ptr->pixel_depth,
4760 png_ptr->iwidth) + 1;
4762 #endif /* PNG_PROGRESSIVE_READ_SUPPORTED */
4763 #endif /* PNG_READ_APNG_SUPPORTED */
4764 #endif /* PNG_READ_SUPPORTED */