blob: ec3c59ac4d222293dbd0cf5412c1e81f2bf85e28 [file] [log] [blame]
Matt Caswell0f113f32015-01-22 03:40:55 +00001/*
Rich Salzd2e9e322016-05-17 14:51:26 -04002 * Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
Geoff Thorpe8f4fac72000-04-04 21:57:11 +00003 *
Rich Salzd2e9e322016-05-17 14:51:26 -04004 * 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
Geoff Thorpe8f4fac72000-04-04 21:57:11 +00008 */
9
Rich Salz73decf52016-03-22 13:16:54 -040010#include "dso_locl.h"
Geoff Thorpe8f4fac72000-04-04 21:57:11 +000011
12static DSO_METHOD *default_DSO_meth = NULL;
13
Rich Salz3d8b2ec2016-03-22 14:33:00 -040014static DSO *DSO_new_method(DSO_METHOD *meth)
Matt Caswell0f113f32015-01-22 03:40:55 +000015{
16 DSO *ret;
Geoff Thorpe8f4fac72000-04-04 21:57:11 +000017
Rich Salzb196e7d2015-04-28 15:28:14 -040018 if (default_DSO_meth == NULL) {
Matt Caswell0f113f32015-01-22 03:40:55 +000019 /*
20 * We default to DSO_METH_openssl() which in turn defaults to
21 * stealing the "best available" method. Will fallback to
22 * DSO_METH_null() in the worst case.
23 */
24 default_DSO_meth = DSO_METHOD_openssl();
Rich Salzb196e7d2015-04-28 15:28:14 -040025 }
Rich Salzb51bce92015-08-25 13:25:58 -040026 ret = OPENSSL_zalloc(sizeof(*ret));
Matt Caswell0f113f32015-01-22 03:40:55 +000027 if (ret == NULL) {
28 DSOerr(DSO_F_DSO_NEW_METHOD, ERR_R_MALLOC_FAILURE);
29 return (NULL);
30 }
Matt Caswell0f113f32015-01-22 03:40:55 +000031 ret->meth_data = sk_void_new_null();
32 if (ret->meth_data == NULL) {
33 /* sk_new doesn't generate any errors so we do */
34 DSOerr(DSO_F_DSO_NEW_METHOD, ERR_R_MALLOC_FAILURE);
35 OPENSSL_free(ret);
36 return (NULL);
37 }
Rich Salz3d8b2ec2016-03-22 14:33:00 -040038 ret->meth = default_DSO_meth;
Matt Caswell0f113f32015-01-22 03:40:55 +000039 ret->references = 1;
Alessandro Ghedinic74471d2016-03-04 16:04:37 +000040 ret->lock = CRYPTO_THREAD_lock_new();
41 if (ret->lock == NULL) {
FdaSilvaYYb2b361f2016-04-30 16:23:33 +020042 DSOerr(DSO_F_DSO_NEW_METHOD, ERR_R_MALLOC_FAILURE);
FdaSilvaYY98637bd2016-01-21 23:10:29 +010043 sk_void_free(ret->meth_data);
Matt Caswell0f113f32015-01-22 03:40:55 +000044 OPENSSL_free(ret);
Alessandro Ghedinic74471d2016-03-04 16:04:37 +000045 return NULL;
46 }
47
48 if ((ret->meth->init != NULL) && !ret->meth->init(ret)) {
49 DSO_free(ret);
Matt Caswell0f113f32015-01-22 03:40:55 +000050 ret = NULL;
51 }
Alessandro Ghedinic74471d2016-03-04 16:04:37 +000052
53 return ret;
Matt Caswell0f113f32015-01-22 03:40:55 +000054}
Geoff Thorpe8f4fac72000-04-04 21:57:11 +000055
Rich Salz3d8b2ec2016-03-22 14:33:00 -040056DSO *DSO_new(void)
57{
58 return DSO_new_method(NULL);
59}
60
Geoff Thorpe8f4fac72000-04-04 21:57:11 +000061int DSO_free(DSO *dso)
Matt Caswell0f113f32015-01-22 03:40:55 +000062{
63 int i;
64
Rich Salzefa7dd62015-05-01 10:15:18 -040065 if (dso == NULL)
66 return (1);
Matt Caswell0f113f32015-01-22 03:40:55 +000067
Kurt Roeckx2f545ae2016-08-27 16:01:08 +020068 if (CRYPTO_DOWN_REF(&dso->references, &i, dso->lock) <= 0)
Alessandro Ghedinic74471d2016-03-04 16:04:37 +000069 return 0;
70
Rich Salzf3f1cf82016-01-30 12:04:25 -050071 REF_PRINT_COUNT("DSO", dso);
Matt Caswell0f113f32015-01-22 03:40:55 +000072 if (i > 0)
Alessandro Ghedinic74471d2016-03-04 16:04:37 +000073 return 1;
Rich Salzf3f1cf82016-01-30 12:04:25 -050074 REF_ASSERT_ISNT(i < 0);
Geoff Thorpe8f4fac72000-04-04 21:57:11 +000075
Matt Caswellb39eda72016-10-15 16:01:40 +010076 if ((dso->flags & DSO_FLAG_NO_UNLOAD_ON_FREE) == 0) {
77 if ((dso->meth->dso_unload != NULL) && !dso->meth->dso_unload(dso)) {
78 DSOerr(DSO_F_DSO_FREE, DSO_R_UNLOAD_FAILED);
79 return 0;
80 }
Matt Caswell0f113f32015-01-22 03:40:55 +000081 }
82
83 if ((dso->meth->finish != NULL) && !dso->meth->finish(dso)) {
84 DSOerr(DSO_F_DSO_FREE, DSO_R_FINISH_FAILED);
Alessandro Ghedinic74471d2016-03-04 16:04:37 +000085 return 0;
Matt Caswell0f113f32015-01-22 03:40:55 +000086 }
87
88 sk_void_free(dso->meth_data);
Rich Salzb548a1f2015-05-01 10:02:07 -040089 OPENSSL_free(dso->filename);
90 OPENSSL_free(dso->loaded_filename);
Alessandro Ghedinic74471d2016-03-04 16:04:37 +000091 CRYPTO_THREAD_lock_free(dso->lock);
Matt Caswell0f113f32015-01-22 03:40:55 +000092 OPENSSL_free(dso);
Alessandro Ghedinic74471d2016-03-04 16:04:37 +000093 return 1;
Matt Caswell0f113f32015-01-22 03:40:55 +000094}
Geoff Thorpe8f4fac72000-04-04 21:57:11 +000095
96int DSO_flags(DSO *dso)
Matt Caswell0f113f32015-01-22 03:40:55 +000097{
98 return ((dso == NULL) ? 0 : dso->flags);
99}
Geoff Thorpe8f4fac72000-04-04 21:57:11 +0000100
Geoff Thorped9ff8892001-09-04 20:40:41 +0000101int DSO_up_ref(DSO *dso)
Matt Caswell0f113f32015-01-22 03:40:55 +0000102{
Alessandro Ghedinic74471d2016-03-04 16:04:37 +0000103 int i;
104
Matt Caswell0f113f32015-01-22 03:40:55 +0000105 if (dso == NULL) {
106 DSOerr(DSO_F_DSO_UP_REF, ERR_R_PASSED_NULL_PARAMETER);
Alessandro Ghedinic74471d2016-03-04 16:04:37 +0000107 return 0;
Matt Caswell0f113f32015-01-22 03:40:55 +0000108 }
Geoff Thorpe8f4fac72000-04-04 21:57:11 +0000109
Kurt Roeckx2f545ae2016-08-27 16:01:08 +0200110 if (CRYPTO_UP_REF(&dso->references, &i, dso->lock) <= 0)
Alessandro Ghedinic74471d2016-03-04 16:04:37 +0000111 return 0;
112
113 REF_PRINT_COUNT("DSO", r);
114 REF_ASSERT_ISNT(i < 2);
115 return ((i > 1) ? 1 : 0);
Matt Caswell0f113f32015-01-22 03:40:55 +0000116}
Geoff Thorpe8f4fac72000-04-04 21:57:11 +0000117
Geoff Thorpeb9e63912000-04-19 21:45:17 +0000118DSO *DSO_load(DSO *dso, const char *filename, DSO_METHOD *meth, int flags)
Matt Caswell0f113f32015-01-22 03:40:55 +0000119{
120 DSO *ret;
121 int allocated = 0;
Geoff Thorpe8f4fac72000-04-04 21:57:11 +0000122
Matt Caswell0f113f32015-01-22 03:40:55 +0000123 if (dso == NULL) {
124 ret = DSO_new_method(meth);
125 if (ret == NULL) {
126 DSOerr(DSO_F_DSO_LOAD, ERR_R_MALLOC_FAILURE);
127 goto err;
128 }
129 allocated = 1;
130 /* Pass the provided flags to the new DSO object */
131 if (DSO_ctrl(ret, DSO_CTRL_SET_FLAGS, flags, NULL) < 0) {
132 DSOerr(DSO_F_DSO_LOAD, DSO_R_CTRL_FAILED);
133 goto err;
134 }
135 } else
136 ret = dso;
137 /* Don't load if we're currently already loaded */
138 if (ret->filename != NULL) {
139 DSOerr(DSO_F_DSO_LOAD, DSO_R_DSO_ALREADY_LOADED);
140 goto err;
141 }
142 /*
143 * filename can only be NULL if we were passed a dso that already has one
144 * set.
145 */
146 if (filename != NULL)
147 if (!DSO_set_filename(ret, filename)) {
148 DSOerr(DSO_F_DSO_LOAD, DSO_R_SET_FILENAME_FAILED);
149 goto err;
150 }
151 filename = ret->filename;
152 if (filename == NULL) {
153 DSOerr(DSO_F_DSO_LOAD, DSO_R_NO_FILENAME);
154 goto err;
155 }
156 if (ret->meth->dso_load == NULL) {
157 DSOerr(DSO_F_DSO_LOAD, DSO_R_UNSUPPORTED);
158 goto err;
159 }
160 if (!ret->meth->dso_load(ret)) {
161 DSOerr(DSO_F_DSO_LOAD, DSO_R_LOAD_FAILED);
162 goto err;
163 }
164 /* Load succeeded */
165 return (ret);
166 err:
167 if (allocated)
168 DSO_free(ret);
169 return (NULL);
170}
Geoff Thorpe8f4fac72000-04-04 21:57:11 +0000171
Geoff Thorpee9a68cf2000-06-16 10:45:36 +0000172DSO_FUNC_TYPE DSO_bind_func(DSO *dso, const char *symname)
Matt Caswell0f113f32015-01-22 03:40:55 +0000173{
174 DSO_FUNC_TYPE ret = NULL;
Geoff Thorpee9a68cf2000-06-16 10:45:36 +0000175
Matt Caswell0f113f32015-01-22 03:40:55 +0000176 if ((dso == NULL) || (symname == NULL)) {
177 DSOerr(DSO_F_DSO_BIND_FUNC, ERR_R_PASSED_NULL_PARAMETER);
178 return (NULL);
179 }
180 if (dso->meth->dso_bind_func == NULL) {
181 DSOerr(DSO_F_DSO_BIND_FUNC, DSO_R_UNSUPPORTED);
182 return (NULL);
183 }
184 if ((ret = dso->meth->dso_bind_func(dso, symname)) == NULL) {
185 DSOerr(DSO_F_DSO_BIND_FUNC, DSO_R_SYM_FAILURE);
186 return (NULL);
187 }
188 /* Success */
189 return (ret);
190}
Geoff Thorpeb9e63912000-04-19 21:45:17 +0000191
Matt Caswell0f113f32015-01-22 03:40:55 +0000192/*
193 * I don't really like these *_ctrl functions very much to be perfectly
194 * honest. For one thing, I think I have to return a negative value for any
195 * error because possible DSO_ctrl() commands may return values such as
196 * "size"s that can legitimately be zero (making the standard
Viktor Dukhovni61986d32015-04-16 01:50:03 -0400197 * "if (DSO_cmd(...))" form that works almost everywhere else fail at odd
Matt Caswell0f113f32015-01-22 03:40:55 +0000198 * times. I'd prefer "output" values to be passed by reference and the return
199 * value as success/failure like usual ... but we conform when we must... :-)
200 */
Geoff Thorpeb9e63912000-04-19 21:45:17 +0000201long DSO_ctrl(DSO *dso, int cmd, long larg, void *parg)
Matt Caswell0f113f32015-01-22 03:40:55 +0000202{
203 if (dso == NULL) {
204 DSOerr(DSO_F_DSO_CTRL, ERR_R_PASSED_NULL_PARAMETER);
205 return (-1);
206 }
207 /*
208 * We should intercept certain generic commands and only pass control to
209 * the method-specific ctrl() function if it's something we don't handle.
210 */
211 switch (cmd) {
212 case DSO_CTRL_GET_FLAGS:
213 return dso->flags;
214 case DSO_CTRL_SET_FLAGS:
215 dso->flags = (int)larg;
216 return (0);
217 case DSO_CTRL_OR_FLAGS:
218 dso->flags |= (int)larg;
219 return (0);
220 default:
221 break;
222 }
223 if ((dso->meth == NULL) || (dso->meth->dso_ctrl == NULL)) {
224 DSOerr(DSO_F_DSO_CTRL, DSO_R_UNSUPPORTED);
225 return (-1);
226 }
227 return (dso->meth->dso_ctrl(dso, cmd, larg, parg));
228}
Geoff Thorpe51c8dc32000-10-26 17:38:59 +0000229
Geoff Thorpe51c8dc32000-10-26 17:38:59 +0000230const char *DSO_get_filename(DSO *dso)
Matt Caswell0f113f32015-01-22 03:40:55 +0000231{
232 if (dso == NULL) {
233 DSOerr(DSO_F_DSO_GET_FILENAME, ERR_R_PASSED_NULL_PARAMETER);
234 return (NULL);
235 }
236 return (dso->filename);
237}
Geoff Thorpe51c8dc32000-10-26 17:38:59 +0000238
239int DSO_set_filename(DSO *dso, const char *filename)
Matt Caswell0f113f32015-01-22 03:40:55 +0000240{
241 char *copied;
Geoff Thorpe51c8dc32000-10-26 17:38:59 +0000242
Matt Caswell0f113f32015-01-22 03:40:55 +0000243 if ((dso == NULL) || (filename == NULL)) {
244 DSOerr(DSO_F_DSO_SET_FILENAME, ERR_R_PASSED_NULL_PARAMETER);
245 return (0);
246 }
247 if (dso->loaded_filename) {
248 DSOerr(DSO_F_DSO_SET_FILENAME, DSO_R_DSO_ALREADY_LOADED);
249 return (0);
250 }
251 /* We'll duplicate filename */
Dmitry-Meedae9832016-02-29 11:55:13 +0300252 copied = OPENSSL_strdup(filename);
Matt Caswell0f113f32015-01-22 03:40:55 +0000253 if (copied == NULL) {
254 DSOerr(DSO_F_DSO_SET_FILENAME, ERR_R_MALLOC_FAILURE);
255 return (0);
256 }
Rich Salzb548a1f2015-05-01 10:02:07 -0400257 OPENSSL_free(dso->filename);
Matt Caswell0f113f32015-01-22 03:40:55 +0000258 dso->filename = copied;
259 return (1);
260}
Geoff Thorpe51c8dc32000-10-26 17:38:59 +0000261
Richard Levittecbecb3a2002-07-15 15:35:40 +0000262char *DSO_merge(DSO *dso, const char *filespec1, const char *filespec2)
Matt Caswell0f113f32015-01-22 03:40:55 +0000263{
264 char *result = NULL;
Richard Levittecbecb3a2002-07-15 15:35:40 +0000265
Matt Caswell0f113f32015-01-22 03:40:55 +0000266 if (dso == NULL || filespec1 == NULL) {
267 DSOerr(DSO_F_DSO_MERGE, ERR_R_PASSED_NULL_PARAMETER);
268 return (NULL);
269 }
270 if ((dso->flags & DSO_FLAG_NO_NAME_TRANSLATION) == 0) {
271 if (dso->merger != NULL)
272 result = dso->merger(dso, filespec1, filespec2);
273 else if (dso->meth->dso_merger != NULL)
274 result = dso->meth->dso_merger(dso, filespec1, filespec2);
275 }
276 return (result);
277}
Richard Levittecbecb3a2002-07-15 15:35:40 +0000278
Geoff Thorpe51c8dc32000-10-26 17:38:59 +0000279char *DSO_convert_filename(DSO *dso, const char *filename)
Matt Caswell0f113f32015-01-22 03:40:55 +0000280{
281 char *result = NULL;
Geoff Thorpe51c8dc32000-10-26 17:38:59 +0000282
Matt Caswell0f113f32015-01-22 03:40:55 +0000283 if (dso == NULL) {
284 DSOerr(DSO_F_DSO_CONVERT_FILENAME, ERR_R_PASSED_NULL_PARAMETER);
285 return (NULL);
286 }
287 if (filename == NULL)
288 filename = dso->filename;
289 if (filename == NULL) {
290 DSOerr(DSO_F_DSO_CONVERT_FILENAME, DSO_R_NO_FILENAME);
291 return (NULL);
292 }
293 if ((dso->flags & DSO_FLAG_NO_NAME_TRANSLATION) == 0) {
294 if (dso->name_converter != NULL)
295 result = dso->name_converter(dso, filename);
296 else if (dso->meth->dso_name_converter != NULL)
297 result = dso->meth->dso_name_converter(dso, filename);
298 }
299 if (result == NULL) {
Dmitry-Meedae9832016-02-29 11:55:13 +0300300 result = OPENSSL_strdup(filename);
Matt Caswell0f113f32015-01-22 03:40:55 +0000301 if (result == NULL) {
302 DSOerr(DSO_F_DSO_CONVERT_FILENAME, ERR_R_MALLOC_FAILURE);
303 return (NULL);
304 }
Matt Caswell0f113f32015-01-22 03:40:55 +0000305 }
306 return (result);
307}
Geoff Thorpe51c8dc32000-10-26 17:38:59 +0000308
Matt Caswellcb6ea612016-10-15 15:23:03 +0100309int DSO_pathbyaddr(void *addr, char *path, int sz)
310{
311 DSO_METHOD *meth = default_DSO_meth;
312 if (meth == NULL)
313 meth = DSO_METHOD_openssl();
314 if (meth->pathbyaddr == NULL) {
315 DSOerr(DSO_F_DSO_PATHBYADDR, DSO_R_UNSUPPORTED);
316 return -1;
317 }
318 return (*meth->pathbyaddr) (addr, path, sz);
319}
320
Matt Caswellb39eda72016-10-15 16:01:40 +0100321DSO *DSO_dsobyaddr(void *addr, int flags)
322{
323 DSO *ret = NULL;
324 char *filename = NULL;
325 int len = DSO_pathbyaddr(addr, NULL, 0);
326
Davide Galassi210fe4e2016-12-02 17:10:37 +0100327 if (len < 0)
328 return NULL;
329
Matt Caswellb39eda72016-10-15 16:01:40 +0100330 filename = OPENSSL_malloc(len);
331 if (filename != NULL
332 && DSO_pathbyaddr(addr, filename, len) == len)
333 ret = DSO_load(NULL, filename, NULL, flags);
334
335 OPENSSL_free(filename);
336 return ret;
337}
338
Andy Polyakovc6cb42e2006-01-02 08:59:20 +0000339void *DSO_global_lookup(const char *name)
Matt Caswell0f113f32015-01-22 03:40:55 +0000340{
341 DSO_METHOD *meth = default_DSO_meth;
342 if (meth == NULL)
343 meth = DSO_METHOD_openssl();
344 if (meth->globallookup == NULL) {
345 DSOerr(DSO_F_DSO_GLOBAL_LOOKUP, DSO_R_UNSUPPORTED);
346 return NULL;
347 }
348 return (*meth->globallookup) (name);
349}