Let Configure figure out the diverse shared library and DSO extensions
[openssl.git] / crypto / dso / dso_dl.c
1 /*
2  * Written by Richard Levitte (richard@levitte.org) for the OpenSSL project
3  * 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 "internal/cryptlib.h"
61 #include <openssl/dso.h>
62 #include "internal/dso_conf.h"
63
64 #ifndef DSO_DL
65 DSO_METHOD *DSO_METHOD_dl(void)
66 {
67     return NULL;
68 }
69 #else
70
71 # include <dl.h>
72
73 /* Part of the hack in "dl_load" ... */
74 # define DSO_MAX_TRANSLATED_SIZE 256
75
76 static int dl_load(DSO *dso);
77 static int dl_unload(DSO *dso);
78 static void *dl_bind_var(DSO *dso, const char *symname);
79 static DSO_FUNC_TYPE dl_bind_func(DSO *dso, const char *symname);
80 static char *dl_name_converter(DSO *dso, const char *filename);
81 static char *dl_merger(DSO *dso, const char *filespec1,
82                        const char *filespec2);
83 static int dl_pathbyaddr(void *addr, char *path, int sz);
84 static void *dl_globallookup(const char *name);
85
86 static DSO_METHOD dso_meth_dl = {
87     "OpenSSL 'dl' shared library method",
88     dl_load,
89     dl_unload,
90     dl_bind_var,
91     dl_bind_func,
92     NULL,                       /* ctrl */
93     dl_name_converter,
94     dl_merger,
95     NULL,                       /* init */
96     NULL,                       /* finish */
97     dl_pathbyaddr,
98     dl_globallookup
99 };
100
101 DSO_METHOD *DSO_METHOD_dl(void)
102 {
103     return (&dso_meth_dl);
104 }
105
106 /*
107  * For this DSO_METHOD, our meth_data STACK will contain; (i) the handle
108  * (shl_t) returned from shl_load(). NB: I checked on HPUX11 and shl_t is
109  * itself a pointer type so the cast is safe.
110  */
111
112 static int dl_load(DSO *dso)
113 {
114     shl_t ptr = NULL;
115     /*
116      * We don't do any fancy retries or anything, just take the method's (or
117      * DSO's if it has the callback set) best translation of the
118      * platform-independent filename and try once with that.
119      */
120     char *filename = DSO_convert_filename(dso, NULL);
121
122     if (filename == NULL) {
123         DSOerr(DSO_F_DL_LOAD, DSO_R_NO_FILENAME);
124         goto err;
125     }
126     ptr = shl_load(filename, BIND_IMMEDIATE |
127                    (dso->flags & DSO_FLAG_NO_NAME_TRANSLATION ? 0 :
128                     DYNAMIC_PATH), 0L);
129     if (ptr == NULL) {
130         DSOerr(DSO_F_DL_LOAD, DSO_R_LOAD_FAILED);
131         ERR_add_error_data(4, "filename(", filename, "): ", strerror(errno));
132         goto err;
133     }
134     if (!sk_push(dso->meth_data, (char *)ptr)) {
135         DSOerr(DSO_F_DL_LOAD, DSO_R_STACK_ERROR);
136         goto err;
137     }
138     /*
139      * Success, stick the converted filename we've loaded under into the DSO
140      * (it also serves as the indicator that we are currently loaded).
141      */
142     dso->loaded_filename = filename;
143     return (1);
144  err:
145     /* Cleanup! */
146     OPENSSL_free(filename);
147     if (ptr != NULL)
148         shl_unload(ptr);
149     return (0);
150 }
151
152 static int dl_unload(DSO *dso)
153 {
154     shl_t ptr;
155     if (dso == NULL) {
156         DSOerr(DSO_F_DL_UNLOAD, ERR_R_PASSED_NULL_PARAMETER);
157         return (0);
158     }
159     if (sk_num(dso->meth_data) < 1)
160         return (1);
161     /* Is this statement legal? */
162     ptr = (shl_t) sk_pop(dso->meth_data);
163     if (ptr == NULL) {
164         DSOerr(DSO_F_DL_UNLOAD, DSO_R_NULL_HANDLE);
165         /*
166          * Should push the value back onto the stack in case of a retry.
167          */
168         sk_push(dso->meth_data, (char *)ptr);
169         return (0);
170     }
171     shl_unload(ptr);
172     return (1);
173 }
174
175 static void *dl_bind_var(DSO *dso, const char *symname)
176 {
177     shl_t ptr;
178     void *sym;
179
180     if ((dso == NULL) || (symname == NULL)) {
181         DSOerr(DSO_F_DL_BIND_VAR, ERR_R_PASSED_NULL_PARAMETER);
182         return (NULL);
183     }
184     if (sk_num(dso->meth_data) < 1) {
185         DSOerr(DSO_F_DL_BIND_VAR, DSO_R_STACK_ERROR);
186         return (NULL);
187     }
188     ptr = (shl_t) sk_value(dso->meth_data, sk_num(dso->meth_data) - 1);
189     if (ptr == NULL) {
190         DSOerr(DSO_F_DL_BIND_VAR, DSO_R_NULL_HANDLE);
191         return (NULL);
192     }
193     if (shl_findsym(&ptr, symname, TYPE_UNDEFINED, &sym) < 0) {
194         DSOerr(DSO_F_DL_BIND_VAR, DSO_R_SYM_FAILURE);
195         ERR_add_error_data(4, "symname(", symname, "): ", strerror(errno));
196         return (NULL);
197     }
198     return (sym);
199 }
200
201 static DSO_FUNC_TYPE dl_bind_func(DSO *dso, const char *symname)
202 {
203     shl_t ptr;
204     void *sym;
205
206     if ((dso == NULL) || (symname == NULL)) {
207         DSOerr(DSO_F_DL_BIND_FUNC, ERR_R_PASSED_NULL_PARAMETER);
208         return (NULL);
209     }
210     if (sk_num(dso->meth_data) < 1) {
211         DSOerr(DSO_F_DL_BIND_FUNC, DSO_R_STACK_ERROR);
212         return (NULL);
213     }
214     ptr = (shl_t) sk_value(dso->meth_data, sk_num(dso->meth_data) - 1);
215     if (ptr == NULL) {
216         DSOerr(DSO_F_DL_BIND_FUNC, DSO_R_NULL_HANDLE);
217         return (NULL);
218     }
219     if (shl_findsym(&ptr, symname, TYPE_UNDEFINED, &sym) < 0) {
220         DSOerr(DSO_F_DL_BIND_FUNC, DSO_R_SYM_FAILURE);
221         ERR_add_error_data(4, "symname(", symname, "): ", strerror(errno));
222         return (NULL);
223     }
224     return ((DSO_FUNC_TYPE)sym);
225 }
226
227 static char *dl_merger(DSO *dso, const char *filespec1, const char *filespec2)
228 {
229     char *merged;
230
231     if (!filespec1 && !filespec2) {
232         DSOerr(DSO_F_DL_MERGER, ERR_R_PASSED_NULL_PARAMETER);
233         return (NULL);
234     }
235     /*
236      * If the first file specification is a rooted path, it rules. same goes
237      * if the second file specification is missing.
238      */
239     if (!filespec2 || filespec1[0] == '/') {
240         merged = OPENSSL_strdup(filespec1);
241         if (merged == NULL) {
242             DSOerr(DSO_F_DL_MERGER, ERR_R_MALLOC_FAILURE);
243             return (NULL);
244         }
245     }
246     /*
247      * If the first file specification is missing, the second one rules.
248      */
249     else if (!filespec1) {
250         merged = OPENSSL_strdup(filespec2);
251         if (merged == NULL) {
252             DSOerr(DSO_F_DL_MERGER, ERR_R_MALLOC_FAILURE);
253             return (NULL);
254         }
255     } else
256         /*
257          * This part isn't as trivial as it looks.  It assumes that the
258          * second file specification really is a directory, and makes no
259          * checks whatsoever.  Therefore, the result becomes the
260          * concatenation of filespec2 followed by a slash followed by
261          * filespec1.
262          */
263     {
264         int spec2len, len;
265
266         spec2len = (filespec2 ? strlen(filespec2) : 0);
267         len = spec2len + (filespec1 ? strlen(filespec1) : 0);
268
269         if (spec2len && filespec2[spec2len - 1] == '/') {
270             spec2len--;
271             len--;
272         }
273         merged = OPENSSL_malloc(len + 2);
274         if (merged == NULL) {
275             DSOerr(DSO_F_DL_MERGER, ERR_R_MALLOC_FAILURE);
276             return (NULL);
277         }
278         strcpy(merged, filespec2);
279         merged[spec2len] = '/';
280         strcpy(&merged[spec2len + 1], filespec1);
281     }
282     return (merged);
283 }
284
285 /*
286  * This function is identical to the one in dso_dlfcn.c, but as it is highly
287  * unlikely that both the "dl" *and* "dlfcn" variants are being compiled at
288  * the same time, there's no great duplicating the code. Figuring out an
289  * elegant way to share one copy of the code would be more difficult and
290  * would not leave the implementations independent.
291  */
292 static char *dl_name_converter(DSO *dso, const char *filename)
293 {
294     char *translated;
295     int len, rsize, transform;
296
297     len = strlen(filename);
298     rsize = len + 1;
299     transform = (strstr(filename, "/") == NULL);
300     {
301         /* We will convert this to "%s.s?" or "lib%s.s?" */
302         rsize += strlen(DSO_EXTENSION); /* The length of ".s?" */
303         if ((DSO_flags(dso) & DSO_FLAG_NAME_TRANSLATION_EXT_ONLY) == 0)
304             rsize += 3;         /* The length of "lib" */
305     }
306     translated = OPENSSL_malloc(rsize);
307     if (translated == NULL) {
308         DSOerr(DSO_F_DL_NAME_CONVERTER, DSO_R_NAME_TRANSLATION_FAILED);
309         return (NULL);
310     }
311     if (transform) {
312         if ((DSO_flags(dso) & DSO_FLAG_NAME_TRANSLATION_EXT_ONLY) == 0)
313             sprintf(translated, "lib%s%s", filename, DSO_EXTENSION);
314         else
315             sprintf(translated, "%s%s", filename, DSO_EXTENSION);
316     } else
317         sprintf(translated, "%s", filename);
318     return (translated);
319 }
320
321 static int dl_pathbyaddr(void *addr, char *path, int sz)
322 {
323     struct shl_descriptor inf;
324     int i, len;
325
326     if (addr == NULL) {
327         union {
328             int (*f) (void *, char *, int);
329             void *p;
330         } t = {
331             dl_pathbyaddr
332         };
333         addr = t.p;
334     }
335
336     for (i = -1; shl_get_r(i, &inf) == 0; i++) {
337         if (((size_t)addr >= inf.tstart && (size_t)addr < inf.tend) ||
338             ((size_t)addr >= inf.dstart && (size_t)addr < inf.dend)) {
339             len = (int)strlen(inf.filename);
340             if (sz <= 0)
341                 return len + 1;
342             if (len >= sz)
343                 len = sz - 1;
344             memcpy(path, inf.filename, len);
345             path[len++] = 0;
346             return len;
347         }
348     }
349
350     return -1;
351 }
352
353 static void *dl_globallookup(const char *name)
354 {
355     void *ret;
356     shl_t h = NULL;
357
358     return shl_findsym(&h, name, TYPE_UNDEFINED, &ret) ? NULL : ret;
359 }
360 #endif                          /* DSO_DL */