e826b198f48fb6ee8ab90544eb45160e89879408
[moonshot.git] / moonshot / mech_eap / display_status.c
1 /*
2  * Copyright (c) 2011, 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 /*
34  * Function for converting mechanism error codes to strings.
35  */
36
37 #include "gssapiP_eap.h"
38
39 struct gss_eap_status_info {
40     OM_uint32 code;
41     char *message;
42     struct gss_eap_status_info *next;
43 };
44
45 void
46 gssEapDestroyStatusInfo(struct gss_eap_status_info *p)
47 {
48     struct gss_eap_status_info *next;
49
50     for (; p != NULL; p = next) {
51         next = p->next;
52         GSSEAP_FREE(p->message);
53         GSSEAP_FREE(p);
54     }
55 }
56
57 /*
58  * Associate a message with a mechanism (minor) status code. This function
59  * takes ownership of the message regardless of success. The message must
60  * be explicitly cleared, if required, so it is suggested that a specific
61  * minor code is either always or never associated with a message, to avoid
62  * dangling (and potentially confusing) error messages.
63  */
64 static void
65 saveStatusInfoNoCopy(OM_uint32 minor, char *message)
66 {
67     struct gss_eap_status_info **next = NULL, *p=NULL;
68     struct gss_eap_thread_local_data *tld = gssEapGetThreadLocalData();
69
70     if (tld != NULL) {
71         for (p = tld->statusInfo; p != NULL; p = p->next) {
72             if (p->code == minor) {
73                 /* Set message in-place */
74                 if (p->message != NULL)
75                     GSSEAP_FREE(p->message);
76                 p->message = message;
77                 return;
78             }
79             next = &p->next;
80         }
81         p = GSSEAP_CALLOC(1, sizeof(*p));
82     }
83
84     if (p == NULL) {
85         if (message != NULL)
86             GSSEAP_FREE(message);
87         return;
88     }
89
90     p->code = minor;
91     p->message = message;
92
93     if (next != NULL)
94         *next = p;
95     else
96         tld->statusInfo = p;
97 }
98
99 static const char *
100 getStatusInfo(OM_uint32 minor)
101 {
102     struct gss_eap_status_info *p;
103     struct gss_eap_thread_local_data *tld = gssEapGetThreadLocalData();
104
105     if (tld != NULL) {
106         for (p = tld->statusInfo; p != NULL; p = p->next) {
107             if (p->code == minor)
108                 return p->message;
109         }
110     }
111
112     return NULL;
113 }
114
115 void
116 gssEapSaveStatusInfo(OM_uint32 minor, const char *format, ...)
117 {
118     char *s = NULL;
119     int n;
120     va_list ap;
121
122     if (format != NULL) {
123         va_start(ap, format);
124         n = vasprintf(&s, format, ap);
125         if (n == -1)
126             s = NULL;
127         va_end(ap);
128     }
129
130     saveStatusInfoNoCopy(minor, s);
131 }
132
133 OM_uint32 GSSAPI_CALLCONV
134 gss_display_status(OM_uint32 *minor,
135                    OM_uint32 status_value,
136                    int status_type,
137                    gss_OID mech_type,
138                    OM_uint32 *message_context,
139                    gss_buffer_t status_string)
140 {
141     OM_uint32 major;
142     krb5_context krbContext = NULL;
143     const char *errMsg;
144
145     status_string->length = 0;
146     status_string->value = NULL;
147
148     if (!gssEapIsMechanismOid(mech_type)) {
149         *minor = GSSEAP_WRONG_MECH;
150         return GSS_S_BAD_MECH;
151     }
152
153     if (status_type != GSS_C_MECH_CODE ||
154         *message_context != 0) {
155         /* we rely on the mechglue for GSS_C_GSS_CODE */
156         *minor = 0;
157         return GSS_S_BAD_STATUS;
158     }
159
160     errMsg = getStatusInfo(status_value);
161     if (errMsg == NULL) {
162         GSSEAP_KRB_INIT(&krbContext);
163
164         /* Try the com_err message */
165         errMsg = krb5_get_error_message(krbContext, status_value);
166     }
167
168     if (errMsg != NULL) {
169         major = makeStringBuffer(minor, errMsg, status_string);
170     } else {
171         major = GSS_S_COMPLETE;
172         *minor = 0;
173     }
174
175     if (krbContext != NULL)
176         krb5_free_error_message(krbContext, errMsg);
177
178     return major;
179 }