initial libradsec port
[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         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 #if 0
124 void
125 gssEapSaveKrbStatusInfo(OM_uint32 minor)
126 {
127     krb5_context krbContext = NULL;
128     OM_uint32 tmpMinor;
129     const char *s;
130
131     gssEapKerberosInit(&tmpMinor, &krbContext);
132
133     if (krbContext != NULL) {
134         s = krb5_get_error_message(krbContext, minor);
135         gssEapSaveStatusInfo(minor, "%s", s);
136         krb5_set_error_message(krbContext, minor, "%s", s);
137         krb5_free_error_message(krbContext, s);
138     }
139 }
140 #endif
141
142 OM_uint32
143 gss_display_status(OM_uint32 *minor,
144                    OM_uint32 status_value,
145                    int status_type,
146                    gss_OID mech_type,
147                    OM_uint32 *message_context,
148                    gss_buffer_t status_string)
149 {
150     OM_uint32 major = GSS_S_COMPLETE;
151     krb5_context krbContext;
152     const char *errMsg;
153
154     status_string->length = 0;
155     status_string->value = NULL;
156
157     if (!gssEapIsMechanismOid(mech_type)) {
158         return GSS_S_BAD_MECH;
159     }
160
161     if (status_type != GSS_C_MECH_CODE) {
162         /* we rely on the mechglue for GSS_C_GSS_CODE */
163         return GSS_S_BAD_STATUS;
164     }
165
166     GSSEAP_KRB_INIT(&krbContext);
167
168     errMsg = krb5_get_error_message(krbContext, status_value);
169
170     if (errMsg != NULL) {
171         major = makeStringBuffer(minor, errMsg, status_string);
172     }
173
174     krb5_free_error_message(krbContext, errMsg);
175
176     return major;
177 }