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