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.
29 const char *log_procname;
32 log_init(int n_debug, int facility)
36 log_procinit(getprogname());
39 openlog(getprogname(), LOG_PID | LOG_NDELAY, facility);
45 log_procinit(const char *procname)
48 log_procname = procname;
64 logit(int pri, const char *fmt, ...)
74 vlog(int pri, const char *fmt, va_list ap)
77 int saved_errno = errno;
80 /* best effort in out of mem situations */
81 if (asprintf(&nfmt, "%s: %s\n", log_procname, fmt) == -1) {
82 vfprintf(stderr, fmt, ap);
83 fprintf(stderr, "\n");
85 vfprintf(stderr, nfmt, ap);
90 vsyslog(pri, fmt, ap);
96 log_warn(const char *emsg, ...)
100 int saved_errno = errno;
102 /* best effort to even work in out of memory situations */
104 logit(LOG_CRIT, "%s", strerror(saved_errno));
108 if (asprintf(&nfmt, "%s: %s", emsg,
109 strerror(saved_errno)) == -1) {
111 vlog(LOG_CRIT, emsg, ap);
112 logit(LOG_CRIT, "%s", strerror(saved_errno));
114 vlog(LOG_CRIT, nfmt, ap);
124 log_warnx(const char *emsg, ...)
129 vlog(LOG_CRIT, emsg, ap);
134 log_info(const char *emsg, ...)
139 vlog(LOG_INFO, emsg, ap);
144 log_debug(const char *emsg, ...)
150 vlog(LOG_DEBUG, emsg, ap);
156 vfatalc(int code, const char *emsg, va_list ap)
158 static char s[BUFSIZ];
162 (void)vsnprintf(s, sizeof(s), emsg, ap);
169 logit(LOG_CRIT, "%s%s%s", s, sep, strerror(code));
171 logit(LOG_CRIT, "%s", s);
175 fatal(const char *emsg, ...)
180 vfatalc(errno, emsg, ap);
186 fatalx(const char *emsg, ...)
191 vfatalc(0, emsg, ap);