xref: /freebsd/contrib/ntp/libntp/lib/isc/error.c (revision a466cc55373fc3cf86837f09da729535b57e69a1)
1*a466cc55SCy Schubert /*
2*a466cc55SCy Schubert  * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
3*a466cc55SCy Schubert  * Copyright (C) 1998-2001  Internet Software Consortium.
4*a466cc55SCy Schubert  *
5*a466cc55SCy Schubert  * Permission to use, copy, modify, and/or distribute this software for any
6*a466cc55SCy Schubert  * purpose with or without fee is hereby granted, provided that the above
7*a466cc55SCy Schubert  * copyright notice and this permission notice appear in all copies.
8*a466cc55SCy Schubert  *
9*a466cc55SCy Schubert  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10*a466cc55SCy Schubert  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11*a466cc55SCy Schubert  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12*a466cc55SCy Schubert  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13*a466cc55SCy Schubert  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14*a466cc55SCy Schubert  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15*a466cc55SCy Schubert  * PERFORMANCE OF THIS SOFTWARE.
16*a466cc55SCy Schubert  */
17*a466cc55SCy Schubert 
18*a466cc55SCy Schubert /* $Id: error.c,v 1.21 2007/06/19 23:47:17 tbox Exp $ */
19*a466cc55SCy Schubert 
20*a466cc55SCy Schubert /*! \file */
21*a466cc55SCy Schubert 
22*a466cc55SCy Schubert #include <config.h>
23*a466cc55SCy Schubert 
24*a466cc55SCy Schubert #include <stdio.h>
25*a466cc55SCy Schubert #include <stdlib.h>
26*a466cc55SCy Schubert 
27*a466cc55SCy Schubert #include <isc/error.h>
28*a466cc55SCy Schubert #include <isc/msgs.h>
29*a466cc55SCy Schubert 
30*a466cc55SCy Schubert /*% Default unexpected callback. */
31*a466cc55SCy Schubert static void
32*a466cc55SCy Schubert default_unexpected_callback(const char *, int, const char *, va_list)
33*a466cc55SCy Schubert      ISC_FORMAT_PRINTF(3, 0);
34*a466cc55SCy Schubert 
35*a466cc55SCy Schubert /*% Default fatal callback. */
36*a466cc55SCy Schubert static void
37*a466cc55SCy Schubert default_fatal_callback(const char *, int, const char *, va_list)
38*a466cc55SCy Schubert      ISC_FORMAT_PRINTF(3, 0);
39*a466cc55SCy Schubert 
40*a466cc55SCy Schubert /*% unexpected_callback */
41*a466cc55SCy Schubert static isc_errorcallback_t unexpected_callback = default_unexpected_callback;
42*a466cc55SCy Schubert static isc_errorcallback_t fatal_callback = default_fatal_callback;
43*a466cc55SCy Schubert 
44*a466cc55SCy Schubert void
isc_error_setunexpected(isc_errorcallback_t cb)45*a466cc55SCy Schubert isc_error_setunexpected(isc_errorcallback_t cb) {
46*a466cc55SCy Schubert 	if (cb == NULL)
47*a466cc55SCy Schubert 		unexpected_callback = default_unexpected_callback;
48*a466cc55SCy Schubert 	else
49*a466cc55SCy Schubert 		unexpected_callback = cb;
50*a466cc55SCy Schubert }
51*a466cc55SCy Schubert 
52*a466cc55SCy Schubert void
isc_error_setfatal(isc_errorcallback_t cb)53*a466cc55SCy Schubert isc_error_setfatal(isc_errorcallback_t cb) {
54*a466cc55SCy Schubert 	if (cb == NULL)
55*a466cc55SCy Schubert 		fatal_callback = default_fatal_callback;
56*a466cc55SCy Schubert 	else
57*a466cc55SCy Schubert 		fatal_callback = cb;
58*a466cc55SCy Schubert }
59*a466cc55SCy Schubert 
60*a466cc55SCy Schubert void
isc_error_unexpected(const char * file,int line,const char * format,...)61*a466cc55SCy Schubert isc_error_unexpected(const char *file, int line, const char *format, ...) {
62*a466cc55SCy Schubert 	va_list args;
63*a466cc55SCy Schubert 
64*a466cc55SCy Schubert 	va_start(args, format);
65*a466cc55SCy Schubert 	(unexpected_callback)(file, line, format, args);
66*a466cc55SCy Schubert 	va_end(args);
67*a466cc55SCy Schubert }
68*a466cc55SCy Schubert 
69*a466cc55SCy Schubert void
isc_error_fatal(const char * file,int line,const char * format,...)70*a466cc55SCy Schubert isc_error_fatal(const char *file, int line, const char *format, ...) {
71*a466cc55SCy Schubert 	va_list args;
72*a466cc55SCy Schubert 
73*a466cc55SCy Schubert 	va_start(args, format);
74*a466cc55SCy Schubert 	(fatal_callback)(file, line, format, args);
75*a466cc55SCy Schubert 	va_end(args);
76*a466cc55SCy Schubert 	abort();
77*a466cc55SCy Schubert }
78*a466cc55SCy Schubert 
79*a466cc55SCy Schubert void
isc_error_runtimecheck(const char * file,int line,const char * expression)80*a466cc55SCy Schubert isc_error_runtimecheck(const char *file, int line, const char *expression) {
81*a466cc55SCy Schubert 	isc_error_fatal(file, line, "RUNTIME_CHECK(%s) %s", expression,
82*a466cc55SCy Schubert 			isc_msgcat_get(isc_msgcat, ISC_MSGSET_GENERAL,
83*a466cc55SCy Schubert 				       ISC_MSG_FAILED, "failed"));
84*a466cc55SCy Schubert }
85*a466cc55SCy Schubert 
86*a466cc55SCy Schubert static void
default_unexpected_callback(const char * file,int line,const char * format,va_list args)87*a466cc55SCy Schubert default_unexpected_callback(const char *file, int line, const char *format,
88*a466cc55SCy Schubert 			    va_list args)
89*a466cc55SCy Schubert {
90*a466cc55SCy Schubert 	fprintf(stderr, "%s:%d: ", file, line);
91*a466cc55SCy Schubert 	vfprintf(stderr, format, args);
92*a466cc55SCy Schubert 	fprintf(stderr, "\n");
93*a466cc55SCy Schubert 	fflush(stderr);
94*a466cc55SCy Schubert }
95*a466cc55SCy Schubert 
96*a466cc55SCy Schubert static void
default_fatal_callback(const char * file,int line,const char * format,va_list args)97*a466cc55SCy Schubert default_fatal_callback(const char *file, int line, const char *format,
98*a466cc55SCy Schubert 		       va_list args)
99*a466cc55SCy Schubert {
100*a466cc55SCy Schubert 	fprintf(stderr, "%s:%d: %s: ", file, line,
101*a466cc55SCy Schubert 		isc_msgcat_get(isc_msgcat, ISC_MSGSET_GENERAL,
102*a466cc55SCy Schubert 			       ISC_MSG_FATALERROR, "fatal error"));
103*a466cc55SCy Schubert 	vfprintf(stderr, format, args);
104*a466cc55SCy Schubert 	fprintf(stderr, "\n");
105*a466cc55SCy Schubert 	fflush(stderr);
106*a466cc55SCy Schubert }
107