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