Windows: Enable weak crypto by default
[heimdal.git] / lib / krb5 / warn.c
blob63994dfca71452631f9450e706f0e6182608db3c
1 /*
2 * Copyright (c) 1997 - 2001 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
4 * All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
34 #include "krb5_locl.h"
35 #include <err.h>
37 static krb5_error_code _warnerr(krb5_context context, int do_errtext,
38 krb5_error_code code, int level, const char *fmt, va_list ap)
39 __attribute__((__format__(__printf__, 5, 0)));
41 static krb5_error_code
42 _warnerr(krb5_context context, int do_errtext,
43 krb5_error_code code, int level, const char *fmt, va_list ap)
45 char xfmt[7] = "";
46 const char *args[2], **arg;
47 char *msg = NULL;
48 const char *err_str = NULL;
49 krb5_error_code ret;
51 args[0] = args[1] = NULL;
52 arg = args;
53 if(fmt){
54 strlcat(xfmt, "%s", sizeof(xfmt));
55 if(do_errtext)
56 strlcat(xfmt, ": ", sizeof(xfmt));
57 ret = vasprintf(&msg, fmt, ap);
58 if(ret < 0 || msg == NULL)
59 return ENOMEM;
60 *arg++ = msg;
62 if(context && do_errtext){
63 strlcat(xfmt, "%s", sizeof(xfmt));
65 err_str = krb5_get_error_message(context, code);
66 if (err_str != NULL) {
67 *arg = err_str;
68 } else {
69 *arg= "<unknown error>";
73 if(context && context->warn_dest)
74 krb5_log(context, context->warn_dest, level, xfmt, args[0], args[1]);
75 else
76 warnx(xfmt, args[0], args[1]);
77 free(msg);
78 krb5_free_error_message(context, err_str);
79 return 0;
82 #define FUNC(ETEXT, CODE, LEVEL) \
83 krb5_error_code ret; \
84 va_list ap; \
85 va_start(ap, fmt); \
86 ret = _warnerr(context, ETEXT, CODE, LEVEL, fmt, ap); \
87 va_end(ap);
89 #undef __attribute__
90 #define __attribute__(X)
92 /**
93 * Log a warning to the log, default stderr, include the error from
94 * the last failure.
96 * @param context A Kerberos 5 context.
97 * @param code error code of the last error
98 * @param fmt message to print
99 * @param ap arguments
101 * @ingroup krb5_error
104 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
105 krb5_vwarn(krb5_context context, krb5_error_code code,
106 const char *fmt, va_list ap)
107 __attribute__ ((format (printf, 3, 0)))
109 return _warnerr(context, 1, code, 1, fmt, ap);
113 * Log a warning to the log, default stderr, include the error from
114 * the last failure.
116 * @param context A Kerberos 5 context.
117 * @param code error code of the last error
118 * @param fmt message to print
120 * @ingroup krb5_error
123 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
124 krb5_warn(krb5_context context, krb5_error_code code, const char *fmt, ...)
125 __attribute__ ((format (printf, 3, 4)))
127 FUNC(1, code, 1);
128 return ret;
132 * Log a warning to the log, default stderr.
134 * @param context A Kerberos 5 context.
135 * @param fmt message to print
136 * @param ap arguments
138 * @ingroup krb5_error
141 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
142 krb5_vwarnx(krb5_context context, const char *fmt, va_list ap)
143 __attribute__ ((format (printf, 2, 0)))
145 return _warnerr(context, 0, 0, 1, fmt, ap);
149 * Log a warning to the log, default stderr.
151 * @param context A Kerberos 5 context.
152 * @param fmt message to print
154 * @ingroup krb5_error
157 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
158 krb5_warnx(krb5_context context, const char *fmt, ...)
159 __attribute__ ((format (printf, 2, 3)))
161 FUNC(0, 0, 1);
162 return ret;
166 * Log a warning to the log, default stderr, include bthe error from
167 * the last failure and then exit.
169 * @param context A Kerberos 5 context
170 * @param eval the exit code to exit with
171 * @param code error code of the last error
172 * @param fmt message to print
173 * @param ap arguments
175 * @ingroup krb5_error
178 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
179 krb5_verr(krb5_context context, int eval, krb5_error_code code,
180 const char *fmt, va_list ap)
181 __attribute__ ((noreturn, format (printf, 4, 0)))
183 _warnerr(context, 1, code, 0, fmt, ap);
184 exit(eval);
188 * Log a warning to the log, default stderr, include bthe error from
189 * the last failure and then exit.
191 * @param context A Kerberos 5 context
192 * @param eval the exit code to exit with
193 * @param code error code of the last error
194 * @param fmt message to print
196 * @ingroup krb5_error
199 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
200 krb5_err(krb5_context context, int eval, krb5_error_code code,
201 const char *fmt, ...)
202 __attribute__ ((noreturn, format (printf, 4, 5)))
204 FUNC(1, code, 0);
205 exit(eval);
209 * Log a warning to the log, default stderr, and then exit.
211 * @param context A Kerberos 5 context
212 * @param eval the exit code to exit with
213 * @param fmt message to print
214 * @param ap arguments
216 * @ingroup krb5_error
219 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
220 krb5_verrx(krb5_context context, int eval, const char *fmt, va_list ap)
221 __attribute__ ((noreturn, format (printf, 3, 0)))
223 _warnerr(context, 0, 0, 0, fmt, ap);
224 exit(eval);
228 * Log a warning to the log, default stderr, and then exit.
230 * @param context A Kerberos 5 context
231 * @param eval the exit code to exit with
232 * @param fmt message to print
234 * @ingroup krb5_error
237 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
238 krb5_errx(krb5_context context, int eval, const char *fmt, ...)
239 __attribute__ ((noreturn, format (printf, 3, 4)))
241 FUNC(0, 0, 0);
242 exit(eval);
246 * Log a warning to the log, default stderr, include bthe error from
247 * the last failure and then abort.
249 * @param context A Kerberos 5 context
250 * @param code error code of the last error
251 * @param fmt message to print
252 * @param ap arguments
254 * @ingroup krb5_error
257 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
258 krb5_vabort(krb5_context context, krb5_error_code code,
259 const char *fmt, va_list ap)
260 __attribute__ ((noreturn, format (printf, 3, 0)))
262 _warnerr(context, 1, code, 0, fmt, ap);
263 abort();
267 * Log a warning to the log, default stderr, include the error from
268 * the last failure and then abort.
270 * @param context A Kerberos 5 context
271 * @param code error code of the last error
272 * @param fmt message to print
274 * @ingroup krb5_error
277 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
278 krb5_abort(krb5_context context, krb5_error_code code, const char *fmt, ...)
279 __attribute__ ((noreturn, format (printf, 3, 4)))
281 FUNC(1, code, 0);
282 abort();
285 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
286 krb5_vabortx(krb5_context context, const char *fmt, va_list ap)
287 __attribute__ ((noreturn, format (printf, 2, 0)))
289 _warnerr(context, 0, 0, 0, fmt, ap);
290 abort();
294 * Log a warning to the log, default stderr, and then abort.
296 * @param context A Kerberos 5 context
297 * @param code error code of the last error
298 * @param fmt message to print
300 * @ingroup krb5_error
303 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
304 krb5_abortx(krb5_context context, const char *fmt, ...)
305 __attribute__ ((noreturn, format (printf, 2, 3)))
307 FUNC(0, 0, 0);
308 abort();
312 * Set the default logging facility.
314 * @param context A Kerberos 5 context
315 * @param fac Facility to use for logging.
317 * @ingroup krb5_error
320 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
321 krb5_set_warn_dest(krb5_context context, krb5_log_facility *fac)
323 context->warn_dest = fac;
324 return 0;
328 * Get the default logging facility.
330 * @param context A Kerberos 5 context
332 * @ingroup krb5_error
335 KRB5_LIB_FUNCTION krb5_log_facility * KRB5_LIB_CALL
336 krb5_get_warn_dest(krb5_context context)
338 return context->warn_dest;