]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - lib/libc/gen/err.c
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / lib / libc / gen / err.c
1 /*-
2  * Copyright (c) 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 4. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29
30 #if defined(LIBC_SCCS) && !defined(lint)
31 static char sccsid[] = "@(#)err.c       8.1 (Berkeley) 6/4/93";
32 #endif /* LIBC_SCCS and not lint */
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD$");
35
36 #include "namespace.h"
37 #include <err.h>
38 #include <errno.h>
39 #include <stdarg.h>
40 #include <stdio.h>
41 #include <stdlib.h>
42 #include <string.h>
43 #include "un-namespace.h"
44
45 #include "libc_private.h"
46
47 static FILE *err_file; /* file to use for error output */
48 static void (*err_exit)(int);
49
50 /*
51  * This is declared to take a `void *' so that the caller is not required
52  * to include <stdio.h> first.  However, it is really a `FILE *', and the
53  * manual page documents it as such.
54  */
55 void
56 err_set_file(void *fp)
57 {
58         if (fp)
59                 err_file = fp;
60         else
61                 err_file = stderr;
62 }
63
64 void
65 err_set_exit(void (*ef)(int))
66 {
67         err_exit = ef;
68 }
69
70 __weak_reference(_err, err);
71
72 void
73 _err(int eval, const char *fmt, ...)
74 {
75         va_list ap;
76         va_start(ap, fmt);
77         verrc(eval, errno, fmt, ap);
78         va_end(ap);
79 }
80
81 void
82 verr(eval, fmt, ap)
83         int eval;
84         const char *fmt;
85         va_list ap;
86 {
87         verrc(eval, errno, fmt, ap);
88 }
89
90 void
91 errc(int eval, int code, const char *fmt, ...)
92 {
93         va_list ap;
94         va_start(ap, fmt);
95         verrc(eval, code, fmt, ap);
96         va_end(ap);
97 }
98
99 void
100 verrc(eval, code, fmt, ap)
101         int eval;
102         int code;
103         const char *fmt;
104         va_list ap;
105 {
106         if (err_file == 0)
107                 err_set_file((FILE *)0);
108         fprintf(err_file, "%s: ", _getprogname());
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);
117 }
118
119 void
120 errx(int eval, const char *fmt, ...)
121 {
122         va_list ap;
123         va_start(ap, fmt);
124         verrx(eval, fmt, ap);
125         va_end(ap);
126 }
127
128 void
129 verrx(eval, fmt, ap)
130         int eval;
131         const char *fmt;
132         va_list ap;
133 {
134         if (err_file == 0)
135                 err_set_file((FILE *)0);
136         fprintf(err_file, "%s: ", _getprogname());
137         if (fmt != NULL)
138                 vfprintf(err_file, fmt, ap);
139         fprintf(err_file, "\n");
140         if (err_exit)
141                 err_exit(eval);
142         exit(eval);
143 }
144
145 __weak_reference(_warn, warn);
146
147 void
148 _warn(const char *fmt, ...)
149 {
150         va_list ap;
151         va_start(ap, fmt);
152         vwarnc(errno, fmt, ap);
153         va_end(ap);
154 }
155
156 void
157 vwarn(fmt, ap)
158         const char *fmt;
159         va_list ap;
160 {
161         vwarnc(errno, fmt, ap);
162 }
163
164 void
165 warnc(int code, const char *fmt, ...)
166 {
167         va_list ap;
168         va_start(ap, fmt);
169         vwarnc(code, fmt, ap);
170         va_end(ap);
171 }
172
173 void
174 vwarnc(code, fmt, ap)
175         int code;
176         const char *fmt;
177         va_list ap;
178 {
179         if (err_file == 0)
180                 err_set_file((FILE *)0);
181         fprintf(err_file, "%s: ", _getprogname());
182         if (fmt != NULL) {
183                 vfprintf(err_file, fmt, ap);
184                 fprintf(err_file, ": ");
185         }
186         fprintf(err_file, "%s\n", strerror(code));
187 }
188
189 void
190 warnx(const char *fmt, ...)
191 {
192         va_list ap;
193         va_start(ap, fmt);
194         vwarnx(fmt, ap);
195         va_end(ap);
196 }
197
198 void
199 vwarnx(fmt, ap)
200         const char *fmt;
201         va_list ap;
202 {
203         if (err_file == 0)
204                 err_set_file((FILE *)0);
205         fprintf(err_file, "%s: ", _getprogname());
206         if (fmt != NULL)
207                 vfprintf(err_file, fmt, ap);
208         fprintf(err_file, "\n");
209 }