beginnings of better error handling
[mech_eap.orig] / display_status.c
1 /*
2  * Copyright (c) 2010, JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  */
32
33 #include "gssapiP_eap.h"
34
35 static GSSEAP_THREAD_ONCE gssEapStatusInfoKeyOnce = GSSEAP_ONCE_INITIALIZER;
36 static GSSEAP_THREAD_KEY gssEapStatusInfoKey;
37
38 struct gss_eap_status_info {
39     OM_uint32 code;
40     char *message;
41     struct gss_eap_status_info *next;
42 };
43
44 static void
45 destroyStatusInfo(void *arg)
46 {
47     struct gss_eap_status_info *p = arg, *next;
48
49     for (p = arg; p != NULL; p = next) {
50         next = p->next;
51         GSSEAP_FREE(p->message);
52         GSSEAP_FREE(p);
53     }
54 }
55
56 static void
57 createStatusInfoKey(void)
58 {
59     GSSEAP_KEY_CREATE(&gssEapStatusInfoKey, destroyStatusInfo);
60 }
61
62 static void
63 saveStatusInfoNoCopy(OM_uint32 minor, char *message)
64 {
65     struct gss_eap_status_info *info, *p;
66
67     GSSEAP_ONCE(&gssEapStatusInfoKeyOnce, createStatusInfoKey);
68
69     info = GSSEAP_CALLOC(1, sizeof(*info));
70     if (info == NULL)
71         return;
72
73     info->code = minor;
74     info->message = message;
75
76     p = GSSEAP_GETSPECIFIC(gssEapStatusInfoKey);
77     if (p == NULL) {
78         GSSEAP_SETSPECIFIC(gssEapStatusInfoKey, info);
79     } else {
80         struct gss_eap_status_info **next = &p;
81
82         for (; p != NULL; p = p->next)
83             next = &p->next;
84
85         *next = info;
86     }
87 }
88
89 static const char *
90 getStatusInfo(OM_uint32 minor)
91 {
92     struct gss_eap_status_info *p;
93
94     GSSEAP_ONCE(&gssEapStatusInfoKeyOnce, createStatusInfoKey);
95
96     for (p = GSSEAP_GETSPECIFIC(gssEapStatusInfoKey);
97          p != NULL;
98          p = p->next) {
99         if (p->code == minor)
100             return p->message;
101     }
102
103     return NULL;
104 }
105
106 void
107 gssEapSaveStatusInfo(OM_uint32 minor, const char *format, ...)
108 {
109     char *s;
110     int n;
111     va_list ap;
112
113     va_start(ap, format);
114     n = vasprintf(&s, format, ap);
115     va_end(ap);
116
117     if (n >= 0)
118         saveStatusInfoNoCopy(minor, s);
119 }
120
121 #if 0
122 void
123 gssEapSaveKrbStatusInfo(OM_uint32 minor)
124 {
125     krb5_context krbContext = NULL;
126     OM_uint32 tmpMinor;
127     const char *s;
128
129     gssEapKerberosInit(&tmpMinor, &krbContext);
130
131     if (krbContext != NULL) {
132         s = krb5_get_error_message(krbContext, minor);
133         gssEapSaveStatusInfo(minor, "%s", s);
134         krb5_set_error_message(krbContext, minor, "%s", s);
135         krb5_free_error_message(krbContext, s);
136     }
137 }
138 #endif
139
140 OM_uint32
141 gss_display_status(OM_uint32 *minor,
142                    OM_uint32 status_value,
143                    int status_type,
144                    gss_OID mech_type,
145                    OM_uint32 *message_context,
146                    gss_buffer_t status_string)
147 {
148     OM_uint32 major = GSS_S_COMPLETE;
149     krb5_context krbContext;
150     const char *errMsg;
151
152     status_string->length = 0;
153     status_string->value = NULL;
154
155     if (!gssEapIsMechanismOid(mech_type)) {
156         return GSS_S_BAD_MECH;
157     }
158
159     if (status_type != GSS_C_MECH_CODE) {
160         /* we rely on the mechglue for GSS_C_GSS_CODE */
161         return GSS_S_BAD_STATUS;
162     }
163
164     GSSEAP_KRB_INIT(&krbContext);
165
166     errMsg = krb5_get_error_message(krbContext, status_value);
167
168     if (errMsg != NULL) {
169         major = makeStringBuffer(minor, errMsg, status_string);
170     }
171
172     krb5_free_error_message(krbContext, errMsg);
173
174     return major;
175 }