2 /* pngerror.c - stub functions for i/o and memory allocation
4 * Last changed in libpng 1.2.34 [December 18, 2008]
5 * For conditions of distribution and use, see copyright notice in png.h
6 * Copyright (c) 1998-2008 Glenn Randers-Pehrson
7 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
8 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
10 * This file provides a location for all error handling. Users who
11 * need special error handling are expected to write replacement functions
12 * and use png_set_error_fn() to use those functions. See the instructions
18 #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
20 static void /* PRIVATE */
21 png_default_error
PNGARG((png_structp png_ptr
,
22 png_const_charp error_message
));
23 #ifndef PNG_NO_WARNINGS
24 static void /* PRIVATE */
25 png_default_warning
PNGARG((png_structp png_ptr
,
26 png_const_charp warning_message
));
27 #endif /* PNG_NO_WARNINGS */
29 /* This function is called whenever there is a fatal error. This function
30 * should not be changed. If there is a need to handle errors differently,
31 * you should supply a replacement error function and use png_set_error_fn()
32 * to replace the error function at run-time.
34 #ifndef PNG_NO_ERROR_TEXT
36 png_error(png_structp png_ptr
, png_const_charp error_message
)
38 #ifdef PNG_ERROR_NUMBERS_SUPPORTED
43 (PNG_FLAG_STRIP_ERROR_NUMBERS
|PNG_FLAG_STRIP_ERROR_TEXT
))
45 if (*error_message
== '#')
47 /* Strip "#nnnn " from beginning of error message. */
49 for (offset
= 1; offset
<15; offset
++)
50 if (error_message
[offset
] == ' ')
52 if (png_ptr
->flags
&PNG_FLAG_STRIP_ERROR_TEXT
)
55 for (i
= 0; i
< offset
- 1; i
++)
56 msg
[i
] = error_message
[i
+ 1];
61 error_message
+= offset
;
65 if (png_ptr
->flags
&PNG_FLAG_STRIP_ERROR_TEXT
)
75 if (png_ptr
!= NULL
&& png_ptr
->error_fn
!= NULL
)
76 (*(png_ptr
->error_fn
))(png_ptr
, error_message
);
78 /* If the custom handler doesn't exist, or if it returns,
79 use the default handler, which will not return. */
80 png_default_error(png_ptr
, error_message
);
84 png_err(png_structp png_ptr
)
86 if (png_ptr
!= NULL
&& png_ptr
->error_fn
!= NULL
)
87 (*(png_ptr
->error_fn
))(png_ptr
, '\0');
89 /* If the custom handler doesn't exist, or if it returns,
90 use the default handler, which will not return. */
91 png_default_error(png_ptr
, '\0');
93 #endif /* PNG_NO_ERROR_TEXT */
95 #ifndef PNG_NO_WARNINGS
96 /* This function is called whenever there is a non-fatal error. This function
97 * should not be changed. If there is a need to handle warnings differently,
98 * you should supply a replacement warning function and use
99 * png_set_error_fn() to replace the warning function at run-time.
102 png_warning(png_structp png_ptr
, png_const_charp warning_message
)
107 #ifdef PNG_ERROR_NUMBERS_SUPPORTED
109 (PNG_FLAG_STRIP_ERROR_NUMBERS
|PNG_FLAG_STRIP_ERROR_TEXT
))
112 if (*warning_message
== '#')
114 for (offset
= 1; offset
< 15; offset
++)
115 if (warning_message
[offset
] == ' ')
120 if (png_ptr
!= NULL
&& png_ptr
->warning_fn
!= NULL
)
121 (*(png_ptr
->warning_fn
))(png_ptr
, warning_message
+ offset
);
123 png_default_warning(png_ptr
, warning_message
+ offset
);
125 #endif /* PNG_NO_WARNINGS */
128 /* These utilities are used internally to build an error message that relates
129 * to the current chunk. The chunk name comes from png_ptr->chunk_name,
130 * this is used to prefix the message. The message is limited in length
131 * to 63 bytes, the name characters are output as hex digits wrapped in []
132 * if the character is invalid.
134 #define isnonalpha(c) ((c) < 65 || (c) > 122 || ((c) > 90 && (c) < 97))
135 static PNG_CONST
char png_digit
[16] = {
136 '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
137 'A', 'B', 'C', 'D', 'E', 'F'
140 #define PNG_MAX_ERROR_TEXT 64
142 #if !defined(PNG_NO_WARNINGS) || !defined(PNG_NO_ERROR_TEXT)
143 static void /* PRIVATE */
144 png_format_buffer(png_structp png_ptr
, png_charp buffer
, png_const_charp
147 int iout
= 0, iin
= 0;
151 int c
= png_ptr
->chunk_name
[iin
++];
154 buffer
[iout
++] = '[';
155 buffer
[iout
++] = png_digit
[(c
& 0xf0) >> 4];
156 buffer
[iout
++] = png_digit
[c
& 0x0f];
157 buffer
[iout
++] = ']';
161 buffer
[iout
++] = (png_byte
)c
;
165 if (error_message
== NULL
)
169 buffer
[iout
++] = ':';
170 buffer
[iout
++] = ' ';
171 png_memcpy(buffer
+ iout
, error_message
, PNG_MAX_ERROR_TEXT
);
172 buffer
[iout
+ PNG_MAX_ERROR_TEXT
- 1] = '\0';
176 #ifdef PNG_READ_SUPPORTED
178 png_chunk_error(png_structp png_ptr
, png_const_charp error_message
)
180 char msg
[18+PNG_MAX_ERROR_TEXT
];
182 png_error(png_ptr
, error_message
);
185 png_format_buffer(png_ptr
, msg
, error_message
);
186 png_error(png_ptr
, msg
);
189 #endif /* PNG_READ_SUPPORTED */
190 #endif /* !defined(PNG_NO_WARNINGS) || !defined(PNG_NO_ERROR_TEXT) */
192 #ifndef PNG_NO_WARNINGS
194 png_chunk_warning(png_structp png_ptr
, png_const_charp warning_message
)
196 char msg
[18+PNG_MAX_ERROR_TEXT
];
198 png_warning(png_ptr
, warning_message
);
201 png_format_buffer(png_ptr
, msg
, warning_message
);
202 png_warning(png_ptr
, msg
);
205 #endif /* PNG_NO_WARNINGS */
208 /* This is the default error handling function. Note that replacements for
209 * this function MUST NOT RETURN, or the program will likely crash. This
210 * function is used by default, or if the program supplies NULL for the
211 * error function pointer in png_set_error_fn().
213 static void /* PRIVATE */
214 png_default_error(png_structp png_ptr
, png_const_charp error_message
)
216 #ifndef PNG_NO_CONSOLE_IO
217 #ifdef PNG_ERROR_NUMBERS_SUPPORTED
218 if (*error_message
== '#')
220 /* Strip "#nnnn " from beginning of warning message. */
222 char error_number
[16];
223 for (offset
= 0; offset
<15; offset
++)
225 error_number
[offset
] = error_message
[offset
+ 1];
226 if (error_message
[offset
] == ' ')
229 if ((offset
> 1) && (offset
< 15))
231 error_number
[offset
- 1] = '\0';
232 fprintf(stderr
, "libpng error no. %s: %s\n", error_number
,
233 error_message
+ offset
+ 1);
236 fprintf(stderr
, "libpng error: %s, offset=%d\n", error_message
, offset
);
240 fprintf(stderr
, "libpng error: %s\n", error_message
);
243 #ifdef PNG_SETJMP_SUPPORTED
246 # ifdef USE_FAR_KEYWORD
249 png_memcpy(jmpbuf
, png_ptr
->jmpbuf
, png_sizeof(jmp_buf));
253 longjmp(png_ptr
->jmpbuf
, 1);
259 #ifdef PNG_NO_CONSOLE_IO
260 error_message
= error_message
; /* make compiler happy */
264 #ifndef PNG_NO_WARNINGS
265 /* This function is called when there is a warning, but the library thinks
266 * it can continue anyway. Replacement functions don't have to do anything
267 * here if you don't want them to. In the default configuration, png_ptr is
268 * not used, but it is passed in case it may be useful.
270 static void /* PRIVATE */
271 png_default_warning(png_structp png_ptr
, png_const_charp warning_message
)
273 #ifndef PNG_NO_CONSOLE_IO
274 # ifdef PNG_ERROR_NUMBERS_SUPPORTED
275 if (*warning_message
== '#')
278 char warning_number
[16];
279 for (offset
= 0; offset
< 15; offset
++)
281 warning_number
[offset
] = warning_message
[offset
+ 1];
282 if (warning_message
[offset
] == ' ')
285 if ((offset
> 1) && (offset
< 15))
287 warning_number
[offset
+ 1] = '\0';
288 fprintf(stderr
, "libpng warning no. %s: %s\n", warning_number
,
289 warning_message
+ offset
);
292 fprintf(stderr
, "libpng warning: %s\n", warning_message
);
296 fprintf(stderr
, "libpng warning: %s\n", warning_message
);
298 warning_message
= warning_message
; /* make compiler happy */
300 png_ptr
= png_ptr
; /* make compiler happy */
302 #endif /* PNG_NO_WARNINGS */
304 /* This function is called when the application wants to use another method
305 * of handling errors and warnings. Note that the error function MUST NOT
306 * return to the calling routine or serious problems will occur. The return
307 * method used in the default routine calls longjmp(png_ptr->jmpbuf, 1)
310 png_set_error_fn(png_structp png_ptr
, png_voidp error_ptr
,
311 png_error_ptr error_fn
, png_error_ptr warning_fn
)
315 png_ptr
->error_ptr
= error_ptr
;
316 png_ptr
->error_fn
= error_fn
;
317 png_ptr
->warning_fn
= warning_fn
;
321 /* This function returns a pointer to the error_ptr associated with the user
322 * functions. The application should free any memory associated with this
323 * pointer before png_write_destroy and png_read_destroy are called.
326 png_get_error_ptr(png_structp png_ptr
)
330 return ((png_voidp
)png_ptr
->error_ptr
);
334 #ifdef PNG_ERROR_NUMBERS_SUPPORTED
336 png_set_strip_error_numbers(png_structp png_ptr
, png_uint_32 strip_mode
)
341 ((~(PNG_FLAG_STRIP_ERROR_NUMBERS
|PNG_FLAG_STRIP_ERROR_TEXT
))&strip_mode
);
345 #endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */