2 * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 #include "got_compat.h"
29 const char *log_procname
;
31 void log_init(int, int);
32 void log_procinit(const char *);
33 void log_setverbose(int);
34 int log_getverbose(void);
35 void log_warn(const char *, ...)
36 __attribute__((__format__ (printf
, 1, 2)));
37 void log_warnx(const char *, ...)
38 __attribute__((__format__ (printf
, 1, 2)));
39 void log_info(const char *, ...)
40 __attribute__((__format__ (printf
, 1, 2)));
41 void log_debug(const char *, ...)
42 __attribute__((__format__ (printf
, 1, 2)));
43 void logit(int, const char *, ...)
44 __attribute__((__format__ (printf
, 2, 3)));
45 void vlog(int, const char *, va_list)
46 __attribute__((__format__ (printf
, 2, 0)));
47 __dead
void fatal(const char *, ...)
48 __attribute__((__format__ (printf
, 1, 2)));
49 __dead
void fatalx(const char *, ...)
50 __attribute__((__format__ (printf
, 1, 2)));
53 log_init(int n_debug
, int facility
)
57 log_procinit(getprogname());
60 openlog(getprogname(), LOG_PID
| LOG_NDELAY
, facility
);
66 log_procinit(const char *procname
)
69 log_procname
= procname
;
85 logit(int pri
, const char *fmt
, ...)
95 vlog(int pri
, const char *fmt
, va_list ap
)
98 int saved_errno
= errno
;
101 /* best effort in out of mem situations */
102 if (asprintf(&nfmt
, "%s\n", fmt
) == -1) {
103 vfprintf(stderr
, fmt
, ap
);
104 fprintf(stderr
, "\n");
106 vfprintf(stderr
, nfmt
, ap
);
111 vsyslog(pri
, fmt
, ap
);
117 log_warn(const char *emsg
, ...)
121 int saved_errno
= errno
;
123 /* best effort to even work in out of memory situations */
125 logit(LOG_CRIT
, "%s", strerror(saved_errno
));
129 if (asprintf(&nfmt
, "%s: %s", emsg
,
130 strerror(saved_errno
)) == -1) {
132 vlog(LOG_CRIT
, emsg
, ap
);
133 logit(LOG_CRIT
, "%s", strerror(saved_errno
));
135 vlog(LOG_CRIT
, nfmt
, ap
);
145 log_warnx(const char *emsg
, ...)
150 vlog(LOG_CRIT
, emsg
, ap
);
155 log_info(const char *emsg
, ...)
160 vlog(LOG_INFO
, emsg
, ap
);
165 log_debug(const char *emsg
, ...)
171 vlog(LOG_DEBUG
, emsg
, ap
);
177 vfatalc(int code
, const char *emsg
, va_list ap
)
179 static char s
[BUFSIZ
];
183 (void)vsnprintf(s
, sizeof(s
), emsg
, ap
);
190 logit(LOG_CRIT
, "%s: %s%s%s",
191 log_procname
, s
, sep
, strerror(code
));
193 logit(LOG_CRIT
, "%s%s%s", log_procname
, sep
, s
);
197 fatal(const char *emsg
, ...)
202 vfatalc(errno
, emsg
, ap
);
208 fatalx(const char *emsg
, ...)
213 vfatalc(0, emsg
, ap
);