1*ebfedea0SLionel Sambuc /* $NetBSD: display_status.c,v 1.1.1.1 2011/04/13 18:14:45 elric Exp $ */
2*ebfedea0SLionel Sambuc
3*ebfedea0SLionel Sambuc /*
4*ebfedea0SLionel Sambuc * Copyright (c) 1998 - 2006 Kungliga Tekniska Högskolan
5*ebfedea0SLionel Sambuc * (Royal Institute of Technology, Stockholm, Sweden).
6*ebfedea0SLionel Sambuc * All rights reserved.
7*ebfedea0SLionel Sambuc *
8*ebfedea0SLionel Sambuc * Redistribution and use in source and binary forms, with or without
9*ebfedea0SLionel Sambuc * modification, are permitted provided that the following conditions
10*ebfedea0SLionel Sambuc * are met:
11*ebfedea0SLionel Sambuc *
12*ebfedea0SLionel Sambuc * 1. Redistributions of source code must retain the above copyright
13*ebfedea0SLionel Sambuc * notice, this list of conditions and the following disclaimer.
14*ebfedea0SLionel Sambuc *
15*ebfedea0SLionel Sambuc * 2. Redistributions in binary form must reproduce the above copyright
16*ebfedea0SLionel Sambuc * notice, this list of conditions and the following disclaimer in the
17*ebfedea0SLionel Sambuc * documentation and/or other materials provided with the distribution.
18*ebfedea0SLionel Sambuc *
19*ebfedea0SLionel Sambuc * 3. Neither the name of the Institute nor the names of its contributors
20*ebfedea0SLionel Sambuc * may be used to endorse or promote products derived from this software
21*ebfedea0SLionel Sambuc * without specific prior written permission.
22*ebfedea0SLionel Sambuc *
23*ebfedea0SLionel Sambuc * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
24*ebfedea0SLionel Sambuc * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25*ebfedea0SLionel Sambuc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26*ebfedea0SLionel Sambuc * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
27*ebfedea0SLionel Sambuc * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28*ebfedea0SLionel Sambuc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29*ebfedea0SLionel Sambuc * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30*ebfedea0SLionel Sambuc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31*ebfedea0SLionel Sambuc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32*ebfedea0SLionel Sambuc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33*ebfedea0SLionel Sambuc * SUCH DAMAGE.
34*ebfedea0SLionel Sambuc */
35*ebfedea0SLionel Sambuc
36*ebfedea0SLionel Sambuc #include "gsskrb5_locl.h"
37*ebfedea0SLionel Sambuc
38*ebfedea0SLionel Sambuc static const char *
calling_error(OM_uint32 v)39*ebfedea0SLionel Sambuc calling_error(OM_uint32 v)
40*ebfedea0SLionel Sambuc {
41*ebfedea0SLionel Sambuc static const char *msgs[] = {
42*ebfedea0SLionel Sambuc NULL, /* 0 */
43*ebfedea0SLionel Sambuc "A required input parameter could not be read.", /* */
44*ebfedea0SLionel Sambuc "A required output parameter could not be written.", /* */
45*ebfedea0SLionel Sambuc "A parameter was malformed"
46*ebfedea0SLionel Sambuc };
47*ebfedea0SLionel Sambuc
48*ebfedea0SLionel Sambuc v >>= GSS_C_CALLING_ERROR_OFFSET;
49*ebfedea0SLionel Sambuc
50*ebfedea0SLionel Sambuc if (v == 0)
51*ebfedea0SLionel Sambuc return "";
52*ebfedea0SLionel Sambuc else if (v >= sizeof(msgs)/sizeof(*msgs))
53*ebfedea0SLionel Sambuc return "unknown calling error";
54*ebfedea0SLionel Sambuc else
55*ebfedea0SLionel Sambuc return msgs[v];
56*ebfedea0SLionel Sambuc }
57*ebfedea0SLionel Sambuc
58*ebfedea0SLionel Sambuc static const char *
routine_error(OM_uint32 v)59*ebfedea0SLionel Sambuc routine_error(OM_uint32 v)
60*ebfedea0SLionel Sambuc {
61*ebfedea0SLionel Sambuc static const char *msgs[] = {
62*ebfedea0SLionel Sambuc NULL, /* 0 */
63*ebfedea0SLionel Sambuc "An unsupported mechanism was requested",
64*ebfedea0SLionel Sambuc "An invalid name was supplied",
65*ebfedea0SLionel Sambuc "A supplied name was of an unsupported type",
66*ebfedea0SLionel Sambuc "Incorrect channel bindings were supplied",
67*ebfedea0SLionel Sambuc "An invalid status code was supplied",
68*ebfedea0SLionel Sambuc "A token had an invalid MIC",
69*ebfedea0SLionel Sambuc "No credentials were supplied, "
70*ebfedea0SLionel Sambuc "or the credentials were unavailable or inaccessible.",
71*ebfedea0SLionel Sambuc "No context has been established",
72*ebfedea0SLionel Sambuc "A token was invalid",
73*ebfedea0SLionel Sambuc "A credential was invalid",
74*ebfedea0SLionel Sambuc "The referenced credentials have expired",
75*ebfedea0SLionel Sambuc "The context has expired",
76*ebfedea0SLionel Sambuc "Miscellaneous failure (see text)",
77*ebfedea0SLionel Sambuc "The quality-of-protection requested could not be provide",
78*ebfedea0SLionel Sambuc "The operation is forbidden by local security policy",
79*ebfedea0SLionel Sambuc "The operation or option is not available",
80*ebfedea0SLionel Sambuc "The requested credential element already exists",
81*ebfedea0SLionel Sambuc "The provided name was not a mechanism name.",
82*ebfedea0SLionel Sambuc };
83*ebfedea0SLionel Sambuc
84*ebfedea0SLionel Sambuc v >>= GSS_C_ROUTINE_ERROR_OFFSET;
85*ebfedea0SLionel Sambuc
86*ebfedea0SLionel Sambuc if (v == 0)
87*ebfedea0SLionel Sambuc return "";
88*ebfedea0SLionel Sambuc else if (v >= sizeof(msgs)/sizeof(*msgs))
89*ebfedea0SLionel Sambuc return "unknown routine error";
90*ebfedea0SLionel Sambuc else
91*ebfedea0SLionel Sambuc return msgs[v];
92*ebfedea0SLionel Sambuc }
93*ebfedea0SLionel Sambuc
94*ebfedea0SLionel Sambuc static const char *
supplementary_error(OM_uint32 v)95*ebfedea0SLionel Sambuc supplementary_error(OM_uint32 v)
96*ebfedea0SLionel Sambuc {
97*ebfedea0SLionel Sambuc static const char *msgs[] = {
98*ebfedea0SLionel Sambuc "normal completion",
99*ebfedea0SLionel Sambuc "continuation call to routine required",
100*ebfedea0SLionel Sambuc "duplicate per-message token detected",
101*ebfedea0SLionel Sambuc "timed-out per-message token detected",
102*ebfedea0SLionel Sambuc "reordered (early) per-message token detected",
103*ebfedea0SLionel Sambuc "skipped predecessor token(s) detected"
104*ebfedea0SLionel Sambuc };
105*ebfedea0SLionel Sambuc
106*ebfedea0SLionel Sambuc v >>= GSS_C_SUPPLEMENTARY_OFFSET;
107*ebfedea0SLionel Sambuc
108*ebfedea0SLionel Sambuc if (v >= sizeof(msgs)/sizeof(*msgs))
109*ebfedea0SLionel Sambuc return "unknown routine error";
110*ebfedea0SLionel Sambuc else
111*ebfedea0SLionel Sambuc return msgs[v];
112*ebfedea0SLionel Sambuc }
113*ebfedea0SLionel Sambuc
114*ebfedea0SLionel Sambuc void
_gsskrb5_clear_status(void)115*ebfedea0SLionel Sambuc _gsskrb5_clear_status (void)
116*ebfedea0SLionel Sambuc {
117*ebfedea0SLionel Sambuc krb5_context context;
118*ebfedea0SLionel Sambuc
119*ebfedea0SLionel Sambuc if (_gsskrb5_init (&context) != 0)
120*ebfedea0SLionel Sambuc return;
121*ebfedea0SLionel Sambuc krb5_clear_error_message(context);
122*ebfedea0SLionel Sambuc }
123*ebfedea0SLionel Sambuc
124*ebfedea0SLionel Sambuc void
_gsskrb5_set_status(int ret,const char * fmt,...)125*ebfedea0SLionel Sambuc _gsskrb5_set_status (int ret, const char *fmt, ...)
126*ebfedea0SLionel Sambuc {
127*ebfedea0SLionel Sambuc krb5_context context;
128*ebfedea0SLionel Sambuc va_list args;
129*ebfedea0SLionel Sambuc char *str;
130*ebfedea0SLionel Sambuc int e;
131*ebfedea0SLionel Sambuc
132*ebfedea0SLionel Sambuc if (_gsskrb5_init (&context) != 0)
133*ebfedea0SLionel Sambuc return;
134*ebfedea0SLionel Sambuc
135*ebfedea0SLionel Sambuc va_start(args, fmt);
136*ebfedea0SLionel Sambuc e = vasprintf(&str, fmt, args);
137*ebfedea0SLionel Sambuc va_end(args);
138*ebfedea0SLionel Sambuc if (e >= 0 && str) {
139*ebfedea0SLionel Sambuc krb5_set_error_message(context, ret, "%s", str);
140*ebfedea0SLionel Sambuc free(str);
141*ebfedea0SLionel Sambuc }
142*ebfedea0SLionel Sambuc }
143*ebfedea0SLionel Sambuc
_gsskrb5_display_status(OM_uint32 * minor_status,OM_uint32 status_value,int status_type,const gss_OID mech_type,OM_uint32 * message_context,gss_buffer_t status_string)144*ebfedea0SLionel Sambuc OM_uint32 GSSAPI_CALLCONV _gsskrb5_display_status
145*ebfedea0SLionel Sambuc (OM_uint32 *minor_status,
146*ebfedea0SLionel Sambuc OM_uint32 status_value,
147*ebfedea0SLionel Sambuc int status_type,
148*ebfedea0SLionel Sambuc const gss_OID mech_type,
149*ebfedea0SLionel Sambuc OM_uint32 *message_context,
150*ebfedea0SLionel Sambuc gss_buffer_t status_string)
151*ebfedea0SLionel Sambuc {
152*ebfedea0SLionel Sambuc krb5_context context;
153*ebfedea0SLionel Sambuc char *buf = NULL;
154*ebfedea0SLionel Sambuc int e = 0;
155*ebfedea0SLionel Sambuc
156*ebfedea0SLionel Sambuc GSSAPI_KRB5_INIT (&context);
157*ebfedea0SLionel Sambuc
158*ebfedea0SLionel Sambuc status_string->length = 0;
159*ebfedea0SLionel Sambuc status_string->value = NULL;
160*ebfedea0SLionel Sambuc
161*ebfedea0SLionel Sambuc if (gss_oid_equal(mech_type, GSS_C_NO_OID) == 0 &&
162*ebfedea0SLionel Sambuc gss_oid_equal(mech_type, GSS_KRB5_MECHANISM) == 0) {
163*ebfedea0SLionel Sambuc *minor_status = 0;
164*ebfedea0SLionel Sambuc return GSS_C_GSS_CODE;
165*ebfedea0SLionel Sambuc }
166*ebfedea0SLionel Sambuc
167*ebfedea0SLionel Sambuc if (status_type == GSS_C_GSS_CODE) {
168*ebfedea0SLionel Sambuc if (GSS_SUPPLEMENTARY_INFO(status_value))
169*ebfedea0SLionel Sambuc e = asprintf(&buf, "%s",
170*ebfedea0SLionel Sambuc supplementary_error(GSS_SUPPLEMENTARY_INFO(status_value)));
171*ebfedea0SLionel Sambuc else
172*ebfedea0SLionel Sambuc e = asprintf (&buf, "%s %s",
173*ebfedea0SLionel Sambuc calling_error(GSS_CALLING_ERROR(status_value)),
174*ebfedea0SLionel Sambuc routine_error(GSS_ROUTINE_ERROR(status_value)));
175*ebfedea0SLionel Sambuc } else if (status_type == GSS_C_MECH_CODE) {
176*ebfedea0SLionel Sambuc const char *buf2 = krb5_get_error_message(context, status_value);
177*ebfedea0SLionel Sambuc if (buf2) {
178*ebfedea0SLionel Sambuc buf = strdup(buf2);
179*ebfedea0SLionel Sambuc krb5_free_error_message(context, buf2);
180*ebfedea0SLionel Sambuc } else {
181*ebfedea0SLionel Sambuc e = asprintf(&buf, "unknown mech error-code %u",
182*ebfedea0SLionel Sambuc (unsigned)status_value);
183*ebfedea0SLionel Sambuc }
184*ebfedea0SLionel Sambuc } else {
185*ebfedea0SLionel Sambuc *minor_status = EINVAL;
186*ebfedea0SLionel Sambuc return GSS_S_BAD_STATUS;
187*ebfedea0SLionel Sambuc }
188*ebfedea0SLionel Sambuc
189*ebfedea0SLionel Sambuc if (e < 0 || buf == NULL) {
190*ebfedea0SLionel Sambuc *minor_status = ENOMEM;
191*ebfedea0SLionel Sambuc return GSS_S_FAILURE;
192*ebfedea0SLionel Sambuc }
193*ebfedea0SLionel Sambuc
194*ebfedea0SLionel Sambuc *message_context = 0;
195*ebfedea0SLionel Sambuc *minor_status = 0;
196*ebfedea0SLionel Sambuc
197*ebfedea0SLionel Sambuc status_string->length = strlen(buf);
198*ebfedea0SLionel Sambuc status_string->value = buf;
199*ebfedea0SLionel Sambuc
200*ebfedea0SLionel Sambuc return GSS_S_COMPLETE;
201*ebfedea0SLionel Sambuc }
202