blob: 025d52e775ae39e1b9a98916bd4b527ab7b50227 [file] [log] [blame]
The Android Open Source Project893912b2009-03-03 19:30:05 -08001
2/* pngerror.c - stub functions for i/o and memory allocation
3 *
Eric Vannier66dce0d2011-07-20 17:03:29 -07004 * Last changed in libpng 1.2.45 [July 7, 2011]
5 * Copyright (c) 1998-2011 Glenn Randers-Pehrson
The Android Open Source Project893912b2009-03-03 19:30:05 -08006 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
8 *
Patrick Scotta0bb96c2009-07-22 11:50:02 -04009 * This code is released under the libpng license.
10 * For conditions of distribution and use, see the disclaimer
11 * and license in png.h
12 *
The Android Open Source Project893912b2009-03-03 19:30:05 -080013 * This file provides a location for all error handling. Users who
14 * need special error handling are expected to write replacement functions
15 * and use png_set_error_fn() to use those functions. See the instructions
16 * at each function.
17 */
18
19#define PNG_INTERNAL
Patrick Scott5f6bd842010-06-28 16:55:16 -040020#define PNG_NO_PEDANTIC_WARNINGS
The Android Open Source Project893912b2009-03-03 19:30:05 -080021#include "png.h"
The Android Open Source Project893912b2009-03-03 19:30:05 -080022#if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
The Android Open Source Project4215dd12009-03-09 11:52:12 -070023
The Android Open Source Project893912b2009-03-03 19:30:05 -080024static void /* PRIVATE */
25png_default_error PNGARG((png_structp png_ptr,
Patrick Scott5f6bd842010-06-28 16:55:16 -040026 png_const_charp error_message)) PNG_NORETURN;
27#ifdef PNG_WARNINGS_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -080028static void /* PRIVATE */
29png_default_warning PNGARG((png_structp png_ptr,
30 png_const_charp warning_message));
Patrick Scott5f6bd842010-06-28 16:55:16 -040031#endif /* PNG_WARNINGS_SUPPORTED */
The Android Open Source Project893912b2009-03-03 19:30:05 -080032
33/* This function is called whenever there is a fatal error. This function
34 * should not be changed. If there is a need to handle errors differently,
35 * you should supply a replacement error function and use png_set_error_fn()
36 * to replace the error function at run-time.
37 */
Patrick Scott5f6bd842010-06-28 16:55:16 -040038#ifdef PNG_ERROR_TEXT_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -080039void PNGAPI
40png_error(png_structp png_ptr, png_const_charp error_message)
41{
42#ifdef PNG_ERROR_NUMBERS_SUPPORTED
43 char msg[16];
44 if (png_ptr != NULL)
45 {
46 if (png_ptr->flags&
47 (PNG_FLAG_STRIP_ERROR_NUMBERS|PNG_FLAG_STRIP_ERROR_TEXT))
48 {
Patrick Scott5f6bd842010-06-28 16:55:16 -040049 if (*error_message == PNG_LITERAL_SHARP)
The Android Open Source Project893912b2009-03-03 19:30:05 -080050 {
Patrick Scotta0bb96c2009-07-22 11:50:02 -040051 /* Strip "#nnnn " from beginning of error message. */
The Android Open Source Project893912b2009-03-03 19:30:05 -080052 int offset;
The Android Open Source Project4215dd12009-03-09 11:52:12 -070053 for (offset = 1; offset<15; offset++)
54 if (error_message[offset] == ' ')
The Android Open Source Project893912b2009-03-03 19:30:05 -080055 break;
56 if (png_ptr->flags&PNG_FLAG_STRIP_ERROR_TEXT)
57 {
58 int i;
The Android Open Source Project4215dd12009-03-09 11:52:12 -070059 for (i = 0; i < offset - 1; i++)
60 msg[i] = error_message[i + 1];
61 msg[i - 1] = '\0';
62 error_message = msg;
The Android Open Source Project893912b2009-03-03 19:30:05 -080063 }
64 else
The Android Open Source Project4215dd12009-03-09 11:52:12 -070065 error_message += offset;
The Android Open Source Project893912b2009-03-03 19:30:05 -080066 }
67 else
68 {
69 if (png_ptr->flags&PNG_FLAG_STRIP_ERROR_TEXT)
70 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -070071 msg[0] = '0';
72 msg[1] = '\0';
73 error_message = msg;
The Android Open Source Project893912b2009-03-03 19:30:05 -080074 }
75 }
76 }
77 }
78#endif
79 if (png_ptr != NULL && png_ptr->error_fn != NULL)
80 (*(png_ptr->error_fn))(png_ptr, error_message);
81
82 /* If the custom handler doesn't exist, or if it returns,
83 use the default handler, which will not return. */
84 png_default_error(png_ptr, error_message);
85}
86#else
87void PNGAPI
88png_err(png_structp png_ptr)
89{
Eric Vannier66dce0d2011-07-20 17:03:29 -070090 /* Prior to 1.2.45 the error_fn received a NULL pointer, expressed
91 * erroneously as '\0', instead of the empty string "". This was
92 * apparently an error, introduced in libpng-1.2.20, and png_default_error
93 * will crash in this case.
94 */
The Android Open Source Project893912b2009-03-03 19:30:05 -080095 if (png_ptr != NULL && png_ptr->error_fn != NULL)
Eric Vannier66dce0d2011-07-20 17:03:29 -070096 (*(png_ptr->error_fn))(png_ptr, "");
The Android Open Source Project893912b2009-03-03 19:30:05 -080097
98 /* If the custom handler doesn't exist, or if it returns,
99 use the default handler, which will not return. */
Eric Vannier66dce0d2011-07-20 17:03:29 -0700100 png_default_error(png_ptr, "");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800101}
Patrick Scott5f6bd842010-06-28 16:55:16 -0400102#endif /* PNG_ERROR_TEXT_SUPPORTED */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800103
Patrick Scott5f6bd842010-06-28 16:55:16 -0400104#ifdef PNG_WARNINGS_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800105/* This function is called whenever there is a non-fatal error. This function
106 * should not be changed. If there is a need to handle warnings differently,
107 * you should supply a replacement warning function and use
108 * png_set_error_fn() to replace the warning function at run-time.
109 */
110void PNGAPI
111png_warning(png_structp png_ptr, png_const_charp warning_message)
112{
113 int offset = 0;
114 if (png_ptr != NULL)
115 {
116#ifdef PNG_ERROR_NUMBERS_SUPPORTED
117 if (png_ptr->flags&
118 (PNG_FLAG_STRIP_ERROR_NUMBERS|PNG_FLAG_STRIP_ERROR_TEXT))
119#endif
120 {
Patrick Scott5f6bd842010-06-28 16:55:16 -0400121 if (*warning_message == PNG_LITERAL_SHARP)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800122 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700123 for (offset = 1; offset < 15; offset++)
124 if (warning_message[offset] == ' ')
The Android Open Source Project893912b2009-03-03 19:30:05 -0800125 break;
126 }
127 }
The Android Open Source Project893912b2009-03-03 19:30:05 -0800128 }
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700129 if (png_ptr != NULL && png_ptr->warning_fn != NULL)
130 (*(png_ptr->warning_fn))(png_ptr, warning_message + offset);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800131 else
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700132 png_default_warning(png_ptr, warning_message + offset);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800133}
Patrick Scott5f6bd842010-06-28 16:55:16 -0400134#endif /* PNG_WARNINGS_SUPPORTED */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800135
Patrick Scott5f6bd842010-06-28 16:55:16 -0400136#ifdef PNG_BENIGN_ERRORS_SUPPORTED
137void PNGAPI
138png_benign_error(png_structp png_ptr, png_const_charp error_message)
139{
140 if (png_ptr->flags & PNG_FLAG_BENIGN_ERRORS_WARN)
141 png_warning(png_ptr, error_message);
142 else
143 png_error(png_ptr, error_message);
144}
145#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -0800146
147/* These utilities are used internally to build an error message that relates
148 * to the current chunk. The chunk name comes from png_ptr->chunk_name,
149 * this is used to prefix the message. The message is limited in length
150 * to 63 bytes, the name characters are output as hex digits wrapped in []
151 * if the character is invalid.
152 */
153#define isnonalpha(c) ((c) < 65 || (c) > 122 || ((c) > 90 && (c) < 97))
154static PNG_CONST char png_digit[16] = {
155 '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
156 'A', 'B', 'C', 'D', 'E', 'F'
157};
158
159#define PNG_MAX_ERROR_TEXT 64
Patrick Scott5f6bd842010-06-28 16:55:16 -0400160#if defined(PNG_WARNINGS_SUPPORTED) || defined(PNG_ERROR_TEXT_SUPPORTED)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800161static void /* PRIVATE */
162png_format_buffer(png_structp png_ptr, png_charp buffer, png_const_charp
163 error_message)
164{
165 int iout = 0, iin = 0;
166
167 while (iin < 4)
168 {
169 int c = png_ptr->chunk_name[iin++];
170 if (isnonalpha(c))
171 {
Patrick Scott5f6bd842010-06-28 16:55:16 -0400172 buffer[iout++] = PNG_LITERAL_LEFT_SQUARE_BRACKET;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800173 buffer[iout++] = png_digit[(c & 0xf0) >> 4];
174 buffer[iout++] = png_digit[c & 0x0f];
Patrick Scott5f6bd842010-06-28 16:55:16 -0400175 buffer[iout++] = PNG_LITERAL_RIGHT_SQUARE_BRACKET;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800176 }
177 else
178 {
179 buffer[iout++] = (png_byte)c;
180 }
181 }
182
183 if (error_message == NULL)
184 buffer[iout] = '\0';
185 else
186 {
187 buffer[iout++] = ':';
188 buffer[iout++] = ' ';
Eric Vannier66dce0d2011-07-20 17:03:29 -0700189
190 iin = 0;
191 while (iin < PNG_MAX_ERROR_TEXT-1 && error_message[iin] != '\0')
192 buffer[iout++] = error_message[iin++];
193
194 /* iin < PNG_MAX_ERROR_TEXT, so the following is safe: */
195 buffer[iout] = '\0';
The Android Open Source Project893912b2009-03-03 19:30:05 -0800196 }
197}
198
199#ifdef PNG_READ_SUPPORTED
200void PNGAPI
201png_chunk_error(png_structp png_ptr, png_const_charp error_message)
202{
203 char msg[18+PNG_MAX_ERROR_TEXT];
204 if (png_ptr == NULL)
205 png_error(png_ptr, error_message);
206 else
207 {
208 png_format_buffer(png_ptr, msg, error_message);
209 png_error(png_ptr, msg);
210 }
211}
212#endif /* PNG_READ_SUPPORTED */
Patrick Scott5f6bd842010-06-28 16:55:16 -0400213#endif /* PNG_WARNINGS_SUPPORTED || PNG_ERROR_TEXT_SUPPORTED */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800214
Patrick Scott5f6bd842010-06-28 16:55:16 -0400215#ifdef PNG_WARNINGS_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800216void PNGAPI
217png_chunk_warning(png_structp png_ptr, png_const_charp warning_message)
218{
219 char msg[18+PNG_MAX_ERROR_TEXT];
220 if (png_ptr == NULL)
221 png_warning(png_ptr, warning_message);
222 else
223 {
224 png_format_buffer(png_ptr, msg, warning_message);
225 png_warning(png_ptr, msg);
226 }
227}
Patrick Scott5f6bd842010-06-28 16:55:16 -0400228#endif /* PNG_WARNINGS_SUPPORTED */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800229
Patrick Scott5f6bd842010-06-28 16:55:16 -0400230#ifdef PNG_READ_SUPPORTED
231#ifdef PNG_BENIGN_ERRORS_SUPPORTED
232void PNGAPI
233png_chunk_benign_error(png_structp png_ptr, png_const_charp error_message)
234{
235 if (png_ptr->flags & PNG_FLAG_BENIGN_ERRORS_WARN)
236 png_chunk_warning(png_ptr, error_message);
237 else
238 png_chunk_error(png_ptr, error_message);
239}
240#endif
241#endif /* PNG_READ_SUPPORTED */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800242
243/* This is the default error handling function. Note that replacements for
244 * this function MUST NOT RETURN, or the program will likely crash. This
245 * function is used by default, or if the program supplies NULL for the
246 * error function pointer in png_set_error_fn().
247 */
248static void /* PRIVATE */
249png_default_error(png_structp png_ptr, png_const_charp error_message)
250{
Patrick Scott5f6bd842010-06-28 16:55:16 -0400251#ifdef PNG_CONSOLE_IO_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800252#ifdef PNG_ERROR_NUMBERS_SUPPORTED
Patrick Scott5f6bd842010-06-28 16:55:16 -0400253 if (*error_message == PNG_LITERAL_SHARP)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800254 {
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400255 /* Strip "#nnnn " from beginning of error message. */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800256 int offset;
257 char error_number[16];
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700258 for (offset = 0; offset<15; offset++)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800259 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700260 error_number[offset] = error_message[offset + 1];
261 if (error_message[offset] == ' ')
The Android Open Source Project893912b2009-03-03 19:30:05 -0800262 break;
263 }
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700264 if ((offset > 1) && (offset < 15))
The Android Open Source Project893912b2009-03-03 19:30:05 -0800265 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700266 error_number[offset - 1] = '\0';
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400267 fprintf(stderr, "libpng error no. %s: %s",
268 error_number, error_message + offset + 1);
269 fprintf(stderr, PNG_STRING_NEWLINE);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800270 }
271 else
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400272 {
273 fprintf(stderr, "libpng error: %s, offset=%d",
274 error_message, offset);
275 fprintf(stderr, PNG_STRING_NEWLINE);
276 }
The Android Open Source Project893912b2009-03-03 19:30:05 -0800277 }
278 else
279#endif
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400280 {
281 fprintf(stderr, "libpng error: %s", error_message);
282 fprintf(stderr, PNG_STRING_NEWLINE);
283 }
The Android Open Source Project893912b2009-03-03 19:30:05 -0800284#endif
285
286#ifdef PNG_SETJMP_SUPPORTED
287 if (png_ptr)
288 {
289# ifdef USE_FAR_KEYWORD
290 {
291 jmp_buf jmpbuf;
292 png_memcpy(jmpbuf, png_ptr->jmpbuf, png_sizeof(jmp_buf));
Patrick Scott5f6bd842010-06-28 16:55:16 -0400293 longjmp(jmpbuf,1);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800294 }
295# else
296 longjmp(png_ptr->jmpbuf, 1);
297# endif
298 }
The Android Open Source Project893912b2009-03-03 19:30:05 -0800299#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -0400300 /* Here if not setjmp support or if png_ptr is null. */
301 PNG_ABORT();
302#ifndef PNG_CONSOLE_IO_SUPPORTED
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400303 error_message = error_message; /* Make compiler happy */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800304#endif
305}
306
Patrick Scott5f6bd842010-06-28 16:55:16 -0400307#ifdef PNG_WARNINGS_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800308/* This function is called when there is a warning, but the library thinks
309 * it can continue anyway. Replacement functions don't have to do anything
310 * here if you don't want them to. In the default configuration, png_ptr is
311 * not used, but it is passed in case it may be useful.
312 */
313static void /* PRIVATE */
314png_default_warning(png_structp png_ptr, png_const_charp warning_message)
315{
Patrick Scott5f6bd842010-06-28 16:55:16 -0400316#ifdef PNG_CONSOLE_IO_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800317# ifdef PNG_ERROR_NUMBERS_SUPPORTED
Patrick Scott5f6bd842010-06-28 16:55:16 -0400318 if (*warning_message == PNG_LITERAL_SHARP)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800319 {
320 int offset;
321 char warning_number[16];
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700322 for (offset = 0; offset < 15; offset++)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800323 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700324 warning_number[offset] = warning_message[offset + 1];
325 if (warning_message[offset] == ' ')
The Android Open Source Project893912b2009-03-03 19:30:05 -0800326 break;
327 }
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700328 if ((offset > 1) && (offset < 15))
The Android Open Source Project893912b2009-03-03 19:30:05 -0800329 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700330 warning_number[offset + 1] = '\0';
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400331 fprintf(stderr, "libpng warning no. %s: %s",
332 warning_number, warning_message + offset);
333 fprintf(stderr, PNG_STRING_NEWLINE);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800334 }
335 else
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400336 {
337 fprintf(stderr, "libpng warning: %s",
338 warning_message);
339 fprintf(stderr, PNG_STRING_NEWLINE);
340 }
The Android Open Source Project893912b2009-03-03 19:30:05 -0800341 }
342 else
343# endif
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400344 {
345 fprintf(stderr, "libpng warning: %s", warning_message);
346 fprintf(stderr, PNG_STRING_NEWLINE);
347 }
The Android Open Source Project893912b2009-03-03 19:30:05 -0800348#else
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400349 warning_message = warning_message; /* Make compiler happy */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800350#endif
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400351 png_ptr = png_ptr; /* Make compiler happy */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800352}
Patrick Scott5f6bd842010-06-28 16:55:16 -0400353#endif /* PNG_WARNINGS_SUPPORTED */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800354
355/* This function is called when the application wants to use another method
356 * of handling errors and warnings. Note that the error function MUST NOT
357 * return to the calling routine or serious problems will occur. The return
358 * method used in the default routine calls longjmp(png_ptr->jmpbuf, 1)
359 */
360void PNGAPI
361png_set_error_fn(png_structp png_ptr, png_voidp error_ptr,
362 png_error_ptr error_fn, png_error_ptr warning_fn)
363{
364 if (png_ptr == NULL)
365 return;
366 png_ptr->error_ptr = error_ptr;
367 png_ptr->error_fn = error_fn;
368 png_ptr->warning_fn = warning_fn;
369}
370
371
372/* This function returns a pointer to the error_ptr associated with the user
373 * functions. The application should free any memory associated with this
374 * pointer before png_write_destroy and png_read_destroy are called.
375 */
376png_voidp PNGAPI
377png_get_error_ptr(png_structp png_ptr)
378{
379 if (png_ptr == NULL)
380 return NULL;
381 return ((png_voidp)png_ptr->error_ptr);
382}
383
384
385#ifdef PNG_ERROR_NUMBERS_SUPPORTED
386void PNGAPI
387png_set_strip_error_numbers(png_structp png_ptr, png_uint_32 strip_mode)
388{
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700389 if (png_ptr != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800390 {
391 png_ptr->flags &=
392 ((~(PNG_FLAG_STRIP_ERROR_NUMBERS|PNG_FLAG_STRIP_ERROR_TEXT))&strip_mode);
393 }
394}
395#endif
396#endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */