16664 Update AMD microcode to 20240710
[illumos-gate.git] / usr / src / lib / libwrap / diag.c
blobd50852db8cd7bdf155a068d647c39808e0186524
1 /*
2 * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
3 * Use is subject to license terms.
4 */
6 /*
7 * Routines to report various classes of problems. Each report is decorated
8 * with the current context (file name and line number), if available.
10 * tcpd_warn() reports a problem and proceeds.
12 * tcpd_jump() reports a problem and jumps.
14 * Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
17 #ifndef lint
18 static char sccsid[] = "@(#) diag.c 1.1 94/12/28 17:42:20";
19 #endif
21 /* System libraries */
23 #include <syslog.h>
24 #include <stdio.h>
25 #include <setjmp.h>
27 /* Local stuff */
29 #include "tcpd.h"
30 #include "mystdarg.h"
32 struct tcpd_context tcpd_context;
33 jmp_buf tcpd_buf;
35 /* tcpd_diag - centralize error reporter */
37 static void tcpd_diag(severity, tag, format, ap)
38 int severity;
39 char *tag;
40 char *format;
41 va_list ap;
43 char fmt[BUFSIZ];
45 if (tcpd_context.file)
46 sprintf(fmt, "%s: %s, line %d: %s",
47 tag, tcpd_context.file, tcpd_context.line, format);
48 else
49 sprintf(fmt, "%s: %s", tag, format);
50 vsyslog(severity, fmt, ap);
53 /* tcpd_warn - report problem of some sort and proceed */
55 void VARARGS(tcpd_warn, char *, format)
57 va_list ap;
59 VASTART(ap, char *, format);
60 tcpd_diag(LOG_ERR, "warning", format, ap);
61 VAEND(ap);
64 /* tcpd_jump - report serious problem and jump */
66 void VARARGS(tcpd_jump, char *, format)
68 va_list ap;
70 VASTART(ap, char *, format);
71 tcpd_diag(LOG_ERR, "error", format, ap);
72 VAEND(ap);
73 longjmp(tcpd_buf, AC_ERROR);