This case in the "dso_unload" handlers should not be reported as an error -
[openssl.git] / crypto / dso / dso_win32.c
1 /* dso_win32.c */
2 /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL
3  * project 2000.
4  */
5 /* ====================================================================
6  * Copyright (c) 2000 The OpenSSL Project.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer. 
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in
17  *    the documentation and/or other materials provided with the
18  *    distribution.
19  *
20  * 3. All advertising materials mentioning features or use of this
21  *    software must display the following acknowledgment:
22  *    "This product includes software developed by the OpenSSL Project
23  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24  *
25  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26  *    endorse or promote products derived from this software without
27  *    prior written permission. For written permission, please contact
28  *    licensing@OpenSSL.org.
29  *
30  * 5. Products derived from this software may not be called "OpenSSL"
31  *    nor may "OpenSSL" appear in their names without prior written
32  *    permission of the OpenSSL Project.
33  *
34  * 6. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by the OpenSSL Project
37  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38  *
39  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
43  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50  * OF THE POSSIBILITY OF SUCH DAMAGE.
51  * ====================================================================
52  *
53  * This product includes cryptographic software written by Eric Young
54  * (eay@cryptsoft.com).  This product includes software written by Tim
55  * Hudson (tjh@cryptsoft.com).
56  *
57  */
58
59 #include <stdio.h>
60 #include "cryptlib.h"
61 #include <openssl/dso.h>
62
63 #ifndef WIN32
64 DSO_METHOD *DSO_METHOD_win32(void)
65         {
66         return NULL;
67         }
68 #else
69
70 /* Part of the hack in "win32_load" ... */
71 #define DSO_MAX_TRANSLATED_SIZE 256
72
73 static int win32_load(DSO *dso, const char *filename);
74 static int win32_unload(DSO *dso);
75 static int win32_bind(DSO *dso, const char *symname, void **symptr);
76 #if 0
77 static int win32_unbind(DSO *dso, char *symname, void *symptr);
78 static int win32_init(DSO *dso);
79 static int win32_finish(DSO *dso);
80 #endif
81 static long win32_ctrl(DSO *dso, int cmd, long larg, void *parg);
82
83 static DSO_METHOD dso_meth_win32 = {
84         "OpenSSL 'win32' shared library method",
85         win32_load,
86         win32_unload,
87         win32_bind,
88 /* For now, "unbind" doesn't exist */
89 #if 0
90         NULL, /* unbind */
91 #endif
92         win32_ctrl,
93         NULL, /* init */
94         NULL  /* finish */
95         };
96
97 DSO_METHOD *DSO_METHOD_win32(void)
98         {
99         return(&dso_meth_win32);
100         }
101
102 /* For this DSO_METHOD, our meth_data STACK will contain;
103  * (i) a pointer to the handle (HINSTANCE) returned from
104  *     LoadLibrary(), and copied.
105  */
106
107 static int win32_load(DSO *dso, const char *filename)
108         {
109         HINSTANCE h, *p;
110         char translated[DSO_MAX_TRANSLATED_SIZE];
111         int len;
112
113         /* NB: This is a hideous hack, but I'm not yet sure what
114          * to replace it with. This attempts to convert any filename,
115          * that looks like it has no path information, into a
116          * translated form, e. "blah" -> "blah.dll" ... I'm more
117          * comfortable putting hacks into win32 code though ;-) */
118         len = strlen(filename);
119         if((dso->flags & DSO_FLAG_NAME_TRANSLATION) &&
120                         (len + 4 < DSO_MAX_TRANSLATED_SIZE) &&
121                         (strstr(filename, "/") == NULL)
122                         (strstr(filename, "\\") == NULL)
123                         (strstr(filename, ":") == NULL))
124                 {
125                 sprintf(translated, "%s.dll", filename);
126                 h = LoadLibrary(translated);
127                 }
128         else
129                 h = LoadLibrary(filename);
130         if(h == NULL)
131                 {
132                 DSOerr(DSO_F_WIN32_LOAD,DSO_R_LOAD_FAILED);
133                 return(0);
134                 }
135         p = (HINSTANCE *)Malloc(sizeof(HINSTANCE));
136         if(p == NULL)
137                 {
138                 DSOerr(DSO_F_WIN32_LOAD,ERR_R_MALLOC_FAILURE);
139                 FreeLibrary(h);
140                 return(0);
141                 }
142         *p = h;
143         if(!sk_push(dso->meth_data, (char *)p))
144                 {
145                 DSOerr(DSO_F_WIN32_LOAD,DSO_R_STACK_ERROR);
146                 FreeLibrary(h);
147                 Free(p);
148                 return(0);
149                 }
150         return(1);
151         }
152
153 static int win32_unload(DSO *dso)
154         {
155         HINSTANCE *p;
156         if(dso == NULL)
157                 {
158                 DSOerr(DSO_F_WIN32_UNLOAD,ERR_R_PASSED_NULL_PARAMETER);
159                 return(0);
160                 }
161         if(sk_num(dso->meth_data) < 1)
162                 return(1);
163         p = (HINSTANCE *)sk_pop(dso->meth_data);
164         if(p == NULL)
165                 {
166                 DSOerr(DSO_F_WIN32_UNLOAD,DSO_R_NULL_HANDLE);
167                 return(0);
168                 }
169         if(!FreeLibrary(p))
170                 {
171                 DSOerr(DSO_F_WIN32_UNLOAD,DSO_R_UNLOAD_FAILED);
172                 /* We should push the value back onto the stack in
173                  * case of a retry. */
174                 sk_push(dso->meth_data, (char *)p);
175                 return(0);
176                 }
177         /* Cleanup */
178         Free(p);
179         return(1);
180         }
181
182 static int win32_bind(DSO *dso, const char *symname, void **symptr)
183         {
184         HINSTANCE *ptr;
185         void *sym;
186
187         if((dso == NULL) || (symptr == NULL) || (symname == NULL))
188                 {
189                 DSOerr(DSO_F_WIN32_BIND,ERR_R_PASSED_NULL_PARAMETER);
190                 return(0);
191                 }
192         if(sk_num(dso->meth_data) < 1)
193                 {
194                 DSOerr(DSO_F_WIN32_BIND,DSO_R_STACK_ERROR);
195                 return(0);
196                 }
197         ptr = (HINSTANCE *)sk_value(dso->meth_data, sk_num(dso->meth_data) - 1);
198         if(ptr == NULL)
199                 {
200                 DSOerr(DSO_F_WIN32_BIND,DSO_R_NULL_HANDLE);
201                 return(0);
202                 }
203         sym = GetProcAddress(*ptr, symname);
204         if(sym == NULL)
205                 {
206                 DSOerr(DSO_F_WIN32_BIND,DSO_R_SYM_FAILURE);
207                 return(0);
208                 }
209         *symptr = sym;
210         return(1);
211         }
212
213 static int win32_ctrl(DSO *dso, int cmd, long larg, void *parg)
214         {
215         if(dso == NULL)
216                 {
217                 DSOerr(DSO_F_WIN32_CTRL,ERR_R_PASSED_NULL_PARAMETER);
218                 return(-1);
219                 }
220         switch(cmd)
221                 {
222         case DSO_CTRL_GET_FLAGS:
223                 return dso->flags;
224         case DSO_CTRL_SET_FLAGS:
225                 dso->flags = (int)larg;
226                 return(0);
227         case DSO_CTRL_OR_FLAGS:
228                 dso->flags |= (int)larg;
229                 return(0);
230         default:
231                 break;
232                 }
233         DSOerr(DSO_F_WIN32_CTRL,DSO_R_UNKNOWN_COMMAND);
234         return(-1);
235         }
236
237 #endif /* WIN32 */