1 /* $NetBSD: display_status.c,v 1.1.1.1 2011/04/13 18:14:45 elric Exp $ */
4 * Copyright (c) 1998 - 2006 Kungliga Tekniska Högskolan
5 * (Royal Institute of Technology, Stockholm, Sweden).
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the Institute nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 #include "gsskrb5_locl.h"
39 calling_error(OM_uint32 v
)
41 static const char *msgs
[] = {
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
;
52 else if (v
>= sizeof(msgs
)/sizeof(*msgs
))
53 return "unknown calling error";
59 routine_error(OM_uint32 v
)
61 static const char *msgs
[] = {
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
;
88 else if (v
>= sizeof(msgs
)/sizeof(*msgs
))
89 return "unknown routine error";
95 supplementary_error(OM_uint32 v
)
97 static const char *msgs
[] = {
99 "continuation call to routine required",
100 "duplicate per-message token detected",
101 "timed-out per-message token detected",
102 "reordered (early) per-message token detected",
103 "skipped predecessor token(s) detected"
106 v
>>= GSS_C_SUPPLEMENTARY_OFFSET
;
108 if (v
>= sizeof(msgs
)/sizeof(*msgs
))
109 return "unknown routine error";
115 _gsskrb5_clear_status (void)
117 krb5_context context
;
119 if (_gsskrb5_init (&context
) != 0)
121 krb5_clear_error_message(context
);
125 _gsskrb5_set_status (int ret
, const char *fmt
, ...)
127 krb5_context context
;
132 if (_gsskrb5_init (&context
) != 0)
136 e
= vasprintf(&str
, fmt
, args
);
139 krb5_set_error_message(context
, ret
, "%s", str
);
144 OM_uint32 GSSAPI_CALLCONV _gsskrb5_display_status
145 (OM_uint32
*minor_status
,
146 OM_uint32 status_value
,
148 const gss_OID mech_type
,
149 OM_uint32
*message_context
,
150 gss_buffer_t status_string
)
152 krb5_context context
;
156 GSSAPI_KRB5_INIT (&context
);
158 status_string
->length
= 0;
159 status_string
->value
= NULL
;
161 if (gss_oid_equal(mech_type
, GSS_C_NO_OID
) == 0 &&
162 gss_oid_equal(mech_type
, GSS_KRB5_MECHANISM
) == 0) {
164 return GSS_C_GSS_CODE
;
167 if (status_type
== GSS_C_GSS_CODE
) {
168 if (GSS_SUPPLEMENTARY_INFO(status_value
))
169 e
= asprintf(&buf
, "%s",
170 supplementary_error(GSS_SUPPLEMENTARY_INFO(status_value
)));
172 e
= asprintf (&buf
, "%s %s",
173 calling_error(GSS_CALLING_ERROR(status_value
)),
174 routine_error(GSS_ROUTINE_ERROR(status_value
)));
175 } else if (status_type
== GSS_C_MECH_CODE
) {
176 const char *buf2
= krb5_get_error_message(context
, status_value
);
179 krb5_free_error_message(context
, buf2
);
181 e
= asprintf(&buf
, "unknown mech error-code %u",
182 (unsigned)status_value
);
185 *minor_status
= EINVAL
;
186 return GSS_S_BAD_STATUS
;
189 if (e
< 0 || buf
== NULL
) {
190 *minor_status
= ENOMEM
;
191 return GSS_S_FAILURE
;
194 *message_context
= 0;
197 status_string
->length
= strlen(buf
);
198 status_string
->value
= buf
;
200 return GSS_S_COMPLETE
;