OLD | NEW |
1 | 1 |
2 /* pngpread.c - read a png file in push mode | 2 /* pngpread.c - read a png file in push mode |
3 * | 3 * |
4 * Last changed in libpng 1.2.44 [June 26, 2010] | 4 * Last changed in libpng 1.6.0 [February 14, 2013] |
5 * Copyright (c) 1998-2010 Glenn Randers-Pehrson | 5 * Copyright (c) 1998-2013 Glenn Randers-Pehrson |
6 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) | 6 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) |
7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) | 7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) |
8 * | 8 * |
9 * This code is released under the libpng license. | 9 * This code is released under the libpng license. |
10 * For conditions of distribution and use, see the disclaimer | 10 * For conditions of distribution and use, see the disclaimer |
11 * and license in png.h | 11 * and license in png.h |
12 */ | 12 */ |
13 | 13 |
14 #define PNG_INTERNAL | 14 #include "pngpriv.h" |
15 #define PNG_NO_PEDANTIC_WARNINGS | 15 |
16 #include "png.h" | |
17 #ifdef PNG_PROGRESSIVE_READ_SUPPORTED | 16 #ifdef PNG_PROGRESSIVE_READ_SUPPORTED |
18 | 17 |
19 /* Push model modes */ | 18 /* Push model modes */ |
20 #define PNG_READ_SIG_MODE 0 | 19 #define PNG_READ_SIG_MODE 0 |
21 #define PNG_READ_CHUNK_MODE 1 | 20 #define PNG_READ_CHUNK_MODE 1 |
22 #define PNG_READ_IDAT_MODE 2 | 21 #define PNG_READ_IDAT_MODE 2 |
23 #define PNG_SKIP_MODE 3 | 22 #define PNG_SKIP_MODE 3 |
24 #define PNG_READ_tEXt_MODE 4 | 23 #define PNG_READ_tEXt_MODE 4 |
25 #define PNG_READ_zTXt_MODE 5 | 24 #define PNG_READ_zTXt_MODE 5 |
26 #define PNG_READ_DONE_MODE 6 | 25 #define PNG_READ_DONE_MODE 6 |
27 #define PNG_READ_iTXt_MODE 7 | 26 #define PNG_READ_iTXt_MODE 7 |
28 #define PNG_ERROR_MODE 8 | 27 #define PNG_ERROR_MODE 8 |
29 | 28 |
30 void PNGAPI | 29 void PNGAPI |
31 png_process_data(png_structp png_ptr, png_infop info_ptr, | 30 png_process_data(png_structrp png_ptr, png_inforp info_ptr, |
32 png_bytep buffer, png_size_t buffer_size) | 31 png_bytep buffer, png_size_t buffer_size) |
33 { | 32 { |
34 if (png_ptr == NULL || info_ptr == NULL) | 33 if (png_ptr == NULL || info_ptr == NULL) |
35 return; | 34 return; |
36 | 35 |
37 png_push_restore_buffer(png_ptr, buffer, buffer_size); | 36 png_push_restore_buffer(png_ptr, buffer, buffer_size); |
38 | 37 |
39 while (png_ptr->buffer_size) | 38 while (png_ptr->buffer_size) |
40 { | 39 { |
41 png_process_some_data(png_ptr, info_ptr); | 40 png_process_some_data(png_ptr, info_ptr); |
42 } | 41 } |
43 } | 42 } |
44 | 43 |
| 44 png_size_t PNGAPI |
| 45 png_process_data_pause(png_structrp png_ptr, int save) |
| 46 { |
| 47 if (png_ptr != NULL) |
| 48 { |
| 49 /* It's easiest for the caller if we do the save, then the caller doesn't |
| 50 * have to supply the same data again: |
| 51 */ |
| 52 if (save) |
| 53 png_push_save_buffer(png_ptr); |
| 54 else |
| 55 { |
| 56 /* This includes any pending saved bytes: */ |
| 57 png_size_t remaining = png_ptr->buffer_size; |
| 58 png_ptr->buffer_size = 0; |
| 59 |
| 60 /* So subtract the saved buffer size, unless all the data |
| 61 * is actually 'saved', in which case we just return 0 |
| 62 */ |
| 63 if (png_ptr->save_buffer_size < remaining) |
| 64 return remaining - png_ptr->save_buffer_size; |
| 65 } |
| 66 } |
| 67 |
| 68 return 0; |
| 69 } |
| 70 |
| 71 png_uint_32 PNGAPI |
| 72 png_process_data_skip(png_structrp png_ptr) |
| 73 { |
| 74 png_uint_32 remaining = 0; |
| 75 |
| 76 if (png_ptr != NULL && png_ptr->process_mode == PNG_SKIP_MODE && |
| 77 png_ptr->skip_length > 0) |
| 78 { |
| 79 /* At the end of png_process_data the buffer size must be 0 (see the loop |
| 80 * above) so we can detect a broken call here: |
| 81 */ |
| 82 if (png_ptr->buffer_size != 0) |
| 83 png_error(png_ptr, |
| 84 "png_process_data_skip called inside png_process_data"); |
| 85 |
| 86 /* If is impossible for there to be a saved buffer at this point - |
| 87 * otherwise we could not be in SKIP mode. This will also happen if |
| 88 * png_process_skip is called inside png_process_data (but only very |
| 89 * rarely.) |
| 90 */ |
| 91 if (png_ptr->save_buffer_size != 0) |
| 92 png_error(png_ptr, "png_process_data_skip called with saved data"); |
| 93 |
| 94 remaining = png_ptr->skip_length; |
| 95 png_ptr->skip_length = 0; |
| 96 png_ptr->process_mode = PNG_READ_CHUNK_MODE; |
| 97 } |
| 98 |
| 99 return remaining; |
| 100 } |
| 101 |
45 /* What we do with the incoming data depends on what we were previously | 102 /* What we do with the incoming data depends on what we were previously |
46 * doing before we ran out of data... | 103 * doing before we ran out of data... |
47 */ | 104 */ |
48 void /* PRIVATE */ | 105 void /* PRIVATE */ |
49 png_process_some_data(png_structp png_ptr, png_infop info_ptr) | 106 png_process_some_data(png_structrp png_ptr, png_inforp info_ptr) |
50 { | 107 { |
51 if (png_ptr == NULL) | 108 if (png_ptr == NULL) |
52 return; | 109 return; |
53 | 110 |
54 switch (png_ptr->process_mode) | 111 switch (png_ptr->process_mode) |
55 { | 112 { |
56 case PNG_READ_SIG_MODE: | 113 case PNG_READ_SIG_MODE: |
57 { | 114 { |
58 png_push_read_sig(png_ptr, info_ptr); | 115 png_push_read_sig(png_ptr, info_ptr); |
59 break; | 116 break; |
60 } | 117 } |
61 | 118 |
62 case PNG_READ_CHUNK_MODE: | 119 case PNG_READ_CHUNK_MODE: |
63 { | 120 { |
64 png_push_read_chunk(png_ptr, info_ptr); | 121 png_push_read_chunk(png_ptr, info_ptr); |
65 break; | 122 break; |
66 } | 123 } |
67 | 124 |
68 case PNG_READ_IDAT_MODE: | 125 case PNG_READ_IDAT_MODE: |
69 { | 126 { |
70 png_push_read_IDAT(png_ptr); | 127 png_push_read_IDAT(png_ptr); |
71 break; | 128 break; |
72 } | 129 } |
73 | 130 |
74 #ifdef PNG_READ_tEXt_SUPPORTED | |
75 case PNG_READ_tEXt_MODE: | |
76 { | |
77 png_push_read_tEXt(png_ptr, info_ptr); | |
78 break; | |
79 } | |
80 | |
81 #endif | |
82 #ifdef PNG_READ_zTXt_SUPPORTED | |
83 case PNG_READ_zTXt_MODE: | |
84 { | |
85 png_push_read_zTXt(png_ptr, info_ptr); | |
86 break; | |
87 } | |
88 | |
89 #endif | |
90 #ifdef PNG_READ_iTXt_SUPPORTED | |
91 case PNG_READ_iTXt_MODE: | |
92 { | |
93 png_push_read_iTXt(png_ptr, info_ptr); | |
94 break; | |
95 } | |
96 | |
97 #endif | |
98 case PNG_SKIP_MODE: | 131 case PNG_SKIP_MODE: |
99 { | 132 { |
100 png_push_crc_finish(png_ptr); | 133 png_push_crc_finish(png_ptr); |
101 break; | 134 break; |
102 } | 135 } |
103 | 136 |
104 default: | 137 default: |
105 { | 138 { |
106 png_ptr->buffer_size = 0; | 139 png_ptr->buffer_size = 0; |
107 break; | 140 break; |
108 } | 141 } |
109 } | 142 } |
110 } | 143 } |
111 | 144 |
112 /* Read any remaining signature bytes from the stream and compare them with | 145 /* Read any remaining signature bytes from the stream and compare them with |
113 * the correct PNG signature. It is possible that this routine is called | 146 * the correct PNG signature. It is possible that this routine is called |
114 * with bytes already read from the signature, either because they have been | 147 * with bytes already read from the signature, either because they have been |
115 * checked by the calling application, or because of multiple calls to this | 148 * checked by the calling application, or because of multiple calls to this |
116 * routine. | 149 * routine. |
117 */ | 150 */ |
118 void /* PRIVATE */ | 151 void /* PRIVATE */ |
119 png_push_read_sig(png_structp png_ptr, png_infop info_ptr) | 152 png_push_read_sig(png_structrp png_ptr, png_inforp info_ptr) |
120 { | 153 { |
121 png_size_t num_checked = png_ptr->sig_bytes, | 154 png_size_t num_checked = png_ptr->sig_bytes, /* SAFE, does not exceed 8 */ |
122 num_to_check = 8 - num_checked; | 155 num_to_check = 8 - num_checked; |
123 | 156 |
124 if (png_ptr->buffer_size < num_to_check) | 157 if (png_ptr->buffer_size < num_to_check) |
125 { | 158 { |
126 num_to_check = png_ptr->buffer_size; | 159 num_to_check = png_ptr->buffer_size; |
127 } | 160 } |
128 | 161 |
129 png_push_fill_buffer(png_ptr, &(info_ptr->signature[num_checked]), | 162 png_push_fill_buffer(png_ptr, &(info_ptr->signature[num_checked]), |
130 num_to_check); | 163 num_to_check); |
131 png_ptr->sig_bytes = (png_byte)(png_ptr->sig_bytes + num_to_check); | 164 png_ptr->sig_bytes = (png_byte)(png_ptr->sig_bytes + num_to_check); |
132 | 165 |
133 if (png_sig_cmp(info_ptr->signature, num_checked, num_to_check)) | 166 if (png_sig_cmp(info_ptr->signature, num_checked, num_to_check)) |
134 { | 167 { |
135 if (num_checked < 4 && | 168 if (num_checked < 4 && |
136 png_sig_cmp(info_ptr->signature, num_checked, num_to_check - 4)) | 169 png_sig_cmp(info_ptr->signature, num_checked, num_to_check - 4)) |
137 png_error(png_ptr, "Not a PNG file"); | 170 png_error(png_ptr, "Not a PNG file"); |
| 171 |
138 else | 172 else |
139 png_error(png_ptr, "PNG file corrupted by ASCII conversion"); | 173 png_error(png_ptr, "PNG file corrupted by ASCII conversion"); |
140 } | 174 } |
141 else | 175 else |
142 { | 176 { |
143 if (png_ptr->sig_bytes >= 8) | 177 if (png_ptr->sig_bytes >= 8) |
144 { | 178 { |
145 png_ptr->process_mode = PNG_READ_CHUNK_MODE; | 179 png_ptr->process_mode = PNG_READ_CHUNK_MODE; |
146 } | 180 } |
147 } | 181 } |
148 } | 182 } |
149 | 183 |
150 void /* PRIVATE */ | 184 void /* PRIVATE */ |
151 png_push_read_chunk(png_structp png_ptr, png_infop info_ptr) | 185 png_push_read_chunk(png_structrp png_ptr, png_inforp info_ptr) |
152 { | 186 { |
153 #ifdef PNG_USE_LOCAL_ARRAYS | 187 png_uint_32 chunk_name; |
154 PNG_CONST PNG_IHDR; | 188 #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED |
155 PNG_CONST PNG_IDAT; | 189 int keep; /* unknown handling method */ |
156 PNG_CONST PNG_IEND; | |
157 PNG_CONST PNG_PLTE; | |
158 #ifdef PNG_READ_bKGD_SUPPORTED | |
159 PNG_CONST PNG_bKGD; | |
160 #endif | 190 #endif |
161 #ifdef PNG_READ_cHRM_SUPPORTED | |
162 PNG_CONST PNG_cHRM; | |
163 #endif | |
164 #ifdef PNG_READ_gAMA_SUPPORTED | |
165 PNG_CONST PNG_gAMA; | |
166 #endif | |
167 #ifdef PNG_READ_hIST_SUPPORTED | |
168 PNG_CONST PNG_hIST; | |
169 #endif | |
170 #ifdef PNG_READ_iCCP_SUPPORTED | |
171 PNG_CONST PNG_iCCP; | |
172 #endif | |
173 #ifdef PNG_READ_iTXt_SUPPORTED | |
174 PNG_CONST PNG_iTXt; | |
175 #endif | |
176 #ifdef PNG_READ_oFFs_SUPPORTED | |
177 PNG_CONST PNG_oFFs; | |
178 #endif | |
179 #ifdef PNG_READ_pCAL_SUPPORTED | |
180 PNG_CONST PNG_pCAL; | |
181 #endif | |
182 #ifdef PNG_READ_pHYs_SUPPORTED | |
183 PNG_CONST PNG_pHYs; | |
184 #endif | |
185 #ifdef PNG_READ_sBIT_SUPPORTED | |
186 PNG_CONST PNG_sBIT; | |
187 #endif | |
188 #ifdef PNG_READ_sCAL_SUPPORTED | |
189 PNG_CONST PNG_sCAL; | |
190 #endif | |
191 #ifdef PNG_READ_sRGB_SUPPORTED | |
192 PNG_CONST PNG_sRGB; | |
193 #endif | |
194 #ifdef PNG_READ_sPLT_SUPPORTED | |
195 PNG_CONST PNG_sPLT; | |
196 #endif | |
197 #ifdef PNG_READ_tEXt_SUPPORTED | |
198 PNG_CONST PNG_tEXt; | |
199 #endif | |
200 #ifdef PNG_READ_tIME_SUPPORTED | |
201 PNG_CONST PNG_tIME; | |
202 #endif | |
203 #ifdef PNG_READ_tRNS_SUPPORTED | |
204 PNG_CONST PNG_tRNS; | |
205 #endif | |
206 #ifdef PNG_READ_zTXt_SUPPORTED | |
207 PNG_CONST PNG_zTXt; | |
208 #endif | |
209 #endif /* PNG_USE_LOCAL_ARRAYS */ | |
210 | 191 |
211 /* First we make sure we have enough data for the 4 byte chunk name | 192 /* First we make sure we have enough data for the 4 byte chunk name |
212 * and the 4 byte chunk length before proceeding with decoding the | 193 * and the 4 byte chunk length before proceeding with decoding the |
213 * chunk data. To fully decode each of these chunks, we also make | 194 * chunk data. To fully decode each of these chunks, we also make |
214 * sure we have enough data in the buffer for the 4 byte CRC at the | 195 * sure we have enough data in the buffer for the 4 byte CRC at the |
215 * end of every chunk (except IDAT, which is handled separately). | 196 * end of every chunk (except IDAT, which is handled separately). |
216 */ | 197 */ |
217 if (!(png_ptr->mode & PNG_HAVE_CHUNK_HEADER)) | 198 if (!(png_ptr->mode & PNG_HAVE_CHUNK_HEADER)) |
218 { | 199 { |
219 png_byte chunk_length[4]; | 200 png_byte chunk_length[4]; |
| 201 png_byte chunk_tag[4]; |
220 | 202 |
221 if (png_ptr->buffer_size < 8) | 203 if (png_ptr->buffer_size < 8) |
222 { | 204 { |
223 png_push_save_buffer(png_ptr); | 205 png_push_save_buffer(png_ptr); |
224 return; | 206 return; |
225 } | 207 } |
226 | 208 |
227 png_push_fill_buffer(png_ptr, chunk_length, 4); | 209 png_push_fill_buffer(png_ptr, chunk_length, 4); |
228 png_ptr->push_length = png_get_uint_31(png_ptr, chunk_length); | 210 png_ptr->push_length = png_get_uint_31(png_ptr, chunk_length); |
229 png_reset_crc(png_ptr); | 211 png_reset_crc(png_ptr); |
230 png_crc_read(png_ptr, png_ptr->chunk_name, 4); | 212 png_crc_read(png_ptr, chunk_tag, 4); |
| 213 png_ptr->chunk_name = PNG_CHUNK_FROM_STRING(chunk_tag); |
231 png_check_chunk_name(png_ptr, png_ptr->chunk_name); | 214 png_check_chunk_name(png_ptr, png_ptr->chunk_name); |
232 png_ptr->mode |= PNG_HAVE_CHUNK_HEADER; | 215 png_ptr->mode |= PNG_HAVE_CHUNK_HEADER; |
233 } | 216 } |
234 | 217 |
235 if (!png_memcmp(png_ptr->chunk_name, png_IDAT, 4)) | 218 chunk_name = png_ptr->chunk_name; |
236 if (png_ptr->mode & PNG_AFTER_IDAT) | |
237 png_ptr->mode |= PNG_HAVE_CHUNK_AFTER_IDAT; | |
238 | 219 |
239 if (!png_memcmp(png_ptr->chunk_name, png_IHDR, 4)) | 220 if (chunk_name == png_IDAT) |
| 221 { |
| 222 if (png_ptr->mode & PNG_AFTER_IDAT) |
| 223 png_ptr->mode |= PNG_HAVE_CHUNK_AFTER_IDAT; |
| 224 |
| 225 /* If we reach an IDAT chunk, this means we have read all of the |
| 226 * header chunks, and we can start reading the image (or if this |
| 227 * is called after the image has been read - we have an error). |
| 228 */ |
| 229 if (!(png_ptr->mode & PNG_HAVE_IHDR)) |
| 230 png_error(png_ptr, "Missing IHDR before IDAT"); |
| 231 |
| 232 else if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE && |
| 233 !(png_ptr->mode & PNG_HAVE_PLTE)) |
| 234 png_error(png_ptr, "Missing PLTE before IDAT"); |
| 235 |
| 236 png_ptr->mode |= PNG_HAVE_IDAT; |
| 237 |
| 238 if (!(png_ptr->mode & PNG_HAVE_CHUNK_AFTER_IDAT)) |
| 239 if (png_ptr->push_length == 0) |
| 240 return; |
| 241 |
| 242 if (png_ptr->mode & PNG_AFTER_IDAT) |
| 243 png_benign_error(png_ptr, "Too many IDATs found"); |
| 244 } |
| 245 |
| 246 if (chunk_name == png_IHDR) |
240 { | 247 { |
241 if (png_ptr->push_length != 13) | 248 if (png_ptr->push_length != 13) |
242 png_error(png_ptr, "Invalid IHDR length"); | 249 png_error(png_ptr, "Invalid IHDR length"); |
243 | 250 |
244 if (png_ptr->push_length + 4 > png_ptr->buffer_size) | 251 if (png_ptr->push_length + 4 > png_ptr->buffer_size) |
245 { | 252 { |
246 png_push_save_buffer(png_ptr); | 253 png_push_save_buffer(png_ptr); |
247 return; | 254 return; |
248 } | 255 } |
249 | 256 |
250 png_handle_IHDR(png_ptr, info_ptr, png_ptr->push_length); | 257 png_handle_IHDR(png_ptr, info_ptr, png_ptr->push_length); |
251 } | 258 } |
252 | 259 |
253 else if (!png_memcmp(png_ptr->chunk_name, png_IEND, 4)) | 260 else if (chunk_name == png_IEND) |
254 { | 261 { |
255 if (png_ptr->push_length + 4 > png_ptr->buffer_size) | 262 if (png_ptr->push_length + 4 > png_ptr->buffer_size) |
256 { | 263 { |
257 png_push_save_buffer(png_ptr); | 264 png_push_save_buffer(png_ptr); |
258 return; | 265 return; |
259 } | 266 } |
260 | 267 |
261 png_handle_IEND(png_ptr, info_ptr, png_ptr->push_length); | 268 png_handle_IEND(png_ptr, info_ptr, png_ptr->push_length); |
262 | 269 |
263 png_ptr->process_mode = PNG_READ_DONE_MODE; | 270 png_ptr->process_mode = PNG_READ_DONE_MODE; |
264 png_push_have_end(png_ptr, info_ptr); | 271 png_push_have_end(png_ptr, info_ptr); |
265 } | 272 } |
266 | 273 |
267 #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED | 274 #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED |
268 else if (png_handle_as_unknown(png_ptr, png_ptr->chunk_name)) | 275 else if ((keep = png_chunk_unknown_handling(png_ptr, chunk_name)) != 0) |
269 { | 276 { |
270 if (png_ptr->push_length + 4 > png_ptr->buffer_size) | 277 if (png_ptr->push_length + 4 > png_ptr->buffer_size) |
271 { | 278 { |
272 png_push_save_buffer(png_ptr); | 279 png_push_save_buffer(png_ptr); |
273 return; | 280 return; |
274 } | 281 } |
275 | 282 |
276 if (!png_memcmp(png_ptr->chunk_name, png_IDAT, 4)) | 283 png_handle_unknown(png_ptr, info_ptr, png_ptr->push_length, keep); |
277 png_ptr->mode |= PNG_HAVE_IDAT; | |
278 | 284 |
279 png_handle_unknown(png_ptr, info_ptr, png_ptr->push_length); | 285 if (chunk_name == png_PLTE) |
280 | |
281 if (!png_memcmp(png_ptr->chunk_name, png_PLTE, 4)) | |
282 png_ptr->mode |= PNG_HAVE_PLTE; | 286 png_ptr->mode |= PNG_HAVE_PLTE; |
283 | |
284 else if (!png_memcmp(png_ptr->chunk_name, png_IDAT, 4)) | |
285 { | |
286 if (!(png_ptr->mode & PNG_HAVE_IHDR)) | |
287 png_error(png_ptr, "Missing IHDR before IDAT"); | |
288 | |
289 else if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE && | |
290 !(png_ptr->mode & PNG_HAVE_PLTE)) | |
291 png_error(png_ptr, "Missing PLTE before IDAT"); | |
292 } | |
293 } | 287 } |
294 | 288 |
295 #endif | 289 #endif |
296 else if (!png_memcmp(png_ptr->chunk_name, png_PLTE, 4)) | 290 else if (chunk_name == png_PLTE) |
297 { | 291 { |
298 if (png_ptr->push_length + 4 > png_ptr->buffer_size) | 292 if (png_ptr->push_length + 4 > png_ptr->buffer_size) |
299 { | 293 { |
300 png_push_save_buffer(png_ptr); | 294 png_push_save_buffer(png_ptr); |
301 return; | 295 return; |
302 } | 296 } |
303 png_handle_PLTE(png_ptr, info_ptr, png_ptr->push_length); | 297 png_handle_PLTE(png_ptr, info_ptr, png_ptr->push_length); |
304 } | 298 } |
305 | 299 |
306 else if (!png_memcmp(png_ptr->chunk_name, png_IDAT, 4)) | 300 else if (chunk_name == png_IDAT) |
307 { | 301 { |
308 /* If we reach an IDAT chunk, this means we have read all of the | |
309 * header chunks, and we can start reading the image (or if this | |
310 * is called after the image has been read - we have an error). | |
311 */ | |
312 | |
313 if (!(png_ptr->mode & PNG_HAVE_IHDR)) | |
314 png_error(png_ptr, "Missing IHDR before IDAT"); | |
315 | |
316 else if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE && | |
317 !(png_ptr->mode & PNG_HAVE_PLTE)) | |
318 png_error(png_ptr, "Missing PLTE before IDAT"); | |
319 | |
320 if (png_ptr->mode & PNG_HAVE_IDAT) | |
321 { | |
322 if (!(png_ptr->mode & PNG_HAVE_CHUNK_AFTER_IDAT)) | |
323 if (png_ptr->push_length == 0) | |
324 return; | |
325 | |
326 if (png_ptr->mode & PNG_AFTER_IDAT) | |
327 png_error(png_ptr, "Too many IDAT's found"); | |
328 } | |
329 | |
330 png_ptr->idat_size = png_ptr->push_length; | 302 png_ptr->idat_size = png_ptr->push_length; |
331 png_ptr->mode |= PNG_HAVE_IDAT; | |
332 png_ptr->process_mode = PNG_READ_IDAT_MODE; | 303 png_ptr->process_mode = PNG_READ_IDAT_MODE; |
333 png_push_have_info(png_ptr, info_ptr); | 304 png_push_have_info(png_ptr, info_ptr); |
334 png_ptr->zstream.avail_out = | 305 png_ptr->zstream.avail_out = |
335 (uInt) PNG_ROWBYTES(png_ptr->pixel_depth, | 306 (uInt) PNG_ROWBYTES(png_ptr->pixel_depth, |
336 png_ptr->iwidth) + 1; | 307 png_ptr->iwidth) + 1; |
337 png_ptr->zstream.next_out = png_ptr->row_buf; | 308 png_ptr->zstream.next_out = png_ptr->row_buf; |
338 return; | 309 return; |
339 } | 310 } |
340 | 311 |
341 #ifdef PNG_READ_gAMA_SUPPORTED | 312 #ifdef PNG_READ_gAMA_SUPPORTED |
342 else if (!png_memcmp(png_ptr->chunk_name, png_gAMA, 4)) | 313 else if (png_ptr->chunk_name == png_gAMA) |
343 { | 314 { |
344 if (png_ptr->push_length + 4 > png_ptr->buffer_size) | 315 if (png_ptr->push_length + 4 > png_ptr->buffer_size) |
345 { | 316 { |
346 png_push_save_buffer(png_ptr); | 317 png_push_save_buffer(png_ptr); |
347 return; | 318 return; |
348 } | 319 } |
349 | 320 |
350 png_handle_gAMA(png_ptr, info_ptr, png_ptr->push_length); | 321 png_handle_gAMA(png_ptr, info_ptr, png_ptr->push_length); |
351 } | 322 } |
352 | 323 |
353 #endif | 324 #endif |
354 #ifdef PNG_READ_sBIT_SUPPORTED | 325 #ifdef PNG_READ_sBIT_SUPPORTED |
355 else if (!png_memcmp(png_ptr->chunk_name, png_sBIT, 4)) | 326 else if (png_ptr->chunk_name == png_sBIT) |
356 { | 327 { |
357 if (png_ptr->push_length + 4 > png_ptr->buffer_size) | 328 if (png_ptr->push_length + 4 > png_ptr->buffer_size) |
358 { | 329 { |
359 png_push_save_buffer(png_ptr); | 330 png_push_save_buffer(png_ptr); |
360 return; | 331 return; |
361 } | 332 } |
362 | 333 |
363 png_handle_sBIT(png_ptr, info_ptr, png_ptr->push_length); | 334 png_handle_sBIT(png_ptr, info_ptr, png_ptr->push_length); |
364 } | 335 } |
365 | 336 |
366 #endif | 337 #endif |
367 #ifdef PNG_READ_cHRM_SUPPORTED | 338 #ifdef PNG_READ_cHRM_SUPPORTED |
368 else if (!png_memcmp(png_ptr->chunk_name, png_cHRM, 4)) | 339 else if (png_ptr->chunk_name == png_cHRM) |
369 { | 340 { |
370 if (png_ptr->push_length + 4 > png_ptr->buffer_size) | 341 if (png_ptr->push_length + 4 > png_ptr->buffer_size) |
371 { | 342 { |
372 png_push_save_buffer(png_ptr); | 343 png_push_save_buffer(png_ptr); |
373 return; | 344 return; |
374 } | 345 } |
375 | 346 |
376 png_handle_cHRM(png_ptr, info_ptr, png_ptr->push_length); | 347 png_handle_cHRM(png_ptr, info_ptr, png_ptr->push_length); |
377 } | 348 } |
378 | 349 |
379 #endif | 350 #endif |
380 #ifdef PNG_READ_sRGB_SUPPORTED | 351 #ifdef PNG_READ_sRGB_SUPPORTED |
381 else if (!png_memcmp(png_ptr->chunk_name, png_sRGB, 4)) | 352 else if (chunk_name == png_sRGB) |
382 { | 353 { |
383 if (png_ptr->push_length + 4 > png_ptr->buffer_size) | 354 if (png_ptr->push_length + 4 > png_ptr->buffer_size) |
384 { | 355 { |
385 png_push_save_buffer(png_ptr); | 356 png_push_save_buffer(png_ptr); |
386 return; | 357 return; |
387 } | 358 } |
388 | 359 |
389 png_handle_sRGB(png_ptr, info_ptr, png_ptr->push_length); | 360 png_handle_sRGB(png_ptr, info_ptr, png_ptr->push_length); |
390 } | 361 } |
391 | 362 |
392 #endif | 363 #endif |
393 #ifdef PNG_READ_iCCP_SUPPORTED | 364 #ifdef PNG_READ_iCCP_SUPPORTED |
394 else if (!png_memcmp(png_ptr->chunk_name, png_iCCP, 4)) | 365 else if (png_ptr->chunk_name == png_iCCP) |
395 { | 366 { |
396 if (png_ptr->push_length + 4 > png_ptr->buffer_size) | 367 if (png_ptr->push_length + 4 > png_ptr->buffer_size) |
397 { | 368 { |
398 png_push_save_buffer(png_ptr); | 369 png_push_save_buffer(png_ptr); |
399 return; | 370 return; |
400 } | 371 } |
401 | 372 |
402 png_handle_iCCP(png_ptr, info_ptr, png_ptr->push_length); | 373 png_handle_iCCP(png_ptr, info_ptr, png_ptr->push_length); |
403 } | 374 } |
404 | 375 |
405 #endif | 376 #endif |
406 #ifdef PNG_READ_sPLT_SUPPORTED | 377 #ifdef PNG_READ_sPLT_SUPPORTED |
407 else if (!png_memcmp(png_ptr->chunk_name, png_sPLT, 4)) | 378 else if (chunk_name == png_sPLT) |
408 { | 379 { |
409 if (png_ptr->push_length + 4 > png_ptr->buffer_size) | 380 if (png_ptr->push_length + 4 > png_ptr->buffer_size) |
410 { | 381 { |
411 png_push_save_buffer(png_ptr); | 382 png_push_save_buffer(png_ptr); |
412 return; | 383 return; |
413 } | 384 } |
414 | 385 |
415 png_handle_sPLT(png_ptr, info_ptr, png_ptr->push_length); | 386 png_handle_sPLT(png_ptr, info_ptr, png_ptr->push_length); |
416 } | 387 } |
417 | 388 |
418 #endif | 389 #endif |
419 #ifdef PNG_READ_tRNS_SUPPORTED | 390 #ifdef PNG_READ_tRNS_SUPPORTED |
420 else if (!png_memcmp(png_ptr->chunk_name, png_tRNS, 4)) | 391 else if (chunk_name == png_tRNS) |
421 { | 392 { |
422 if (png_ptr->push_length + 4 > png_ptr->buffer_size) | 393 if (png_ptr->push_length + 4 > png_ptr->buffer_size) |
423 { | 394 { |
424 png_push_save_buffer(png_ptr); | 395 png_push_save_buffer(png_ptr); |
425 return; | 396 return; |
426 } | 397 } |
427 | 398 |
428 png_handle_tRNS(png_ptr, info_ptr, png_ptr->push_length); | 399 png_handle_tRNS(png_ptr, info_ptr, png_ptr->push_length); |
429 } | 400 } |
430 | 401 |
431 #endif | 402 #endif |
432 #ifdef PNG_READ_bKGD_SUPPORTED | 403 #ifdef PNG_READ_bKGD_SUPPORTED |
433 else if (!png_memcmp(png_ptr->chunk_name, png_bKGD, 4)) | 404 else if (chunk_name == png_bKGD) |
434 { | 405 { |
435 if (png_ptr->push_length + 4 > png_ptr->buffer_size) | 406 if (png_ptr->push_length + 4 > png_ptr->buffer_size) |
436 { | 407 { |
437 png_push_save_buffer(png_ptr); | 408 png_push_save_buffer(png_ptr); |
438 return; | 409 return; |
439 } | 410 } |
440 | 411 |
441 png_handle_bKGD(png_ptr, info_ptr, png_ptr->push_length); | 412 png_handle_bKGD(png_ptr, info_ptr, png_ptr->push_length); |
442 } | 413 } |
443 | 414 |
444 #endif | 415 #endif |
445 #ifdef PNG_READ_hIST_SUPPORTED | 416 #ifdef PNG_READ_hIST_SUPPORTED |
446 else if (!png_memcmp(png_ptr->chunk_name, png_hIST, 4)) | 417 else if (chunk_name == png_hIST) |
447 { | 418 { |
448 if (png_ptr->push_length + 4 > png_ptr->buffer_size) | 419 if (png_ptr->push_length + 4 > png_ptr->buffer_size) |
449 { | 420 { |
450 png_push_save_buffer(png_ptr); | 421 png_push_save_buffer(png_ptr); |
451 return; | 422 return; |
452 } | 423 } |
453 | 424 |
454 png_handle_hIST(png_ptr, info_ptr, png_ptr->push_length); | 425 png_handle_hIST(png_ptr, info_ptr, png_ptr->push_length); |
455 } | 426 } |
456 | 427 |
457 #endif | 428 #endif |
458 #ifdef PNG_READ_pHYs_SUPPORTED | 429 #ifdef PNG_READ_pHYs_SUPPORTED |
459 else if (!png_memcmp(png_ptr->chunk_name, png_pHYs, 4)) | 430 else if (chunk_name == png_pHYs) |
460 { | 431 { |
461 if (png_ptr->push_length + 4 > png_ptr->buffer_size) | 432 if (png_ptr->push_length + 4 > png_ptr->buffer_size) |
462 { | 433 { |
463 png_push_save_buffer(png_ptr); | 434 png_push_save_buffer(png_ptr); |
464 return; | 435 return; |
465 } | 436 } |
466 | 437 |
467 png_handle_pHYs(png_ptr, info_ptr, png_ptr->push_length); | 438 png_handle_pHYs(png_ptr, info_ptr, png_ptr->push_length); |
468 } | 439 } |
469 | 440 |
470 #endif | 441 #endif |
471 #ifdef PNG_READ_oFFs_SUPPORTED | 442 #ifdef PNG_READ_oFFs_SUPPORTED |
472 else if (!png_memcmp(png_ptr->chunk_name, png_oFFs, 4)) | 443 else if (chunk_name == png_oFFs) |
473 { | 444 { |
474 if (png_ptr->push_length + 4 > png_ptr->buffer_size) | 445 if (png_ptr->push_length + 4 > png_ptr->buffer_size) |
475 { | 446 { |
476 png_push_save_buffer(png_ptr); | 447 png_push_save_buffer(png_ptr); |
477 return; | 448 return; |
478 } | 449 } |
479 | 450 |
480 png_handle_oFFs(png_ptr, info_ptr, png_ptr->push_length); | 451 png_handle_oFFs(png_ptr, info_ptr, png_ptr->push_length); |
481 } | 452 } |
482 #endif | 453 #endif |
483 | 454 |
484 #ifdef PNG_READ_pCAL_SUPPORTED | 455 #ifdef PNG_READ_pCAL_SUPPORTED |
485 else if (!png_memcmp(png_ptr->chunk_name, png_pCAL, 4)) | 456 else if (chunk_name == png_pCAL) |
486 { | 457 { |
487 if (png_ptr->push_length + 4 > png_ptr->buffer_size) | 458 if (png_ptr->push_length + 4 > png_ptr->buffer_size) |
488 { | 459 { |
489 png_push_save_buffer(png_ptr); | 460 png_push_save_buffer(png_ptr); |
490 return; | 461 return; |
491 } | 462 } |
492 | 463 |
493 png_handle_pCAL(png_ptr, info_ptr, png_ptr->push_length); | 464 png_handle_pCAL(png_ptr, info_ptr, png_ptr->push_length); |
494 } | 465 } |
495 | 466 |
496 #endif | 467 #endif |
497 #ifdef PNG_READ_sCAL_SUPPORTED | 468 #ifdef PNG_READ_sCAL_SUPPORTED |
498 else if (!png_memcmp(png_ptr->chunk_name, png_sCAL, 4)) | 469 else if (chunk_name == png_sCAL) |
499 { | 470 { |
500 if (png_ptr->push_length + 4 > png_ptr->buffer_size) | 471 if (png_ptr->push_length + 4 > png_ptr->buffer_size) |
501 { | 472 { |
502 png_push_save_buffer(png_ptr); | 473 png_push_save_buffer(png_ptr); |
503 return; | 474 return; |
504 } | 475 } |
505 | 476 |
506 png_handle_sCAL(png_ptr, info_ptr, png_ptr->push_length); | 477 png_handle_sCAL(png_ptr, info_ptr, png_ptr->push_length); |
507 } | 478 } |
508 | 479 |
509 #endif | 480 #endif |
510 #ifdef PNG_READ_tIME_SUPPORTED | 481 #ifdef PNG_READ_tIME_SUPPORTED |
511 else if (!png_memcmp(png_ptr->chunk_name, png_tIME, 4)) | 482 else if (chunk_name == png_tIME) |
512 { | 483 { |
513 if (png_ptr->push_length + 4 > png_ptr->buffer_size) | 484 if (png_ptr->push_length + 4 > png_ptr->buffer_size) |
514 { | 485 { |
515 png_push_save_buffer(png_ptr); | 486 png_push_save_buffer(png_ptr); |
516 return; | 487 return; |
517 } | 488 } |
518 | 489 |
519 png_handle_tIME(png_ptr, info_ptr, png_ptr->push_length); | 490 png_handle_tIME(png_ptr, info_ptr, png_ptr->push_length); |
520 } | 491 } |
521 | 492 |
522 #endif | 493 #endif |
523 #ifdef PNG_READ_tEXt_SUPPORTED | 494 #ifdef PNG_READ_tEXt_SUPPORTED |
524 else if (!png_memcmp(png_ptr->chunk_name, png_tEXt, 4)) | 495 else if (chunk_name == png_tEXt) |
525 { | 496 { |
526 if (png_ptr->push_length + 4 > png_ptr->buffer_size) | 497 if (png_ptr->push_length + 4 > png_ptr->buffer_size) |
527 { | 498 { |
528 png_push_save_buffer(png_ptr); | 499 png_push_save_buffer(png_ptr); |
529 return; | 500 return; |
530 } | 501 } |
531 | 502 |
532 png_push_handle_tEXt(png_ptr, info_ptr, png_ptr->push_length); | 503 png_handle_tEXt(png_ptr, info_ptr, png_ptr->push_length); |
533 } | 504 } |
534 | 505 |
535 #endif | 506 #endif |
536 #ifdef PNG_READ_zTXt_SUPPORTED | 507 #ifdef PNG_READ_zTXt_SUPPORTED |
537 else if (!png_memcmp(png_ptr->chunk_name, png_zTXt, 4)) | 508 else if (chunk_name == png_zTXt) |
538 { | 509 { |
539 if (png_ptr->push_length + 4 > png_ptr->buffer_size) | 510 if (png_ptr->push_length + 4 > png_ptr->buffer_size) |
540 { | 511 { |
541 png_push_save_buffer(png_ptr); | 512 png_push_save_buffer(png_ptr); |
542 return; | 513 return; |
543 } | 514 } |
544 | 515 |
545 png_push_handle_zTXt(png_ptr, info_ptr, png_ptr->push_length); | 516 png_handle_zTXt(png_ptr, info_ptr, png_ptr->push_length); |
546 } | 517 } |
547 | 518 |
548 #endif | 519 #endif |
549 #ifdef PNG_READ_iTXt_SUPPORTED | 520 #ifdef PNG_READ_iTXt_SUPPORTED |
550 else if (!png_memcmp(png_ptr->chunk_name, png_iTXt, 4)) | 521 else if (chunk_name == png_iTXt) |
551 { | 522 { |
552 if (png_ptr->push_length + 4 > png_ptr->buffer_size) | 523 if (png_ptr->push_length + 4 > png_ptr->buffer_size) |
553 { | 524 { |
554 png_push_save_buffer(png_ptr); | 525 png_push_save_buffer(png_ptr); |
555 return; | 526 return; |
556 } | 527 } |
557 | 528 |
558 png_push_handle_iTXt(png_ptr, info_ptr, png_ptr->push_length); | 529 png_handle_iTXt(png_ptr, info_ptr, png_ptr->push_length); |
559 } | 530 } |
560 | 531 |
561 #endif | 532 #endif |
562 else | 533 else |
563 { | 534 { |
564 if (png_ptr->push_length + 4 > png_ptr->buffer_size) | 535 if (png_ptr->push_length + 4 > png_ptr->buffer_size) |
565 { | 536 { |
566 png_push_save_buffer(png_ptr); | 537 png_push_save_buffer(png_ptr); |
567 return; | 538 return; |
568 } | 539 } |
569 png_push_handle_unknown(png_ptr, info_ptr, png_ptr->push_length); | 540 png_handle_unknown(png_ptr, info_ptr, png_ptr->push_length, |
| 541 PNG_HANDLE_CHUNK_AS_DEFAULT); |
570 } | 542 } |
571 | 543 |
572 png_ptr->mode &= ~PNG_HAVE_CHUNK_HEADER; | 544 png_ptr->mode &= ~PNG_HAVE_CHUNK_HEADER; |
573 } | 545 } |
574 | 546 |
575 void /* PRIVATE */ | 547 void /* PRIVATE */ |
576 png_push_crc_skip(png_structp png_ptr, png_uint_32 skip) | 548 png_push_crc_skip(png_structrp png_ptr, png_uint_32 skip) |
577 { | 549 { |
578 png_ptr->process_mode = PNG_SKIP_MODE; | 550 png_ptr->process_mode = PNG_SKIP_MODE; |
579 png_ptr->skip_length = skip; | 551 png_ptr->skip_length = skip; |
580 } | 552 } |
581 | 553 |
582 void /* PRIVATE */ | 554 void /* PRIVATE */ |
583 png_push_crc_finish(png_structp png_ptr) | 555 png_push_crc_finish(png_structrp png_ptr) |
584 { | 556 { |
585 if (png_ptr->skip_length && png_ptr->save_buffer_size) | 557 if (png_ptr->skip_length && png_ptr->save_buffer_size) |
586 { | 558 { |
587 png_size_t save_size; | 559 png_size_t save_size = png_ptr->save_buffer_size; |
| 560 png_uint_32 skip_length = png_ptr->skip_length; |
588 | 561 |
589 if (png_ptr->skip_length < (png_uint_32)png_ptr->save_buffer_size) | 562 /* We want the smaller of 'skip_length' and 'save_buffer_size', but |
590 save_size = (png_size_t)png_ptr->skip_length; | 563 * they are of different types and we don't know which variable has the |
| 564 * fewest bits. Carefully select the smaller and cast it to the type of |
| 565 * the larger - this cannot overflow. Do not cast in the following test |
| 566 * - it will break on either 16 or 64 bit platforms. |
| 567 */ |
| 568 if (skip_length < save_size) |
| 569 save_size = (png_size_t)skip_length; |
| 570 |
591 else | 571 else |
592 save_size = png_ptr->save_buffer_size; | 572 skip_length = (png_uint_32)save_size; |
593 | 573 |
594 png_calculate_crc(png_ptr, png_ptr->save_buffer_ptr, save_size); | 574 png_calculate_crc(png_ptr, png_ptr->save_buffer_ptr, save_size); |
595 | 575 |
596 png_ptr->skip_length -= save_size; | 576 png_ptr->skip_length -= skip_length; |
597 png_ptr->buffer_size -= save_size; | 577 png_ptr->buffer_size -= save_size; |
598 png_ptr->save_buffer_size -= save_size; | 578 png_ptr->save_buffer_size -= save_size; |
599 png_ptr->save_buffer_ptr += save_size; | 579 png_ptr->save_buffer_ptr += save_size; |
600 } | 580 } |
601 if (png_ptr->skip_length && png_ptr->current_buffer_size) | 581 if (png_ptr->skip_length && png_ptr->current_buffer_size) |
602 { | 582 { |
603 png_size_t save_size; | 583 png_size_t save_size = png_ptr->current_buffer_size; |
| 584 png_uint_32 skip_length = png_ptr->skip_length; |
604 | 585 |
605 if (png_ptr->skip_length < (png_uint_32)png_ptr->current_buffer_size) | 586 /* We want the smaller of 'skip_length' and 'current_buffer_size', here, |
606 save_size = (png_size_t)png_ptr->skip_length; | 587 * the same problem exists as above and the same solution. |
| 588 */ |
| 589 if (skip_length < save_size) |
| 590 save_size = (png_size_t)skip_length; |
| 591 |
607 else | 592 else |
608 save_size = png_ptr->current_buffer_size; | 593 skip_length = (png_uint_32)save_size; |
609 | 594 |
610 png_calculate_crc(png_ptr, png_ptr->current_buffer_ptr, save_size); | 595 png_calculate_crc(png_ptr, png_ptr->current_buffer_ptr, save_size); |
611 | 596 |
612 png_ptr->skip_length -= save_size; | 597 png_ptr->skip_length -= skip_length; |
613 png_ptr->buffer_size -= save_size; | 598 png_ptr->buffer_size -= save_size; |
614 png_ptr->current_buffer_size -= save_size; | 599 png_ptr->current_buffer_size -= save_size; |
615 png_ptr->current_buffer_ptr += save_size; | 600 png_ptr->current_buffer_ptr += save_size; |
616 } | 601 } |
617 if (!png_ptr->skip_length) | 602 if (!png_ptr->skip_length) |
618 { | 603 { |
619 if (png_ptr->buffer_size < 4) | 604 if (png_ptr->buffer_size < 4) |
620 { | 605 { |
621 png_push_save_buffer(png_ptr); | 606 png_push_save_buffer(png_ptr); |
622 return; | 607 return; |
623 } | 608 } |
624 | 609 |
625 png_crc_finish(png_ptr, 0); | 610 png_crc_finish(png_ptr, 0); |
626 png_ptr->process_mode = PNG_READ_CHUNK_MODE; | 611 png_ptr->process_mode = PNG_READ_CHUNK_MODE; |
627 } | 612 } |
628 } | 613 } |
629 | 614 |
630 void PNGAPI | 615 void PNGCBAPI |
631 png_push_fill_buffer(png_structp png_ptr, png_bytep buffer, png_size_t length) | 616 png_push_fill_buffer(png_structp png_ptr, png_bytep buffer, png_size_t length) |
632 { | 617 { |
633 png_bytep ptr; | 618 png_bytep ptr; |
634 | 619 |
635 if (png_ptr == NULL) | 620 if (png_ptr == NULL) |
636 return; | 621 return; |
637 | 622 |
638 ptr = buffer; | 623 ptr = buffer; |
639 if (png_ptr->save_buffer_size) | 624 if (png_ptr->save_buffer_size) |
640 { | 625 { |
641 png_size_t save_size; | 626 png_size_t save_size; |
642 | 627 |
643 if (length < png_ptr->save_buffer_size) | 628 if (length < png_ptr->save_buffer_size) |
644 save_size = length; | 629 save_size = length; |
| 630 |
645 else | 631 else |
646 save_size = png_ptr->save_buffer_size; | 632 save_size = png_ptr->save_buffer_size; |
647 | 633 |
648 png_memcpy(ptr, png_ptr->save_buffer_ptr, save_size); | 634 memcpy(ptr, png_ptr->save_buffer_ptr, save_size); |
649 length -= save_size; | 635 length -= save_size; |
650 ptr += save_size; | 636 ptr += save_size; |
651 png_ptr->buffer_size -= save_size; | 637 png_ptr->buffer_size -= save_size; |
652 png_ptr->save_buffer_size -= save_size; | 638 png_ptr->save_buffer_size -= save_size; |
653 png_ptr->save_buffer_ptr += save_size; | 639 png_ptr->save_buffer_ptr += save_size; |
654 } | 640 } |
655 if (length && png_ptr->current_buffer_size) | 641 if (length && png_ptr->current_buffer_size) |
656 { | 642 { |
657 png_size_t save_size; | 643 png_size_t save_size; |
658 | 644 |
659 if (length < png_ptr->current_buffer_size) | 645 if (length < png_ptr->current_buffer_size) |
660 save_size = length; | 646 save_size = length; |
661 | 647 |
662 else | 648 else |
663 save_size = png_ptr->current_buffer_size; | 649 save_size = png_ptr->current_buffer_size; |
664 | 650 |
665 png_memcpy(ptr, png_ptr->current_buffer_ptr, save_size); | 651 memcpy(ptr, png_ptr->current_buffer_ptr, save_size); |
666 png_ptr->buffer_size -= save_size; | 652 png_ptr->buffer_size -= save_size; |
667 png_ptr->current_buffer_size -= save_size; | 653 png_ptr->current_buffer_size -= save_size; |
668 png_ptr->current_buffer_ptr += save_size; | 654 png_ptr->current_buffer_ptr += save_size; |
669 } | 655 } |
670 } | 656 } |
671 | 657 |
672 void /* PRIVATE */ | 658 void /* PRIVATE */ |
673 png_push_save_buffer(png_structp png_ptr) | 659 png_push_save_buffer(png_structrp png_ptr) |
674 { | 660 { |
675 if (png_ptr->save_buffer_size) | 661 if (png_ptr->save_buffer_size) |
676 { | 662 { |
677 if (png_ptr->save_buffer_ptr != png_ptr->save_buffer) | 663 if (png_ptr->save_buffer_ptr != png_ptr->save_buffer) |
678 { | 664 { |
679 png_size_t i, istop; | 665 png_size_t i, istop; |
680 png_bytep sp; | 666 png_bytep sp; |
681 png_bytep dp; | 667 png_bytep dp; |
682 | 668 |
683 istop = png_ptr->save_buffer_size; | 669 istop = png_ptr->save_buffer_size; |
684 for (i = 0, sp = png_ptr->save_buffer_ptr, dp = png_ptr->save_buffer; | 670 for (i = 0, sp = png_ptr->save_buffer_ptr, dp = png_ptr->save_buffer; |
685 i < istop; i++, sp++, dp++) | 671 i < istop; i++, sp++, dp++) |
686 { | 672 { |
687 *dp = *sp; | 673 *dp = *sp; |
688 } | 674 } |
689 } | 675 } |
690 } | 676 } |
691 if (png_ptr->save_buffer_size + png_ptr->current_buffer_size > | 677 if (png_ptr->save_buffer_size + png_ptr->current_buffer_size > |
692 png_ptr->save_buffer_max) | 678 png_ptr->save_buffer_max) |
693 { | 679 { |
694 png_size_t new_max; | 680 png_size_t new_max; |
695 png_bytep old_buffer; | 681 png_bytep old_buffer; |
696 | 682 |
697 if (png_ptr->save_buffer_size > PNG_SIZE_MAX - | 683 if (png_ptr->save_buffer_size > PNG_SIZE_MAX - |
698 (png_ptr->current_buffer_size + 256)) | 684 (png_ptr->current_buffer_size + 256)) |
699 { | 685 { |
700 png_error(png_ptr, "Potential overflow of save_buffer"); | 686 png_error(png_ptr, "Potential overflow of save_buffer"); |
701 } | 687 } |
702 | 688 |
703 new_max = png_ptr->save_buffer_size + png_ptr->current_buffer_size + 256; | 689 new_max = png_ptr->save_buffer_size + png_ptr->current_buffer_size + 256; |
704 old_buffer = png_ptr->save_buffer; | 690 old_buffer = png_ptr->save_buffer; |
705 png_ptr->save_buffer = (png_bytep)png_malloc_warn(png_ptr, | 691 png_ptr->save_buffer = (png_bytep)png_malloc_warn(png_ptr, |
706 (png_uint_32)new_max); | 692 (png_size_t)new_max); |
| 693 |
707 if (png_ptr->save_buffer == NULL) | 694 if (png_ptr->save_buffer == NULL) |
708 { | 695 { |
709 png_free(png_ptr, old_buffer); | 696 png_free(png_ptr, old_buffer); |
710 png_error(png_ptr, "Insufficient memory for save_buffer"); | 697 png_error(png_ptr, "Insufficient memory for save_buffer"); |
711 } | 698 } |
712 png_memcpy(png_ptr->save_buffer, old_buffer, png_ptr->save_buffer_size); | 699 |
| 700 memcpy(png_ptr->save_buffer, old_buffer, png_ptr->save_buffer_size); |
713 png_free(png_ptr, old_buffer); | 701 png_free(png_ptr, old_buffer); |
714 png_ptr->save_buffer_max = new_max; | 702 png_ptr->save_buffer_max = new_max; |
715 } | 703 } |
716 if (png_ptr->current_buffer_size) | 704 if (png_ptr->current_buffer_size) |
717 { | 705 { |
718 png_memcpy(png_ptr->save_buffer + png_ptr->save_buffer_size, | 706 memcpy(png_ptr->save_buffer + png_ptr->save_buffer_size, |
719 png_ptr->current_buffer_ptr, png_ptr->current_buffer_size); | 707 png_ptr->current_buffer_ptr, png_ptr->current_buffer_size); |
720 png_ptr->save_buffer_size += png_ptr->current_buffer_size; | 708 png_ptr->save_buffer_size += png_ptr->current_buffer_size; |
721 png_ptr->current_buffer_size = 0; | 709 png_ptr->current_buffer_size = 0; |
722 } | 710 } |
723 png_ptr->save_buffer_ptr = png_ptr->save_buffer; | 711 png_ptr->save_buffer_ptr = png_ptr->save_buffer; |
724 png_ptr->buffer_size = 0; | 712 png_ptr->buffer_size = 0; |
725 } | 713 } |
726 | 714 |
727 void /* PRIVATE */ | 715 void /* PRIVATE */ |
728 png_push_restore_buffer(png_structp png_ptr, png_bytep buffer, | 716 png_push_restore_buffer(png_structrp png_ptr, png_bytep buffer, |
729 png_size_t buffer_length) | 717 png_size_t buffer_length) |
730 { | 718 { |
731 png_ptr->current_buffer = buffer; | 719 png_ptr->current_buffer = buffer; |
732 png_ptr->current_buffer_size = buffer_length; | 720 png_ptr->current_buffer_size = buffer_length; |
733 png_ptr->buffer_size = buffer_length + png_ptr->save_buffer_size; | 721 png_ptr->buffer_size = buffer_length + png_ptr->save_buffer_size; |
734 png_ptr->current_buffer_ptr = png_ptr->current_buffer; | 722 png_ptr->current_buffer_ptr = png_ptr->current_buffer; |
735 } | 723 } |
736 | 724 |
737 void /* PRIVATE */ | 725 void /* PRIVATE */ |
738 png_push_read_IDAT(png_structp png_ptr) | 726 png_push_read_IDAT(png_structrp png_ptr) |
739 { | 727 { |
740 #ifdef PNG_USE_LOCAL_ARRAYS | |
741 PNG_CONST PNG_IDAT; | |
742 #endif | |
743 if (!(png_ptr->mode & PNG_HAVE_CHUNK_HEADER)) | 728 if (!(png_ptr->mode & PNG_HAVE_CHUNK_HEADER)) |
744 { | 729 { |
745 png_byte chunk_length[4]; | 730 png_byte chunk_length[4]; |
| 731 png_byte chunk_tag[4]; |
746 | 732 |
| 733 /* TODO: this code can be commoned up with the same code in push_read */ |
747 if (png_ptr->buffer_size < 8) | 734 if (png_ptr->buffer_size < 8) |
748 { | 735 { |
749 png_push_save_buffer(png_ptr); | 736 png_push_save_buffer(png_ptr); |
750 return; | 737 return; |
751 } | 738 } |
752 | 739 |
753 png_push_fill_buffer(png_ptr, chunk_length, 4); | 740 png_push_fill_buffer(png_ptr, chunk_length, 4); |
754 png_ptr->push_length = png_get_uint_31(png_ptr, chunk_length); | 741 png_ptr->push_length = png_get_uint_31(png_ptr, chunk_length); |
755 png_reset_crc(png_ptr); | 742 png_reset_crc(png_ptr); |
756 png_crc_read(png_ptr, png_ptr->chunk_name, 4); | 743 png_crc_read(png_ptr, chunk_tag, 4); |
| 744 png_ptr->chunk_name = PNG_CHUNK_FROM_STRING(chunk_tag); |
757 png_ptr->mode |= PNG_HAVE_CHUNK_HEADER; | 745 png_ptr->mode |= PNG_HAVE_CHUNK_HEADER; |
758 | 746 |
759 if (png_memcmp(png_ptr->chunk_name, png_IDAT, 4)) | 747 if (png_ptr->chunk_name != png_IDAT) |
760 { | 748 { |
761 png_ptr->process_mode = PNG_READ_CHUNK_MODE; | 749 png_ptr->process_mode = PNG_READ_CHUNK_MODE; |
762 if (!(png_ptr->flags & PNG_FLAG_ZLIB_FINISHED)) | 750 |
| 751 if (!(png_ptr->flags & PNG_FLAG_ZSTREAM_ENDED)) |
763 png_error(png_ptr, "Not enough compressed data"); | 752 png_error(png_ptr, "Not enough compressed data"); |
| 753 |
764 return; | 754 return; |
765 } | 755 } |
766 | 756 |
767 png_ptr->idat_size = png_ptr->push_length; | 757 png_ptr->idat_size = png_ptr->push_length; |
768 } | 758 } |
| 759 |
769 if (png_ptr->idat_size && png_ptr->save_buffer_size) | 760 if (png_ptr->idat_size && png_ptr->save_buffer_size) |
770 { | 761 { |
771 png_size_t save_size; | 762 png_size_t save_size = png_ptr->save_buffer_size; |
| 763 png_uint_32 idat_size = png_ptr->idat_size; |
772 | 764 |
773 if (png_ptr->idat_size < (png_uint_32)png_ptr->save_buffer_size) | 765 /* We want the smaller of 'idat_size' and 'current_buffer_size', but they |
774 { | 766 * are of different types and we don't know which variable has the fewest |
775 save_size = (png_size_t)png_ptr->idat_size; | 767 * bits. Carefully select the smaller and cast it to the type of the |
| 768 * larger - this cannot overflow. Do not cast in the following test - it |
| 769 * will break on either 16 or 64 bit platforms. |
| 770 */ |
| 771 if (idat_size < save_size) |
| 772 save_size = (png_size_t)idat_size; |
776 | 773 |
777 /* Check for overflow */ | |
778 if ((png_uint_32)save_size != png_ptr->idat_size) | |
779 png_error(png_ptr, "save_size overflowed in pngpread"); | |
780 } | |
781 else | 774 else |
782 save_size = png_ptr->save_buffer_size; | 775 idat_size = (png_uint_32)save_size; |
783 | 776 |
784 png_calculate_crc(png_ptr, png_ptr->save_buffer_ptr, save_size); | 777 png_calculate_crc(png_ptr, png_ptr->save_buffer_ptr, save_size); |
785 | 778 |
786 png_process_IDAT_data(png_ptr, png_ptr->save_buffer_ptr, save_size); | 779 png_process_IDAT_data(png_ptr, png_ptr->save_buffer_ptr, save_size); |
787 | 780 |
788 png_ptr->idat_size -= save_size; | 781 png_ptr->idat_size -= idat_size; |
789 png_ptr->buffer_size -= save_size; | 782 png_ptr->buffer_size -= save_size; |
790 png_ptr->save_buffer_size -= save_size; | 783 png_ptr->save_buffer_size -= save_size; |
791 png_ptr->save_buffer_ptr += save_size; | 784 png_ptr->save_buffer_ptr += save_size; |
792 } | 785 } |
| 786 |
793 if (png_ptr->idat_size && png_ptr->current_buffer_size) | 787 if (png_ptr->idat_size && png_ptr->current_buffer_size) |
794 { | 788 { |
795 png_size_t save_size; | 789 png_size_t save_size = png_ptr->current_buffer_size; |
| 790 png_uint_32 idat_size = png_ptr->idat_size; |
796 | 791 |
797 if (png_ptr->idat_size < (png_uint_32)png_ptr->current_buffer_size) | 792 /* We want the smaller of 'idat_size' and 'current_buffer_size', but they |
798 { | 793 * are of different types and we don't know which variable has the fewest |
799 save_size = (png_size_t)png_ptr->idat_size; | 794 * bits. Carefully select the smaller and cast it to the type of the |
| 795 * larger - this cannot overflow. |
| 796 */ |
| 797 if (idat_size < save_size) |
| 798 save_size = (png_size_t)idat_size; |
800 | 799 |
801 /* Check for overflow */ | |
802 if ((png_uint_32)save_size != png_ptr->idat_size) | |
803 png_error(png_ptr, "save_size overflowed in pngpread"); | |
804 } | |
805 else | 800 else |
806 save_size = png_ptr->current_buffer_size; | 801 idat_size = (png_uint_32)save_size; |
807 | 802 |
808 png_calculate_crc(png_ptr, png_ptr->current_buffer_ptr, save_size); | 803 png_calculate_crc(png_ptr, png_ptr->current_buffer_ptr, save_size); |
809 | 804 |
810 png_process_IDAT_data(png_ptr, png_ptr->current_buffer_ptr, save_size); | 805 png_process_IDAT_data(png_ptr, png_ptr->current_buffer_ptr, save_size); |
811 | 806 |
812 png_ptr->idat_size -= save_size; | 807 png_ptr->idat_size -= idat_size; |
813 png_ptr->buffer_size -= save_size; | 808 png_ptr->buffer_size -= save_size; |
814 png_ptr->current_buffer_size -= save_size; | 809 png_ptr->current_buffer_size -= save_size; |
815 png_ptr->current_buffer_ptr += save_size; | 810 png_ptr->current_buffer_ptr += save_size; |
816 } | 811 } |
817 if (!png_ptr->idat_size) | 812 if (!png_ptr->idat_size) |
818 { | 813 { |
819 if (png_ptr->buffer_size < 4) | 814 if (png_ptr->buffer_size < 4) |
820 { | 815 { |
821 png_push_save_buffer(png_ptr); | 816 png_push_save_buffer(png_ptr); |
822 return; | 817 return; |
823 } | 818 } |
824 | 819 |
825 png_crc_finish(png_ptr, 0); | 820 png_crc_finish(png_ptr, 0); |
826 png_ptr->mode &= ~PNG_HAVE_CHUNK_HEADER; | 821 png_ptr->mode &= ~PNG_HAVE_CHUNK_HEADER; |
827 png_ptr->mode |= PNG_AFTER_IDAT; | 822 png_ptr->mode |= PNG_AFTER_IDAT; |
| 823 png_ptr->zowner = 0; |
828 } | 824 } |
829 } | 825 } |
830 | 826 |
831 void /* PRIVATE */ | 827 void /* PRIVATE */ |
832 png_process_IDAT_data(png_structp png_ptr, png_bytep buffer, | 828 png_process_IDAT_data(png_structrp png_ptr, png_bytep buffer, |
833 png_size_t buffer_length) | 829 png_size_t buffer_length) |
834 { | 830 { |
835 /* The caller checks for a non-zero buffer length. */ | 831 /* The caller checks for a non-zero buffer length. */ |
836 if (!(buffer_length > 0) || buffer == NULL) | 832 if (!(buffer_length > 0) || buffer == NULL) |
837 png_error(png_ptr, "No IDAT data (internal error)"); | 833 png_error(png_ptr, "No IDAT data (internal error)"); |
838 | 834 |
839 /* This routine must process all the data it has been given | 835 /* This routine must process all the data it has been given |
840 * before returning, calling the row callback as required to | 836 * before returning, calling the row callback as required to |
841 * handle the uncompressed results. | 837 * handle the uncompressed results. |
842 */ | 838 */ |
843 png_ptr->zstream.next_in = buffer; | 839 png_ptr->zstream.next_in = buffer; |
| 840 /* TODO: WARNING: TRUNCATION ERROR: DANGER WILL ROBINSON: */ |
844 png_ptr->zstream.avail_in = (uInt)buffer_length; | 841 png_ptr->zstream.avail_in = (uInt)buffer_length; |
845 | 842 |
846 /* Keep going until the decompressed data is all processed | 843 /* Keep going until the decompressed data is all processed |
847 * or the stream marked as finished. | 844 * or the stream marked as finished. |
848 */ | 845 */ |
849 while (png_ptr->zstream.avail_in > 0 && | 846 while (png_ptr->zstream.avail_in > 0 && |
850 » !(png_ptr->flags & PNG_FLAG_ZLIB_FINISHED)) | 847 !(png_ptr->flags & PNG_FLAG_ZSTREAM_ENDED)) |
851 { | 848 { |
852 int ret; | 849 int ret; |
853 | 850 |
854 /* We have data for zlib, but we must check that zlib | 851 /* We have data for zlib, but we must check that zlib |
855 * has somewhere to put the results. It doesn't matter | 852 * has someplace to put the results. It doesn't matter |
856 * if we don't expect any results -- it may be the input | 853 * if we don't expect any results -- it may be the input |
857 * data is just the LZ end code. | 854 * data is just the LZ end code. |
858 */ | 855 */ |
859 if (!(png_ptr->zstream.avail_out > 0)) | 856 if (!(png_ptr->zstream.avail_out > 0)) |
860 { | 857 { |
861 png_ptr->zstream.avail_out = | 858 /* TODO: WARNING: TRUNCATION ERROR: DANGER WILL ROBINSON: */ |
862 (uInt) PNG_ROWBYTES(png_ptr->pixel_depth, | 859 png_ptr->zstream.avail_out = (uInt)(PNG_ROWBYTES(png_ptr->pixel_depth, |
863 png_ptr->iwidth) + 1; | 860 png_ptr->iwidth) + 1); |
| 861 |
864 png_ptr->zstream.next_out = png_ptr->row_buf; | 862 png_ptr->zstream.next_out = png_ptr->row_buf; |
865 } | 863 } |
866 | 864 |
867 /* Using Z_SYNC_FLUSH here means that an unterminated | 865 /* Using Z_SYNC_FLUSH here means that an unterminated |
868 * LZ stream can still be handled (a stream with a missing | 866 * LZ stream (a stream with a missing end code) can still |
869 * end code), otherwise (Z_NO_FLUSH) a future zlib | 867 * be handled, otherwise (Z_NO_FLUSH) a future zlib |
870 * implementation might defer output and, therefore, | 868 * implementation might defer output and therefore |
871 * change the current behavior. (See comments in inflate.c | 869 * change the current behavior (see comments in inflate.c |
872 * for why this doesn't happen at present with zlib 1.2.5.) | 870 * for why this doesn't happen at present with zlib 1.2.5). |
873 */ | 871 */ |
874 ret = inflate(&png_ptr->zstream, Z_SYNC_FLUSH); | 872 ret = inflate(&png_ptr->zstream, Z_SYNC_FLUSH); |
875 | 873 |
876 /* Check for any failure before proceeding. */ | 874 /* Check for any failure before proceeding. */ |
877 if (ret != Z_OK && ret != Z_STREAM_END) | 875 if (ret != Z_OK && ret != Z_STREAM_END) |
878 { | 876 { |
879 » /* Terminate the decompression. */ | 877 /* Terminate the decompression. */ |
880 » png_ptr->flags |= PNG_FLAG_ZLIB_FINISHED; | 878 png_ptr->flags |= PNG_FLAG_ZSTREAM_ENDED; |
| 879 png_ptr->zowner = 0; |
881 | 880 |
882 /* This may be a truncated stream (missing or | 881 /* This may be a truncated stream (missing or |
883 » * damaged end code). Treat that as a warning. | 882 * damaged end code). Treat that as a warning. |
884 » */ | 883 */ |
885 if (png_ptr->row_number >= png_ptr->num_rows || | 884 if (png_ptr->row_number >= png_ptr->num_rows || |
886 » png_ptr->pass > 6) | 885 png_ptr->pass > 6) |
887 » png_warning(png_ptr, "Truncated compressed data in IDAT"); | 886 png_warning(png_ptr, "Truncated compressed data in IDAT"); |
888 » else | |
889 » png_error(png_ptr, "Decompression error in IDAT"); | |
890 | 887 |
891 » /* Skip the check on unprocessed input */ | 888 else |
| 889 png_error(png_ptr, "Decompression error in IDAT"); |
| 890 |
| 891 /* Skip the check on unprocessed input */ |
892 return; | 892 return; |
893 } | 893 } |
894 | 894 |
895 /* Did inflate output any data? */ | 895 /* Did inflate output any data? */ |
896 if (png_ptr->zstream.next_out != png_ptr->row_buf) | 896 if (png_ptr->zstream.next_out != png_ptr->row_buf) |
897 { | 897 { |
898 » /* Is this unexpected data after the last row? | 898 /* Is this unexpected data after the last row? |
899 » * If it is, artificially terminate the LZ output | 899 * If it is, artificially terminate the LZ output |
900 » * here. | 900 * here. |
901 » */ | 901 */ |
902 if (png_ptr->row_number >= png_ptr->num_rows || | 902 if (png_ptr->row_number >= png_ptr->num_rows || |
903 » png_ptr->pass > 6) | 903 png_ptr->pass > 6) |
904 { | 904 { |
905 » /* Extra data. */ | 905 /* Extra data. */ |
906 » png_warning(png_ptr, "Extra compressed data in IDAT"); | 906 png_warning(png_ptr, "Extra compressed data in IDAT"); |
907 png_ptr->flags |= PNG_FLAG_ZLIB_FINISHED; | 907 png_ptr->flags |= PNG_FLAG_ZSTREAM_ENDED; |
908 » /* Do no more processing; skip the unprocessed | 908 png_ptr->zowner = 0; |
909 » * input check below. | 909 |
910 » */ | 910 /* Do no more processing; skip the unprocessed |
| 911 * input check below. |
| 912 */ |
911 return; | 913 return; |
912 » } | 914 } |
913 | 915 |
914 » /* Do we have a complete row? */ | 916 /* Do we have a complete row? */ |
915 » if (png_ptr->zstream.avail_out == 0) | 917 if (png_ptr->zstream.avail_out == 0) |
916 » png_push_process_row(png_ptr); | 918 png_push_process_row(png_ptr); |
917 } | 919 } |
918 | 920 |
919 /* And check for the end of the stream. */ | 921 /* And check for the end of the stream. */ |
920 if (ret == Z_STREAM_END) | 922 if (ret == Z_STREAM_END) |
921 » png_ptr->flags |= PNG_FLAG_ZLIB_FINISHED; | 923 png_ptr->flags |= PNG_FLAG_ZSTREAM_ENDED; |
922 } | 924 } |
923 | 925 |
924 /* All the data should have been processed, if anything | 926 /* All the data should have been processed, if anything |
925 * is left at this point we have bytes of IDAT data | 927 * is left at this point we have bytes of IDAT data |
926 * after the zlib end code. | 928 * after the zlib end code. |
927 */ | 929 */ |
928 if (png_ptr->zstream.avail_in > 0) | 930 if (png_ptr->zstream.avail_in > 0) |
929 png_warning(png_ptr, "Extra compression data"); | 931 png_warning(png_ptr, "Extra compression data in IDAT"); |
930 } | 932 } |
931 | 933 |
932 void /* PRIVATE */ | 934 void /* PRIVATE */ |
933 png_push_process_row(png_structp png_ptr) | 935 png_push_process_row(png_structrp png_ptr) |
934 { | 936 { |
935 png_ptr->row_info.color_type = png_ptr->color_type; | 937 /* 1.5.6: row_info moved out of png_struct to a local here. */ |
936 png_ptr->row_info.width = png_ptr->iwidth; | 938 png_row_info row_info; |
937 png_ptr->row_info.channels = png_ptr->channels; | |
938 png_ptr->row_info.bit_depth = png_ptr->bit_depth; | |
939 png_ptr->row_info.pixel_depth = png_ptr->pixel_depth; | |
940 | 939 |
941 png_ptr->row_info.rowbytes = PNG_ROWBYTES(png_ptr->row_info.pixel_depth, | 940 row_info.width = png_ptr->iwidth; /* NOTE: width of current interlaced row */ |
942 png_ptr->row_info.width); | 941 row_info.color_type = png_ptr->color_type; |
| 942 row_info.bit_depth = png_ptr->bit_depth; |
| 943 row_info.channels = png_ptr->channels; |
| 944 row_info.pixel_depth = png_ptr->pixel_depth; |
| 945 row_info.rowbytes = PNG_ROWBYTES(row_info.pixel_depth, row_info.width); |
943 | 946 |
944 png_read_filter_row(png_ptr, &(png_ptr->row_info), | 947 if (png_ptr->row_buf[0] > PNG_FILTER_VALUE_NONE) |
945 png_ptr->row_buf + 1, png_ptr->prev_row + 1, | 948 { |
946 (int)(png_ptr->row_buf[0])); | 949 if (png_ptr->row_buf[0] < PNG_FILTER_VALUE_LAST) |
| 950 png_read_filter_row(png_ptr, &row_info, png_ptr->row_buf + 1, |
| 951 png_ptr->prev_row + 1, png_ptr->row_buf[0]); |
| 952 else |
| 953 png_error(png_ptr, "bad adaptive filter value"); |
| 954 } |
947 | 955 |
948 png_memcpy_check(png_ptr, png_ptr->prev_row, png_ptr->row_buf, | 956 /* libpng 1.5.6: the following line was copying png_ptr->rowbytes before |
949 png_ptr->rowbytes + 1); | 957 * 1.5.6, while the buffer really is this big in current versions of libpng |
| 958 * it may not be in the future, so this was changed just to copy the |
| 959 * interlaced row count: |
| 960 */ |
| 961 memcpy(png_ptr->prev_row, png_ptr->row_buf, row_info.rowbytes + 1); |
950 | 962 |
951 if (png_ptr->transformations || (png_ptr->flags&PNG_FLAG_STRIP_ALPHA)) | 963 #ifdef PNG_READ_TRANSFORMS_SUPPORTED |
952 png_do_read_transformations(png_ptr); | 964 if (png_ptr->transformations) |
| 965 png_do_read_transformations(png_ptr, &row_info); |
| 966 #endif |
| 967 |
| 968 /* The transformed pixel depth should match the depth now in row_info. */ |
| 969 if (png_ptr->transformed_pixel_depth == 0) |
| 970 { |
| 971 png_ptr->transformed_pixel_depth = row_info.pixel_depth; |
| 972 if (row_info.pixel_depth > png_ptr->maximum_pixel_depth) |
| 973 png_error(png_ptr, "progressive row overflow"); |
| 974 } |
| 975 |
| 976 else if (png_ptr->transformed_pixel_depth != row_info.pixel_depth) |
| 977 png_error(png_ptr, "internal progressive row size calculation error"); |
| 978 |
953 | 979 |
954 #ifdef PNG_READ_INTERLACING_SUPPORTED | 980 #ifdef PNG_READ_INTERLACING_SUPPORTED |
955 /* Blow up interlaced rows to full size */ | 981 /* Blow up interlaced rows to full size */ |
956 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE)) | 982 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE)) |
957 { | 983 { |
958 if (png_ptr->pass < 6) | 984 if (png_ptr->pass < 6) |
959 /* old interface (pre-1.0.9): | 985 png_do_read_interlace(&row_info, png_ptr->row_buf + 1, png_ptr->pass, |
960 png_do_read_interlace(&(png_ptr->row_info), | 986 png_ptr->transformations); |
961 png_ptr->row_buf + 1, png_ptr->pass, png_ptr->transformations); | |
962 */ | |
963 png_do_read_interlace(png_ptr); | |
964 | 987 |
965 switch (png_ptr->pass) | 988 switch (png_ptr->pass) |
966 { | 989 { |
967 case 0: | 990 case 0: |
968 { | 991 { |
969 int i; | 992 int i; |
970 for (i = 0; i < 8 && png_ptr->pass == 0; i++) | 993 for (i = 0; i < 8 && png_ptr->pass == 0; i++) |
971 { | 994 { |
972 png_push_have_row(png_ptr, png_ptr->row_buf + 1); | 995 png_push_have_row(png_ptr, png_ptr->row_buf + 1); |
973 png_read_push_finish_row(png_ptr); /* Updates png_ptr->pass */ | 996 png_read_push_finish_row(png_ptr); /* Updates png_ptr->pass */ |
974 } | 997 } |
975 | 998 |
976 if (png_ptr->pass == 2) /* Pass 1 might be empty */ | 999 if (png_ptr->pass == 2) /* Pass 1 might be empty */ |
977 { | 1000 { |
978 for (i = 0; i < 4 && png_ptr->pass == 2; i++) | 1001 for (i = 0; i < 4 && png_ptr->pass == 2; i++) |
979 { | 1002 { |
980 png_push_have_row(png_ptr, png_bytep_NULL); | 1003 png_push_have_row(png_ptr, NULL); |
981 png_read_push_finish_row(png_ptr); | 1004 png_read_push_finish_row(png_ptr); |
982 } | 1005 } |
983 } | 1006 } |
984 | 1007 |
985 if (png_ptr->pass == 4 && png_ptr->height <= 4) | 1008 if (png_ptr->pass == 4 && png_ptr->height <= 4) |
986 { | 1009 { |
987 for (i = 0; i < 2 && png_ptr->pass == 4; i++) | 1010 for (i = 0; i < 2 && png_ptr->pass == 4; i++) |
988 { | 1011 { |
989 png_push_have_row(png_ptr, png_bytep_NULL); | 1012 png_push_have_row(png_ptr, NULL); |
990 png_read_push_finish_row(png_ptr); | 1013 png_read_push_finish_row(png_ptr); |
991 } | 1014 } |
992 } | 1015 } |
993 | 1016 |
994 if (png_ptr->pass == 6 && png_ptr->height <= 4) | 1017 if (png_ptr->pass == 6 && png_ptr->height <= 4) |
995 { | 1018 { |
996 png_push_have_row(png_ptr, png_bytep_NULL); | 1019 png_push_have_row(png_ptr, NULL); |
997 png_read_push_finish_row(png_ptr); | 1020 png_read_push_finish_row(png_ptr); |
998 } | 1021 } |
999 | 1022 |
1000 break; | 1023 break; |
1001 } | 1024 } |
1002 | 1025 |
1003 case 1: | 1026 case 1: |
1004 { | 1027 { |
1005 int i; | 1028 int i; |
1006 for (i = 0; i < 8 && png_ptr->pass == 1; i++) | 1029 for (i = 0; i < 8 && png_ptr->pass == 1; i++) |
1007 { | 1030 { |
1008 png_push_have_row(png_ptr, png_ptr->row_buf + 1); | 1031 png_push_have_row(png_ptr, png_ptr->row_buf + 1); |
1009 png_read_push_finish_row(png_ptr); | 1032 png_read_push_finish_row(png_ptr); |
1010 } | 1033 } |
1011 | 1034 |
1012 if (png_ptr->pass == 2) /* Skip top 4 generated rows */ | 1035 if (png_ptr->pass == 2) /* Skip top 4 generated rows */ |
1013 { | 1036 { |
1014 for (i = 0; i < 4 && png_ptr->pass == 2; i++) | 1037 for (i = 0; i < 4 && png_ptr->pass == 2; i++) |
1015 { | 1038 { |
1016 png_push_have_row(png_ptr, png_bytep_NULL); | 1039 png_push_have_row(png_ptr, NULL); |
1017 png_read_push_finish_row(png_ptr); | 1040 png_read_push_finish_row(png_ptr); |
1018 } | 1041 } |
1019 } | 1042 } |
1020 | 1043 |
1021 break; | 1044 break; |
1022 } | 1045 } |
1023 | 1046 |
1024 case 2: | 1047 case 2: |
1025 { | 1048 { |
1026 int i; | 1049 int i; |
1027 | 1050 |
1028 for (i = 0; i < 4 && png_ptr->pass == 2; i++) | 1051 for (i = 0; i < 4 && png_ptr->pass == 2; i++) |
1029 { | 1052 { |
1030 png_push_have_row(png_ptr, png_ptr->row_buf + 1); | 1053 png_push_have_row(png_ptr, png_ptr->row_buf + 1); |
1031 png_read_push_finish_row(png_ptr); | 1054 png_read_push_finish_row(png_ptr); |
1032 } | 1055 } |
1033 | 1056 |
1034 for (i = 0; i < 4 && png_ptr->pass == 2; i++) | 1057 for (i = 0; i < 4 && png_ptr->pass == 2; i++) |
1035 { | 1058 { |
1036 png_push_have_row(png_ptr, png_bytep_NULL); | 1059 png_push_have_row(png_ptr, NULL); |
1037 png_read_push_finish_row(png_ptr); | 1060 png_read_push_finish_row(png_ptr); |
1038 } | 1061 } |
1039 | 1062 |
1040 if (png_ptr->pass == 4) /* Pass 3 might be empty */ | 1063 if (png_ptr->pass == 4) /* Pass 3 might be empty */ |
1041 { | 1064 { |
1042 for (i = 0; i < 2 && png_ptr->pass == 4; i++) | 1065 for (i = 0; i < 2 && png_ptr->pass == 4; i++) |
1043 { | 1066 { |
1044 png_push_have_row(png_ptr, png_bytep_NULL); | 1067 png_push_have_row(png_ptr, NULL); |
1045 png_read_push_finish_row(png_ptr); | 1068 png_read_push_finish_row(png_ptr); |
1046 } | 1069 } |
1047 } | 1070 } |
1048 | 1071 |
1049 break; | 1072 break; |
1050 } | 1073 } |
1051 | 1074 |
1052 case 3: | 1075 case 3: |
1053 { | 1076 { |
1054 int i; | 1077 int i; |
1055 | 1078 |
1056 for (i = 0; i < 4 && png_ptr->pass == 3; i++) | 1079 for (i = 0; i < 4 && png_ptr->pass == 3; i++) |
1057 { | 1080 { |
1058 png_push_have_row(png_ptr, png_ptr->row_buf + 1); | 1081 png_push_have_row(png_ptr, png_ptr->row_buf + 1); |
1059 png_read_push_finish_row(png_ptr); | 1082 png_read_push_finish_row(png_ptr); |
1060 } | 1083 } |
1061 | 1084 |
1062 if (png_ptr->pass == 4) /* Skip top two generated rows */ | 1085 if (png_ptr->pass == 4) /* Skip top two generated rows */ |
1063 { | 1086 { |
1064 for (i = 0; i < 2 && png_ptr->pass == 4; i++) | 1087 for (i = 0; i < 2 && png_ptr->pass == 4; i++) |
1065 { | 1088 { |
1066 png_push_have_row(png_ptr, png_bytep_NULL); | 1089 png_push_have_row(png_ptr, NULL); |
1067 png_read_push_finish_row(png_ptr); | 1090 png_read_push_finish_row(png_ptr); |
1068 } | 1091 } |
1069 } | 1092 } |
1070 | 1093 |
1071 break; | 1094 break; |
1072 } | 1095 } |
1073 | 1096 |
1074 case 4: | 1097 case 4: |
1075 { | 1098 { |
1076 int i; | 1099 int i; |
1077 | 1100 |
1078 for (i = 0; i < 2 && png_ptr->pass == 4; i++) | 1101 for (i = 0; i < 2 && png_ptr->pass == 4; i++) |
1079 { | 1102 { |
1080 png_push_have_row(png_ptr, png_ptr->row_buf + 1); | 1103 png_push_have_row(png_ptr, png_ptr->row_buf + 1); |
1081 png_read_push_finish_row(png_ptr); | 1104 png_read_push_finish_row(png_ptr); |
1082 } | 1105 } |
1083 | 1106 |
1084 for (i = 0; i < 2 && png_ptr->pass == 4; i++) | 1107 for (i = 0; i < 2 && png_ptr->pass == 4; i++) |
1085 { | 1108 { |
1086 png_push_have_row(png_ptr, png_bytep_NULL); | 1109 png_push_have_row(png_ptr, NULL); |
1087 png_read_push_finish_row(png_ptr); | 1110 png_read_push_finish_row(png_ptr); |
1088 } | 1111 } |
1089 | 1112 |
1090 if (png_ptr->pass == 6) /* Pass 5 might be empty */ | 1113 if (png_ptr->pass == 6) /* Pass 5 might be empty */ |
1091 { | 1114 { |
1092 png_push_have_row(png_ptr, png_bytep_NULL); | 1115 png_push_have_row(png_ptr, NULL); |
1093 png_read_push_finish_row(png_ptr); | 1116 png_read_push_finish_row(png_ptr); |
1094 } | 1117 } |
1095 | 1118 |
1096 break; | 1119 break; |
1097 } | 1120 } |
1098 | 1121 |
1099 case 5: | 1122 case 5: |
1100 { | 1123 { |
1101 int i; | 1124 int i; |
1102 | 1125 |
1103 for (i = 0; i < 2 && png_ptr->pass == 5; i++) | 1126 for (i = 0; i < 2 && png_ptr->pass == 5; i++) |
1104 { | 1127 { |
1105 png_push_have_row(png_ptr, png_ptr->row_buf + 1); | 1128 png_push_have_row(png_ptr, png_ptr->row_buf + 1); |
1106 png_read_push_finish_row(png_ptr); | 1129 png_read_push_finish_row(png_ptr); |
1107 } | 1130 } |
1108 | 1131 |
1109 if (png_ptr->pass == 6) /* Skip top generated row */ | 1132 if (png_ptr->pass == 6) /* Skip top generated row */ |
1110 { | 1133 { |
1111 png_push_have_row(png_ptr, png_bytep_NULL); | 1134 png_push_have_row(png_ptr, NULL); |
1112 png_read_push_finish_row(png_ptr); | 1135 png_read_push_finish_row(png_ptr); |
1113 } | 1136 } |
1114 | 1137 |
1115 break; | 1138 break; |
1116 } | 1139 } |
| 1140 |
| 1141 default: |
1117 case 6: | 1142 case 6: |
1118 { | 1143 { |
1119 png_push_have_row(png_ptr, png_ptr->row_buf + 1); | 1144 png_push_have_row(png_ptr, png_ptr->row_buf + 1); |
1120 png_read_push_finish_row(png_ptr); | 1145 png_read_push_finish_row(png_ptr); |
1121 | 1146 |
1122 if (png_ptr->pass != 6) | 1147 if (png_ptr->pass != 6) |
1123 break; | 1148 break; |
1124 | 1149 |
1125 png_push_have_row(png_ptr, png_bytep_NULL); | 1150 png_push_have_row(png_ptr, NULL); |
1126 png_read_push_finish_row(png_ptr); | 1151 png_read_push_finish_row(png_ptr); |
1127 } | 1152 } |
1128 } | 1153 } |
1129 } | 1154 } |
1130 else | 1155 else |
1131 #endif | 1156 #endif |
1132 { | 1157 { |
1133 png_push_have_row(png_ptr, png_ptr->row_buf + 1); | 1158 png_push_have_row(png_ptr, png_ptr->row_buf + 1); |
1134 png_read_push_finish_row(png_ptr); | 1159 png_read_push_finish_row(png_ptr); |
1135 } | 1160 } |
1136 } | 1161 } |
1137 | 1162 |
1138 void /* PRIVATE */ | 1163 void /* PRIVATE */ |
1139 png_read_push_finish_row(png_structp png_ptr) | 1164 png_read_push_finish_row(png_structrp png_ptr) |
1140 { | 1165 { |
1141 #ifdef PNG_USE_LOCAL_ARRAYS | 1166 #ifdef PNG_READ_INTERLACING_SUPPORTED |
1142 /* Arrays to facilitate easy interlacing - use pass (0 - 6) as index */ | 1167 /* Arrays to facilitate easy interlacing - use pass (0 - 6) as index */ |
1143 | 1168 |
1144 /* Start of interlace block */ | 1169 /* Start of interlace block */ |
1145 PNG_CONST int FARDATA png_pass_start[] = {0, 4, 0, 2, 0, 1, 0}; | 1170 static PNG_CONST png_byte png_pass_start[] = {0, 4, 0, 2, 0, 1, 0}; |
1146 | 1171 |
1147 /* Offset to next interlace block */ | 1172 /* Offset to next interlace block */ |
1148 PNG_CONST int FARDATA png_pass_inc[] = {8, 8, 4, 4, 2, 2, 1}; | 1173 static PNG_CONST png_byte png_pass_inc[] = {8, 8, 4, 4, 2, 2, 1}; |
1149 | 1174 |
1150 /* Start of interlace block in the y direction */ | 1175 /* Start of interlace block in the y direction */ |
1151 PNG_CONST int FARDATA png_pass_ystart[] = {0, 0, 4, 0, 2, 0, 1}; | 1176 static PNG_CONST png_byte png_pass_ystart[] = {0, 0, 4, 0, 2, 0, 1}; |
1152 | 1177 |
1153 /* Offset to next interlace block in the y direction */ | 1178 /* Offset to next interlace block in the y direction */ |
1154 PNG_CONST int FARDATA png_pass_yinc[] = {8, 8, 8, 4, 4, 2, 2}; | 1179 static PNG_CONST png_byte png_pass_yinc[] = {8, 8, 8, 4, 4, 2, 2}; |
1155 | 1180 |
1156 /* Height of interlace block. This is not currently used - if you need | 1181 /* Height of interlace block. This is not currently used - if you need |
1157 * it, uncomment it here and in png.h | 1182 * it, uncomment it here and in png.h |
1158 PNG_CONST int FARDATA png_pass_height[] = {8, 8, 4, 4, 2, 2, 1}; | 1183 static PNG_CONST png_byte png_pass_height[] = {8, 8, 4, 4, 2, 2, 1}; |
1159 */ | 1184 */ |
1160 #endif | 1185 #endif |
1161 | 1186 |
1162 png_ptr->row_number++; | 1187 png_ptr->row_number++; |
1163 if (png_ptr->row_number < png_ptr->num_rows) | 1188 if (png_ptr->row_number < png_ptr->num_rows) |
1164 return; | 1189 return; |
1165 | 1190 |
1166 #ifdef PNG_READ_INTERLACING_SUPPORTED | 1191 #ifdef PNG_READ_INTERLACING_SUPPORTED |
1167 if (png_ptr->interlaced) | 1192 if (png_ptr->interlaced) |
1168 { | 1193 { |
1169 png_ptr->row_number = 0; | 1194 png_ptr->row_number = 0; |
1170 png_memset_check(png_ptr, png_ptr->prev_row, 0, | 1195 memset(png_ptr->prev_row, 0, png_ptr->rowbytes + 1); |
1171 png_ptr->rowbytes + 1); | 1196 |
1172 do | 1197 do |
1173 { | 1198 { |
1174 png_ptr->pass++; | 1199 png_ptr->pass++; |
1175 if ((png_ptr->pass == 1 && png_ptr->width < 5) || | 1200 if ((png_ptr->pass == 1 && png_ptr->width < 5) || |
1176 (png_ptr->pass == 3 && png_ptr->width < 3) || | 1201 (png_ptr->pass == 3 && png_ptr->width < 3) || |
1177 (png_ptr->pass == 5 && png_ptr->width < 2)) | 1202 (png_ptr->pass == 5 && png_ptr->width < 2)) |
1178 png_ptr->pass++; | 1203 png_ptr->pass++; |
1179 | 1204 |
1180 if (png_ptr->pass > 7) | 1205 if (png_ptr->pass > 7) |
1181 png_ptr->pass--; | 1206 png_ptr->pass--; |
1182 | 1207 |
1183 if (png_ptr->pass >= 7) | 1208 if (png_ptr->pass >= 7) |
1184 break; | 1209 break; |
1185 | 1210 |
1186 png_ptr->iwidth = (png_ptr->width + | 1211 png_ptr->iwidth = (png_ptr->width + |
1187 png_pass_inc[png_ptr->pass] - 1 - | 1212 png_pass_inc[png_ptr->pass] - 1 - |
1188 png_pass_start[png_ptr->pass]) / | 1213 png_pass_start[png_ptr->pass]) / |
1189 png_pass_inc[png_ptr->pass]; | 1214 png_pass_inc[png_ptr->pass]; |
1190 | 1215 |
1191 if (png_ptr->transformations & PNG_INTERLACE) | 1216 if (png_ptr->transformations & PNG_INTERLACE) |
1192 break; | 1217 break; |
1193 | 1218 |
1194 png_ptr->num_rows = (png_ptr->height + | 1219 png_ptr->num_rows = (png_ptr->height + |
1195 png_pass_yinc[png_ptr->pass] - 1 - | 1220 png_pass_yinc[png_ptr->pass] - 1 - |
1196 png_pass_ystart[png_ptr->pass]) / | 1221 png_pass_ystart[png_ptr->pass]) / |
1197 png_pass_yinc[png_ptr->pass]; | 1222 png_pass_yinc[png_ptr->pass]; |
1198 | 1223 |
1199 } while (png_ptr->iwidth == 0 || png_ptr->num_rows == 0); | 1224 } while (png_ptr->iwidth == 0 || png_ptr->num_rows == 0); |
1200 } | 1225 } |
1201 #endif /* PNG_READ_INTERLACING_SUPPORTED */ | 1226 #endif /* PNG_READ_INTERLACING_SUPPORTED */ |
1202 } | 1227 } |
1203 | 1228 |
1204 #ifdef PNG_READ_tEXt_SUPPORTED | |
1205 void /* PRIVATE */ | 1229 void /* PRIVATE */ |
1206 png_push_handle_tEXt(png_structp png_ptr, png_infop info_ptr, png_uint_32 | 1230 png_push_have_info(png_structrp png_ptr, png_inforp info_ptr) |
1207 length) | |
1208 { | |
1209 if (!(png_ptr->mode & PNG_HAVE_IHDR) || (png_ptr->mode & PNG_HAVE_IEND)) | |
1210 { | |
1211 png_error(png_ptr, "Out of place tEXt"); | |
1212 info_ptr = info_ptr; /* To quiet some compiler warnings */ | |
1213 } | |
1214 | |
1215 #ifdef PNG_MAX_MALLOC_64K | |
1216 png_ptr->skip_length = 0; /* This may not be necessary */ | |
1217 | |
1218 if (length > (png_uint_32)65535L) /* Can't hold entire string in memory */ | |
1219 { | |
1220 png_warning(png_ptr, "tEXt chunk too large to fit in memory"); | |
1221 png_ptr->skip_length = length - (png_uint_32)65535L; | |
1222 length = (png_uint_32)65535L; | |
1223 } | |
1224 #endif | |
1225 | |
1226 png_ptr->current_text = (png_charp)png_malloc(png_ptr, | |
1227 (png_uint_32)(length + 1)); | |
1228 png_ptr->current_text[length] = '\0'; | |
1229 png_ptr->current_text_ptr = png_ptr->current_text; | |
1230 png_ptr->current_text_size = (png_size_t)length; | |
1231 png_ptr->current_text_left = (png_size_t)length; | |
1232 png_ptr->process_mode = PNG_READ_tEXt_MODE; | |
1233 } | |
1234 | |
1235 void /* PRIVATE */ | |
1236 png_push_read_tEXt(png_structp png_ptr, png_infop info_ptr) | |
1237 { | |
1238 if (png_ptr->buffer_size && png_ptr->current_text_left) | |
1239 { | |
1240 png_size_t text_size; | |
1241 | |
1242 if (png_ptr->buffer_size < png_ptr->current_text_left) | |
1243 text_size = png_ptr->buffer_size; | |
1244 | |
1245 else | |
1246 text_size = png_ptr->current_text_left; | |
1247 | |
1248 png_crc_read(png_ptr, (png_bytep)png_ptr->current_text_ptr, text_size); | |
1249 png_ptr->current_text_left -= text_size; | |
1250 png_ptr->current_text_ptr += text_size; | |
1251 } | |
1252 if (!(png_ptr->current_text_left)) | |
1253 { | |
1254 png_textp text_ptr; | |
1255 png_charp text; | |
1256 png_charp key; | |
1257 int ret; | |
1258 | |
1259 if (png_ptr->buffer_size < 4) | |
1260 { | |
1261 png_push_save_buffer(png_ptr); | |
1262 return; | |
1263 } | |
1264 | |
1265 png_push_crc_finish(png_ptr); | |
1266 | |
1267 #ifdef PNG_MAX_MALLOC_64K | |
1268 if (png_ptr->skip_length) | |
1269 return; | |
1270 #endif | |
1271 | |
1272 key = png_ptr->current_text; | |
1273 | |
1274 for (text = key; *text; text++) | |
1275 /* Empty loop */ ; | |
1276 | |
1277 if (text < key + png_ptr->current_text_size) | |
1278 text++; | |
1279 | |
1280 text_ptr = (png_textp)png_malloc(png_ptr, | |
1281 (png_uint_32)png_sizeof(png_text)); | |
1282 text_ptr->compression = PNG_TEXT_COMPRESSION_NONE; | |
1283 text_ptr->key = key; | |
1284 #ifdef PNG_iTXt_SUPPORTED | |
1285 text_ptr->lang = NULL; | |
1286 text_ptr->lang_key = NULL; | |
1287 #endif | |
1288 text_ptr->text = text; | |
1289 | |
1290 ret = png_set_text_2(png_ptr, info_ptr, text_ptr, 1); | |
1291 | |
1292 png_free(png_ptr, key); | |
1293 png_free(png_ptr, text_ptr); | |
1294 png_ptr->current_text = NULL; | |
1295 | |
1296 if (ret) | |
1297 png_warning(png_ptr, "Insufficient memory to store text chunk."); | |
1298 } | |
1299 } | |
1300 #endif | |
1301 | |
1302 #ifdef PNG_READ_zTXt_SUPPORTED | |
1303 void /* PRIVATE */ | |
1304 png_push_handle_zTXt(png_structp png_ptr, png_infop info_ptr, png_uint_32 | |
1305 length) | |
1306 { | |
1307 if (!(png_ptr->mode & PNG_HAVE_IHDR) || (png_ptr->mode & PNG_HAVE_IEND)) | |
1308 { | |
1309 png_error(png_ptr, "Out of place zTXt"); | |
1310 info_ptr = info_ptr; /* To quiet some compiler warnings */ | |
1311 } | |
1312 | |
1313 #ifdef PNG_MAX_MALLOC_64K | |
1314 /* We can't handle zTXt chunks > 64K, since we don't have enough space | |
1315 * to be able to store the uncompressed data. Actually, the threshold | |
1316 * is probably around 32K, but it isn't as definite as 64K is. | |
1317 */ | |
1318 if (length > (png_uint_32)65535L) | |
1319 { | |
1320 png_warning(png_ptr, "zTXt chunk too large to fit in memory"); | |
1321 png_push_crc_skip(png_ptr, length); | |
1322 return; | |
1323 } | |
1324 #endif | |
1325 | |
1326 png_ptr->current_text = (png_charp)png_malloc(png_ptr, | |
1327 (png_uint_32)(length + 1)); | |
1328 png_ptr->current_text[length] = '\0'; | |
1329 png_ptr->current_text_ptr = png_ptr->current_text; | |
1330 png_ptr->current_text_size = (png_size_t)length; | |
1331 png_ptr->current_text_left = (png_size_t)length; | |
1332 png_ptr->process_mode = PNG_READ_zTXt_MODE; | |
1333 } | |
1334 | |
1335 void /* PRIVATE */ | |
1336 png_push_read_zTXt(png_structp png_ptr, png_infop info_ptr) | |
1337 { | |
1338 if (png_ptr->buffer_size && png_ptr->current_text_left) | |
1339 { | |
1340 png_size_t text_size; | |
1341 | |
1342 if (png_ptr->buffer_size < (png_uint_32)png_ptr->current_text_left) | |
1343 text_size = png_ptr->buffer_size; | |
1344 | |
1345 else | |
1346 text_size = png_ptr->current_text_left; | |
1347 | |
1348 png_crc_read(png_ptr, (png_bytep)png_ptr->current_text_ptr, text_size); | |
1349 png_ptr->current_text_left -= text_size; | |
1350 png_ptr->current_text_ptr += text_size; | |
1351 } | |
1352 if (!(png_ptr->current_text_left)) | |
1353 { | |
1354 png_textp text_ptr; | |
1355 png_charp text; | |
1356 png_charp key; | |
1357 int ret; | |
1358 png_size_t text_size, key_size; | |
1359 | |
1360 if (png_ptr->buffer_size < 4) | |
1361 { | |
1362 png_push_save_buffer(png_ptr); | |
1363 return; | |
1364 } | |
1365 | |
1366 png_push_crc_finish(png_ptr); | |
1367 | |
1368 key = png_ptr->current_text; | |
1369 | |
1370 for (text = key; *text; text++) | |
1371 /* Empty loop */ ; | |
1372 | |
1373 /* zTXt can't have zero text */ | |
1374 if (text >= key + png_ptr->current_text_size) | |
1375 { | |
1376 png_ptr->current_text = NULL; | |
1377 png_free(png_ptr, key); | |
1378 return; | |
1379 } | |
1380 | |
1381 text++; | |
1382 | |
1383 if (*text != PNG_TEXT_COMPRESSION_zTXt) /* Check compression byte */ | |
1384 { | |
1385 png_ptr->current_text = NULL; | |
1386 png_free(png_ptr, key); | |
1387 return; | |
1388 } | |
1389 | |
1390 text++; | |
1391 | |
1392 png_ptr->zstream.next_in = (png_bytep )text; | |
1393 png_ptr->zstream.avail_in = (uInt)(png_ptr->current_text_size - | |
1394 (text - key)); | |
1395 png_ptr->zstream.next_out = png_ptr->zbuf; | |
1396 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size; | |
1397 | |
1398 key_size = text - key; | |
1399 text_size = 0; | |
1400 text = NULL; | |
1401 ret = Z_STREAM_END; | |
1402 | |
1403 while (png_ptr->zstream.avail_in) | |
1404 { | |
1405 ret = inflate(&png_ptr->zstream, Z_PARTIAL_FLUSH); | |
1406 if (ret != Z_OK && ret != Z_STREAM_END) | |
1407 { | |
1408 inflateReset(&png_ptr->zstream); | |
1409 png_ptr->zstream.avail_in = 0; | |
1410 png_ptr->current_text = NULL; | |
1411 png_free(png_ptr, key); | |
1412 png_free(png_ptr, text); | |
1413 return; | |
1414 } | |
1415 if (!(png_ptr->zstream.avail_out) || ret == Z_STREAM_END) | |
1416 { | |
1417 if (text == NULL) | |
1418 { | |
1419 text = (png_charp)png_malloc(png_ptr, | |
1420 (png_uint_32)(png_ptr->zbuf_size | |
1421 - png_ptr->zstream.avail_out + key_size + 1)); | |
1422 | |
1423 png_memcpy(text + key_size, png_ptr->zbuf, | |
1424 png_ptr->zbuf_size - png_ptr->zstream.avail_out); | |
1425 | |
1426 png_memcpy(text, key, key_size); | |
1427 | |
1428 text_size = key_size + png_ptr->zbuf_size - | |
1429 png_ptr->zstream.avail_out; | |
1430 | |
1431 *(text + text_size) = '\0'; | |
1432 } | |
1433 else | |
1434 { | |
1435 png_charp tmp; | |
1436 | |
1437 tmp = text; | |
1438 text = (png_charp)png_malloc(png_ptr, text_size + | |
1439 (png_uint_32)(png_ptr->zbuf_size | |
1440 - png_ptr->zstream.avail_out + 1)); | |
1441 | |
1442 png_memcpy(text, tmp, text_size); | |
1443 png_free(png_ptr, tmp); | |
1444 | |
1445 png_memcpy(text + text_size, png_ptr->zbuf, | |
1446 png_ptr->zbuf_size - png_ptr->zstream.avail_out); | |
1447 | |
1448 text_size += png_ptr->zbuf_size - png_ptr->zstream.avail_out; | |
1449 *(text + text_size) = '\0'; | |
1450 } | |
1451 if (ret != Z_STREAM_END) | |
1452 { | |
1453 png_ptr->zstream.next_out = png_ptr->zbuf; | |
1454 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size; | |
1455 } | |
1456 } | |
1457 else | |
1458 { | |
1459 break; | |
1460 } | |
1461 | |
1462 if (ret == Z_STREAM_END) | |
1463 break; | |
1464 } | |
1465 | |
1466 inflateReset(&png_ptr->zstream); | |
1467 png_ptr->zstream.avail_in = 0; | |
1468 | |
1469 if (ret != Z_STREAM_END) | |
1470 { | |
1471 png_ptr->current_text = NULL; | |
1472 png_free(png_ptr, key); | |
1473 png_free(png_ptr, text); | |
1474 return; | |
1475 } | |
1476 | |
1477 png_ptr->current_text = NULL; | |
1478 png_free(png_ptr, key); | |
1479 key = text; | |
1480 text += key_size; | |
1481 | |
1482 text_ptr = (png_textp)png_malloc(png_ptr, | |
1483 (png_uint_32)png_sizeof(png_text)); | |
1484 text_ptr->compression = PNG_TEXT_COMPRESSION_zTXt; | |
1485 text_ptr->key = key; | |
1486 #ifdef PNG_iTXt_SUPPORTED | |
1487 text_ptr->lang = NULL; | |
1488 text_ptr->lang_key = NULL; | |
1489 #endif | |
1490 text_ptr->text = text; | |
1491 | |
1492 ret = png_set_text_2(png_ptr, info_ptr, text_ptr, 1); | |
1493 | |
1494 png_free(png_ptr, key); | |
1495 png_free(png_ptr, text_ptr); | |
1496 | |
1497 if (ret) | |
1498 png_warning(png_ptr, "Insufficient memory to store text chunk."); | |
1499 } | |
1500 } | |
1501 #endif | |
1502 | |
1503 #ifdef PNG_READ_iTXt_SUPPORTED | |
1504 void /* PRIVATE */ | |
1505 png_push_handle_iTXt(png_structp png_ptr, png_infop info_ptr, png_uint_32 | |
1506 length) | |
1507 { | |
1508 if (!(png_ptr->mode & PNG_HAVE_IHDR) || (png_ptr->mode & PNG_HAVE_IEND)) | |
1509 { | |
1510 png_error(png_ptr, "Out of place iTXt"); | |
1511 info_ptr = info_ptr; /* To quiet some compiler warnings */ | |
1512 } | |
1513 | |
1514 #ifdef PNG_MAX_MALLOC_64K | |
1515 png_ptr->skip_length = 0; /* This may not be necessary */ | |
1516 | |
1517 if (length > (png_uint_32)65535L) /* Can't hold entire string in memory */ | |
1518 { | |
1519 png_warning(png_ptr, "iTXt chunk too large to fit in memory"); | |
1520 png_ptr->skip_length = length - (png_uint_32)65535L; | |
1521 length = (png_uint_32)65535L; | |
1522 } | |
1523 #endif | |
1524 | |
1525 png_ptr->current_text = (png_charp)png_malloc(png_ptr, | |
1526 (png_uint_32)(length + 1)); | |
1527 png_ptr->current_text[length] = '\0'; | |
1528 png_ptr->current_text_ptr = png_ptr->current_text; | |
1529 png_ptr->current_text_size = (png_size_t)length; | |
1530 png_ptr->current_text_left = (png_size_t)length; | |
1531 png_ptr->process_mode = PNG_READ_iTXt_MODE; | |
1532 } | |
1533 | |
1534 void /* PRIVATE */ | |
1535 png_push_read_iTXt(png_structp png_ptr, png_infop info_ptr) | |
1536 { | |
1537 | |
1538 if (png_ptr->buffer_size && png_ptr->current_text_left) | |
1539 { | |
1540 png_size_t text_size; | |
1541 | |
1542 if (png_ptr->buffer_size < png_ptr->current_text_left) | |
1543 text_size = png_ptr->buffer_size; | |
1544 | |
1545 else | |
1546 text_size = png_ptr->current_text_left; | |
1547 | |
1548 png_crc_read(png_ptr, (png_bytep)png_ptr->current_text_ptr, text_size); | |
1549 png_ptr->current_text_left -= text_size; | |
1550 png_ptr->current_text_ptr += text_size; | |
1551 } | |
1552 if (!(png_ptr->current_text_left)) | |
1553 { | |
1554 png_textp text_ptr; | |
1555 png_charp key; | |
1556 int comp_flag; | |
1557 png_charp lang; | |
1558 png_charp lang_key; | |
1559 png_charp text; | |
1560 int ret; | |
1561 | |
1562 if (png_ptr->buffer_size < 4) | |
1563 { | |
1564 png_push_save_buffer(png_ptr); | |
1565 return; | |
1566 } | |
1567 | |
1568 png_push_crc_finish(png_ptr); | |
1569 | |
1570 #ifdef PNG_MAX_MALLOC_64K | |
1571 if (png_ptr->skip_length) | |
1572 return; | |
1573 #endif | |
1574 | |
1575 key = png_ptr->current_text; | |
1576 | |
1577 for (lang = key; *lang; lang++) | |
1578 /* Empty loop */ ; | |
1579 | |
1580 if (lang < key + png_ptr->current_text_size - 3) | |
1581 lang++; | |
1582 | |
1583 comp_flag = *lang++; | |
1584 lang++; /* Skip comp_type, always zero */ | |
1585 | |
1586 for (lang_key = lang; *lang_key; lang_key++) | |
1587 /* Empty loop */ ; | |
1588 | |
1589 lang_key++; /* Skip NUL separator */ | |
1590 | |
1591 text=lang_key; | |
1592 | |
1593 if (lang_key < key + png_ptr->current_text_size - 1) | |
1594 { | |
1595 for (; *text; text++) | |
1596 /* Empty loop */ ; | |
1597 } | |
1598 | |
1599 if (text < key + png_ptr->current_text_size) | |
1600 text++; | |
1601 | |
1602 text_ptr = (png_textp)png_malloc(png_ptr, | |
1603 (png_uint_32)png_sizeof(png_text)); | |
1604 | |
1605 text_ptr->compression = comp_flag + 2; | |
1606 text_ptr->key = key; | |
1607 text_ptr->lang = lang; | |
1608 text_ptr->lang_key = lang_key; | |
1609 text_ptr->text = text; | |
1610 text_ptr->text_length = 0; | |
1611 text_ptr->itxt_length = png_strlen(text); | |
1612 | |
1613 ret = png_set_text_2(png_ptr, info_ptr, text_ptr, 1); | |
1614 | |
1615 png_ptr->current_text = NULL; | |
1616 | |
1617 png_free(png_ptr, text_ptr); | |
1618 if (ret) | |
1619 png_warning(png_ptr, "Insufficient memory to store iTXt chunk."); | |
1620 } | |
1621 } | |
1622 #endif | |
1623 | |
1624 /* This function is called when we haven't found a handler for this | |
1625 * chunk. If there isn't a problem with the chunk itself (ie a bad chunk | |
1626 * name or a critical chunk), the chunk is (currently) silently ignored. | |
1627 */ | |
1628 void /* PRIVATE */ | |
1629 png_push_handle_unknown(png_structp png_ptr, png_infop info_ptr, png_uint_32 | |
1630 length) | |
1631 { | |
1632 png_uint_32 skip = 0; | |
1633 | |
1634 if (!(png_ptr->chunk_name[0] & 0x20)) | |
1635 { | |
1636 #ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED | |
1637 if (png_handle_as_unknown(png_ptr, png_ptr->chunk_name) != | |
1638 PNG_HANDLE_CHUNK_ALWAYS | |
1639 #ifdef PNG_READ_USER_CHUNKS_SUPPORTED | |
1640 && png_ptr->read_user_chunk_fn == NULL | |
1641 #endif | |
1642 ) | |
1643 #endif | |
1644 png_chunk_error(png_ptr, "unknown critical chunk"); | |
1645 | |
1646 info_ptr = info_ptr; /* To quiet some compiler warnings */ | |
1647 } | |
1648 | |
1649 #ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED | |
1650 if (png_ptr->flags & PNG_FLAG_KEEP_UNKNOWN_CHUNKS) | |
1651 { | |
1652 #ifdef PNG_MAX_MALLOC_64K | |
1653 if (length > (png_uint_32)65535L) | |
1654 { | |
1655 png_warning(png_ptr, "unknown chunk too large to fit in memory"); | |
1656 skip = length - (png_uint_32)65535L; | |
1657 length = (png_uint_32)65535L; | |
1658 } | |
1659 #endif | |
1660 png_memcpy((png_charp)png_ptr->unknown_chunk.name, | |
1661 (png_charp)png_ptr->chunk_name, | |
1662 png_sizeof(png_ptr->unknown_chunk.name)); | |
1663 png_ptr->unknown_chunk.name[png_sizeof(png_ptr->unknown_chunk.name) - 1] | |
1664 = '\0'; | |
1665 | |
1666 png_ptr->unknown_chunk.size = (png_size_t)length; | |
1667 | |
1668 if (length == 0) | |
1669 png_ptr->unknown_chunk.data = NULL; | |
1670 | |
1671 else | |
1672 { | |
1673 png_ptr->unknown_chunk.data = (png_bytep)png_malloc(png_ptr, | |
1674 (png_uint_32)length); | |
1675 png_crc_read(png_ptr, (png_bytep)png_ptr->unknown_chunk.data, length); | |
1676 } | |
1677 | |
1678 #ifdef PNG_READ_USER_CHUNKS_SUPPORTED | |
1679 if (png_ptr->read_user_chunk_fn != NULL) | |
1680 { | |
1681 /* Callback to user unknown chunk handler */ | |
1682 int ret; | |
1683 ret = (*(png_ptr->read_user_chunk_fn)) | |
1684 (png_ptr, &png_ptr->unknown_chunk); | |
1685 | |
1686 if (ret < 0) | |
1687 png_chunk_error(png_ptr, "error in user chunk"); | |
1688 | |
1689 if (ret == 0) | |
1690 { | |
1691 if (!(png_ptr->chunk_name[0] & 0x20)) | |
1692 if (png_handle_as_unknown(png_ptr, png_ptr->chunk_name) != | |
1693 PNG_HANDLE_CHUNK_ALWAYS) | |
1694 png_chunk_error(png_ptr, "unknown critical chunk"); | |
1695 png_set_unknown_chunks(png_ptr, info_ptr, | |
1696 &png_ptr->unknown_chunk, 1); | |
1697 } | |
1698 } | |
1699 | |
1700 else | |
1701 #endif | |
1702 png_set_unknown_chunks(png_ptr, info_ptr, &png_ptr->unknown_chunk, 1); | |
1703 png_free(png_ptr, png_ptr->unknown_chunk.data); | |
1704 png_ptr->unknown_chunk.data = NULL; | |
1705 } | |
1706 | |
1707 else | |
1708 #endif | |
1709 skip=length; | |
1710 png_push_crc_skip(png_ptr, skip); | |
1711 } | |
1712 | |
1713 void /* PRIVATE */ | |
1714 png_push_have_info(png_structp png_ptr, png_infop info_ptr) | |
1715 { | 1231 { |
1716 if (png_ptr->info_fn != NULL) | 1232 if (png_ptr->info_fn != NULL) |
1717 (*(png_ptr->info_fn))(png_ptr, info_ptr); | 1233 (*(png_ptr->info_fn))(png_ptr, info_ptr); |
1718 } | 1234 } |
1719 | 1235 |
1720 void /* PRIVATE */ | 1236 void /* PRIVATE */ |
1721 png_push_have_end(png_structp png_ptr, png_infop info_ptr) | 1237 png_push_have_end(png_structrp png_ptr, png_inforp info_ptr) |
1722 { | 1238 { |
1723 if (png_ptr->end_fn != NULL) | 1239 if (png_ptr->end_fn != NULL) |
1724 (*(png_ptr->end_fn))(png_ptr, info_ptr); | 1240 (*(png_ptr->end_fn))(png_ptr, info_ptr); |
1725 } | 1241 } |
1726 | 1242 |
1727 void /* PRIVATE */ | 1243 void /* PRIVATE */ |
1728 png_push_have_row(png_structp png_ptr, png_bytep row) | 1244 png_push_have_row(png_structrp png_ptr, png_bytep row) |
1729 { | 1245 { |
1730 if (png_ptr->row_fn != NULL) | 1246 if (png_ptr->row_fn != NULL) |
1731 (*(png_ptr->row_fn))(png_ptr, row, png_ptr->row_number, | 1247 (*(png_ptr->row_fn))(png_ptr, row, png_ptr->row_number, |
1732 (int)png_ptr->pass); | 1248 (int)png_ptr->pass); |
1733 } | 1249 } |
1734 | 1250 |
| 1251 #ifdef PNG_READ_INTERLACING_SUPPORTED |
1735 void PNGAPI | 1252 void PNGAPI |
1736 png_progressive_combine_row (png_structp png_ptr, | 1253 png_progressive_combine_row(png_const_structrp png_ptr, png_bytep old_row, |
1737 png_bytep old_row, png_bytep new_row) | 1254 png_const_bytep new_row) |
1738 { | 1255 { |
1739 #ifdef PNG_USE_LOCAL_ARRAYS | |
1740 PNG_CONST int FARDATA png_pass_dsp_mask[7] = | |
1741 {0xff, 0x0f, 0xff, 0x33, 0xff, 0x55, 0xff}; | |
1742 #endif | |
1743 | |
1744 if (png_ptr == NULL) | 1256 if (png_ptr == NULL) |
1745 return; | 1257 return; |
1746 | 1258 |
1747 if (new_row != NULL) /* new_row must == png_ptr->row_buf here. */ | 1259 /* new_row is a flag here - if it is NULL then the app callback was called |
1748 png_combine_row(png_ptr, old_row, png_pass_dsp_mask[png_ptr->pass]); | 1260 * from an empty row (see the calls to png_struct::row_fn below), otherwise |
| 1261 * it must be png_ptr->row_buf+1 |
| 1262 */ |
| 1263 if (new_row != NULL) |
| 1264 png_combine_row(png_ptr, old_row, 1/*display*/); |
1749 } | 1265 } |
| 1266 #endif /* PNG_READ_INTERLACING_SUPPORTED */ |
1750 | 1267 |
1751 void PNGAPI | 1268 void PNGAPI |
1752 png_set_progressive_read_fn(png_structp png_ptr, png_voidp progressive_ptr, | 1269 png_set_progressive_read_fn(png_structrp png_ptr, png_voidp progressive_ptr, |
1753 png_progressive_info_ptr info_fn, png_progressive_row_ptr row_fn, | 1270 png_progressive_info_ptr info_fn, png_progressive_row_ptr row_fn, |
1754 png_progressive_end_ptr end_fn) | 1271 png_progressive_end_ptr end_fn) |
1755 { | 1272 { |
1756 if (png_ptr == NULL) | 1273 if (png_ptr == NULL) |
1757 return; | 1274 return; |
1758 | 1275 |
1759 png_ptr->info_fn = info_fn; | 1276 png_ptr->info_fn = info_fn; |
1760 png_ptr->row_fn = row_fn; | 1277 png_ptr->row_fn = row_fn; |
1761 png_ptr->end_fn = end_fn; | 1278 png_ptr->end_fn = end_fn; |
1762 | 1279 |
1763 png_set_read_fn(png_ptr, progressive_ptr, png_push_fill_buffer); | 1280 png_set_read_fn(png_ptr, progressive_ptr, png_push_fill_buffer); |
1764 } | 1281 } |
1765 | 1282 |
1766 png_voidp PNGAPI | 1283 png_voidp PNGAPI |
1767 png_get_progressive_ptr(png_structp png_ptr) | 1284 png_get_progressive_ptr(png_const_structrp png_ptr) |
1768 { | 1285 { |
1769 if (png_ptr == NULL) | 1286 if (png_ptr == NULL) |
1770 return (NULL); | 1287 return (NULL); |
1771 | 1288 |
1772 return png_ptr->io_ptr; | 1289 return png_ptr->io_ptr; |
1773 } | 1290 } |
1774 #endif /* PNG_PROGRESSIVE_READ_SUPPORTED */ | 1291 #endif /* PNG_PROGRESSIVE_READ_SUPPORTED */ |
OLD | NEW |