create TLD on-demand for threads started pre-DLL load
[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 = TLS_OUT_OF_INDEXES;
60
61 /* Access thread-local data */
62 struct gss_eap_thread_local_data *
63 gssEapGetThreadLocalData(void)
64 {
65     struct gss_eap_thread_local_data *tlsData;
66
67     GSSEAP_ASSERT(tlsIndex != TLS_OUT_OF_INDEXES);
68
69     tlsData = TlsGetValue(tlsIndex);
70     if (tlsData == NULL) {
71         tlsData = GSSEAP_CALLOC(1, sizeof(*tlsData));
72         TlsSetValue(tlsIndex, tlsData);
73     }
74
75     return tlsData;
76 }
77
78 BOOL WINAPI
79 DllMain(HINSTANCE hDLL,     /* DLL module handle */
80         DWORD reason,       /* reason called */
81         LPVOID reserved)    /* reserved */
82 {
83     struct gss_eap_thread_local_data *tlsData;
84     OM_uint32 major, minor;
85
86     switch (reason) {
87         case DLL_PROCESS_ATTACH:
88             /* Allocate a TLS index. */
89             major = gssEapInitiatorInit(&minor);
90             if (GSS_ERROR(major))
91                 return FALSE;
92
93             tlsIndex = TlsAlloc();
94             if (tlsIndex == TLS_OUT_OF_INDEXES)
95                 return FALSE;
96             /* No break: Initialize the index for first thread.*/
97         case DLL_THREAD_ATTACH:
98             /* Initialize the TLS index for this thread. */
99             tlsData = GSSEAP_CALLOC(1, sizeof(*tlsData));
100             if (tlsData == NULL)
101                 return FALSE;
102             TlsSetValue(tlsIndex, tlsData);
103             break;
104         case DLL_THREAD_DETACH:
105             /* Release the allocated memory for this thread. */
106             tlsData = TlsGetValue(tlsIndex);
107             if (tlsData != NULL) {
108                 destroyThreadLocalData(tlsData);
109                 TlsSetValue(tlsIndex, NULL);
110             }
111             break;
112         case DLL_PROCESS_DETACH:
113             /* Release the TLS index. */
114             TlsFree(tlsIndex);
115             gssEapFinalize();
116             break;
117         default:
118             break;
119     }
120
121     return TRUE;
122     UNREFERENCED_PARAMETER(hDLL);
123     UNREFERENCED_PARAMETER(reserved);
124 }
125
126 #else /* WIN32 */
127
128 /* pthreads implementation */
129
130 static GSSEAP_THREAD_ONCE tldKeyOnce = GSSEAP_ONCE_INITIALIZER;
131 static GSSEAP_THREAD_KEY tldKey;
132
133 static void
134 pthreadDestroyThreadLocalData(void *arg)
135 {
136     struct gss_eap_thread_local_data* tld = arg;
137
138     if (tld != NULL)
139         destroyThreadLocalData(tld);
140 }
141
142 static void
143 createThreadLocalDataKey(void)
144 {
145     GSSEAP_KEY_CREATE(&tldKey, pthreadDestroyThreadLocalData);
146 }
147
148 struct gss_eap_thread_local_data *
149 gssEapGetThreadLocalData()
150 {
151     struct gss_eap_thread_local_data *tld;
152
153     GSSEAP_ONCE(&tldKeyOnce, createThreadLocalDataKey);
154
155     tld = GSSEAP_GETSPECIFIC(tldKey);
156     if (tld == NULL) {
157         tld = GSSEAP_CALLOC(1, sizeof(*tld));
158         if (tld == NULL)
159             return NULL;
160
161         GSSEAP_SETSPECIFIC(tldKey, tld);
162     }
163
164     return tld;
165 }
166
167 #endif /* WIN32 */