blob: 0a75cd81ce39889fb7c4a20390732e26b186d5ec [file] [log] [blame]
The Android Open Source Project893912b2009-03-03 19:30:05 -08001
2/* pngrutil.c - utilities to read a PNG file
3 *
Chris Craikb50c2172013-07-29 15:28:30 -07004 * Last changed in libpng 1.6.3 [July 18, 2013]
5 * Copyright (c) 1998-2013 Glenn Randers-Pehrson
The Android Open Source Project893912b2009-03-03 19:30:05 -08006 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
8 *
Patrick Scotta0bb96c2009-07-22 11:50:02 -04009 * This code is released under the libpng license.
10 * For conditions of distribution and use, see the disclaimer
11 * and license in png.h
12 *
The Android Open Source Project893912b2009-03-03 19:30:05 -080013 * This file contains routines that are only called from within
14 * libpng itself during the course of reading an image.
15 */
16
Chris Craikb50c2172013-07-29 15:28:30 -070017#include "pngpriv.h"
18
Patrick Scott5f6bd842010-06-28 16:55:16 -040019#ifdef PNG_READ_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -080020
The Android Open Source Project893912b2009-03-03 19:30:05 -080021png_uint_32 PNGAPI
Chris Craikb50c2172013-07-29 15:28:30 -070022png_get_uint_31(png_const_structrp png_ptr, png_const_bytep buf)
The Android Open Source Project893912b2009-03-03 19:30:05 -080023{
Chris Craikb50c2172013-07-29 15:28:30 -070024 png_uint_32 uval = png_get_uint_32(buf);
25
26 if (uval > PNG_UINT_31_MAX)
27 png_error(png_ptr, "PNG unsigned integer out of range");
28
29 return (uval);
The Android Open Source Project893912b2009-03-03 19:30:05 -080030}
Chris Craikb50c2172013-07-29 15:28:30 -070031
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.
37 */
38#define PNG_FIXED_ERROR (-1)
39
40static png_fixed_point /* PRIVATE */
41png_get_fixed_point(png_structrp png_ptr, png_const_bytep buf)
42{
43 png_uint_32 uval = png_get_uint_32(buf);
44
45 if (uval <= PNG_UINT_31_MAX)
46 return (png_fixed_point)uval; /* known to be in range */
47
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");
51
52 return PNG_FIXED_ERROR;
53}
54#endif
55
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.
60 *
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.
64 */
65
The Android Open Source Project893912b2009-03-03 19:30:05 -080066/* Grab an unsigned 32-bit integer from a buffer in big-endian format. */
Chris Craikb50c2172013-07-29 15:28:30 -070067png_uint_32 (PNGAPI
68png_get_uint_32)(png_const_bytep buf)
The Android Open Source Project893912b2009-03-03 19:30:05 -080069{
Chris Craikb50c2172013-07-29 15:28:30 -070070 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)) ) ;
The Android Open Source Project893912b2009-03-03 19:30:05 -080075
Chris Craikb50c2172013-07-29 15:28:30 -070076 return uval;
The Android Open Source Project893912b2009-03-03 19:30:05 -080077}
78
79/* Grab a signed 32-bit integer from a buffer in big-endian format. The
Chris Craikb50c2172013-07-29 15:28:30 -070080 * 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.
Patrick Scotta0bb96c2009-07-22 11:50:02 -040083 */
Chris Craikb50c2172013-07-29 15:28:30 -070084png_int_32 (PNGAPI
85png_get_int_32)(png_const_bytep buf)
The Android Open Source Project893912b2009-03-03 19:30:05 -080086{
Chris Craikb50c2172013-07-29 15:28:30 -070087 png_uint_32 uval = png_get_uint_32(buf);
88 if ((uval & 0x80000000) == 0) /* non-negative */
89 return uval;
The Android Open Source Project893912b2009-03-03 19:30:05 -080090
Chris Craikb50c2172013-07-29 15:28:30 -070091 uval = (uval ^ 0xffffffff) + 1; /* 2's complement: -x = ~x+1 */
92 return -(png_int_32)uval;
The Android Open Source Project893912b2009-03-03 19:30:05 -080093}
94
95/* Grab an unsigned 16-bit integer from a buffer in big-endian format. */
Chris Craikb50c2172013-07-29 15:28:30 -070096png_uint_16 (PNGAPI
97png_get_uint_16)(png_const_bytep buf)
The Android Open Source Project893912b2009-03-03 19:30:05 -080098{
Chris Craikb50c2172013-07-29 15:28:30 -070099 /* 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.)
103 */
104 unsigned int val =
105 ((unsigned int)(*buf) << 8) +
106 ((unsigned int)(*(buf + 1)));
The Android Open Source Project893912b2009-03-03 19:30:05 -0800107
Chris Craikb50c2172013-07-29 15:28:30 -0700108 return (png_uint_16)val;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800109}
Chris Craikb50c2172013-07-29 15:28:30 -0700110
111#endif /* PNG_READ_INT_FUNCTIONS_SUPPORTED */
112
113/* Read and check the PNG file signature */
114void /* PRIVATE */
115png_read_sig(png_structrp png_ptr, png_inforp info_ptr)
116{
117 png_size_t num_checked, num_to_check;
118
119 /* Exit if the user application does not expect a signature. */
120 if (png_ptr->sig_bytes >= 8)
121 return;
122
123 num_checked = png_ptr->sig_bytes;
124 num_to_check = 8 - num_checked;
125
126#ifdef PNG_IO_STATE_SUPPORTED
127 png_ptr->io_state = PNG_IO_READING | PNG_IO_SIGNATURE;
128#endif
129
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;
133
134 if (png_sig_cmp(info_ptr->signature, num_checked, num_to_check))
135 {
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");
141 }
142 if (num_checked < 3)
143 png_ptr->mode |= PNG_HAVE_PNG_SIGNATURE;
144}
The Android Open Source Project893912b2009-03-03 19:30:05 -0800145
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700146/* Read the chunk header (length + type name).
147 * Put the type name into png_ptr->chunk_name, and return the length.
148 */
149png_uint_32 /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -0700150png_read_chunk_header(png_structrp png_ptr)
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700151{
152 png_byte buf[8];
153 png_uint_32 length;
154
Chris Craikb50c2172013-07-29 15:28:30 -0700155#ifdef PNG_IO_STATE_SUPPORTED
156 png_ptr->io_state = PNG_IO_READING | PNG_IO_CHUNK_HDR;
157#endif
158
159 /* Read the length and the chunk name.
160 * This must be performed in a single I/O call.
161 */
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700162 png_read_data(png_ptr, buf, 8);
163 length = png_get_uint_31(png_ptr, buf);
164
Chris Craikb50c2172013-07-29 15:28:30 -0700165 /* Put the chunk name into png_ptr->chunk_name. */
166 png_ptr->chunk_name = PNG_CHUNK_FROM_STRING(buf+4);
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700167
Chris Craikb50c2172013-07-29 15:28:30 -0700168 png_debug2(0, "Reading %lx chunk, length = %lu",
169 (unsigned long)png_ptr->chunk_name, (unsigned long)length);
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700170
Chris Craikb50c2172013-07-29 15:28:30 -0700171 /* Reset the crc and run it over the chunk name. */
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700172 png_reset_crc(png_ptr);
Chris Craikb50c2172013-07-29 15:28:30 -0700173 png_calculate_crc(png_ptr, buf + 4, 4);
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700174
Chris Craikb50c2172013-07-29 15:28:30 -0700175 /* Check to see if chunk name is valid. */
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700176 png_check_chunk_name(png_ptr, png_ptr->chunk_name);
177
Chris Craikb50c2172013-07-29 15:28:30 -0700178#ifdef PNG_IO_STATE_SUPPORTED
179 png_ptr->io_state = PNG_IO_READING | PNG_IO_CHUNK_DATA;
180#endif
181
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700182 return length;
183}
184
The Android Open Source Project893912b2009-03-03 19:30:05 -0800185/* Read data, and (optionally) run it through the CRC. */
186void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -0700187png_crc_read(png_structrp png_ptr, png_bytep buf, png_uint_32 length)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800188{
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400189 if (png_ptr == NULL)
190 return;
Chris Craikb50c2172013-07-29 15:28:30 -0700191
The Android Open Source Project893912b2009-03-03 19:30:05 -0800192 png_read_data(png_ptr, buf, length);
193 png_calculate_crc(png_ptr, buf, length);
194}
195
196/* Optionally skip data and then check the CRC. Depending on whether we
Chris Craikb50c2172013-07-29 15:28:30 -0700197 * are reading an ancillary or critical chunk, and how the program has set
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400198 * 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.
200 */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800201int /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -0700202png_crc_finish(png_structrp png_ptr, png_uint_32 skip)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800203{
Chris Craikb50c2172013-07-29 15:28:30 -0700204 /* 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.
206 */
207 while (skip > 0)
208 {
209 png_uint_32 len;
210 png_byte tmpbuf[PNG_INFLATE_BUF_SIZE];
The Android Open Source Project893912b2009-03-03 19:30:05 -0800211
Chris Craikb50c2172013-07-29 15:28:30 -0700212 len = (sizeof tmpbuf);
213 if (len > skip)
214 len = skip;
215 skip -= len;
216
217 png_crc_read(png_ptr, tmpbuf, len);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800218 }
219
220 if (png_crc_error(png_ptr))
221 {
Chris Craikb50c2172013-07-29 15:28:30 -0700222 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))
The Android Open Source Project893912b2009-03-03 19:30:05 -0800225 {
226 png_chunk_warning(png_ptr, "CRC error");
227 }
Chris Craikb50c2172013-07-29 15:28:30 -0700228
The Android Open Source Project893912b2009-03-03 19:30:05 -0800229 else
230 {
Chris Craikb50c2172013-07-29 15:28:30 -0700231 png_chunk_benign_error(png_ptr, "CRC error");
232 return (0);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800233 }
Chris Craikb50c2172013-07-29 15:28:30 -0700234
The Android Open Source Project893912b2009-03-03 19:30:05 -0800235 return (1);
236 }
237
238 return (0);
239}
240
241/* Compare the CRC stored in the PNG file with that calculated by libpng from
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400242 * the data it has read thus far.
243 */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800244int /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -0700245png_crc_error(png_structrp png_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800246{
247 png_byte crc_bytes[4];
248 png_uint_32 crc;
249 int need_crc = 1;
250
Chris Craikb50c2172013-07-29 15:28:30 -0700251 if (PNG_CHUNK_ANCILLARY(png_ptr->chunk_name))
The Android Open Source Project893912b2009-03-03 19:30:05 -0800252 {
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;
256 }
Chris Craikb50c2172013-07-29 15:28:30 -0700257
258 else /* critical */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800259 {
260 if (png_ptr->flags & PNG_FLAG_CRC_CRITICAL_IGNORE)
261 need_crc = 0;
262 }
263
Chris Craikb50c2172013-07-29 15:28:30 -0700264#ifdef PNG_IO_STATE_SUPPORTED
265 png_ptr->io_state = PNG_IO_READING | PNG_IO_CHUNK_CRC;
266#endif
267
268 /* The chunk CRC must be serialized in a single I/O call. */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800269 png_read_data(png_ptr, crc_bytes, 4);
270
271 if (need_crc)
272 {
273 crc = png_get_uint_32(crc_bytes);
274 return ((int)(crc != png_ptr->crc));
275 }
Chris Craikb50c2172013-07-29 15:28:30 -0700276
The Android Open Source Project893912b2009-03-03 19:30:05 -0800277 else
278 return (0);
279}
280
Chris Craikb50c2172013-07-29 15:28:30 -0700281/* 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').
286 */
287static png_bytep
288png_read_buffer(png_structrp png_ptr, png_alloc_size_t new_size, int warn)
Patrick Scott5f6bd842010-06-28 16:55:16 -0400289{
Chris Craikb50c2172013-07-29 15:28:30 -0700290 png_bytep buffer = png_ptr->read_buffer;
Patrick Scott5f6bd842010-06-28 16:55:16 -0400291
Chris Craikb50c2172013-07-29 15:28:30 -0700292 if (buffer != NULL && new_size > png_ptr->read_buffer_size)
Patrick Scott5f6bd842010-06-28 16:55:16 -0400293 {
Chris Craikb50c2172013-07-29 15:28:30 -0700294 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;
299 }
Patrick Scott5f6bd842010-06-28 16:55:16 -0400300
Chris Craikb50c2172013-07-29 15:28:30 -0700301 if (buffer == NULL)
302 {
303 buffer = png_voidcast(png_bytep, png_malloc_base(png_ptr, new_size));
Patrick Scott5f6bd842010-06-28 16:55:16 -0400304
Chris Craikb50c2172013-07-29 15:28:30 -0700305 if (buffer != NULL)
Patrick Scott5f6bd842010-06-28 16:55:16 -0400306 {
Chris Craikb50c2172013-07-29 15:28:30 -0700307 png_ptr->read_buffer = buffer;
308 png_ptr->read_buffer_size = new_size;
309 }
310
311 else if (warn < 2) /* else silent */
312 {
313#ifdef PNG_WARNINGS_SUPPORTED
314 if (warn)
315 png_chunk_warning(png_ptr, "insufficient memory to read chunk");
316 else
317#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -0400318 {
Chris Craikb50c2172013-07-29 15:28:30 -0700319#ifdef PNG_ERROR_TEXT_SUPPORTED
320 png_chunk_error(png_ptr, "insufficient memory to read chunk");
321#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -0400322 }
Chris Craikb50c2172013-07-29 15:28:30 -0700323 }
324 }
325
326 return buffer;
327}
328
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.
333 */
334static int
335png_inflate_claim(png_structrp png_ptr, png_uint_32 owner)
336{
337 if (png_ptr->zowner != 0)
338 {
339 char msg[64];
340
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.
345 */
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
353 }
354
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"!).
363 *
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.
367 */
368 {
369 int ret; /* zlib return code */
370# if PNG_ZLIB_VERNUM >= 0x1240
371
372# if defined(PNG_SET_OPTION_SUPPORTED) && \
373 defined(PNG_MAXIMUM_INFLATE_WINDOW)
374 int window_bits;
375
376 if (((png_ptr->options >> PNG_MAXIMUM_INFLATE_WINDOW) & 3) ==
377 PNG_OPTION_ON)
378 window_bits = 15;
379
380 else
381 window_bits = 0;
382# else
383# define window_bits 0
384# endif
385# endif
386
387 /* Set this for safety, just in case the previous owner left pointers to
388 * memory allocations.
389 */
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;
394
395 if (png_ptr->flags & PNG_FLAG_ZSTREAM_INITIALIZED)
396 {
397# if PNG_ZLIB_VERNUM < 0x1240
398 ret = inflateReset(&png_ptr->zstream);
399# else
400 ret = inflateReset2(&png_ptr->zstream, window_bits);
401# endif
402 }
403
404 else
405 {
406# if PNG_ZLIB_VERNUM < 0x1240
407 ret = inflateInit(&png_ptr->zstream);
408# else
409 ret = inflateInit2(&png_ptr->zstream, window_bits);
410# endif
411
412 if (ret == Z_OK)
413 png_ptr->flags |= PNG_FLAG_ZSTREAM_INITIALIZED;
Patrick Scott5f6bd842010-06-28 16:55:16 -0400414 }
415
416 if (ret == Z_OK)
Chris Craikb50c2172013-07-29 15:28:30 -0700417 png_ptr->zowner = owner;
Patrick Scott5f6bd842010-06-28 16:55:16 -0400418
Chris Craikb50c2172013-07-29 15:28:30 -0700419 else
420 png_zstream_error(png_ptr, ret);
421
422 return ret;
423 }
424
425# ifdef window_bits
426# undef window_bits
427# endif
428}
429
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.
436 *
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).
441 */
442static int
443png_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)
446{
447 if (png_ptr->zowner == owner) /* Else not claimed */
448 {
449 int ret;
450 png_alloc_size_t avail_out = *output_size_ptr;
451 png_uint_32 avail_in = *input_size_ptr;
452
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.
Patrick Scott5f6bd842010-06-28 16:55:16 -0400461 */
Chris Craikb50c2172013-07-29 15:28:30 -0700462 png_ptr->zstream.next_in = PNGZ_INPUT_CAST(input);
463 /* avail_in and avail_out are set below from 'size' */
Patrick Scott5f6bd842010-06-28 16:55:16 -0400464 png_ptr->zstream.avail_in = 0;
Chris Craikb50c2172013-07-29 15:28:30 -0700465 png_ptr->zstream.avail_out = 0;
Patrick Scott5f6bd842010-06-28 16:55:16 -0400466
Chris Craikb50c2172013-07-29 15:28:30 -0700467 /* Read directly into the output if it is available (this is set to
468 * a local buffer below if output is NULL).
Patrick Scott5f6bd842010-06-28 16:55:16 -0400469 */
Chris Craikb50c2172013-07-29 15:28:30 -0700470 if (output != NULL)
471 png_ptr->zstream.next_out = output;
472
473 do
Patrick Scott5f6bd842010-06-28 16:55:16 -0400474 {
Chris Craikb50c2172013-07-29 15:28:30 -0700475 uInt avail;
476 Byte local_buffer[PNG_INFLATE_BUF_SIZE];
477
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.
485 */
486 avail_in += png_ptr->zstream.avail_in; /* not consumed last time */
487
488 avail = ZLIB_IO_MAX;
489
490 if (avail_in < avail)
491 avail = (uInt)avail_in; /* safe: < than ZLIB_IO_MAX */
492
493 avail_in -= avail;
494 png_ptr->zstream.avail_in = avail;
495
496 /* zlib OUTPUT BUFFER */
497 avail_out += png_ptr->zstream.avail_out; /* not written last time */
498
499 avail = ZLIB_IO_MAX; /* maximum zlib can process */
500
501 if (output == NULL)
Patrick Scott5f6bd842010-06-28 16:55:16 -0400502 {
Chris Craikb50c2172013-07-29 15:28:30 -0700503 /* Reset the output buffer each time round if output is NULL and
504 * make available the full buffer, up to 'remaining_space'
505 */
506 png_ptr->zstream.next_out = local_buffer;
507 if ((sizeof local_buffer) < avail)
508 avail = (sizeof local_buffer);
Patrick Scott5f6bd842010-06-28 16:55:16 -0400509 }
510
Chris Craikb50c2172013-07-29 15:28:30 -0700511 if (avail_out < avail)
512 avail = (uInt)avail_out; /* safe: < ZLIB_IO_MAX */
Patrick Scott5f6bd842010-06-28 16:55:16 -0400513
Chris Craikb50c2172013-07-29 15:28:30 -0700514 png_ptr->zstream.avail_out = avail;
515 avail_out -= avail;
516
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.
522 */
523 ret = inflate(&png_ptr->zstream, avail_out > 0 ? Z_NO_FLUSH :
524 (finish ? Z_FINISH : Z_SYNC_FLUSH));
525 } while (ret == Z_OK);
526
527 /* For safety kill the local buffer pointer now */
528 if (output == NULL)
529 png_ptr->zstream.next_out = NULL;
530
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;
534
535 /* Update the input and output sizes; the updated values are the amount
536 * consumed or written, effectively the inverse of what zlib uses.
Patrick Scott5f6bd842010-06-28 16:55:16 -0400537 */
Chris Craikb50c2172013-07-29 15:28:30 -0700538 if (avail_out > 0)
539 *output_size_ptr -= avail_out;
540
541 if (avail_in > 0)
542 *input_size_ptr -= avail_in;
543
544 /* Ensure png_ptr->zstream.msg is set (even in the success case!) */
545 png_zstream_error(png_ptr, ret);
546 return ret;
547 }
548
549 else
550 {
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!
554 */
555 png_ptr->zstream.msg = PNGZ_MSG_CAST("zstream unclaimed");
556 return Z_STREAM_ERROR;
Patrick Scott5f6bd842010-06-28 16:55:16 -0400557 }
558}
559
The Android Open Source Project893912b2009-03-03 19:30:05 -0800560/*
Chris Craikb50c2172013-07-29 15:28:30 -0700561 * Decompress trailing data in a chunk. The assumption is that read_buffer
The Android Open Source Project893912b2009-03-03 19:30:05 -0800562 * 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).
566 */
Chris Craikb50c2172013-07-29 15:28:30 -0700567static int
568png_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*/)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800572{
Chris Craikb50c2172013-07-29 15:28:30 -0700573 /* TODO: implement different limits for different types of chunk.
574 *
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.
579 */
580 png_alloc_size_t limit = PNG_SIZE_MAX;
Patrick Scott5f6bd842010-06-28 16:55:16 -0400581
Chris Craikb50c2172013-07-29 15:28:30 -0700582# 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;
Patrick Scott5f6bd842010-06-28 16:55:16 -0400589# endif
Patrick Scott5f6bd842010-06-28 16:55:16 -0400590
Chris Craikb50c2172013-07-29 15:28:30 -0700591 if (limit >= prefix_size + (terminate != 0))
592 {
593 int ret;
594
595 limit -= prefix_size + (terminate != 0);
596
597 if (limit < *newlength)
598 *newlength = limit;
599
600 /* Now try to claim the stream. */
601 ret = png_inflate_claim(png_ptr, png_ptr->chunk_name);
602
603 if (ret == Z_OK)
Patrick Scott5f6bd842010-06-28 16:55:16 -0400604 {
Chris Craikb50c2172013-07-29 15:28:30 -0700605 png_uint_32 lzsize = chunklength - prefix_size;
Dave Burkeccee1212012-03-05 22:36:13 -0800606
Chris Craikb50c2172013-07-29 15:28:30 -0700607 ret = png_inflate(png_ptr, png_ptr->chunk_name, 1/*finish*/,
608 /* input: */ png_ptr->read_buffer + prefix_size, &lzsize,
609 /* output: */ NULL, newlength);
610
611 if (ret == Z_STREAM_END)
Dave Burkeccee1212012-03-05 22:36:13 -0800612 {
Chris Craikb50c2172013-07-29 15:28:30 -0700613 /* 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.
619 */
620 if (inflateReset(&png_ptr->zstream) == Z_OK)
Patrick Scott5f6bd842010-06-28 16:55:16 -0400621 {
Chris Craikb50c2172013-07-29 15:28:30 -0700622 /* 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.
626 */
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));
632
633 if (text != NULL)
634 {
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);
638
639 if (ret == Z_STREAM_END)
640 {
641 if (new_size == *newlength)
642 {
643 if (terminate)
644 text[prefix_size + *newlength] = 0;
645
646 if (prefix_size > 0)
647 memcpy(text, png_ptr->read_buffer, prefix_size);
648
649 {
650 png_bytep old_ptr = png_ptr->read_buffer;
651
652 png_ptr->read_buffer = text;
653 png_ptr->read_buffer_size = buffer_size;
654 text = old_ptr; /* freed below */
655 }
656 }
657
658 else
659 {
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.
665 */
666 ret = PNG_UNEXPECTED_ZLIB_RETURN;
667 }
668 }
669
670 else if (ret == Z_OK)
671 ret = PNG_UNEXPECTED_ZLIB_RETURN; /* for safety */
672
673 /* Free the text pointer (this is the old read_buffer on
674 * success)
675 */
676 png_free(png_ptr, text);
677
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.
680 */
681 if (ret == Z_STREAM_END &&
682 chunklength - prefix_size != lzsize)
683 png_chunk_benign_error(png_ptr, "extra compressed data");
684 }
685
686 else
687 {
688 /* Out of memory allocating the buffer */
689 ret = Z_MEM_ERROR;
690 png_zstream_error(png_ptr, Z_MEM_ERROR);
691 }
Patrick Scott5f6bd842010-06-28 16:55:16 -0400692 }
693
Chris Craikb50c2172013-07-29 15:28:30 -0700694 else
695 {
696 /* inflateReset failed, store the error message */
697 png_zstream_error(png_ptr, ret);
698
699 if (ret == Z_STREAM_END)
700 ret = PNG_UNEXPECTED_ZLIB_RETURN;
701 }
Patrick Scott5f6bd842010-06-28 16:55:16 -0400702 }
Chris Craikb50c2172013-07-29 15:28:30 -0700703
704 else if (ret == Z_OK)
705 ret = PNG_UNEXPECTED_ZLIB_RETURN;
706
707 /* Release the claimed stream */
708 png_ptr->zowner = 0;
Patrick Scott5f6bd842010-06-28 16:55:16 -0400709 }
Chris Craikb50c2172013-07-29 15:28:30 -0700710
711 else /* the claim failed */ if (ret == Z_STREAM_END) /* impossible! */
712 ret = PNG_UNEXPECTED_ZLIB_RETURN;
713
714 return ret;
Patrick Scott5f6bd842010-06-28 16:55:16 -0400715 }
716
Chris Craikb50c2172013-07-29 15:28:30 -0700717 else
The Android Open Source Project893912b2009-03-03 19:30:05 -0800718 {
Chris Craikb50c2172013-07-29 15:28:30 -0700719 /* Application/configuration limits exceeded */
720 png_zstream_error(png_ptr, Z_MEM_ERROR);
721 return Z_MEM_ERROR;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800722 }
Chris Craikb50c2172013-07-29 15:28:30 -0700723}
724#endif /* PNG_READ_COMPRESSED_TEXT_SUPPORTED */
Patrick Scott5f6bd842010-06-28 16:55:16 -0400725
Chris Craikb50c2172013-07-29 15:28:30 -0700726#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.
729 */
730static int
731png_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)
734{
735 if (png_ptr->zowner == png_ptr->chunk_name)
Patrick Scott5f6bd842010-06-28 16:55:16 -0400736 {
Chris Craikb50c2172013-07-29 15:28:30 -0700737 int ret;
738
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 */
742
743 do
Patrick Scott5f6bd842010-06-28 16:55:16 -0400744 {
Chris Craikb50c2172013-07-29 15:28:30 -0700745 if (png_ptr->zstream.avail_in == 0)
746 {
747 if (read_size > *chunk_bytes)
748 read_size = (uInt)*chunk_bytes;
749 *chunk_bytes -= read_size;
Patrick Scott5f6bd842010-06-28 16:55:16 -0400750
Chris Craikb50c2172013-07-29 15:28:30 -0700751 if (read_size > 0)
752 png_crc_read(png_ptr, read_buffer, read_size);
753
754 png_ptr->zstream.next_in = read_buffer;
755 png_ptr->zstream.avail_in = read_size;
756 }
757
758 if (png_ptr->zstream.avail_out == 0)
759 {
760 uInt avail = ZLIB_IO_MAX;
761 if (avail > *out_size)
762 avail = (uInt)*out_size;
763 *out_size -= avail;
764
765 png_ptr->zstream.avail_out = avail;
766 }
767
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.
771 */
772 ret = inflate(&png_ptr->zstream,
773 *chunk_bytes > 0 ? Z_NO_FLUSH : (finish ? Z_FINISH : Z_SYNC_FLUSH));
Patrick Scott5f6bd842010-06-28 16:55:16 -0400774 }
Chris Craikb50c2172013-07-29 15:28:30 -0700775 while (ret == Z_OK && (*out_size > 0 || png_ptr->zstream.avail_out > 0));
776
777 *out_size += png_ptr->zstream.avail_out;
778 png_ptr->zstream.avail_out = 0; /* Should not be required, but is safe */
779
780 /* Ensure the error message pointer is always set: */
781 png_zstream_error(png_ptr, ret);
782 return ret;
Patrick Scott5f6bd842010-06-28 16:55:16 -0400783 }
784
Chris Craikb50c2172013-07-29 15:28:30 -0700785 else
786 {
787 png_ptr->zstream.msg = PNGZ_MSG_CAST("zstream unclaimed");
788 return Z_STREAM_ERROR;
789 }
The Android Open Source Project893912b2009-03-03 19:30:05 -0800790}
791#endif
792
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400793/* Read and check the IDHR chunk */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800794void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -0700795png_handle_IHDR(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800796{
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;
801
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700802 png_debug(1, "in png_handle_IHDR");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800803
804 if (png_ptr->mode & PNG_HAVE_IHDR)
Chris Craikb50c2172013-07-29 15:28:30 -0700805 png_chunk_error(png_ptr, "out of place");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800806
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400807 /* Check the length */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800808 if (length != 13)
Chris Craikb50c2172013-07-29 15:28:30 -0700809 png_chunk_error(png_ptr, "invalid");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800810
811 png_ptr->mode |= PNG_HAVE_IHDR;
812
813 png_crc_read(png_ptr, buf, 13);
814 png_crc_finish(png_ptr, 0);
815
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];
823
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400824 /* Set internal variables */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800825 png_ptr->width = width;
826 png_ptr->height = height;
827 png_ptr->bit_depth = (png_byte)bit_depth;
828 png_ptr->interlaced = (png_byte)interlace_type;
829 png_ptr->color_type = (png_byte)color_type;
Patrick Scott5f6bd842010-06-28 16:55:16 -0400830#ifdef PNG_MNG_FEATURES_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800831 png_ptr->filter_type = (png_byte)filter_type;
832#endif
833 png_ptr->compression_type = (png_byte)compression_type;
834
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400835 /* Find number of channels */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800836 switch (png_ptr->color_type)
837 {
Chris Craikb50c2172013-07-29 15:28:30 -0700838 default: /* invalid, png_set_IHDR calls png_error */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800839 case PNG_COLOR_TYPE_GRAY:
840 case PNG_COLOR_TYPE_PALETTE:
841 png_ptr->channels = 1;
842 break;
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400843
The Android Open Source Project893912b2009-03-03 19:30:05 -0800844 case PNG_COLOR_TYPE_RGB:
845 png_ptr->channels = 3;
846 break;
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400847
The Android Open Source Project893912b2009-03-03 19:30:05 -0800848 case PNG_COLOR_TYPE_GRAY_ALPHA:
849 png_ptr->channels = 2;
850 break;
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400851
The Android Open Source Project893912b2009-03-03 19:30:05 -0800852 case PNG_COLOR_TYPE_RGB_ALPHA:
853 png_ptr->channels = 4;
854 break;
855 }
856
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400857 /* Set up other useful info */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800858 png_ptr->pixel_depth = (png_byte)(png_ptr->bit_depth *
859 png_ptr->channels);
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700860 png_ptr->rowbytes = PNG_ROWBYTES(png_ptr->pixel_depth, png_ptr->width);
861 png_debug1(3, "bit_depth = %d", png_ptr->bit_depth);
862 png_debug1(3, "channels = %d", png_ptr->channels);
Chris Craikb50c2172013-07-29 15:28:30 -0700863 png_debug1(3, "rowbytes = %lu", (unsigned long)png_ptr->rowbytes);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800864 png_set_IHDR(png_ptr, info_ptr, width, height, bit_depth,
Chris Craikb50c2172013-07-29 15:28:30 -0700865 color_type, interlace_type, compression_type, filter_type);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800866}
867
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400868/* Read and check the palette */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800869void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -0700870png_handle_PLTE(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800871{
872 png_color palette[PNG_MAX_PALETTE_LENGTH];
873 int num, i;
Patrick Scott5f6bd842010-06-28 16:55:16 -0400874#ifdef PNG_POINTER_INDEXING_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800875 png_colorp pal_ptr;
876#endif
877
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700878 png_debug(1, "in png_handle_PLTE");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800879
880 if (!(png_ptr->mode & PNG_HAVE_IHDR))
Chris Craikb50c2172013-07-29 15:28:30 -0700881 png_chunk_error(png_ptr, "missing IHDR");
882
883 /* Moved to before the 'after IDAT' check below because otherwise duplicate
884 * PLTE chunks are potentially ignored (the spec says there shall not be more
885 * than one PLTE, the error is not treated as benign, so this check trumps
886 * the requirement that PLTE appears before IDAT.)
887 */
888 else if (png_ptr->mode & PNG_HAVE_PLTE)
889 png_chunk_error(png_ptr, "duplicate");
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400890
The Android Open Source Project893912b2009-03-03 19:30:05 -0800891 else if (png_ptr->mode & PNG_HAVE_IDAT)
892 {
Chris Craikb50c2172013-07-29 15:28:30 -0700893 /* This is benign because the non-benign error happened before, when an
894 * IDAT was encountered in a color-mapped image with no PLTE.
895 */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800896 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -0700897 png_chunk_benign_error(png_ptr, "out of place");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800898 return;
899 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400900
The Android Open Source Project893912b2009-03-03 19:30:05 -0800901 png_ptr->mode |= PNG_HAVE_PLTE;
902
Chris Craikb50c2172013-07-29 15:28:30 -0700903 if (!(png_ptr->color_type & PNG_COLOR_MASK_COLOR))
The Android Open Source Project893912b2009-03-03 19:30:05 -0800904 {
The Android Open Source Project893912b2009-03-03 19:30:05 -0800905 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -0700906 png_chunk_benign_error(png_ptr, "ignored in grayscale PNG");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800907 return;
908 }
Chris Craikb50c2172013-07-29 15:28:30 -0700909
Patrick Scott5f6bd842010-06-28 16:55:16 -0400910#ifndef PNG_READ_OPT_PLTE_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800911 if (png_ptr->color_type != PNG_COLOR_TYPE_PALETTE)
912 {
913 png_crc_finish(png_ptr, length);
914 return;
915 }
916#endif
917
918 if (length > 3*PNG_MAX_PALETTE_LENGTH || length % 3)
919 {
Chris Craikb50c2172013-07-29 15:28:30 -0700920 png_crc_finish(png_ptr, length);
921
The Android Open Source Project893912b2009-03-03 19:30:05 -0800922 if (png_ptr->color_type != PNG_COLOR_TYPE_PALETTE)
Chris Craikb50c2172013-07-29 15:28:30 -0700923 png_chunk_benign_error(png_ptr, "invalid");
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400924
The Android Open Source Project893912b2009-03-03 19:30:05 -0800925 else
Chris Craikb50c2172013-07-29 15:28:30 -0700926 png_chunk_error(png_ptr, "invalid");
927
928 return;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800929 }
930
Chris Craikb50c2172013-07-29 15:28:30 -0700931 /* The cast is safe because 'length' is less than 3*PNG_MAX_PALETTE_LENGTH */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800932 num = (int)length / 3;
933
Patrick Scott5f6bd842010-06-28 16:55:16 -0400934#ifdef PNG_POINTER_INDEXING_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800935 for (i = 0, pal_ptr = palette; i < num; i++, pal_ptr++)
936 {
937 png_byte buf[3];
938
939 png_crc_read(png_ptr, buf, 3);
940 pal_ptr->red = buf[0];
941 pal_ptr->green = buf[1];
942 pal_ptr->blue = buf[2];
943 }
944#else
945 for (i = 0; i < num; i++)
946 {
947 png_byte buf[3];
948
949 png_crc_read(png_ptr, buf, 3);
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400950 /* Don't depend upon png_color being any order */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800951 palette[i].red = buf[0];
952 palette[i].green = buf[1];
953 palette[i].blue = buf[2];
954 }
955#endif
956
Chris Craikb50c2172013-07-29 15:28:30 -0700957 /* If we actually need the PLTE chunk (ie for a paletted image), we do
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400958 * whatever the normal CRC configuration tells us. However, if we
959 * have an RGB image, the PLTE can be considered ancillary, so
960 * we will act as though it is.
961 */
Patrick Scott5f6bd842010-06-28 16:55:16 -0400962#ifndef PNG_READ_OPT_PLTE_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800963 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
964#endif
965 {
966 png_crc_finish(png_ptr, 0);
967 }
Chris Craikb50c2172013-07-29 15:28:30 -0700968
Patrick Scott5f6bd842010-06-28 16:55:16 -0400969#ifndef PNG_READ_OPT_PLTE_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800970 else if (png_crc_error(png_ptr)) /* Only if we have a CRC error */
971 {
972 /* If we don't want to use the data from an ancillary chunk,
Chris Craikb50c2172013-07-29 15:28:30 -0700973 * we have two options: an error abort, or a warning and we
974 * ignore the data in this chunk (which should be OK, since
975 * it's considered ancillary for a RGB or RGBA image).
976 *
977 * IMPLEMENTATION NOTE: this is only here because png_crc_finish uses the
978 * chunk type to determine whether to check the ancillary or the critical
979 * flags.
980 */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800981 if (!(png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_USE))
982 {
983 if (png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_NOWARN)
984 {
Chris Craikb50c2172013-07-29 15:28:30 -0700985 png_chunk_benign_error(png_ptr, "CRC error");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800986 }
Chris Craikb50c2172013-07-29 15:28:30 -0700987
The Android Open Source Project893912b2009-03-03 19:30:05 -0800988 else
989 {
990 png_chunk_warning(png_ptr, "CRC error");
991 return;
992 }
993 }
Chris Craikb50c2172013-07-29 15:28:30 -0700994
The Android Open Source Project893912b2009-03-03 19:30:05 -0800995 /* Otherwise, we (optionally) emit a warning and use the chunk. */
996 else if (!(png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_NOWARN))
997 {
998 png_chunk_warning(png_ptr, "CRC error");
999 }
1000 }
1001#endif
1002
Chris Craikb50c2172013-07-29 15:28:30 -07001003 /* TODO: png_set_PLTE has the side effect of setting png_ptr->palette to its
1004 * own copy of the palette. This has the side effect that when png_start_row
1005 * is called (this happens after any call to png_read_update_info) the
1006 * info_ptr palette gets changed. This is extremely unexpected and
1007 * confusing.
1008 *
1009 * Fix this by not sharing the palette in this way.
1010 */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001011 png_set_PLTE(png_ptr, info_ptr, palette, num);
1012
Chris Craikb50c2172013-07-29 15:28:30 -07001013 /* The three chunks, bKGD, hIST and tRNS *must* appear after PLTE and before
1014 * IDAT. Prior to 1.6.0 this was not checked; instead the code merely
1015 * checked the apparent validity of a tRNS chunk inserted before PLTE on a
1016 * palette PNG. 1.6.0 attempts to rigorously follow the standard and
1017 * therefore does a benign error if the erroneous condition is detected *and*
1018 * cancels the tRNS if the benign error returns. The alternative is to
1019 * amend the standard since it would be rather hypocritical of the standards
1020 * maintainers to ignore it.
1021 */
Patrick Scott5f6bd842010-06-28 16:55:16 -04001022#ifdef PNG_READ_tRNS_SUPPORTED
Chris Craikb50c2172013-07-29 15:28:30 -07001023 if (png_ptr->num_trans > 0 ||
1024 (info_ptr != NULL && (info_ptr->valid & PNG_INFO_tRNS) != 0))
The Android Open Source Project893912b2009-03-03 19:30:05 -08001025 {
Chris Craikb50c2172013-07-29 15:28:30 -07001026 /* Cancel this because otherwise it would be used if the transforms
1027 * require it. Don't cancel the 'valid' flag because this would prevent
1028 * detection of duplicate chunks.
1029 */
1030 png_ptr->num_trans = 0;
1031
1032 if (info_ptr != NULL)
1033 info_ptr->num_trans = 0;
1034
1035 png_chunk_benign_error(png_ptr, "tRNS must be after");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001036 }
1037#endif
1038
Chris Craikb50c2172013-07-29 15:28:30 -07001039#ifdef PNG_READ_hIST_SUPPORTED
1040 if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_hIST) != 0)
1041 png_chunk_benign_error(png_ptr, "hIST must be after");
1042#endif
1043
1044#ifdef PNG_READ_bKGD_SUPPORTED
1045 if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_bKGD) != 0)
1046 png_chunk_benign_error(png_ptr, "bKGD must be after");
1047#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -08001048}
1049
1050void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07001051png_handle_IEND(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001052{
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001053 png_debug(1, "in png_handle_IEND");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001054
1055 if (!(png_ptr->mode & PNG_HAVE_IHDR) || !(png_ptr->mode & PNG_HAVE_IDAT))
Chris Craikb50c2172013-07-29 15:28:30 -07001056 png_chunk_error(png_ptr, "out of place");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001057
1058 png_ptr->mode |= (PNG_AFTER_IDAT | PNG_HAVE_IEND);
1059
The Android Open Source Project893912b2009-03-03 19:30:05 -08001060 png_crc_finish(png_ptr, length);
1061
Chris Craikb50c2172013-07-29 15:28:30 -07001062 if (length != 0)
1063 png_chunk_benign_error(png_ptr, "invalid");
1064
1065 PNG_UNUSED(info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001066}
1067
Patrick Scott5f6bd842010-06-28 16:55:16 -04001068#ifdef PNG_READ_gAMA_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001069void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07001070png_handle_gAMA(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001071{
1072 png_fixed_point igamma;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001073 png_byte buf[4];
1074
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001075 png_debug(1, "in png_handle_gAMA");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001076
1077 if (!(png_ptr->mode & PNG_HAVE_IHDR))
Chris Craikb50c2172013-07-29 15:28:30 -07001078 png_chunk_error(png_ptr, "missing IHDR");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001079
Chris Craikb50c2172013-07-29 15:28:30 -07001080 else if (png_ptr->mode & (PNG_HAVE_IDAT|PNG_HAVE_PLTE))
The Android Open Source Project893912b2009-03-03 19:30:05 -08001081 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001082 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07001083 png_chunk_benign_error(png_ptr, "out of place");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001084 return;
1085 }
1086
1087 if (length != 4)
1088 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001089 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07001090 png_chunk_benign_error(png_ptr, "invalid");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001091 return;
1092 }
1093
1094 png_crc_read(png_ptr, buf, 4);
Chris Craikb50c2172013-07-29 15:28:30 -07001095
The Android Open Source Project893912b2009-03-03 19:30:05 -08001096 if (png_crc_finish(png_ptr, 0))
1097 return;
1098
Chris Craikb50c2172013-07-29 15:28:30 -07001099 igamma = png_get_fixed_point(NULL, buf);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001100
Chris Craikb50c2172013-07-29 15:28:30 -07001101 png_colorspace_set_gamma(png_ptr, &png_ptr->colorspace, igamma);
1102 png_colorspace_sync(png_ptr, info_ptr);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001103}
1104#endif
1105
Patrick Scott5f6bd842010-06-28 16:55:16 -04001106#ifdef PNG_READ_sBIT_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001107void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07001108png_handle_sBIT(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001109{
Chris Craikb50c2172013-07-29 15:28:30 -07001110 unsigned int truelen;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001111 png_byte buf[4];
1112
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001113 png_debug(1, "in png_handle_sBIT");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001114
1115 buf[0] = buf[1] = buf[2] = buf[3] = 0;
1116
1117 if (!(png_ptr->mode & PNG_HAVE_IHDR))
Chris Craikb50c2172013-07-29 15:28:30 -07001118 png_chunk_error(png_ptr, "missing IHDR");
1119
1120 else if (png_ptr->mode & (PNG_HAVE_IDAT|PNG_HAVE_PLTE))
The Android Open Source Project893912b2009-03-03 19:30:05 -08001121 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001122 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07001123 png_chunk_benign_error(png_ptr, "out of place");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001124 return;
1125 }
Chris Craikb50c2172013-07-29 15:28:30 -07001126
The Android Open Source Project893912b2009-03-03 19:30:05 -08001127 if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_sBIT))
1128 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001129 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07001130 png_chunk_benign_error(png_ptr, "duplicate");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001131 return;
1132 }
1133
1134 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
1135 truelen = 3;
Chris Craikb50c2172013-07-29 15:28:30 -07001136
The Android Open Source Project893912b2009-03-03 19:30:05 -08001137 else
Chris Craikb50c2172013-07-29 15:28:30 -07001138 truelen = png_ptr->channels;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001139
1140 if (length != truelen || length > 4)
1141 {
Chris Craikb50c2172013-07-29 15:28:30 -07001142 png_chunk_benign_error(png_ptr, "invalid");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001143 png_crc_finish(png_ptr, length);
1144 return;
1145 }
1146
1147 png_crc_read(png_ptr, buf, truelen);
Chris Craikb50c2172013-07-29 15:28:30 -07001148
The Android Open Source Project893912b2009-03-03 19:30:05 -08001149 if (png_crc_finish(png_ptr, 0))
1150 return;
1151
1152 if (png_ptr->color_type & PNG_COLOR_MASK_COLOR)
1153 {
1154 png_ptr->sig_bit.red = buf[0];
1155 png_ptr->sig_bit.green = buf[1];
1156 png_ptr->sig_bit.blue = buf[2];
1157 png_ptr->sig_bit.alpha = buf[3];
1158 }
Chris Craikb50c2172013-07-29 15:28:30 -07001159
The Android Open Source Project893912b2009-03-03 19:30:05 -08001160 else
1161 {
1162 png_ptr->sig_bit.gray = buf[0];
1163 png_ptr->sig_bit.red = buf[0];
1164 png_ptr->sig_bit.green = buf[0];
1165 png_ptr->sig_bit.blue = buf[0];
1166 png_ptr->sig_bit.alpha = buf[1];
1167 }
Chris Craikb50c2172013-07-29 15:28:30 -07001168
The Android Open Source Project893912b2009-03-03 19:30:05 -08001169 png_set_sBIT(png_ptr, info_ptr, &(png_ptr->sig_bit));
1170}
1171#endif
1172
Patrick Scott5f6bd842010-06-28 16:55:16 -04001173#ifdef PNG_READ_cHRM_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001174void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07001175png_handle_cHRM(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001176{
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001177 png_byte buf[32];
Chris Craikb50c2172013-07-29 15:28:30 -07001178 png_xy xy;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001179
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001180 png_debug(1, "in png_handle_cHRM");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001181
1182 if (!(png_ptr->mode & PNG_HAVE_IHDR))
Chris Craikb50c2172013-07-29 15:28:30 -07001183 png_chunk_error(png_ptr, "missing IHDR");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001184
Chris Craikb50c2172013-07-29 15:28:30 -07001185 else if (png_ptr->mode & (PNG_HAVE_IDAT|PNG_HAVE_PLTE))
The Android Open Source Project893912b2009-03-03 19:30:05 -08001186 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001187 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07001188 png_chunk_benign_error(png_ptr, "out of place");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001189 return;
1190 }
1191
1192 if (length != 32)
1193 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001194 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07001195 png_chunk_benign_error(png_ptr, "invalid");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001196 return;
1197 }
1198
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001199 png_crc_read(png_ptr, buf, 32);
Chris Craikb50c2172013-07-29 15:28:30 -07001200
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001201 if (png_crc_finish(png_ptr, 0))
The Android Open Source Project893912b2009-03-03 19:30:05 -08001202 return;
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001203
Chris Craikb50c2172013-07-29 15:28:30 -07001204 xy.whitex = png_get_fixed_point(NULL, buf);
1205 xy.whitey = png_get_fixed_point(NULL, buf + 4);
1206 xy.redx = png_get_fixed_point(NULL, buf + 8);
1207 xy.redy = png_get_fixed_point(NULL, buf + 12);
1208 xy.greenx = png_get_fixed_point(NULL, buf + 16);
1209 xy.greeny = png_get_fixed_point(NULL, buf + 20);
1210 xy.bluex = png_get_fixed_point(NULL, buf + 24);
1211 xy.bluey = png_get_fixed_point(NULL, buf + 28);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001212
Chris Craikb50c2172013-07-29 15:28:30 -07001213 if (xy.whitex == PNG_FIXED_ERROR ||
1214 xy.whitey == PNG_FIXED_ERROR ||
1215 xy.redx == PNG_FIXED_ERROR ||
1216 xy.redy == PNG_FIXED_ERROR ||
1217 xy.greenx == PNG_FIXED_ERROR ||
1218 xy.greeny == PNG_FIXED_ERROR ||
1219 xy.bluex == PNG_FIXED_ERROR ||
1220 xy.bluey == PNG_FIXED_ERROR)
1221 {
1222 png_chunk_benign_error(png_ptr, "invalid values");
1223 return;
1224 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08001225
Chris Craikb50c2172013-07-29 15:28:30 -07001226 /* If a colorspace error has already been output skip this chunk */
1227 if (png_ptr->colorspace.flags & PNG_COLORSPACE_INVALID)
1228 return;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001229
Chris Craikb50c2172013-07-29 15:28:30 -07001230 if (png_ptr->colorspace.flags & PNG_COLORSPACE_FROM_cHRM)
1231 {
1232 png_ptr->colorspace.flags |= PNG_COLORSPACE_INVALID;
1233 png_colorspace_sync(png_ptr, info_ptr);
1234 png_chunk_benign_error(png_ptr, "duplicate");
1235 return;
1236 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08001237
Chris Craikb50c2172013-07-29 15:28:30 -07001238 png_ptr->colorspace.flags |= PNG_COLORSPACE_FROM_cHRM;
1239 (void)png_colorspace_set_chromaticities(png_ptr, &png_ptr->colorspace, &xy,
1240 1/*prefer cHRM values*/);
1241 png_colorspace_sync(png_ptr, info_ptr);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001242}
1243#endif
1244
Patrick Scott5f6bd842010-06-28 16:55:16 -04001245#ifdef PNG_READ_sRGB_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001246void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07001247png_handle_sRGB(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001248{
Chris Craikb50c2172013-07-29 15:28:30 -07001249 png_byte intent;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001250
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001251 png_debug(1, "in png_handle_sRGB");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001252
1253 if (!(png_ptr->mode & PNG_HAVE_IHDR))
Chris Craikb50c2172013-07-29 15:28:30 -07001254 png_chunk_error(png_ptr, "missing IHDR");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001255
Chris Craikb50c2172013-07-29 15:28:30 -07001256 else if (png_ptr->mode & (PNG_HAVE_IDAT|PNG_HAVE_PLTE))
The Android Open Source Project893912b2009-03-03 19:30:05 -08001257 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001258 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07001259 png_chunk_benign_error(png_ptr, "out of place");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001260 return;
1261 }
1262
1263 if (length != 1)
1264 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001265 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07001266 png_chunk_benign_error(png_ptr, "invalid");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001267 return;
1268 }
1269
Chris Craikb50c2172013-07-29 15:28:30 -07001270 png_crc_read(png_ptr, &intent, 1);
1271
The Android Open Source Project893912b2009-03-03 19:30:05 -08001272 if (png_crc_finish(png_ptr, 0))
1273 return;
1274
Chris Craikb50c2172013-07-29 15:28:30 -07001275 /* If a colorspace error has already been output skip this chunk */
1276 if (png_ptr->colorspace.flags & PNG_COLORSPACE_INVALID)
1277 return;
1278
1279 /* Only one sRGB or iCCP chunk is allowed, use the HAVE_INTENT flag to detect
1280 * this.
1281 */
1282 if (png_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_INTENT)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001283 {
Chris Craikb50c2172013-07-29 15:28:30 -07001284 png_ptr->colorspace.flags |= PNG_COLORSPACE_INVALID;
1285 png_colorspace_sync(png_ptr, info_ptr);
1286 png_chunk_benign_error(png_ptr, "too many profiles");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001287 return;
1288 }
1289
Chris Craikb50c2172013-07-29 15:28:30 -07001290 (void)png_colorspace_set_sRGB(png_ptr, &png_ptr->colorspace, intent);
1291 png_colorspace_sync(png_ptr, info_ptr);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001292}
1293#endif /* PNG_READ_sRGB_SUPPORTED */
1294
Patrick Scott5f6bd842010-06-28 16:55:16 -04001295#ifdef PNG_READ_iCCP_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001296void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07001297png_handle_iCCP(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
1298/* Note: this does not properly handle profiles that are > 64K under DOS */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001299{
Chris Craikb50c2172013-07-29 15:28:30 -07001300 png_const_charp errmsg = NULL; /* error message output, or no error */
1301 int finished = 0; /* crc checked */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001302
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001303 png_debug(1, "in png_handle_iCCP");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001304
1305 if (!(png_ptr->mode & PNG_HAVE_IHDR))
Chris Craikb50c2172013-07-29 15:28:30 -07001306 png_chunk_error(png_ptr, "missing IHDR");
1307
1308 else if (png_ptr->mode & (PNG_HAVE_IDAT|PNG_HAVE_PLTE))
The Android Open Source Project893912b2009-03-03 19:30:05 -08001309 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001310 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07001311 png_chunk_benign_error(png_ptr, "out of place");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001312 return;
1313 }
1314
Chris Craikb50c2172013-07-29 15:28:30 -07001315 /* Consistent with all the above colorspace handling an obviously *invalid*
1316 * chunk is just ignored, so does not invalidate the color space. An
1317 * alternative is to set the 'invalid' flags at the start of this routine
1318 * and only clear them in they were not set before and all the tests pass.
1319 * The minimum 'deflate' stream is assumed to be just the 2 byte header and 4
1320 * byte checksum. The keyword must be one character and there is a
1321 * terminator (0) byte and the compression method.
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001322 */
Chris Craikb50c2172013-07-29 15:28:30 -07001323 if (length < 9)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001324 {
Chris Craikb50c2172013-07-29 15:28:30 -07001325 png_crc_finish(png_ptr, length);
1326 png_chunk_benign_error(png_ptr, "too short");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001327 return;
1328 }
1329
Chris Craikb50c2172013-07-29 15:28:30 -07001330 /* If a colorspace error has already been output skip this chunk */
1331 if (png_ptr->colorspace.flags & PNG_COLORSPACE_INVALID)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001332 {
Chris Craikb50c2172013-07-29 15:28:30 -07001333 png_crc_finish(png_ptr, length);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001334 return;
1335 }
1336
Chris Craikb50c2172013-07-29 15:28:30 -07001337 /* Only one sRGB or iCCP chunk is allowed, use the HAVE_INTENT flag to detect
1338 * this.
1339 */
1340 if ((png_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_INTENT) == 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001341 {
Chris Craikb50c2172013-07-29 15:28:30 -07001342 uInt read_length, keyword_length;
1343 char keyword[81];
1344
1345 /* Find the keyword; the keyword plus separator and compression method
1346 * bytes can be at most 81 characters long.
1347 */
1348 read_length = 81; /* maximum */
1349 if (read_length > length)
1350 read_length = (uInt)length;
1351
1352 png_crc_read(png_ptr, (png_bytep)keyword, read_length);
1353 length -= read_length;
1354
1355 keyword_length = 0;
1356 while (keyword_length < 80 && keyword_length < read_length &&
1357 keyword[keyword_length] != 0)
1358 ++keyword_length;
1359
1360 /* TODO: make the keyword checking common */
1361 if (keyword_length >= 1 && keyword_length <= 79)
1362 {
1363 /* We only understand '0' compression - deflate - so if we get a
1364 * different value we can't safely decode the chunk.
1365 */
1366 if (keyword_length+1 < read_length &&
1367 keyword[keyword_length+1] == PNG_COMPRESSION_TYPE_BASE)
1368 {
1369 read_length -= keyword_length+2;
1370
1371 if (png_inflate_claim(png_ptr, png_iCCP) == Z_OK)
1372 {
1373 Byte profile_header[132];
1374 Byte local_buffer[PNG_INFLATE_BUF_SIZE];
1375 png_alloc_size_t size = (sizeof profile_header);
1376
1377 png_ptr->zstream.next_in = (Bytef*)keyword + (keyword_length+2);
1378 png_ptr->zstream.avail_in = read_length;
1379 (void)png_inflate_read(png_ptr, local_buffer,
1380 (sizeof local_buffer), &length, profile_header, &size,
1381 0/*finish: don't, because the output is too small*/);
1382
1383 if (size == 0)
1384 {
1385 /* We have the ICC profile header; do the basic header checks.
1386 */
1387 const png_uint_32 profile_length =
1388 png_get_uint_32(profile_header);
1389
1390 if (png_icc_check_length(png_ptr, &png_ptr->colorspace,
1391 keyword, profile_length))
1392 {
1393 /* The length is apparently ok, so we can check the 132
1394 * byte header.
1395 */
1396 if (png_icc_check_header(png_ptr, &png_ptr->colorspace,
1397 keyword, profile_length, profile_header,
1398 png_ptr->color_type))
1399 {
1400 /* Now read the tag table; a variable size buffer is
1401 * needed at this point, allocate one for the whole
1402 * profile. The header check has already validated
1403 * that none of these stuff will overflow.
1404 */
1405 const png_uint_32 tag_count = png_get_uint_32(
1406 profile_header+128);
1407 png_bytep profile = png_read_buffer(png_ptr,
1408 profile_length, 2/*silent*/);
1409
1410 if (profile != NULL)
1411 {
1412 memcpy(profile, profile_header,
1413 (sizeof profile_header));
1414
1415 size = 12 * tag_count;
1416
1417 (void)png_inflate_read(png_ptr, local_buffer,
1418 (sizeof local_buffer), &length,
1419 profile + (sizeof profile_header), &size, 0);
1420
1421 /* Still expect a a buffer error because we expect
1422 * there to be some tag data!
1423 */
1424 if (size == 0)
1425 {
1426 if (png_icc_check_tag_table(png_ptr,
1427 &png_ptr->colorspace, keyword, profile_length,
1428 profile))
1429 {
1430 /* The profile has been validated for basic
1431 * security issues, so read the whole thing in.
1432 */
1433 size = profile_length - (sizeof profile_header)
1434 - 12 * tag_count;
1435
1436 (void)png_inflate_read(png_ptr, local_buffer,
1437 (sizeof local_buffer), &length,
1438 profile + (sizeof profile_header) +
1439 12 * tag_count, &size, 1/*finish*/);
1440
1441 if (length > 0 && !(png_ptr->flags &
1442 PNG_FLAG_BENIGN_ERRORS_WARN))
1443 errmsg = "extra compressed data";
1444
1445 /* But otherwise allow extra data: */
1446 else if (size == 0)
1447 {
1448 if (length > 0)
1449 {
1450 /* This can be handled completely, so
1451 * keep going.
1452 */
1453 png_chunk_warning(png_ptr,
1454 "extra compressed data");
1455 }
1456
1457 png_crc_finish(png_ptr, length);
1458 finished = 1;
1459
1460# ifdef PNG_sRGB_SUPPORTED
1461 /* Check for a match against sRGB */
1462 png_icc_set_sRGB(png_ptr,
1463 &png_ptr->colorspace, profile,
1464 png_ptr->zstream.adler);
1465# endif
1466
1467 /* Steal the profile for info_ptr. */
1468 if (info_ptr != NULL)
1469 {
1470 png_free_data(png_ptr, info_ptr,
1471 PNG_FREE_ICCP, 0);
1472
1473 info_ptr->iccp_name = png_voidcast(char*,
1474 png_malloc_base(png_ptr,
1475 keyword_length+1));
1476 if (info_ptr->iccp_name != NULL)
1477 {
1478 memcpy(info_ptr->iccp_name, keyword,
1479 keyword_length+1);
1480 info_ptr->iccp_proflen =
1481 profile_length;
1482 info_ptr->iccp_profile = profile;
1483 png_ptr->read_buffer = NULL; /*steal*/
1484 info_ptr->free_me |= PNG_FREE_ICCP;
1485 info_ptr->valid |= PNG_INFO_iCCP;
1486 }
1487
1488 else
1489 {
1490 png_ptr->colorspace.flags |=
1491 PNG_COLORSPACE_INVALID;
1492 errmsg = "out of memory";
1493 }
1494 }
1495
1496 /* else the profile remains in the read
1497 * buffer which gets reused for subsequent
1498 * chunks.
1499 */
1500
1501 if (info_ptr != NULL)
1502 png_colorspace_sync(png_ptr, info_ptr);
1503
1504 if (errmsg == NULL)
1505 {
1506 png_ptr->zowner = 0;
1507 return;
1508 }
1509 }
1510
1511 else if (size > 0)
1512 errmsg = "truncated";
1513
1514 else
1515 errmsg = png_ptr->zstream.msg;
1516 }
1517
1518 /* else png_icc_check_tag_table output an error */
1519 }
1520
1521 else /* profile truncated */
1522 errmsg = png_ptr->zstream.msg;
1523 }
1524
1525 else
1526 errmsg = "out of memory";
1527 }
1528
1529 /* else png_icc_check_header output an error */
1530 }
1531
1532 /* else png_icc_check_length output an error */
1533 }
1534
1535 else /* profile truncated */
1536 errmsg = png_ptr->zstream.msg;
1537
1538 /* Release the stream */
1539 png_ptr->zowner = 0;
1540 }
1541
1542 else /* png_inflate_claim failed */
1543 errmsg = png_ptr->zstream.msg;
1544 }
1545
1546 else
1547 errmsg = "bad compression method"; /* or missing */
1548 }
1549
1550 else
1551 errmsg = "bad keyword";
The Android Open Source Project893912b2009-03-03 19:30:05 -08001552 }
1553
Chris Craikb50c2172013-07-29 15:28:30 -07001554 else
1555 errmsg = "too many profiles";
1556
1557 /* Failure: the reason is in 'errmsg' */
1558 if (!finished)
1559 png_crc_finish(png_ptr, length);
1560
1561 png_ptr->colorspace.flags |= PNG_COLORSPACE_INVALID;
1562 png_colorspace_sync(png_ptr, info_ptr);
1563 if (errmsg != NULL) /* else already output */
1564 png_chunk_benign_error(png_ptr, errmsg);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001565}
1566#endif /* PNG_READ_iCCP_SUPPORTED */
1567
Patrick Scott5f6bd842010-06-28 16:55:16 -04001568#ifdef PNG_READ_sPLT_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001569void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07001570png_handle_sPLT(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001571/* Note: this does not properly handle chunks that are > 64K under DOS */
1572{
Chris Craikb50c2172013-07-29 15:28:30 -07001573 png_bytep entry_start, buffer;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001574 png_sPLT_t new_palette;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001575 png_sPLT_entryp pp;
Chris Craikb50c2172013-07-29 15:28:30 -07001576 png_uint_32 data_length;
1577 int entry_size, i;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001578 png_uint_32 skip = 0;
Chris Craikb50c2172013-07-29 15:28:30 -07001579 png_uint_32 dl;
1580 png_size_t max_dl;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001581
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001582 png_debug(1, "in png_handle_sPLT");
1583
Patrick Scott5f6bd842010-06-28 16:55:16 -04001584#ifdef PNG_USER_LIMITS_SUPPORTED
Patrick Scott5f6bd842010-06-28 16:55:16 -04001585 if (png_ptr->user_chunk_cache_max != 0)
1586 {
1587 if (png_ptr->user_chunk_cache_max == 1)
1588 {
1589 png_crc_finish(png_ptr, length);
1590 return;
1591 }
Chris Craikb50c2172013-07-29 15:28:30 -07001592
Patrick Scott5f6bd842010-06-28 16:55:16 -04001593 if (--png_ptr->user_chunk_cache_max == 1)
1594 {
1595 png_warning(png_ptr, "No space in chunk cache for sPLT");
1596 png_crc_finish(png_ptr, length);
1597 return;
1598 }
1599 }
1600#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -08001601
1602 if (!(png_ptr->mode & PNG_HAVE_IHDR))
Chris Craikb50c2172013-07-29 15:28:30 -07001603 png_chunk_error(png_ptr, "missing IHDR");
1604
The Android Open Source Project893912b2009-03-03 19:30:05 -08001605 else if (png_ptr->mode & PNG_HAVE_IDAT)
1606 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001607 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07001608 png_chunk_benign_error(png_ptr, "out of place");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001609 return;
1610 }
1611
1612#ifdef PNG_MAX_MALLOC_64K
Chris Craikb50c2172013-07-29 15:28:30 -07001613 if (length > 65535U)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001614 {
Chris Craikb50c2172013-07-29 15:28:30 -07001615 png_crc_finish(png_ptr, length);
1616 png_chunk_benign_error(png_ptr, "too large to fit in memory");
1617 return;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001618 }
1619#endif
1620
Chris Craikb50c2172013-07-29 15:28:30 -07001621 buffer = png_read_buffer(png_ptr, length+1, 2/*silent*/);
1622 if (buffer == NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001623 {
Chris Craikb50c2172013-07-29 15:28:30 -07001624 png_crc_finish(png_ptr, length);
1625 png_chunk_benign_error(png_ptr, "out of memory");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001626 return;
1627 }
1628
The Android Open Source Project893912b2009-03-03 19:30:05 -08001629
Chris Craikb50c2172013-07-29 15:28:30 -07001630 /* WARNING: this may break if size_t is less than 32 bits; it is assumed
1631 * that the PNG_MAX_MALLOC_64K test is enabled in this case, but this is a
1632 * potential breakage point if the types in pngconf.h aren't exactly right.
1633 */
1634 png_crc_read(png_ptr, buffer, length);
1635
1636 if (png_crc_finish(png_ptr, skip))
1637 return;
1638
1639 buffer[length] = 0;
1640
1641 for (entry_start = buffer; *entry_start; entry_start++)
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001642 /* Empty loop to find end of name */ ;
Chris Craikb50c2172013-07-29 15:28:30 -07001643
The Android Open Source Project893912b2009-03-03 19:30:05 -08001644 ++entry_start;
1645
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001646 /* A sample depth should follow the separator, and we should be on it */
Chris Craikb50c2172013-07-29 15:28:30 -07001647 if (entry_start > buffer + length - 2)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001648 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001649 png_warning(png_ptr, "malformed sPLT chunk");
1650 return;
1651 }
1652
1653 new_palette.depth = *entry_start++;
1654 entry_size = (new_palette.depth == 8 ? 6 : 10);
Chris Craikb50c2172013-07-29 15:28:30 -07001655 /* This must fit in a png_uint_32 because it is derived from the original
1656 * chunk data length.
1657 */
1658 data_length = length - (png_uint_32)(entry_start - buffer);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001659
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001660 /* Integrity-check the data length */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001661 if (data_length % entry_size)
1662 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001663 png_warning(png_ptr, "sPLT chunk has bad length");
1664 return;
1665 }
1666
Chris Craikb50c2172013-07-29 15:28:30 -07001667 dl = (png_int_32)(data_length / entry_size);
1668 max_dl = PNG_SIZE_MAX / (sizeof (png_sPLT_entry));
1669
1670 if (dl > max_dl)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001671 {
1672 png_warning(png_ptr, "sPLT chunk too long");
1673 return;
1674 }
Chris Craikb50c2172013-07-29 15:28:30 -07001675
1676 new_palette.nentries = (png_int_32)(data_length / entry_size);
1677
The Android Open Source Project893912b2009-03-03 19:30:05 -08001678 new_palette.entries = (png_sPLT_entryp)png_malloc_warn(
Chris Craikb50c2172013-07-29 15:28:30 -07001679 png_ptr, new_palette.nentries * (sizeof (png_sPLT_entry)));
1680
The Android Open Source Project893912b2009-03-03 19:30:05 -08001681 if (new_palette.entries == NULL)
1682 {
1683 png_warning(png_ptr, "sPLT chunk requires too much memory");
1684 return;
1685 }
1686
Patrick Scott5f6bd842010-06-28 16:55:16 -04001687#ifdef PNG_POINTER_INDEXING_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001688 for (i = 0; i < new_palette.nentries; i++)
1689 {
Patrick Scott5f6bd842010-06-28 16:55:16 -04001690 pp = new_palette.entries + i;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001691
1692 if (new_palette.depth == 8)
1693 {
Chris Craikb50c2172013-07-29 15:28:30 -07001694 pp->red = *entry_start++;
1695 pp->green = *entry_start++;
1696 pp->blue = *entry_start++;
1697 pp->alpha = *entry_start++;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001698 }
Chris Craikb50c2172013-07-29 15:28:30 -07001699
The Android Open Source Project893912b2009-03-03 19:30:05 -08001700 else
1701 {
Chris Craikb50c2172013-07-29 15:28:30 -07001702 pp->red = png_get_uint_16(entry_start); entry_start += 2;
1703 pp->green = png_get_uint_16(entry_start); entry_start += 2;
1704 pp->blue = png_get_uint_16(entry_start); entry_start += 2;
1705 pp->alpha = png_get_uint_16(entry_start); entry_start += 2;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001706 }
Chris Craikb50c2172013-07-29 15:28:30 -07001707
The Android Open Source Project893912b2009-03-03 19:30:05 -08001708 pp->frequency = png_get_uint_16(entry_start); entry_start += 2;
1709 }
1710#else
1711 pp = new_palette.entries;
Chris Craikb50c2172013-07-29 15:28:30 -07001712
The Android Open Source Project893912b2009-03-03 19:30:05 -08001713 for (i = 0; i < new_palette.nentries; i++)
1714 {
1715
1716 if (new_palette.depth == 8)
1717 {
Chris Craikb50c2172013-07-29 15:28:30 -07001718 pp[i].red = *entry_start++;
1719 pp[i].green = *entry_start++;
1720 pp[i].blue = *entry_start++;
1721 pp[i].alpha = *entry_start++;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001722 }
Chris Craikb50c2172013-07-29 15:28:30 -07001723
The Android Open Source Project893912b2009-03-03 19:30:05 -08001724 else
1725 {
Chris Craikb50c2172013-07-29 15:28:30 -07001726 pp[i].red = png_get_uint_16(entry_start); entry_start += 2;
1727 pp[i].green = png_get_uint_16(entry_start); entry_start += 2;
1728 pp[i].blue = png_get_uint_16(entry_start); entry_start += 2;
1729 pp[i].alpha = png_get_uint_16(entry_start); entry_start += 2;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001730 }
Chris Craikb50c2172013-07-29 15:28:30 -07001731
1732 pp[i].frequency = png_get_uint_16(entry_start); entry_start += 2;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001733 }
1734#endif
1735
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001736 /* Discard all chunk data except the name and stash that */
Chris Craikb50c2172013-07-29 15:28:30 -07001737 new_palette.name = (png_charp)buffer;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001738
1739 png_set_sPLT(png_ptr, info_ptr, &new_palette, 1);
1740
The Android Open Source Project893912b2009-03-03 19:30:05 -08001741 png_free(png_ptr, new_palette.entries);
1742}
1743#endif /* PNG_READ_sPLT_SUPPORTED */
1744
Patrick Scott5f6bd842010-06-28 16:55:16 -04001745#ifdef PNG_READ_tRNS_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001746void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07001747png_handle_tRNS(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001748{
1749 png_byte readbuf[PNG_MAX_PALETTE_LENGTH];
1750
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001751 png_debug(1, "in png_handle_tRNS");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001752
1753 if (!(png_ptr->mode & PNG_HAVE_IHDR))
Chris Craikb50c2172013-07-29 15:28:30 -07001754 png_chunk_error(png_ptr, "missing IHDR");
1755
The Android Open Source Project893912b2009-03-03 19:30:05 -08001756 else if (png_ptr->mode & PNG_HAVE_IDAT)
1757 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001758 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07001759 png_chunk_benign_error(png_ptr, "out of place");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001760 return;
1761 }
Chris Craikb50c2172013-07-29 15:28:30 -07001762
The Android Open Source Project893912b2009-03-03 19:30:05 -08001763 else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_tRNS))
1764 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001765 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07001766 png_chunk_benign_error(png_ptr, "duplicate");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001767 return;
1768 }
1769
1770 if (png_ptr->color_type == PNG_COLOR_TYPE_GRAY)
1771 {
1772 png_byte buf[2];
1773
1774 if (length != 2)
1775 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001776 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07001777 png_chunk_benign_error(png_ptr, "invalid");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001778 return;
1779 }
1780
1781 png_crc_read(png_ptr, buf, 2);
1782 png_ptr->num_trans = 1;
Chris Craikb50c2172013-07-29 15:28:30 -07001783 png_ptr->trans_color.gray = png_get_uint_16(buf);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001784 }
Chris Craikb50c2172013-07-29 15:28:30 -07001785
The Android Open Source Project893912b2009-03-03 19:30:05 -08001786 else if (png_ptr->color_type == PNG_COLOR_TYPE_RGB)
1787 {
1788 png_byte buf[6];
1789
1790 if (length != 6)
1791 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001792 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07001793 png_chunk_benign_error(png_ptr, "invalid");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001794 return;
1795 }
Chris Craikb50c2172013-07-29 15:28:30 -07001796
1797 png_crc_read(png_ptr, buf, length);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001798 png_ptr->num_trans = 1;
Chris Craikb50c2172013-07-29 15:28:30 -07001799 png_ptr->trans_color.red = png_get_uint_16(buf);
1800 png_ptr->trans_color.green = png_get_uint_16(buf + 2);
1801 png_ptr->trans_color.blue = png_get_uint_16(buf + 4);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001802 }
Chris Craikb50c2172013-07-29 15:28:30 -07001803
The Android Open Source Project893912b2009-03-03 19:30:05 -08001804 else if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
1805 {
1806 if (!(png_ptr->mode & PNG_HAVE_PLTE))
1807 {
Chris Craikb50c2172013-07-29 15:28:30 -07001808 /* TODO: is this actually an error in the ISO spec? */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001809 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07001810 png_chunk_benign_error(png_ptr, "out of place");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001811 return;
1812 }
Chris Craikb50c2172013-07-29 15:28:30 -07001813
1814 if (length > png_ptr->num_palette || length > PNG_MAX_PALETTE_LENGTH ||
1815 length == 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001816 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001817 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07001818 png_chunk_benign_error(png_ptr, "invalid");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001819 return;
1820 }
Chris Craikb50c2172013-07-29 15:28:30 -07001821
1822 png_crc_read(png_ptr, readbuf, length);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001823 png_ptr->num_trans = (png_uint_16)length;
1824 }
Chris Craikb50c2172013-07-29 15:28:30 -07001825
The Android Open Source Project893912b2009-03-03 19:30:05 -08001826 else
1827 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001828 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07001829 png_chunk_benign_error(png_ptr, "invalid with alpha channel");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001830 return;
1831 }
1832
1833 if (png_crc_finish(png_ptr, 0))
1834 {
1835 png_ptr->num_trans = 0;
1836 return;
1837 }
1838
Chris Craikb50c2172013-07-29 15:28:30 -07001839 /* TODO: this is a horrible side effect in the palette case because the
1840 * png_struct ends up with a pointer to the tRNS buffer owned by the
1841 * png_info. Fix this.
1842 */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001843 png_set_tRNS(png_ptr, info_ptr, readbuf, png_ptr->num_trans,
Chris Craikb50c2172013-07-29 15:28:30 -07001844 &(png_ptr->trans_color));
The Android Open Source Project893912b2009-03-03 19:30:05 -08001845}
1846#endif
1847
Patrick Scott5f6bd842010-06-28 16:55:16 -04001848#ifdef PNG_READ_bKGD_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001849void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07001850png_handle_bKGD(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001851{
Chris Craikb50c2172013-07-29 15:28:30 -07001852 unsigned int truelen;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001853 png_byte buf[6];
Chris Craikb50c2172013-07-29 15:28:30 -07001854 png_color_16 background;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001855
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001856 png_debug(1, "in png_handle_bKGD");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001857
1858 if (!(png_ptr->mode & PNG_HAVE_IHDR))
Chris Craikb50c2172013-07-29 15:28:30 -07001859 png_chunk_error(png_ptr, "missing IHDR");
1860
1861 else if ((png_ptr->mode & PNG_HAVE_IDAT) ||
1862 (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE &&
1863 !(png_ptr->mode & PNG_HAVE_PLTE)))
The Android Open Source Project893912b2009-03-03 19:30:05 -08001864 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001865 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07001866 png_chunk_benign_error(png_ptr, "out of place");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001867 return;
1868 }
Chris Craikb50c2172013-07-29 15:28:30 -07001869
The Android Open Source Project893912b2009-03-03 19:30:05 -08001870 else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_bKGD))
1871 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001872 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07001873 png_chunk_benign_error(png_ptr, "duplicate");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001874 return;
1875 }
1876
1877 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
1878 truelen = 1;
Chris Craikb50c2172013-07-29 15:28:30 -07001879
The Android Open Source Project893912b2009-03-03 19:30:05 -08001880 else if (png_ptr->color_type & PNG_COLOR_MASK_COLOR)
1881 truelen = 6;
Chris Craikb50c2172013-07-29 15:28:30 -07001882
The Android Open Source Project893912b2009-03-03 19:30:05 -08001883 else
1884 truelen = 2;
1885
1886 if (length != truelen)
1887 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001888 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07001889 png_chunk_benign_error(png_ptr, "invalid");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001890 return;
1891 }
1892
1893 png_crc_read(png_ptr, buf, truelen);
Chris Craikb50c2172013-07-29 15:28:30 -07001894
The Android Open Source Project893912b2009-03-03 19:30:05 -08001895 if (png_crc_finish(png_ptr, 0))
1896 return;
1897
1898 /* We convert the index value into RGB components so that we can allow
1899 * arbitrary RGB values for background when we have transparency, and
1900 * so it is easy to determine the RGB values of the background color
Chris Craikb50c2172013-07-29 15:28:30 -07001901 * from the info_ptr struct.
1902 */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001903 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
1904 {
Chris Craikb50c2172013-07-29 15:28:30 -07001905 background.index = buf[0];
1906
The Android Open Source Project893912b2009-03-03 19:30:05 -08001907 if (info_ptr && info_ptr->num_palette)
1908 {
Chris Craikb50c2172013-07-29 15:28:30 -07001909 if (buf[0] >= info_ptr->num_palette)
1910 {
1911 png_chunk_benign_error(png_ptr, "invalid index");
1912 return;
1913 }
1914
1915 background.red = (png_uint_16)png_ptr->palette[buf[0]].red;
1916 background.green = (png_uint_16)png_ptr->palette[buf[0]].green;
1917 background.blue = (png_uint_16)png_ptr->palette[buf[0]].blue;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001918 }
Chris Craikb50c2172013-07-29 15:28:30 -07001919
1920 else
1921 background.red = background.green = background.blue = 0;
1922
1923 background.gray = 0;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001924 }
1925
Chris Craikb50c2172013-07-29 15:28:30 -07001926 else if (!(png_ptr->color_type & PNG_COLOR_MASK_COLOR)) /* GRAY */
1927 {
1928 background.index = 0;
1929 background.red =
1930 background.green =
1931 background.blue =
1932 background.gray = png_get_uint_16(buf);
1933 }
1934
1935 else
1936 {
1937 background.index = 0;
1938 background.red = png_get_uint_16(buf);
1939 background.green = png_get_uint_16(buf + 2);
1940 background.blue = png_get_uint_16(buf + 4);
1941 background.gray = 0;
1942 }
1943
1944 png_set_bKGD(png_ptr, info_ptr, &background);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001945}
1946#endif
1947
Patrick Scott5f6bd842010-06-28 16:55:16 -04001948#ifdef PNG_READ_hIST_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001949void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07001950png_handle_hIST(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001951{
1952 unsigned int num, i;
1953 png_uint_16 readbuf[PNG_MAX_PALETTE_LENGTH];
1954
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001955 png_debug(1, "in png_handle_hIST");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001956
1957 if (!(png_ptr->mode & PNG_HAVE_IHDR))
Chris Craikb50c2172013-07-29 15:28:30 -07001958 png_chunk_error(png_ptr, "missing IHDR");
1959
1960 else if ((png_ptr->mode & PNG_HAVE_IDAT) || !(png_ptr->mode & PNG_HAVE_PLTE))
The Android Open Source Project893912b2009-03-03 19:30:05 -08001961 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001962 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07001963 png_chunk_benign_error(png_ptr, "out of place");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001964 return;
1965 }
Chris Craikb50c2172013-07-29 15:28:30 -07001966
The Android Open Source Project893912b2009-03-03 19:30:05 -08001967 else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_hIST))
1968 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001969 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07001970 png_chunk_benign_error(png_ptr, "duplicate");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001971 return;
1972 }
1973
1974 num = length / 2 ;
Chris Craikb50c2172013-07-29 15:28:30 -07001975
1976 if (num != png_ptr->num_palette || num > PNG_MAX_PALETTE_LENGTH)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001977 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001978 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07001979 png_chunk_benign_error(png_ptr, "invalid");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001980 return;
1981 }
1982
1983 for (i = 0; i < num; i++)
1984 {
1985 png_byte buf[2];
1986
1987 png_crc_read(png_ptr, buf, 2);
1988 readbuf[i] = png_get_uint_16(buf);
1989 }
1990
1991 if (png_crc_finish(png_ptr, 0))
1992 return;
1993
1994 png_set_hIST(png_ptr, info_ptr, readbuf);
1995}
1996#endif
1997
Patrick Scott5f6bd842010-06-28 16:55:16 -04001998#ifdef PNG_READ_pHYs_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001999void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07002000png_handle_pHYs(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002001{
2002 png_byte buf[9];
2003 png_uint_32 res_x, res_y;
2004 int unit_type;
2005
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002006 png_debug(1, "in png_handle_pHYs");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002007
2008 if (!(png_ptr->mode & PNG_HAVE_IHDR))
Chris Craikb50c2172013-07-29 15:28:30 -07002009 png_chunk_error(png_ptr, "missing IHDR");
2010
The Android Open Source Project893912b2009-03-03 19:30:05 -08002011 else if (png_ptr->mode & PNG_HAVE_IDAT)
2012 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08002013 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07002014 png_chunk_benign_error(png_ptr, "out of place");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002015 return;
2016 }
Chris Craikb50c2172013-07-29 15:28:30 -07002017
The Android Open Source Project893912b2009-03-03 19:30:05 -08002018 else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_pHYs))
2019 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08002020 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07002021 png_chunk_benign_error(png_ptr, "duplicate");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002022 return;
2023 }
2024
2025 if (length != 9)
2026 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08002027 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07002028 png_chunk_benign_error(png_ptr, "invalid");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002029 return;
2030 }
2031
2032 png_crc_read(png_ptr, buf, 9);
Chris Craikb50c2172013-07-29 15:28:30 -07002033
The Android Open Source Project893912b2009-03-03 19:30:05 -08002034 if (png_crc_finish(png_ptr, 0))
2035 return;
2036
2037 res_x = png_get_uint_32(buf);
2038 res_y = png_get_uint_32(buf + 4);
2039 unit_type = buf[8];
2040 png_set_pHYs(png_ptr, info_ptr, res_x, res_y, unit_type);
2041}
2042#endif
2043
Patrick Scott5f6bd842010-06-28 16:55:16 -04002044#ifdef PNG_READ_oFFs_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08002045void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07002046png_handle_oFFs(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002047{
2048 png_byte buf[9];
2049 png_int_32 offset_x, offset_y;
2050 int unit_type;
2051
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002052 png_debug(1, "in png_handle_oFFs");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002053
2054 if (!(png_ptr->mode & PNG_HAVE_IHDR))
Chris Craikb50c2172013-07-29 15:28:30 -07002055 png_chunk_error(png_ptr, "missing IHDR");
2056
The Android Open Source Project893912b2009-03-03 19:30:05 -08002057 else if (png_ptr->mode & PNG_HAVE_IDAT)
2058 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08002059 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07002060 png_chunk_benign_error(png_ptr, "out of place");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002061 return;
2062 }
Chris Craikb50c2172013-07-29 15:28:30 -07002063
The Android Open Source Project893912b2009-03-03 19:30:05 -08002064 else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_oFFs))
2065 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08002066 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07002067 png_chunk_benign_error(png_ptr, "duplicate");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002068 return;
2069 }
2070
2071 if (length != 9)
2072 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08002073 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07002074 png_chunk_benign_error(png_ptr, "invalid");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002075 return;
2076 }
2077
2078 png_crc_read(png_ptr, buf, 9);
Chris Craikb50c2172013-07-29 15:28:30 -07002079
The Android Open Source Project893912b2009-03-03 19:30:05 -08002080 if (png_crc_finish(png_ptr, 0))
2081 return;
2082
2083 offset_x = png_get_int_32(buf);
2084 offset_y = png_get_int_32(buf + 4);
2085 unit_type = buf[8];
2086 png_set_oFFs(png_ptr, info_ptr, offset_x, offset_y, unit_type);
2087}
2088#endif
2089
Patrick Scott5f6bd842010-06-28 16:55:16 -04002090#ifdef PNG_READ_pCAL_SUPPORTED
Patrick Scotta0bb96c2009-07-22 11:50:02 -04002091/* Read the pCAL chunk (described in the PNG Extensions document) */
The Android Open Source Project893912b2009-03-03 19:30:05 -08002092void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07002093png_handle_pCAL(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002094{
The Android Open Source Project893912b2009-03-03 19:30:05 -08002095 png_int_32 X0, X1;
2096 png_byte type, nparams;
Chris Craikb50c2172013-07-29 15:28:30 -07002097 png_bytep buffer, buf, units, endptr;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002098 png_charpp params;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002099 int i;
2100
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002101 png_debug(1, "in png_handle_pCAL");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002102
2103 if (!(png_ptr->mode & PNG_HAVE_IHDR))
Chris Craikb50c2172013-07-29 15:28:30 -07002104 png_chunk_error(png_ptr, "missing IHDR");
2105
The Android Open Source Project893912b2009-03-03 19:30:05 -08002106 else if (png_ptr->mode & PNG_HAVE_IDAT)
2107 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08002108 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07002109 png_chunk_benign_error(png_ptr, "out of place");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002110 return;
2111 }
Chris Craikb50c2172013-07-29 15:28:30 -07002112
The Android Open Source Project893912b2009-03-03 19:30:05 -08002113 else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_pCAL))
2114 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08002115 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07002116 png_chunk_benign_error(png_ptr, "duplicate");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002117 return;
2118 }
2119
Chris Craikb50c2172013-07-29 15:28:30 -07002120 png_debug1(2, "Allocating and reading pCAL chunk data (%u bytes)",
2121 length + 1);
2122
2123 buffer = png_read_buffer(png_ptr, length+1, 2/*silent*/);
2124
2125 if (buffer == NULL)
2126 {
2127 png_crc_finish(png_ptr, length);
2128 png_chunk_benign_error(png_ptr, "out of memory");
2129 return;
2130 }
2131
2132 png_crc_read(png_ptr, buffer, length);
The Android Open Source Project893912b2009-03-03 19:30:05 -08002133
2134 if (png_crc_finish(png_ptr, 0))
The Android Open Source Project893912b2009-03-03 19:30:05 -08002135 return;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002136
Chris Craikb50c2172013-07-29 15:28:30 -07002137 buffer[length] = 0; /* Null terminate the last string */
The Android Open Source Project893912b2009-03-03 19:30:05 -08002138
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002139 png_debug(3, "Finding end of pCAL purpose string");
Chris Craikb50c2172013-07-29 15:28:30 -07002140 for (buf = buffer; *buf; buf++)
Patrick Scotta0bb96c2009-07-22 11:50:02 -04002141 /* Empty loop */ ;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002142
Chris Craikb50c2172013-07-29 15:28:30 -07002143 endptr = buffer + length;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002144
2145 /* We need to have at least 12 bytes after the purpose string
Chris Craikb50c2172013-07-29 15:28:30 -07002146 * in order to get the parameter information.
2147 */
The Android Open Source Project893912b2009-03-03 19:30:05 -08002148 if (endptr <= buf + 12)
2149 {
Chris Craikb50c2172013-07-29 15:28:30 -07002150 png_chunk_benign_error(png_ptr, "invalid");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002151 return;
2152 }
2153
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002154 png_debug(3, "Reading pCAL X0, X1, type, nparams, and units");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002155 X0 = png_get_int_32((png_bytep)buf+1);
2156 X1 = png_get_int_32((png_bytep)buf+5);
2157 type = buf[9];
2158 nparams = buf[10];
2159 units = buf + 11;
2160
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002161 png_debug(3, "Checking pCAL equation type and number of parameters");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002162 /* Check that we have the right number of parameters for known
Chris Craikb50c2172013-07-29 15:28:30 -07002163 * equation types.
2164 */
The Android Open Source Project893912b2009-03-03 19:30:05 -08002165 if ((type == PNG_EQUATION_LINEAR && nparams != 2) ||
2166 (type == PNG_EQUATION_BASE_E && nparams != 3) ||
2167 (type == PNG_EQUATION_ARBITRARY && nparams != 3) ||
2168 (type == PNG_EQUATION_HYPERBOLIC && nparams != 4))
2169 {
Chris Craikb50c2172013-07-29 15:28:30 -07002170 png_chunk_benign_error(png_ptr, "invalid parameter count");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002171 return;
2172 }
Chris Craikb50c2172013-07-29 15:28:30 -07002173
The Android Open Source Project893912b2009-03-03 19:30:05 -08002174 else if (type >= PNG_EQUATION_LAST)
2175 {
Chris Craikb50c2172013-07-29 15:28:30 -07002176 png_chunk_benign_error(png_ptr, "unrecognized equation type");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002177 }
2178
2179 for (buf = units; *buf; buf++)
2180 /* Empty loop to move past the units string. */ ;
2181
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002182 png_debug(3, "Allocating pCAL parameters array");
Chris Craikb50c2172013-07-29 15:28:30 -07002183
2184 params = png_voidcast(png_charpp, png_malloc_warn(png_ptr,
2185 nparams * (sizeof (png_charp))));
2186
The Android Open Source Project893912b2009-03-03 19:30:05 -08002187 if (params == NULL)
Chris Craikb50c2172013-07-29 15:28:30 -07002188 {
2189 png_chunk_benign_error(png_ptr, "out of memory");
2190 return;
2191 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08002192
2193 /* Get pointers to the start of each parameter string. */
Chris Craikb50c2172013-07-29 15:28:30 -07002194 for (i = 0; i < nparams; i++)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002195 {
2196 buf++; /* Skip the null string terminator from previous parameter. */
2197
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002198 png_debug1(3, "Reading pCAL parameter %d", i);
Chris Craikb50c2172013-07-29 15:28:30 -07002199
2200 for (params[i] = (png_charp)buf; buf <= endptr && *buf != 0; buf++)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002201 /* Empty loop to move past each parameter string */ ;
2202
2203 /* Make sure we haven't run out of data yet */
2204 if (buf > endptr)
2205 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08002206 png_free(png_ptr, params);
Chris Craikb50c2172013-07-29 15:28:30 -07002207 png_chunk_benign_error(png_ptr, "invalid data");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002208 return;
2209 }
2210 }
2211
Chris Craikb50c2172013-07-29 15:28:30 -07002212 png_set_pCAL(png_ptr, info_ptr, (png_charp)buffer, X0, X1, type, nparams,
2213 (png_charp)units, params);
The Android Open Source Project893912b2009-03-03 19:30:05 -08002214
The Android Open Source Project893912b2009-03-03 19:30:05 -08002215 png_free(png_ptr, params);
2216}
2217#endif
2218
Patrick Scott5f6bd842010-06-28 16:55:16 -04002219#ifdef PNG_READ_sCAL_SUPPORTED
Patrick Scotta0bb96c2009-07-22 11:50:02 -04002220/* Read the sCAL chunk */
The Android Open Source Project893912b2009-03-03 19:30:05 -08002221void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07002222png_handle_sCAL(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002223{
Chris Craikb50c2172013-07-29 15:28:30 -07002224 png_bytep buffer;
2225 png_size_t i;
2226 int state;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002227
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002228 png_debug(1, "in png_handle_sCAL");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002229
2230 if (!(png_ptr->mode & PNG_HAVE_IHDR))
Chris Craikb50c2172013-07-29 15:28:30 -07002231 png_chunk_error(png_ptr, "missing IHDR");
2232
The Android Open Source Project893912b2009-03-03 19:30:05 -08002233 else if (png_ptr->mode & PNG_HAVE_IDAT)
2234 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08002235 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07002236 png_chunk_benign_error(png_ptr, "out of place");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002237 return;
2238 }
Chris Craikb50c2172013-07-29 15:28:30 -07002239
The Android Open Source Project893912b2009-03-03 19:30:05 -08002240 else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_sCAL))
2241 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08002242 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07002243 png_chunk_benign_error(png_ptr, "duplicate");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002244 return;
2245 }
2246
Eric Vannier66dce0d2011-07-20 17:03:29 -07002247 /* Need unit type, width, \0, height: minimum 4 bytes */
2248 else if (length < 4)
2249 {
Chris Craikb50c2172013-07-29 15:28:30 -07002250 png_crc_finish(png_ptr, length);
2251 png_chunk_benign_error(png_ptr, "invalid");
2252 return;
2253 }
2254
2255 png_debug1(2, "Allocating and reading sCAL chunk data (%u bytes)",
2256 length + 1);
2257
2258 buffer = png_read_buffer(png_ptr, length+1, 2/*silent*/);
2259
2260 if (buffer == NULL)
2261 {
2262 png_chunk_benign_error(png_ptr, "out of memory");
Eric Vannier66dce0d2011-07-20 17:03:29 -07002263 png_crc_finish(png_ptr, length);
2264 return;
2265 }
2266
Chris Craikb50c2172013-07-29 15:28:30 -07002267 png_crc_read(png_ptr, buffer, length);
2268 buffer[length] = 0; /* Null terminate the last string */
The Android Open Source Project893912b2009-03-03 19:30:05 -08002269
2270 if (png_crc_finish(png_ptr, 0))
Chris Craikb50c2172013-07-29 15:28:30 -07002271 return;
2272
2273 /* Validate the unit. */
2274 if (buffer[0] != 1 && buffer[0] != 2)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002275 {
Chris Craikb50c2172013-07-29 15:28:30 -07002276 png_chunk_benign_error(png_ptr, "invalid unit");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002277 return;
2278 }
2279
Chris Craikb50c2172013-07-29 15:28:30 -07002280 /* Validate the ASCII numbers, need two ASCII numbers separated by
2281 * a '\0' and they need to fit exactly in the chunk data.
2282 */
2283 i = 1;
2284 state = 0;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002285
Chris Craikb50c2172013-07-29 15:28:30 -07002286 if (!png_check_fp_number((png_const_charp)buffer, length, &state, &i) ||
2287 i >= length || buffer[i++] != 0)
2288 png_chunk_benign_error(png_ptr, "bad width format");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002289
Chris Craikb50c2172013-07-29 15:28:30 -07002290 else if (!PNG_FP_IS_POSITIVE(state))
2291 png_chunk_benign_error(png_ptr, "non-positive width");
2292
2293 else
The Android Open Source Project893912b2009-03-03 19:30:05 -08002294 {
Chris Craikb50c2172013-07-29 15:28:30 -07002295 png_size_t heighti = i;
2296
2297 state = 0;
2298 if (!png_check_fp_number((png_const_charp)buffer, length, &state, &i) ||
2299 i != length)
2300 png_chunk_benign_error(png_ptr, "bad height format");
2301
2302 else if (!PNG_FP_IS_POSITIVE(state))
2303 png_chunk_benign_error(png_ptr, "non-positive height");
2304
2305 else
2306 /* This is the (only) success case. */
2307 png_set_sCAL_s(png_ptr, info_ptr, buffer[0],
2308 (png_charp)buffer+1, (png_charp)buffer+heighti);
The Android Open Source Project893912b2009-03-03 19:30:05 -08002309 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08002310}
2311#endif
2312
Patrick Scott5f6bd842010-06-28 16:55:16 -04002313#ifdef PNG_READ_tIME_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08002314void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07002315png_handle_tIME(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002316{
2317 png_byte buf[7];
2318 png_time mod_time;
2319
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002320 png_debug(1, "in png_handle_tIME");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002321
2322 if (!(png_ptr->mode & PNG_HAVE_IHDR))
Chris Craikb50c2172013-07-29 15:28:30 -07002323 png_chunk_error(png_ptr, "missing IHDR");
2324
The Android Open Source Project893912b2009-03-03 19:30:05 -08002325 else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_tIME))
2326 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08002327 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07002328 png_chunk_benign_error(png_ptr, "duplicate");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002329 return;
2330 }
2331
2332 if (png_ptr->mode & PNG_HAVE_IDAT)
2333 png_ptr->mode |= PNG_AFTER_IDAT;
2334
2335 if (length != 7)
2336 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08002337 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07002338 png_chunk_benign_error(png_ptr, "invalid");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002339 return;
2340 }
2341
2342 png_crc_read(png_ptr, buf, 7);
Chris Craikb50c2172013-07-29 15:28:30 -07002343
The Android Open Source Project893912b2009-03-03 19:30:05 -08002344 if (png_crc_finish(png_ptr, 0))
2345 return;
2346
2347 mod_time.second = buf[6];
2348 mod_time.minute = buf[5];
2349 mod_time.hour = buf[4];
2350 mod_time.day = buf[3];
2351 mod_time.month = buf[2];
2352 mod_time.year = png_get_uint_16(buf);
2353
2354 png_set_tIME(png_ptr, info_ptr, &mod_time);
2355}
2356#endif
2357
Patrick Scott5f6bd842010-06-28 16:55:16 -04002358#ifdef PNG_READ_tEXt_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08002359/* Note: this does not properly handle chunks that are > 64K under DOS */
2360void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07002361png_handle_tEXt(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002362{
Chris Craikb50c2172013-07-29 15:28:30 -07002363 png_text text_info;
2364 png_bytep buffer;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002365 png_charp key;
2366 png_charp text;
2367 png_uint_32 skip = 0;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002368
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002369 png_debug(1, "in png_handle_tEXt");
2370
Patrick Scott5f6bd842010-06-28 16:55:16 -04002371#ifdef PNG_USER_LIMITS_SUPPORTED
2372 if (png_ptr->user_chunk_cache_max != 0)
2373 {
2374 if (png_ptr->user_chunk_cache_max == 1)
2375 {
2376 png_crc_finish(png_ptr, length);
2377 return;
2378 }
Chris Craikb50c2172013-07-29 15:28:30 -07002379
Patrick Scott5f6bd842010-06-28 16:55:16 -04002380 if (--png_ptr->user_chunk_cache_max == 1)
2381 {
Patrick Scott5f6bd842010-06-28 16:55:16 -04002382 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07002383 png_chunk_benign_error(png_ptr, "no space in chunk cache");
Patrick Scott5f6bd842010-06-28 16:55:16 -04002384 return;
2385 }
2386 }
2387#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -08002388
2389 if (!(png_ptr->mode & PNG_HAVE_IHDR))
Chris Craikb50c2172013-07-29 15:28:30 -07002390 png_chunk_error(png_ptr, "missing IHDR");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002391
2392 if (png_ptr->mode & PNG_HAVE_IDAT)
2393 png_ptr->mode |= PNG_AFTER_IDAT;
2394
2395#ifdef PNG_MAX_MALLOC_64K
Chris Craikb50c2172013-07-29 15:28:30 -07002396 if (length > 65535U)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002397 {
Chris Craikb50c2172013-07-29 15:28:30 -07002398 png_crc_finish(png_ptr, length);
2399 png_chunk_benign_error(png_ptr, "too large to fit in memory");
2400 return;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002401 }
2402#endif
2403
Chris Craikb50c2172013-07-29 15:28:30 -07002404 buffer = png_read_buffer(png_ptr, length+1, 1/*warn*/);
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002405
Chris Craikb50c2172013-07-29 15:28:30 -07002406 if (buffer == NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002407 {
Chris Craikb50c2172013-07-29 15:28:30 -07002408 png_chunk_benign_error(png_ptr, "out of memory");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002409 return;
2410 }
Chris Craikb50c2172013-07-29 15:28:30 -07002411
2412 png_crc_read(png_ptr, buffer, length);
The Android Open Source Project893912b2009-03-03 19:30:05 -08002413
2414 if (png_crc_finish(png_ptr, skip))
The Android Open Source Project893912b2009-03-03 19:30:05 -08002415 return;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002416
Chris Craikb50c2172013-07-29 15:28:30 -07002417 key = (png_charp)buffer;
2418 key[length] = 0;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002419
2420 for (text = key; *text; text++)
Patrick Scotta0bb96c2009-07-22 11:50:02 -04002421 /* Empty loop to find end of key */ ;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002422
Chris Craikb50c2172013-07-29 15:28:30 -07002423 if (text != key + length)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002424 text++;
2425
Chris Craikb50c2172013-07-29 15:28:30 -07002426 text_info.compression = PNG_TEXT_COMPRESSION_NONE;
2427 text_info.key = key;
2428 text_info.lang = NULL;
2429 text_info.lang_key = NULL;
2430 text_info.itxt_length = 0;
2431 text_info.text = text;
2432 text_info.text_length = strlen(text);
The Android Open Source Project893912b2009-03-03 19:30:05 -08002433
Chris Craikb50c2172013-07-29 15:28:30 -07002434 if (png_set_text_2(png_ptr, info_ptr, &text_info, 1))
2435 png_warning(png_ptr, "Insufficient memory to process text chunk");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002436}
2437#endif
2438
Patrick Scott5f6bd842010-06-28 16:55:16 -04002439#ifdef PNG_READ_zTXt_SUPPORTED
Patrick Scotta0bb96c2009-07-22 11:50:02 -04002440/* Note: this does not correctly handle chunks that are > 64K under DOS */
The Android Open Source Project893912b2009-03-03 19:30:05 -08002441void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07002442png_handle_zTXt(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002443{
Chris Craikb50c2172013-07-29 15:28:30 -07002444 png_const_charp errmsg = NULL;
2445 png_bytep buffer;
2446 png_uint_32 keyword_length;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002447
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002448 png_debug(1, "in png_handle_zTXt");
2449
Patrick Scott5f6bd842010-06-28 16:55:16 -04002450#ifdef PNG_USER_LIMITS_SUPPORTED
2451 if (png_ptr->user_chunk_cache_max != 0)
2452 {
2453 if (png_ptr->user_chunk_cache_max == 1)
2454 {
2455 png_crc_finish(png_ptr, length);
2456 return;
2457 }
Chris Craikb50c2172013-07-29 15:28:30 -07002458
Patrick Scott5f6bd842010-06-28 16:55:16 -04002459 if (--png_ptr->user_chunk_cache_max == 1)
2460 {
Patrick Scott5f6bd842010-06-28 16:55:16 -04002461 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07002462 png_chunk_benign_error(png_ptr, "no space in chunk cache");
Patrick Scott5f6bd842010-06-28 16:55:16 -04002463 return;
2464 }
2465 }
2466#endif
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002467
The Android Open Source Project893912b2009-03-03 19:30:05 -08002468 if (!(png_ptr->mode & PNG_HAVE_IHDR))
Chris Craikb50c2172013-07-29 15:28:30 -07002469 png_chunk_error(png_ptr, "missing IHDR");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002470
2471 if (png_ptr->mode & PNG_HAVE_IDAT)
2472 png_ptr->mode |= PNG_AFTER_IDAT;
2473
Chris Craikb50c2172013-07-29 15:28:30 -07002474 buffer = png_read_buffer(png_ptr, length, 2/*silent*/);
The Android Open Source Project893912b2009-03-03 19:30:05 -08002475
Chris Craikb50c2172013-07-29 15:28:30 -07002476 if (buffer == NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002477 {
Chris Craikb50c2172013-07-29 15:28:30 -07002478 png_crc_finish(png_ptr, length);
2479 png_chunk_benign_error(png_ptr, "out of memory");
2480 return;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002481 }
Chris Craikb50c2172013-07-29 15:28:30 -07002482
2483 png_crc_read(png_ptr, buffer, length);
2484
The Android Open Source Project893912b2009-03-03 19:30:05 -08002485 if (png_crc_finish(png_ptr, 0))
The Android Open Source Project893912b2009-03-03 19:30:05 -08002486 return;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002487
Chris Craikb50c2172013-07-29 15:28:30 -07002488 /* TODO: also check that the keyword contents match the spec! */
2489 for (keyword_length = 0;
2490 keyword_length < length && buffer[keyword_length] != 0;
2491 ++keyword_length)
2492 /* Empty loop to find end of name */ ;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002493
Chris Craikb50c2172013-07-29 15:28:30 -07002494 if (keyword_length > 79 || keyword_length < 1)
2495 errmsg = "bad keyword";
The Android Open Source Project893912b2009-03-03 19:30:05 -08002496
Chris Craikb50c2172013-07-29 15:28:30 -07002497 /* zTXt must have some LZ data after the keyword, although it may expand to
2498 * zero bytes; we need a '\0' at the end of the keyword, the compression type
2499 * then the LZ data:
2500 */
2501 else if (keyword_length + 3 > length)
2502 errmsg = "truncated";
2503
2504 else if (buffer[keyword_length+1] != PNG_COMPRESSION_TYPE_BASE)
2505 errmsg = "unknown compression type";
2506
The Android Open Source Project893912b2009-03-03 19:30:05 -08002507 else
2508 {
Chris Craikb50c2172013-07-29 15:28:30 -07002509 png_alloc_size_t uncompressed_length = PNG_SIZE_MAX;
2510
2511 /* TODO: at present png_decompress_chunk imposes a single application
2512 * level memory limit, this should be split to different values for iCCP
2513 * and text chunks.
2514 */
2515 if (png_decompress_chunk(png_ptr, length, keyword_length+2,
2516 &uncompressed_length, 1/*terminate*/) == Z_STREAM_END)
2517 {
2518 png_text text;
2519
2520 /* It worked; png_ptr->read_buffer now looks like a tEXt chunk except
2521 * for the extra compression type byte and the fact that it isn't
2522 * necessarily '\0' terminated.
2523 */
2524 buffer = png_ptr->read_buffer;
2525 buffer[uncompressed_length+(keyword_length+2)] = 0;
2526
2527 text.compression = PNG_TEXT_COMPRESSION_zTXt;
2528 text.key = (png_charp)buffer;
2529 text.text = (png_charp)(buffer + keyword_length+2);
2530 text.text_length = uncompressed_length;
2531 text.itxt_length = 0;
2532 text.lang = NULL;
2533 text.lang_key = NULL;
2534
2535 if (png_set_text_2(png_ptr, info_ptr, &text, 1))
2536 errmsg = "insufficient memory";
2537 }
2538
2539 else
2540 errmsg = png_ptr->zstream.msg;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002541 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08002542
Chris Craikb50c2172013-07-29 15:28:30 -07002543 if (errmsg != NULL)
2544 png_chunk_benign_error(png_ptr, errmsg);
The Android Open Source Project893912b2009-03-03 19:30:05 -08002545}
2546#endif
2547
Patrick Scott5f6bd842010-06-28 16:55:16 -04002548#ifdef PNG_READ_iTXt_SUPPORTED
Patrick Scotta0bb96c2009-07-22 11:50:02 -04002549/* Note: this does not correctly handle chunks that are > 64K under DOS */
The Android Open Source Project893912b2009-03-03 19:30:05 -08002550void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07002551png_handle_iTXt(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002552{
Chris Craikb50c2172013-07-29 15:28:30 -07002553 png_const_charp errmsg = NULL;
2554 png_bytep buffer;
2555 png_uint_32 prefix_length;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002556
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002557 png_debug(1, "in png_handle_iTXt");
2558
Patrick Scott5f6bd842010-06-28 16:55:16 -04002559#ifdef PNG_USER_LIMITS_SUPPORTED
2560 if (png_ptr->user_chunk_cache_max != 0)
2561 {
2562 if (png_ptr->user_chunk_cache_max == 1)
2563 {
2564 png_crc_finish(png_ptr, length);
2565 return;
2566 }
Chris Craikb50c2172013-07-29 15:28:30 -07002567
Patrick Scott5f6bd842010-06-28 16:55:16 -04002568 if (--png_ptr->user_chunk_cache_max == 1)
2569 {
Patrick Scott5f6bd842010-06-28 16:55:16 -04002570 png_crc_finish(png_ptr, length);
Chris Craikb50c2172013-07-29 15:28:30 -07002571 png_chunk_benign_error(png_ptr, "no space in chunk cache");
Patrick Scott5f6bd842010-06-28 16:55:16 -04002572 return;
2573 }
2574 }
2575#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -08002576
2577 if (!(png_ptr->mode & PNG_HAVE_IHDR))
Chris Craikb50c2172013-07-29 15:28:30 -07002578 png_chunk_error(png_ptr, "missing IHDR");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002579
2580 if (png_ptr->mode & PNG_HAVE_IDAT)
2581 png_ptr->mode |= PNG_AFTER_IDAT;
2582
Chris Craikb50c2172013-07-29 15:28:30 -07002583 buffer = png_read_buffer(png_ptr, length+1, 1/*warn*/);
The Android Open Source Project893912b2009-03-03 19:30:05 -08002584
Chris Craikb50c2172013-07-29 15:28:30 -07002585 if (buffer == NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002586 {
Chris Craikb50c2172013-07-29 15:28:30 -07002587 png_crc_finish(png_ptr, length);
2588 png_chunk_benign_error(png_ptr, "out of memory");
2589 return;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002590 }
Chris Craikb50c2172013-07-29 15:28:30 -07002591
2592 png_crc_read(png_ptr, buffer, length);
2593
The Android Open Source Project893912b2009-03-03 19:30:05 -08002594 if (png_crc_finish(png_ptr, 0))
The Android Open Source Project893912b2009-03-03 19:30:05 -08002595 return;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002596
Chris Craikb50c2172013-07-29 15:28:30 -07002597 /* First the keyword. */
2598 for (prefix_length=0;
2599 prefix_length < length && buffer[prefix_length] != 0;
2600 ++prefix_length)
Patrick Scotta0bb96c2009-07-22 11:50:02 -04002601 /* Empty loop */ ;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002602
Chris Craikb50c2172013-07-29 15:28:30 -07002603 /* Perform a basic check on the keyword length here. */
2604 if (prefix_length > 79 || prefix_length < 1)
2605 errmsg = "bad keyword";
2606
2607 /* Expect keyword, compression flag, compression type, language, translated
2608 * keyword (both may be empty but are 0 terminated) then the text, which may
2609 * be empty.
Patrick Scotta0bb96c2009-07-22 11:50:02 -04002610 */
Chris Craikb50c2172013-07-29 15:28:30 -07002611 else if (prefix_length + 5 > length)
2612 errmsg = "truncated";
The Android Open Source Project893912b2009-03-03 19:30:05 -08002613
Chris Craikb50c2172013-07-29 15:28:30 -07002614 else if (buffer[prefix_length+1] == 0 ||
2615 (buffer[prefix_length+1] == 1 &&
2616 buffer[prefix_length+2] == PNG_COMPRESSION_TYPE_BASE))
The Android Open Source Project893912b2009-03-03 19:30:05 -08002617 {
Chris Craikb50c2172013-07-29 15:28:30 -07002618 int compressed = buffer[prefix_length+1] != 0;
2619 png_uint_32 language_offset, translated_keyword_offset;
2620 png_alloc_size_t uncompressed_length = 0;
2621
2622 /* Now the language tag */
2623 prefix_length += 3;
2624 language_offset = prefix_length;
2625
2626 for (; prefix_length < length && buffer[prefix_length] != 0;
2627 ++prefix_length)
2628 /* Empty loop */ ;
2629
2630 /* WARNING: the length may be invalid here, this is checked below. */
2631 translated_keyword_offset = ++prefix_length;
2632
2633 for (; prefix_length < length && buffer[prefix_length] != 0;
2634 ++prefix_length)
2635 /* Empty loop */ ;
2636
2637 /* prefix_length should now be at the trailing '\0' of the translated
2638 * keyword, but it may already be over the end. None of this arithmetic
2639 * can overflow because chunks are at most 2^31 bytes long, but on 16-bit
2640 * systems the available allocaton may overflow.
2641 */
2642 ++prefix_length;
2643
2644 if (!compressed && prefix_length <= length)
2645 uncompressed_length = length - prefix_length;
2646
2647 else if (compressed && prefix_length < length)
2648 {
2649 uncompressed_length = PNG_SIZE_MAX;
2650
2651 /* TODO: at present png_decompress_chunk imposes a single application
2652 * level memory limit, this should be split to different values for
2653 * iCCP and text chunks.
2654 */
2655 if (png_decompress_chunk(png_ptr, length, prefix_length,
2656 &uncompressed_length, 1/*terminate*/) == Z_STREAM_END)
2657 buffer = png_ptr->read_buffer;
2658
2659 else
2660 errmsg = png_ptr->zstream.msg;
2661 }
2662
2663 else
2664 errmsg = "truncated";
2665
2666 if (errmsg == NULL)
2667 {
2668 png_text text;
2669
2670 buffer[uncompressed_length+prefix_length] = 0;
2671
2672 if (compressed)
2673 text.compression = PNG_ITXT_COMPRESSION_NONE;
2674
2675 else
2676 text.compression = PNG_ITXT_COMPRESSION_zTXt;
2677
2678 text.key = (png_charp)buffer;
2679 text.lang = (png_charp)buffer + language_offset;
2680 text.lang_key = (png_charp)buffer + translated_keyword_offset;
2681 text.text = (png_charp)buffer + prefix_length;
2682 text.text_length = 0;
2683 text.itxt_length = uncompressed_length;
2684
2685 if (png_set_text_2(png_ptr, info_ptr, &text, 1))
2686 errmsg = "insufficient memory";
2687 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08002688 }
Chris Craikb50c2172013-07-29 15:28:30 -07002689
The Android Open Source Project893912b2009-03-03 19:30:05 -08002690 else
Chris Craikb50c2172013-07-29 15:28:30 -07002691 errmsg = "bad compression info";
The Android Open Source Project893912b2009-03-03 19:30:05 -08002692
Chris Craikb50c2172013-07-29 15:28:30 -07002693 if (errmsg != NULL)
2694 png_chunk_benign_error(png_ptr, errmsg);
The Android Open Source Project893912b2009-03-03 19:30:05 -08002695}
2696#endif
2697
Chris Craikb50c2172013-07-29 15:28:30 -07002698#ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
2699/* Utility function for png_handle_unknown; set up png_ptr::unknown_chunk */
2700static int
2701png_cache_unknown_chunk(png_structrp png_ptr, png_uint_32 length)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002702{
Chris Craikb50c2172013-07-29 15:28:30 -07002703 png_alloc_size_t limit = PNG_SIZE_MAX;
2704
2705 if (png_ptr->unknown_chunk.data != NULL)
2706 {
2707 png_free(png_ptr, png_ptr->unknown_chunk.data);
2708 png_ptr->unknown_chunk.data = NULL;
2709 }
2710
2711# ifdef PNG_SET_CHUNK_MALLOC_LIMIT_SUPPORTED
2712 if (png_ptr->user_chunk_malloc_max > 0 &&
2713 png_ptr->user_chunk_malloc_max < limit)
2714 limit = png_ptr->user_chunk_malloc_max;
2715
2716# elif PNG_USER_CHUNK_MALLOC_MAX > 0
2717 if (PNG_USER_CHUNK_MALLOC_MAX < limit)
2718 limit = PNG_USER_CHUNK_MALLOC_MAX;
2719# endif
2720
2721 if (length <= limit)
2722 {
2723 PNG_CSTRING_FROM_CHUNK(png_ptr->unknown_chunk.name, png_ptr->chunk_name);
2724 /* The following is safe because of the PNG_SIZE_MAX init above */
2725 png_ptr->unknown_chunk.size = (png_size_t)length/*SAFE*/;
2726 /* 'mode' is a flag array, only the bottom four bits matter here */
2727 png_ptr->unknown_chunk.location = (png_byte)png_ptr->mode/*SAFE*/;
2728
2729 if (length == 0)
2730 png_ptr->unknown_chunk.data = NULL;
2731
2732 else
2733 {
2734 /* Do a 'warn' here - it is handled below. */
2735 png_ptr->unknown_chunk.data = png_voidcast(png_bytep,
2736 png_malloc_warn(png_ptr, length));
2737 }
2738 }
2739
2740 if (png_ptr->unknown_chunk.data == NULL && length > 0)
2741 {
2742 /* This is benign because we clean up correctly */
2743 png_crc_finish(png_ptr, length);
2744 png_chunk_benign_error(png_ptr, "unknown chunk exceeds memory limits");
2745 return 0;
2746 }
2747
2748 else
2749 {
2750 if (length > 0)
2751 png_crc_read(png_ptr, png_ptr->unknown_chunk.data, length);
2752 png_crc_finish(png_ptr, 0);
2753 return 1;
2754 }
2755}
2756#endif /* PNG_READ_UNKNOWN_CHUNKS_SUPPORTED */
2757
2758/* Handle an unknown, or known but disabled, chunk */
2759void /* PRIVATE */
2760png_handle_unknown(png_structrp png_ptr, png_inforp info_ptr,
2761 png_uint_32 length, int keep)
2762{
2763 int handled = 0; /* the chunk was handled */
The Android Open Source Project893912b2009-03-03 19:30:05 -08002764
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002765 png_debug(1, "in png_handle_unknown");
2766
Patrick Scott5f6bd842010-06-28 16:55:16 -04002767#ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
Chris Craikb50c2172013-07-29 15:28:30 -07002768 /* NOTE: this code is based on the code in libpng-1.4.12 except for fixing
2769 * the bug which meant that setting a non-default behavior for a specific
2770 * chunk would be ignored (the default was always used unless a user
2771 * callback was installed).
2772 *
2773 * 'keep' is the value from the png_chunk_unknown_handling, the setting for
2774 * this specific chunk_name, if PNG_HANDLE_AS_UNKNOWN_SUPPORTED, if not it
2775 * will always be PNG_HANDLE_CHUNK_AS_DEFAULT and it needs to be set here.
2776 * This is just an optimization to avoid multiple calls to the lookup
2777 * function.
2778 */
2779# ifndef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
2780# ifdef PNG_SET_UNKNOWN_CHUNKS_SUPPORTED
2781 keep = png_chunk_unknown_handling(png_ptr, png_ptr->chunk_name);
2782# endif
2783# endif
The Android Open Source Project893912b2009-03-03 19:30:05 -08002784
Chris Craikb50c2172013-07-29 15:28:30 -07002785 /* One of the following methods will read the chunk or skip it (at least one
2786 * of these is always defined because this is the only way to switch on
2787 * PNG_READ_UNKNOWN_CHUNKS_SUPPORTED)
2788 */
2789# ifdef PNG_READ_USER_CHUNKS_SUPPORTED
2790 /* The user callback takes precedence over the chunk keep value, but the
2791 * keep value is still required to validate a save of a critical chunk.
2792 */
2793 if (png_ptr->read_user_chunk_fn != NULL)
2794 {
2795 if (png_cache_unknown_chunk(png_ptr, length))
2796 {
2797 /* Callback to user unknown chunk handler */
2798 int ret = (*(png_ptr->read_user_chunk_fn))(png_ptr,
2799 &png_ptr->unknown_chunk);
The Android Open Source Project893912b2009-03-03 19:30:05 -08002800
Chris Craikb50c2172013-07-29 15:28:30 -07002801 /* ret is:
2802 * negative: An error occured, png_chunk_error will be called.
2803 * zero: The chunk was not handled, the chunk will be discarded
2804 * unless png_set_keep_unknown_chunks has been used to set
2805 * a 'keep' behavior for this particular chunk, in which
2806 * case that will be used. A critical chunk will cause an
2807 * error at this point unless it is to be saved.
2808 * positive: The chunk was handled, libpng will ignore/discard it.
2809 */
2810 if (ret < 0)
2811 png_chunk_error(png_ptr, "error in user chunk");
2812
2813 else if (ret == 0)
2814 {
2815 /* If the keep value is 'default' or 'never' override it, but
2816 * still error out on critical chunks unless the keep value is
2817 * 'always' While this is weird it is the behavior in 1.4.12.
2818 * A possible improvement would be to obey the value set for the
2819 * chunk, but this would be an API change that would probably
2820 * damage some applications.
2821 *
2822 * The png_app_warning below catches the case that matters, where
2823 * the application has not set specific save or ignore for this
2824 * chunk or global save or ignore.
2825 */
2826 if (keep < PNG_HANDLE_CHUNK_IF_SAFE)
2827 {
2828# ifdef PNG_SET_UNKNOWN_CHUNKS_SUPPORTED
2829 if (png_ptr->unknown_default < PNG_HANDLE_CHUNK_IF_SAFE)
2830 {
2831 png_chunk_warning(png_ptr, "Saving unknown chunk:");
2832 png_app_warning(png_ptr,
2833 "forcing save of an unhandled chunk;"
2834 " please call png_set_keep_unknown_chunks");
2835 /* with keep = PNG_HANDLE_CHUNK_IF_SAFE */
2836 }
2837# endif
2838 keep = PNG_HANDLE_CHUNK_IF_SAFE;
2839 }
2840 }
2841
2842 else /* chunk was handled */
2843 {
2844 handled = 1;
2845 /* Critical chunks can be safely discarded at this point. */
2846 keep = PNG_HANDLE_CHUNK_NEVER;
2847 }
2848 }
2849
2850 else
2851 keep = PNG_HANDLE_CHUNK_NEVER; /* insufficient memory */
2852 }
2853
2854 else
2855 /* Use the SAVE_UNKNOWN_CHUNKS code or skip the chunk */
2856# endif /* PNG_READ_USER_CHUNKS_SUPPORTED */
2857
2858# ifdef PNG_SAVE_UNKNOWN_CHUNKS_SUPPORTED
2859 {
2860 /* keep is currently just the per-chunk setting, if there was no
2861 * setting change it to the global default now (not that this may
2862 * still be AS_DEFAULT) then obtain the cache of the chunk if required,
2863 * if not simply skip the chunk.
2864 */
2865 if (keep == PNG_HANDLE_CHUNK_AS_DEFAULT)
2866 keep = png_ptr->unknown_default;
2867
2868 if (keep == PNG_HANDLE_CHUNK_ALWAYS ||
2869 (keep == PNG_HANDLE_CHUNK_IF_SAFE &&
2870 PNG_CHUNK_ANCILLARY(png_ptr->chunk_name)))
2871 {
2872 if (!png_cache_unknown_chunk(png_ptr, length))
2873 keep = PNG_HANDLE_CHUNK_NEVER;
2874 }
2875
2876 else
2877 png_crc_finish(png_ptr, length);
2878 }
2879# else
2880# ifndef PNG_READ_USER_CHUNKS_SUPPORTED
2881# error no method to support READ_UNKNOWN_CHUNKS
2882# endif
2883
2884 {
2885 /* If here there is no read callback pointer set and no support is
2886 * compiled in to just save the unknown chunks, so simply skip this
2887 * chunk. If 'keep' is something other than AS_DEFAULT or NEVER then
2888 * the app has erroneously asked for unknown chunk saving when there
2889 * is no support.
2890 */
2891 if (keep > PNG_HANDLE_CHUNK_NEVER)
2892 png_app_error(png_ptr, "no unknown chunk support available");
2893
2894 png_crc_finish(png_ptr, length);
2895 }
2896# endif
2897
2898# ifdef PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED
2899 /* Now store the chunk in the chunk list if appropriate, and if the limits
2900 * permit it.
2901 */
2902 if (keep == PNG_HANDLE_CHUNK_ALWAYS ||
2903 (keep == PNG_HANDLE_CHUNK_IF_SAFE &&
2904 PNG_CHUNK_ANCILLARY(png_ptr->chunk_name)))
2905 {
2906# ifdef PNG_USER_LIMITS_SUPPORTED
2907 switch (png_ptr->user_chunk_cache_max)
2908 {
2909 case 2:
2910 png_ptr->user_chunk_cache_max = 1;
2911 png_chunk_benign_error(png_ptr, "no space in chunk cache");
2912 /* FALL THROUGH */
2913 case 1:
2914 /* NOTE: prior to 1.6.0 this case resulted in an unknown critical
2915 * chunk being skipped, now there will be a hard error below.
2916 */
2917 break;
2918
2919 default: /* not at limit */
2920 --(png_ptr->user_chunk_cache_max);
2921 /* FALL THROUGH */
2922 case 0: /* no limit */
2923# endif /* PNG_USER_LIMITS_SUPPORTED */
2924 /* Here when the limit isn't reached or when limits are compiled
2925 * out; store the chunk.
2926 */
2927 png_set_unknown_chunks(png_ptr, info_ptr,
2928 &png_ptr->unknown_chunk, 1);
2929 handled = 1;
2930# ifdef PNG_USER_LIMITS_SUPPORTED
2931 break;
2932 }
2933# endif
2934 }
2935# else /* no store support! */
2936 PNG_UNUSED(info_ptr)
2937# error untested code (reading unknown chunks with no store support)
2938# endif
2939
2940 /* Regardless of the error handling below the cached data (if any) can be
2941 * freed now. Notice that the data is not freed if there is a png_error, but
2942 * it will be freed by destroy_read_struct.
2943 */
2944 if (png_ptr->unknown_chunk.data != NULL)
2945 png_free(png_ptr, png_ptr->unknown_chunk.data);
2946 png_ptr->unknown_chunk.data = NULL;
2947
2948#else /* !PNG_READ_UNKNOWN_CHUNKS_SUPPORTED */
2949 /* There is no support to read an unknown chunk, so just skip it. */
2950 png_crc_finish(png_ptr, length);
2951 PNG_UNUSED(info_ptr)
2952 PNG_UNUSED(keep)
2953#endif /* !PNG_READ_UNKNOWN_CHUNKS_SUPPORTED */
2954
2955 /* Check for unhandled critical chunks */
2956 if (!handled && PNG_CHUNK_CRITICAL(png_ptr->chunk_name))
2957 png_chunk_error(png_ptr, "unhandled critical chunk");
The Android Open Source Project893912b2009-03-03 19:30:05 -08002958}
2959
2960/* This function is called to verify that a chunk name is valid.
Chris Craikb50c2172013-07-29 15:28:30 -07002961 * This function can't have the "critical chunk check" incorporated
2962 * into it, since in the future we will need to be able to call user
2963 * functions to handle unknown critical chunks after we check that
2964 * the chunk name itself is valid.
2965 */
The Android Open Source Project893912b2009-03-03 19:30:05 -08002966
Chris Craikb50c2172013-07-29 15:28:30 -07002967/* Bit hacking: the test for an invalid byte in the 4 byte chunk name is:
2968 *
2969 * ((c) < 65 || (c) > 122 || ((c) > 90 && (c) < 97))
2970 */
The Android Open Source Project893912b2009-03-03 19:30:05 -08002971
2972void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07002973png_check_chunk_name(png_structrp png_ptr, png_uint_32 chunk_name)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002974{
Chris Craikb50c2172013-07-29 15:28:30 -07002975 int i;
2976
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002977 png_debug(1, "in png_check_chunk_name");
Chris Craikb50c2172013-07-29 15:28:30 -07002978
2979 for (i=1; i<=4; ++i)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002980 {
Chris Craikb50c2172013-07-29 15:28:30 -07002981 int c = chunk_name & 0xff;
2982
2983 if (c < 65 || c > 122 || (c > 90 && c < 97))
2984 png_chunk_error(png_ptr, "invalid chunk type");
2985
2986 chunk_name >>= 8;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002987 }
2988}
2989
Chris Craikb50c2172013-07-29 15:28:30 -07002990/* Combines the row recently read in with the existing pixels in the row. This
2991 * routine takes care of alpha and transparency if requested. This routine also
2992 * handles the two methods of progressive display of interlaced images,
2993 * depending on the 'display' value; if 'display' is true then the whole row
2994 * (dp) is filled from the start by replicating the available pixels. If
2995 * 'display' is false only those pixels present in the pass are filled in.
2996 */
The Android Open Source Project893912b2009-03-03 19:30:05 -08002997void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07002998png_combine_row(png_const_structrp png_ptr, png_bytep dp, int display)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002999{
Chris Craikb50c2172013-07-29 15:28:30 -07003000 unsigned int pixel_depth = png_ptr->transformed_pixel_depth;
3001 png_const_bytep sp = png_ptr->row_buf + 1;
3002 png_uint_32 row_width = png_ptr->width;
3003 unsigned int pass = png_ptr->pass;
3004 png_bytep end_ptr = 0;
3005 png_byte end_byte = 0;
3006 unsigned int end_mask;
3007
The Android Open Source Project4215dd12009-03-09 11:52:12 -07003008 png_debug(1, "in png_combine_row");
Chris Craikb50c2172013-07-29 15:28:30 -07003009
3010 /* Added in 1.5.6: it should not be possible to enter this routine until at
3011 * least one row has been read from the PNG data and transformed.
3012 */
3013 if (pixel_depth == 0)
3014 png_error(png_ptr, "internal row logic error");
3015
3016 /* Added in 1.5.4: the pixel depth should match the information returned by
3017 * any call to png_read_update_info at this point. Do not continue if we got
3018 * this wrong.
3019 */
3020 if (png_ptr->info_rowbytes != 0 && png_ptr->info_rowbytes !=
3021 PNG_ROWBYTES(pixel_depth, row_width))
3022 png_error(png_ptr, "internal row size calculation error");
3023
3024 /* Don't expect this to ever happen: */
3025 if (row_width == 0)
3026 png_error(png_ptr, "internal row width error");
3027
3028 /* Preserve the last byte in cases where only part of it will be overwritten,
3029 * the multiply below may overflow, we don't care because ANSI-C guarantees
3030 * we get the low bits.
3031 */
3032 end_mask = (pixel_depth * row_width) & 7;
3033 if (end_mask != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003034 {
Chris Craikb50c2172013-07-29 15:28:30 -07003035 /* end_ptr == NULL is a flag to say do nothing */
3036 end_ptr = dp + PNG_ROWBYTES(pixel_depth, row_width) - 1;
3037 end_byte = *end_ptr;
3038# ifdef PNG_READ_PACKSWAP_SUPPORTED
3039 if (png_ptr->transformations & PNG_PACKSWAP) /* little-endian byte */
3040 end_mask = 0xff << end_mask;
3041
3042 else /* big-endian byte */
3043# endif
3044 end_mask = 0xff >> end_mask;
3045 /* end_mask is now the bits to *keep* from the destination row */
The Android Open Source Project893912b2009-03-03 19:30:05 -08003046 }
Chris Craikb50c2172013-07-29 15:28:30 -07003047
3048 /* For non-interlaced images this reduces to a memcpy(). A memcpy()
3049 * will also happen if interlacing isn't supported or if the application
3050 * does not call png_set_interlace_handling(). In the latter cases the
3051 * caller just gets a sequence of the unexpanded rows from each interlace
3052 * pass.
3053 */
3054#ifdef PNG_READ_INTERLACING_SUPPORTED
3055 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE) &&
3056 pass < 6 && (display == 0 ||
3057 /* The following copies everything for 'display' on passes 0, 2 and 4. */
3058 (display == 1 && (pass & 1) != 0)))
The Android Open Source Project893912b2009-03-03 19:30:05 -08003059 {
Chris Craikb50c2172013-07-29 15:28:30 -07003060 /* Narrow images may have no bits in a pass; the caller should handle
3061 * this, but this test is cheap:
3062 */
3063 if (row_width <= PNG_PASS_START_COL(pass))
3064 return;
3065
3066 if (pixel_depth < 8)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003067 {
Chris Craikb50c2172013-07-29 15:28:30 -07003068 /* For pixel depths up to 4 bpp the 8-pixel mask can be expanded to fit
3069 * into 32 bits, then a single loop over the bytes using the four byte
3070 * values in the 32-bit mask can be used. For the 'display' option the
3071 * expanded mask may also not require any masking within a byte. To
3072 * make this work the PACKSWAP option must be taken into account - it
3073 * simply requires the pixels to be reversed in each byte.
3074 *
3075 * The 'regular' case requires a mask for each of the first 6 passes,
3076 * the 'display' case does a copy for the even passes in the range
3077 * 0..6. This has already been handled in the test above.
3078 *
3079 * The masks are arranged as four bytes with the first byte to use in
3080 * the lowest bits (little-endian) regardless of the order (PACKSWAP or
3081 * not) of the pixels in each byte.
3082 *
3083 * NOTE: the whole of this logic depends on the caller of this function
3084 * only calling it on rows appropriate to the pass. This function only
3085 * understands the 'x' logic; the 'y' logic is handled by the caller.
3086 *
3087 * The following defines allow generation of compile time constant bit
3088 * masks for each pixel depth and each possibility of swapped or not
3089 * swapped bytes. Pass 'p' is in the range 0..6; 'x', a pixel index,
3090 * is in the range 0..7; and the result is 1 if the pixel is to be
3091 * copied in the pass, 0 if not. 'S' is for the sparkle method, 'B'
3092 * for the block method.
3093 *
3094 * With some compilers a compile time expression of the general form:
3095 *
3096 * (shift >= 32) ? (a >> (shift-32)) : (b >> shift)
3097 *
3098 * Produces warnings with values of 'shift' in the range 33 to 63
3099 * because the right hand side of the ?: expression is evaluated by
3100 * the compiler even though it isn't used. Microsoft Visual C (various
3101 * versions) and the Intel C compiler are known to do this. To avoid
3102 * this the following macros are used in 1.5.6. This is a temporary
3103 * solution to avoid destabilizing the code during the release process.
3104 */
3105# if PNG_USE_COMPILE_TIME_MASKS
3106# define PNG_LSR(x,s) ((x)>>((s) & 0x1f))
3107# define PNG_LSL(x,s) ((x)<<((s) & 0x1f))
3108# else
3109# define PNG_LSR(x,s) ((x)>>(s))
3110# define PNG_LSL(x,s) ((x)<<(s))
3111# endif
3112# define S_COPY(p,x) (((p)<4 ? PNG_LSR(0x80088822,(3-(p))*8+(7-(x))) :\
3113 PNG_LSR(0xaa55ff00,(7-(p))*8+(7-(x)))) & 1)
3114# define B_COPY(p,x) (((p)<4 ? PNG_LSR(0xff0fff33,(3-(p))*8+(7-(x))) :\
3115 PNG_LSR(0xff55ff00,(7-(p))*8+(7-(x)))) & 1)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003116
Chris Craikb50c2172013-07-29 15:28:30 -07003117 /* Return a mask for pass 'p' pixel 'x' at depth 'd'. The mask is
3118 * little endian - the first pixel is at bit 0 - however the extra
3119 * parameter 's' can be set to cause the mask position to be swapped
3120 * within each byte, to match the PNG format. This is done by XOR of
3121 * the shift with 7, 6 or 4 for bit depths 1, 2 and 4.
3122 */
3123# define PIXEL_MASK(p,x,d,s) \
3124 (PNG_LSL(((PNG_LSL(1U,(d)))-1),(((x)*(d))^((s)?8-(d):0))))
3125
3126 /* Hence generate the appropriate 'block' or 'sparkle' pixel copy mask.
3127 */
3128# define S_MASKx(p,x,d,s) (S_COPY(p,x)?PIXEL_MASK(p,x,d,s):0)
3129# define B_MASKx(p,x,d,s) (B_COPY(p,x)?PIXEL_MASK(p,x,d,s):0)
3130
3131 /* Combine 8 of these to get the full mask. For the 1-bpp and 2-bpp
3132 * cases the result needs replicating, for the 4-bpp case the above
3133 * generates a full 32 bits.
3134 */
3135# define MASK_EXPAND(m,d) ((m)*((d)==1?0x01010101:((d)==2?0x00010001:1)))
3136
3137# define S_MASK(p,d,s) MASK_EXPAND(S_MASKx(p,0,d,s) + S_MASKx(p,1,d,s) +\
3138 S_MASKx(p,2,d,s) + S_MASKx(p,3,d,s) + S_MASKx(p,4,d,s) +\
3139 S_MASKx(p,5,d,s) + S_MASKx(p,6,d,s) + S_MASKx(p,7,d,s), d)
3140
3141# define B_MASK(p,d,s) MASK_EXPAND(B_MASKx(p,0,d,s) + B_MASKx(p,1,d,s) +\
3142 B_MASKx(p,2,d,s) + B_MASKx(p,3,d,s) + B_MASKx(p,4,d,s) +\
3143 B_MASKx(p,5,d,s) + B_MASKx(p,6,d,s) + B_MASKx(p,7,d,s), d)
3144
3145#if PNG_USE_COMPILE_TIME_MASKS
3146 /* Utility macros to construct all the masks for a depth/swap
3147 * combination. The 's' parameter says whether the format is PNG
3148 * (big endian bytes) or not. Only the three odd-numbered passes are
3149 * required for the display/block algorithm.
3150 */
3151# define S_MASKS(d,s) { S_MASK(0,d,s), S_MASK(1,d,s), S_MASK(2,d,s),\
3152 S_MASK(3,d,s), S_MASK(4,d,s), S_MASK(5,d,s) }
3153
3154# define B_MASKS(d,s) { B_MASK(1,d,s), S_MASK(3,d,s), S_MASK(5,d,s) }
3155
3156# define DEPTH_INDEX(d) ((d)==1?0:((d)==2?1:2))
3157
3158 /* Hence the pre-compiled masks indexed by PACKSWAP (or not), depth and
3159 * then pass:
3160 */
3161 static PNG_CONST png_uint_32 row_mask[2/*PACKSWAP*/][3/*depth*/][6] =
3162 {
3163 /* Little-endian byte masks for PACKSWAP */
3164 { S_MASKS(1,0), S_MASKS(2,0), S_MASKS(4,0) },
3165 /* Normal (big-endian byte) masks - PNG format */
3166 { S_MASKS(1,1), S_MASKS(2,1), S_MASKS(4,1) }
3167 };
3168
3169 /* display_mask has only three entries for the odd passes, so index by
3170 * pass>>1.
3171 */
3172 static PNG_CONST png_uint_32 display_mask[2][3][3] =
3173 {
3174 /* Little-endian byte masks for PACKSWAP */
3175 { B_MASKS(1,0), B_MASKS(2,0), B_MASKS(4,0) },
3176 /* Normal (big-endian byte) masks - PNG format */
3177 { B_MASKS(1,1), B_MASKS(2,1), B_MASKS(4,1) }
3178 };
3179
3180# define MASK(pass,depth,display,png)\
3181 ((display)?display_mask[png][DEPTH_INDEX(depth)][pass>>1]:\
3182 row_mask[png][DEPTH_INDEX(depth)][pass])
3183
3184#else /* !PNG_USE_COMPILE_TIME_MASKS */
3185 /* This is the runtime alternative: it seems unlikely that this will
3186 * ever be either smaller or faster than the compile time approach.
3187 */
3188# define MASK(pass,depth,display,png)\
3189 ((display)?B_MASK(pass,depth,png):S_MASK(pass,depth,png))
3190#endif /* !PNG_USE_COMPILE_TIME_MASKS */
3191
3192 /* Use the appropriate mask to copy the required bits. In some cases
3193 * the byte mask will be 0 or 0xff, optimize these cases. row_width is
3194 * the number of pixels, but the code copies bytes, so it is necessary
3195 * to special case the end.
3196 */
3197 png_uint_32 pixels_per_byte = 8 / pixel_depth;
3198 png_uint_32 mask;
3199
3200# ifdef PNG_READ_PACKSWAP_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08003201 if (png_ptr->transformations & PNG_PACKSWAP)
Chris Craikb50c2172013-07-29 15:28:30 -07003202 mask = MASK(pass, pixel_depth, display, 0);
3203
The Android Open Source Project893912b2009-03-03 19:30:05 -08003204 else
Chris Craikb50c2172013-07-29 15:28:30 -07003205# endif
3206 mask = MASK(pass, pixel_depth, display, 1);
The Android Open Source Project893912b2009-03-03 19:30:05 -08003207
Chris Craikb50c2172013-07-29 15:28:30 -07003208 for (;;)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003209 {
Chris Craikb50c2172013-07-29 15:28:30 -07003210 png_uint_32 m;
The Android Open Source Project893912b2009-03-03 19:30:05 -08003211
Chris Craikb50c2172013-07-29 15:28:30 -07003212 /* It doesn't matter in the following if png_uint_32 has more than
3213 * 32 bits because the high bits always match those in m<<24; it is,
3214 * however, essential to use OR here, not +, because of this.
3215 */
3216 m = mask;
3217 mask = (m >> 8) | (m << 24); /* rotate right to good compilers */
3218 m &= 0xff;
3219
3220 if (m != 0) /* something to copy */
The Android Open Source Project893912b2009-03-03 19:30:05 -08003221 {
Chris Craikb50c2172013-07-29 15:28:30 -07003222 if (m != 0xff)
3223 *dp = (png_byte)((*dp & ~m) | (*sp & m));
The Android Open Source Project893912b2009-03-03 19:30:05 -08003224 else
Chris Craikb50c2172013-07-29 15:28:30 -07003225 *dp = *sp;
The Android Open Source Project893912b2009-03-03 19:30:05 -08003226 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08003227
Chris Craikb50c2172013-07-29 15:28:30 -07003228 /* NOTE: this may overwrite the last byte with garbage if the image
3229 * is not an exact number of bytes wide; libpng has always done
3230 * this.
3231 */
3232 if (row_width <= pixels_per_byte)
3233 break; /* May need to restore part of the last byte */
The Android Open Source Project893912b2009-03-03 19:30:05 -08003234
Chris Craikb50c2172013-07-29 15:28:30 -07003235 row_width -= pixels_per_byte;
3236 ++dp;
3237 ++sp;
The Android Open Source Project893912b2009-03-03 19:30:05 -08003238 }
3239 }
Chris Craikb50c2172013-07-29 15:28:30 -07003240
3241 else /* pixel_depth >= 8 */
3242 {
3243 unsigned int bytes_to_copy, bytes_to_jump;
3244
3245 /* Validate the depth - it must be a multiple of 8 */
3246 if (pixel_depth & 7)
3247 png_error(png_ptr, "invalid user transform pixel depth");
3248
3249 pixel_depth >>= 3; /* now in bytes */
3250 row_width *= pixel_depth;
3251
3252 /* Regardless of pass number the Adam 7 interlace always results in a
3253 * fixed number of pixels to copy then to skip. There may be a
3254 * different number of pixels to skip at the start though.
3255 */
3256 {
3257 unsigned int offset = PNG_PASS_START_COL(pass) * pixel_depth;
3258
3259 row_width -= offset;
3260 dp += offset;
3261 sp += offset;
3262 }
3263
3264 /* Work out the bytes to copy. */
3265 if (display)
3266 {
3267 /* When doing the 'block' algorithm the pixel in the pass gets
3268 * replicated to adjacent pixels. This is why the even (0,2,4,6)
3269 * passes are skipped above - the entire expanded row is copied.
3270 */
3271 bytes_to_copy = (1<<((6-pass)>>1)) * pixel_depth;
3272
3273 /* But don't allow this number to exceed the actual row width. */
3274 if (bytes_to_copy > row_width)
3275 bytes_to_copy = row_width;
3276 }
3277
3278 else /* normal row; Adam7 only ever gives us one pixel to copy. */
3279 bytes_to_copy = pixel_depth;
3280
3281 /* In Adam7 there is a constant offset between where the pixels go. */
3282 bytes_to_jump = PNG_PASS_COL_OFFSET(pass) * pixel_depth;
3283
3284 /* And simply copy these bytes. Some optimization is possible here,
3285 * depending on the value of 'bytes_to_copy'. Special case the low
3286 * byte counts, which we know to be frequent.
3287 *
3288 * Notice that these cases all 'return' rather than 'break' - this
3289 * avoids an unnecessary test on whether to restore the last byte
3290 * below.
3291 */
3292 switch (bytes_to_copy)
3293 {
3294 case 1:
3295 for (;;)
3296 {
3297 *dp = *sp;
3298
3299 if (row_width <= bytes_to_jump)
3300 return;
3301
3302 dp += bytes_to_jump;
3303 sp += bytes_to_jump;
3304 row_width -= bytes_to_jump;
3305 }
3306
3307 case 2:
3308 /* There is a possibility of a partial copy at the end here; this
3309 * slows the code down somewhat.
3310 */
3311 do
3312 {
3313 dp[0] = sp[0], dp[1] = sp[1];
3314
3315 if (row_width <= bytes_to_jump)
3316 return;
3317
3318 sp += bytes_to_jump;
3319 dp += bytes_to_jump;
3320 row_width -= bytes_to_jump;
3321 }
3322 while (row_width > 1);
3323
3324 /* And there can only be one byte left at this point: */
3325 *dp = *sp;
3326 return;
3327
3328 case 3:
3329 /* This can only be the RGB case, so each copy is exactly one
3330 * pixel and it is not necessary to check for a partial copy.
3331 */
3332 for(;;)
3333 {
3334 dp[0] = sp[0], dp[1] = sp[1], dp[2] = sp[2];
3335
3336 if (row_width <= bytes_to_jump)
3337 return;
3338
3339 sp += bytes_to_jump;
3340 dp += bytes_to_jump;
3341 row_width -= bytes_to_jump;
3342 }
3343
3344 default:
3345#if PNG_ALIGN_TYPE != PNG_ALIGN_NONE
3346 /* Check for double byte alignment and, if possible, use a
3347 * 16-bit copy. Don't attempt this for narrow images - ones that
3348 * are less than an interlace panel wide. Don't attempt it for
3349 * wide bytes_to_copy either - use the memcpy there.
3350 */
3351 if (bytes_to_copy < 16 /*else use memcpy*/ &&
3352 png_isaligned(dp, png_uint_16) &&
3353 png_isaligned(sp, png_uint_16) &&
3354 bytes_to_copy % (sizeof (png_uint_16)) == 0 &&
3355 bytes_to_jump % (sizeof (png_uint_16)) == 0)
3356 {
3357 /* Everything is aligned for png_uint_16 copies, but try for
3358 * png_uint_32 first.
3359 */
3360 if (png_isaligned(dp, png_uint_32) &&
3361 png_isaligned(sp, png_uint_32) &&
3362 bytes_to_copy % (sizeof (png_uint_32)) == 0 &&
3363 bytes_to_jump % (sizeof (png_uint_32)) == 0)
3364 {
3365 png_uint_32p dp32 = png_aligncast(png_uint_32p,dp);
3366 png_const_uint_32p sp32 = png_aligncastconst(
3367 png_const_uint_32p, sp);
3368 size_t skip = (bytes_to_jump-bytes_to_copy) /
3369 (sizeof (png_uint_32));
3370
3371 do
3372 {
3373 size_t c = bytes_to_copy;
3374 do
3375 {
3376 *dp32++ = *sp32++;
3377 c -= (sizeof (png_uint_32));
3378 }
3379 while (c > 0);
3380
3381 if (row_width <= bytes_to_jump)
3382 return;
3383
3384 dp32 += skip;
3385 sp32 += skip;
3386 row_width -= bytes_to_jump;
3387 }
3388 while (bytes_to_copy <= row_width);
3389
3390 /* Get to here when the row_width truncates the final copy.
3391 * There will be 1-3 bytes left to copy, so don't try the
3392 * 16-bit loop below.
3393 */
3394 dp = (png_bytep)dp32;
3395 sp = (png_const_bytep)sp32;
3396 do
3397 *dp++ = *sp++;
3398 while (--row_width > 0);
3399 return;
3400 }
3401
3402 /* Else do it in 16-bit quantities, but only if the size is
3403 * not too large.
3404 */
3405 else
3406 {
3407 png_uint_16p dp16 = png_aligncast(png_uint_16p, dp);
3408 png_const_uint_16p sp16 = png_aligncastconst(
3409 png_const_uint_16p, sp);
3410 size_t skip = (bytes_to_jump-bytes_to_copy) /
3411 (sizeof (png_uint_16));
3412
3413 do
3414 {
3415 size_t c = bytes_to_copy;
3416 do
3417 {
3418 *dp16++ = *sp16++;
3419 c -= (sizeof (png_uint_16));
3420 }
3421 while (c > 0);
3422
3423 if (row_width <= bytes_to_jump)
3424 return;
3425
3426 dp16 += skip;
3427 sp16 += skip;
3428 row_width -= bytes_to_jump;
3429 }
3430 while (bytes_to_copy <= row_width);
3431
3432 /* End of row - 1 byte left, bytes_to_copy > row_width: */
3433 dp = (png_bytep)dp16;
3434 sp = (png_const_bytep)sp16;
3435 do
3436 *dp++ = *sp++;
3437 while (--row_width > 0);
3438 return;
3439 }
3440 }
3441#endif /* PNG_ALIGN_ code */
3442
3443 /* The true default - use a memcpy: */
3444 for (;;)
3445 {
3446 memcpy(dp, sp, bytes_to_copy);
3447
3448 if (row_width <= bytes_to_jump)
3449 return;
3450
3451 sp += bytes_to_jump;
3452 dp += bytes_to_jump;
3453 row_width -= bytes_to_jump;
3454 if (bytes_to_copy > row_width)
3455 bytes_to_copy = row_width;
3456 }
3457 }
3458
3459 /* NOT REACHED*/
3460 } /* pixel_depth >= 8 */
3461
3462 /* Here if pixel_depth < 8 to check 'end_ptr' below. */
The Android Open Source Project893912b2009-03-03 19:30:05 -08003463 }
Chris Craikb50c2172013-07-29 15:28:30 -07003464 else
3465#endif
3466
3467 /* If here then the switch above wasn't used so just memcpy the whole row
3468 * from the temporary row buffer (notice that this overwrites the end of the
3469 * destination row if it is a partial byte.)
3470 */
3471 memcpy(dp, sp, PNG_ROWBYTES(pixel_depth, row_width));
3472
3473 /* Restore the overwritten bits from the last byte if necessary. */
3474 if (end_ptr != NULL)
3475 *end_ptr = (png_byte)((end_byte & end_mask) | (*end_ptr & ~end_mask));
The Android Open Source Project893912b2009-03-03 19:30:05 -08003476}
3477
3478#ifdef PNG_READ_INTERLACING_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08003479void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07003480png_do_read_interlace(png_row_infop row_info, png_bytep row, int pass,
3481 png_uint_32 transformations /* Because these may affect the byte layout */)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003482{
Patrick Scotta0bb96c2009-07-22 11:50:02 -04003483 /* Arrays to facilitate easy interlacing - use pass (0 - 6) as index */
3484 /* Offset to next interlace block */
Chris Craikb50c2172013-07-29 15:28:30 -07003485 static PNG_CONST int png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
The Android Open Source Project893912b2009-03-03 19:30:05 -08003486
The Android Open Source Project4215dd12009-03-09 11:52:12 -07003487 png_debug(1, "in png_do_read_interlace");
The Android Open Source Project893912b2009-03-03 19:30:05 -08003488 if (row != NULL && row_info != NULL)
3489 {
3490 png_uint_32 final_width;
3491
3492 final_width = row_info->width * png_pass_inc[pass];
3493
3494 switch (row_info->pixel_depth)
3495 {
3496 case 1:
3497 {
3498 png_bytep sp = row + (png_size_t)((row_info->width - 1) >> 3);
3499 png_bytep dp = row + (png_size_t)((final_width - 1) >> 3);
3500 int sshift, dshift;
3501 int s_start, s_end, s_inc;
3502 int jstop = png_pass_inc[pass];
3503 png_byte v;
3504 png_uint_32 i;
3505 int j;
3506
Patrick Scott5f6bd842010-06-28 16:55:16 -04003507#ifdef PNG_READ_PACKSWAP_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08003508 if (transformations & PNG_PACKSWAP)
3509 {
3510 sshift = (int)((row_info->width + 7) & 0x07);
3511 dshift = (int)((final_width + 7) & 0x07);
3512 s_start = 7;
3513 s_end = 0;
3514 s_inc = -1;
3515 }
Chris Craikb50c2172013-07-29 15:28:30 -07003516
The Android Open Source Project893912b2009-03-03 19:30:05 -08003517 else
3518#endif
3519 {
3520 sshift = 7 - (int)((row_info->width + 7) & 0x07);
3521 dshift = 7 - (int)((final_width + 7) & 0x07);
3522 s_start = 0;
3523 s_end = 7;
3524 s_inc = 1;
3525 }
3526
3527 for (i = 0; i < row_info->width; i++)
3528 {
3529 v = (png_byte)((*sp >> sshift) & 0x01);
3530 for (j = 0; j < jstop; j++)
3531 {
Chris Craikb50c2172013-07-29 15:28:30 -07003532 unsigned int tmp = *dp & (0x7f7f >> (7 - dshift));
3533 tmp |= v << dshift;
3534 *dp = (png_byte)(tmp & 0xff);
3535
The Android Open Source Project893912b2009-03-03 19:30:05 -08003536 if (dshift == s_end)
3537 {
3538 dshift = s_start;
3539 dp--;
3540 }
Chris Craikb50c2172013-07-29 15:28:30 -07003541
The Android Open Source Project893912b2009-03-03 19:30:05 -08003542 else
3543 dshift += s_inc;
3544 }
Chris Craikb50c2172013-07-29 15:28:30 -07003545
The Android Open Source Project893912b2009-03-03 19:30:05 -08003546 if (sshift == s_end)
3547 {
3548 sshift = s_start;
3549 sp--;
3550 }
Chris Craikb50c2172013-07-29 15:28:30 -07003551
The Android Open Source Project893912b2009-03-03 19:30:05 -08003552 else
3553 sshift += s_inc;
3554 }
3555 break;
3556 }
Chris Craikb50c2172013-07-29 15:28:30 -07003557
The Android Open Source Project893912b2009-03-03 19:30:05 -08003558 case 2:
3559 {
3560 png_bytep sp = row + (png_uint_32)((row_info->width - 1) >> 2);
3561 png_bytep dp = row + (png_uint_32)((final_width - 1) >> 2);
3562 int sshift, dshift;
3563 int s_start, s_end, s_inc;
3564 int jstop = png_pass_inc[pass];
3565 png_uint_32 i;
3566
Patrick Scott5f6bd842010-06-28 16:55:16 -04003567#ifdef PNG_READ_PACKSWAP_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08003568 if (transformations & PNG_PACKSWAP)
3569 {
3570 sshift = (int)(((row_info->width + 3) & 0x03) << 1);
3571 dshift = (int)(((final_width + 3) & 0x03) << 1);
3572 s_start = 6;
3573 s_end = 0;
3574 s_inc = -2;
3575 }
Chris Craikb50c2172013-07-29 15:28:30 -07003576
The Android Open Source Project893912b2009-03-03 19:30:05 -08003577 else
3578#endif
3579 {
3580 sshift = (int)((3 - ((row_info->width + 3) & 0x03)) << 1);
3581 dshift = (int)((3 - ((final_width + 3) & 0x03)) << 1);
3582 s_start = 0;
3583 s_end = 6;
3584 s_inc = 2;
3585 }
3586
3587 for (i = 0; i < row_info->width; i++)
3588 {
3589 png_byte v;
3590 int j;
3591
3592 v = (png_byte)((*sp >> sshift) & 0x03);
3593 for (j = 0; j < jstop; j++)
3594 {
Chris Craikb50c2172013-07-29 15:28:30 -07003595 unsigned int tmp = *dp & (0x3f3f >> (6 - dshift));
3596 tmp |= v << dshift;
3597 *dp = (png_byte)(tmp & 0xff);
3598
The Android Open Source Project893912b2009-03-03 19:30:05 -08003599 if (dshift == s_end)
3600 {
3601 dshift = s_start;
3602 dp--;
3603 }
Chris Craikb50c2172013-07-29 15:28:30 -07003604
The Android Open Source Project893912b2009-03-03 19:30:05 -08003605 else
3606 dshift += s_inc;
3607 }
Chris Craikb50c2172013-07-29 15:28:30 -07003608
The Android Open Source Project893912b2009-03-03 19:30:05 -08003609 if (sshift == s_end)
3610 {
3611 sshift = s_start;
3612 sp--;
3613 }
Chris Craikb50c2172013-07-29 15:28:30 -07003614
The Android Open Source Project893912b2009-03-03 19:30:05 -08003615 else
3616 sshift += s_inc;
3617 }
3618 break;
3619 }
Chris Craikb50c2172013-07-29 15:28:30 -07003620
The Android Open Source Project893912b2009-03-03 19:30:05 -08003621 case 4:
3622 {
3623 png_bytep sp = row + (png_size_t)((row_info->width - 1) >> 1);
3624 png_bytep dp = row + (png_size_t)((final_width - 1) >> 1);
3625 int sshift, dshift;
3626 int s_start, s_end, s_inc;
3627 png_uint_32 i;
3628 int jstop = png_pass_inc[pass];
3629
Patrick Scott5f6bd842010-06-28 16:55:16 -04003630#ifdef PNG_READ_PACKSWAP_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08003631 if (transformations & PNG_PACKSWAP)
3632 {
3633 sshift = (int)(((row_info->width + 1) & 0x01) << 2);
3634 dshift = (int)(((final_width + 1) & 0x01) << 2);
3635 s_start = 4;
3636 s_end = 0;
3637 s_inc = -4;
3638 }
Chris Craikb50c2172013-07-29 15:28:30 -07003639
The Android Open Source Project893912b2009-03-03 19:30:05 -08003640 else
3641#endif
3642 {
3643 sshift = (int)((1 - ((row_info->width + 1) & 0x01)) << 2);
3644 dshift = (int)((1 - ((final_width + 1) & 0x01)) << 2);
3645 s_start = 0;
3646 s_end = 4;
3647 s_inc = 4;
3648 }
3649
3650 for (i = 0; i < row_info->width; i++)
3651 {
Chris Craikb50c2172013-07-29 15:28:30 -07003652 png_byte v = (png_byte)((*sp >> sshift) & 0x0f);
The Android Open Source Project893912b2009-03-03 19:30:05 -08003653 int j;
3654
3655 for (j = 0; j < jstop; j++)
3656 {
Chris Craikb50c2172013-07-29 15:28:30 -07003657 unsigned int tmp = *dp & (0xf0f >> (4 - dshift));
3658 tmp |= v << dshift;
3659 *dp = (png_byte)(tmp & 0xff);
3660
The Android Open Source Project893912b2009-03-03 19:30:05 -08003661 if (dshift == s_end)
3662 {
3663 dshift = s_start;
3664 dp--;
3665 }
Chris Craikb50c2172013-07-29 15:28:30 -07003666
The Android Open Source Project893912b2009-03-03 19:30:05 -08003667 else
3668 dshift += s_inc;
3669 }
Chris Craikb50c2172013-07-29 15:28:30 -07003670
The Android Open Source Project893912b2009-03-03 19:30:05 -08003671 if (sshift == s_end)
3672 {
3673 sshift = s_start;
3674 sp--;
3675 }
Chris Craikb50c2172013-07-29 15:28:30 -07003676
The Android Open Source Project893912b2009-03-03 19:30:05 -08003677 else
3678 sshift += s_inc;
3679 }
3680 break;
3681 }
Chris Craikb50c2172013-07-29 15:28:30 -07003682
The Android Open Source Project893912b2009-03-03 19:30:05 -08003683 default:
3684 {
3685 png_size_t pixel_bytes = (row_info->pixel_depth >> 3);
Chris Craikb50c2172013-07-29 15:28:30 -07003686
Patrick Scott5f6bd842010-06-28 16:55:16 -04003687 png_bytep sp = row + (png_size_t)(row_info->width - 1)
3688 * pixel_bytes;
Chris Craikb50c2172013-07-29 15:28:30 -07003689
The Android Open Source Project893912b2009-03-03 19:30:05 -08003690 png_bytep dp = row + (png_size_t)(final_width - 1) * pixel_bytes;
3691
3692 int jstop = png_pass_inc[pass];
3693 png_uint_32 i;
3694
3695 for (i = 0; i < row_info->width; i++)
3696 {
Chris Craikb50c2172013-07-29 15:28:30 -07003697 png_byte v[8]; /* SAFE; pixel_depth does not exceed 64 */
The Android Open Source Project893912b2009-03-03 19:30:05 -08003698 int j;
3699
Chris Craikb50c2172013-07-29 15:28:30 -07003700 memcpy(v, sp, pixel_bytes);
3701
The Android Open Source Project893912b2009-03-03 19:30:05 -08003702 for (j = 0; j < jstop; j++)
3703 {
Chris Craikb50c2172013-07-29 15:28:30 -07003704 memcpy(dp, v, pixel_bytes);
The Android Open Source Project893912b2009-03-03 19:30:05 -08003705 dp -= pixel_bytes;
3706 }
Chris Craikb50c2172013-07-29 15:28:30 -07003707
The Android Open Source Project893912b2009-03-03 19:30:05 -08003708 sp -= pixel_bytes;
3709 }
3710 break;
3711 }
3712 }
Chris Craikb50c2172013-07-29 15:28:30 -07003713
The Android Open Source Project893912b2009-03-03 19:30:05 -08003714 row_info->width = final_width;
The Android Open Source Project4215dd12009-03-09 11:52:12 -07003715 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth, final_width);
The Android Open Source Project893912b2009-03-03 19:30:05 -08003716 }
Patrick Scott5f6bd842010-06-28 16:55:16 -04003717#ifndef PNG_READ_PACKSWAP_SUPPORTED
Chris Craikb50c2172013-07-29 15:28:30 -07003718 PNG_UNUSED(transformations) /* Silence compiler warning */
The Android Open Source Project893912b2009-03-03 19:30:05 -08003719#endif
3720}
3721#endif /* PNG_READ_INTERLACING_SUPPORTED */
3722
Chris Craikb50c2172013-07-29 15:28:30 -07003723static void
3724png_read_filter_row_sub(png_row_infop row_info, png_bytep row,
3725 png_const_bytep prev_row)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003726{
Chris Craikb50c2172013-07-29 15:28:30 -07003727 png_size_t i;
3728 png_size_t istop = row_info->rowbytes;
3729 unsigned int bpp = (row_info->pixel_depth + 7) >> 3;
3730 png_bytep rp = row + bpp;
3731
3732 PNG_UNUSED(prev_row)
3733
3734 for (i = bpp; i < istop; i++)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003735 {
Chris Craikb50c2172013-07-29 15:28:30 -07003736 *rp = (png_byte)(((int)(*rp) + (int)(*(rp-bpp))) & 0xff);
3737 rp++;
The Android Open Source Project893912b2009-03-03 19:30:05 -08003738 }
3739}
3740
Chris Craikb50c2172013-07-29 15:28:30 -07003741static void
3742png_read_filter_row_up(png_row_infop row_info, png_bytep row,
3743 png_const_bytep prev_row)
Joseph Wen4ce0ee12010-08-20 10:42:22 +08003744{
Chris Craikb50c2172013-07-29 15:28:30 -07003745 png_size_t i;
3746 png_size_t istop = row_info->rowbytes;
3747 png_bytep rp = row;
3748 png_const_bytep pp = prev_row;
Joseph Wen4ce0ee12010-08-20 10:42:22 +08003749
Chris Craikb50c2172013-07-29 15:28:30 -07003750 for (i = 0; i < istop; i++)
3751 {
3752 *rp = (png_byte)(((int)(*rp) + (int)(*pp++)) & 0xff);
3753 rp++;
3754 }
Joseph Wen4ce0ee12010-08-20 10:42:22 +08003755}
Chris Craikb50c2172013-07-29 15:28:30 -07003756
3757static void
3758png_read_filter_row_avg(png_row_infop row_info, png_bytep row,
3759 png_const_bytep prev_row)
3760{
3761 png_size_t i;
3762 png_bytep rp = row;
3763 png_const_bytep pp = prev_row;
3764 unsigned int bpp = (row_info->pixel_depth + 7) >> 3;
3765 png_size_t istop = row_info->rowbytes - bpp;
3766
3767 for (i = 0; i < bpp; i++)
3768 {
3769 *rp = (png_byte)(((int)(*rp) +
3770 ((int)(*pp++) / 2 )) & 0xff);
3771
3772 rp++;
3773 }
3774
3775 for (i = 0; i < istop; i++)
3776 {
3777 *rp = (png_byte)(((int)(*rp) +
3778 (int)(*pp++ + *(rp-bpp)) / 2 ) & 0xff);
3779
3780 rp++;
3781 }
3782}
3783
3784static void
3785png_read_filter_row_paeth_1byte_pixel(png_row_infop row_info, png_bytep row,
3786 png_const_bytep prev_row)
3787{
3788 png_bytep rp_end = row + row_info->rowbytes;
3789 int a, c;
3790
3791 /* First pixel/byte */
3792 c = *prev_row++;
3793 a = *row + c;
3794 *row++ = (png_byte)a;
3795
3796 /* Remainder */
3797 while (row < rp_end)
3798 {
3799 int b, pa, pb, pc, p;
3800
3801 a &= 0xff; /* From previous iteration or start */
3802 b = *prev_row++;
3803
3804 p = b - c;
3805 pc = a - c;
3806
3807# ifdef PNG_USE_ABS
3808 pa = abs(p);
3809 pb = abs(pc);
3810 pc = abs(p + pc);
3811# else
3812 pa = p < 0 ? -p : p;
3813 pb = pc < 0 ? -pc : pc;
3814 pc = (p + pc) < 0 ? -(p + pc) : p + pc;
3815# endif
3816
3817 /* Find the best predictor, the least of pa, pb, pc favoring the earlier
3818 * ones in the case of a tie.
3819 */
3820 if (pb < pa) pa = pb, a = b;
3821 if (pc < pa) a = c;
3822
3823 /* Calculate the current pixel in a, and move the previous row pixel to c
3824 * for the next time round the loop
3825 */
3826 c = b;
3827 a += *row;
3828 *row++ = (png_byte)a;
3829 }
3830}
3831
3832static void
3833png_read_filter_row_paeth_multibyte_pixel(png_row_infop row_info, png_bytep row,
3834 png_const_bytep prev_row)
3835{
3836 int bpp = (row_info->pixel_depth + 7) >> 3;
3837 png_bytep rp_end = row + bpp;
3838
3839 /* Process the first pixel in the row completely (this is the same as 'up'
3840 * because there is only one candidate predictor for the first row).
3841 */
3842 while (row < rp_end)
3843 {
3844 int a = *row + *prev_row++;
3845 *row++ = (png_byte)a;
3846 }
3847
3848 /* Remainder */
3849 rp_end += row_info->rowbytes - bpp;
3850
3851 while (row < rp_end)
3852 {
3853 int a, b, c, pa, pb, pc, p;
3854
3855 c = *(prev_row - bpp);
3856 a = *(row - bpp);
3857 b = *prev_row++;
3858
3859 p = b - c;
3860 pc = a - c;
3861
3862# ifdef PNG_USE_ABS
3863 pa = abs(p);
3864 pb = abs(pc);
3865 pc = abs(p + pc);
3866# else
3867 pa = p < 0 ? -p : p;
3868 pb = pc < 0 ? -pc : pc;
3869 pc = (p + pc) < 0 ? -(p + pc) : p + pc;
3870# endif
3871
3872 if (pb < pa) pa = pb, a = b;
3873 if (pc < pa) a = c;
3874
3875 c = b;
3876 a += *row;
3877 *row++ = (png_byte)a;
3878 }
3879}
3880
3881static void
3882png_init_filter_functions(png_structrp pp)
3883 /* This function is called once for every PNG image to set the
3884 * implementations required to reverse the filtering of PNG rows. Reversing
3885 * the filter is the first transformation performed on the row data. It is
3886 * performed in place, therefore an implementation can be selected based on
3887 * the image pixel format. If the implementation depends on image width then
3888 * take care to ensure that it works correctly if the image is interlaced -
3889 * interlacing causes the actual row width to vary.
3890 */
3891{
3892 unsigned int bpp = (pp->pixel_depth + 7) >> 3;
3893
3894 pp->read_filter[PNG_FILTER_VALUE_SUB-1] = png_read_filter_row_sub;
3895 pp->read_filter[PNG_FILTER_VALUE_UP-1] = png_read_filter_row_up;
3896 pp->read_filter[PNG_FILTER_VALUE_AVG-1] = png_read_filter_row_avg;
3897 if (bpp == 1)
3898 pp->read_filter[PNG_FILTER_VALUE_PAETH-1] =
3899 png_read_filter_row_paeth_1byte_pixel;
3900 else
3901 pp->read_filter[PNG_FILTER_VALUE_PAETH-1] =
3902 png_read_filter_row_paeth_multibyte_pixel;
3903
3904#ifdef PNG_FILTER_OPTIMIZATIONS
3905 /* To use this define PNG_FILTER_OPTIMIZATIONS as the name of a function to
3906 * call to install hardware optimizations for the above functions; simply
3907 * replace whatever elements of the pp->read_filter[] array with a hardware
3908 * specific (or, for that matter, generic) optimization.
3909 *
3910 * To see an example of this examine what configure.ac does when
3911 * --enable-arm-neon is specified on the command line.
3912 */
3913 PNG_FILTER_OPTIMIZATIONS(pp, bpp);
Joseph Wen4ce0ee12010-08-20 10:42:22 +08003914#endif
Chris Craikb50c2172013-07-29 15:28:30 -07003915}
3916
3917void /* PRIVATE */
3918png_read_filter_row(png_structrp pp, png_row_infop row_info, png_bytep row,
3919 png_const_bytep prev_row, int filter)
3920{
3921 /* OPTIMIZATION: DO NOT MODIFY THIS FUNCTION, instead #define
3922 * PNG_FILTER_OPTIMIZATIONS to a function that overrides the generic
3923 * implementations. See png_init_filter_functions above.
3924 */
3925 if (pp->read_filter[0] == NULL)
3926 png_init_filter_functions(pp);
3927 if (filter > PNG_FILTER_VALUE_NONE && filter < PNG_FILTER_VALUE_LAST)
3928 pp->read_filter[filter-1](row_info, row, prev_row);
3929}
Joseph Wen4ce0ee12010-08-20 10:42:22 +08003930
Patrick Scott5f6bd842010-06-28 16:55:16 -04003931#ifdef PNG_SEQUENTIAL_READ_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08003932void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07003933png_read_IDAT_data(png_structrp png_ptr, png_bytep output,
3934 png_alloc_size_t avail_out)
3935{
3936 /* Loop reading IDATs and decompressing the result into output[avail_out] */
3937 png_ptr->zstream.next_out = output;
3938 png_ptr->zstream.avail_out = 0; /* safety: set below */
3939
3940 if (output == NULL)
3941 avail_out = 0;
3942
3943 do
3944 {
3945 int ret;
3946 png_byte tmpbuf[PNG_INFLATE_BUF_SIZE];
3947
3948 if (png_ptr->zstream.avail_in == 0)
3949 {
3950 uInt avail_in;
3951 png_bytep buffer;
3952
3953 while (png_ptr->idat_size == 0)
3954 {
3955 png_crc_finish(png_ptr, 0);
3956
3957 png_ptr->idat_size = png_read_chunk_header(png_ptr);
3958 /* This is an error even in the 'check' case because the code just
3959 * consumed a non-IDAT header.
3960 */
3961 if (png_ptr->chunk_name != png_IDAT)
3962 png_error(png_ptr, "Not enough image data");
3963 }
3964
3965 avail_in = png_ptr->IDAT_read_size;
3966
3967 if (avail_in > png_ptr->idat_size)
3968 avail_in = (uInt)png_ptr->idat_size;
3969
3970 /* A PNG with a gradually increasing IDAT size will defeat this attempt
3971 * to minimize memory usage by causing lots of re-allocs, but
3972 * realistically doing IDAT_read_size re-allocs is not likely to be a
3973 * big problem.
3974 */
3975 buffer = png_read_buffer(png_ptr, avail_in, 0/*error*/);
3976
3977 png_crc_read(png_ptr, buffer, avail_in);
3978 png_ptr->idat_size -= avail_in;
3979
3980 png_ptr->zstream.next_in = buffer;
3981 png_ptr->zstream.avail_in = avail_in;
3982 }
3983
3984 /* And set up the output side. */
3985 if (output != NULL) /* standard read */
3986 {
3987 uInt out = ZLIB_IO_MAX;
3988
3989 if (out > avail_out)
3990 out = (uInt)avail_out;
3991
3992 avail_out -= out;
3993 png_ptr->zstream.avail_out = out;
3994 }
3995
3996 else /* after last row, checking for end */
3997 {
3998 png_ptr->zstream.next_out = tmpbuf;
3999 png_ptr->zstream.avail_out = (sizeof tmpbuf);
4000 }
4001
4002 /* Use NO_FLUSH; this gives zlib the maximum opportunity to optimize the
4003 * process. If the LZ stream is truncated the sequential reader will
4004 * terminally damage the stream, above, by reading the chunk header of the
4005 * following chunk (it then exits with png_error).
4006 *
4007 * TODO: deal more elegantly with truncated IDAT lists.
4008 */
4009 ret = inflate(&png_ptr->zstream, Z_NO_FLUSH);
4010
4011 /* Take the unconsumed output back. */
4012 if (output != NULL)
4013 avail_out += png_ptr->zstream.avail_out;
4014
4015 else /* avail_out counts the extra bytes */
4016 avail_out += (sizeof tmpbuf) - png_ptr->zstream.avail_out;
4017
4018 png_ptr->zstream.avail_out = 0;
4019
4020 if (ret == Z_STREAM_END)
4021 {
4022 /* Do this for safety; we won't read any more into this row. */
4023 png_ptr->zstream.next_out = NULL;
4024
4025 png_ptr->mode |= PNG_AFTER_IDAT;
4026 png_ptr->flags |= PNG_FLAG_ZSTREAM_ENDED;
4027
4028 if (png_ptr->zstream.avail_in > 0 || png_ptr->idat_size > 0)
4029 png_chunk_benign_error(png_ptr, "Extra compressed data");
4030 break;
4031 }
4032
4033 if (ret != Z_OK)
4034 {
4035 png_zstream_error(png_ptr, ret);
4036
4037 if (output != NULL)
4038 png_chunk_error(png_ptr, png_ptr->zstream.msg);
4039
4040 else /* checking */
4041 {
4042 png_chunk_benign_error(png_ptr, png_ptr->zstream.msg);
4043 return;
4044 }
4045 }
4046 } while (avail_out > 0);
4047
4048 if (avail_out > 0)
4049 {
4050 /* The stream ended before the image; this is the same as too few IDATs so
4051 * should be handled the same way.
4052 */
4053 if (output != NULL)
4054 png_error(png_ptr, "Not enough image data");
4055
4056 else /* the deflate stream contained extra data */
4057 png_chunk_benign_error(png_ptr, "Too much image data");
4058 }
4059}
4060
4061void /* PRIVATE */
4062png_read_finish_IDAT(png_structrp png_ptr)
4063{
4064 /* We don't need any more data and the stream should have ended, however the
4065 * LZ end code may actually not have been processed. In this case we must
4066 * read it otherwise stray unread IDAT data or, more likely, an IDAT chunk
4067 * may still remain to be consumed.
4068 */
4069 if (!(png_ptr->flags & PNG_FLAG_ZSTREAM_ENDED))
4070 {
4071 /* The NULL causes png_read_IDAT_data to swallow any remaining bytes in
4072 * the compressed stream, but the stream may be damaged too, so even after
4073 * this call we may need to terminate the zstream ownership.
4074 */
4075 png_read_IDAT_data(png_ptr, NULL, 0);
4076 png_ptr->zstream.next_out = NULL; /* safety */
4077
4078 /* Now clear everything out for safety; the following may not have been
4079 * done.
4080 */
4081 if (!(png_ptr->flags & PNG_FLAG_ZSTREAM_ENDED))
4082 {
4083 png_ptr->mode |= PNG_AFTER_IDAT;
4084 png_ptr->flags |= PNG_FLAG_ZSTREAM_ENDED;
4085 }
4086 }
4087
4088 /* If the zstream has not been released do it now *and* terminate the reading
4089 * of the final IDAT chunk.
4090 */
4091 if (png_ptr->zowner == png_IDAT)
4092 {
4093 /* Always do this; the pointers otherwise point into the read buffer. */
4094 png_ptr->zstream.next_in = NULL;
4095 png_ptr->zstream.avail_in = 0;
4096
4097 /* Now we no longer own the zstream. */
4098 png_ptr->zowner = 0;
4099
4100 /* The slightly weird semantics of the sequential IDAT reading is that we
4101 * are always in or at the end of an IDAT chunk, so we always need to do a
4102 * crc_finish here. If idat_size is non-zero we also need to read the
4103 * spurious bytes at the end of the chunk now.
4104 */
4105 (void)png_crc_finish(png_ptr, png_ptr->idat_size);
4106 }
4107}
4108
4109void /* PRIVATE */
4110png_read_finish_row(png_structrp png_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004111{
The Android Open Source Project893912b2009-03-03 19:30:05 -08004112#ifdef PNG_READ_INTERLACING_SUPPORTED
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004113 /* Arrays to facilitate easy interlacing - use pass (0 - 6) as index */
The Android Open Source Project893912b2009-03-03 19:30:05 -08004114
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004115 /* Start of interlace block */
Chris Craikb50c2172013-07-29 15:28:30 -07004116 static PNG_CONST png_byte png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
The Android Open Source Project893912b2009-03-03 19:30:05 -08004117
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004118 /* Offset to next interlace block */
Chris Craikb50c2172013-07-29 15:28:30 -07004119 static PNG_CONST png_byte png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
The Android Open Source Project893912b2009-03-03 19:30:05 -08004120
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004121 /* Start of interlace block in the y direction */
Chris Craikb50c2172013-07-29 15:28:30 -07004122 static PNG_CONST png_byte png_pass_ystart[7] = {0, 0, 4, 0, 2, 0, 1};
The Android Open Source Project893912b2009-03-03 19:30:05 -08004123
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004124 /* Offset to next interlace block in the y direction */
Chris Craikb50c2172013-07-29 15:28:30 -07004125 static PNG_CONST png_byte png_pass_yinc[7] = {8, 8, 8, 4, 4, 2, 2};
The Android Open Source Project893912b2009-03-03 19:30:05 -08004126#endif /* PNG_READ_INTERLACING_SUPPORTED */
The Android Open Source Project893912b2009-03-03 19:30:05 -08004127
The Android Open Source Project4215dd12009-03-09 11:52:12 -07004128 png_debug(1, "in png_read_finish_row");
The Android Open Source Project893912b2009-03-03 19:30:05 -08004129 png_ptr->row_number++;
4130 if (png_ptr->row_number < png_ptr->num_rows)
4131 return;
4132
4133#ifdef PNG_READ_INTERLACING_SUPPORTED
4134 if (png_ptr->interlaced)
4135 {
4136 png_ptr->row_number = 0;
Chris Craikb50c2172013-07-29 15:28:30 -07004137
4138 /* TO DO: don't do this if prev_row isn't needed (requires
4139 * read-ahead of the next row's filter byte.
4140 */
4141 memset(png_ptr->prev_row, 0, png_ptr->rowbytes + 1);
4142
The Android Open Source Project893912b2009-03-03 19:30:05 -08004143 do
4144 {
4145 png_ptr->pass++;
Chris Craikb50c2172013-07-29 15:28:30 -07004146
The Android Open Source Project893912b2009-03-03 19:30:05 -08004147 if (png_ptr->pass >= 7)
4148 break;
Chris Craikb50c2172013-07-29 15:28:30 -07004149
The Android Open Source Project893912b2009-03-03 19:30:05 -08004150 png_ptr->iwidth = (png_ptr->width +
4151 png_pass_inc[png_ptr->pass] - 1 -
4152 png_pass_start[png_ptr->pass]) /
4153 png_pass_inc[png_ptr->pass];
4154
The Android Open Source Project893912b2009-03-03 19:30:05 -08004155 if (!(png_ptr->transformations & PNG_INTERLACE))
4156 {
4157 png_ptr->num_rows = (png_ptr->height +
Chris Craikb50c2172013-07-29 15:28:30 -07004158 png_pass_yinc[png_ptr->pass] - 1 -
4159 png_pass_ystart[png_ptr->pass]) /
4160 png_pass_yinc[png_ptr->pass];
The Android Open Source Project893912b2009-03-03 19:30:05 -08004161 }
Chris Craikb50c2172013-07-29 15:28:30 -07004162
The Android Open Source Project893912b2009-03-03 19:30:05 -08004163 else /* if (png_ptr->transformations & PNG_INTERLACE) */
Chris Craikb50c2172013-07-29 15:28:30 -07004164 break; /* libpng deinterlacing sees every row */
4165
4166 } while (png_ptr->num_rows == 0 || png_ptr->iwidth == 0);
The Android Open Source Project893912b2009-03-03 19:30:05 -08004167
4168 if (png_ptr->pass < 7)
4169 return;
4170 }
4171#endif /* PNG_READ_INTERLACING_SUPPORTED */
4172
Chris Craikb50c2172013-07-29 15:28:30 -07004173 /* Here after at the end of the last row of the last pass. */
4174 png_read_finish_IDAT(png_ptr);
The Android Open Source Project893912b2009-03-03 19:30:05 -08004175}
Patrick Scott5f6bd842010-06-28 16:55:16 -04004176#endif /* PNG_SEQUENTIAL_READ_SUPPORTED */
The Android Open Source Project893912b2009-03-03 19:30:05 -08004177
4178void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07004179png_read_start_row(png_structrp png_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004180{
The Android Open Source Project893912b2009-03-03 19:30:05 -08004181#ifdef PNG_READ_INTERLACING_SUPPORTED
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004182 /* Arrays to facilitate easy interlacing - use pass (0 - 6) as index */
The Android Open Source Project893912b2009-03-03 19:30:05 -08004183
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004184 /* Start of interlace block */
Chris Craikb50c2172013-07-29 15:28:30 -07004185 static PNG_CONST png_byte png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
The Android Open Source Project893912b2009-03-03 19:30:05 -08004186
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004187 /* Offset to next interlace block */
Chris Craikb50c2172013-07-29 15:28:30 -07004188 static PNG_CONST png_byte png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
The Android Open Source Project893912b2009-03-03 19:30:05 -08004189
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004190 /* Start of interlace block in the y direction */
Chris Craikb50c2172013-07-29 15:28:30 -07004191 static PNG_CONST png_byte png_pass_ystart[7] = {0, 0, 4, 0, 2, 0, 1};
The Android Open Source Project893912b2009-03-03 19:30:05 -08004192
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004193 /* Offset to next interlace block in the y direction */
Chris Craikb50c2172013-07-29 15:28:30 -07004194 static PNG_CONST png_byte png_pass_yinc[7] = {8, 8, 8, 4, 4, 2, 2};
The Android Open Source Project893912b2009-03-03 19:30:05 -08004195#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -08004196
4197 int max_pixel_depth;
The Android Open Source Project4215dd12009-03-09 11:52:12 -07004198 png_size_t row_bytes;
The Android Open Source Project893912b2009-03-03 19:30:05 -08004199
The Android Open Source Project4215dd12009-03-09 11:52:12 -07004200 png_debug(1, "in png_read_start_row");
Chris Craikb50c2172013-07-29 15:28:30 -07004201
4202#ifdef PNG_READ_TRANSFORMS_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08004203 png_init_read_transformations(png_ptr);
Chris Craikb50c2172013-07-29 15:28:30 -07004204#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -08004205#ifdef PNG_READ_INTERLACING_SUPPORTED
4206 if (png_ptr->interlaced)
4207 {
4208 if (!(png_ptr->transformations & PNG_INTERLACE))
4209 png_ptr->num_rows = (png_ptr->height + png_pass_yinc[0] - 1 -
Chris Craikb50c2172013-07-29 15:28:30 -07004210 png_pass_ystart[0]) / png_pass_yinc[0];
4211
The Android Open Source Project893912b2009-03-03 19:30:05 -08004212 else
4213 png_ptr->num_rows = png_ptr->height;
4214
4215 png_ptr->iwidth = (png_ptr->width +
Chris Craikb50c2172013-07-29 15:28:30 -07004216 png_pass_inc[png_ptr->pass] - 1 -
4217 png_pass_start[png_ptr->pass]) /
4218 png_pass_inc[png_ptr->pass];
The Android Open Source Project893912b2009-03-03 19:30:05 -08004219 }
Chris Craikb50c2172013-07-29 15:28:30 -07004220
The Android Open Source Project893912b2009-03-03 19:30:05 -08004221 else
4222#endif /* PNG_READ_INTERLACING_SUPPORTED */
4223 {
4224 png_ptr->num_rows = png_ptr->height;
4225 png_ptr->iwidth = png_ptr->width;
The Android Open Source Project893912b2009-03-03 19:30:05 -08004226 }
Chris Craikb50c2172013-07-29 15:28:30 -07004227
The Android Open Source Project893912b2009-03-03 19:30:05 -08004228 max_pixel_depth = png_ptr->pixel_depth;
4229
Chris Craikb50c2172013-07-29 15:28:30 -07004230 /* WARNING: * png_read_transform_info (pngrtran.c) performs a simpliar set of
4231 * calculations to calculate the final pixel depth, then
4232 * png_do_read_transforms actually does the transforms. This means that the
4233 * code which effectively calculates this value is actually repeated in three
4234 * separate places. They must all match. Innocent changes to the order of
4235 * transformations can and will break libpng in a way that causes memory
4236 * overwrites.
4237 *
4238 * TODO: fix this.
4239 */
Patrick Scott5f6bd842010-06-28 16:55:16 -04004240#ifdef PNG_READ_PACK_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08004241 if ((png_ptr->transformations & PNG_PACK) && png_ptr->bit_depth < 8)
4242 max_pixel_depth = 8;
4243#endif
4244
Patrick Scott5f6bd842010-06-28 16:55:16 -04004245#ifdef PNG_READ_EXPAND_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08004246 if (png_ptr->transformations & PNG_EXPAND)
4247 {
4248 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
4249 {
4250 if (png_ptr->num_trans)
4251 max_pixel_depth = 32;
Chris Craikb50c2172013-07-29 15:28:30 -07004252
The Android Open Source Project893912b2009-03-03 19:30:05 -08004253 else
4254 max_pixel_depth = 24;
4255 }
Chris Craikb50c2172013-07-29 15:28:30 -07004256
The Android Open Source Project893912b2009-03-03 19:30:05 -08004257 else if (png_ptr->color_type == PNG_COLOR_TYPE_GRAY)
4258 {
4259 if (max_pixel_depth < 8)
4260 max_pixel_depth = 8;
Chris Craikb50c2172013-07-29 15:28:30 -07004261
The Android Open Source Project893912b2009-03-03 19:30:05 -08004262 if (png_ptr->num_trans)
4263 max_pixel_depth *= 2;
4264 }
Chris Craikb50c2172013-07-29 15:28:30 -07004265
The Android Open Source Project893912b2009-03-03 19:30:05 -08004266 else if (png_ptr->color_type == PNG_COLOR_TYPE_RGB)
4267 {
4268 if (png_ptr->num_trans)
4269 {
4270 max_pixel_depth *= 4;
4271 max_pixel_depth /= 3;
4272 }
4273 }
4274 }
4275#endif
4276
Chris Craikb50c2172013-07-29 15:28:30 -07004277#ifdef PNG_READ_EXPAND_16_SUPPORTED
4278 if (png_ptr->transformations & PNG_EXPAND_16)
4279 {
4280# ifdef PNG_READ_EXPAND_SUPPORTED
4281 /* In fact it is an error if it isn't supported, but checking is
4282 * the safe way.
4283 */
4284 if (png_ptr->transformations & PNG_EXPAND)
4285 {
4286 if (png_ptr->bit_depth < 16)
4287 max_pixel_depth *= 2;
4288 }
4289 else
4290# endif
4291 png_ptr->transformations &= ~PNG_EXPAND_16;
4292 }
4293#endif
4294
Patrick Scott5f6bd842010-06-28 16:55:16 -04004295#ifdef PNG_READ_FILLER_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08004296 if (png_ptr->transformations & (PNG_FILLER))
4297 {
Chris Craikb50c2172013-07-29 15:28:30 -07004298 if (png_ptr->color_type == PNG_COLOR_TYPE_GRAY)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004299 {
4300 if (max_pixel_depth <= 8)
4301 max_pixel_depth = 16;
Chris Craikb50c2172013-07-29 15:28:30 -07004302
The Android Open Source Project893912b2009-03-03 19:30:05 -08004303 else
4304 max_pixel_depth = 32;
4305 }
Chris Craikb50c2172013-07-29 15:28:30 -07004306
4307 else if (png_ptr->color_type == PNG_COLOR_TYPE_RGB ||
4308 png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004309 {
4310 if (max_pixel_depth <= 32)
4311 max_pixel_depth = 32;
Chris Craikb50c2172013-07-29 15:28:30 -07004312
The Android Open Source Project893912b2009-03-03 19:30:05 -08004313 else
4314 max_pixel_depth = 64;
4315 }
4316 }
4317#endif
4318
Patrick Scott5f6bd842010-06-28 16:55:16 -04004319#ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08004320 if (png_ptr->transformations & PNG_GRAY_TO_RGB)
4321 {
4322 if (
Patrick Scott5f6bd842010-06-28 16:55:16 -04004323#ifdef PNG_READ_EXPAND_SUPPORTED
Chris Craikb50c2172013-07-29 15:28:30 -07004324 (png_ptr->num_trans && (png_ptr->transformations & PNG_EXPAND)) ||
The Android Open Source Project893912b2009-03-03 19:30:05 -08004325#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04004326#ifdef PNG_READ_FILLER_SUPPORTED
Chris Craikb50c2172013-07-29 15:28:30 -07004327 (png_ptr->transformations & (PNG_FILLER)) ||
The Android Open Source Project893912b2009-03-03 19:30:05 -08004328#endif
Chris Craikb50c2172013-07-29 15:28:30 -07004329 png_ptr->color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004330 {
4331 if (max_pixel_depth <= 16)
4332 max_pixel_depth = 32;
Chris Craikb50c2172013-07-29 15:28:30 -07004333
The Android Open Source Project893912b2009-03-03 19:30:05 -08004334 else
4335 max_pixel_depth = 64;
4336 }
Chris Craikb50c2172013-07-29 15:28:30 -07004337
The Android Open Source Project893912b2009-03-03 19:30:05 -08004338 else
4339 {
4340 if (max_pixel_depth <= 8)
Chris Craikb50c2172013-07-29 15:28:30 -07004341 {
4342 if (png_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004343 max_pixel_depth = 32;
Chris Craikb50c2172013-07-29 15:28:30 -07004344
4345 else
The Android Open Source Project893912b2009-03-03 19:30:05 -08004346 max_pixel_depth = 24;
Chris Craikb50c2172013-07-29 15:28:30 -07004347 }
4348
The Android Open Source Project893912b2009-03-03 19:30:05 -08004349 else if (png_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA)
4350 max_pixel_depth = 64;
Chris Craikb50c2172013-07-29 15:28:30 -07004351
The Android Open Source Project893912b2009-03-03 19:30:05 -08004352 else
4353 max_pixel_depth = 48;
4354 }
4355 }
4356#endif
4357
4358#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) && \
4359defined(PNG_USER_TRANSFORM_PTR_SUPPORTED)
The Android Open Source Project4215dd12009-03-09 11:52:12 -07004360 if (png_ptr->transformations & PNG_USER_TRANSFORM)
Chris Craikb50c2172013-07-29 15:28:30 -07004361 {
4362 int user_pixel_depth = png_ptr->user_transform_depth *
The Android Open Source Project893912b2009-03-03 19:30:05 -08004363 png_ptr->user_transform_channels;
Chris Craikb50c2172013-07-29 15:28:30 -07004364
4365 if (user_pixel_depth > max_pixel_depth)
4366 max_pixel_depth = user_pixel_depth;
4367 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08004368#endif
4369
Chris Craikb50c2172013-07-29 15:28:30 -07004370 /* This value is stored in png_struct and double checked in the row read
4371 * code.
4372 */
4373 png_ptr->maximum_pixel_depth = (png_byte)max_pixel_depth;
4374 png_ptr->transformed_pixel_depth = 0; /* calculated on demand */
4375
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004376 /* Align the width on the next larger 8 pixels. Mainly used
4377 * for interlacing
4378 */
The Android Open Source Project893912b2009-03-03 19:30:05 -08004379 row_bytes = ((png_ptr->width + 7) & ~((png_uint_32)7));
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004380 /* Calculate the maximum bytes needed, adding a byte and a pixel
4381 * for safety's sake
4382 */
The Android Open Source Project4215dd12009-03-09 11:52:12 -07004383 row_bytes = PNG_ROWBYTES(max_pixel_depth, row_bytes) +
Chris Craikb50c2172013-07-29 15:28:30 -07004384 1 + ((max_pixel_depth + 7) >> 3);
4385
The Android Open Source Project893912b2009-03-03 19:30:05 -08004386#ifdef PNG_MAX_MALLOC_64K
4387 if (row_bytes > (png_uint_32)65536L)
4388 png_error(png_ptr, "This image requires a row greater than 64KB");
4389#endif
4390
Chris Craikb50c2172013-07-29 15:28:30 -07004391 if (row_bytes + 48 > png_ptr->old_big_row_buf_size)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004392 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -07004393 png_free(png_ptr, png_ptr->big_row_buf);
Chris Craikb50c2172013-07-29 15:28:30 -07004394 png_free(png_ptr, png_ptr->big_prev_row);
4395
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004396 if (png_ptr->interlaced)
Patrick Scott5f6bd842010-06-28 16:55:16 -04004397 png_ptr->big_row_buf = (png_bytep)png_calloc(png_ptr,
Chris Craikb50c2172013-07-29 15:28:30 -07004398 row_bytes + 48);
Patrick Scott5f6bd842010-06-28 16:55:16 -04004399
Chris Craikb50c2172013-07-29 15:28:30 -07004400 else
4401 png_ptr->big_row_buf = (png_bytep)png_malloc(png_ptr, row_bytes + 48);
4402
4403 png_ptr->big_prev_row = (png_bytep)png_malloc(png_ptr, row_bytes + 48);
4404
4405#ifdef PNG_ALIGNED_MEMORY_SUPPORTED
4406 /* Use 16-byte aligned memory for row_buf with at least 16 bytes
4407 * of padding before and after row_buf; treat prev_row similarly.
4408 * NOTE: the alignment is to the start of the pixels, one beyond the start
4409 * of the buffer, because of the filter byte. Prior to libpng 1.5.6 this
4410 * was incorrect; the filter byte was aligned, which had the exact
4411 * opposite effect of that intended.
4412 */
4413 {
4414 png_bytep temp = png_ptr->big_row_buf + 32;
4415 int extra = (int)((temp - (png_bytep)0) & 0x0f);
4416 png_ptr->row_buf = temp - extra - 1/*filter byte*/;
4417
4418 temp = png_ptr->big_prev_row + 32;
4419 extra = (int)((temp - (png_bytep)0) & 0x0f);
4420 png_ptr->prev_row = temp - extra - 1/*filter byte*/;
4421 }
4422
4423#else
4424 /* Use 31 bytes of padding before and 17 bytes after row_buf. */
4425 png_ptr->row_buf = png_ptr->big_row_buf + 31;
4426 png_ptr->prev_row = png_ptr->big_prev_row + 31;
4427#endif
4428 png_ptr->old_big_row_buf_size = row_bytes + 48;
The Android Open Source Project893912b2009-03-03 19:30:05 -08004429 }
4430
4431#ifdef PNG_MAX_MALLOC_64K
Chris Craikb50c2172013-07-29 15:28:30 -07004432 if (png_ptr->rowbytes > 65535)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004433 png_error(png_ptr, "This image requires a row greater than 64KB");
The Android Open Source Project893912b2009-03-03 19:30:05 -08004434
Chris Craikb50c2172013-07-29 15:28:30 -07004435#endif
4436 if (png_ptr->rowbytes > (PNG_SIZE_MAX - 1))
4437 png_error(png_ptr, "Row has too many bytes to allocate in memory");
4438
4439 memset(png_ptr->prev_row, 0, png_ptr->rowbytes + 1);
4440
4441 png_debug1(3, "width = %u,", png_ptr->width);
4442 png_debug1(3, "height = %u,", png_ptr->height);
4443 png_debug1(3, "iwidth = %u,", png_ptr->iwidth);
4444 png_debug1(3, "num_rows = %u,", png_ptr->num_rows);
4445 png_debug1(3, "rowbytes = %lu,", (unsigned long)png_ptr->rowbytes);
4446 png_debug1(3, "irowbytes = %lu",
4447 (unsigned long)PNG_ROWBYTES(png_ptr->pixel_depth, png_ptr->iwidth) + 1);
4448
4449 /* The sequential reader needs a buffer for IDAT, but the progressive reader
4450 * does not, so free the read buffer now regardless; the sequential reader
4451 * reallocates it on demand.
4452 */
4453 if (png_ptr->read_buffer)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004454 {
Chris Craikb50c2172013-07-29 15:28:30 -07004455 png_bytep buffer = png_ptr->read_buffer;
4456
4457 png_ptr->read_buffer_size = 0;
4458 png_ptr->read_buffer = NULL;
4459 png_free(png_ptr, buffer);
The Android Open Source Project893912b2009-03-03 19:30:05 -08004460 }
4461
Chris Craikb50c2172013-07-29 15:28:30 -07004462 /* Finally claim the zstream for the inflate of the IDAT data, use the bits
4463 * value from the stream (note that this will result in a fatal error if the
4464 * IDAT stream has a bogus deflate header window_bits value, but this should
4465 * not be happening any longer!)
4466 */
4467 if (png_inflate_claim(png_ptr, png_IDAT) != Z_OK)
4468 png_error(png_ptr, png_ptr->zstream.msg);
The Android Open Source Project893912b2009-03-03 19:30:05 -08004469
4470 png_ptr->flags |= PNG_FLAG_ROW_INIT;
4471}
4472#endif /* PNG_READ_SUPPORTED */