]> git.wh0rd.org - dump.git/blame - compat/lib/compaterr.c
Version 0.4b7.
[dump.git] / compat / lib / compaterr.c
CommitLineData
1227625a
SP
1/*
2 * Ported to Linux's Second Extended File System as part of the
3 * dump and restore backup suit
b45f51d6
SP
4 * Remy Card <card@Linux.EU.Org>, 1994-1997
5 * Stelian Pop <pop@cybercable.fr>, 1999
1227625a
SP
6 *
7 */
8
9/*-
10 * Copyright (c) 1993
11 * The Regents of the University of California. All rights reserved.
12 *
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
15 * are met:
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. All advertising materials mentioning features or use of this software
22 * must display the following acknowledgement:
23 * This product includes software developed by the University of
24 * California, Berkeley and its contributors.
25 * 4. Neither the name of the University nor the names of its contributors
26 * may be used to endorse or promote products derived from this software
27 * without specific prior written permission.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
30 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
33 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 * SUCH DAMAGE.
b45f51d6 40 * From: @(#)err.c 8.1 (Berkeley) 6/4/93
1227625a
SP
41 */
42
b45f51d6
SP
43#if defined(LIBC_RCS) && !defined(lint)
44static const char rcsid[] =
8d4197bb 45 "$Id: compaterr.c,v 1.2 1999/10/11 13:08:07 stelian Exp $";
b45f51d6 46#endif /* LIBC_RCS and not lint */
1227625a 47
ddd2ef55 48#include <compaterr.h>
1227625a
SP
49#include <errno.h>
50#include <stdio.h>
51#include <stdlib.h>
52#include <string.h>
53
1227625a 54#include <stdarg.h>
1227625a
SP
55
56#include <config.h>
57
58extern char *__progname; /* Program name, from crt0. */
59
ddd2ef55
SP
60#if !defined(HAVE_ERR) || !defined(HAVE_ERRX) || !defined(HAVE_VERR) || !defined(HAVE_VERRX) || !defined(HAVE_VWARN) || !defined(HAVE_VWARNX) || !defined(HAVE_WARN) || !defined(HAVE_WARNX)
61
62__BEGIN_DECLS
63__dead void errc __P((int, int, const char *, ...));
64__dead void verrc __P((int, int, const char *, _BSD_VA_LIST_));
65void warnc __P((int, const char *, ...));
66void vwarnc __P((int, const char *, _BSD_VA_LIST_));
67void err_set_file __P((void *));
68void err_set_exit __P((void (*)(int)));
69__END_DECLS
70
b45f51d6
SP
71static void (*err_exit)(int);
72
ddd2ef55 73static FILE *err_file; /* file to use for error output */
b45f51d6
SP
74/*
75 * This is declared to take a `void *' so that the caller is not required
76 * to include <stdio.h> first. However, it is really a `FILE *', and the
77 * manual page documents it as such.
78 */
79void
80err_set_file(void *fp)
81{
82 if (fp)
83 err_file = fp;
84 else
85 err_file = stderr;
86}
87
88void
89err_set_exit(void (*ef)(int))
90{
91 err_exit = ef;
92}
93
1227625a 94__dead void
ddd2ef55 95errc(int eval, int code, const char *fmt, ...)
1227625a
SP
96{
97 va_list ap;
1227625a 98 va_start(ap, fmt);
ddd2ef55 99 verrc(eval, code, fmt, ap);
1227625a
SP
100 va_end(ap);
101}
1227625a 102
1227625a 103__dead void
ddd2ef55 104verrc(int eval, int code, const char *fmt, va_list ap)
1227625a 105{
ddd2ef55
SP
106 if (err_file == 0)
107 err_set_file((FILE *)0);
108 fprintf(err_file, "%s: ", __progname);
109 if (fmt != NULL) {
110 vfprintf(err_file, fmt, ap);
111 fprintf(err_file, ": ");
112 }
113 fprintf(err_file, "%s\n", strerror(code));
114 if (err_exit)
115 err_exit(eval);
116 exit(eval);
b45f51d6 117}
b45f51d6 118
ddd2ef55
SP
119void
120warnc(int code, const char *fmt, ...)
b45f51d6
SP
121{
122 va_list ap;
123 va_start(ap, fmt);
ddd2ef55 124 vwarnc(code, fmt, ap);
b45f51d6
SP
125 va_end(ap);
126}
1227625a 127
ddd2ef55
SP
128void
129vwarnc(int code, const char *fmt, va_list ap)
b45f51d6
SP
130{
131 if (err_file == 0)
132 err_set_file((FILE *)0);
133 fprintf(err_file, "%s: ", __progname);
1227625a 134 if (fmt != NULL) {
b45f51d6
SP
135 vfprintf(err_file, fmt, ap);
136 fprintf(err_file, ": ");
1227625a 137 }
b45f51d6 138 fprintf(err_file, "%s\n", strerror(code));
ddd2ef55
SP
139}
140#endif
141
142#ifndef HAVE_ERR
143__dead void
144err(int eval, const char *fmt, ...)
145{
146 va_list ap;
147 va_start(ap, fmt);
148 verrc(eval, errno, fmt, ap);
149 va_end(ap);
150}
151#endif
152
153#ifndef HAVE_VERR
154__dead void
155verr(int eval, const char *fmt, va_list ap)
156{
157 verrc(eval, errno, fmt, ap);
1227625a
SP
158}
159#endif
160
161#ifndef HAVE_ERRX
162__dead void
1227625a 163errx(int eval, const char *fmt, ...)
1227625a
SP
164{
165 va_list ap;
1227625a 166 va_start(ap, fmt);
1227625a
SP
167 verrx(eval, fmt, ap);
168 va_end(ap);
169}
170#endif
171
172#ifndef HAVE_VERRX
173__dead void
ddd2ef55 174verrx(int eval, const char *fmt, va_list ap)
1227625a 175{
b45f51d6
SP
176 if (err_file == 0)
177 err_set_file((FILE *)0);
178 fprintf(err_file, "%s: ", __progname);
1227625a 179 if (fmt != NULL)
b45f51d6
SP
180 vfprintf(err_file, fmt, ap);
181 fprintf(err_file, "\n");
182 if (err_exit)
183 err_exit(eval);
1227625a
SP
184 exit(eval);
185}
186#endif
187
188#ifndef HAVE_WARN
189void
1227625a 190warn(const char *fmt, ...)
1227625a
SP
191{
192 va_list ap;
1227625a 193 va_start(ap, fmt);
b45f51d6 194 vwarnc(errno, fmt, ap);
1227625a
SP
195 va_end(ap);
196}
197#endif
198
199#ifndef HAVE_VWARN
200void
ddd2ef55 201vwarn(const char *fmt, va_list ap)
1227625a 202{
b45f51d6
SP
203 vwarnc(errno, fmt, ap);
204}
205#endif
206
1227625a
SP
207#ifndef HAVE_WARNX
208void
1227625a 209warnx(const char *fmt, ...)
1227625a
SP
210{
211 va_list ap;
1227625a 212 va_start(ap, fmt);
1227625a
SP
213 vwarnx(fmt, ap);
214 va_end(ap);
215}
216#endif
217
218#ifndef HAVE_VWARNX
219void
ddd2ef55 220vwarnx(const char *fmt, va_list ap)
1227625a 221{
b45f51d6
SP
222 if (err_file == 0)
223 err_set_file((FILE *)0);
224 fprintf(err_file, "%s: ", __progname);
1227625a 225 if (fmt != NULL)
b45f51d6
SP
226 vfprintf(err_file, fmt, ap);
227 fprintf(err_file, "\n");
1227625a
SP
228}
229#endif