2 /* Written by Marcin Konicki (ahwayakchih@neoni.net) for the OpenSSL
5 /* ====================================================================
6 * Copyright (c) 2000 The OpenSSL Project. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
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
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/)"
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.
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.
34 * 6. Redistributions of any form whatsoever must retain the following
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
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 * ====================================================================
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).
62 #include <openssl/dso.h>
64 #if !defined(OPENSSL_SYS_BEOS)
65 DSO_METHOD
*DSO_METHOD_beos(void)
71 #include <kernel/image.h>
73 static int beos_load(DSO
*dso
);
74 static int beos_unload(DSO
*dso
);
75 static void *beos_bind_var(DSO
*dso
, const char *symname
);
76 static DSO_FUNC_TYPE
beos_bind_func(DSO
*dso
, const char *symname
);
78 static int beos_unbind_var(DSO
*dso
, char *symname
, void *symptr
);
79 static int beos_unbind_func(DSO
*dso
, char *symname
, DSO_FUNC_TYPE symptr
);
80 static int beos_init(DSO
*dso
);
81 static int beos_finish(DSO
*dso
);
82 static long beos_ctrl(DSO
*dso
, int cmd
, long larg
, void *parg
);
84 static char *beos_name_converter(DSO
*dso
, const char *filename
);
86 static DSO_METHOD dso_meth_beos
= {
87 "OpenSSL 'beos' shared library method",
92 /* For now, "unbind" doesn't exist */
94 NULL
, /* unbind_var */
95 NULL
, /* unbind_func */
103 DSO_METHOD
*DSO_METHOD_beos(void)
105 return(&dso_meth_beos
);
108 /* For this DSO_METHOD, our meth_data STACK will contain;
109 * (i) a pointer to the handle (image_id) returned from
113 static int beos_load(DSO
*dso
)
116 /* See applicable comments from dso_dl.c */
117 char *filename
= DSO_convert_filename(dso
, NULL
);
121 DSOerr(DSO_F_BEOS_LOAD
,DSO_R_NO_FILENAME
);
124 id
= load_add_on(filename
);
127 DSOerr(DSO_F_BEOS_LOAD
,DSO_R_LOAD_FAILED
);
128 ERR_add_error_data(3, "filename(", filename
, ")");
131 if(!sk_push(dso
->meth_data
, (char *)id
))
133 DSOerr(DSO_F_BEOS_LOAD
,DSO_R_STACK_ERROR
);
137 dso
->loaded_filename
= filename
;
142 OPENSSL_free(filename
);
148 static int beos_unload(DSO
*dso
)
153 DSOerr(DSO_F_BEOS_UNLOAD
,ERR_R_PASSED_NULL_PARAMETER
);
156 if(sk_num(dso
->meth_data
) < 1)
158 id
= (image_id
)sk_pop(dso
->meth_data
);
161 DSOerr(DSO_F_BEOS_UNLOAD
,DSO_R_NULL_HANDLE
);
164 if(unload_add_on(id
) != B_OK
)
166 DSOerr(DSO_F_BEOS_UNLOAD
,DSO_R_UNLOAD_FAILED
);
167 /* We should push the value back onto the stack in
168 * case of a retry. */
169 sk_push(dso
->meth_data
, (char *)id
);
175 static void *beos_bind_var(DSO
*dso
, const char *symname
)
180 if((dso
== NULL
) || (symname
== NULL
))
182 DSOerr(DSO_F_BEOS_BIND_VAR
,ERR_R_PASSED_NULL_PARAMETER
);
185 if(sk_num(dso
->meth_data
) < 1)
187 DSOerr(DSO_F_BEOS_BIND_VAR
,DSO_R_STACK_ERROR
);
190 id
= (image_id
)sk_value(dso
->meth_data
, sk_num(dso
->meth_data
) - 1);
193 DSOerr(DSO_F_BEOS_BIND_VAR
,DSO_R_NULL_HANDLE
);
196 if(get_image_symbol(id
, symname
, B_SYMBOL_TYPE_DATA
, &sym
) != B_OK
)
198 DSOerr(DSO_F_BEOS_BIND_VAR
,DSO_R_SYM_FAILURE
);
199 ERR_add_error_data(3, "symname(", symname
, ")");
205 static DSO_FUNC_TYPE
beos_bind_func(DSO
*dso
, const char *symname
)
210 if((dso
== NULL
) || (symname
== NULL
))
212 DSOerr(DSO_F_BEOS_BIND_FUNC
,ERR_R_PASSED_NULL_PARAMETER
);
215 if(sk_num(dso
->meth_data
) < 1)
217 DSOerr(DSO_F_BEOS_BIND_FUNC
,DSO_R_STACK_ERROR
);
220 id
= (image_id
)sk_value(dso
->meth_data
, sk_num(dso
->meth_data
) - 1);
223 DSOerr(DSO_F_BEOS_BIND_FUNC
,DSO_R_NULL_HANDLE
);
226 if(get_image_symbol(id
, symname
, B_SYMBOL_TYPE_TEXT
, &sym
) != B_OK
)
228 DSOerr(DSO_F_BEOS_BIND_FUNC
,DSO_R_SYM_FAILURE
);
229 ERR_add_error_data(3, "symname(", symname
, ")");
232 return((DSO_FUNC_TYPE
)sym
);
235 /* This one is the same as the one in dlfcn */
236 static char *beos_name_converter(DSO
*dso
, const char *filename
)
239 int len
, rsize
, transform
;
241 len
= strlen(filename
);
243 transform
= (strstr(filename
, "/") == NULL
);
246 /* We will convert this to "%s.so" or "lib%s.so" */
247 rsize
+= 3; /* The length of ".so" */
248 if ((DSO_flags(dso
) & DSO_FLAG_NAME_TRANSLATION_EXT_ONLY
) == 0)
249 rsize
+= 3; /* The length of "lib" */
251 translated
= OPENSSL_malloc(rsize
);
252 if(translated
== NULL
)
254 DSOerr(DSO_F_BEOS_NAME_CONVERTER
,
255 DSO_R_NAME_TRANSLATION_FAILED
);
260 if ((DSO_flags(dso
) & DSO_FLAG_NAME_TRANSLATION_EXT_ONLY
) == 0)
261 sprintf(translated
, "lib%s.so", filename
);
263 sprintf(translated
, "%s.so", filename
);
266 sprintf(translated
, "%s", filename
);