2 * Copyright (c) 1997 - 2001 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
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
34 #include "krb5_locl.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
)
46 const char *args
[2], **arg
;
48 const char *err_str
= NULL
;
50 args
[0] = args
[1] = NULL
;
53 strlcat(xfmt
, "%s", sizeof(xfmt
));
55 strlcat(xfmt
, ": ", sizeof(xfmt
));
56 vasprintf(&msg
, fmt
, ap
);
61 if(context
&& do_errtext
){
64 strlcat(xfmt
, "%s", sizeof(xfmt
));
66 err_str
= krb5_get_error_message(context
, code
);
67 if (err_str
!= NULL
) {
70 err_msg
= krb5_get_err_text(context
, code
);
74 *arg
= "<unknown error>";
78 if(context
&& context
->warn_dest
)
79 krb5_log(context
, context
->warn_dest
, level
, xfmt
, args
[0], args
[1]);
81 warnx(xfmt
, args
[0], args
[1]);
83 krb5_free_error_message(context
, err_str
);
87 #define FUNC(ETEXT, CODE, LEVEL) \
88 krb5_error_code ret; \
91 ret = _warnerr(context, ETEXT, CODE, LEVEL, fmt, ap); \
95 #define __attribute__(X)
98 * Log a warning to the log, default stderr, include the error from
101 * @param context A Kerberos 5 context.
102 * @param code error code of the last error
103 * @param fmt message to print
104 * @param ap arguments
106 * @ingroup krb5_error
109 krb5_error_code KRB5_LIB_FUNCTION
110 krb5_vwarn(krb5_context context
, krb5_error_code code
,
111 const char *fmt
, va_list ap
)
112 __attribute__ ((format (printf
, 3, 0)))
114 return _warnerr(context
, 1, code
, 1, fmt
, ap
);
118 * Log a warning to the log, default stderr, include the error from
121 * @param context A Kerberos 5 context.
122 * @param code error code of the last error
123 * @param fmt message to print
125 * @ingroup krb5_error
128 krb5_error_code KRB5_LIB_FUNCTION
129 krb5_warn(krb5_context context
, krb5_error_code code
, const char *fmt
, ...)
130 __attribute__ ((format (printf
, 3, 4)))
137 * Log a warning to the log, default stderr.
139 * @param context A Kerberos 5 context.
140 * @param fmt message to print
141 * @param ap arguments
143 * @ingroup krb5_error
146 krb5_error_code KRB5_LIB_FUNCTION
147 krb5_vwarnx(krb5_context context
, const char *fmt
, va_list ap
)
148 __attribute__ ((format (printf
, 2, 0)))
150 return _warnerr(context
, 0, 0, 1, fmt
, ap
);
154 * Log a warning to the log, default stderr.
156 * @param context A Kerberos 5 context.
157 * @param fmt message to print
159 * @ingroup krb5_error
162 krb5_error_code KRB5_LIB_FUNCTION
163 krb5_warnx(krb5_context context
, const char *fmt
, ...)
164 __attribute__ ((format (printf
, 2, 3)))
171 * Log a warning to the log, default stderr, include bthe error from
172 * the last failure and then exit.
174 * @param context A Kerberos 5 context
175 * @param eval the exit code to exit with
176 * @param code error code of the last error
177 * @param fmt message to print
178 * @param ap arguments
180 * @ingroup krb5_error
183 krb5_error_code KRB5_LIB_FUNCTION
184 krb5_verr(krb5_context context
, int eval
, krb5_error_code code
,
185 const char *fmt
, va_list ap
)
186 __attribute__ ((noreturn
, format (printf
, 4, 0)))
188 _warnerr(context
, 1, code
, 0, fmt
, ap
);
193 * Log a warning to the log, default stderr, include bthe error from
194 * the last failure and then exit.
196 * @param context A Kerberos 5 context
197 * @param eval the exit code to exit with
198 * @param code error code of the last error
199 * @param fmt message to print
201 * @ingroup krb5_error
204 krb5_error_code KRB5_LIB_FUNCTION
205 krb5_err(krb5_context context
, int eval
, krb5_error_code code
,
206 const char *fmt
, ...)
207 __attribute__ ((noreturn
, format (printf
, 4, 5)))
214 * Log a warning to the log, default stderr, and then exit.
216 * @param context A Kerberos 5 context
217 * @param eval the exit code to exit with
218 * @param fmt message to print
219 * @param ap arguments
221 * @ingroup krb5_error
224 krb5_error_code KRB5_LIB_FUNCTION
225 krb5_verrx(krb5_context context
, int eval
, const char *fmt
, va_list ap
)
226 __attribute__ ((noreturn
, format (printf
, 3, 0)))
228 _warnerr(context
, 0, 0, 0, fmt
, ap
);
233 * Log a warning to the log, default stderr, and then exit.
235 * @param context A Kerberos 5 context
236 * @param eval the exit code to exit with
237 * @param fmt message to print
239 * @ingroup krb5_error
242 krb5_error_code KRB5_LIB_FUNCTION
243 krb5_errx(krb5_context context
, int eval
, const char *fmt
, ...)
244 __attribute__ ((noreturn
, format (printf
, 3, 4)))
251 * Log a warning to the log, default stderr, include bthe error from
252 * the last failure and then abort.
254 * @param context A Kerberos 5 context
255 * @param code error code of the last error
256 * @param fmt message to print
257 * @param ap arguments
259 * @ingroup krb5_error
262 krb5_error_code KRB5_LIB_FUNCTION
263 krb5_vabort(krb5_context context
, krb5_error_code code
,
264 const char *fmt
, va_list ap
)
265 __attribute__ ((noreturn
, format (printf
, 3, 0)))
267 _warnerr(context
, 1, code
, 0, fmt
, ap
);
272 * Log a warning to the log, default stderr, include bthe error from
273 * the last failure and then abort.
275 * @param context A Kerberos 5 context
276 * @param code error code of the last error
277 * @param fmt message to print
279 * @ingroup krb5_error
282 krb5_error_code KRB5_LIB_FUNCTION
283 krb5_abort(krb5_context context
, krb5_error_code code
, const char *fmt
, ...)
284 __attribute__ ((noreturn
, format (printf
, 3, 4)))
290 krb5_error_code KRB5_LIB_FUNCTION
291 krb5_vabortx(krb5_context context
, const char *fmt
, va_list ap
)
292 __attribute__ ((noreturn
, format (printf
, 2, 0)))
294 _warnerr(context
, 0, 0, 0, fmt
, ap
);
299 * Log a warning to the log, default stderr, and then abort.
301 * @param context A Kerberos 5 context
302 * @param code error code of the last error
303 * @param fmt message to print
305 * @ingroup krb5_error
308 krb5_error_code KRB5_LIB_FUNCTION
309 krb5_abortx(krb5_context context
, const char *fmt
, ...)
310 __attribute__ ((noreturn
, format (printf
, 2, 3)))
317 * Set the default logging facility.
319 * @param context A Kerberos 5 context
320 * @param fac Facility to use for logging.
322 * @ingroup krb5_error
325 krb5_error_code KRB5_LIB_FUNCTION
326 krb5_set_warn_dest(krb5_context context
, krb5_log_facility
*fac
)
328 context
->warn_dest
= fac
;
333 * Get the default logging facility.
335 * @param context A Kerberos 5 context
337 * @ingroup krb5_error
340 krb5_log_facility
* KRB5_LIB_FUNCTION
341 krb5_get_warn_dest(krb5_context context
)
343 return context
->warn_dest
;