Better error reporting through com_err
[mech_eap.git] / 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 **next = NULL, *p;
66
67     GSSEAP_ONCE(&gssEapStatusInfoKeyOnce, createStatusInfoKey);
68
69     p = GSSEAP_GETSPECIFIC(gssEapStatusInfoKey);
70     for (; p != NULL; p = p->next) {
71         if (p->code == minor) {
72             p->message = message;
73             return;
74         }
75         next = &p->next;
76     }
77
78     p = GSSEAP_CALLOC(1, sizeof(*p));
79     if (p == NULL) {
80         GSSEAP_FREE(message);
81         return;
82     }
83
84     p->code = minor;
85     p->message = message;
86
87     if (p != NULL)
88         *next = p;
89     else
90         GSSEAP_SETSPECIFIC(gssEapStatusInfoKey, p);
91 }
92
93 static const char *
94 getStatusInfo(OM_uint32 minor)
95 {
96     struct gss_eap_status_info *p;
97
98     GSSEAP_ONCE(&gssEapStatusInfoKeyOnce, createStatusInfoKey);
99
100     for (p = GSSEAP_GETSPECIFIC(gssEapStatusInfoKey);
101          p != NULL;
102          p = p->next) {
103         if (p->code == minor)
104             return p->message;
105     }
106
107     return NULL;
108 }
109
110 void
111 gssEapSaveStatusInfo(OM_uint32 minor, const char *format, ...)
112 {
113     char *s;
114     int n;
115     va_list ap;
116
117     va_start(ap, format);
118     n = vasprintf(&s, format, ap);
119     va_end(ap);
120
121     if (n >= 0)
122         saveStatusInfoNoCopy(minor, s);
123 }
124
125 OM_uint32
126 gss_display_status(OM_uint32 *minor,
127                    OM_uint32 status_value,
128                    int status_type,
129                    gss_OID mech_type,
130                    OM_uint32 *message_context,
131                    gss_buffer_t status_string)
132 {
133     OM_uint32 major = GSS_S_COMPLETE;
134     krb5_context krbContext = NULL;
135     const char *errMsg;
136
137     status_string->length = 0;
138     status_string->value = NULL;
139
140     if (!gssEapIsMechanismOid(mech_type)) {
141         return GSS_S_BAD_MECH;
142     }
143
144     if (status_type != GSS_C_MECH_CODE) {
145         /* we rely on the mechglue for GSS_C_GSS_CODE */
146         return GSS_S_BAD_STATUS;
147     }
148
149     errMsg = getStatusInfo(status_value);
150     if (errMsg == NULL) {
151         GSSEAP_KRB_INIT(&krbContext);
152
153         errMsg = krb5_get_error_message(krbContext, status_value);
154     }
155
156     if (errMsg != NULL)
157         major = makeStringBuffer(minor, errMsg, status_string);
158
159     if (krbContext != NULL)
160         krb5_free_error_message(krbContext, errMsg);
161
162     return major;
163 }