Don't assert fail on Windows if mech does not init
[mech_eap.orig] / mech_eap / util_tld.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  * Thread local data abstraction, using pthreads on Unix and the TlsXXX
35  * APIs on Windows.
36  */
37
38 #include "gssapiP_eap.h"
39
40 /* Clean up thread-local data; called on thread detach */
41 static void
42 destroyThreadLocalData(struct gss_eap_thread_local_data *tld)
43 {
44     if (tld->statusInfo != NULL)
45         gssEapDestroyStatusInfo(tld->statusInfo);
46     if (tld->krbContext != NULL)
47         gssEapDestroyKrbContext(tld->krbContext);
48     GSSEAP_FREE(tld);
49 }
50
51 #ifdef WIN32
52
53 /*
54  * This is the TLS index returned by TlsAlloc() on process init.
55  * Each thread, on thread attach in DllMain(), allocates its thread-local
56  * data and uses this index with TlsSetValue() to store it.
57  * It can then subsequently be retrieved with TlsGetValue().
58  */
59 static DWORD tlsIndex;
60
61 /* Access thread-local data */
62 struct gss_eap_thread_local_data *
63 gssEapGetThreadLocalData(void)
64 {
65     return TlsGetValue(tlsIndex);
66 }
67
68 BOOL WINAPI
69 DllMain(HINSTANCE hDLL,     /* DLL module handle */
70         DWORD reason,       /* reason called */
71         LPVOID reserved)    /* reserved */
72 {
73     struct gss_eap_thread_local_data *tlsData;
74     OM_uint32 major, minor;
75
76     switch (reason) {
77         case DLL_PROCESS_ATTACH:
78             /* Allocate a TLS index. */
79             major = gssEapInitiatorInit(&minor);
80             if (GSS_ERROR(major))
81                 return FALSE;
82
83             tlsIndex = TlsAlloc();
84             if (tlsIndex == TLS_OUT_OF_INDEXES)
85                 return FALSE;
86             /* No break: Initialize the index for first thread.*/
87         case DLL_THREAD_ATTACH:
88             /* Initialize the TLS index for this thread. */
89             tlsData = GSSEAP_CALLOC(1, sizeof(*tlsData));
90             if (tlsData != NULL)
91                 TlsSetValue(tlsIndex, tlsData);
92             break;
93         case DLL_THREAD_DETACH:
94             /* Release the allocated memory for this thread. */
95             tlsData = TlsGetValue(tlsIndex);
96             if (tlsData != NULL) {
97                 destroyThreadLocalData(tlsData);
98                 TlsSetValue(tlsIndex, NULL);
99             }
100             break;
101         case DLL_PROCESS_DETACH:
102             /* Release the allocated memory for this thread. */
103             tlsData = TlsGetValue(tlsIndex);
104             if (tlsData != NULL)
105                 destroyThreadLocalData(tlsData);
106             /* Release the TLS index. */
107             TlsFree(tlsIndex);
108             gssEapFinalize();
109             break;
110         default:
111             break;
112     }
113
114     return TRUE;
115     UNREFERENCED_PARAMETER(hDLL);
116     UNREFERENCED_PARAMETER(reserved);
117 }
118
119 #else /* WIN32 */
120
121 /* pthreads implementation */
122
123 static GSSEAP_THREAD_ONCE tldKeyOnce = GSSEAP_ONCE_INITIALIZER;
124 static GSSEAP_THREAD_KEY tldKey;
125
126 static void
127 pthreadDestroyThreadLocalData(void *arg)
128 {
129     struct gss_eap_thread_local_data* tld = arg;
130
131     if (tld != NULL)
132         destroyThreadLocalData(tld);
133 }
134
135 static void
136 createThreadLocalDataKey(void)
137 {
138     GSSEAP_KEY_CREATE(&tldKey, pthreadDestroyThreadLocalData);
139 }
140
141 struct gss_eap_thread_local_data *
142 gssEapGetThreadLocalData()
143 {
144     struct gss_eap_thread_local_data *tld;
145
146     GSSEAP_ONCE(&tldKeyOnce, createThreadLocalDataKey);
147
148     tld = GSSEAP_GETSPECIFIC(tldKey);
149     if (tld == NULL) {
150         tld = GSSEAP_CALLOC(1, sizeof(*tld));
151         if (tld == NULL)
152             return NULL;
153
154         GSSEAP_SETSPECIFIC(tldKey, tld);
155     }
156
157     return tld;
158 }
159
160 #endif /* WIN32 */