2 * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
3 * Use is subject to license terms.
5 #pragma ident "%Z%%M% %I% %E% SMI"
8 * Routines to report various classes of problems. Each report is decorated
9 * with the current context (file name and line number), if available.
11 * tcpd_warn() reports a problem and proceeds.
13 * tcpd_jump() reports a problem and jumps.
15 * Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
19 static char sccsid
[] = "@(#) diag.c 1.1 94/12/28 17:42:20";
22 /* System libraries */
33 struct tcpd_context tcpd_context
;
36 /* tcpd_diag - centralize error reporter */
38 static void tcpd_diag(severity
, tag
, format
, ap
)
46 if (tcpd_context
.file
)
47 sprintf(fmt
, "%s: %s, line %d: %s",
48 tag
, tcpd_context
.file
, tcpd_context
.line
, format
);
50 sprintf(fmt
, "%s: %s", tag
, format
);
51 vsyslog(severity
, fmt
, ap
);
54 /* tcpd_warn - report problem of some sort and proceed */
56 void VARARGS(tcpd_warn
, char *, format
)
60 VASTART(ap
, char *, format
);
61 tcpd_diag(LOG_ERR
, "warning", format
, ap
);
65 /* tcpd_jump - report serious problem and jump */
67 void VARARGS(tcpd_jump
, char *, format
)
71 VASTART(ap
, char *, format
);
72 tcpd_diag(LOG_ERR
, "error", format
, ap
);
74 longjmp(tcpd_buf
, AC_ERROR
);