rsa/rsa_oaep.c: remove memcpy calls from RSA_padding_check_PKCS1_OAEP.
[oweals/openssl.git] / crypto / dso / dso_dlfcn.c
1 /*
2  * Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 /*
11  * We need to do this early, because stdio.h includes the header files that
12  * handle _GNU_SOURCE and other similar macros.  Defining it later is simply
13  * too late, because those headers are protected from re- inclusion.
14  */
15 #ifndef _GNU_SOURCE
16 # define _GNU_SOURCE            /* make sure dladdr is declared */
17 #endif
18
19 #include "dso_locl.h"
20
21 #ifdef DSO_DLFCN
22
23 # ifdef HAVE_DLFCN_H
24 #  ifdef __osf__
25 #   define __EXTENSIONS__
26 #  endif
27 #  include <dlfcn.h>
28 #  define HAVE_DLINFO 1
29 #  if defined(__CYGWIN__) || \
30      defined(__SCO_VERSION__) || defined(_SCO_ELF) || \
31      (defined(__osf__) && !defined(RTLD_NEXT))     || \
32      (defined(__OpenBSD__) && !defined(RTLD_SELF)) || \
33         defined(__ANDROID__)
34 #   undef HAVE_DLINFO
35 #  endif
36 # endif
37
38 /* Part of the hack in "dlfcn_load" ... */
39 # define DSO_MAX_TRANSLATED_SIZE 256
40
41 static int dlfcn_load(DSO *dso);
42 static int dlfcn_unload(DSO *dso);
43 static DSO_FUNC_TYPE dlfcn_bind_func(DSO *dso, const char *symname);
44 static char *dlfcn_name_converter(DSO *dso, const char *filename);
45 static char *dlfcn_merger(DSO *dso, const char *filespec1,
46                           const char *filespec2);
47 static int dlfcn_pathbyaddr(void *addr, char *path, int sz);
48 static void *dlfcn_globallookup(const char *name);
49
50 static DSO_METHOD dso_meth_dlfcn = {
51     "OpenSSL 'dlfcn' shared library method",
52     dlfcn_load,
53     dlfcn_unload,
54     dlfcn_bind_func,
55     NULL,                       /* ctrl */
56     dlfcn_name_converter,
57     dlfcn_merger,
58     NULL,                       /* init */
59     NULL,                       /* finish */
60     dlfcn_pathbyaddr,
61     dlfcn_globallookup
62 };
63
64 DSO_METHOD *DSO_METHOD_openssl(void)
65 {
66     return &dso_meth_dlfcn;
67 }
68
69 /*
70  * Prior to using the dlopen() function, we should decide on the flag we
71  * send. There's a few different ways of doing this and it's a messy
72  * venn-diagram to match up which platforms support what. So as we don't have
73  * autoconf yet, I'm implementing a hack that could be hacked further
74  * relatively easily to deal with cases as we find them. Initially this is to
75  * cope with OpenBSD.
76  */
77 # if defined(__OpenBSD__) || defined(__NetBSD__)
78 #  ifdef DL_LAZY
79 #   define DLOPEN_FLAG DL_LAZY
80 #  else
81 #   ifdef RTLD_NOW
82 #    define DLOPEN_FLAG RTLD_NOW
83 #   else
84 #    define DLOPEN_FLAG 0
85 #   endif
86 #  endif
87 # else
88 #  define DLOPEN_FLAG RTLD_NOW  /* Hope this works everywhere else */
89 # endif
90
91 /*
92  * For this DSO_METHOD, our meth_data STACK will contain; (i) the handle
93  * (void*) returned from dlopen().
94  */
95
96 static int dlfcn_load(DSO *dso)
97 {
98     void *ptr = NULL;
99     /* See applicable comments in dso_dl.c */
100     char *filename = DSO_convert_filename(dso, NULL);
101     int flags = DLOPEN_FLAG;
102
103     if (filename == NULL) {
104         DSOerr(DSO_F_DLFCN_LOAD, DSO_R_NO_FILENAME);
105         goto err;
106     }
107 # ifdef RTLD_GLOBAL
108     if (dso->flags & DSO_FLAG_GLOBAL_SYMBOLS)
109         flags |= RTLD_GLOBAL;
110 # endif
111     ptr = dlopen(filename, flags);
112     if (ptr == NULL) {
113         DSOerr(DSO_F_DLFCN_LOAD, DSO_R_LOAD_FAILED);
114         ERR_add_error_data(4, "filename(", filename, "): ", dlerror());
115         goto err;
116     }
117     if (!sk_void_push(dso->meth_data, (char *)ptr)) {
118         DSOerr(DSO_F_DLFCN_LOAD, DSO_R_STACK_ERROR);
119         goto err;
120     }
121     /* Success */
122     dso->loaded_filename = filename;
123     return (1);
124  err:
125     /* Cleanup! */
126     OPENSSL_free(filename);
127     if (ptr != NULL)
128         dlclose(ptr);
129     return (0);
130 }
131
132 static int dlfcn_unload(DSO *dso)
133 {
134     void *ptr;
135     if (dso == NULL) {
136         DSOerr(DSO_F_DLFCN_UNLOAD, ERR_R_PASSED_NULL_PARAMETER);
137         return (0);
138     }
139     if (sk_void_num(dso->meth_data) < 1)
140         return (1);
141     ptr = sk_void_pop(dso->meth_data);
142     if (ptr == NULL) {
143         DSOerr(DSO_F_DLFCN_UNLOAD, DSO_R_NULL_HANDLE);
144         /*
145          * Should push the value back onto the stack in case of a retry.
146          */
147         sk_void_push(dso->meth_data, ptr);
148         return (0);
149     }
150     /* For now I'm not aware of any errors associated with dlclose() */
151     dlclose(ptr);
152     return (1);
153 }
154
155 static DSO_FUNC_TYPE dlfcn_bind_func(DSO *dso, const char *symname)
156 {
157     void *ptr;
158     union {
159         DSO_FUNC_TYPE sym;
160         void *dlret;
161     } u;
162
163     if ((dso == NULL) || (symname == NULL)) {
164         DSOerr(DSO_F_DLFCN_BIND_FUNC, ERR_R_PASSED_NULL_PARAMETER);
165         return (NULL);
166     }
167     if (sk_void_num(dso->meth_data) < 1) {
168         DSOerr(DSO_F_DLFCN_BIND_FUNC, DSO_R_STACK_ERROR);
169         return (NULL);
170     }
171     ptr = sk_void_value(dso->meth_data, sk_void_num(dso->meth_data) - 1);
172     if (ptr == NULL) {
173         DSOerr(DSO_F_DLFCN_BIND_FUNC, DSO_R_NULL_HANDLE);
174         return (NULL);
175     }
176     u.dlret = dlsym(ptr, symname);
177     if (u.dlret == NULL) {
178         DSOerr(DSO_F_DLFCN_BIND_FUNC, DSO_R_SYM_FAILURE);
179         ERR_add_error_data(4, "symname(", symname, "): ", dlerror());
180         return (NULL);
181     }
182     return u.sym;
183 }
184
185 static char *dlfcn_merger(DSO *dso, const char *filespec1,
186                           const char *filespec2)
187 {
188     char *merged;
189
190     if (!filespec1 && !filespec2) {
191         DSOerr(DSO_F_DLFCN_MERGER, ERR_R_PASSED_NULL_PARAMETER);
192         return (NULL);
193     }
194     /*
195      * If the first file specification is a rooted path, it rules. same goes
196      * if the second file specification is missing.
197      */
198     if (!filespec2 || (filespec1 != NULL && filespec1[0] == '/')) {
199         merged = OPENSSL_strdup(filespec1);
200         if (merged == NULL) {
201             DSOerr(DSO_F_DLFCN_MERGER, ERR_R_MALLOC_FAILURE);
202             return (NULL);
203         }
204     }
205     /*
206      * If the first file specification is missing, the second one rules.
207      */
208     else if (!filespec1) {
209         merged = OPENSSL_strdup(filespec2);
210         if (merged == NULL) {
211             DSOerr(DSO_F_DLFCN_MERGER, ERR_R_MALLOC_FAILURE);
212             return (NULL);
213         }
214     } else {
215         /*
216          * This part isn't as trivial as it looks.  It assumes that the
217          * second file specification really is a directory, and makes no
218          * checks whatsoever.  Therefore, the result becomes the
219          * concatenation of filespec2 followed by a slash followed by
220          * filespec1.
221          */
222         int spec2len, len;
223
224         spec2len = strlen(filespec2);
225         len = spec2len + strlen(filespec1);
226
227         if (spec2len && filespec2[spec2len - 1] == '/') {
228             spec2len--;
229             len--;
230         }
231         merged = OPENSSL_malloc(len + 2);
232         if (merged == NULL) {
233             DSOerr(DSO_F_DLFCN_MERGER, ERR_R_MALLOC_FAILURE);
234             return (NULL);
235         }
236         strcpy(merged, filespec2);
237         merged[spec2len] = '/';
238         strcpy(&merged[spec2len + 1], filespec1);
239     }
240     return (merged);
241 }
242
243 static char *dlfcn_name_converter(DSO *dso, const char *filename)
244 {
245     char *translated;
246     int len, rsize, transform;
247
248     len = strlen(filename);
249     rsize = len + 1;
250     transform = (strstr(filename, "/") == NULL);
251     if (transform) {
252         /* We will convert this to "%s.so" or "lib%s.so" etc */
253         rsize += strlen(DSO_EXTENSION);    /* The length of ".so" */
254         if ((DSO_flags(dso) & DSO_FLAG_NAME_TRANSLATION_EXT_ONLY) == 0)
255             rsize += 3;         /* The length of "lib" */
256     }
257     translated = OPENSSL_malloc(rsize);
258     if (translated == NULL) {
259         DSOerr(DSO_F_DLFCN_NAME_CONVERTER, DSO_R_NAME_TRANSLATION_FAILED);
260         return (NULL);
261     }
262     if (transform) {
263         if ((DSO_flags(dso) & DSO_FLAG_NAME_TRANSLATION_EXT_ONLY) == 0)
264             sprintf(translated, "lib%s" DSO_EXTENSION, filename);
265         else
266             sprintf(translated, "%s" DSO_EXTENSION, filename);
267     } else
268         sprintf(translated, "%s", filename);
269     return (translated);
270 }
271
272 # ifdef __sgi
273 /*-
274 This is a quote from IRIX manual for dladdr(3c):
275
276      <dlfcn.h> does not contain a prototype for dladdr or definition of
277      Dl_info.  The #include <dlfcn.h>  in the SYNOPSIS line is traditional,
278      but contains no dladdr prototype and no IRIX library contains an
279      implementation.  Write your own declaration based on the code below.
280
281      The following code is dependent on internal interfaces that are not
282      part of the IRIX compatibility guarantee; however, there is no future
283      intention to change this interface, so on a practical level, the code
284      below is safe to use on IRIX.
285 */
286 #  include <rld_interface.h>
287 #  ifndef _RLD_INTERFACE_DLFCN_H_DLADDR
288 #   define _RLD_INTERFACE_DLFCN_H_DLADDR
289 typedef struct Dl_info {
290     const char *dli_fname;
291     void *dli_fbase;
292     const char *dli_sname;
293     void *dli_saddr;
294     int dli_version;
295     int dli_reserved1;
296     long dli_reserved[4];
297 } Dl_info;
298 #  else
299 typedef struct Dl_info Dl_info;
300 #  endif
301 #  define _RLD_DLADDR             14
302
303 static int dladdr(void *address, Dl_info *dl)
304 {
305     void *v;
306     v = _rld_new_interface(_RLD_DLADDR, address, dl);
307     return (int)v;
308 }
309 # endif                         /* __sgi */
310
311 # ifdef _AIX
312 /*-
313  * See IBM's AIX Version 7.2, Technical Reference:
314  *  Base Operating System and Extensions, Volume 1 and 2
315  *  https://www.ibm.com/support/knowledgecenter/ssw_aix_72/com.ibm.aix.base/technicalreferences.htm
316  */
317 #  include <sys/ldr.h>
318 #  include <errno.h>
319 /* ~ 64 * (sizeof(struct ld_info) + _XOPEN_PATH_MAX + _XOPEN_NAME_MAX) */
320 #  define DLFCN_LDINFO_SIZE 86976
321 typedef struct Dl_info {
322     const char *dli_fname;
323 } Dl_info;
324 /*
325  * This dladdr()-implementation will also find the ptrgl (Pointer Glue) virtual
326  * address of a function, which is just located in the DATA segment instead of
327  * the TEXT segment.
328  */
329 static int dladdr(void *ptr, Dl_info *dl)
330 {
331     uintptr_t addr = (uintptr_t)ptr;
332     unsigned int found = 0;
333     struct ld_info *ldinfos, *next_ldi, *this_ldi;
334
335     if ((ldinfos = (struct ld_info *)OPENSSL_malloc(DLFCN_LDINFO_SIZE)) == NULL) {
336         errno = ENOMEM;
337         dl->dli_fname = NULL;
338         return 0;
339     }
340
341     if ((loadquery(L_GETINFO, (void *)ldinfos, DLFCN_LDINFO_SIZE)) < 0) {
342         /*-
343          * Error handling is done through errno and dlerror() reading errno:
344          *  ENOMEM (ldinfos buffer is too small),
345          *  EINVAL (invalid flags),
346          *  EFAULT (invalid ldinfos ptr)
347          */
348         OPENSSL_free((void *)ldinfos);
349         dl->dli_fname = NULL;
350         return 0;
351     }
352     next_ldi = ldinfos;
353
354     do {
355         this_ldi = next_ldi;
356         if (((addr >= (uintptr_t)this_ldi->ldinfo_textorg)
357              && (addr < ((uintptr_t)this_ldi->ldinfo_textorg +
358                          this_ldi->ldinfo_textsize)))
359             || ((addr >= (uintptr_t)this_ldi->ldinfo_dataorg)
360                 && (addr < ((uintptr_t)this_ldi->ldinfo_dataorg +
361                             this_ldi->ldinfo_datasize)))) {
362             found = 1;
363             /*
364              * Ignoring the possibility of a member name and just returning
365              * the path name. See docs: sys/ldr.h, loadquery() and
366              * dlopen()/RTLD_MEMBER.
367              */
368             if ((dl->dli_fname =
369                  OPENSSL_strdup(this_ldi->ldinfo_filename)) == NULL)
370                 errno = ENOMEM;
371         } else {
372             next_ldi =
373                 (struct ld_info *)((uintptr_t)this_ldi + this_ldi->ldinfo_next);
374         }
375     } while (this_ldi->ldinfo_next && !found);
376     OPENSSL_free((void *)ldinfos);
377     return (found && dl->dli_fname != NULL);
378 }
379 # endif                         /* _AIX */
380
381 static int dlfcn_pathbyaddr(void *addr, char *path, int sz)
382 {
383 # ifdef HAVE_DLINFO
384     Dl_info dli;
385     int len;
386
387     if (addr == NULL) {
388         union {
389             int (*f) (void *, char *, int);
390             void *p;
391         } t = {
392             dlfcn_pathbyaddr
393         };
394         addr = t.p;
395     }
396
397     if (dladdr(addr, &dli)) {
398         len = (int)strlen(dli.dli_fname);
399         if (sz <= 0) {
400 #  ifdef _AIX
401             OPENSSL_free((void *)dli.dli_fname);
402 #  endif
403             return len + 1;
404         }
405         if (len >= sz)
406             len = sz - 1;
407         memcpy(path, dli.dli_fname, len);
408         path[len++] = 0;
409 #  ifdef _AIX
410         OPENSSL_free((void *)dli.dli_fname);
411 #  endif
412         return len;
413     }
414
415     ERR_add_error_data(2, "dlfcn_pathbyaddr(): ", dlerror());
416 # endif
417     return -1;
418 }
419
420 static void *dlfcn_globallookup(const char *name)
421 {
422     void *ret = NULL, *handle = dlopen(NULL, RTLD_LAZY);
423
424     if (handle) {
425         ret = dlsym(handle, name);
426         dlclose(handle);
427     }
428
429     return ret;
430 }
431 #endif                          /* DSO_DLFCN */