Merge pull request #203 from sdigit/patch-1
[heimdal.git] / lib / krb5 / error_string.c
blob0e6af96fea0d2e67e66f66b03ad633d106c5961b
1 /*
2 * Copyright (c) 2001, 2003, 2005 - 2006 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"
36 #undef __attribute__
37 #define __attribute__(x)
39 /**
40 * Clears the error message from the Kerberos 5 context.
42 * @param context The Kerberos 5 context to clear
44 * @ingroup krb5_error
47 KRB5_LIB_FUNCTION void KRB5_LIB_CALL
48 krb5_clear_error_message(krb5_context context)
50 HEIMDAL_MUTEX_lock(&context->mutex);
51 if (context->error_string)
52 free(context->error_string);
53 context->error_code = 0;
54 context->error_string = NULL;
55 HEIMDAL_MUTEX_unlock(&context->mutex);
58 /**
59 * Set the context full error string for a specific error code.
60 * The error that is stored should be internationalized.
62 * The if context is NULL, no error string is stored.
64 * @param context Kerberos 5 context
65 * @param ret The error code
66 * @param fmt Error string for the error code
67 * @param ... printf(3) style parameters.
69 * @ingroup krb5_error
72 KRB5_LIB_FUNCTION void KRB5_LIB_CALL
73 krb5_set_error_message(krb5_context context, krb5_error_code ret,
74 const char *fmt, ...)
75 __attribute__ ((format (printf, 3, 4)))
77 va_list ap;
79 va_start(ap, fmt);
80 krb5_vset_error_message (context, ret, fmt, ap);
81 va_end(ap);
84 /**
85 * Set the context full error string for a specific error code.
87 * The if context is NULL, no error string is stored.
89 * @param context Kerberos 5 context
90 * @param ret The error code
91 * @param fmt Error string for the error code
92 * @param args printf(3) style parameters.
94 * @ingroup krb5_error
98 KRB5_LIB_FUNCTION void KRB5_LIB_CALL
99 krb5_vset_error_message (krb5_context context, krb5_error_code ret,
100 const char *fmt, va_list args)
101 __attribute__ ((format (printf, 3, 0)))
103 int r;
105 if (context == NULL)
106 return;
108 HEIMDAL_MUTEX_lock(&context->mutex);
109 if (context->error_string) {
110 free(context->error_string);
111 context->error_string = NULL;
113 context->error_code = ret;
114 r = vasprintf(&context->error_string, fmt, args);
115 if (r < 0)
116 context->error_string = NULL;
117 HEIMDAL_MUTEX_unlock(&context->mutex);
118 if (context->error_string)
119 _krb5_debug(context, 100, "error message: %s: %d", context->error_string, ret);
123 * Prepend the context full error string for a specific error code.
124 * The error that is stored should be internationalized.
126 * The if context is NULL, no error string is stored.
128 * @param context Kerberos 5 context
129 * @param ret The error code
130 * @param fmt Error string for the error code
131 * @param ... printf(3) style parameters.
133 * @ingroup krb5_error
136 KRB5_LIB_FUNCTION void KRB5_LIB_CALL
137 krb5_prepend_error_message(krb5_context context, krb5_error_code ret,
138 const char *fmt, ...)
139 __attribute__ ((format (printf, 3, 4)))
141 va_list ap;
143 va_start(ap, fmt);
144 krb5_vprepend_error_message(context, ret, fmt, ap);
145 va_end(ap);
149 * Prepend the contexts's full error string for a specific error code.
151 * The if context is NULL, no error string is stored.
153 * @param context Kerberos 5 context
154 * @param ret The error code
155 * @param fmt Error string for the error code
156 * @param args printf(3) style parameters.
158 * @ingroup krb5_error
161 KRB5_LIB_FUNCTION void KRB5_LIB_CALL
162 krb5_vprepend_error_message(krb5_context context, krb5_error_code ret,
163 const char *fmt, va_list args)
164 __attribute__ ((format (printf, 3, 0)))
166 char *str = NULL, *str2 = NULL;
168 if (context == NULL)
169 return;
171 HEIMDAL_MUTEX_lock(&context->mutex);
172 if (context->error_code != ret) {
173 HEIMDAL_MUTEX_unlock(&context->mutex);
174 return;
176 if (vasprintf(&str, fmt, args) < 0 || str == NULL) {
177 HEIMDAL_MUTEX_unlock(&context->mutex);
178 return;
180 if (context->error_string) {
181 int e;
183 e = asprintf(&str2, "%s: %s", str, context->error_string);
184 free(context->error_string);
185 if (e < 0 || str2 == NULL)
186 context->error_string = NULL;
187 else
188 context->error_string = str2;
189 free(str);
190 } else
191 context->error_string = str;
192 HEIMDAL_MUTEX_unlock(&context->mutex);
196 * Return the error message for `code' in context. On memory
197 * allocation error the function returns NULL.
199 * @param context Kerberos 5 context
200 * @param code Error code related to the error
202 * @return an error string, needs to be freed with
203 * krb5_free_error_message(). The functions return NULL on error.
205 * @ingroup krb5_error
208 KRB5_LIB_FUNCTION const char * KRB5_LIB_CALL
209 krb5_get_error_message(krb5_context context, krb5_error_code code)
211 char *str = NULL;
212 const char *cstr = NULL;
213 char buf[128];
214 int free_context = 0;
216 if (code == 0)
217 return strdup("Success");
220 * The MIT version of this function ignores the krb5_context
221 * and several widely deployed applications call krb5_get_error_message()
222 * with a NULL context in order to translate an error code as a
223 * replacement for error_message(). Another reason a NULL context
224 * might be provided is if the krb5_init_context() call itself
225 * failed.
227 if (context)
229 HEIMDAL_MUTEX_lock(&context->mutex);
230 if (context->error_string &&
231 (code == context->error_code || context->error_code == 0))
233 str = strdup(context->error_string);
235 HEIMDAL_MUTEX_unlock(&context->mutex);
237 if (str)
238 return str;
240 else
242 if (krb5_init_context(&context) == 0)
243 free_context = 1;
246 if (context)
247 cstr = com_right_r(context->et_list, code, buf, sizeof(buf));
249 if (free_context)
250 krb5_free_context(context);
252 if (cstr)
253 return strdup(cstr);
255 cstr = error_message(code);
256 if (cstr)
257 return strdup(cstr);
259 if (asprintf(&str, "<unknown error: %d>", (int)code) == -1 || str == NULL)
260 return NULL;
262 return str;
267 * Free the error message returned by krb5_get_error_message().
269 * @param context Kerberos context
270 * @param msg error message to free, returned byg
271 * krb5_get_error_message().
273 * @ingroup krb5_error
276 KRB5_LIB_FUNCTION void KRB5_LIB_CALL
277 krb5_free_error_message(krb5_context context, const char *msg)
279 free(rk_UNCONST(msg));
284 * Return the error string for the error code. The caller must not
285 * free the string.
287 * This function is deprecated since its not threadsafe.
289 * @param context Kerberos 5 context.
290 * @param code Kerberos error code.
292 * @return the error message matching code
294 * @ingroup krb5
297 KRB5_LIB_FUNCTION const char* KRB5_LIB_CALL
298 krb5_get_err_text(krb5_context context, krb5_error_code code)
299 KRB5_DEPRECATED_FUNCTION("Use krb5_get_error_message instead")
301 const char *p = NULL;
302 if(context != NULL)
303 p = com_right(context->et_list, code);
304 if(p == NULL)
305 p = strerror(code);
306 if (p == NULL)
307 p = "Unknown error";
308 return p;