*** empty log message ***
[heimdal.git] / lib / gssapi / krb5 / display_status.c
blob974c8595f5c15a594232798d18fd60376ff7b79e
1 /*
2 * Copyright (c) 1998, 1999 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 "gssapi_locl.h"
36 RCSID("$Id$");
38 static char *
39 calling_error(OM_uint32 v)
41 static char *msgs[] = {
42 NULL, /* 0 */
43 "A required input parameter could not be read.", /* */
44 "A required output parameter could not be written.", /* */
45 "A parameter was malformed"
48 v >>= GSS_C_CALLING_ERROR_OFFSET;
50 if (v == 0)
51 return "";
52 else if (v >= sizeof(msgs)/sizeof(*msgs))
53 return "unknown calling error";
54 else
55 return msgs[v];
58 static char *
59 routine_error(OM_uint32 v)
61 static char *msgs[] = {
62 NULL, /* 0 */
63 "An unsupported mechanism was requested",
64 "An invalid name was supplied",
65 "A supplied name was of an unsupported type",
66 "Incorrect channel bindings were supplied",
67 "An invalid status code was supplied",
68 "A token had an invalid MIC",
69 "No credentials were supplied, "
70 "or the credentials were unavailable or inaccessible.",
71 "No context has been established",
72 "A token was invalid",
73 "A credential was invalid",
74 "The referenced credentials have expired",
75 "The context has expired",
76 "Miscellaneous failure (see text)",
77 "The quality-of-protection requested could not be provide",
78 "The operation is forbidden by local security policy",
79 "The operation or option is not available",
80 "The requested credential element already exists",
81 "The provided name was not a mechanism name.",
84 v >>= GSS_C_ROUTINE_ERROR_OFFSET;
86 if (v == 0)
87 return "";
88 else if (v >= sizeof(msgs)/sizeof(*msgs))
89 return "unknown routine error";
90 else
91 return msgs[v];
94 OM_uint32 gss_display_status
95 (OM_uint32 *minor_status,
96 OM_uint32 status_value,
97 int status_type,
98 const gss_OID mech_type,
99 OM_uint32 *message_context,
100 gss_buffer_t status_string)
102 char *buf;
104 gssapi_krb5_init ();
106 *minor_status = 0;
108 if (mech_type != GSS_C_NO_OID &&
109 mech_type != GSS_KRB5_MECHANISM)
110 return GSS_S_BAD_MECH;
112 if (status_type == GSS_C_GSS_CODE) {
113 asprintf (&buf, "%s %s",
114 calling_error(GSS_CALLING_ERROR(status_value)),
115 routine_error(GSS_ROUTINE_ERROR(status_value)));
116 if (buf == NULL) {
117 *minor_status = ENOMEM;
118 return GSS_S_FAILURE;
120 } else if (status_type == GSS_C_MECH_CODE) {
121 buf = strdup(krb5_get_err_text (gssapi_krb5_context, status_value));
122 if (buf == NULL) {
123 *minor_status = ENOMEM;
124 return GSS_S_FAILURE;
126 } else
127 return GSS_S_BAD_STATUS;
129 *message_context = 0;
131 status_string->length = strlen(buf);
132 status_string->value = buf;
134 return GSS_S_COMPLETE;