]>
Commit | Line | Data |
---|---|---|
0272a10d VZ |
1 | |
2 | /* pngrutil.c - utilities to read a PNG file | |
3 | * | |
9c0d9ce3 DS |
4 | * Last changed in libpng 1.5.6 [November 3, 2011] |
5 | * Copyright (c) 1998-2011 Glenn Randers-Pehrson | |
0272a10d VZ |
6 | * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) |
7 | * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) | |
8 | * | |
b61cc19c PC |
9 | * This code is released under the libpng license. |
10 | * For conditions of distribution and use, see the disclaimer | |
11 | * and license in png.h | |
12 | * | |
0272a10d VZ |
13 | * This file contains routines that are only called from within |
14 | * libpng itself during the course of reading an image. | |
15 | */ | |
16 | ||
b61cc19c | 17 | #include "pngpriv.h" |
0272a10d | 18 | |
9c0d9ce3 DS |
19 | #ifdef PNG_READ_SUPPORTED |
20 | ||
21 | #define png_strtod(p,a,b) strtod(a,b) | |
22 | ||
0272a10d | 23 | png_uint_32 PNGAPI |
9c0d9ce3 DS |
24 | png_get_uint_31(png_structp png_ptr, png_const_bytep buf) |
25 | { | |
26 | png_uint_32 uval = png_get_uint_32(buf); | |
27 | ||
28 | if (uval > PNG_UINT_31_MAX) | |
29 | png_error(png_ptr, "PNG unsigned integer out of range"); | |
30 | ||
31 | return (uval); | |
32 | } | |
33 | ||
34 | #if defined(PNG_READ_gAMA_SUPPORTED) || defined(PNG_READ_cHRM_SUPPORTED) | |
35 | /* The following is a variation on the above for use with the fixed | |
36 | * point values used for gAMA and cHRM. Instead of png_error it | |
37 | * issues a warning and returns (-1) - an invalid value because both | |
38 | * gAMA and cHRM use *unsigned* integers for fixed point values. | |
39 | */ | |
40 | #define PNG_FIXED_ERROR (-1) | |
41 | ||
42 | static png_fixed_point /* PRIVATE */ | |
43 | png_get_fixed_point(png_structp png_ptr, png_const_bytep buf) | |
0272a10d | 44 | { |
9c0d9ce3 DS |
45 | png_uint_32 uval = png_get_uint_32(buf); |
46 | ||
47 | if (uval <= PNG_UINT_31_MAX) | |
48 | return (png_fixed_point)uval; /* known to be in range */ | |
49 | ||
50 | /* The caller can turn off the warning by passing NULL. */ | |
51 | if (png_ptr != NULL) | |
52 | png_warning(png_ptr, "PNG fixed point integer out of range"); | |
53 | ||
54 | return PNG_FIXED_ERROR; | |
0272a10d | 55 | } |
9c0d9ce3 DS |
56 | #endif |
57 | ||
58 | #ifdef PNG_READ_INT_FUNCTIONS_SUPPORTED | |
59 | /* NOTE: the read macros will obscure these definitions, so that if | |
60 | * PNG_USE_READ_MACROS is set the library will not use them internally, | |
61 | * but the APIs will still be available externally. | |
62 | * | |
63 | * The parentheses around "PNGAPI function_name" in the following three | |
64 | * functions are necessary because they allow the macros to co-exist with | |
65 | * these (unused but exported) functions. | |
66 | */ | |
67 | ||
0272a10d | 68 | /* Grab an unsigned 32-bit integer from a buffer in big-endian format. */ |
b61cc19c | 69 | png_uint_32 (PNGAPI |
9c0d9ce3 | 70 | png_get_uint_32)(png_const_bytep buf) |
0272a10d | 71 | { |
9c0d9ce3 | 72 | png_uint_32 uval = |
b61cc19c PC |
73 | ((png_uint_32)(*(buf )) << 24) + |
74 | ((png_uint_32)(*(buf + 1)) << 16) + | |
75 | ((png_uint_32)(*(buf + 2)) << 8) + | |
76 | ((png_uint_32)(*(buf + 3)) ) ; | |
0272a10d | 77 | |
9c0d9ce3 | 78 | return uval; |
0272a10d VZ |
79 | } |
80 | ||
81 | /* Grab a signed 32-bit integer from a buffer in big-endian format. The | |
b61cc19c PC |
82 | * data is stored in the PNG file in two's complement format and there |
83 | * is no guarantee that a 'png_int_32' is exactly 32 bits, therefore | |
84 | * the following code does a two's complement to native conversion. | |
85 | */ | |
86 | png_int_32 (PNGAPI | |
9c0d9ce3 | 87 | png_get_int_32)(png_const_bytep buf) |
0272a10d | 88 | { |
9c0d9ce3 DS |
89 | png_uint_32 uval = png_get_uint_32(buf); |
90 | if ((uval & 0x80000000) == 0) /* non-negative */ | |
91 | return uval; | |
0272a10d | 92 | |
9c0d9ce3 DS |
93 | uval = (uval ^ 0xffffffff) + 1; /* 2's complement: -x = ~x+1 */ |
94 | return -(png_int_32)uval; | |
0272a10d VZ |
95 | } |
96 | ||
97 | /* Grab an unsigned 16-bit integer from a buffer in big-endian format. */ | |
b61cc19c | 98 | png_uint_16 (PNGAPI |
9c0d9ce3 DS |
99 | png_get_uint_16)(png_const_bytep buf) |
100 | { | |
101 | /* ANSI-C requires an int value to accomodate at least 16 bits so this | |
102 | * works and allows the compiler not to worry about possible narrowing | |
103 | * on 32 bit systems. (Pre-ANSI systems did not make integers smaller | |
104 | * than 16 bits either.) | |
105 | */ | |
106 | unsigned int val = | |
107 | ((unsigned int)(*buf) << 8) + | |
108 | ((unsigned int)(*(buf + 1))); | |
109 | ||
110 | return (png_uint_16)val; | |
111 | } | |
112 | ||
113 | #endif /* PNG_READ_INT_FUNCTIONS_SUPPORTED */ | |
114 | ||
115 | /* Read and check the PNG file signature */ | |
116 | void /* PRIVATE */ | |
117 | png_read_sig(png_structp png_ptr, png_infop info_ptr) | |
0272a10d | 118 | { |
9c0d9ce3 DS |
119 | png_size_t num_checked, num_to_check; |
120 | ||
121 | /* Exit if the user application does not expect a signature. */ | |
122 | if (png_ptr->sig_bytes >= 8) | |
123 | return; | |
124 | ||
125 | num_checked = png_ptr->sig_bytes; | |
126 | num_to_check = 8 - num_checked; | |
127 | ||
128 | #ifdef PNG_IO_STATE_SUPPORTED | |
129 | png_ptr->io_state = PNG_IO_READING | PNG_IO_SIGNATURE; | |
130 | #endif | |
0272a10d | 131 | |
9c0d9ce3 DS |
132 | /* The signature must be serialized in a single I/O call. */ |
133 | png_read_data(png_ptr, &(info_ptr->signature[num_checked]), num_to_check); | |
134 | png_ptr->sig_bytes = 8; | |
135 | ||
136 | if (png_sig_cmp(info_ptr->signature, num_checked, num_to_check)) | |
137 | { | |
138 | if (num_checked < 4 && | |
139 | png_sig_cmp(info_ptr->signature, num_checked, num_to_check - 4)) | |
140 | png_error(png_ptr, "Not a PNG file"); | |
141 | else | |
142 | png_error(png_ptr, "PNG file corrupted by ASCII conversion"); | |
143 | } | |
144 | if (num_checked < 3) | |
145 | png_ptr->mode |= PNG_HAVE_PNG_SIGNATURE; | |
0272a10d | 146 | } |
0272a10d | 147 | |
970f6abe VZ |
148 | /* Read the chunk header (length + type name). |
149 | * Put the type name into png_ptr->chunk_name, and return the length. | |
150 | */ | |
151 | png_uint_32 /* PRIVATE */ | |
152 | png_read_chunk_header(png_structp png_ptr) | |
153 | { | |
154 | png_byte buf[8]; | |
155 | png_uint_32 length; | |
156 | ||
b61cc19c | 157 | #ifdef PNG_IO_STATE_SUPPORTED |
b61cc19c PC |
158 | png_ptr->io_state = PNG_IO_READING | PNG_IO_CHUNK_HDR; |
159 | #endif | |
160 | ||
9c0d9ce3 DS |
161 | /* Read the length and the chunk name. |
162 | * This must be performed in a single I/O call. | |
163 | */ | |
970f6abe VZ |
164 | png_read_data(png_ptr, buf, 8); |
165 | length = png_get_uint_31(png_ptr, buf); | |
166 | ||
9c0d9ce3 DS |
167 | /* Put the chunk name into png_ptr->chunk_name. */ |
168 | png_ptr->chunk_name = PNG_CHUNK_FROM_STRING(buf+4); | |
970f6abe | 169 | |
9c0d9ce3 DS |
170 | png_debug2(0, "Reading %lx chunk, length = %lu", |
171 | (unsigned long)png_ptr->chunk_name, (unsigned long)length); | |
970f6abe | 172 | |
9c0d9ce3 | 173 | /* Reset the crc and run it over the chunk name. */ |
970f6abe | 174 | png_reset_crc(png_ptr); |
9c0d9ce3 | 175 | png_calculate_crc(png_ptr, buf + 4, 4); |
970f6abe | 176 | |
9c0d9ce3 | 177 | /* Check to see if chunk name is valid. */ |
970f6abe VZ |
178 | png_check_chunk_name(png_ptr, png_ptr->chunk_name); |
179 | ||
b61cc19c | 180 | #ifdef PNG_IO_STATE_SUPPORTED |
b61cc19c PC |
181 | png_ptr->io_state = PNG_IO_READING | PNG_IO_CHUNK_DATA; |
182 | #endif | |
183 | ||
970f6abe VZ |
184 | return length; |
185 | } | |
186 | ||
0272a10d VZ |
187 | /* Read data, and (optionally) run it through the CRC. */ |
188 | void /* PRIVATE */ | |
189 | png_crc_read(png_structp png_ptr, png_bytep buf, png_size_t length) | |
190 | { | |
b61cc19c PC |
191 | if (png_ptr == NULL) |
192 | return; | |
9c0d9ce3 | 193 | |
0272a10d VZ |
194 | png_read_data(png_ptr, buf, length); |
195 | png_calculate_crc(png_ptr, buf, length); | |
196 | } | |
197 | ||
198 | /* Optionally skip data and then check the CRC. Depending on whether we | |
b61cc19c PC |
199 | * are reading a ancillary or critical chunk, and how the program has set |
200 | * things up, we may calculate the CRC on the data and print a message. | |
201 | * Returns '1' if there was a CRC error, '0' otherwise. | |
202 | */ | |
0272a10d VZ |
203 | int /* PRIVATE */ |
204 | png_crc_finish(png_structp png_ptr, png_uint_32 skip) | |
205 | { | |
206 | png_size_t i; | |
207 | png_size_t istop = png_ptr->zbuf_size; | |
208 | ||
209 | for (i = (png_size_t)skip; i > istop; i -= istop) | |
210 | { | |
211 | png_crc_read(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size); | |
212 | } | |
9c0d9ce3 | 213 | |
0272a10d VZ |
214 | if (i) |
215 | { | |
216 | png_crc_read(png_ptr, png_ptr->zbuf, i); | |
217 | } | |
218 | ||
219 | if (png_crc_error(png_ptr)) | |
220 | { | |
9c0d9ce3 DS |
221 | if (PNG_CHUNK_ANCILLIARY(png_ptr->chunk_name) ? |
222 | !(png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_NOWARN) : | |
223 | (png_ptr->flags & PNG_FLAG_CRC_CRITICAL_USE)) | |
0272a10d VZ |
224 | { |
225 | png_chunk_warning(png_ptr, "CRC error"); | |
226 | } | |
9c0d9ce3 | 227 | |
0272a10d VZ |
228 | else |
229 | { | |
b61cc19c PC |
230 | png_chunk_benign_error(png_ptr, "CRC error"); |
231 | return (0); | |
0272a10d | 232 | } |
9c0d9ce3 | 233 | |
0272a10d VZ |
234 | return (1); |
235 | } | |
236 | ||
237 | return (0); | |
238 | } | |
239 | ||
240 | /* Compare the CRC stored in the PNG file with that calculated by libpng from | |
b61cc19c PC |
241 | * the data it has read thus far. |
242 | */ | |
0272a10d VZ |
243 | int /* PRIVATE */ |
244 | png_crc_error(png_structp png_ptr) | |
245 | { | |
246 | png_byte crc_bytes[4]; | |
247 | png_uint_32 crc; | |
248 | int need_crc = 1; | |
249 | ||
9c0d9ce3 | 250 | if (PNG_CHUNK_ANCILLIARY(png_ptr->chunk_name)) |
0272a10d VZ |
251 | { |
252 | if ((png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_MASK) == | |
253 | (PNG_FLAG_CRC_ANCILLARY_USE | PNG_FLAG_CRC_ANCILLARY_NOWARN)) | |
254 | need_crc = 0; | |
255 | } | |
9c0d9ce3 DS |
256 | |
257 | else /* critical */ | |
0272a10d VZ |
258 | { |
259 | if (png_ptr->flags & PNG_FLAG_CRC_CRITICAL_IGNORE) | |
260 | need_crc = 0; | |
261 | } | |
262 | ||
b61cc19c | 263 | #ifdef PNG_IO_STATE_SUPPORTED |
b61cc19c PC |
264 | png_ptr->io_state = PNG_IO_READING | PNG_IO_CHUNK_CRC; |
265 | #endif | |
266 | ||
9c0d9ce3 | 267 | /* The chunk CRC must be serialized in a single I/O call. */ |
0272a10d VZ |
268 | png_read_data(png_ptr, crc_bytes, 4); |
269 | ||
270 | if (need_crc) | |
271 | { | |
272 | crc = png_get_uint_32(crc_bytes); | |
273 | return ((int)(crc != png_ptr->crc)); | |
274 | } | |
9c0d9ce3 | 275 | |
0272a10d VZ |
276 | else |
277 | return (0); | |
278 | } | |
279 | ||
9c0d9ce3 | 280 | #ifdef PNG_READ_COMPRESSED_TEXT_SUPPORTED |
b61cc19c | 281 | static png_size_t |
9c0d9ce3 DS |
282 | png_inflate(png_structp png_ptr, png_bytep data, png_size_t size, |
283 | png_bytep output, png_size_t output_size) | |
0272a10d | 284 | { |
b61cc19c PC |
285 | png_size_t count = 0; |
286 | ||
9c0d9ce3 DS |
287 | /* zlib can't necessarily handle more than 65535 bytes at once (i.e. it can't |
288 | * even necessarily handle 65536 bytes) because the type uInt is "16 bits or | |
289 | * more". Consequently it is necessary to chunk the input to zlib. This | |
290 | * code uses ZLIB_IO_MAX, from pngpriv.h, as the maximum (the maximum value | |
291 | * that can be stored in a uInt.) It is possible to set ZLIB_IO_MAX to a | |
292 | * lower value in pngpriv.h and this may sometimes have a performance | |
293 | * advantage, because it forces access of the input data to be separated from | |
294 | * at least some of the use by some period of time. | |
295 | */ | |
296 | png_ptr->zstream.next_in = data; | |
297 | /* avail_in is set below from 'size' */ | |
298 | png_ptr->zstream.avail_in = 0; | |
0272a10d | 299 | |
b61cc19c | 300 | while (1) |
0272a10d | 301 | { |
b61cc19c PC |
302 | int ret, avail; |
303 | ||
9c0d9ce3 DS |
304 | /* The setting of 'avail_in' used to be outside the loop; by setting it |
305 | * inside it is possible to chunk the input to zlib and simply rely on | |
306 | * zlib to advance the 'next_in' pointer. This allows arbitrary amounts o | |
307 | * data to be passed through zlib at the unavoidable cost of requiring a | |
308 | * window save (memcpy of up to 32768 output bytes) every ZLIB_IO_MAX | |
309 | * input bytes. | |
310 | */ | |
311 | if (png_ptr->zstream.avail_in == 0 && size > 0) | |
312 | { | |
313 | if (size <= ZLIB_IO_MAX) | |
314 | { | |
315 | /* The value is less than ZLIB_IO_MAX so the cast is safe: */ | |
316 | png_ptr->zstream.avail_in = (uInt)size; | |
317 | size = 0; | |
318 | } | |
319 | ||
320 | else | |
321 | { | |
322 | png_ptr->zstream.avail_in = ZLIB_IO_MAX; | |
323 | size -= ZLIB_IO_MAX; | |
324 | } | |
325 | } | |
326 | ||
b61cc19c PC |
327 | /* Reset the output buffer each time round - we empty it |
328 | * after every inflate call. | |
329 | */ | |
0272a10d | 330 | png_ptr->zstream.next_out = png_ptr->zbuf; |
b61cc19c | 331 | png_ptr->zstream.avail_out = png_ptr->zbuf_size; |
0272a10d | 332 | |
b61cc19c PC |
333 | ret = inflate(&png_ptr->zstream, Z_NO_FLUSH); |
334 | avail = png_ptr->zbuf_size - png_ptr->zstream.avail_out; | |
0272a10d | 335 | |
b61cc19c PC |
336 | /* First copy/count any new output - but only if we didn't |
337 | * get an error code. | |
338 | */ | |
339 | if ((ret == Z_OK || ret == Z_STREAM_END) && avail > 0) | |
0272a10d | 340 | { |
9c0d9ce3 DS |
341 | png_size_t space = avail; /* > 0, see above */ |
342 | ||
b61cc19c | 343 | if (output != 0 && output_size > count) |
0272a10d | 344 | { |
9c0d9ce3 DS |
345 | png_size_t copy = output_size - count; |
346 | ||
347 | if (space < copy) | |
348 | copy = space; | |
349 | ||
b61cc19c PC |
350 | png_memcpy(output + count, png_ptr->zbuf, copy); |
351 | } | |
9c0d9ce3 | 352 | count += space; |
b61cc19c | 353 | } |
0272a10d | 354 | |
b61cc19c PC |
355 | if (ret == Z_OK) |
356 | continue; | |
0272a10d | 357 | |
b61cc19c PC |
358 | /* Termination conditions - always reset the zstream, it |
359 | * must be left in inflateInit state. | |
360 | */ | |
361 | png_ptr->zstream.avail_in = 0; | |
362 | inflateReset(&png_ptr->zstream); | |
0272a10d | 363 | |
b61cc19c PC |
364 | if (ret == Z_STREAM_END) |
365 | return count; /* NOTE: may be zero. */ | |
366 | ||
367 | /* Now handle the error codes - the API always returns 0 | |
368 | * and the error message is dumped into the uncompressed | |
369 | * buffer if available. | |
370 | */ | |
9c0d9ce3 | 371 | # ifdef PNG_WARNINGS_SUPPORTED |
b61cc19c | 372 | { |
9c0d9ce3 DS |
373 | png_const_charp msg; |
374 | ||
b61cc19c PC |
375 | if (png_ptr->zstream.msg != 0) |
376 | msg = png_ptr->zstream.msg; | |
9c0d9ce3 DS |
377 | |
378 | else switch (ret) | |
0272a10d | 379 | { |
9c0d9ce3 DS |
380 | case Z_BUF_ERROR: |
381 | msg = "Buffer error in compressed datastream"; | |
382 | break; | |
0272a10d | 383 | |
9c0d9ce3 DS |
384 | case Z_DATA_ERROR: |
385 | msg = "Data error in compressed datastream"; | |
386 | break; | |
b61cc19c | 387 | |
9c0d9ce3 DS |
388 | default: |
389 | msg = "Incomplete compressed datastream"; | |
390 | break; | |
0272a10d | 391 | } |
b61cc19c | 392 | |
9c0d9ce3 | 393 | png_chunk_warning(png_ptr, msg); |
0272a10d | 394 | } |
9c0d9ce3 | 395 | # endif |
b61cc19c | 396 | |
9c0d9ce3 | 397 | /* 0 means an error - notice that this code simply ignores |
b61cc19c PC |
398 | * zero length compressed chunks as a result. |
399 | */ | |
400 | return 0; | |
401 | } | |
402 | } | |
403 | ||
404 | /* | |
405 | * Decompress trailing data in a chunk. The assumption is that chunkdata | |
406 | * points at an allocated area holding the contents of a chunk with a | |
407 | * trailing compressed part. What we get back is an allocated area | |
408 | * holding the original prefix part and an uncompressed version of the | |
409 | * trailing part (the malloc area passed in is freed). | |
410 | */ | |
411 | void /* PRIVATE */ | |
412 | png_decompress_chunk(png_structp png_ptr, int comp_type, | |
413 | png_size_t chunklength, | |
414 | png_size_t prefix_size, png_size_t *newlength) | |
415 | { | |
416 | /* The caller should guarantee this */ | |
417 | if (prefix_size > chunklength) | |
418 | { | |
419 | /* The recovery is to delete the chunk. */ | |
420 | png_warning(png_ptr, "invalid chunklength"); | |
421 | prefix_size = 0; /* To delete everything */ | |
422 | } | |
423 | ||
424 | else if (comp_type == PNG_COMPRESSION_TYPE_BASE) | |
425 | { | |
426 | png_size_t expanded_size = png_inflate(png_ptr, | |
9c0d9ce3 DS |
427 | (png_bytep)(png_ptr->chunkdata + prefix_size), |
428 | chunklength - prefix_size, | |
429 | 0, /* output */ | |
430 | 0); /* output size */ | |
b61cc19c PC |
431 | |
432 | /* Now check the limits on this chunk - if the limit fails the | |
433 | * compressed data will be removed, the prefix will remain. | |
434 | */ | |
435 | #ifdef PNG_SET_CHUNK_MALLOC_LIMIT_SUPPORTED | |
436 | if (png_ptr->user_chunk_malloc_max && | |
437 | (prefix_size + expanded_size >= png_ptr->user_chunk_malloc_max - 1)) | |
0272a10d | 438 | #else |
b61cc19c PC |
439 | # ifdef PNG_USER_CHUNK_MALLOC_MAX |
440 | if ((PNG_USER_CHUNK_MALLOC_MAX > 0) && | |
441 | prefix_size + expanded_size >= PNG_USER_CHUNK_MALLOC_MAX - 1) | |
442 | # endif | |
443 | #endif | |
444 | png_warning(png_ptr, "Exceeded size limit while expanding chunk"); | |
445 | ||
446 | /* If the size is zero either there was an error and a message | |
447 | * has already been output (warning) or the size really is zero | |
448 | * and we have nothing to do - the code will exit through the | |
449 | * error case below. | |
450 | */ | |
451 | #if defined(PNG_SET_CHUNK_MALLOC_LIMIT_SUPPORTED) || \ | |
452 | defined(PNG_USER_CHUNK_MALLOC_MAX) | |
9c0d9ce3 DS |
453 | else if (expanded_size > 0) |
454 | #else | |
b61cc19c | 455 | if (expanded_size > 0) |
9c0d9ce3 | 456 | #endif |
b61cc19c PC |
457 | { |
458 | /* Success (maybe) - really uncompress the chunk. */ | |
459 | png_size_t new_size = 0; | |
9c0d9ce3 DS |
460 | png_charp text = (png_charp)png_malloc_warn(png_ptr, |
461 | prefix_size + expanded_size + 1); | |
b61cc19c PC |
462 | |
463 | if (text != NULL) | |
0272a10d | 464 | { |
970f6abe | 465 | png_memcpy(text, png_ptr->chunkdata, prefix_size); |
b61cc19c PC |
466 | new_size = png_inflate(png_ptr, |
467 | (png_bytep)(png_ptr->chunkdata + prefix_size), | |
468 | chunklength - prefix_size, | |
469 | (png_bytep)(text + prefix_size), expanded_size); | |
470 | text[prefix_size + expanded_size] = 0; /* just in case */ | |
0272a10d | 471 | |
b61cc19c PC |
472 | if (new_size == expanded_size) |
473 | { | |
474 | png_free(png_ptr, png_ptr->chunkdata); | |
475 | png_ptr->chunkdata = text; | |
476 | *newlength = prefix_size + expanded_size; | |
477 | return; /* The success return! */ | |
478 | } | |
0272a10d | 479 | |
b61cc19c PC |
480 | png_warning(png_ptr, "png_inflate logic error"); |
481 | png_free(png_ptr, text); | |
482 | } | |
9c0d9ce3 | 483 | |
b61cc19c | 484 | else |
9c0d9ce3 | 485 | png_warning(png_ptr, "Not enough memory to decompress chunk"); |
b61cc19c | 486 | } |
0272a10d | 487 | } |
b61cc19c | 488 | |
0272a10d VZ |
489 | else /* if (comp_type != PNG_COMPRESSION_TYPE_BASE) */ |
490 | { | |
9c0d9ce3 DS |
491 | PNG_WARNING_PARAMETERS(p) |
492 | png_warning_parameter_signed(p, 1, PNG_NUMBER_FORMAT_d, comp_type); | |
493 | png_formatted_warning(png_ptr, p, "Unknown zTXt compression type @1"); | |
0272a10d | 494 | |
b61cc19c | 495 | /* The recovery is to simply drop the data. */ |
0272a10d | 496 | } |
b61cc19c PC |
497 | |
498 | /* Generic error return - leave the prefix, delete the compressed | |
499 | * data, reallocate the chunkdata to remove the potentially large | |
500 | * amount of compressed data. | |
501 | */ | |
502 | { | |
9c0d9ce3 DS |
503 | png_charp text = (png_charp)png_malloc_warn(png_ptr, prefix_size + 1); |
504 | ||
b61cc19c PC |
505 | if (text != NULL) |
506 | { | |
507 | if (prefix_size > 0) | |
508 | png_memcpy(text, png_ptr->chunkdata, prefix_size); | |
9c0d9ce3 | 509 | |
b61cc19c PC |
510 | png_free(png_ptr, png_ptr->chunkdata); |
511 | png_ptr->chunkdata = text; | |
512 | ||
513 | /* This is an extra zero in the 'uncompressed' part. */ | |
514 | *(png_ptr->chunkdata + prefix_size) = 0x00; | |
515 | } | |
516 | /* Ignore a malloc error here - it is safe. */ | |
517 | } | |
518 | ||
519 | *newlength = prefix_size; | |
0272a10d | 520 | } |
9c0d9ce3 | 521 | #endif /* PNG_READ_COMPRESSED_TEXT_SUPPORTED */ |
0272a10d | 522 | |
b61cc19c | 523 | /* Read and check the IDHR chunk */ |
0272a10d VZ |
524 | void /* PRIVATE */ |
525 | png_handle_IHDR(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) | |
526 | { | |
527 | png_byte buf[13]; | |
528 | png_uint_32 width, height; | |
529 | int bit_depth, color_type, compression_type, filter_type; | |
530 | int interlace_type; | |
531 | ||
970f6abe | 532 | png_debug(1, "in png_handle_IHDR"); |
0272a10d VZ |
533 | |
534 | if (png_ptr->mode & PNG_HAVE_IHDR) | |
535 | png_error(png_ptr, "Out of place IHDR"); | |
536 | ||
b61cc19c | 537 | /* Check the length */ |
0272a10d VZ |
538 | if (length != 13) |
539 | png_error(png_ptr, "Invalid IHDR chunk"); | |
540 | ||
541 | png_ptr->mode |= PNG_HAVE_IHDR; | |
542 | ||
543 | png_crc_read(png_ptr, buf, 13); | |
544 | png_crc_finish(png_ptr, 0); | |
545 | ||
546 | width = png_get_uint_31(png_ptr, buf); | |
547 | height = png_get_uint_31(png_ptr, buf + 4); | |
548 | bit_depth = buf[8]; | |
549 | color_type = buf[9]; | |
550 | compression_type = buf[10]; | |
551 | filter_type = buf[11]; | |
552 | interlace_type = buf[12]; | |
553 | ||
b61cc19c | 554 | /* Set internal variables */ |
0272a10d VZ |
555 | png_ptr->width = width; |
556 | png_ptr->height = height; | |
557 | png_ptr->bit_depth = (png_byte)bit_depth; | |
558 | png_ptr->interlaced = (png_byte)interlace_type; | |
559 | png_ptr->color_type = (png_byte)color_type; | |
b61cc19c | 560 | #ifdef PNG_MNG_FEATURES_SUPPORTED |
0272a10d VZ |
561 | png_ptr->filter_type = (png_byte)filter_type; |
562 | #endif | |
563 | png_ptr->compression_type = (png_byte)compression_type; | |
564 | ||
b61cc19c | 565 | /* Find number of channels */ |
0272a10d VZ |
566 | switch (png_ptr->color_type) |
567 | { | |
9c0d9ce3 | 568 | default: /* invalid, png_set_IHDR calls png_error */ |
0272a10d VZ |
569 | case PNG_COLOR_TYPE_GRAY: |
570 | case PNG_COLOR_TYPE_PALETTE: | |
571 | png_ptr->channels = 1; | |
572 | break; | |
b61cc19c | 573 | |
0272a10d VZ |
574 | case PNG_COLOR_TYPE_RGB: |
575 | png_ptr->channels = 3; | |
576 | break; | |
b61cc19c | 577 | |
0272a10d VZ |
578 | case PNG_COLOR_TYPE_GRAY_ALPHA: |
579 | png_ptr->channels = 2; | |
580 | break; | |
b61cc19c | 581 | |
0272a10d VZ |
582 | case PNG_COLOR_TYPE_RGB_ALPHA: |
583 | png_ptr->channels = 4; | |
584 | break; | |
585 | } | |
586 | ||
b61cc19c | 587 | /* Set up other useful info */ |
0272a10d VZ |
588 | png_ptr->pixel_depth = (png_byte)(png_ptr->bit_depth * |
589 | png_ptr->channels); | |
970f6abe VZ |
590 | png_ptr->rowbytes = PNG_ROWBYTES(png_ptr->pixel_depth, png_ptr->width); |
591 | png_debug1(3, "bit_depth = %d", png_ptr->bit_depth); | |
592 | png_debug1(3, "channels = %d", png_ptr->channels); | |
9c0d9ce3 | 593 | png_debug1(3, "rowbytes = %lu", (unsigned long)png_ptr->rowbytes); |
0272a10d | 594 | png_set_IHDR(png_ptr, info_ptr, width, height, bit_depth, |
9c0d9ce3 | 595 | color_type, interlace_type, compression_type, filter_type); |
0272a10d VZ |
596 | } |
597 | ||
b61cc19c | 598 | /* Read and check the palette */ |
0272a10d VZ |
599 | void /* PRIVATE */ |
600 | png_handle_PLTE(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) | |
601 | { | |
602 | png_color palette[PNG_MAX_PALETTE_LENGTH]; | |
603 | int num, i; | |
b61cc19c | 604 | #ifdef PNG_POINTER_INDEXING_SUPPORTED |
0272a10d VZ |
605 | png_colorp pal_ptr; |
606 | #endif | |
607 | ||
970f6abe | 608 | png_debug(1, "in png_handle_PLTE"); |
0272a10d VZ |
609 | |
610 | if (!(png_ptr->mode & PNG_HAVE_IHDR)) | |
611 | png_error(png_ptr, "Missing IHDR before PLTE"); | |
b61cc19c | 612 | |
0272a10d VZ |
613 | else if (png_ptr->mode & PNG_HAVE_IDAT) |
614 | { | |
615 | png_warning(png_ptr, "Invalid PLTE after IDAT"); | |
616 | png_crc_finish(png_ptr, length); | |
617 | return; | |
618 | } | |
b61cc19c | 619 | |
0272a10d VZ |
620 | else if (png_ptr->mode & PNG_HAVE_PLTE) |
621 | png_error(png_ptr, "Duplicate PLTE chunk"); | |
622 | ||
623 | png_ptr->mode |= PNG_HAVE_PLTE; | |
624 | ||
625 | if (!(png_ptr->color_type&PNG_COLOR_MASK_COLOR)) | |
626 | { | |
627 | png_warning(png_ptr, | |
9c0d9ce3 | 628 | "Ignoring PLTE chunk in grayscale PNG"); |
0272a10d VZ |
629 | png_crc_finish(png_ptr, length); |
630 | return; | |
631 | } | |
9c0d9ce3 | 632 | |
b61cc19c | 633 | #ifndef PNG_READ_OPT_PLTE_SUPPORTED |
0272a10d VZ |
634 | if (png_ptr->color_type != PNG_COLOR_TYPE_PALETTE) |
635 | { | |
636 | png_crc_finish(png_ptr, length); | |
637 | return; | |
638 | } | |
639 | #endif | |
640 | ||
641 | if (length > 3*PNG_MAX_PALETTE_LENGTH || length % 3) | |
642 | { | |
643 | if (png_ptr->color_type != PNG_COLOR_TYPE_PALETTE) | |
644 | { | |
645 | png_warning(png_ptr, "Invalid palette chunk"); | |
646 | png_crc_finish(png_ptr, length); | |
647 | return; | |
648 | } | |
b61cc19c | 649 | |
0272a10d VZ |
650 | else |
651 | { | |
652 | png_error(png_ptr, "Invalid palette chunk"); | |
653 | } | |
654 | } | |
655 | ||
656 | num = (int)length / 3; | |
657 | ||
b61cc19c | 658 | #ifdef PNG_POINTER_INDEXING_SUPPORTED |
0272a10d VZ |
659 | for (i = 0, pal_ptr = palette; i < num; i++, pal_ptr++) |
660 | { | |
661 | png_byte buf[3]; | |
662 | ||
663 | png_crc_read(png_ptr, buf, 3); | |
664 | pal_ptr->red = buf[0]; | |
665 | pal_ptr->green = buf[1]; | |
666 | pal_ptr->blue = buf[2]; | |
667 | } | |
668 | #else | |
669 | for (i = 0; i < num; i++) | |
670 | { | |
671 | png_byte buf[3]; | |
672 | ||
673 | png_crc_read(png_ptr, buf, 3); | |
b61cc19c | 674 | /* Don't depend upon png_color being any order */ |
0272a10d VZ |
675 | palette[i].red = buf[0]; |
676 | palette[i].green = buf[1]; | |
677 | palette[i].blue = buf[2]; | |
678 | } | |
679 | #endif | |
680 | ||
9c0d9ce3 | 681 | /* If we actually need the PLTE chunk (ie for a paletted image), we do |
b61cc19c PC |
682 | * whatever the normal CRC configuration tells us. However, if we |
683 | * have an RGB image, the PLTE can be considered ancillary, so | |
684 | * we will act as though it is. | |
685 | */ | |
686 | #ifndef PNG_READ_OPT_PLTE_SUPPORTED | |
0272a10d VZ |
687 | if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE) |
688 | #endif | |
689 | { | |
690 | png_crc_finish(png_ptr, 0); | |
691 | } | |
9c0d9ce3 | 692 | |
b61cc19c | 693 | #ifndef PNG_READ_OPT_PLTE_SUPPORTED |
0272a10d VZ |
694 | else if (png_crc_error(png_ptr)) /* Only if we have a CRC error */ |
695 | { | |
696 | /* If we don't want to use the data from an ancillary chunk, | |
9c0d9ce3 DS |
697 | * we have two options: an error abort, or a warning and we |
698 | * ignore the data in this chunk (which should be OK, since | |
699 | * it's considered ancillary for a RGB or RGBA image). | |
700 | */ | |
0272a10d VZ |
701 | if (!(png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_USE)) |
702 | { | |
703 | if (png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_NOWARN) | |
704 | { | |
b61cc19c | 705 | png_chunk_benign_error(png_ptr, "CRC error"); |
0272a10d | 706 | } |
9c0d9ce3 | 707 | |
0272a10d VZ |
708 | else |
709 | { | |
710 | png_chunk_warning(png_ptr, "CRC error"); | |
711 | return; | |
712 | } | |
713 | } | |
9c0d9ce3 | 714 | |
0272a10d VZ |
715 | /* Otherwise, we (optionally) emit a warning and use the chunk. */ |
716 | else if (!(png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_NOWARN)) | |
717 | { | |
718 | png_chunk_warning(png_ptr, "CRC error"); | |
719 | } | |
720 | } | |
721 | #endif | |
722 | ||
723 | png_set_PLTE(png_ptr, info_ptr, palette, num); | |
724 | ||
b61cc19c | 725 | #ifdef PNG_READ_tRNS_SUPPORTED |
0272a10d VZ |
726 | if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE) |
727 | { | |
728 | if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_tRNS)) | |
729 | { | |
730 | if (png_ptr->num_trans > (png_uint_16)num) | |
731 | { | |
732 | png_warning(png_ptr, "Truncating incorrect tRNS chunk length"); | |
733 | png_ptr->num_trans = (png_uint_16)num; | |
734 | } | |
9c0d9ce3 | 735 | |
0272a10d VZ |
736 | if (info_ptr->num_trans > (png_uint_16)num) |
737 | { | |
738 | png_warning(png_ptr, "Truncating incorrect info tRNS chunk length"); | |
739 | info_ptr->num_trans = (png_uint_16)num; | |
740 | } | |
741 | } | |
742 | } | |
743 | #endif | |
744 | ||
745 | } | |
746 | ||
747 | void /* PRIVATE */ | |
748 | png_handle_IEND(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) | |
749 | { | |
970f6abe | 750 | png_debug(1, "in png_handle_IEND"); |
0272a10d VZ |
751 | |
752 | if (!(png_ptr->mode & PNG_HAVE_IHDR) || !(png_ptr->mode & PNG_HAVE_IDAT)) | |
753 | { | |
754 | png_error(png_ptr, "No image in file"); | |
755 | } | |
756 | ||
757 | png_ptr->mode |= (PNG_AFTER_IDAT | PNG_HAVE_IEND); | |
758 | ||
759 | if (length != 0) | |
760 | { | |
761 | png_warning(png_ptr, "Incorrect IEND chunk length"); | |
762 | } | |
9c0d9ce3 | 763 | |
0272a10d VZ |
764 | png_crc_finish(png_ptr, length); |
765 | ||
9c0d9ce3 | 766 | PNG_UNUSED(info_ptr) /* Quiet compiler warnings about unused info_ptr */ |
0272a10d VZ |
767 | } |
768 | ||
b61cc19c | 769 | #ifdef PNG_READ_gAMA_SUPPORTED |
0272a10d VZ |
770 | void /* PRIVATE */ |
771 | png_handle_gAMA(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) | |
772 | { | |
773 | png_fixed_point igamma; | |
0272a10d VZ |
774 | png_byte buf[4]; |
775 | ||
970f6abe | 776 | png_debug(1, "in png_handle_gAMA"); |
0272a10d VZ |
777 | |
778 | if (!(png_ptr->mode & PNG_HAVE_IHDR)) | |
779 | png_error(png_ptr, "Missing IHDR before gAMA"); | |
9c0d9ce3 | 780 | |
0272a10d VZ |
781 | else if (png_ptr->mode & PNG_HAVE_IDAT) |
782 | { | |
783 | png_warning(png_ptr, "Invalid gAMA after IDAT"); | |
784 | png_crc_finish(png_ptr, length); | |
785 | return; | |
786 | } | |
9c0d9ce3 | 787 | |
0272a10d VZ |
788 | else if (png_ptr->mode & PNG_HAVE_PLTE) |
789 | /* Should be an error, but we can cope with it */ | |
790 | png_warning(png_ptr, "Out of place gAMA chunk"); | |
791 | ||
792 | if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_gAMA) | |
b61cc19c | 793 | #ifdef PNG_READ_sRGB_SUPPORTED |
9c0d9ce3 | 794 | && !(info_ptr->valid & PNG_INFO_sRGB) |
0272a10d | 795 | #endif |
9c0d9ce3 | 796 | ) |
0272a10d VZ |
797 | { |
798 | png_warning(png_ptr, "Duplicate gAMA chunk"); | |
799 | png_crc_finish(png_ptr, length); | |
800 | return; | |
801 | } | |
802 | ||
803 | if (length != 4) | |
804 | { | |
805 | png_warning(png_ptr, "Incorrect gAMA chunk length"); | |
806 | png_crc_finish(png_ptr, length); | |
807 | return; | |
808 | } | |
809 | ||
810 | png_crc_read(png_ptr, buf, 4); | |
9c0d9ce3 | 811 | |
0272a10d VZ |
812 | if (png_crc_finish(png_ptr, 0)) |
813 | return; | |
814 | ||
9c0d9ce3 | 815 | igamma = png_get_fixed_point(NULL, buf); |
0272a10d | 816 | |
9c0d9ce3 DS |
817 | /* Check for zero gamma or an error. */ |
818 | if (igamma <= 0) | |
819 | { | |
820 | png_warning(png_ptr, | |
821 | "Ignoring gAMA chunk with out of range gamma"); | |
822 | ||
823 | return; | |
824 | } | |
825 | ||
826 | # ifdef PNG_READ_sRGB_SUPPORTED | |
0272a10d | 827 | if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_sRGB)) |
9c0d9ce3 DS |
828 | { |
829 | if (PNG_OUT_OF_RANGE(igamma, 45500, 500)) | |
0272a10d | 830 | { |
9c0d9ce3 DS |
831 | PNG_WARNING_PARAMETERS(p) |
832 | png_warning_parameter_signed(p, 1, PNG_NUMBER_FORMAT_fixed, igamma); | |
833 | png_formatted_warning(png_ptr, p, | |
834 | "Ignoring incorrect gAMA value @1 when sRGB is also present"); | |
0272a10d VZ |
835 | return; |
836 | } | |
9c0d9ce3 DS |
837 | } |
838 | # endif /* PNG_READ_sRGB_SUPPORTED */ | |
0272a10d | 839 | |
0272a10d | 840 | # ifdef PNG_READ_GAMMA_SUPPORTED |
9c0d9ce3 DS |
841 | /* Gamma correction on read is supported. */ |
842 | png_ptr->gamma = igamma; | |
0272a10d | 843 | # endif |
9c0d9ce3 | 844 | /* And set the 'info' structure members. */ |
0272a10d | 845 | png_set_gAMA_fixed(png_ptr, info_ptr, igamma); |
0272a10d VZ |
846 | } |
847 | #endif | |
848 | ||
b61cc19c | 849 | #ifdef PNG_READ_sBIT_SUPPORTED |
0272a10d VZ |
850 | void /* PRIVATE */ |
851 | png_handle_sBIT(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) | |
852 | { | |
853 | png_size_t truelen; | |
854 | png_byte buf[4]; | |
855 | ||
970f6abe | 856 | png_debug(1, "in png_handle_sBIT"); |
0272a10d VZ |
857 | |
858 | buf[0] = buf[1] = buf[2] = buf[3] = 0; | |
859 | ||
860 | if (!(png_ptr->mode & PNG_HAVE_IHDR)) | |
861 | png_error(png_ptr, "Missing IHDR before sBIT"); | |
9c0d9ce3 | 862 | |
0272a10d VZ |
863 | else if (png_ptr->mode & PNG_HAVE_IDAT) |
864 | { | |
865 | png_warning(png_ptr, "Invalid sBIT after IDAT"); | |
866 | png_crc_finish(png_ptr, length); | |
867 | return; | |
868 | } | |
9c0d9ce3 | 869 | |
0272a10d VZ |
870 | else if (png_ptr->mode & PNG_HAVE_PLTE) |
871 | { | |
872 | /* Should be an error, but we can cope with it */ | |
873 | png_warning(png_ptr, "Out of place sBIT chunk"); | |
874 | } | |
9c0d9ce3 | 875 | |
0272a10d VZ |
876 | if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_sBIT)) |
877 | { | |
878 | png_warning(png_ptr, "Duplicate sBIT chunk"); | |
879 | png_crc_finish(png_ptr, length); | |
880 | return; | |
881 | } | |
882 | ||
883 | if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE) | |
884 | truelen = 3; | |
9c0d9ce3 | 885 | |
0272a10d VZ |
886 | else |
887 | truelen = (png_size_t)png_ptr->channels; | |
888 | ||
889 | if (length != truelen || length > 4) | |
890 | { | |
891 | png_warning(png_ptr, "Incorrect sBIT chunk length"); | |
892 | png_crc_finish(png_ptr, length); | |
893 | return; | |
894 | } | |
895 | ||
896 | png_crc_read(png_ptr, buf, truelen); | |
9c0d9ce3 | 897 | |
0272a10d VZ |
898 | if (png_crc_finish(png_ptr, 0)) |
899 | return; | |
900 | ||
901 | if (png_ptr->color_type & PNG_COLOR_MASK_COLOR) | |
902 | { | |
903 | png_ptr->sig_bit.red = buf[0]; | |
904 | png_ptr->sig_bit.green = buf[1]; | |
905 | png_ptr->sig_bit.blue = buf[2]; | |
906 | png_ptr->sig_bit.alpha = buf[3]; | |
907 | } | |
9c0d9ce3 | 908 | |
0272a10d VZ |
909 | else |
910 | { | |
911 | png_ptr->sig_bit.gray = buf[0]; | |
912 | png_ptr->sig_bit.red = buf[0]; | |
913 | png_ptr->sig_bit.green = buf[0]; | |
914 | png_ptr->sig_bit.blue = buf[0]; | |
915 | png_ptr->sig_bit.alpha = buf[1]; | |
916 | } | |
9c0d9ce3 | 917 | |
0272a10d VZ |
918 | png_set_sBIT(png_ptr, info_ptr, &(png_ptr->sig_bit)); |
919 | } | |
920 | #endif | |
921 | ||
b61cc19c | 922 | #ifdef PNG_READ_cHRM_SUPPORTED |
0272a10d VZ |
923 | void /* PRIVATE */ |
924 | png_handle_cHRM(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) | |
925 | { | |
970f6abe | 926 | png_byte buf[32]; |
9c0d9ce3 DS |
927 | png_fixed_point x_white, y_white, x_red, y_red, x_green, y_green, x_blue, |
928 | y_blue; | |
0272a10d | 929 | |
970f6abe | 930 | png_debug(1, "in png_handle_cHRM"); |
0272a10d VZ |
931 | |
932 | if (!(png_ptr->mode & PNG_HAVE_IHDR)) | |
933 | png_error(png_ptr, "Missing IHDR before cHRM"); | |
9c0d9ce3 | 934 | |
0272a10d VZ |
935 | else if (png_ptr->mode & PNG_HAVE_IDAT) |
936 | { | |
937 | png_warning(png_ptr, "Invalid cHRM after IDAT"); | |
938 | png_crc_finish(png_ptr, length); | |
939 | return; | |
940 | } | |
9c0d9ce3 | 941 | |
0272a10d VZ |
942 | else if (png_ptr->mode & PNG_HAVE_PLTE) |
943 | /* Should be an error, but we can cope with it */ | |
9c0d9ce3 | 944 | png_warning(png_ptr, "Out of place cHRM chunk"); |
0272a10d VZ |
945 | |
946 | if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_cHRM) | |
9c0d9ce3 DS |
947 | # ifdef PNG_READ_sRGB_SUPPORTED |
948 | && !(info_ptr->valid & PNG_INFO_sRGB) | |
949 | # endif | |
0272a10d VZ |
950 | ) |
951 | { | |
952 | png_warning(png_ptr, "Duplicate cHRM chunk"); | |
953 | png_crc_finish(png_ptr, length); | |
954 | return; | |
955 | } | |
956 | ||
957 | if (length != 32) | |
958 | { | |
959 | png_warning(png_ptr, "Incorrect cHRM chunk length"); | |
960 | png_crc_finish(png_ptr, length); | |
961 | return; | |
962 | } | |
963 | ||
970f6abe | 964 | png_crc_read(png_ptr, buf, 32); |
9c0d9ce3 | 965 | |
970f6abe | 966 | if (png_crc_finish(png_ptr, 0)) |
0272a10d | 967 | return; |
0272a10d | 968 | |
9c0d9ce3 DS |
969 | x_white = png_get_fixed_point(NULL, buf); |
970 | y_white = png_get_fixed_point(NULL, buf + 4); | |
971 | x_red = png_get_fixed_point(NULL, buf + 8); | |
972 | y_red = png_get_fixed_point(NULL, buf + 12); | |
973 | x_green = png_get_fixed_point(NULL, buf + 16); | |
974 | y_green = png_get_fixed_point(NULL, buf + 20); | |
975 | x_blue = png_get_fixed_point(NULL, buf + 24); | |
976 | y_blue = png_get_fixed_point(NULL, buf + 28); | |
0272a10d | 977 | |
9c0d9ce3 DS |
978 | if (x_white == PNG_FIXED_ERROR || |
979 | y_white == PNG_FIXED_ERROR || | |
980 | x_red == PNG_FIXED_ERROR || | |
981 | y_red == PNG_FIXED_ERROR || | |
982 | x_green == PNG_FIXED_ERROR || | |
983 | y_green == PNG_FIXED_ERROR || | |
984 | x_blue == PNG_FIXED_ERROR || | |
985 | y_blue == PNG_FIXED_ERROR) | |
986 | { | |
987 | png_warning(png_ptr, "Ignoring cHRM chunk with negative chromaticities"); | |
988 | return; | |
989 | } | |
0272a10d | 990 | |
b61cc19c | 991 | #ifdef PNG_READ_sRGB_SUPPORTED |
0272a10d | 992 | if ((info_ptr != NULL) && (info_ptr->valid & PNG_INFO_sRGB)) |
9c0d9ce3 DS |
993 | { |
994 | if (PNG_OUT_OF_RANGE(x_white, 31270, 1000) || | |
995 | PNG_OUT_OF_RANGE(y_white, 32900, 1000) || | |
996 | PNG_OUT_OF_RANGE(x_red, 64000, 1000) || | |
997 | PNG_OUT_OF_RANGE(y_red, 33000, 1000) || | |
998 | PNG_OUT_OF_RANGE(x_green, 30000, 1000) || | |
999 | PNG_OUT_OF_RANGE(y_green, 60000, 1000) || | |
1000 | PNG_OUT_OF_RANGE(x_blue, 15000, 1000) || | |
1001 | PNG_OUT_OF_RANGE(y_blue, 6000, 1000)) | |
0272a10d | 1002 | { |
9c0d9ce3 DS |
1003 | PNG_WARNING_PARAMETERS(p) |
1004 | ||
1005 | png_warning_parameter_signed(p, 1, PNG_NUMBER_FORMAT_fixed, x_white); | |
1006 | png_warning_parameter_signed(p, 2, PNG_NUMBER_FORMAT_fixed, y_white); | |
1007 | png_warning_parameter_signed(p, 3, PNG_NUMBER_FORMAT_fixed, x_red); | |
1008 | png_warning_parameter_signed(p, 4, PNG_NUMBER_FORMAT_fixed, y_red); | |
1009 | png_warning_parameter_signed(p, 5, PNG_NUMBER_FORMAT_fixed, x_green); | |
1010 | png_warning_parameter_signed(p, 6, PNG_NUMBER_FORMAT_fixed, y_green); | |
1011 | png_warning_parameter_signed(p, 7, PNG_NUMBER_FORMAT_fixed, x_blue); | |
1012 | png_warning_parameter_signed(p, 8, PNG_NUMBER_FORMAT_fixed, y_blue); | |
1013 | ||
1014 | png_formatted_warning(png_ptr, p, | |
1015 | "Ignoring incorrect cHRM white(@1,@2) r(@3,@4)g(@5,@6)b(@7,@8) " | |
1016 | "when sRGB is also present"); | |
0272a10d | 1017 | } |
9c0d9ce3 DS |
1018 | return; |
1019 | } | |
0272a10d VZ |
1020 | #endif /* PNG_READ_sRGB_SUPPORTED */ |
1021 | ||
9c0d9ce3 DS |
1022 | #ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED |
1023 | /* Store the _white values as default coefficients for the rgb to gray | |
1024 | * operation if it is supported. Check if the transform is already set to | |
1025 | * avoid destroying the transform values. | |
1026 | */ | |
1027 | if (!png_ptr->rgb_to_gray_coefficients_set) | |
1028 | { | |
1029 | /* png_set_background has not been called and we haven't seen an sRGB | |
1030 | * chunk yet. Find the XYZ of the three end points. | |
1031 | */ | |
1032 | png_XYZ XYZ; | |
1033 | png_xy xy; | |
1034 | ||
1035 | xy.redx = x_red; | |
1036 | xy.redy = y_red; | |
1037 | xy.greenx = x_green; | |
1038 | xy.greeny = y_green; | |
1039 | xy.bluex = x_blue; | |
1040 | xy.bluey = y_blue; | |
1041 | xy.whitex = x_white; | |
1042 | xy.whitey = y_white; | |
1043 | ||
1044 | if (png_XYZ_from_xy_checked(png_ptr, &XYZ, xy)) | |
1045 | { | |
1046 | /* The success case, because XYZ_from_xy normalises to a reference | |
1047 | * white Y of 1.0 we just need to scale the numbers. This should | |
1048 | * always work just fine. It is an internal error if this overflows. | |
1049 | */ | |
1050 | { | |
1051 | png_fixed_point r, g, b; | |
1052 | if (png_muldiv(&r, XYZ.redY, 32768, PNG_FP_1) && | |
1053 | r >= 0 && r <= 32768 && | |
1054 | png_muldiv(&g, XYZ.greenY, 32768, PNG_FP_1) && | |
1055 | g >= 0 && g <= 32768 && | |
1056 | png_muldiv(&b, XYZ.blueY, 32768, PNG_FP_1) && | |
1057 | b >= 0 && b <= 32768 && | |
1058 | r+g+b <= 32769) | |
1059 | { | |
1060 | /* We allow 0 coefficients here. r+g+b may be 32769 if two or | |
1061 | * all of the coefficients were rounded up. Handle this by | |
1062 | * reducing the *largest* coefficient by 1; this matches the | |
1063 | * approach used for the default coefficients in pngrtran.c | |
1064 | */ | |
1065 | int add = 0; | |
1066 | ||
1067 | if (r+g+b > 32768) | |
1068 | add = -1; | |
1069 | else if (r+g+b < 32768) | |
1070 | add = 1; | |
1071 | ||
1072 | if (add != 0) | |
1073 | { | |
1074 | if (g >= r && g >= b) | |
1075 | g += add; | |
1076 | else if (r >= g && r >= b) | |
1077 | r += add; | |
1078 | else | |
1079 | b += add; | |
1080 | } | |
1081 | ||
1082 | /* Check for an internal error. */ | |
1083 | if (r+g+b != 32768) | |
1084 | png_error(png_ptr, | |
1085 | "internal error handling cHRM coefficients"); | |
1086 | ||
1087 | png_ptr->rgb_to_gray_red_coeff = (png_uint_16)r; | |
1088 | png_ptr->rgb_to_gray_green_coeff = (png_uint_16)g; | |
1089 | } | |
1090 | ||
1091 | /* This is a png_error at present even though it could be ignored - | |
1092 | * it should never happen, but it is important that if it does, the | |
1093 | * bug is fixed. | |
1094 | */ | |
1095 | else | |
1096 | png_error(png_ptr, "internal error handling cHRM->XYZ"); | |
1097 | } | |
1098 | } | |
1099 | } | |
0272a10d | 1100 | #endif |
9c0d9ce3 DS |
1101 | |
1102 | png_set_cHRM_fixed(png_ptr, info_ptr, x_white, y_white, x_red, y_red, | |
1103 | x_green, y_green, x_blue, y_blue); | |
0272a10d VZ |
1104 | } |
1105 | #endif | |
1106 | ||
b61cc19c | 1107 | #ifdef PNG_READ_sRGB_SUPPORTED |
0272a10d VZ |
1108 | void /* PRIVATE */ |
1109 | png_handle_sRGB(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) | |
1110 | { | |
1111 | int intent; | |
1112 | png_byte buf[1]; | |
1113 | ||
970f6abe | 1114 | png_debug(1, "in png_handle_sRGB"); |
0272a10d VZ |
1115 | |
1116 | if (!(png_ptr->mode & PNG_HAVE_IHDR)) | |
1117 | png_error(png_ptr, "Missing IHDR before sRGB"); | |
9c0d9ce3 | 1118 | |
0272a10d VZ |
1119 | else if (png_ptr->mode & PNG_HAVE_IDAT) |
1120 | { | |
1121 | png_warning(png_ptr, "Invalid sRGB after IDAT"); | |
1122 | png_crc_finish(png_ptr, length); | |
1123 | return; | |
1124 | } | |
9c0d9ce3 | 1125 | |
0272a10d VZ |
1126 | else if (png_ptr->mode & PNG_HAVE_PLTE) |
1127 | /* Should be an error, but we can cope with it */ | |
1128 | png_warning(png_ptr, "Out of place sRGB chunk"); | |
1129 | ||
1130 | if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_sRGB)) | |
1131 | { | |
1132 | png_warning(png_ptr, "Duplicate sRGB chunk"); | |
1133 | png_crc_finish(png_ptr, length); | |
1134 | return; | |
1135 | } | |
1136 | ||
1137 | if (length != 1) | |
1138 | { | |
1139 | png_warning(png_ptr, "Incorrect sRGB chunk length"); | |
1140 | png_crc_finish(png_ptr, length); | |
1141 | return; | |
1142 | } | |
1143 | ||
1144 | png_crc_read(png_ptr, buf, 1); | |
9c0d9ce3 | 1145 | |
0272a10d VZ |
1146 | if (png_crc_finish(png_ptr, 0)) |
1147 | return; | |
1148 | ||
1149 | intent = buf[0]; | |
9c0d9ce3 | 1150 | |
b61cc19c | 1151 | /* Check for bad intent */ |
0272a10d VZ |
1152 | if (intent >= PNG_sRGB_INTENT_LAST) |
1153 | { | |
1154 | png_warning(png_ptr, "Unknown sRGB intent"); | |
1155 | return; | |
1156 | } | |
1157 | ||
1158 | #if defined(PNG_READ_gAMA_SUPPORTED) && defined(PNG_READ_GAMMA_SUPPORTED) | |
1159 | if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_gAMA)) | |
1160 | { | |
9c0d9ce3 | 1161 | if (PNG_OUT_OF_RANGE(info_ptr->gamma, 45500, 500)) |
0272a10d | 1162 | { |
9c0d9ce3 DS |
1163 | PNG_WARNING_PARAMETERS(p) |
1164 | ||
1165 | png_warning_parameter_signed(p, 1, PNG_NUMBER_FORMAT_fixed, | |
1166 | info_ptr->gamma); | |
1167 | ||
1168 | png_formatted_warning(png_ptr, p, | |
1169 | "Ignoring incorrect gAMA value @1 when sRGB is also present"); | |
0272a10d VZ |
1170 | } |
1171 | } | |
1172 | #endif /* PNG_READ_gAMA_SUPPORTED */ | |
1173 | ||
1174 | #ifdef PNG_READ_cHRM_SUPPORTED | |
0272a10d | 1175 | if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_cHRM)) |
9c0d9ce3 DS |
1176 | if (PNG_OUT_OF_RANGE(info_ptr->x_white, 31270, 1000) || |
1177 | PNG_OUT_OF_RANGE(info_ptr->y_white, 32900, 1000) || | |
1178 | PNG_OUT_OF_RANGE(info_ptr->x_red, 64000, 1000) || | |
1179 | PNG_OUT_OF_RANGE(info_ptr->y_red, 33000, 1000) || | |
1180 | PNG_OUT_OF_RANGE(info_ptr->x_green, 30000, 1000) || | |
1181 | PNG_OUT_OF_RANGE(info_ptr->y_green, 60000, 1000) || | |
1182 | PNG_OUT_OF_RANGE(info_ptr->x_blue, 15000, 1000) || | |
1183 | PNG_OUT_OF_RANGE(info_ptr->y_blue, 6000, 1000)) | |
1184 | { | |
1185 | png_warning(png_ptr, | |
1186 | "Ignoring incorrect cHRM value when sRGB is also present"); | |
1187 | } | |
0272a10d VZ |
1188 | #endif /* PNG_READ_cHRM_SUPPORTED */ |
1189 | ||
9c0d9ce3 DS |
1190 | /* This is recorded for use when handling the cHRM chunk above. An sRGB |
1191 | * chunk unconditionally overwrites the coefficients for grayscale conversion | |
1192 | * too. | |
1193 | */ | |
1194 | png_ptr->is_sRGB = 1; | |
1195 | ||
1196 | # ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED | |
1197 | /* Don't overwrite user supplied values: */ | |
1198 | if (!png_ptr->rgb_to_gray_coefficients_set) | |
1199 | { | |
1200 | /* These numbers come from the sRGB specification (or, since one has to | |
1201 | * pay much money to get a copy, the wikipedia sRGB page) the | |
1202 | * chromaticity values quoted have been inverted to get the reverse | |
1203 | * transformation from RGB to XYZ and the 'Y' coefficients scaled by | |
1204 | * 32768 (then rounded). | |
1205 | * | |
1206 | * sRGB and ITU Rec-709 both truncate the values for the D65 white | |
1207 | * point to four digits and, even though it actually stores five | |
1208 | * digits, the PNG spec gives the truncated value. | |
1209 | * | |
1210 | * This means that when the chromaticities are converted back to XYZ | |
1211 | * end points we end up with (6968,23435,2366), which, as described in | |
1212 | * pngrtran.c, would overflow. If the five digit precision and up is | |
1213 | * used we get, instead: | |
1214 | * | |
1215 | * 6968*R + 23435*G + 2365*B | |
1216 | * | |
1217 | * (Notice that this rounds the blue coefficient down, rather than the | |
1218 | * choice used in pngrtran.c which is to round the green one down.) | |
1219 | */ | |
1220 | png_ptr->rgb_to_gray_red_coeff = 6968; /* 0.212639005871510 */ | |
1221 | png_ptr->rgb_to_gray_green_coeff = 23434; /* 0.715168678767756 */ | |
1222 | /* png_ptr->rgb_to_gray_blue_coeff = 2366; 0.072192315360734 */ | |
1223 | ||
1224 | /* The following keeps the cHRM chunk from destroying the | |
1225 | * coefficients again in the event that it follows the sRGB chunk. | |
1226 | */ | |
1227 | png_ptr->rgb_to_gray_coefficients_set = 1; | |
1228 | } | |
1229 | # endif | |
1230 | ||
0272a10d VZ |
1231 | png_set_sRGB_gAMA_and_cHRM(png_ptr, info_ptr, intent); |
1232 | } | |
1233 | #endif /* PNG_READ_sRGB_SUPPORTED */ | |
1234 | ||
b61cc19c | 1235 | #ifdef PNG_READ_iCCP_SUPPORTED |
0272a10d VZ |
1236 | void /* PRIVATE */ |
1237 | png_handle_iCCP(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) | |
1238 | /* Note: this does not properly handle chunks that are > 64K under DOS */ | |
1239 | { | |
0272a10d VZ |
1240 | png_byte compression_type; |
1241 | png_bytep pC; | |
1242 | png_charp profile; | |
1243 | png_uint_32 skip = 0; | |
9c0d9ce3 DS |
1244 | png_uint_32 profile_size; |
1245 | png_alloc_size_t profile_length; | |
0272a10d VZ |
1246 | png_size_t slength, prefix_length, data_length; |
1247 | ||
970f6abe | 1248 | png_debug(1, "in png_handle_iCCP"); |
0272a10d VZ |
1249 | |
1250 | if (!(png_ptr->mode & PNG_HAVE_IHDR)) | |
1251 | png_error(png_ptr, "Missing IHDR before iCCP"); | |
9c0d9ce3 | 1252 | |
0272a10d VZ |
1253 | else if (png_ptr->mode & PNG_HAVE_IDAT) |
1254 | { | |
1255 | png_warning(png_ptr, "Invalid iCCP after IDAT"); | |
1256 | png_crc_finish(png_ptr, length); | |
1257 | return; | |
1258 | } | |
9c0d9ce3 | 1259 | |
0272a10d VZ |
1260 | else if (png_ptr->mode & PNG_HAVE_PLTE) |
1261 | /* Should be an error, but we can cope with it */ | |
1262 | png_warning(png_ptr, "Out of place iCCP chunk"); | |
1263 | ||
1264 | if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_iCCP)) | |
1265 | { | |
1266 | png_warning(png_ptr, "Duplicate iCCP chunk"); | |
1267 | png_crc_finish(png_ptr, length); | |
1268 | return; | |
1269 | } | |
1270 | ||
1271 | #ifdef PNG_MAX_MALLOC_64K | |
1272 | if (length > (png_uint_32)65535L) | |
1273 | { | |
1274 | png_warning(png_ptr, "iCCP chunk too large to fit in memory"); | |
1275 | skip = length - (png_uint_32)65535L; | |
1276 | length = (png_uint_32)65535L; | |
1277 | } | |
1278 | #endif | |
1279 | ||
970f6abe VZ |
1280 | png_free(png_ptr, png_ptr->chunkdata); |
1281 | png_ptr->chunkdata = (png_charp)png_malloc(png_ptr, length + 1); | |
0272a10d | 1282 | slength = (png_size_t)length; |
970f6abe | 1283 | png_crc_read(png_ptr, (png_bytep)png_ptr->chunkdata, slength); |
0272a10d VZ |
1284 | |
1285 | if (png_crc_finish(png_ptr, skip)) | |
1286 | { | |
970f6abe VZ |
1287 | png_free(png_ptr, png_ptr->chunkdata); |
1288 | png_ptr->chunkdata = NULL; | |
0272a10d VZ |
1289 | return; |
1290 | } | |
1291 | ||
970f6abe | 1292 | png_ptr->chunkdata[slength] = 0x00; |
0272a10d | 1293 | |
970f6abe | 1294 | for (profile = png_ptr->chunkdata; *profile; profile++) |
b61cc19c | 1295 | /* Empty loop to find end of name */ ; |
0272a10d VZ |
1296 | |
1297 | ++profile; | |
1298 | ||
b61cc19c PC |
1299 | /* There should be at least one zero (the compression type byte) |
1300 | * following the separator, and we should be on it | |
1301 | */ | |
9c0d9ce3 | 1302 | if (profile >= png_ptr->chunkdata + slength - 1) |
0272a10d | 1303 | { |
970f6abe VZ |
1304 | png_free(png_ptr, png_ptr->chunkdata); |
1305 | png_ptr->chunkdata = NULL; | |
0272a10d VZ |
1306 | png_warning(png_ptr, "Malformed iCCP chunk"); |
1307 | return; | |
1308 | } | |
1309 | ||
b61cc19c | 1310 | /* Compression_type should always be zero */ |
0272a10d | 1311 | compression_type = *profile++; |
9c0d9ce3 | 1312 | |
0272a10d VZ |
1313 | if (compression_type) |
1314 | { | |
1315 | png_warning(png_ptr, "Ignoring nonzero compression type in iCCP chunk"); | |
970f6abe | 1316 | compression_type = 0x00; /* Reset it to zero (libpng-1.0.6 through 1.0.8 |
0272a10d VZ |
1317 | wrote nonzero) */ |
1318 | } | |
1319 | ||
970f6abe VZ |
1320 | prefix_length = profile - png_ptr->chunkdata; |
1321 | png_decompress_chunk(png_ptr, compression_type, | |
9c0d9ce3 | 1322 | slength, prefix_length, &data_length); |
0272a10d VZ |
1323 | |
1324 | profile_length = data_length - prefix_length; | |
1325 | ||
9c0d9ce3 | 1326 | if (prefix_length > data_length || profile_length < 4) |
0272a10d | 1327 | { |
970f6abe VZ |
1328 | png_free(png_ptr, png_ptr->chunkdata); |
1329 | png_ptr->chunkdata = NULL; | |
0272a10d VZ |
1330 | png_warning(png_ptr, "Profile size field missing from iCCP chunk"); |
1331 | return; | |
1332 | } | |
1333 | ||
1334 | /* Check the profile_size recorded in the first 32 bits of the ICC profile */ | |
970f6abe | 1335 | pC = (png_bytep)(png_ptr->chunkdata + prefix_length); |
9c0d9ce3 DS |
1336 | profile_size = ((*(pC )) << 24) | |
1337 | ((*(pC + 1)) << 16) | | |
1338 | ((*(pC + 2)) << 8) | | |
1339 | ((*(pC + 3)) ); | |
0272a10d | 1340 | |
9c0d9ce3 DS |
1341 | /* NOTE: the following guarantees that 'profile_length' fits into 32 bits, |
1342 | * because profile_size is a 32 bit value. | |
1343 | */ | |
970f6abe | 1344 | if (profile_size < profile_length) |
0272a10d VZ |
1345 | profile_length = profile_size; |
1346 | ||
9c0d9ce3 | 1347 | /* And the following guarantees that profile_size == profile_length. */ |
970f6abe | 1348 | if (profile_size > profile_length) |
0272a10d | 1349 | { |
9c0d9ce3 DS |
1350 | PNG_WARNING_PARAMETERS(p) |
1351 | ||
970f6abe VZ |
1352 | png_free(png_ptr, png_ptr->chunkdata); |
1353 | png_ptr->chunkdata = NULL; | |
b61cc19c | 1354 | |
9c0d9ce3 DS |
1355 | png_warning_parameter_unsigned(p, 1, PNG_NUMBER_FORMAT_u, profile_size); |
1356 | png_warning_parameter_unsigned(p, 2, PNG_NUMBER_FORMAT_u, profile_length); | |
1357 | png_formatted_warning(png_ptr, p, | |
1358 | "Ignoring iCCP chunk with declared size = @1 and actual length = @2"); | |
0272a10d VZ |
1359 | return; |
1360 | } | |
1361 | ||
970f6abe | 1362 | png_set_iCCP(png_ptr, info_ptr, png_ptr->chunkdata, |
9c0d9ce3 DS |
1363 | compression_type, (png_bytep)png_ptr->chunkdata + prefix_length, |
1364 | profile_size); | |
970f6abe VZ |
1365 | png_free(png_ptr, png_ptr->chunkdata); |
1366 | png_ptr->chunkdata = NULL; | |
0272a10d VZ |
1367 | } |
1368 | #endif /* PNG_READ_iCCP_SUPPORTED */ | |
1369 | ||
b61cc19c | 1370 | #ifdef PNG_READ_sPLT_SUPPORTED |
0272a10d VZ |
1371 | void /* PRIVATE */ |
1372 | png_handle_sPLT(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) | |
1373 | /* Note: this does not properly handle chunks that are > 64K under DOS */ | |
1374 | { | |
0272a10d VZ |
1375 | png_bytep entry_start; |
1376 | png_sPLT_t new_palette; | |
0272a10d | 1377 | png_sPLT_entryp pp; |
9c0d9ce3 DS |
1378 | png_uint_32 data_length; |
1379 | int entry_size, i; | |
0272a10d VZ |
1380 | png_uint_32 skip = 0; |
1381 | png_size_t slength; | |
9c0d9ce3 DS |
1382 | png_uint_32 dl; |
1383 | png_size_t max_dl; | |
0272a10d | 1384 | |
970f6abe | 1385 | png_debug(1, "in png_handle_sPLT"); |
0272a10d | 1386 | |
b61cc19c PC |
1387 | #ifdef PNG_USER_LIMITS_SUPPORTED |
1388 | ||
1389 | if (png_ptr->user_chunk_cache_max != 0) | |
1390 | { | |
1391 | if (png_ptr->user_chunk_cache_max == 1) | |
1392 | { | |
1393 | png_crc_finish(png_ptr, length); | |
1394 | return; | |
1395 | } | |
9c0d9ce3 | 1396 | |
b61cc19c PC |
1397 | if (--png_ptr->user_chunk_cache_max == 1) |
1398 | { | |
1399 | png_warning(png_ptr, "No space in chunk cache for sPLT"); | |
1400 | png_crc_finish(png_ptr, length); | |
1401 | return; | |
1402 | } | |
1403 | } | |
1404 | #endif | |
1405 | ||
0272a10d VZ |
1406 | if (!(png_ptr->mode & PNG_HAVE_IHDR)) |
1407 | png_error(png_ptr, "Missing IHDR before sPLT"); | |
9c0d9ce3 | 1408 | |
0272a10d VZ |
1409 | else if (png_ptr->mode & PNG_HAVE_IDAT) |
1410 | { | |
1411 | png_warning(png_ptr, "Invalid sPLT after IDAT"); | |
1412 | png_crc_finish(png_ptr, length); | |
1413 | return; | |
1414 | } | |
1415 | ||
1416 | #ifdef PNG_MAX_MALLOC_64K | |
1417 | if (length > (png_uint_32)65535L) | |
1418 | { | |
1419 | png_warning(png_ptr, "sPLT chunk too large to fit in memory"); | |
1420 | skip = length - (png_uint_32)65535L; | |
1421 | length = (png_uint_32)65535L; | |
1422 | } | |
1423 | #endif | |
1424 | ||
970f6abe VZ |
1425 | png_free(png_ptr, png_ptr->chunkdata); |
1426 | png_ptr->chunkdata = (png_charp)png_malloc(png_ptr, length + 1); | |
9c0d9ce3 DS |
1427 | |
1428 | /* WARNING: this may break if size_t is less than 32 bits; it is assumed | |
1429 | * that the PNG_MAX_MALLOC_64K test is enabled in this case, but this is a | |
1430 | * potential breakage point if the types in pngconf.h aren't exactly right. | |
1431 | */ | |
0272a10d | 1432 | slength = (png_size_t)length; |
970f6abe | 1433 | png_crc_read(png_ptr, (png_bytep)png_ptr->chunkdata, slength); |
0272a10d VZ |
1434 | |
1435 | if (png_crc_finish(png_ptr, skip)) | |
1436 | { | |
970f6abe VZ |
1437 | png_free(png_ptr, png_ptr->chunkdata); |
1438 | png_ptr->chunkdata = NULL; | |
0272a10d VZ |
1439 | return; |
1440 | } | |
1441 | ||
970f6abe | 1442 | png_ptr->chunkdata[slength] = 0x00; |
0272a10d | 1443 | |
b61cc19c PC |
1444 | for (entry_start = (png_bytep)png_ptr->chunkdata; *entry_start; |
1445 | entry_start++) | |
1446 | /* Empty loop to find end of name */ ; | |
9c0d9ce3 | 1447 | |
0272a10d VZ |
1448 | ++entry_start; |
1449 | ||
b61cc19c | 1450 | /* A sample depth should follow the separator, and we should be on it */ |
970f6abe | 1451 | if (entry_start > (png_bytep)png_ptr->chunkdata + slength - 2) |
0272a10d | 1452 | { |
970f6abe VZ |
1453 | png_free(png_ptr, png_ptr->chunkdata); |
1454 | png_ptr->chunkdata = NULL; | |
0272a10d VZ |
1455 | png_warning(png_ptr, "malformed sPLT chunk"); |
1456 | return; | |
1457 | } | |
1458 | ||
1459 | new_palette.depth = *entry_start++; | |
1460 | entry_size = (new_palette.depth == 8 ? 6 : 10); | |
9c0d9ce3 DS |
1461 | /* This must fit in a png_uint_32 because it is derived from the original |
1462 | * chunk data length (and use 'length', not 'slength' here for clarity - | |
1463 | * they are guaranteed to be the same, see the tests above.) | |
1464 | */ | |
1465 | data_length = length - (png_uint_32)(entry_start - | |
1466 | (png_bytep)png_ptr->chunkdata); | |
0272a10d | 1467 | |
b61cc19c | 1468 | /* Integrity-check the data length */ |
0272a10d VZ |
1469 | if (data_length % entry_size) |
1470 | { | |
970f6abe VZ |
1471 | png_free(png_ptr, png_ptr->chunkdata); |
1472 | png_ptr->chunkdata = NULL; | |
0272a10d VZ |
1473 | png_warning(png_ptr, "sPLT chunk has bad length"); |
1474 | return; | |
1475 | } | |
1476 | ||
9c0d9ce3 DS |
1477 | dl = (png_int_32)(data_length / entry_size); |
1478 | max_dl = PNG_SIZE_MAX / png_sizeof(png_sPLT_entry); | |
1479 | ||
1480 | if (dl > max_dl) | |
0272a10d VZ |
1481 | { |
1482 | png_warning(png_ptr, "sPLT chunk too long"); | |
1483 | return; | |
1484 | } | |
9c0d9ce3 DS |
1485 | |
1486 | new_palette.nentries = (png_int_32)(data_length / entry_size); | |
1487 | ||
0272a10d VZ |
1488 | new_palette.entries = (png_sPLT_entryp)png_malloc_warn( |
1489 | png_ptr, new_palette.nentries * png_sizeof(png_sPLT_entry)); | |
9c0d9ce3 | 1490 | |
0272a10d VZ |
1491 | if (new_palette.entries == NULL) |
1492 | { | |
1493 | png_warning(png_ptr, "sPLT chunk requires too much memory"); | |
1494 | return; | |
1495 | } | |
1496 | ||
b61cc19c | 1497 | #ifdef PNG_POINTER_INDEXING_SUPPORTED |
0272a10d VZ |
1498 | for (i = 0; i < new_palette.nentries; i++) |
1499 | { | |
b61cc19c | 1500 | pp = new_palette.entries + i; |
0272a10d VZ |
1501 | |
1502 | if (new_palette.depth == 8) | |
1503 | { | |
9c0d9ce3 DS |
1504 | pp->red = *entry_start++; |
1505 | pp->green = *entry_start++; | |
1506 | pp->blue = *entry_start++; | |
1507 | pp->alpha = *entry_start++; | |
0272a10d | 1508 | } |
9c0d9ce3 | 1509 | |
0272a10d VZ |
1510 | else |
1511 | { | |
9c0d9ce3 DS |
1512 | pp->red = png_get_uint_16(entry_start); entry_start += 2; |
1513 | pp->green = png_get_uint_16(entry_start); entry_start += 2; | |
1514 | pp->blue = png_get_uint_16(entry_start); entry_start += 2; | |
1515 | pp->alpha = png_get_uint_16(entry_start); entry_start += 2; | |
0272a10d | 1516 | } |
9c0d9ce3 | 1517 | |
0272a10d VZ |
1518 | pp->frequency = png_get_uint_16(entry_start); entry_start += 2; |
1519 | } | |
1520 | #else | |
1521 | pp = new_palette.entries; | |
9c0d9ce3 | 1522 | |
0272a10d VZ |
1523 | for (i = 0; i < new_palette.nentries; i++) |
1524 | { | |
1525 | ||
1526 | if (new_palette.depth == 8) | |
1527 | { | |
9c0d9ce3 DS |
1528 | pp[i].red = *entry_start++; |
1529 | pp[i].green = *entry_start++; | |
1530 | pp[i].blue = *entry_start++; | |
1531 | pp[i].alpha = *entry_start++; | |
0272a10d | 1532 | } |
9c0d9ce3 | 1533 | |
0272a10d VZ |
1534 | else |
1535 | { | |
9c0d9ce3 DS |
1536 | pp[i].red = png_get_uint_16(entry_start); entry_start += 2; |
1537 | pp[i].green = png_get_uint_16(entry_start); entry_start += 2; | |
1538 | pp[i].blue = png_get_uint_16(entry_start); entry_start += 2; | |
1539 | pp[i].alpha = png_get_uint_16(entry_start); entry_start += 2; | |
0272a10d | 1540 | } |
9c0d9ce3 DS |
1541 | |
1542 | pp[i].frequency = png_get_uint_16(entry_start); entry_start += 2; | |
0272a10d VZ |
1543 | } |
1544 | #endif | |
1545 | ||
b61cc19c | 1546 | /* Discard all chunk data except the name and stash that */ |
970f6abe | 1547 | new_palette.name = png_ptr->chunkdata; |
0272a10d VZ |
1548 | |
1549 | png_set_sPLT(png_ptr, info_ptr, &new_palette, 1); | |
1550 | ||
970f6abe VZ |
1551 | png_free(png_ptr, png_ptr->chunkdata); |
1552 | png_ptr->chunkdata = NULL; | |
0272a10d VZ |
1553 | png_free(png_ptr, new_palette.entries); |
1554 | } | |
1555 | #endif /* PNG_READ_sPLT_SUPPORTED */ | |
1556 | ||
b61cc19c | 1557 | #ifdef PNG_READ_tRNS_SUPPORTED |
0272a10d VZ |
1558 | void /* PRIVATE */ |
1559 | png_handle_tRNS(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) | |
1560 | { | |
1561 | png_byte readbuf[PNG_MAX_PALETTE_LENGTH]; | |
0272a10d | 1562 | |
970f6abe | 1563 | png_debug(1, "in png_handle_tRNS"); |
0272a10d VZ |
1564 | |
1565 | if (!(png_ptr->mode & PNG_HAVE_IHDR)) | |
1566 | png_error(png_ptr, "Missing IHDR before tRNS"); | |
9c0d9ce3 | 1567 | |
0272a10d VZ |
1568 | else if (png_ptr->mode & PNG_HAVE_IDAT) |
1569 | { | |
1570 | png_warning(png_ptr, "Invalid tRNS after IDAT"); | |
1571 | png_crc_finish(png_ptr, length); | |
1572 | return; | |
1573 | } | |
9c0d9ce3 | 1574 | |
0272a10d VZ |
1575 | else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_tRNS)) |
1576 | { | |
1577 | png_warning(png_ptr, "Duplicate tRNS chunk"); | |
1578 | png_crc_finish(png_ptr, length); | |
1579 | return; | |
1580 | } | |
1581 | ||
1582 | if (png_ptr->color_type == PNG_COLOR_TYPE_GRAY) | |
1583 | { | |
1584 | png_byte buf[2]; | |
1585 | ||
1586 | if (length != 2) | |
1587 | { | |
1588 | png_warning(png_ptr, "Incorrect tRNS chunk length"); | |
1589 | png_crc_finish(png_ptr, length); | |
1590 | return; | |
1591 | } | |
1592 | ||
1593 | png_crc_read(png_ptr, buf, 2); | |
1594 | png_ptr->num_trans = 1; | |
b61cc19c | 1595 | png_ptr->trans_color.gray = png_get_uint_16(buf); |
0272a10d | 1596 | } |
9c0d9ce3 | 1597 | |
0272a10d VZ |
1598 | else if (png_ptr->color_type == PNG_COLOR_TYPE_RGB) |
1599 | { | |
1600 | png_byte buf[6]; | |
1601 | ||
1602 | if (length != 6) | |
1603 | { | |
1604 | png_warning(png_ptr, "Incorrect tRNS chunk length"); | |
1605 | png_crc_finish(png_ptr, length); | |
1606 | return; | |
1607 | } | |
9c0d9ce3 | 1608 | |
0272a10d VZ |
1609 | png_crc_read(png_ptr, buf, (png_size_t)length); |
1610 | png_ptr->num_trans = 1; | |
b61cc19c PC |
1611 | png_ptr->trans_color.red = png_get_uint_16(buf); |
1612 | png_ptr->trans_color.green = png_get_uint_16(buf + 2); | |
1613 | png_ptr->trans_color.blue = png_get_uint_16(buf + 4); | |
0272a10d | 1614 | } |
9c0d9ce3 | 1615 | |
0272a10d VZ |
1616 | else if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE) |
1617 | { | |
1618 | if (!(png_ptr->mode & PNG_HAVE_PLTE)) | |
1619 | { | |
1620 | /* Should be an error, but we can cope with it. */ | |
1621 | png_warning(png_ptr, "Missing PLTE before tRNS"); | |
1622 | } | |
9c0d9ce3 | 1623 | |
0272a10d VZ |
1624 | if (length > (png_uint_32)png_ptr->num_palette || |
1625 | length > PNG_MAX_PALETTE_LENGTH) | |
1626 | { | |
1627 | png_warning(png_ptr, "Incorrect tRNS chunk length"); | |
1628 | png_crc_finish(png_ptr, length); | |
1629 | return; | |
1630 | } | |
9c0d9ce3 | 1631 | |
0272a10d VZ |
1632 | if (length == 0) |
1633 | { | |
1634 | png_warning(png_ptr, "Zero length tRNS chunk"); | |
1635 | png_crc_finish(png_ptr, length); | |
1636 | return; | |
1637 | } | |
9c0d9ce3 | 1638 | |
0272a10d VZ |
1639 | png_crc_read(png_ptr, readbuf, (png_size_t)length); |
1640 | png_ptr->num_trans = (png_uint_16)length; | |
1641 | } | |
9c0d9ce3 | 1642 | |
0272a10d VZ |
1643 | else |
1644 | { | |
1645 | png_warning(png_ptr, "tRNS chunk not allowed with alpha channel"); | |
1646 | png_crc_finish(png_ptr, length); | |
1647 | return; | |
1648 | } | |
1649 | ||
1650 | if (png_crc_finish(png_ptr, 0)) | |
1651 | { | |
1652 | png_ptr->num_trans = 0; | |
1653 | return; | |
1654 | } | |
1655 | ||
1656 | png_set_tRNS(png_ptr, info_ptr, readbuf, png_ptr->num_trans, | |
9c0d9ce3 | 1657 | &(png_ptr->trans_color)); |
0272a10d VZ |
1658 | } |
1659 | #endif | |
1660 | ||
b61cc19c | 1661 | #ifdef PNG_READ_bKGD_SUPPORTED |
0272a10d VZ |
1662 | void /* PRIVATE */ |
1663 | png_handle_bKGD(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) | |
1664 | { | |
1665 | png_size_t truelen; | |
1666 | png_byte buf[6]; | |
9c0d9ce3 | 1667 | png_color_16 background; |
0272a10d | 1668 | |
970f6abe | 1669 | png_debug(1, "in png_handle_bKGD"); |
0272a10d VZ |
1670 | |
1671 | if (!(png_ptr->mode & PNG_HAVE_IHDR)) | |
1672 | png_error(png_ptr, "Missing IHDR before bKGD"); | |
9c0d9ce3 | 1673 | |
0272a10d VZ |
1674 | else if (png_ptr->mode & PNG_HAVE_IDAT) |
1675 | { | |
1676 | png_warning(png_ptr, "Invalid bKGD after IDAT"); | |
1677 | png_crc_finish(png_ptr, length); | |
1678 | return; | |
1679 | } | |
9c0d9ce3 | 1680 | |
0272a10d | 1681 | else if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE && |
9c0d9ce3 | 1682 | !(png_ptr->mode & PNG_HAVE_PLTE)) |
0272a10d VZ |
1683 | { |
1684 | png_warning(png_ptr, "Missing PLTE before bKGD"); | |
1685 | png_crc_finish(png_ptr, length); | |
1686 | return; | |
1687 | } | |
9c0d9ce3 | 1688 | |
0272a10d VZ |
1689 | else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_bKGD)) |
1690 | { | |
1691 | png_warning(png_ptr, "Duplicate bKGD chunk"); | |
1692 | png_crc_finish(png_ptr, length); | |
1693 | return; | |
1694 | } | |
1695 | ||
1696 | if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE) | |
1697 | truelen = 1; | |
9c0d9ce3 | 1698 | |
0272a10d VZ |
1699 | else if (png_ptr->color_type & PNG_COLOR_MASK_COLOR) |
1700 | truelen = 6; | |
9c0d9ce3 | 1701 | |
0272a10d VZ |
1702 | else |
1703 | truelen = 2; | |
1704 | ||
1705 | if (length != truelen) | |
1706 | { | |
1707 | png_warning(png_ptr, "Incorrect bKGD chunk length"); | |
1708 | png_crc_finish(png_ptr, length); | |
1709 | return; | |
1710 | } | |
1711 | ||
1712 | png_crc_read(png_ptr, buf, truelen); | |
9c0d9ce3 | 1713 | |
0272a10d VZ |
1714 | if (png_crc_finish(png_ptr, 0)) |
1715 | return; | |
1716 | ||
1717 | /* We convert the index value into RGB components so that we can allow | |
1718 | * arbitrary RGB values for background when we have transparency, and | |
1719 | * so it is easy to determine the RGB values of the background color | |
9c0d9ce3 DS |
1720 | * from the info_ptr struct. |
1721 | */ | |
0272a10d VZ |
1722 | if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE) |
1723 | { | |
9c0d9ce3 DS |
1724 | background.index = buf[0]; |
1725 | ||
970f6abe | 1726 | if (info_ptr && info_ptr->num_palette) |
0272a10d | 1727 | { |
9c0d9ce3 DS |
1728 | if (buf[0] >= info_ptr->num_palette) |
1729 | { | |
1730 | png_warning(png_ptr, "Incorrect bKGD chunk index value"); | |
1731 | return; | |
1732 | } | |
1733 | ||
1734 | background.red = (png_uint_16)png_ptr->palette[buf[0]].red; | |
1735 | background.green = (png_uint_16)png_ptr->palette[buf[0]].green; | |
1736 | background.blue = (png_uint_16)png_ptr->palette[buf[0]].blue; | |
0272a10d | 1737 | } |
9c0d9ce3 DS |
1738 | |
1739 | else | |
1740 | background.red = background.green = background.blue = 0; | |
1741 | ||
1742 | background.gray = 0; | |
0272a10d | 1743 | } |
9c0d9ce3 | 1744 | |
0272a10d VZ |
1745 | else if (!(png_ptr->color_type & PNG_COLOR_MASK_COLOR)) /* GRAY */ |
1746 | { | |
9c0d9ce3 DS |
1747 | background.index = 0; |
1748 | background.red = | |
1749 | background.green = | |
1750 | background.blue = | |
1751 | background.gray = png_get_uint_16(buf); | |
0272a10d | 1752 | } |
9c0d9ce3 | 1753 | |
0272a10d VZ |
1754 | else |
1755 | { | |
9c0d9ce3 DS |
1756 | background.index = 0; |
1757 | background.red = png_get_uint_16(buf); | |
1758 | background.green = png_get_uint_16(buf + 2); | |
1759 | background.blue = png_get_uint_16(buf + 4); | |
1760 | background.gray = 0; | |
0272a10d VZ |
1761 | } |
1762 | ||
9c0d9ce3 | 1763 | png_set_bKGD(png_ptr, info_ptr, &background); |
0272a10d VZ |
1764 | } |
1765 | #endif | |
1766 | ||
b61cc19c | 1767 | #ifdef PNG_READ_hIST_SUPPORTED |
0272a10d VZ |
1768 | void /* PRIVATE */ |
1769 | png_handle_hIST(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) | |
1770 | { | |
1771 | unsigned int num, i; | |
1772 | png_uint_16 readbuf[PNG_MAX_PALETTE_LENGTH]; | |
1773 | ||
970f6abe | 1774 | png_debug(1, "in png_handle_hIST"); |
0272a10d VZ |
1775 | |
1776 | if (!(png_ptr->mode & PNG_HAVE_IHDR)) | |
1777 | png_error(png_ptr, "Missing IHDR before hIST"); | |
9c0d9ce3 | 1778 | |
0272a10d VZ |
1779 | else if (png_ptr->mode & PNG_HAVE_IDAT) |
1780 | { | |
1781 | png_warning(png_ptr, "Invalid hIST after IDAT"); | |
1782 | png_crc_finish(png_ptr, length); | |
1783 | return; | |
1784 | } | |
9c0d9ce3 | 1785 | |
0272a10d VZ |
1786 | else if (!(png_ptr->mode & PNG_HAVE_PLTE)) |
1787 | { | |
1788 | png_warning(png_ptr, "Missing PLTE before hIST"); | |
1789 | png_crc_finish(png_ptr, length); | |
1790 | return; | |
1791 | } | |
9c0d9ce3 | 1792 | |
0272a10d VZ |
1793 | else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_hIST)) |
1794 | { | |
1795 | png_warning(png_ptr, "Duplicate hIST chunk"); | |
1796 | png_crc_finish(png_ptr, length); | |
1797 | return; | |
1798 | } | |
1799 | ||
1800 | num = length / 2 ; | |
9c0d9ce3 DS |
1801 | |
1802 | if (num != (unsigned int)png_ptr->num_palette || num > | |
1803 | (unsigned int)PNG_MAX_PALETTE_LENGTH) | |
0272a10d VZ |
1804 | { |
1805 | png_warning(png_ptr, "Incorrect hIST chunk length"); | |
1806 | png_crc_finish(png_ptr, length); | |
1807 | return; | |
1808 | } | |
1809 | ||
1810 | for (i = 0; i < num; i++) | |
1811 | { | |
1812 | png_byte buf[2]; | |
1813 | ||
1814 | png_crc_read(png_ptr, buf, 2); | |
1815 | readbuf[i] = png_get_uint_16(buf); | |
1816 | } | |
1817 | ||
1818 | if (png_crc_finish(png_ptr, 0)) | |
1819 | return; | |
1820 | ||
1821 | png_set_hIST(png_ptr, info_ptr, readbuf); | |
1822 | } | |
1823 | #endif | |
1824 | ||
b61cc19c | 1825 | #ifdef PNG_READ_pHYs_SUPPORTED |
0272a10d VZ |
1826 | void /* PRIVATE */ |
1827 | png_handle_pHYs(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) | |
1828 | { | |
1829 | png_byte buf[9]; | |
1830 | png_uint_32 res_x, res_y; | |
1831 | int unit_type; | |
1832 | ||
970f6abe | 1833 | png_debug(1, "in png_handle_pHYs"); |
0272a10d VZ |
1834 | |
1835 | if (!(png_ptr->mode & PNG_HAVE_IHDR)) | |
1836 | png_error(png_ptr, "Missing IHDR before pHYs"); | |
9c0d9ce3 | 1837 | |
0272a10d VZ |
1838 | else if (png_ptr->mode & PNG_HAVE_IDAT) |
1839 | { | |
1840 | png_warning(png_ptr, "Invalid pHYs after IDAT"); | |
1841 | png_crc_finish(png_ptr, length); | |
1842 | return; | |
1843 | } | |
9c0d9ce3 | 1844 | |
0272a10d VZ |
1845 | else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_pHYs)) |
1846 | { | |
1847 | png_warning(png_ptr, "Duplicate pHYs chunk"); | |
1848 | png_crc_finish(png_ptr, length); | |
1849 | return; | |
1850 | } | |
1851 | ||
1852 | if (length != 9) | |
1853 | { | |
1854 | png_warning(png_ptr, "Incorrect pHYs chunk length"); | |
1855 | png_crc_finish(png_ptr, length); | |
1856 | return; | |
1857 | } | |
1858 | ||
1859 | png_crc_read(png_ptr, buf, 9); | |
9c0d9ce3 | 1860 | |
0272a10d VZ |
1861 | if (png_crc_finish(png_ptr, 0)) |
1862 | return; | |
1863 | ||
1864 | res_x = png_get_uint_32(buf); | |
1865 | res_y = png_get_uint_32(buf + 4); | |
1866 | unit_type = buf[8]; | |
1867 | png_set_pHYs(png_ptr, info_ptr, res_x, res_y, unit_type); | |
1868 | } | |
1869 | #endif | |
1870 | ||
b61cc19c | 1871 | #ifdef PNG_READ_oFFs_SUPPORTED |
0272a10d VZ |
1872 | void /* PRIVATE */ |
1873 | png_handle_oFFs(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) | |
1874 | { | |
1875 | png_byte buf[9]; | |
1876 | png_int_32 offset_x, offset_y; | |
1877 | int unit_type; | |
1878 | ||
970f6abe | 1879 | png_debug(1, "in png_handle_oFFs"); |
0272a10d VZ |
1880 | |
1881 | if (!(png_ptr->mode & PNG_HAVE_IHDR)) | |
1882 | png_error(png_ptr, "Missing IHDR before oFFs"); | |
9c0d9ce3 | 1883 | |
0272a10d VZ |
1884 | else if (png_ptr->mode & PNG_HAVE_IDAT) |
1885 | { | |
1886 | png_warning(png_ptr, "Invalid oFFs after IDAT"); | |
1887 | png_crc_finish(png_ptr, length); | |
1888 | return; | |
1889 | } | |
9c0d9ce3 | 1890 | |
0272a10d VZ |
1891 | else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_oFFs)) |
1892 | { | |
1893 | png_warning(png_ptr, "Duplicate oFFs chunk"); | |
1894 | png_crc_finish(png_ptr, length); | |
1895 | return; | |
1896 | } | |
1897 | ||
1898 | if (length != 9) | |
1899 | { | |
1900 | png_warning(png_ptr, "Incorrect oFFs chunk length"); | |
1901 | png_crc_finish(png_ptr, length); | |
1902 | return; | |
1903 | } | |
1904 | ||
1905 | png_crc_read(png_ptr, buf, 9); | |
9c0d9ce3 | 1906 | |
0272a10d VZ |
1907 | if (png_crc_finish(png_ptr, 0)) |
1908 | return; | |
1909 | ||
1910 | offset_x = png_get_int_32(buf); | |
1911 | offset_y = png_get_int_32(buf + 4); | |
1912 | unit_type = buf[8]; | |
1913 | png_set_oFFs(png_ptr, info_ptr, offset_x, offset_y, unit_type); | |
1914 | } | |
1915 | #endif | |
1916 | ||
b61cc19c PC |
1917 | #ifdef PNG_READ_pCAL_SUPPORTED |
1918 | /* Read the pCAL chunk (described in the PNG Extensions document) */ | |
0272a10d VZ |
1919 | void /* PRIVATE */ |
1920 | png_handle_pCAL(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) | |
1921 | { | |
0272a10d VZ |
1922 | png_int_32 X0, X1; |
1923 | png_byte type, nparams; | |
1924 | png_charp buf, units, endptr; | |
1925 | png_charpp params; | |
1926 | png_size_t slength; | |
1927 | int i; | |
1928 | ||
970f6abe | 1929 | png_debug(1, "in png_handle_pCAL"); |
0272a10d VZ |
1930 | |
1931 | if (!(png_ptr->mode & PNG_HAVE_IHDR)) | |
1932 | png_error(png_ptr, "Missing IHDR before pCAL"); | |
9c0d9ce3 | 1933 | |
0272a10d VZ |
1934 | else if (png_ptr->mode & PNG_HAVE_IDAT) |
1935 | { | |
1936 | png_warning(png_ptr, "Invalid pCAL after IDAT"); | |
1937 | png_crc_finish(png_ptr, length); | |
1938 | return; | |
1939 | } | |
9c0d9ce3 | 1940 | |
0272a10d VZ |
1941 | else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_pCAL)) |
1942 | { | |
1943 | png_warning(png_ptr, "Duplicate pCAL chunk"); | |
1944 | png_crc_finish(png_ptr, length); | |
1945 | return; | |
1946 | } | |
1947 | ||
9c0d9ce3 DS |
1948 | png_debug1(2, "Allocating and reading pCAL chunk data (%u bytes)", |
1949 | length + 1); | |
970f6abe VZ |
1950 | png_free(png_ptr, png_ptr->chunkdata); |
1951 | png_ptr->chunkdata = (png_charp)png_malloc_warn(png_ptr, length + 1); | |
9c0d9ce3 | 1952 | |
970f6abe | 1953 | if (png_ptr->chunkdata == NULL) |
9c0d9ce3 DS |
1954 | { |
1955 | png_warning(png_ptr, "No memory for pCAL purpose"); | |
1956 | return; | |
1957 | } | |
1958 | ||
0272a10d | 1959 | slength = (png_size_t)length; |
970f6abe | 1960 | png_crc_read(png_ptr, (png_bytep)png_ptr->chunkdata, slength); |
0272a10d VZ |
1961 | |
1962 | if (png_crc_finish(png_ptr, 0)) | |
1963 | { | |
970f6abe VZ |
1964 | png_free(png_ptr, png_ptr->chunkdata); |
1965 | png_ptr->chunkdata = NULL; | |
0272a10d VZ |
1966 | return; |
1967 | } | |
1968 | ||
b61cc19c | 1969 | png_ptr->chunkdata[slength] = 0x00; /* Null terminate the last string */ |
0272a10d | 1970 | |
970f6abe VZ |
1971 | png_debug(3, "Finding end of pCAL purpose string"); |
1972 | for (buf = png_ptr->chunkdata; *buf; buf++) | |
b61cc19c | 1973 | /* Empty loop */ ; |
0272a10d | 1974 | |
970f6abe | 1975 | endptr = png_ptr->chunkdata + slength; |
0272a10d VZ |
1976 | |
1977 | /* We need to have at least 12 bytes after the purpose string | |
9c0d9ce3 DS |
1978 | * in order to get the parameter information. |
1979 | */ | |
0272a10d VZ |
1980 | if (endptr <= buf + 12) |
1981 | { | |
1982 | png_warning(png_ptr, "Invalid pCAL data"); | |
970f6abe VZ |
1983 | png_free(png_ptr, png_ptr->chunkdata); |
1984 | png_ptr->chunkdata = NULL; | |
0272a10d VZ |
1985 | return; |
1986 | } | |
1987 | ||
970f6abe | 1988 | png_debug(3, "Reading pCAL X0, X1, type, nparams, and units"); |
0272a10d VZ |
1989 | X0 = png_get_int_32((png_bytep)buf+1); |
1990 | X1 = png_get_int_32((png_bytep)buf+5); | |
1991 | type = buf[9]; | |
1992 | nparams = buf[10]; | |
1993 | units = buf + 11; | |
1994 | ||
970f6abe | 1995 | png_debug(3, "Checking pCAL equation type and number of parameters"); |
0272a10d | 1996 | /* Check that we have the right number of parameters for known |
9c0d9ce3 DS |
1997 | * equation types. |
1998 | */ | |
0272a10d VZ |
1999 | if ((type == PNG_EQUATION_LINEAR && nparams != 2) || |
2000 | (type == PNG_EQUATION_BASE_E && nparams != 3) || | |
2001 | (type == PNG_EQUATION_ARBITRARY && nparams != 3) || | |
2002 | (type == PNG_EQUATION_HYPERBOLIC && nparams != 4)) | |
2003 | { | |
2004 | png_warning(png_ptr, "Invalid pCAL parameters for equation type"); | |
970f6abe VZ |
2005 | png_free(png_ptr, png_ptr->chunkdata); |
2006 | png_ptr->chunkdata = NULL; | |
0272a10d VZ |
2007 | return; |
2008 | } | |
9c0d9ce3 | 2009 | |
0272a10d VZ |
2010 | else if (type >= PNG_EQUATION_LAST) |
2011 | { | |
2012 | png_warning(png_ptr, "Unrecognized equation type for pCAL chunk"); | |
2013 | } | |
2014 | ||
2015 | for (buf = units; *buf; buf++) | |
2016 | /* Empty loop to move past the units string. */ ; | |
2017 | ||
970f6abe | 2018 | png_debug(3, "Allocating pCAL parameters array"); |
9c0d9ce3 | 2019 | |
970f6abe | 2020 | params = (png_charpp)png_malloc_warn(png_ptr, |
9c0d9ce3 DS |
2021 | (png_size_t)(nparams * png_sizeof(png_charp))); |
2022 | ||
0272a10d | 2023 | if (params == NULL) |
9c0d9ce3 DS |
2024 | { |
2025 | png_free(png_ptr, png_ptr->chunkdata); | |
2026 | png_ptr->chunkdata = NULL; | |
2027 | png_warning(png_ptr, "No memory for pCAL params"); | |
2028 | return; | |
2029 | } | |
0272a10d VZ |
2030 | |
2031 | /* Get pointers to the start of each parameter string. */ | |
2032 | for (i = 0; i < (int)nparams; i++) | |
2033 | { | |
2034 | buf++; /* Skip the null string terminator from previous parameter. */ | |
2035 | ||
970f6abe | 2036 | png_debug1(3, "Reading pCAL parameter %d", i); |
9c0d9ce3 | 2037 | |
970f6abe | 2038 | for (params[i] = buf; buf <= endptr && *buf != 0x00; buf++) |
0272a10d VZ |
2039 | /* Empty loop to move past each parameter string */ ; |
2040 | ||
2041 | /* Make sure we haven't run out of data yet */ | |
2042 | if (buf > endptr) | |
2043 | { | |
2044 | png_warning(png_ptr, "Invalid pCAL data"); | |
970f6abe VZ |
2045 | png_free(png_ptr, png_ptr->chunkdata); |
2046 | png_ptr->chunkdata = NULL; | |
0272a10d VZ |
2047 | png_free(png_ptr, params); |
2048 | return; | |
2049 | } | |
2050 | } | |
2051 | ||
970f6abe | 2052 | png_set_pCAL(png_ptr, info_ptr, png_ptr->chunkdata, X0, X1, type, nparams, |
0272a10d VZ |
2053 | units, params); |
2054 | ||
970f6abe VZ |
2055 | png_free(png_ptr, png_ptr->chunkdata); |
2056 | png_ptr->chunkdata = NULL; | |
0272a10d VZ |
2057 | png_free(png_ptr, params); |
2058 | } | |
2059 | #endif | |
2060 | ||
b61cc19c PC |
2061 | #ifdef PNG_READ_sCAL_SUPPORTED |
2062 | /* Read the sCAL chunk */ | |
0272a10d VZ |
2063 | void /* PRIVATE */ |
2064 | png_handle_sCAL(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) | |
2065 | { | |
9c0d9ce3 DS |
2066 | png_size_t slength, i; |
2067 | int state; | |
0272a10d | 2068 | |
970f6abe | 2069 | png_debug(1, "in png_handle_sCAL"); |
0272a10d VZ |
2070 | |
2071 | if (!(png_ptr->mode & PNG_HAVE_IHDR)) | |
2072 | png_error(png_ptr, "Missing IHDR before sCAL"); | |
9c0d9ce3 | 2073 | |
0272a10d VZ |
2074 | else if (png_ptr->mode & PNG_HAVE_IDAT) |
2075 | { | |
2076 | png_warning(png_ptr, "Invalid sCAL after IDAT"); | |
2077 | png_crc_finish(png_ptr, length); | |
2078 | return; | |
2079 | } | |
9c0d9ce3 | 2080 | |
0272a10d VZ |
2081 | else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_sCAL)) |
2082 | { | |
2083 | png_warning(png_ptr, "Duplicate sCAL chunk"); | |
2084 | png_crc_finish(png_ptr, length); | |
2085 | return; | |
2086 | } | |
2087 | ||
9c0d9ce3 DS |
2088 | /* Need unit type, width, \0, height: minimum 4 bytes */ |
2089 | else if (length < 4) | |
2090 | { | |
2091 | png_warning(png_ptr, "sCAL chunk too short"); | |
2092 | png_crc_finish(png_ptr, length); | |
2093 | return; | |
2094 | } | |
2095 | ||
2096 | png_debug1(2, "Allocating and reading sCAL chunk data (%u bytes)", | |
0272a10d | 2097 | length + 1); |
9c0d9ce3 | 2098 | |
970f6abe | 2099 | png_ptr->chunkdata = (png_charp)png_malloc_warn(png_ptr, length + 1); |
9c0d9ce3 | 2100 | |
970f6abe VZ |
2101 | if (png_ptr->chunkdata == NULL) |
2102 | { | |
2103 | png_warning(png_ptr, "Out of memory while processing sCAL chunk"); | |
b61cc19c | 2104 | png_crc_finish(png_ptr, length); |
970f6abe VZ |
2105 | return; |
2106 | } | |
9c0d9ce3 | 2107 | |
0272a10d | 2108 | slength = (png_size_t)length; |
970f6abe | 2109 | png_crc_read(png_ptr, (png_bytep)png_ptr->chunkdata, slength); |
9c0d9ce3 | 2110 | png_ptr->chunkdata[slength] = 0x00; /* Null terminate the last string */ |
0272a10d VZ |
2111 | |
2112 | if (png_crc_finish(png_ptr, 0)) | |
2113 | { | |
970f6abe VZ |
2114 | png_free(png_ptr, png_ptr->chunkdata); |
2115 | png_ptr->chunkdata = NULL; | |
0272a10d VZ |
2116 | return; |
2117 | } | |
2118 | ||
9c0d9ce3 DS |
2119 | /* Validate the unit. */ |
2120 | if (png_ptr->chunkdata[0] != 1 && png_ptr->chunkdata[0] != 2) | |
0272a10d | 2121 | { |
9c0d9ce3 | 2122 | png_warning(png_ptr, "Invalid sCAL ignored: invalid unit"); |
b61cc19c PC |
2123 | png_free(png_ptr, png_ptr->chunkdata); |
2124 | png_ptr->chunkdata = NULL; | |
970f6abe | 2125 | return; |
0272a10d | 2126 | } |
0272a10d | 2127 | |
9c0d9ce3 DS |
2128 | /* Validate the ASCII numbers, need two ASCII numbers separated by |
2129 | * a '\0' and they need to fit exactly in the chunk data. | |
2130 | */ | |
2131 | i = 1; | |
2132 | state = 0; | |
0272a10d | 2133 | |
9c0d9ce3 DS |
2134 | if (!png_check_fp_number(png_ptr->chunkdata, slength, &state, &i) || |
2135 | i >= slength || png_ptr->chunkdata[i++] != 0) | |
2136 | png_warning(png_ptr, "Invalid sCAL chunk ignored: bad width format"); | |
970f6abe | 2137 | |
9c0d9ce3 DS |
2138 | else if (!PNG_FP_IS_POSITIVE(state)) |
2139 | png_warning(png_ptr, "Invalid sCAL chunk ignored: non-positive width"); | |
0272a10d | 2140 | |
9c0d9ce3 | 2141 | else |
0272a10d | 2142 | { |
9c0d9ce3 | 2143 | png_size_t heighti = i; |
0272a10d | 2144 | |
9c0d9ce3 DS |
2145 | state = 0; |
2146 | if (!png_check_fp_number(png_ptr->chunkdata, slength, &state, &i) || | |
2147 | i != slength) | |
2148 | png_warning(png_ptr, "Invalid sCAL chunk ignored: bad height format"); | |
0272a10d | 2149 | |
9c0d9ce3 DS |
2150 | else if (!PNG_FP_IS_POSITIVE(state)) |
2151 | png_warning(png_ptr, | |
2152 | "Invalid sCAL chunk ignored: non-positive height"); | |
0272a10d | 2153 | |
9c0d9ce3 DS |
2154 | else |
2155 | /* This is the (only) success case. */ | |
2156 | png_set_sCAL_s(png_ptr, info_ptr, png_ptr->chunkdata[0], | |
2157 | png_ptr->chunkdata+1, png_ptr->chunkdata+heighti); | |
2158 | } | |
2159 | ||
2160 | /* Clean up - just free the temporarily allocated buffer. */ | |
970f6abe VZ |
2161 | png_free(png_ptr, png_ptr->chunkdata); |
2162 | png_ptr->chunkdata = NULL; | |
0272a10d VZ |
2163 | } |
2164 | #endif | |
2165 | ||
b61cc19c | 2166 | #ifdef PNG_READ_tIME_SUPPORTED |
0272a10d VZ |
2167 | void /* PRIVATE */ |
2168 | png_handle_tIME(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) | |
2169 | { | |
2170 | png_byte buf[7]; | |
2171 | png_time mod_time; | |
2172 | ||
970f6abe | 2173 | png_debug(1, "in png_handle_tIME"); |
0272a10d VZ |
2174 | |
2175 | if (!(png_ptr->mode & PNG_HAVE_IHDR)) | |
2176 | png_error(png_ptr, "Out of place tIME chunk"); | |
9c0d9ce3 | 2177 | |
0272a10d VZ |
2178 | else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_tIME)) |
2179 | { | |
2180 | png_warning(png_ptr, "Duplicate tIME chunk"); | |
2181 | png_crc_finish(png_ptr, length); | |
2182 | return; | |
2183 | } | |
2184 | ||
2185 | if (png_ptr->mode & PNG_HAVE_IDAT) | |
2186 | png_ptr->mode |= PNG_AFTER_IDAT; | |
2187 | ||
2188 | if (length != 7) | |
2189 | { | |
2190 | png_warning(png_ptr, "Incorrect tIME chunk length"); | |
2191 | png_crc_finish(png_ptr, length); | |
2192 | return; | |
2193 | } | |
2194 | ||
2195 | png_crc_read(png_ptr, buf, 7); | |
9c0d9ce3 | 2196 | |
0272a10d VZ |
2197 | if (png_crc_finish(png_ptr, 0)) |
2198 | return; | |
2199 | ||
2200 | mod_time.second = buf[6]; | |
2201 | mod_time.minute = buf[5]; | |
2202 | mod_time.hour = buf[4]; | |
2203 | mod_time.day = buf[3]; | |
2204 | mod_time.month = buf[2]; | |
2205 | mod_time.year = png_get_uint_16(buf); | |
2206 | ||
2207 | png_set_tIME(png_ptr, info_ptr, &mod_time); | |
2208 | } | |
2209 | #endif | |
2210 | ||
b61cc19c | 2211 | #ifdef PNG_READ_tEXt_SUPPORTED |
0272a10d VZ |
2212 | /* Note: this does not properly handle chunks that are > 64K under DOS */ |
2213 | void /* PRIVATE */ | |
2214 | png_handle_tEXt(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) | |
2215 | { | |
2216 | png_textp text_ptr; | |
2217 | png_charp key; | |
2218 | png_charp text; | |
2219 | png_uint_32 skip = 0; | |
2220 | png_size_t slength; | |
2221 | int ret; | |
2222 | ||
970f6abe | 2223 | png_debug(1, "in png_handle_tEXt"); |
0272a10d | 2224 | |
b61cc19c PC |
2225 | #ifdef PNG_USER_LIMITS_SUPPORTED |
2226 | if (png_ptr->user_chunk_cache_max != 0) | |
2227 | { | |
2228 | if (png_ptr->user_chunk_cache_max == 1) | |
2229 | { | |
2230 | png_crc_finish(png_ptr, length); | |
2231 | return; | |
2232 | } | |
9c0d9ce3 | 2233 | |
b61cc19c PC |
2234 | if (--png_ptr->user_chunk_cache_max == 1) |
2235 | { | |
2236 | png_warning(png_ptr, "No space in chunk cache for tEXt"); | |
2237 | png_crc_finish(png_ptr, length); | |
2238 | return; | |
2239 | } | |
2240 | } | |
2241 | #endif | |
2242 | ||
0272a10d VZ |
2243 | if (!(png_ptr->mode & PNG_HAVE_IHDR)) |
2244 | png_error(png_ptr, "Missing IHDR before tEXt"); | |
2245 | ||
2246 | if (png_ptr->mode & PNG_HAVE_IDAT) | |
2247 | png_ptr->mode |= PNG_AFTER_IDAT; | |
2248 | ||
2249 | #ifdef PNG_MAX_MALLOC_64K | |
2250 | if (length > (png_uint_32)65535L) | |
2251 | { | |
2252 | png_warning(png_ptr, "tEXt chunk too large to fit in memory"); | |
2253 | skip = length - (png_uint_32)65535L; | |
2254 | length = (png_uint_32)65535L; | |
2255 | } | |
2256 | #endif | |
2257 | ||
970f6abe | 2258 | png_free(png_ptr, png_ptr->chunkdata); |
b61cc19c | 2259 | |
970f6abe | 2260 | png_ptr->chunkdata = (png_charp)png_malloc_warn(png_ptr, length + 1); |
9c0d9ce3 | 2261 | |
970f6abe | 2262 | if (png_ptr->chunkdata == NULL) |
0272a10d | 2263 | { |
b61cc19c | 2264 | png_warning(png_ptr, "No memory to process text chunk"); |
0272a10d VZ |
2265 | return; |
2266 | } | |
9c0d9ce3 | 2267 | |
0272a10d | 2268 | slength = (png_size_t)length; |
970f6abe | 2269 | png_crc_read(png_ptr, (png_bytep)png_ptr->chunkdata, slength); |
0272a10d VZ |
2270 | |
2271 | if (png_crc_finish(png_ptr, skip)) | |
2272 | { | |
970f6abe VZ |
2273 | png_free(png_ptr, png_ptr->chunkdata); |
2274 | png_ptr->chunkdata = NULL; | |
0272a10d VZ |
2275 | return; |
2276 | } | |
2277 | ||
970f6abe | 2278 | key = png_ptr->chunkdata; |
b61cc19c | 2279 | |
0272a10d VZ |
2280 | key[slength] = 0x00; |
2281 | ||
2282 | for (text = key; *text; text++) | |
b61cc19c | 2283 | /* Empty loop to find end of key */ ; |
0272a10d VZ |
2284 | |
2285 | if (text != key + slength) | |
2286 | text++; | |
2287 | ||
2288 | text_ptr = (png_textp)png_malloc_warn(png_ptr, | |
9c0d9ce3 DS |
2289 | png_sizeof(png_text)); |
2290 | ||
0272a10d VZ |
2291 | if (text_ptr == NULL) |
2292 | { | |
9c0d9ce3 DS |
2293 | png_warning(png_ptr, "Not enough memory to process text chunk"); |
2294 | png_free(png_ptr, png_ptr->chunkdata); | |
2295 | png_ptr->chunkdata = NULL; | |
2296 | return; | |
0272a10d | 2297 | } |
9c0d9ce3 | 2298 | |
0272a10d VZ |
2299 | text_ptr->compression = PNG_TEXT_COMPRESSION_NONE; |
2300 | text_ptr->key = key; | |
0272a10d VZ |
2301 | text_ptr->lang = NULL; |
2302 | text_ptr->lang_key = NULL; | |
2303 | text_ptr->itxt_length = 0; | |
0272a10d VZ |
2304 | text_ptr->text = text; |
2305 | text_ptr->text_length = png_strlen(text); | |
2306 | ||
970f6abe | 2307 | ret = png_set_text_2(png_ptr, info_ptr, text_ptr, 1); |
0272a10d | 2308 | |
970f6abe VZ |
2309 | png_free(png_ptr, png_ptr->chunkdata); |
2310 | png_ptr->chunkdata = NULL; | |
0272a10d | 2311 | png_free(png_ptr, text_ptr); |
9c0d9ce3 | 2312 | |
0272a10d | 2313 | if (ret) |
9c0d9ce3 | 2314 | png_warning(png_ptr, "Insufficient memory to process text chunk"); |
0272a10d VZ |
2315 | } |
2316 | #endif | |
2317 | ||
b61cc19c PC |
2318 | #ifdef PNG_READ_zTXt_SUPPORTED |
2319 | /* Note: this does not correctly handle chunks that are > 64K under DOS */ | |
0272a10d VZ |
2320 | void /* PRIVATE */ |
2321 | png_handle_zTXt(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) | |
2322 | { | |
2323 | png_textp text_ptr; | |
0272a10d VZ |
2324 | png_charp text; |
2325 | int comp_type; | |
2326 | int ret; | |
2327 | png_size_t slength, prefix_len, data_len; | |
2328 | ||
970f6abe | 2329 | png_debug(1, "in png_handle_zTXt"); |
b61cc19c PC |
2330 | |
2331 | #ifdef PNG_USER_LIMITS_SUPPORTED | |
2332 | if (png_ptr->user_chunk_cache_max != 0) | |
2333 | { | |
2334 | if (png_ptr->user_chunk_cache_max == 1) | |
2335 | { | |
2336 | png_crc_finish(png_ptr, length); | |
2337 | return; | |
2338 | } | |
9c0d9ce3 | 2339 | |
b61cc19c PC |
2340 | if (--png_ptr->user_chunk_cache_max == 1) |
2341 | { | |
2342 | png_warning(png_ptr, "No space in chunk cache for zTXt"); | |
2343 | png_crc_finish(png_ptr, length); | |
2344 | return; | |
2345 | } | |
2346 | } | |
2347 | #endif | |
2348 | ||
0272a10d VZ |
2349 | if (!(png_ptr->mode & PNG_HAVE_IHDR)) |
2350 | png_error(png_ptr, "Missing IHDR before zTXt"); | |
2351 | ||
2352 | if (png_ptr->mode & PNG_HAVE_IDAT) | |
2353 | png_ptr->mode |= PNG_AFTER_IDAT; | |
2354 | ||
2355 | #ifdef PNG_MAX_MALLOC_64K | |
2356 | /* We will no doubt have problems with chunks even half this size, but | |
9c0d9ce3 DS |
2357 | * there is no hard and fast rule to tell us where to stop. |
2358 | */ | |
0272a10d VZ |
2359 | if (length > (png_uint_32)65535L) |
2360 | { | |
9c0d9ce3 DS |
2361 | png_warning(png_ptr, "zTXt chunk too large to fit in memory"); |
2362 | png_crc_finish(png_ptr, length); | |
2363 | return; | |
0272a10d VZ |
2364 | } |
2365 | #endif | |
2366 | ||
970f6abe VZ |
2367 | png_free(png_ptr, png_ptr->chunkdata); |
2368 | png_ptr->chunkdata = (png_charp)png_malloc_warn(png_ptr, length + 1); | |
9c0d9ce3 | 2369 | |
970f6abe | 2370 | if (png_ptr->chunkdata == NULL) |
0272a10d | 2371 | { |
9c0d9ce3 DS |
2372 | png_warning(png_ptr, "Out of memory processing zTXt chunk"); |
2373 | return; | |
0272a10d | 2374 | } |
9c0d9ce3 | 2375 | |
0272a10d | 2376 | slength = (png_size_t)length; |
970f6abe | 2377 | png_crc_read(png_ptr, (png_bytep)png_ptr->chunkdata, slength); |
9c0d9ce3 | 2378 | |
0272a10d VZ |
2379 | if (png_crc_finish(png_ptr, 0)) |
2380 | { | |
970f6abe VZ |
2381 | png_free(png_ptr, png_ptr->chunkdata); |
2382 | png_ptr->chunkdata = NULL; | |
0272a10d VZ |
2383 | return; |
2384 | } | |
2385 | ||
970f6abe | 2386 | png_ptr->chunkdata[slength] = 0x00; |
0272a10d | 2387 | |
970f6abe | 2388 | for (text = png_ptr->chunkdata; *text; text++) |
b61cc19c | 2389 | /* Empty loop */ ; |
0272a10d VZ |
2390 | |
2391 | /* zTXt must have some text after the chunkdataword */ | |
970f6abe | 2392 | if (text >= png_ptr->chunkdata + slength - 2) |
0272a10d VZ |
2393 | { |
2394 | png_warning(png_ptr, "Truncated zTXt chunk"); | |
970f6abe VZ |
2395 | png_free(png_ptr, png_ptr->chunkdata); |
2396 | png_ptr->chunkdata = NULL; | |
0272a10d VZ |
2397 | return; |
2398 | } | |
9c0d9ce3 | 2399 | |
0272a10d VZ |
2400 | else |
2401 | { | |
2402 | comp_type = *(++text); | |
9c0d9ce3 | 2403 | |
0272a10d VZ |
2404 | if (comp_type != PNG_TEXT_COMPRESSION_zTXt) |
2405 | { | |
2406 | png_warning(png_ptr, "Unknown compression type in zTXt chunk"); | |
2407 | comp_type = PNG_TEXT_COMPRESSION_zTXt; | |
2408 | } | |
9c0d9ce3 | 2409 | |
b61cc19c | 2410 | text++; /* Skip the compression_method byte */ |
0272a10d | 2411 | } |
9c0d9ce3 | 2412 | |
970f6abe | 2413 | prefix_len = text - png_ptr->chunkdata; |
0272a10d | 2414 | |
970f6abe | 2415 | png_decompress_chunk(png_ptr, comp_type, |
9c0d9ce3 | 2416 | (png_size_t)length, prefix_len, &data_len); |
0272a10d VZ |
2417 | |
2418 | text_ptr = (png_textp)png_malloc_warn(png_ptr, | |
9c0d9ce3 DS |
2419 | png_sizeof(png_text)); |
2420 | ||
0272a10d VZ |
2421 | if (text_ptr == NULL) |
2422 | { | |
9c0d9ce3 DS |
2423 | png_warning(png_ptr, "Not enough memory to process zTXt chunk"); |
2424 | png_free(png_ptr, png_ptr->chunkdata); | |
2425 | png_ptr->chunkdata = NULL; | |
2426 | return; | |
0272a10d | 2427 | } |
9c0d9ce3 | 2428 | |
0272a10d | 2429 | text_ptr->compression = comp_type; |
970f6abe | 2430 | text_ptr->key = png_ptr->chunkdata; |
0272a10d VZ |
2431 | text_ptr->lang = NULL; |
2432 | text_ptr->lang_key = NULL; | |
2433 | text_ptr->itxt_length = 0; | |
970f6abe | 2434 | text_ptr->text = png_ptr->chunkdata + prefix_len; |
0272a10d VZ |
2435 | text_ptr->text_length = data_len; |
2436 | ||
970f6abe | 2437 | ret = png_set_text_2(png_ptr, info_ptr, text_ptr, 1); |
0272a10d VZ |
2438 | |
2439 | png_free(png_ptr, text_ptr); | |
970f6abe VZ |
2440 | png_free(png_ptr, png_ptr->chunkdata); |
2441 | png_ptr->chunkdata = NULL; | |
9c0d9ce3 | 2442 | |
0272a10d | 2443 | if (ret) |
9c0d9ce3 | 2444 | png_error(png_ptr, "Insufficient memory to store zTXt chunk"); |
0272a10d VZ |
2445 | } |
2446 | #endif | |
2447 | ||
b61cc19c PC |
2448 | #ifdef PNG_READ_iTXt_SUPPORTED |
2449 | /* Note: this does not correctly handle chunks that are > 64K under DOS */ | |
0272a10d VZ |
2450 | void /* PRIVATE */ |
2451 | png_handle_iTXt(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) | |
2452 | { | |
2453 | png_textp text_ptr; | |
0272a10d VZ |
2454 | png_charp key, lang, text, lang_key; |
2455 | int comp_flag; | |
2456 | int comp_type = 0; | |
2457 | int ret; | |
2458 | png_size_t slength, prefix_len, data_len; | |
2459 | ||
970f6abe | 2460 | png_debug(1, "in png_handle_iTXt"); |
0272a10d | 2461 | |
b61cc19c PC |
2462 | #ifdef PNG_USER_LIMITS_SUPPORTED |
2463 | if (png_ptr->user_chunk_cache_max != 0) | |
2464 | { | |
2465 | if (png_ptr->user_chunk_cache_max == 1) | |
2466 | { | |
2467 | png_crc_finish(png_ptr, length); | |
2468 | return; | |
2469 | } | |
9c0d9ce3 | 2470 | |
b61cc19c PC |
2471 | if (--png_ptr->user_chunk_cache_max == 1) |
2472 | { | |
2473 | png_warning(png_ptr, "No space in chunk cache for iTXt"); | |
2474 | png_crc_finish(png_ptr, length); | |
2475 | return; | |
2476 | } | |
2477 | } | |
2478 | #endif | |
2479 | ||
0272a10d VZ |
2480 | if (!(png_ptr->mode & PNG_HAVE_IHDR)) |
2481 | png_error(png_ptr, "Missing IHDR before iTXt"); | |
2482 | ||
2483 | if (png_ptr->mode & PNG_HAVE_IDAT) | |
2484 | png_ptr->mode |= PNG_AFTER_IDAT; | |
2485 | ||
2486 | #ifdef PNG_MAX_MALLOC_64K | |
2487 | /* We will no doubt have problems with chunks even half this size, but | |
9c0d9ce3 DS |
2488 | * there is no hard and fast rule to tell us where to stop. |
2489 | */ | |
0272a10d VZ |
2490 | if (length > (png_uint_32)65535L) |
2491 | { | |
9c0d9ce3 DS |
2492 | png_warning(png_ptr, "iTXt chunk too large to fit in memory"); |
2493 | png_crc_finish(png_ptr, length); | |
2494 | return; | |
0272a10d VZ |
2495 | } |
2496 | #endif | |
2497 | ||
970f6abe VZ |
2498 | png_free(png_ptr, png_ptr->chunkdata); |
2499 | png_ptr->chunkdata = (png_charp)png_malloc_warn(png_ptr, length + 1); | |
9c0d9ce3 | 2500 | |
970f6abe | 2501 | if (png_ptr->chunkdata == NULL) |
0272a10d | 2502 | { |
9c0d9ce3 DS |
2503 | png_warning(png_ptr, "No memory to process iTXt chunk"); |
2504 | return; | |
0272a10d | 2505 | } |
9c0d9ce3 | 2506 | |
0272a10d | 2507 | slength = (png_size_t)length; |
970f6abe | 2508 | png_crc_read(png_ptr, (png_bytep)png_ptr->chunkdata, slength); |
9c0d9ce3 | 2509 | |
0272a10d VZ |
2510 | if (png_crc_finish(png_ptr, 0)) |
2511 | { | |
970f6abe VZ |
2512 | png_free(png_ptr, png_ptr->chunkdata); |
2513 | png_ptr->chunkdata = NULL; | |
0272a10d VZ |
2514 | return; |
2515 | } | |
2516 | ||
970f6abe | 2517 | png_ptr->chunkdata[slength] = 0x00; |
0272a10d | 2518 | |
970f6abe | 2519 | for (lang = png_ptr->chunkdata; *lang; lang++) |
b61cc19c | 2520 | /* Empty loop */ ; |
9c0d9ce3 | 2521 | |
b61cc19c | 2522 | lang++; /* Skip NUL separator */ |
0272a10d VZ |
2523 | |
2524 | /* iTXt must have a language tag (possibly empty), two compression bytes, | |
b61cc19c PC |
2525 | * translated keyword (possibly empty), and possibly some text after the |
2526 | * keyword | |
2527 | */ | |
0272a10d | 2528 | |
970f6abe | 2529 | if (lang >= png_ptr->chunkdata + slength - 3) |
0272a10d VZ |
2530 | { |
2531 | png_warning(png_ptr, "Truncated iTXt chunk"); | |
970f6abe VZ |
2532 | png_free(png_ptr, png_ptr->chunkdata); |
2533 | png_ptr->chunkdata = NULL; | |
0272a10d VZ |
2534 | return; |
2535 | } | |
9c0d9ce3 | 2536 | |
0272a10d VZ |
2537 | else |
2538 | { | |
9c0d9ce3 DS |
2539 | comp_flag = *lang++; |
2540 | comp_type = *lang++; | |
0272a10d VZ |
2541 | } |
2542 | ||
2543 | for (lang_key = lang; *lang_key; lang_key++) | |
b61cc19c | 2544 | /* Empty loop */ ; |
9c0d9ce3 | 2545 | |
b61cc19c | 2546 | lang_key++; /* Skip NUL separator */ |
0272a10d | 2547 | |
970f6abe VZ |
2548 | if (lang_key >= png_ptr->chunkdata + slength) |
2549 | { | |
2550 | png_warning(png_ptr, "Truncated iTXt chunk"); | |
2551 | png_free(png_ptr, png_ptr->chunkdata); | |
2552 | png_ptr->chunkdata = NULL; | |
2553 | return; | |
2554 | } | |
2555 | ||
0272a10d | 2556 | for (text = lang_key; *text; text++) |
b61cc19c | 2557 | /* Empty loop */ ; |
9c0d9ce3 | 2558 | |
b61cc19c | 2559 | text++; /* Skip NUL separator */ |
9c0d9ce3 | 2560 | |
970f6abe | 2561 | if (text >= png_ptr->chunkdata + slength) |
0272a10d VZ |
2562 | { |
2563 | png_warning(png_ptr, "Malformed iTXt chunk"); | |
970f6abe VZ |
2564 | png_free(png_ptr, png_ptr->chunkdata); |
2565 | png_ptr->chunkdata = NULL; | |
0272a10d VZ |
2566 | return; |
2567 | } | |
2568 | ||
970f6abe | 2569 | prefix_len = text - png_ptr->chunkdata; |
0272a10d | 2570 | |
970f6abe | 2571 | key=png_ptr->chunkdata; |
9c0d9ce3 | 2572 | |
0272a10d | 2573 | if (comp_flag) |
9c0d9ce3 DS |
2574 | png_decompress_chunk(png_ptr, comp_type, |
2575 | (size_t)length, prefix_len, &data_len); | |
2576 | ||
0272a10d | 2577 | else |
9c0d9ce3 DS |
2578 | data_len = png_strlen(png_ptr->chunkdata + prefix_len); |
2579 | ||
0272a10d | 2580 | text_ptr = (png_textp)png_malloc_warn(png_ptr, |
9c0d9ce3 DS |
2581 | png_sizeof(png_text)); |
2582 | ||
0272a10d VZ |
2583 | if (text_ptr == NULL) |
2584 | { | |
9c0d9ce3 DS |
2585 | png_warning(png_ptr, "Not enough memory to process iTXt chunk"); |
2586 | png_free(png_ptr, png_ptr->chunkdata); | |
2587 | png_ptr->chunkdata = NULL; | |
2588 | return; | |
0272a10d | 2589 | } |
9c0d9ce3 | 2590 | |
0272a10d | 2591 | text_ptr->compression = (int)comp_flag + 1; |
970f6abe VZ |
2592 | text_ptr->lang_key = png_ptr->chunkdata + (lang_key - key); |
2593 | text_ptr->lang = png_ptr->chunkdata + (lang - key); | |
0272a10d VZ |
2594 | text_ptr->itxt_length = data_len; |
2595 | text_ptr->text_length = 0; | |
970f6abe VZ |
2596 | text_ptr->key = png_ptr->chunkdata; |
2597 | text_ptr->text = png_ptr->chunkdata + prefix_len; | |
0272a10d | 2598 | |
970f6abe | 2599 | ret = png_set_text_2(png_ptr, info_ptr, text_ptr, 1); |
0272a10d VZ |
2600 | |
2601 | png_free(png_ptr, text_ptr); | |
970f6abe VZ |
2602 | png_free(png_ptr, png_ptr->chunkdata); |
2603 | png_ptr->chunkdata = NULL; | |
9c0d9ce3 | 2604 | |
0272a10d | 2605 | if (ret) |
9c0d9ce3 | 2606 | png_error(png_ptr, "Insufficient memory to store iTXt chunk"); |
0272a10d VZ |
2607 | } |
2608 | #endif | |
2609 | ||
2610 | /* This function is called when we haven't found a handler for a | |
9c0d9ce3 DS |
2611 | * chunk. If there isn't a problem with the chunk itself (ie bad |
2612 | * chunk name, CRC, or a critical chunk), the chunk is silently ignored | |
2613 | * -- unless the PNG_FLAG_UNKNOWN_CHUNKS_SUPPORTED flag is on in which | |
2614 | * case it will be saved away to be written out later. | |
2615 | */ | |
0272a10d VZ |
2616 | void /* PRIVATE */ |
2617 | png_handle_unknown(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) | |
2618 | { | |
2619 | png_uint_32 skip = 0; | |
2620 | ||
970f6abe | 2621 | png_debug(1, "in png_handle_unknown"); |
0272a10d | 2622 | |
b61cc19c PC |
2623 | #ifdef PNG_USER_LIMITS_SUPPORTED |
2624 | if (png_ptr->user_chunk_cache_max != 0) | |
0272a10d | 2625 | { |
b61cc19c PC |
2626 | if (png_ptr->user_chunk_cache_max == 1) |
2627 | { | |
2628 | png_crc_finish(png_ptr, length); | |
2629 | return; | |
2630 | } | |
9c0d9ce3 | 2631 | |
b61cc19c PC |
2632 | if (--png_ptr->user_chunk_cache_max == 1) |
2633 | { | |
2634 | png_warning(png_ptr, "No space in chunk cache for unknown chunk"); | |
2635 | png_crc_finish(png_ptr, length); | |
2636 | return; | |
2637 | } | |
2638 | } | |
0272a10d | 2639 | #endif |
b61cc19c PC |
2640 | |
2641 | if (png_ptr->mode & PNG_HAVE_IDAT) | |
2642 | { | |
9c0d9ce3 | 2643 | if (png_ptr->chunk_name != png_IDAT) |
0272a10d VZ |
2644 | png_ptr->mode |= PNG_AFTER_IDAT; |
2645 | } | |
2646 | ||
9c0d9ce3 | 2647 | if (PNG_CHUNK_CRITICAL(png_ptr->chunk_name)) |
0272a10d | 2648 | { |
b61cc19c | 2649 | #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED |
9c0d9ce3 DS |
2650 | if (png_chunk_unknown_handling(png_ptr, png_ptr->chunk_name) != |
2651 | PNG_HANDLE_CHUNK_ALWAYS | |
b61cc19c | 2652 | #ifdef PNG_READ_USER_CHUNKS_SUPPORTED |
9c0d9ce3 | 2653 | && png_ptr->read_user_chunk_fn == NULL |
0272a10d | 2654 | #endif |
9c0d9ce3 | 2655 | ) |
0272a10d | 2656 | #endif |
9c0d9ce3 | 2657 | png_chunk_error(png_ptr, "unknown critical chunk"); |
0272a10d VZ |
2658 | } |
2659 | ||
b61cc19c PC |
2660 | #ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED |
2661 | if ((png_ptr->flags & PNG_FLAG_KEEP_UNKNOWN_CHUNKS) | |
2662 | #ifdef PNG_READ_USER_CHUNKS_SUPPORTED | |
2663 | || (png_ptr->read_user_chunk_fn != NULL) | |
2664 | #endif | |
9c0d9ce3 | 2665 | ) |
0272a10d VZ |
2666 | { |
2667 | #ifdef PNG_MAX_MALLOC_64K | |
9c0d9ce3 DS |
2668 | if (length > 65535) |
2669 | { | |
2670 | png_warning(png_ptr, "unknown chunk too large to fit in memory"); | |
2671 | skip = length - 65535; | |
2672 | length = 65535; | |
2673 | } | |
0272a10d | 2674 | #endif |
9c0d9ce3 DS |
2675 | |
2676 | /* TODO: this code is very close to the unknown handling in pngpread.c, | |
2677 | * maybe it can be put into a common utility routine? | |
2678 | * png_struct::unknown_chunk is just used as a temporary variable, along | |
2679 | * with the data into which the chunk is read. These can be eliminated. | |
2680 | */ | |
2681 | PNG_CSTRING_FROM_CHUNK(png_ptr->unknown_chunk.name, png_ptr->chunk_name); | |
2682 | png_ptr->unknown_chunk.size = (png_size_t)length; | |
2683 | ||
2684 | if (length == 0) | |
970f6abe | 2685 | png_ptr->unknown_chunk.data = NULL; |
9c0d9ce3 DS |
2686 | |
2687 | else | |
2688 | { | |
970f6abe | 2689 | png_ptr->unknown_chunk.data = (png_bytep)png_malloc(png_ptr, length); |
9c0d9ce3 DS |
2690 | png_crc_read(png_ptr, png_ptr->unknown_chunk.data, length); |
2691 | } | |
2692 | ||
b61cc19c | 2693 | #ifdef PNG_READ_USER_CHUNKS_SUPPORTED |
9c0d9ce3 DS |
2694 | if (png_ptr->read_user_chunk_fn != NULL) |
2695 | { | |
2696 | /* Callback to user unknown chunk handler */ | |
2697 | int ret; | |
2698 | ||
2699 | ret = (*(png_ptr->read_user_chunk_fn)) | |
2700 | (png_ptr, &png_ptr->unknown_chunk); | |
2701 | ||
2702 | if (ret < 0) | |
2703 | png_chunk_error(png_ptr, "error in user chunk"); | |
2704 | ||
2705 | if (ret == 0) | |
2706 | { | |
2707 | if (PNG_CHUNK_CRITICAL(png_ptr->chunk_name)) | |
2708 | { | |
b61cc19c | 2709 | #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED |
9c0d9ce3 DS |
2710 | if (png_chunk_unknown_handling(png_ptr, png_ptr->chunk_name) != |
2711 | PNG_HANDLE_CHUNK_ALWAYS) | |
b61cc19c | 2712 | #endif |
9c0d9ce3 DS |
2713 | png_chunk_error(png_ptr, "unknown critical chunk"); |
2714 | } | |
2715 | ||
2716 | png_set_unknown_chunks(png_ptr, info_ptr, | |
2717 | &png_ptr->unknown_chunk, 1); | |
2718 | } | |
2719 | } | |
2720 | ||
2721 | else | |
0272a10d | 2722 | #endif |
9c0d9ce3 DS |
2723 | png_set_unknown_chunks(png_ptr, info_ptr, &png_ptr->unknown_chunk, 1); |
2724 | ||
2725 | png_free(png_ptr, png_ptr->unknown_chunk.data); | |
2726 | png_ptr->unknown_chunk.data = NULL; | |
0272a10d | 2727 | } |
9c0d9ce3 | 2728 | |
0272a10d VZ |
2729 | else |
2730 | #endif | |
2731 | skip = length; | |
2732 | ||
2733 | png_crc_finish(png_ptr, skip); | |
2734 | ||
b61cc19c | 2735 | #ifndef PNG_READ_USER_CHUNKS_SUPPORTED |
9c0d9ce3 | 2736 | PNG_UNUSED(info_ptr) /* Quiet compiler warnings about unused info_ptr */ |
0272a10d VZ |
2737 | #endif |
2738 | } | |
2739 | ||
2740 | /* This function is called to verify that a chunk name is valid. | |
9c0d9ce3 DS |
2741 | * This function can't have the "critical chunk check" incorporated |
2742 | * into it, since in the future we will need to be able to call user | |
2743 | * functions to handle unknown critical chunks after we check that | |
2744 | * the chunk name itself is valid. | |
2745 | */ | |
0272a10d | 2746 | |
9c0d9ce3 DS |
2747 | /* Bit hacking: the test for an invalid byte in the 4 byte chunk name is: |
2748 | * | |
2749 | * ((c) < 65 || (c) > 122 || ((c) > 90 && (c) < 97)) | |
2750 | */ | |
0272a10d VZ |
2751 | |
2752 | void /* PRIVATE */ | |
9c0d9ce3 | 2753 | png_check_chunk_name(png_structp png_ptr, png_uint_32 chunk_name) |
0272a10d | 2754 | { |
9c0d9ce3 DS |
2755 | int i; |
2756 | ||
970f6abe | 2757 | png_debug(1, "in png_check_chunk_name"); |
9c0d9ce3 DS |
2758 | |
2759 | for (i=1; i<=4; ++i) | |
0272a10d | 2760 | { |
9c0d9ce3 DS |
2761 | int c = chunk_name & 0xff; |
2762 | ||
2763 | if (c < 65 || c > 122 || (c > 90 && c < 97)) | |
2764 | png_chunk_error(png_ptr, "invalid chunk type"); | |
2765 | ||
2766 | chunk_name >>= 8; | |
0272a10d VZ |
2767 | } |
2768 | } | |
2769 | ||
2770 | /* Combines the row recently read in with the existing pixels in the | |
9c0d9ce3 DS |
2771 | * row. This routine takes care of alpha and transparency if requested. |
2772 | * This routine also handles the two methods of progressive display | |
2773 | * of interlaced images, depending on the mask value. | |
2774 | * The mask value describes which pixels are to be combined with | |
2775 | * the row. The pattern always repeats every 8 pixels, so just 8 | |
2776 | * bits are needed. A one indicates the pixel is to be combined, | |
2777 | * a zero indicates the pixel is to be skipped. This is in addition | |
2778 | * to any alpha or transparency value associated with the pixel. If | |
2779 | * you want all pixels to be combined, pass 0xff (255) in mask. | |
2780 | */ | |
0272a10d VZ |
2781 | |
2782 | void /* PRIVATE */ | |
9c0d9ce3 | 2783 | png_combine_row(png_structp png_ptr, png_bytep dp, int display) |
0272a10d | 2784 | { |
9c0d9ce3 DS |
2785 | unsigned int pixel_depth = png_ptr->transformed_pixel_depth; |
2786 | png_const_bytep sp = png_ptr->row_buf + 1; | |
2787 | png_uint_32 row_width = png_ptr->width; | |
2788 | unsigned int pass = png_ptr->pass; | |
2789 | png_bytep end_ptr = 0; | |
2790 | png_byte end_byte = 0; | |
2791 | unsigned int end_mask; | |
2792 | ||
970f6abe | 2793 | png_debug(1, "in png_combine_row"); |
9c0d9ce3 DS |
2794 | |
2795 | /* Added in 1.5.6: it should not be possible to enter this routine until at | |
2796 | * least one row has been read from the PNG data and transformed. | |
2797 | */ | |
2798 | if (pixel_depth == 0) | |
2799 | png_error(png_ptr, "internal row logic error"); | |
2800 | ||
2801 | /* Added in 1.5.4: the pixel depth should match the information returned by | |
2802 | * any call to png_read_update_info at this point. Do not continue if we got | |
2803 | * this wrong. | |
2804 | */ | |
2805 | if (png_ptr->info_rowbytes != 0 && png_ptr->info_rowbytes != | |
2806 | PNG_ROWBYTES(pixel_depth, row_width)) | |
2807 | png_error(png_ptr, "internal row size calculation error"); | |
2808 | ||
2809 | /* Don't expect this to ever happen: */ | |
2810 | if (row_width == 0) | |
2811 | png_error(png_ptr, "internal row width error"); | |
2812 | ||
2813 | /* Preserve the last byte in cases where only part of it will be overwritten, | |
2814 | * the multiply below may overflow, we don't care because ANSI-C guarantees | |
2815 | * we get the low bits. | |
2816 | */ | |
2817 | end_mask = (pixel_depth * row_width) & 7; | |
2818 | if (end_mask != 0) | |
2819 | { | |
2820 | /* end_ptr == NULL is a flag to say do nothing */ | |
2821 | end_ptr = dp + PNG_ROWBYTES(pixel_depth, row_width) - 1; | |
2822 | end_byte = *end_ptr; | |
2823 | # ifdef PNG_READ_PACKSWAP_SUPPORTED | |
2824 | if (png_ptr->transformations & PNG_PACKSWAP) /* little-endian byte */ | |
2825 | end_mask = 0xff << end_mask; | |
2826 | ||
2827 | else /* big-endian byte */ | |
2828 | # endif | |
2829 | end_mask = 0xff >> end_mask; | |
2830 | /* end_mask is now the bits to *keep* from the destination row */ | |
2831 | } | |
2832 | ||
2833 | /* For non-interlaced images this reduces to a png_memcpy(). A png_memcpy() | |
2834 | * will also happen if interlacing isn't supported or if the application | |
2835 | * does not call png_set_interlace_handling(). In the latter cases the | |
2836 | * caller just gets a sequence of the unexpanded rows from each interlace | |
2837 | * pass. | |
2838 | */ | |
2839 | #ifdef PNG_READ_INTERLACING_SUPPORTED | |
2840 | if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE) && | |
2841 | pass < 6 && (display == 0 || | |
2842 | /* The following copies everything for 'display' on passes 0, 2 and 4. */ | |
2843 | (display == 1 && (pass & 1) != 0))) | |
0272a10d | 2844 | { |
9c0d9ce3 DS |
2845 | /* Narrow images may have no bits in a pass; the caller should handle |
2846 | * this, but this test is cheap: | |
2847 | */ | |
2848 | if (row_width <= PNG_PASS_START_COL(pass)) | |
2849 | return; | |
0272a10d | 2850 | |
9c0d9ce3 DS |
2851 | if (pixel_depth < 8) |
2852 | { | |
2853 | /* For pixel depths up to 4-bpp the 8-pixel mask can be expanded to fit | |
2854 | * into 32 bits, then a single loop over the bytes using the four byte | |
2855 | * values in the 32-bit mask can be used. For the 'display' option the | |
2856 | * expanded mask may also not require any masking within a byte. To | |
2857 | * make this work the PACKSWAP option must be taken into account - it | |
2858 | * simply requires the pixels to be reversed in each byte. | |
2859 | * | |
2860 | * The 'regular' case requires a mask for each of the first 6 passes, | |
2861 | * the 'display' case does a copy for the even passes in the range | |
2862 | * 0..6. This has already been handled in the tst above. | |
2863 | * | |
2864 | * The masks are arranged as four bytes with the first byte to use in | |
2865 | * the lowest bits (little-endian) regardless of the order (PACKSWAP or | |
2866 | * not) of the pixels in each byte. | |
2867 | * | |
2868 | * NOTE: the whole of this logic depends on the caller of this function | |
2869 | * only calling it on rows appropriate to the pass. This function only | |
2870 | * understands the 'x' logic, the 'y' logic is handled by the caller. | |
2871 | * | |
2872 | * The following defines allow generation of compile time constant bit | |
2873 | * masks for each pixel depth and each possibility of swapped or not | |
2874 | * swapped bytes. Pass 'p' is in the range 0..6; 'x', a pixel index, | |
2875 | * is in the range 0..7; and the result is 1 if the pixel is to be | |
2876 | * copied in the pass, 0 if not. 'S' is for the sparkle method, 'B' | |
2877 | * for the block method. | |
2878 | * | |
2879 | * With some compilers a compile time expression of the general form: | |
2880 | * | |
2881 | * (shift >= 32) ? (a >> (shift-32)) : (b >> shift) | |
2882 | * | |
2883 | * Produces warnings with values of 'shift' in the range 33 to 63 | |
2884 | * because the right hand side of the ?: expression is evaluated by | |
2885 | * the compiler even though it isn't used. Microsoft Visual C (various | |
2886 | * versions) and the Intel C compiler are known to do this. To avoid | |
2887 | * this the following macros are used in 1.5.6. This is a temporary | |
2888 | * solution to avoid destablizing the code during the release process. | |
2889 | */ | |
2890 | # if PNG_USE_COMPILE_TIME_MASKS | |
2891 | # define PNG_LSR(x,s) ((x)>>((s) & 0x1f)) | |
2892 | # define PNG_LSL(x,s) ((x)<<((s) & 0x1f)) | |
2893 | # else | |
2894 | # define PNG_LSR(x,s) ((x)>>(s)) | |
2895 | # define PNG_LSL(x,s) ((x)<<(s)) | |
2896 | # endif | |
2897 | # define S_COPY(p,x) (((p)<4 ? PNG_LSR(0x80088822,(3-(p))*8+(7-(x))) :\ | |
2898 | PNG_LSR(0xaa55ff00,(7-(p))*8+(7-(x)))) & 1) | |
2899 | # define B_COPY(p,x) (((p)<4 ? PNG_LSR(0xff0fff33,(3-(p))*8+(7-(x))) :\ | |
2900 | PNG_LSR(0xff55ff00,(7-(p))*8+(7-(x)))) & 1) | |
2901 | ||
2902 | /* Return a mask for pass 'p' pixel 'x' at depth 'd'. The mask is | |
2903 | * little endian - the first pixel is at bit 0 - however the extra | |
2904 | * parameter 's' can be set to cause the mask position to be swapped | |
2905 | * within each byte, to match the PNG format. This is done by XOR of | |
2906 | * the shift with 7, 6 or 4 for bit depths 1, 2 and 4. | |
2907 | */ | |
2908 | # define PIXEL_MASK(p,x,d,s) \ | |
2909 | (PNG_LSL(((PNG_LSL(1U,(d)))-1),(((x)*(d))^((s)?8-(d):0)))) | |
2910 | ||
2911 | /* Hence generate the appropriate 'block' or 'sparkle' pixel copy mask. | |
2912 | */ | |
2913 | # define S_MASKx(p,x,d,s) (S_COPY(p,x)?PIXEL_MASK(p,x,d,s):0) | |
2914 | # define B_MASKx(p,x,d,s) (B_COPY(p,x)?PIXEL_MASK(p,x,d,s):0) | |
2915 | ||
2916 | /* Combine 8 of these to get the full mask. For the 1-bpp and 2-bpp | |
2917 | * cases the result needs replicating, for the 4-bpp case the above | |
2918 | * generates a full 32 bits. | |
2919 | */ | |
2920 | # define MASK_EXPAND(m,d) ((m)*((d)==1?0x01010101:((d)==2?0x00010001:1))) | |
2921 | ||
2922 | # define S_MASK(p,d,s) MASK_EXPAND(S_MASKx(p,0,d,s) + S_MASKx(p,1,d,s) +\ | |
2923 | S_MASKx(p,2,d,s) + S_MASKx(p,3,d,s) + S_MASKx(p,4,d,s) +\ | |
2924 | S_MASKx(p,5,d,s) + S_MASKx(p,6,d,s) + S_MASKx(p,7,d,s), d) | |
2925 | ||
2926 | # define B_MASK(p,d,s) MASK_EXPAND(B_MASKx(p,0,d,s) + B_MASKx(p,1,d,s) +\ | |
2927 | B_MASKx(p,2,d,s) + B_MASKx(p,3,d,s) + B_MASKx(p,4,d,s) +\ | |
2928 | B_MASKx(p,5,d,s) + B_MASKx(p,6,d,s) + B_MASKx(p,7,d,s), d) | |
2929 | ||
2930 | #if PNG_USE_COMPILE_TIME_MASKS | |
2931 | /* Utility macros to construct all the masks for a depth/swap | |
2932 | * combination. The 's' parameter says whether the format is PNG | |
2933 | * (big endian bytes) or not. Only the three odd numbered passes are | |
2934 | * required for the display/block algorithm. | |
2935 | */ | |
2936 | # define S_MASKS(d,s) { S_MASK(0,d,s), S_MASK(1,d,s), S_MASK(2,d,s),\ | |
2937 | S_MASK(3,d,s), S_MASK(4,d,s), S_MASK(5,d,s) } | |
2938 | ||
2939 | # define B_MASKS(d,s) { B_MASK(1,d,s), S_MASK(3,d,s), S_MASK(5,d,s) } | |
2940 | ||
2941 | # define DEPTH_INDEX(d) ((d)==1?0:((d)==2?1:2)) | |
2942 | ||
2943 | /* Hence the pre-compiled masks indexed by PACKSWAP (or not), depth and | |
2944 | * then pass: | |
2945 | */ | |
2946 | static PNG_CONST png_uint_32 row_mask[2/*PACKSWAP*/][3/*depth*/][6] = { | |
2947 | /* Little-endian byte masks for PACKSWAP */ | |
2948 | { S_MASKS(1,0), S_MASKS(2,0), S_MASKS(4,0) }, | |
2949 | /* Normal (big-endian byte) masks - PNG format */ | |
2950 | { S_MASKS(1,1), S_MASKS(2,1), S_MASKS(4,1) } | |
2951 | }; | |
2952 | ||
2953 | /* display_mask has only three entries for the odd passes, so index by | |
2954 | * pass>>1. | |
2955 | */ | |
2956 | static PNG_CONST png_uint_32 display_mask[2][3][3] = { | |
2957 | /* Little-endian byte masks for PACKSWAP */ | |
2958 | { B_MASKS(1,0), B_MASKS(2,0), B_MASKS(4,0) }, | |
2959 | /* Normal (big-endian byte) masks - PNG format */ | |
2960 | { B_MASKS(1,1), B_MASKS(2,1), B_MASKS(4,1) } | |
2961 | }; | |
2962 | ||
2963 | # define MASK(pass,depth,display,png)\ | |
2964 | ((display)?display_mask[png][DEPTH_INDEX(depth)][pass>>1]:\ | |
2965 | row_mask[png][DEPTH_INDEX(depth)][pass]) | |
2966 | ||
2967 | #else /* !PNG_USE_COMPILE_TIME_MASKS */ | |
2968 | /* This is the runtime alternative: it seems unlikely that this will | |
2969 | * ever be either smaller or faster than the compile time approach. | |
2970 | */ | |
2971 | # define MASK(pass,depth,display,png)\ | |
2972 | ((display)?B_MASK(pass,depth,png):S_MASK(pass,depth,png)) | |
2973 | #endif /* !PNG_USE_COMPILE_TIME_MASKS */ | |
2974 | ||
2975 | /* Use the appropriate mask to copy the required bits. In some cases | |
2976 | * the byte mask will be 0 or 0xff, optimize these cases. row_width is | |
2977 | * the number of pixels, but the code copies bytes, so it is necessary | |
2978 | * to special case the end. | |
2979 | */ | |
2980 | png_uint_32 pixels_per_byte = 8 / pixel_depth; | |
2981 | png_uint_32 mask; | |
2982 | ||
2983 | # ifdef PNG_READ_PACKSWAP_SUPPORTED | |
0272a10d | 2984 | if (png_ptr->transformations & PNG_PACKSWAP) |
9c0d9ce3 DS |
2985 | mask = MASK(pass, pixel_depth, display, 0); |
2986 | ||
0272a10d | 2987 | else |
9c0d9ce3 DS |
2988 | # endif |
2989 | mask = MASK(pass, pixel_depth, display, 1); | |
2990 | ||
2991 | for (;;) | |
2992 | { | |
2993 | png_uint_32 m; | |
2994 | ||
2995 | /* It doesn't matter in the following if png_uint_32 has more than | |
2996 | * 32 bits because the high bits always match those in m<<24; it is, | |
2997 | * however, essential to use OR here, not +, because of this. | |
2998 | */ | |
2999 | m = mask; | |
3000 | mask = (m >> 8) | (m << 24); /* rotate right to good compilers */ | |
3001 | m &= 0xff; | |
3002 | ||
3003 | if (m != 0) /* something to copy */ | |
0272a10d | 3004 | { |
9c0d9ce3 DS |
3005 | if (m != 0xff) |
3006 | *dp = (png_byte)((*dp & ~m) | (*sp & m)); | |
3007 | else | |
3008 | *dp = *sp; | |
0272a10d VZ |
3009 | } |
3010 | ||
9c0d9ce3 DS |
3011 | /* NOTE: this may overwrite the last byte with garbage if the image |
3012 | * is not an exact number of bytes wide; libpng has always done | |
3013 | * this. | |
3014 | */ | |
3015 | if (row_width <= pixels_per_byte) | |
3016 | break; /* May need to restore part of the last byte */ | |
0272a10d | 3017 | |
9c0d9ce3 DS |
3018 | row_width -= pixels_per_byte; |
3019 | ++dp; | |
3020 | ++sp; | |
3021 | } | |
3022 | } | |
0272a10d | 3023 | |
9c0d9ce3 DS |
3024 | else /* pixel_depth >= 8 */ |
3025 | { | |
3026 | unsigned int bytes_to_copy, bytes_to_jump; | |
0272a10d | 3027 | |
9c0d9ce3 DS |
3028 | /* Validate the depth - it must be a multiple of 8 */ |
3029 | if (pixel_depth & 7) | |
3030 | png_error(png_ptr, "invalid user transform pixel depth"); | |
0272a10d | 3031 | |
9c0d9ce3 DS |
3032 | pixel_depth >>= 3; /* now in bytes */ |
3033 | row_width *= pixel_depth; | |
3034 | ||
3035 | /* Regardless of pass number the Adam 7 interlace always results in a | |
3036 | * fixed number of pixels to copy then to skip. There may be a | |
3037 | * different number of pixels to skip at the start though. | |
3038 | */ | |
0272a10d | 3039 | { |
9c0d9ce3 | 3040 | unsigned int offset = PNG_PASS_START_COL(pass) * pixel_depth; |
0272a10d | 3041 | |
9c0d9ce3 DS |
3042 | row_width -= offset; |
3043 | dp += offset; | |
3044 | sp += offset; | |
3045 | } | |
0272a10d | 3046 | |
9c0d9ce3 DS |
3047 | /* Work out the bytes to copy. */ |
3048 | if (display) | |
3049 | { | |
3050 | /* When doing the 'block' algorithm the pixel in the pass gets | |
3051 | * replicated to adjacent pixels. This is why the even (0,2,4,6) | |
3052 | * passes are skipped above - the entire expanded row is copied. | |
3053 | */ | |
3054 | bytes_to_copy = (1<<((6-pass)>>1)) * pixel_depth; | |
0272a10d | 3055 | |
9c0d9ce3 DS |
3056 | /* But don't allow this number to exceed the actual row width. */ |
3057 | if (bytes_to_copy > row_width) | |
3058 | bytes_to_copy = row_width; | |
3059 | } | |
3060 | ||
3061 | else /* normal row; Adam7 only ever gives us one pixel to copy. */ | |
3062 | bytes_to_copy = pixel_depth; | |
3063 | ||
3064 | /* In Adam7 there is a constant offset between where the pixels go. */ | |
3065 | bytes_to_jump = PNG_PASS_COL_OFFSET(pass) * pixel_depth; | |
3066 | ||
3067 | /* And simply copy these bytes. Some optimization is possible here, | |
3068 | * depending on the value of 'bytes_to_copy'. Special case the low | |
3069 | * byte counts, which we know to be frequent. | |
3070 | * | |
3071 | * Notice that these cases all 'return' rather than 'break' - this | |
3072 | * avoids an unnecessary test on whether to restore the last byte | |
3073 | * below. | |
3074 | */ | |
3075 | switch (bytes_to_copy) | |
3076 | { | |
3077 | case 1: | |
3078 | for (;;) | |
0272a10d | 3079 | { |
9c0d9ce3 DS |
3080 | *dp = *sp; |
3081 | ||
3082 | if (row_width <= bytes_to_jump) | |
3083 | return; | |
3084 | ||
3085 | dp += bytes_to_jump; | |
3086 | sp += bytes_to_jump; | |
3087 | row_width -= bytes_to_jump; | |
0272a10d VZ |
3088 | } |
3089 | ||
9c0d9ce3 DS |
3090 | case 2: |
3091 | /* There is a possibility of a partial copy at the end here; this | |
3092 | * slows the code down somewhat. | |
3093 | */ | |
3094 | do | |
0272a10d | 3095 | { |
9c0d9ce3 DS |
3096 | dp[0] = sp[0], dp[1] = sp[1]; |
3097 | ||
3098 | if (row_width <= bytes_to_jump) | |
3099 | return; | |
3100 | ||
3101 | sp += bytes_to_jump; | |
3102 | dp += bytes_to_jump; | |
3103 | row_width -= bytes_to_jump; | |
0272a10d | 3104 | } |
9c0d9ce3 | 3105 | while (row_width > 1); |
0272a10d | 3106 | |
9c0d9ce3 DS |
3107 | /* And there can only be one byte left at this point: */ |
3108 | *dp = *sp; | |
3109 | return; | |
0272a10d | 3110 | |
9c0d9ce3 DS |
3111 | case 3: |
3112 | /* This can only be the RGB case, so each copy is exactly one | |
3113 | * pixel and it is not necessary to check for a partial copy. | |
3114 | */ | |
3115 | for(;;) | |
0272a10d | 3116 | { |
9c0d9ce3 DS |
3117 | dp[0] = sp[0], dp[1] = sp[1], dp[2] = sp[2]; |
3118 | ||
3119 | if (row_width <= bytes_to_jump) | |
3120 | return; | |
3121 | ||
3122 | sp += bytes_to_jump; | |
3123 | dp += bytes_to_jump; | |
3124 | row_width -= bytes_to_jump; | |
0272a10d VZ |
3125 | } |
3126 | ||
9c0d9ce3 DS |
3127 | default: |
3128 | #if PNG_ALIGN_TYPE != PNG_ALIGN_NONE | |
3129 | /* Check for double byte alignment and, if possible, use a | |
3130 | * 16-bit copy. Don't attempt this for narrow images - ones that | |
3131 | * are less than an interlace panel wide. Don't attempt it for | |
3132 | * wide bytes-to-copy either - use the png_memcpy there. | |
3133 | */ | |
3134 | if (bytes_to_copy < 16 /*else use png_memcpy*/ && | |
3135 | png_isaligned(dp, png_uint_16) && | |
3136 | png_isaligned(sp, png_uint_16) && | |
3137 | bytes_to_copy % sizeof (png_uint_16) == 0 && | |
3138 | bytes_to_jump % sizeof (png_uint_16) == 0) | |
0272a10d | 3139 | { |
9c0d9ce3 DS |
3140 | /* Everything is aligned for png_uint_16 copies, but try for |
3141 | * png_uint_32 first. | |
3142 | */ | |
3143 | if (png_isaligned(dp, png_uint_32) && | |
3144 | png_isaligned(sp, png_uint_32) && | |
3145 | bytes_to_copy % sizeof (png_uint_32) == 0 && | |
3146 | bytes_to_jump % sizeof (png_uint_32) == 0) | |
3147 | { | |
3148 | png_uint_32p dp32 = (png_uint_32p)dp; | |
3149 | png_const_uint_32p sp32 = (png_const_uint_32p)sp; | |
3150 | unsigned int skip = (bytes_to_jump-bytes_to_copy) / | |
3151 | sizeof (png_uint_32); | |
3152 | ||
3153 | do | |
3154 | { | |
3155 | size_t c = bytes_to_copy; | |
3156 | do | |
3157 | { | |
3158 | *dp32++ = *sp32++; | |
3159 | c -= sizeof (png_uint_32); | |
3160 | } | |
3161 | while (c > 0); | |
3162 | ||
3163 | if (row_width <= bytes_to_jump) | |
3164 | return; | |
3165 | ||
3166 | dp32 += skip; | |
3167 | sp32 += skip; | |
3168 | row_width -= bytes_to_jump; | |
3169 | } | |
3170 | while (bytes_to_copy <= row_width); | |
3171 | ||
3172 | /* Get to here when the row_width truncates the final copy. | |
3173 | * There will be 1-3 bytes left to copy, so don't try the | |
3174 | * 16-bit loop below. | |
3175 | */ | |
3176 | dp = (png_bytep)dp32; | |
3177 | sp = (png_const_bytep)sp32; | |
3178 | do | |
3179 | *dp++ = *sp++; | |
3180 | while (--row_width > 0); | |
3181 | return; | |
3182 | } | |
0272a10d | 3183 | |
9c0d9ce3 DS |
3184 | /* Else do it in 16-bit quantities, but only if the size is |
3185 | * not too large. | |
3186 | */ | |
3187 | else | |
3188 | { | |
3189 | png_uint_16p dp16 = (png_uint_16p)dp; | |
3190 | png_const_uint_16p sp16 = (png_const_uint_16p)sp; | |
3191 | unsigned int skip = (bytes_to_jump-bytes_to_copy) / | |
3192 | sizeof (png_uint_16); | |
3193 | ||
3194 | do | |
3195 | { | |
3196 | size_t c = bytes_to_copy; | |
3197 | do | |
3198 | { | |
3199 | *dp16++ = *sp16++; | |
3200 | c -= sizeof (png_uint_16); | |
3201 | } | |
3202 | while (c > 0); | |
3203 | ||
3204 | if (row_width <= bytes_to_jump) | |
3205 | return; | |
3206 | ||
3207 | dp16 += skip; | |
3208 | sp16 += skip; | |
3209 | row_width -= bytes_to_jump; | |
3210 | } | |
3211 | while (bytes_to_copy <= row_width); | |
3212 | ||
3213 | /* End of row - 1 byte left, bytes_to_copy > row_width: */ | |
3214 | dp = (png_bytep)dp16; | |
3215 | sp = (png_const_bytep)sp16; | |
3216 | do | |
3217 | *dp++ = *sp++; | |
3218 | while (--row_width > 0); | |
3219 | return; | |
3220 | } | |
3221 | } | |
3222 | #endif /* PNG_ALIGN_ code */ | |
0272a10d | 3223 | |
9c0d9ce3 DS |
3224 | /* The true default - use a png_memcpy: */ |
3225 | for (;;) | |
0272a10d | 3226 | { |
9c0d9ce3 | 3227 | png_memcpy(dp, sp, bytes_to_copy); |
0272a10d | 3228 | |
9c0d9ce3 DS |
3229 | if (row_width <= bytes_to_jump) |
3230 | return; | |
0272a10d | 3231 | |
9c0d9ce3 DS |
3232 | sp += bytes_to_jump; |
3233 | dp += bytes_to_jump; | |
3234 | row_width -= bytes_to_jump; | |
3235 | if (bytes_to_copy > row_width) | |
3236 | bytes_to_copy = row_width; | |
3237 | } | |
0272a10d | 3238 | } |
9c0d9ce3 DS |
3239 | |
3240 | /* NOT REACHED*/ | |
3241 | } /* pixel_depth >= 8 */ | |
3242 | ||
3243 | /* Here if pixel_depth < 8 to check 'end_ptr' below. */ | |
0272a10d | 3244 | } |
9c0d9ce3 DS |
3245 | else |
3246 | #endif | |
3247 | ||
3248 | /* If here then the switch above wasn't used so just png_memcpy the whole row | |
3249 | * from the temporary row buffer (notice that this overwrites the end of the | |
3250 | * destination row if it is a partial byte.) | |
3251 | */ | |
3252 | png_memcpy(dp, sp, PNG_ROWBYTES(pixel_depth, row_width)); | |
3253 | ||
3254 | /* Restore the overwritten bits from the last byte if necessary. */ | |
3255 | if (end_ptr != NULL) | |
3256 | *end_ptr = (png_byte)((end_byte & end_mask) | (*end_ptr & ~end_mask)); | |
0272a10d VZ |
3257 | } |
3258 | ||
3259 | #ifdef PNG_READ_INTERLACING_SUPPORTED | |
0272a10d | 3260 | void /* PRIVATE */ |
9c0d9ce3 DS |
3261 | png_do_read_interlace(png_row_infop row_info, png_bytep row, int pass, |
3262 | png_uint_32 transformations /* Because these may affect the byte layout */) | |
0272a10d | 3263 | { |
b61cc19c PC |
3264 | /* Arrays to facilitate easy interlacing - use pass (0 - 6) as index */ |
3265 | /* Offset to next interlace block */ | |
9c0d9ce3 | 3266 | static PNG_CONST int png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1}; |
0272a10d | 3267 | |
970f6abe | 3268 | png_debug(1, "in png_do_read_interlace"); |
0272a10d VZ |
3269 | if (row != NULL && row_info != NULL) |
3270 | { | |
3271 | png_uint_32 final_width; | |
3272 | ||
3273 | final_width = row_info->width * png_pass_inc[pass]; | |
3274 | ||
3275 | switch (row_info->pixel_depth) | |
3276 | { | |
3277 | case 1: | |
3278 | { | |
3279 | png_bytep sp = row + (png_size_t)((row_info->width - 1) >> 3); | |
3280 | png_bytep dp = row + (png_size_t)((final_width - 1) >> 3); | |
3281 | int sshift, dshift; | |
3282 | int s_start, s_end, s_inc; | |
3283 | int jstop = png_pass_inc[pass]; | |
3284 | png_byte v; | |
3285 | png_uint_32 i; | |
3286 | int j; | |
3287 | ||
b61cc19c | 3288 | #ifdef PNG_READ_PACKSWAP_SUPPORTED |
0272a10d VZ |
3289 | if (transformations & PNG_PACKSWAP) |
3290 | { | |
3291 | sshift = (int)((row_info->width + 7) & 0x07); | |
3292 | dshift = (int)((final_width + 7) & 0x07); | |
3293 | s_start = 7; | |
3294 | s_end = 0; | |
3295 | s_inc = -1; | |
3296 | } | |
9c0d9ce3 | 3297 | |
0272a10d VZ |
3298 | else |
3299 | #endif | |
3300 | { | |
3301 | sshift = 7 - (int)((row_info->width + 7) & 0x07); | |
3302 | dshift = 7 - (int)((final_width + 7) & 0x07); | |
3303 | s_start = 0; | |
3304 | s_end = 7; | |
3305 | s_inc = 1; | |
3306 | } | |
3307 | ||
3308 | for (i = 0; i < row_info->width; i++) | |
3309 | { | |
3310 | v = (png_byte)((*sp >> sshift) & 0x01); | |
3311 | for (j = 0; j < jstop; j++) | |
3312 | { | |
3313 | *dp &= (png_byte)((0x7f7f >> (7 - dshift)) & 0xff); | |
3314 | *dp |= (png_byte)(v << dshift); | |
9c0d9ce3 | 3315 | |
0272a10d VZ |
3316 | if (dshift == s_end) |
3317 | { | |
3318 | dshift = s_start; | |
3319 | dp--; | |
3320 | } | |
9c0d9ce3 | 3321 | |
0272a10d VZ |
3322 | else |
3323 | dshift += s_inc; | |
3324 | } | |
9c0d9ce3 | 3325 | |
0272a10d VZ |
3326 | if (sshift == s_end) |
3327 | { | |
3328 | sshift = s_start; | |
3329 | sp--; | |
3330 | } | |
9c0d9ce3 | 3331 | |
0272a10d VZ |
3332 | else |
3333 | sshift += s_inc; | |
3334 | } | |
3335 | break; | |
3336 | } | |
9c0d9ce3 | 3337 | |
0272a10d VZ |
3338 | case 2: |
3339 | { | |
3340 | png_bytep sp = row + (png_uint_32)((row_info->width - 1) >> 2); | |
3341 | png_bytep dp = row + (png_uint_32)((final_width - 1) >> 2); | |
3342 | int sshift, dshift; | |
3343 | int s_start, s_end, s_inc; | |
3344 | int jstop = png_pass_inc[pass]; | |
3345 | png_uint_32 i; | |
3346 | ||
b61cc19c | 3347 | #ifdef PNG_READ_PACKSWAP_SUPPORTED |
0272a10d VZ |
3348 | if (transformations & PNG_PACKSWAP) |
3349 | { | |
3350 | sshift = (int)(((row_info->width + 3) & 0x03) << 1); | |
3351 | dshift = (int)(((final_width + 3) & 0x03) << 1); | |
3352 | s_start = 6; | |
3353 | s_end = 0; | |
3354 | s_inc = -2; | |
3355 | } | |
9c0d9ce3 | 3356 | |
0272a10d VZ |
3357 | else |
3358 | #endif | |
3359 | { | |
3360 | sshift = (int)((3 - ((row_info->width + 3) & 0x03)) << 1); | |
3361 | dshift = (int)((3 - ((final_width + 3) & 0x03)) << 1); | |
3362 | s_start = 0; | |
3363 | s_end = 6; | |
3364 | s_inc = 2; | |
3365 | } | |
3366 | ||
3367 | for (i = 0; i < row_info->width; i++) | |
3368 | { | |
3369 | png_byte v; | |
3370 | int j; | |
3371 | ||
3372 | v = (png_byte)((*sp >> sshift) & 0x03); | |
3373 | for (j = 0; j < jstop; j++) | |
3374 | { | |
3375 | *dp &= (png_byte)((0x3f3f >> (6 - dshift)) & 0xff); | |
3376 | *dp |= (png_byte)(v << dshift); | |
9c0d9ce3 | 3377 | |
0272a10d VZ |
3378 | if (dshift == s_end) |
3379 | { | |
3380 | dshift = s_start; | |
3381 | dp--; | |
3382 | } | |
9c0d9ce3 | 3383 | |
0272a10d VZ |
3384 | else |
3385 | dshift += s_inc; | |
3386 | } | |
9c0d9ce3 | 3387 | |
0272a10d VZ |
3388 | if (sshift == s_end) |
3389 | { | |
3390 | sshift = s_start; | |
3391 | sp--; | |
3392 | } | |
9c0d9ce3 | 3393 | |
0272a10d VZ |
3394 | else |
3395 | sshift += s_inc; | |
3396 | } | |
3397 | break; | |
3398 | } | |
9c0d9ce3 | 3399 | |
0272a10d VZ |
3400 | case 4: |
3401 | { | |
3402 | png_bytep sp = row + (png_size_t)((row_info->width - 1) >> 1); | |
3403 | png_bytep dp = row + (png_size_t)((final_width - 1) >> 1); | |
3404 | int sshift, dshift; | |
3405 | int s_start, s_end, s_inc; | |
3406 | png_uint_32 i; | |
3407 | int jstop = png_pass_inc[pass]; | |
3408 | ||
b61cc19c | 3409 | #ifdef PNG_READ_PACKSWAP_SUPPORTED |
0272a10d VZ |
3410 | if (transformations & PNG_PACKSWAP) |
3411 | { | |
3412 | sshift = (int)(((row_info->width + 1) & 0x01) << 2); | |
3413 | dshift = (int)(((final_width + 1) & 0x01) << 2); | |
3414 | s_start = 4; | |
3415 | s_end = 0; | |
3416 | s_inc = -4; | |
3417 | } | |
9c0d9ce3 | 3418 | |
0272a10d VZ |
3419 | else |
3420 | #endif | |
3421 | { | |
3422 | sshift = (int)((1 - ((row_info->width + 1) & 0x01)) << 2); | |
3423 | dshift = (int)((1 - ((final_width + 1) & 0x01)) << 2); | |
3424 | s_start = 0; | |
3425 | s_end = 4; | |
3426 | s_inc = 4; | |
3427 | } | |
3428 | ||
3429 | for (i = 0; i < row_info->width; i++) | |
3430 | { | |
9c0d9ce3 | 3431 | png_byte v = (png_byte)((*sp >> sshift) & 0x0f); |
0272a10d VZ |
3432 | int j; |
3433 | ||
3434 | for (j = 0; j < jstop; j++) | |
3435 | { | |
3436 | *dp &= (png_byte)((0xf0f >> (4 - dshift)) & 0xff); | |
3437 | *dp |= (png_byte)(v << dshift); | |
9c0d9ce3 | 3438 | |
0272a10d VZ |
3439 | if (dshift == s_end) |
3440 | { | |
3441 | dshift = s_start; | |
3442 | dp--; | |
3443 | } | |
9c0d9ce3 | 3444 | |
0272a10d VZ |
3445 | else |
3446 | dshift += s_inc; | |
3447 | } | |
9c0d9ce3 | 3448 | |
0272a10d VZ |
3449 | if (sshift == s_end) |
3450 | { | |
3451 | sshift = s_start; | |
3452 | sp--; | |
3453 | } | |
9c0d9ce3 | 3454 | |
0272a10d VZ |
3455 | else |
3456 | sshift += s_inc; | |
3457 | } | |
3458 | break; | |
3459 | } | |
9c0d9ce3 | 3460 | |
0272a10d VZ |
3461 | default: |
3462 | { | |
3463 | png_size_t pixel_bytes = (row_info->pixel_depth >> 3); | |
9c0d9ce3 | 3464 | |
b61cc19c PC |
3465 | png_bytep sp = row + (png_size_t)(row_info->width - 1) |
3466 | * pixel_bytes; | |
9c0d9ce3 | 3467 | |
0272a10d VZ |
3468 | png_bytep dp = row + (png_size_t)(final_width - 1) * pixel_bytes; |
3469 | ||
3470 | int jstop = png_pass_inc[pass]; | |
3471 | png_uint_32 i; | |
3472 | ||
3473 | for (i = 0; i < row_info->width; i++) | |
3474 | { | |
3475 | png_byte v[8]; | |
3476 | int j; | |
3477 | ||
3478 | png_memcpy(v, sp, pixel_bytes); | |
9c0d9ce3 | 3479 | |
0272a10d VZ |
3480 | for (j = 0; j < jstop; j++) |
3481 | { | |
3482 | png_memcpy(dp, v, pixel_bytes); | |
3483 | dp -= pixel_bytes; | |
3484 | } | |
9c0d9ce3 | 3485 | |
0272a10d VZ |
3486 | sp -= pixel_bytes; |
3487 | } | |
3488 | break; | |
3489 | } | |
3490 | } | |
9c0d9ce3 | 3491 | |
0272a10d | 3492 | row_info->width = final_width; |
970f6abe | 3493 | row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth, final_width); |
0272a10d | 3494 | } |
b61cc19c | 3495 | #ifndef PNG_READ_PACKSWAP_SUPPORTED |
9c0d9ce3 | 3496 | PNG_UNUSED(transformations) /* Silence compiler warning */ |
0272a10d VZ |
3497 | #endif |
3498 | } | |
3499 | #endif /* PNG_READ_INTERLACING_SUPPORTED */ | |
3500 | ||
9c0d9ce3 DS |
3501 | /* 1.5.6: Changed to just take a png_row_info (not png_ptr) and to ignore bad |
3502 | * adaptive filter bytes. | |
3503 | */ | |
0272a10d | 3504 | void /* PRIVATE */ |
9c0d9ce3 DS |
3505 | png_read_filter_row(png_row_infop row_info, png_bytep row, |
3506 | png_const_bytep prev_row, int filter) | |
0272a10d | 3507 | { |
0272a10d VZ |
3508 | switch (filter) |
3509 | { | |
3510 | case PNG_FILTER_VALUE_NONE: | |
3511 | break; | |
9c0d9ce3 | 3512 | |
0272a10d VZ |
3513 | case PNG_FILTER_VALUE_SUB: |
3514 | { | |
9c0d9ce3 DS |
3515 | png_size_t i; |
3516 | png_size_t istop = row_info->rowbytes; | |
3517 | unsigned int bpp = (row_info->pixel_depth + 7) >> 3; | |
0272a10d VZ |
3518 | png_bytep rp = row + bpp; |
3519 | png_bytep lp = row; | |
3520 | ||
3521 | for (i = bpp; i < istop; i++) | |
3522 | { | |
3523 | *rp = (png_byte)(((int)(*rp) + (int)(*lp++)) & 0xff); | |
3524 | rp++; | |
3525 | } | |
3526 | break; | |
3527 | } | |
3528 | case PNG_FILTER_VALUE_UP: | |
3529 | { | |
9c0d9ce3 DS |
3530 | png_size_t i; |
3531 | png_size_t istop = row_info->rowbytes; | |
0272a10d | 3532 | png_bytep rp = row; |
9c0d9ce3 | 3533 | png_const_bytep pp = prev_row; |
0272a10d VZ |
3534 | |
3535 | for (i = 0; i < istop; i++) | |
3536 | { | |
3537 | *rp = (png_byte)(((int)(*rp) + (int)(*pp++)) & 0xff); | |
3538 | rp++; | |
3539 | } | |
3540 | break; | |
3541 | } | |
3542 | case PNG_FILTER_VALUE_AVG: | |
3543 | { | |
9c0d9ce3 | 3544 | png_size_t i; |
0272a10d | 3545 | png_bytep rp = row; |
9c0d9ce3 | 3546 | png_const_bytep pp = prev_row; |
0272a10d | 3547 | png_bytep lp = row; |
9c0d9ce3 DS |
3548 | unsigned int bpp = (row_info->pixel_depth + 7) >> 3; |
3549 | png_size_t istop = row_info->rowbytes - bpp; | |
0272a10d VZ |
3550 | |
3551 | for (i = 0; i < bpp; i++) | |
3552 | { | |
3553 | *rp = (png_byte)(((int)(*rp) + | |
9c0d9ce3 DS |
3554 | ((int)(*pp++) / 2 )) & 0xff); |
3555 | ||
0272a10d VZ |
3556 | rp++; |
3557 | } | |
3558 | ||
3559 | for (i = 0; i < istop; i++) | |
3560 | { | |
3561 | *rp = (png_byte)(((int)(*rp) + | |
9c0d9ce3 DS |
3562 | (int)(*pp++ + *lp++) / 2 ) & 0xff); |
3563 | ||
0272a10d VZ |
3564 | rp++; |
3565 | } | |
3566 | break; | |
3567 | } | |
3568 | case PNG_FILTER_VALUE_PAETH: | |
3569 | { | |
9c0d9ce3 | 3570 | png_size_t i; |
0272a10d | 3571 | png_bytep rp = row; |
9c0d9ce3 | 3572 | png_const_bytep pp = prev_row; |
0272a10d | 3573 | png_bytep lp = row; |
9c0d9ce3 DS |
3574 | png_const_bytep cp = prev_row; |
3575 | unsigned int bpp = (row_info->pixel_depth + 7) >> 3; | |
3576 | png_size_t istop=row_info->rowbytes - bpp; | |
0272a10d VZ |
3577 | |
3578 | for (i = 0; i < bpp; i++) | |
3579 | { | |
3580 | *rp = (png_byte)(((int)(*rp) + (int)(*pp++)) & 0xff); | |
3581 | rp++; | |
3582 | } | |
3583 | ||
b61cc19c | 3584 | for (i = 0; i < istop; i++) /* Use leftover rp,pp */ |
0272a10d VZ |
3585 | { |
3586 | int a, b, c, pa, pb, pc, p; | |
3587 | ||
3588 | a = *lp++; | |
3589 | b = *pp++; | |
3590 | c = *cp++; | |
3591 | ||
3592 | p = b - c; | |
3593 | pc = a - c; | |
3594 | ||
3595 | #ifdef PNG_USE_ABS | |
3596 | pa = abs(p); | |
3597 | pb = abs(pc); | |
3598 | pc = abs(p + pc); | |
3599 | #else | |
3600 | pa = p < 0 ? -p : p; | |
3601 | pb = pc < 0 ? -pc : pc; | |
3602 | pc = (p + pc) < 0 ? -(p + pc) : p + pc; | |
3603 | #endif | |
3604 | ||
3605 | /* | |
3606 | if (pa <= pb && pa <= pc) | |
3607 | p = a; | |
9c0d9ce3 | 3608 | |
0272a10d VZ |
3609 | else if (pb <= pc) |
3610 | p = b; | |
9c0d9ce3 | 3611 | |
0272a10d VZ |
3612 | else |
3613 | p = c; | |
3614 | */ | |
3615 | ||
970f6abe | 3616 | p = (pa <= pb && pa <= pc) ? a : (pb <= pc) ? b : c; |
0272a10d VZ |
3617 | |
3618 | *rp = (png_byte)(((int)(*rp) + p) & 0xff); | |
3619 | rp++; | |
3620 | } | |
3621 | break; | |
3622 | } | |
3623 | default: | |
9c0d9ce3 | 3624 | /* NOT REACHED */ |
0272a10d VZ |
3625 | break; |
3626 | } | |
3627 | } | |
3628 | ||
b61cc19c | 3629 | #ifdef PNG_SEQUENTIAL_READ_SUPPORTED |
0272a10d VZ |
3630 | void /* PRIVATE */ |
3631 | png_read_finish_row(png_structp png_ptr) | |
3632 | { | |
970f6abe | 3633 | #ifdef PNG_READ_INTERLACING_SUPPORTED |
b61cc19c | 3634 | /* Arrays to facilitate easy interlacing - use pass (0 - 6) as index */ |
0272a10d | 3635 | |
b61cc19c | 3636 | /* Start of interlace block */ |
9c0d9ce3 | 3637 | static PNG_CONST png_byte png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0}; |
0272a10d | 3638 | |
b61cc19c | 3639 | /* Offset to next interlace block */ |
9c0d9ce3 | 3640 | static PNG_CONST png_byte png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1}; |
0272a10d | 3641 | |
b61cc19c | 3642 | /* Start of interlace block in the y direction */ |
9c0d9ce3 | 3643 | static PNG_CONST png_byte png_pass_ystart[7] = {0, 0, 4, 0, 2, 0, 1}; |
0272a10d | 3644 | |
b61cc19c | 3645 | /* Offset to next interlace block in the y direction */ |
9c0d9ce3 | 3646 | static PNG_CONST png_byte png_pass_yinc[7] = {8, 8, 8, 4, 4, 2, 2}; |
970f6abe | 3647 | #endif /* PNG_READ_INTERLACING_SUPPORTED */ |
0272a10d | 3648 | |
970f6abe | 3649 | png_debug(1, "in png_read_finish_row"); |
0272a10d VZ |
3650 | png_ptr->row_number++; |
3651 | if (png_ptr->row_number < png_ptr->num_rows) | |
3652 | return; | |
3653 | ||
970f6abe | 3654 | #ifdef PNG_READ_INTERLACING_SUPPORTED |
0272a10d VZ |
3655 | if (png_ptr->interlaced) |
3656 | { | |
3657 | png_ptr->row_number = 0; | |
9c0d9ce3 DS |
3658 | |
3659 | /* TO DO: don't do this if prev_row isn't needed (requires | |
3660 | * read-ahead of the next row's filter byte. | |
3661 | */ | |
3662 | png_memset(png_ptr->prev_row, 0, png_ptr->rowbytes + 1); | |
3663 | ||
0272a10d VZ |
3664 | do |
3665 | { | |
3666 | png_ptr->pass++; | |
9c0d9ce3 | 3667 | |
0272a10d VZ |
3668 | if (png_ptr->pass >= 7) |
3669 | break; | |
9c0d9ce3 | 3670 | |
0272a10d VZ |
3671 | png_ptr->iwidth = (png_ptr->width + |
3672 | png_pass_inc[png_ptr->pass] - 1 - | |
3673 | png_pass_start[png_ptr->pass]) / | |
3674 | png_pass_inc[png_ptr->pass]; | |
3675 | ||
0272a10d VZ |
3676 | if (!(png_ptr->transformations & PNG_INTERLACE)) |
3677 | { | |
3678 | png_ptr->num_rows = (png_ptr->height + | |
9c0d9ce3 DS |
3679 | png_pass_yinc[png_ptr->pass] - 1 - |
3680 | png_pass_ystart[png_ptr->pass]) / | |
3681 | png_pass_yinc[png_ptr->pass]; | |
0272a10d | 3682 | } |
9c0d9ce3 | 3683 | |
0272a10d | 3684 | else /* if (png_ptr->transformations & PNG_INTERLACE) */ |
9c0d9ce3 DS |
3685 | break; /* libpng deinterlacing sees every row */ |
3686 | ||
3687 | } while (png_ptr->num_rows == 0 || png_ptr->iwidth == 0); | |
0272a10d VZ |
3688 | |
3689 | if (png_ptr->pass < 7) | |
3690 | return; | |
3691 | } | |
970f6abe | 3692 | #endif /* PNG_READ_INTERLACING_SUPPORTED */ |
0272a10d VZ |
3693 | |
3694 | if (!(png_ptr->flags & PNG_FLAG_ZLIB_FINISHED)) | |
3695 | { | |
0272a10d VZ |
3696 | char extra; |
3697 | int ret; | |
3698 | ||
3699 | png_ptr->zstream.next_out = (Byte *)&extra; | |
3700 | png_ptr->zstream.avail_out = (uInt)1; | |
9c0d9ce3 | 3701 | |
970f6abe | 3702 | for (;;) |
0272a10d VZ |
3703 | { |
3704 | if (!(png_ptr->zstream.avail_in)) | |
3705 | { | |
3706 | while (!png_ptr->idat_size) | |
3707 | { | |
0272a10d | 3708 | png_crc_finish(png_ptr, 0); |
9c0d9ce3 DS |
3709 | png_ptr->idat_size = png_read_chunk_header(png_ptr); |
3710 | if (png_ptr->chunk_name != png_IDAT) | |
0272a10d | 3711 | png_error(png_ptr, "Not enough image data"); |
0272a10d | 3712 | } |
9c0d9ce3 | 3713 | |
0272a10d VZ |
3714 | png_ptr->zstream.avail_in = (uInt)png_ptr->zbuf_size; |
3715 | png_ptr->zstream.next_in = png_ptr->zbuf; | |
9c0d9ce3 | 3716 | |
0272a10d VZ |
3717 | if (png_ptr->zbuf_size > png_ptr->idat_size) |
3718 | png_ptr->zstream.avail_in = (uInt)png_ptr->idat_size; | |
9c0d9ce3 | 3719 | |
0272a10d VZ |
3720 | png_crc_read(png_ptr, png_ptr->zbuf, png_ptr->zstream.avail_in); |
3721 | png_ptr->idat_size -= png_ptr->zstream.avail_in; | |
3722 | } | |
9c0d9ce3 | 3723 | |
0272a10d | 3724 | ret = inflate(&png_ptr->zstream, Z_PARTIAL_FLUSH); |
9c0d9ce3 | 3725 | |
0272a10d VZ |
3726 | if (ret == Z_STREAM_END) |
3727 | { | |
3728 | if (!(png_ptr->zstream.avail_out) || png_ptr->zstream.avail_in || | |
9c0d9ce3 | 3729 | png_ptr->idat_size) |
0272a10d | 3730 | png_warning(png_ptr, "Extra compressed data"); |
9c0d9ce3 | 3731 | |
0272a10d VZ |
3732 | png_ptr->mode |= PNG_AFTER_IDAT; |
3733 | png_ptr->flags |= PNG_FLAG_ZLIB_FINISHED; | |
3734 | break; | |
3735 | } | |
9c0d9ce3 | 3736 | |
0272a10d VZ |
3737 | if (ret != Z_OK) |
3738 | png_error(png_ptr, png_ptr->zstream.msg ? png_ptr->zstream.msg : | |
9c0d9ce3 | 3739 | "Decompression Error"); |
0272a10d VZ |
3740 | |
3741 | if (!(png_ptr->zstream.avail_out)) | |
3742 | { | |
b61cc19c | 3743 | png_warning(png_ptr, "Extra compressed data"); |
0272a10d VZ |
3744 | png_ptr->mode |= PNG_AFTER_IDAT; |
3745 | png_ptr->flags |= PNG_FLAG_ZLIB_FINISHED; | |
3746 | break; | |
3747 | } | |
3748 | ||
3749 | } | |
3750 | png_ptr->zstream.avail_out = 0; | |
3751 | } | |
3752 | ||
3753 | if (png_ptr->idat_size || png_ptr->zstream.avail_in) | |
3754 | png_warning(png_ptr, "Extra compression data"); | |
3755 | ||
3756 | inflateReset(&png_ptr->zstream); | |
3757 | ||
3758 | png_ptr->mode |= PNG_AFTER_IDAT; | |
3759 | } | |
b61cc19c | 3760 | #endif /* PNG_SEQUENTIAL_READ_SUPPORTED */ |
0272a10d VZ |
3761 | |
3762 | void /* PRIVATE */ | |
3763 | png_read_start_row(png_structp png_ptr) | |
3764 | { | |
970f6abe | 3765 | #ifdef PNG_READ_INTERLACING_SUPPORTED |
b61cc19c | 3766 | /* Arrays to facilitate easy interlacing - use pass (0 - 6) as index */ |
0272a10d | 3767 | |
b61cc19c | 3768 | /* Start of interlace block */ |
9c0d9ce3 | 3769 | static PNG_CONST png_byte png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0}; |
0272a10d | 3770 | |
b61cc19c | 3771 | /* Offset to next interlace block */ |
9c0d9ce3 | 3772 | static PNG_CONST png_byte png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1}; |
0272a10d | 3773 | |
b61cc19c | 3774 | /* Start of interlace block in the y direction */ |
9c0d9ce3 | 3775 | static PNG_CONST png_byte png_pass_ystart[7] = {0, 0, 4, 0, 2, 0, 1}; |
0272a10d | 3776 | |
b61cc19c | 3777 | /* Offset to next interlace block in the y direction */ |
9c0d9ce3 | 3778 | static PNG_CONST png_byte png_pass_yinc[7] = {8, 8, 8, 4, 4, 2, 2}; |
0272a10d VZ |
3779 | #endif |
3780 | ||
3781 | int max_pixel_depth; | |
970f6abe | 3782 | png_size_t row_bytes; |
0272a10d | 3783 | |
970f6abe | 3784 | png_debug(1, "in png_read_start_row"); |
0272a10d | 3785 | png_ptr->zstream.avail_in = 0; |
9c0d9ce3 | 3786 | #ifdef PNG_READ_TRANSFORMS_SUPPORTED |
0272a10d | 3787 | png_init_read_transformations(png_ptr); |
9c0d9ce3 | 3788 | #endif |
970f6abe | 3789 | #ifdef PNG_READ_INTERLACING_SUPPORTED |
0272a10d VZ |
3790 | if (png_ptr->interlaced) |
3791 | { | |
3792 | if (!(png_ptr->transformations & PNG_INTERLACE)) | |
3793 | png_ptr->num_rows = (png_ptr->height + png_pass_yinc[0] - 1 - | |
9c0d9ce3 DS |
3794 | png_pass_ystart[0]) / png_pass_yinc[0]; |
3795 | ||
0272a10d VZ |
3796 | else |
3797 | png_ptr->num_rows = png_ptr->height; | |
3798 | ||
3799 | png_ptr->iwidth = (png_ptr->width + | |
9c0d9ce3 DS |
3800 | png_pass_inc[png_ptr->pass] - 1 - |
3801 | png_pass_start[png_ptr->pass]) / | |
3802 | png_pass_inc[png_ptr->pass]; | |
0272a10d | 3803 | } |
9c0d9ce3 | 3804 | |
0272a10d | 3805 | else |
970f6abe | 3806 | #endif /* PNG_READ_INTERLACING_SUPPORTED */ |
0272a10d VZ |
3807 | { |
3808 | png_ptr->num_rows = png_ptr->height; | |
3809 | png_ptr->iwidth = png_ptr->width; | |
0272a10d | 3810 | } |
9c0d9ce3 | 3811 | |
0272a10d VZ |
3812 | max_pixel_depth = png_ptr->pixel_depth; |
3813 | ||
b61cc19c | 3814 | #ifdef PNG_READ_PACK_SUPPORTED |
0272a10d VZ |
3815 | if ((png_ptr->transformations & PNG_PACK) && png_ptr->bit_depth < 8) |
3816 | max_pixel_depth = 8; | |
3817 | #endif | |
3818 | ||
b61cc19c | 3819 | #ifdef PNG_READ_EXPAND_SUPPORTED |
0272a10d VZ |
3820 | if (png_ptr->transformations & PNG_EXPAND) |
3821 | { | |
3822 | if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE) | |
3823 | { | |
3824 | if (png_ptr->num_trans) | |
3825 | max_pixel_depth = 32; | |
9c0d9ce3 | 3826 | |
0272a10d VZ |
3827 | else |
3828 | max_pixel_depth = 24; | |
3829 | } | |
9c0d9ce3 | 3830 | |
0272a10d VZ |
3831 | else if (png_ptr->color_type == PNG_COLOR_TYPE_GRAY) |
3832 | { | |
3833 | if (max_pixel_depth < 8) | |
3834 | max_pixel_depth = 8; | |
9c0d9ce3 | 3835 | |
0272a10d VZ |
3836 | if (png_ptr->num_trans) |
3837 | max_pixel_depth *= 2; | |
3838 | } | |
9c0d9ce3 | 3839 | |
0272a10d VZ |
3840 | else if (png_ptr->color_type == PNG_COLOR_TYPE_RGB) |
3841 | { | |
3842 | if (png_ptr->num_trans) | |
3843 | { | |
3844 | max_pixel_depth *= 4; | |
3845 | max_pixel_depth /= 3; | |
3846 | } | |
3847 | } | |
3848 | } | |
3849 | #endif | |
3850 | ||
9c0d9ce3 DS |
3851 | #ifdef PNG_READ_EXPAND_16_SUPPORTED |
3852 | if (png_ptr->transformations & PNG_EXPAND_16) | |
3853 | { | |
3854 | # ifdef PNG_READ_EXPAND_SUPPORTED | |
3855 | /* In fact it is an error if it isn't supported, but checking is | |
3856 | * the safe way. | |
3857 | */ | |
3858 | if (png_ptr->transformations & PNG_EXPAND) | |
3859 | { | |
3860 | if (png_ptr->bit_depth < 16) | |
3861 | max_pixel_depth *= 2; | |
3862 | } | |
3863 | else | |
3864 | # endif | |
3865 | png_ptr->transformations &= ~PNG_EXPAND_16; | |
3866 | } | |
3867 | #endif | |
3868 | ||
b61cc19c | 3869 | #ifdef PNG_READ_FILLER_SUPPORTED |
0272a10d VZ |
3870 | if (png_ptr->transformations & (PNG_FILLER)) |
3871 | { | |
3872 | if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE) | |
3873 | max_pixel_depth = 32; | |
9c0d9ce3 | 3874 | |
0272a10d VZ |
3875 | else if (png_ptr->color_type == PNG_COLOR_TYPE_GRAY) |
3876 | { | |
3877 | if (max_pixel_depth <= 8) | |
3878 | max_pixel_depth = 16; | |
9c0d9ce3 | 3879 | |
0272a10d VZ |
3880 | else |
3881 | max_pixel_depth = 32; | |
3882 | } | |
9c0d9ce3 | 3883 | |
0272a10d VZ |
3884 | else if (png_ptr->color_type == PNG_COLOR_TYPE_RGB) |
3885 | { | |
3886 | if (max_pixel_depth <= 32) | |
3887 | max_pixel_depth = 32; | |
9c0d9ce3 | 3888 | |
0272a10d VZ |
3889 | else |
3890 | max_pixel_depth = 64; | |
3891 | } | |
3892 | } | |
3893 | #endif | |
3894 | ||
b61cc19c | 3895 | #ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED |
0272a10d VZ |
3896 | if (png_ptr->transformations & PNG_GRAY_TO_RGB) |
3897 | { | |
3898 | if ( | |
b61cc19c | 3899 | #ifdef PNG_READ_EXPAND_SUPPORTED |
9c0d9ce3 | 3900 | (png_ptr->num_trans && (png_ptr->transformations & PNG_EXPAND)) || |
0272a10d | 3901 | #endif |
b61cc19c | 3902 | #ifdef PNG_READ_FILLER_SUPPORTED |
9c0d9ce3 | 3903 | (png_ptr->transformations & (PNG_FILLER)) || |
0272a10d | 3904 | #endif |
9c0d9ce3 | 3905 | png_ptr->color_type == PNG_COLOR_TYPE_GRAY_ALPHA) |
0272a10d VZ |
3906 | { |
3907 | if (max_pixel_depth <= 16) | |
3908 | max_pixel_depth = 32; | |
9c0d9ce3 | 3909 | |
0272a10d VZ |
3910 | else |
3911 | max_pixel_depth = 64; | |
3912 | } | |
9c0d9ce3 | 3913 | |
0272a10d VZ |
3914 | else |
3915 | { | |
3916 | if (max_pixel_depth <= 8) | |
9c0d9ce3 DS |
3917 | { |
3918 | if (png_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA) | |
0272a10d | 3919 | max_pixel_depth = 32; |
9c0d9ce3 DS |
3920 | |
3921 | else | |
0272a10d | 3922 | max_pixel_depth = 24; |
9c0d9ce3 DS |
3923 | } |
3924 | ||
0272a10d VZ |
3925 | else if (png_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA) |
3926 | max_pixel_depth = 64; | |
9c0d9ce3 | 3927 | |
0272a10d VZ |
3928 | else |
3929 | max_pixel_depth = 48; | |
3930 | } | |
3931 | } | |
3932 | #endif | |
3933 | ||
3934 | #if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) && \ | |
3935 | defined(PNG_USER_TRANSFORM_PTR_SUPPORTED) | |
970f6abe | 3936 | if (png_ptr->transformations & PNG_USER_TRANSFORM) |
9c0d9ce3 DS |
3937 | { |
3938 | int user_pixel_depth = png_ptr->user_transform_depth * | |
0272a10d | 3939 | png_ptr->user_transform_channels; |
9c0d9ce3 DS |
3940 | |
3941 | if (user_pixel_depth > max_pixel_depth) | |
3942 | max_pixel_depth = user_pixel_depth; | |
3943 | } | |
0272a10d VZ |
3944 | #endif |
3945 | ||
9c0d9ce3 DS |
3946 | /* This value is stored in png_struct and double checked in the row read |
3947 | * code. | |
3948 | */ | |
3949 | png_ptr->maximum_pixel_depth = (png_byte)max_pixel_depth; | |
3950 | png_ptr->transformed_pixel_depth = 0; /* calculated on demand */ | |
3951 | ||
b61cc19c PC |
3952 | /* Align the width on the next larger 8 pixels. Mainly used |
3953 | * for interlacing | |
3954 | */ | |
0272a10d | 3955 | row_bytes = ((png_ptr->width + 7) & ~((png_uint_32)7)); |
b61cc19c PC |
3956 | /* Calculate the maximum bytes needed, adding a byte and a pixel |
3957 | * for safety's sake | |
3958 | */ | |
970f6abe | 3959 | row_bytes = PNG_ROWBYTES(max_pixel_depth, row_bytes) + |
9c0d9ce3 DS |
3960 | 1 + ((max_pixel_depth + 7) >> 3); |
3961 | ||
0272a10d VZ |
3962 | #ifdef PNG_MAX_MALLOC_64K |
3963 | if (row_bytes > (png_uint_32)65536L) | |
3964 | png_error(png_ptr, "This image requires a row greater than 64KB"); | |
3965 | #endif | |
970f6abe | 3966 | |
b61cc19c | 3967 | if (row_bytes + 48 > png_ptr->old_big_row_buf_size) |
970f6abe VZ |
3968 | { |
3969 | png_free(png_ptr, png_ptr->big_row_buf); | |
9c0d9ce3 DS |
3970 | png_free(png_ptr, png_ptr->big_prev_row); |
3971 | ||
b61cc19c PC |
3972 | if (png_ptr->interlaced) |
3973 | png_ptr->big_row_buf = (png_bytep)png_calloc(png_ptr, | |
3974 | row_bytes + 48); | |
9c0d9ce3 | 3975 | |
b61cc19c | 3976 | else |
9c0d9ce3 DS |
3977 | png_ptr->big_row_buf = (png_bytep)png_malloc(png_ptr, row_bytes + 48); |
3978 | ||
3979 | png_ptr->big_prev_row = (png_bytep)png_malloc(png_ptr, row_bytes + 48); | |
b61cc19c PC |
3980 | |
3981 | #ifdef PNG_ALIGNED_MEMORY_SUPPORTED | |
3982 | /* Use 16-byte aligned memory for row_buf with at least 16 bytes | |
9c0d9ce3 DS |
3983 | * of padding before and after row_buf; treat prev_row similarly. |
3984 | * NOTE: the alignment is to the start of the pixels, one beyond the start | |
3985 | * of the buffer, because of the filter byte. Prior to libpng 1.5.6 this | |
3986 | * was incorrect; the filter byte was aligned, which had the exact | |
3987 | * opposite effect of that intended. | |
b61cc19c | 3988 | */ |
9c0d9ce3 DS |
3989 | { |
3990 | png_bytep temp = png_ptr->big_row_buf + 32; | |
3991 | int extra = (int)((temp - (png_bytep)0) & 0x0f); | |
3992 | png_ptr->row_buf = temp - extra - 1/*filter byte*/; | |
3993 | ||
3994 | temp = png_ptr->big_prev_row + 32; | |
3995 | extra = (int)((temp - (png_bytep)0) & 0x0f); | |
3996 | png_ptr->prev_row = temp - extra - 1/*filter byte*/; | |
3997 | } | |
3998 | ||
b61cc19c | 3999 | #else |
9c0d9ce3 DS |
4000 | /* Use 31 bytes of padding before and 17 bytes after row_buf. */ |
4001 | png_ptr->row_buf = png_ptr->big_row_buf + 31; | |
4002 | png_ptr->prev_row = png_ptr->big_prev_row + 31; | |
b61cc19c PC |
4003 | #endif |
4004 | png_ptr->old_big_row_buf_size = row_bytes + 48; | |
970f6abe | 4005 | } |
0272a10d VZ |
4006 | |
4007 | #ifdef PNG_MAX_MALLOC_64K | |
9c0d9ce3 | 4008 | if (png_ptr->rowbytes > 65535) |
0272a10d | 4009 | png_error(png_ptr, "This image requires a row greater than 64KB"); |
9c0d9ce3 | 4010 | |
0272a10d | 4011 | #endif |
9c0d9ce3 | 4012 | if (png_ptr->rowbytes > (PNG_SIZE_MAX - 1)) |
b61cc19c | 4013 | png_error(png_ptr, "Row has too many bytes to allocate in memory"); |
970f6abe | 4014 | |
b61cc19c | 4015 | png_memset(png_ptr->prev_row, 0, png_ptr->rowbytes + 1); |
0272a10d | 4016 | |
9c0d9ce3 DS |
4017 | png_debug1(3, "width = %u,", png_ptr->width); |
4018 | png_debug1(3, "height = %u,", png_ptr->height); | |
4019 | png_debug1(3, "iwidth = %u,", png_ptr->iwidth); | |
4020 | png_debug1(3, "num_rows = %u,", png_ptr->num_rows); | |
4021 | png_debug1(3, "rowbytes = %lu,", (unsigned long)png_ptr->rowbytes); | |
b61cc19c | 4022 | png_debug1(3, "irowbytes = %lu", |
9c0d9ce3 | 4023 | (unsigned long)PNG_ROWBYTES(png_ptr->pixel_depth, png_ptr->iwidth) + 1); |
0272a10d VZ |
4024 | |
4025 | png_ptr->flags |= PNG_FLAG_ROW_INIT; | |
4026 | } | |
4027 | #endif /* PNG_READ_SUPPORTED */ |