diff options
Diffstat (limited to 'src/lib/libcrypto/dso')
-rw-r--r-- | src/lib/libcrypto/dso/Makefile | 150 | ||||
-rw-r--r-- | src/lib/libcrypto/dso/README | 22 | ||||
-rw-r--r-- | src/lib/libcrypto/dso/dso.h | 409 | ||||
-rw-r--r-- | src/lib/libcrypto/dso/dso_beos.c | 270 | ||||
-rw-r--r-- | src/lib/libcrypto/dso/dso_dl.c | 395 | ||||
-rw-r--r-- | src/lib/libcrypto/dso/dso_dlfcn.c | 486 | ||||
-rw-r--r-- | src/lib/libcrypto/dso/dso_err.c | 159 | ||||
-rw-r--r-- | src/lib/libcrypto/dso/dso_lib.c | 483 | ||||
-rw-r--r-- | src/lib/libcrypto/dso/dso_null.c | 90 | ||||
-rw-r--r-- | src/lib/libcrypto/dso/dso_openssl.c | 83 | ||||
-rw-r--r-- | src/lib/libcrypto/dso/dso_vms.c | 525 | ||||
-rw-r--r-- | src/lib/libcrypto/dso/dso_win32.c | 844 |
12 files changed, 0 insertions, 3916 deletions
diff --git a/src/lib/libcrypto/dso/Makefile b/src/lib/libcrypto/dso/Makefile deleted file mode 100644 index fb2709ed63..0000000000 --- a/src/lib/libcrypto/dso/Makefile +++ /dev/null | |||
@@ -1,150 +0,0 @@ | |||
1 | # | ||
2 | # OpenSSL/crypto/dso/Makefile | ||
3 | # | ||
4 | |||
5 | DIR= dso | ||
6 | TOP= ../.. | ||
7 | CC= cc | ||
8 | INCLUDES= -I.. -I$(TOP) -I../../include | ||
9 | CFLAG=-g | ||
10 | MAKEFILE= Makefile | ||
11 | AR= ar r | ||
12 | |||
13 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
14 | |||
15 | GENERAL=Makefile | ||
16 | TEST= | ||
17 | APPS= | ||
18 | |||
19 | LIB=$(TOP)/libcrypto.a | ||
20 | LIBSRC= dso_dl.c dso_dlfcn.c dso_err.c dso_lib.c dso_null.c \ | ||
21 | dso_openssl.c dso_win32.c dso_vms.c dso_beos.c | ||
22 | LIBOBJ= dso_dl.o dso_dlfcn.o dso_err.o dso_lib.o dso_null.o \ | ||
23 | dso_openssl.o dso_win32.o dso_vms.o dso_beos.o | ||
24 | |||
25 | SRC= $(LIBSRC) | ||
26 | |||
27 | EXHEADER= dso.h | ||
28 | HEADER= $(EXHEADER) | ||
29 | |||
30 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
31 | |||
32 | top: | ||
33 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
34 | |||
35 | all: lib | ||
36 | |||
37 | lib: $(LIBOBJ) | ||
38 | $(AR) $(LIB) $(LIBOBJ) | ||
39 | $(RANLIB) $(LIB) || echo Never mind. | ||
40 | @touch lib | ||
41 | |||
42 | files: | ||
43 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
44 | |||
45 | links: | ||
46 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
47 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
48 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
49 | |||
50 | install: | ||
51 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
52 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
53 | do \ | ||
54 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
55 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
56 | done; | ||
57 | |||
58 | tags: | ||
59 | ctags $(SRC) | ||
60 | |||
61 | tests: | ||
62 | |||
63 | lint: | ||
64 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
65 | |||
66 | depend: | ||
67 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
68 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
69 | |||
70 | dclean: | ||
71 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
72 | mv -f Makefile.new $(MAKEFILE) | ||
73 | |||
74 | clean: | ||
75 | rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
76 | |||
77 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
78 | |||
79 | dso_beos.o: ../../e_os.h ../../include/openssl/bio.h | ||
80 | dso_beos.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
81 | dso_beos.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
82 | dso_beos.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
83 | dso_beos.o: ../../include/openssl/opensslconf.h | ||
84 | dso_beos.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
85 | dso_beos.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
86 | dso_beos.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_beos.c | ||
87 | dso_dl.o: ../../e_os.h ../../include/openssl/bio.h | ||
88 | dso_dl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
89 | dso_dl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
90 | dso_dl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
91 | dso_dl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
92 | dso_dl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
93 | dso_dl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
94 | dso_dl.o: ../cryptlib.h dso_dl.c | ||
95 | dso_dlfcn.o: ../../e_os.h ../../include/openssl/bio.h | ||
96 | dso_dlfcn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
97 | dso_dlfcn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
98 | dso_dlfcn.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
99 | dso_dlfcn.o: ../../include/openssl/opensslconf.h | ||
100 | dso_dlfcn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
101 | dso_dlfcn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
102 | dso_dlfcn.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_dlfcn.c | ||
103 | dso_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
104 | dso_err.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
105 | dso_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
106 | dso_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
107 | dso_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
108 | dso_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
109 | dso_err.o: dso_err.c | ||
110 | dso_lib.o: ../../e_os.h ../../include/openssl/bio.h | ||
111 | dso_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
112 | dso_lib.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
113 | dso_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
114 | dso_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
115 | dso_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
116 | dso_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
117 | dso_lib.o: ../cryptlib.h dso_lib.c | ||
118 | dso_null.o: ../../e_os.h ../../include/openssl/bio.h | ||
119 | dso_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
120 | dso_null.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
121 | dso_null.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
122 | dso_null.o: ../../include/openssl/opensslconf.h | ||
123 | dso_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
124 | dso_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
125 | dso_null.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_null.c | ||
126 | dso_openssl.o: ../../e_os.h ../../include/openssl/bio.h | ||
127 | dso_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
128 | dso_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
129 | dso_openssl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
130 | dso_openssl.o: ../../include/openssl/opensslconf.h | ||
131 | dso_openssl.o: ../../include/openssl/opensslv.h | ||
132 | dso_openssl.o: ../../include/openssl/ossl_typ.h | ||
133 | dso_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
134 | dso_openssl.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_openssl.c | ||
135 | dso_vms.o: ../../e_os.h ../../include/openssl/bio.h | ||
136 | dso_vms.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
137 | dso_vms.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
138 | dso_vms.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
139 | dso_vms.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
140 | dso_vms.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
141 | dso_vms.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
142 | dso_vms.o: ../cryptlib.h dso_vms.c | ||
143 | dso_win32.o: ../../e_os.h ../../include/openssl/bio.h | ||
144 | dso_win32.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
145 | dso_win32.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
146 | dso_win32.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
147 | dso_win32.o: ../../include/openssl/opensslconf.h | ||
148 | dso_win32.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
149 | dso_win32.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
150 | dso_win32.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_win32.c | ||
diff --git a/src/lib/libcrypto/dso/README b/src/lib/libcrypto/dso/README deleted file mode 100644 index d0bc9a89fb..0000000000 --- a/src/lib/libcrypto/dso/README +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | NOTES | ||
2 | ----- | ||
3 | |||
4 | I've checked out HPUX (well, version 11 at least) and shl_t is | ||
5 | a pointer type so it's safe to use in the way it has been in | ||
6 | dso_dl.c. On the other hand, HPUX11 support dlfcn too and | ||
7 | according to their man page, prefer developers to move to that. | ||
8 | I'll leave Richard's changes there as I guess dso_dl is needed | ||
9 | for HPUX10.20. | ||
10 | |||
11 | There is now a callback scheme in place where filename conversion can | ||
12 | (a) be turned off altogether through the use of the | ||
13 | DSO_FLAG_NO_NAME_TRANSLATION flag, | ||
14 | (b) be handled by default using the default DSO_METHOD's converter | ||
15 | (c) overriden per-DSO by setting the override callback | ||
16 | (d) a mix of (b) and (c) - eg. implement an override callback that; | ||
17 | (i) checks if we're win32 (if(strstr(dso->meth->name, "win32")....) | ||
18 | and if so, convert "blah" into "blah32.dll" (the default is | ||
19 | otherwise to make it "blah.dll"). | ||
20 | (ii) default to the normal behaviour - we're not on win32, eg. | ||
21 | finish with (return dso->meth->dso_name_converter(dso,NULL)). | ||
22 | |||
diff --git a/src/lib/libcrypto/dso/dso.h b/src/lib/libcrypto/dso/dso.h deleted file mode 100644 index 839f2e0617..0000000000 --- a/src/lib/libcrypto/dso/dso.h +++ /dev/null | |||
@@ -1,409 +0,0 @@ | |||
1 | /* dso.h -*- mode:C; c-file-style: "eay" -*- */ | ||
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 | #ifndef HEADER_DSO_H | ||
60 | #define HEADER_DSO_H | ||
61 | |||
62 | #include <openssl/crypto.h> | ||
63 | |||
64 | #ifdef __cplusplus | ||
65 | extern "C" { | ||
66 | #endif | ||
67 | |||
68 | /* These values are used as commands to DSO_ctrl() */ | ||
69 | #define DSO_CTRL_GET_FLAGS 1 | ||
70 | #define DSO_CTRL_SET_FLAGS 2 | ||
71 | #define DSO_CTRL_OR_FLAGS 3 | ||
72 | |||
73 | /* By default, DSO_load() will translate the provided filename into a form | ||
74 | * typical for the platform (more specifically the DSO_METHOD) using the | ||
75 | * dso_name_converter function of the method. Eg. win32 will transform "blah" | ||
76 | * into "blah.dll", and dlfcn will transform it into "libblah.so". The | ||
77 | * behaviour can be overriden by setting the name_converter callback in the DSO | ||
78 | * object (using DSO_set_name_converter()). This callback could even utilise | ||
79 | * the DSO_METHOD's converter too if it only wants to override behaviour for | ||
80 | * one or two possible DSO methods. However, the following flag can be set in a | ||
81 | * DSO to prevent *any* native name-translation at all - eg. if the caller has | ||
82 | * prompted the user for a path to a driver library so the filename should be | ||
83 | * interpreted as-is. */ | ||
84 | #define DSO_FLAG_NO_NAME_TRANSLATION 0x01 | ||
85 | /* An extra flag to give if only the extension should be added as | ||
86 | * translation. This is obviously only of importance on Unix and | ||
87 | * other operating systems where the translation also may prefix | ||
88 | * the name with something, like 'lib', and ignored everywhere else. | ||
89 | * This flag is also ignored if DSO_FLAG_NO_NAME_TRANSLATION is used | ||
90 | * at the same time. */ | ||
91 | #define DSO_FLAG_NAME_TRANSLATION_EXT_ONLY 0x02 | ||
92 | |||
93 | /* The following flag controls the translation of symbol names to upper | ||
94 | * case. This is currently only being implemented for OpenVMS. | ||
95 | */ | ||
96 | #define DSO_FLAG_UPCASE_SYMBOL 0x10 | ||
97 | |||
98 | /* This flag loads the library with public symbols. | ||
99 | * Meaning: The exported symbols of this library are public | ||
100 | * to all libraries loaded after this library. | ||
101 | * At the moment only implemented in unix. | ||
102 | */ | ||
103 | #define DSO_FLAG_GLOBAL_SYMBOLS 0x20 | ||
104 | |||
105 | |||
106 | typedef void (*DSO_FUNC_TYPE)(void); | ||
107 | |||
108 | typedef struct dso_st DSO; | ||
109 | |||
110 | /* The function prototype used for method functions (or caller-provided | ||
111 | * callbacks) that transform filenames. They are passed a DSO structure pointer | ||
112 | * (or NULL if they are to be used independantly of a DSO object) and a | ||
113 | * filename to transform. They should either return NULL (if there is an error | ||
114 | * condition) or a newly allocated string containing the transformed form that | ||
115 | * the caller will need to free with OPENSSL_free() when done. */ | ||
116 | typedef char* (*DSO_NAME_CONVERTER_FUNC)(DSO *, const char *); | ||
117 | /* The function prototype used for method functions (or caller-provided | ||
118 | * callbacks) that merge two file specifications. They are passed a | ||
119 | * DSO structure pointer (or NULL if they are to be used independantly of | ||
120 | * a DSO object) and two file specifications to merge. They should | ||
121 | * either return NULL (if there is an error condition) or a newly allocated | ||
122 | * string containing the result of merging that the caller will need | ||
123 | * to free with OPENSSL_free() when done. | ||
124 | * Here, merging means that bits and pieces are taken from each of the | ||
125 | * file specifications and added together in whatever fashion that is | ||
126 | * sensible for the DSO method in question. The only rule that really | ||
127 | * applies is that if the two specification contain pieces of the same | ||
128 | * type, the copy from the first string takes priority. One could see | ||
129 | * it as the first specification is the one given by the user and the | ||
130 | * second being a bunch of defaults to add on if they're missing in the | ||
131 | * first. */ | ||
132 | typedef char* (*DSO_MERGER_FUNC)(DSO *, const char *, const char *); | ||
133 | |||
134 | typedef struct dso_meth_st | ||
135 | { | ||
136 | const char *name; | ||
137 | /* Loads a shared library, NB: new DSO_METHODs must ensure that a | ||
138 | * successful load populates the loaded_filename field, and likewise a | ||
139 | * successful unload OPENSSL_frees and NULLs it out. */ | ||
140 | int (*dso_load)(DSO *dso); | ||
141 | /* Unloads a shared library */ | ||
142 | int (*dso_unload)(DSO *dso); | ||
143 | /* Binds a variable */ | ||
144 | void *(*dso_bind_var)(DSO *dso, const char *symname); | ||
145 | /* Binds a function - assumes a return type of DSO_FUNC_TYPE. | ||
146 | * This should be cast to the real function prototype by the | ||
147 | * caller. Platforms that don't have compatible representations | ||
148 | * for different prototypes (this is possible within ANSI C) | ||
149 | * are highly unlikely to have shared libraries at all, let | ||
150 | * alone a DSO_METHOD implemented for them. */ | ||
151 | DSO_FUNC_TYPE (*dso_bind_func)(DSO *dso, const char *symname); | ||
152 | |||
153 | /* I don't think this would actually be used in any circumstances. */ | ||
154 | #if 0 | ||
155 | /* Unbinds a variable */ | ||
156 | int (*dso_unbind_var)(DSO *dso, char *symname, void *symptr); | ||
157 | /* Unbinds a function */ | ||
158 | int (*dso_unbind_func)(DSO *dso, char *symname, DSO_FUNC_TYPE symptr); | ||
159 | #endif | ||
160 | /* The generic (yuck) "ctrl()" function. NB: Negative return | ||
161 | * values (rather than zero) indicate errors. */ | ||
162 | long (*dso_ctrl)(DSO *dso, int cmd, long larg, void *parg); | ||
163 | /* The default DSO_METHOD-specific function for converting filenames to | ||
164 | * a canonical native form. */ | ||
165 | DSO_NAME_CONVERTER_FUNC dso_name_converter; | ||
166 | /* The default DSO_METHOD-specific function for converting filenames to | ||
167 | * a canonical native form. */ | ||
168 | DSO_MERGER_FUNC dso_merger; | ||
169 | |||
170 | /* [De]Initialisation handlers. */ | ||
171 | int (*init)(DSO *dso); | ||
172 | int (*finish)(DSO *dso); | ||
173 | |||
174 | /* Return pathname of the module containing location */ | ||
175 | int (*pathbyaddr)(void *addr,char *path,int sz); | ||
176 | /* Perform global symbol lookup, i.e. among *all* modules */ | ||
177 | void *(*globallookup)(const char *symname); | ||
178 | } DSO_METHOD; | ||
179 | |||
180 | /**********************************************************************/ | ||
181 | /* The low-level handle type used to refer to a loaded shared library */ | ||
182 | |||
183 | struct dso_st | ||
184 | { | ||
185 | DSO_METHOD *meth; | ||
186 | /* Standard dlopen uses a (void *). Win32 uses a HANDLE. VMS | ||
187 | * doesn't use anything but will need to cache the filename | ||
188 | * for use in the dso_bind handler. All in all, let each | ||
189 | * method control its own destiny. "Handles" and such go in | ||
190 | * a STACK. */ | ||
191 | STACK_OF(void) *meth_data; | ||
192 | int references; | ||
193 | int flags; | ||
194 | /* For use by applications etc ... use this for your bits'n'pieces, | ||
195 | * don't touch meth_data! */ | ||
196 | CRYPTO_EX_DATA ex_data; | ||
197 | /* If this callback function pointer is set to non-NULL, then it will | ||
198 | * be used in DSO_load() in place of meth->dso_name_converter. NB: This | ||
199 | * should normally set using DSO_set_name_converter(). */ | ||
200 | DSO_NAME_CONVERTER_FUNC name_converter; | ||
201 | /* If this callback function pointer is set to non-NULL, then it will | ||
202 | * be used in DSO_load() in place of meth->dso_merger. NB: This | ||
203 | * should normally set using DSO_set_merger(). */ | ||
204 | DSO_MERGER_FUNC merger; | ||
205 | /* This is populated with (a copy of) the platform-independant | ||
206 | * filename used for this DSO. */ | ||
207 | char *filename; | ||
208 | /* This is populated with (a copy of) the translated filename by which | ||
209 | * the DSO was actually loaded. It is NULL iff the DSO is not currently | ||
210 | * loaded. NB: This is here because the filename translation process | ||
211 | * may involve a callback being invoked more than once not only to | ||
212 | * convert to a platform-specific form, but also to try different | ||
213 | * filenames in the process of trying to perform a load. As such, this | ||
214 | * variable can be used to indicate (a) whether this DSO structure | ||
215 | * corresponds to a loaded library or not, and (b) the filename with | ||
216 | * which it was actually loaded. */ | ||
217 | char *loaded_filename; | ||
218 | }; | ||
219 | |||
220 | |||
221 | DSO * DSO_new(void); | ||
222 | DSO * DSO_new_method(DSO_METHOD *method); | ||
223 | int DSO_free(DSO *dso); | ||
224 | int DSO_flags(DSO *dso); | ||
225 | int DSO_up_ref(DSO *dso); | ||
226 | long DSO_ctrl(DSO *dso, int cmd, long larg, void *parg); | ||
227 | |||
228 | /* This function sets the DSO's name_converter callback. If it is non-NULL, | ||
229 | * then it will be used instead of the associated DSO_METHOD's function. If | ||
230 | * oldcb is non-NULL then it is set to the function pointer value being | ||
231 | * replaced. Return value is non-zero for success. */ | ||
232 | int DSO_set_name_converter(DSO *dso, DSO_NAME_CONVERTER_FUNC cb, | ||
233 | DSO_NAME_CONVERTER_FUNC *oldcb); | ||
234 | /* These functions can be used to get/set the platform-independant filename | ||
235 | * used for a DSO. NB: set will fail if the DSO is already loaded. */ | ||
236 | const char *DSO_get_filename(DSO *dso); | ||
237 | int DSO_set_filename(DSO *dso, const char *filename); | ||
238 | /* This function will invoke the DSO's name_converter callback to translate a | ||
239 | * filename, or if the callback isn't set it will instead use the DSO_METHOD's | ||
240 | * converter. If "filename" is NULL, the "filename" in the DSO itself will be | ||
241 | * used. If the DSO_FLAG_NO_NAME_TRANSLATION flag is set, then the filename is | ||
242 | * simply duplicated. NB: This function is usually called from within a | ||
243 | * DSO_METHOD during the processing of a DSO_load() call, and is exposed so that | ||
244 | * caller-created DSO_METHODs can do the same thing. A non-NULL return value | ||
245 | * will need to be OPENSSL_free()'d. */ | ||
246 | char *DSO_convert_filename(DSO *dso, const char *filename); | ||
247 | /* This function will invoke the DSO's merger callback to merge two file | ||
248 | * specifications, or if the callback isn't set it will instead use the | ||
249 | * DSO_METHOD's merger. A non-NULL return value will need to be | ||
250 | * OPENSSL_free()'d. */ | ||
251 | char *DSO_merge(DSO *dso, const char *filespec1, const char *filespec2); | ||
252 | /* If the DSO is currently loaded, this returns the filename that it was loaded | ||
253 | * under, otherwise it returns NULL. So it is also useful as a test as to | ||
254 | * whether the DSO is currently loaded. NB: This will not necessarily return | ||
255 | * the same value as DSO_convert_filename(dso, dso->filename), because the | ||
256 | * DSO_METHOD's load function may have tried a variety of filenames (with | ||
257 | * and/or without the aid of the converters) before settling on the one it | ||
258 | * actually loaded. */ | ||
259 | const char *DSO_get_loaded_filename(DSO *dso); | ||
260 | |||
261 | void DSO_set_default_method(DSO_METHOD *meth); | ||
262 | DSO_METHOD *DSO_get_default_method(void); | ||
263 | DSO_METHOD *DSO_get_method(DSO *dso); | ||
264 | DSO_METHOD *DSO_set_method(DSO *dso, DSO_METHOD *meth); | ||
265 | |||
266 | /* The all-singing all-dancing load function, you normally pass NULL | ||
267 | * for the first and third parameters. Use DSO_up and DSO_free for | ||
268 | * subsequent reference count handling. Any flags passed in will be set | ||
269 | * in the constructed DSO after its init() function but before the | ||
270 | * load operation. If 'dso' is non-NULL, 'flags' is ignored. */ | ||
271 | DSO *DSO_load(DSO *dso, const char *filename, DSO_METHOD *meth, int flags); | ||
272 | |||
273 | /* This function binds to a variable inside a shared library. */ | ||
274 | void *DSO_bind_var(DSO *dso, const char *symname); | ||
275 | |||
276 | /* This function binds to a function inside a shared library. */ | ||
277 | DSO_FUNC_TYPE DSO_bind_func(DSO *dso, const char *symname); | ||
278 | |||
279 | /* This method is the default, but will beg, borrow, or steal whatever | ||
280 | * method should be the default on any particular platform (including | ||
281 | * DSO_METH_null() if necessary). */ | ||
282 | DSO_METHOD *DSO_METHOD_openssl(void); | ||
283 | |||
284 | /* This method is defined for all platforms - if a platform has no | ||
285 | * DSO support then this will be the only method! */ | ||
286 | DSO_METHOD *DSO_METHOD_null(void); | ||
287 | |||
288 | /* If DSO_DLFCN is defined, the standard dlfcn.h-style functions | ||
289 | * (dlopen, dlclose, dlsym, etc) will be used and incorporated into | ||
290 | * this method. If not, this method will return NULL. */ | ||
291 | DSO_METHOD *DSO_METHOD_dlfcn(void); | ||
292 | |||
293 | /* If DSO_DL is defined, the standard dl.h-style functions (shl_load, | ||
294 | * shl_unload, shl_findsym, etc) will be used and incorporated into | ||
295 | * this method. If not, this method will return NULL. */ | ||
296 | DSO_METHOD *DSO_METHOD_dl(void); | ||
297 | |||
298 | /* If WIN32 is defined, use DLLs. If not, return NULL. */ | ||
299 | DSO_METHOD *DSO_METHOD_win32(void); | ||
300 | |||
301 | /* If VMS is defined, use shared images. If not, return NULL. */ | ||
302 | DSO_METHOD *DSO_METHOD_vms(void); | ||
303 | |||
304 | /* This function writes null-terminated pathname of DSO module | ||
305 | * containing 'addr' into 'sz' large caller-provided 'path' and | ||
306 | * returns the number of characters [including trailing zero] | ||
307 | * written to it. If 'sz' is 0 or negative, 'path' is ignored and | ||
308 | * required amount of charachers [including trailing zero] to | ||
309 | * accomodate pathname is returned. If 'addr' is NULL, then | ||
310 | * pathname of cryptolib itself is returned. Negative or zero | ||
311 | * return value denotes error. | ||
312 | */ | ||
313 | int DSO_pathbyaddr(void *addr,char *path,int sz); | ||
314 | |||
315 | /* This function should be used with caution! It looks up symbols in | ||
316 | * *all* loaded modules and if module gets unloaded by somebody else | ||
317 | * attempt to dereference the pointer is doomed to have fatal | ||
318 | * consequences. Primary usage for this function is to probe *core* | ||
319 | * system functionality, e.g. check if getnameinfo(3) is available | ||
320 | * at run-time without bothering about OS-specific details such as | ||
321 | * libc.so.versioning or where does it actually reside: in libc | ||
322 | * itself or libsocket. */ | ||
323 | void *DSO_global_lookup(const char *name); | ||
324 | |||
325 | /* If BeOS is defined, use shared images. If not, return NULL. */ | ||
326 | DSO_METHOD *DSO_METHOD_beos(void); | ||
327 | |||
328 | /* BEGIN ERROR CODES */ | ||
329 | /* The following lines are auto generated by the script mkerr.pl. Any changes | ||
330 | * made after this point may be overwritten when the script is next run. | ||
331 | */ | ||
332 | void ERR_load_DSO_strings(void); | ||
333 | |||
334 | /* Error codes for the DSO functions. */ | ||
335 | |||
336 | /* Function codes. */ | ||
337 | #define DSO_F_BEOS_BIND_FUNC 144 | ||
338 | #define DSO_F_BEOS_BIND_VAR 145 | ||
339 | #define DSO_F_BEOS_LOAD 146 | ||
340 | #define DSO_F_BEOS_NAME_CONVERTER 147 | ||
341 | #define DSO_F_BEOS_UNLOAD 148 | ||
342 | #define DSO_F_DLFCN_BIND_FUNC 100 | ||
343 | #define DSO_F_DLFCN_BIND_VAR 101 | ||
344 | #define DSO_F_DLFCN_LOAD 102 | ||
345 | #define DSO_F_DLFCN_MERGER 130 | ||
346 | #define DSO_F_DLFCN_NAME_CONVERTER 123 | ||
347 | #define DSO_F_DLFCN_UNLOAD 103 | ||
348 | #define DSO_F_DL_BIND_FUNC 104 | ||
349 | #define DSO_F_DL_BIND_VAR 105 | ||
350 | #define DSO_F_DL_LOAD 106 | ||
351 | #define DSO_F_DL_MERGER 131 | ||
352 | #define DSO_F_DL_NAME_CONVERTER 124 | ||
353 | #define DSO_F_DL_UNLOAD 107 | ||
354 | #define DSO_F_DSO_BIND_FUNC 108 | ||
355 | #define DSO_F_DSO_BIND_VAR 109 | ||
356 | #define DSO_F_DSO_CONVERT_FILENAME 126 | ||
357 | #define DSO_F_DSO_CTRL 110 | ||
358 | #define DSO_F_DSO_FREE 111 | ||
359 | #define DSO_F_DSO_GET_FILENAME 127 | ||
360 | #define DSO_F_DSO_GET_LOADED_FILENAME 128 | ||
361 | #define DSO_F_DSO_GLOBAL_LOOKUP 139 | ||
362 | #define DSO_F_DSO_LOAD 112 | ||
363 | #define DSO_F_DSO_MERGE 132 | ||
364 | #define DSO_F_DSO_NEW_METHOD 113 | ||
365 | #define DSO_F_DSO_PATHBYADDR 140 | ||
366 | #define DSO_F_DSO_SET_FILENAME 129 | ||
367 | #define DSO_F_DSO_SET_NAME_CONVERTER 122 | ||
368 | #define DSO_F_DSO_UP_REF 114 | ||
369 | #define DSO_F_GLOBAL_LOOKUP_FUNC 138 | ||
370 | #define DSO_F_PATHBYADDR 137 | ||
371 | #define DSO_F_VMS_BIND_SYM 115 | ||
372 | #define DSO_F_VMS_LOAD 116 | ||
373 | #define DSO_F_VMS_MERGER 133 | ||
374 | #define DSO_F_VMS_UNLOAD 117 | ||
375 | #define DSO_F_WIN32_BIND_FUNC 118 | ||
376 | #define DSO_F_WIN32_BIND_VAR 119 | ||
377 | #define DSO_F_WIN32_GLOBALLOOKUP 142 | ||
378 | #define DSO_F_WIN32_GLOBALLOOKUP_FUNC 143 | ||
379 | #define DSO_F_WIN32_JOINER 135 | ||
380 | #define DSO_F_WIN32_LOAD 120 | ||
381 | #define DSO_F_WIN32_MERGER 134 | ||
382 | #define DSO_F_WIN32_NAME_CONVERTER 125 | ||
383 | #define DSO_F_WIN32_PATHBYADDR 141 | ||
384 | #define DSO_F_WIN32_SPLITTER 136 | ||
385 | #define DSO_F_WIN32_UNLOAD 121 | ||
386 | |||
387 | /* Reason codes. */ | ||
388 | #define DSO_R_CTRL_FAILED 100 | ||
389 | #define DSO_R_DSO_ALREADY_LOADED 110 | ||
390 | #define DSO_R_EMPTY_FILE_STRUCTURE 113 | ||
391 | #define DSO_R_FAILURE 114 | ||
392 | #define DSO_R_FILENAME_TOO_BIG 101 | ||
393 | #define DSO_R_FINISH_FAILED 102 | ||
394 | #define DSO_R_INCORRECT_FILE_SYNTAX 115 | ||
395 | #define DSO_R_LOAD_FAILED 103 | ||
396 | #define DSO_R_NAME_TRANSLATION_FAILED 109 | ||
397 | #define DSO_R_NO_FILENAME 111 | ||
398 | #define DSO_R_NO_FILE_SPECIFICATION 116 | ||
399 | #define DSO_R_NULL_HANDLE 104 | ||
400 | #define DSO_R_SET_FILENAME_FAILED 112 | ||
401 | #define DSO_R_STACK_ERROR 105 | ||
402 | #define DSO_R_SYM_FAILURE 106 | ||
403 | #define DSO_R_UNLOAD_FAILED 107 | ||
404 | #define DSO_R_UNSUPPORTED 108 | ||
405 | |||
406 | #ifdef __cplusplus | ||
407 | } | ||
408 | #endif | ||
409 | #endif | ||
diff --git a/src/lib/libcrypto/dso/dso_beos.c b/src/lib/libcrypto/dso/dso_beos.c deleted file mode 100644 index 553966e699..0000000000 --- a/src/lib/libcrypto/dso/dso_beos.c +++ /dev/null | |||
@@ -1,270 +0,0 @@ | |||
1 | /* dso_beos.c */ | ||
2 | /* Written by Marcin Konicki (ahwayakchih@neoni.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 <string.h> | ||
61 | #include "cryptlib.h" | ||
62 | #include <openssl/dso.h> | ||
63 | |||
64 | #if !defined(OPENSSL_SYS_BEOS) | ||
65 | DSO_METHOD *DSO_METHOD_beos(void) | ||
66 | { | ||
67 | return NULL; | ||
68 | } | ||
69 | #else | ||
70 | |||
71 | #include <kernel/image.h> | ||
72 | |||
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); | ||
77 | #if 0 | ||
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); | ||
83 | #endif | ||
84 | static char *beos_name_converter(DSO *dso, const char *filename); | ||
85 | |||
86 | static DSO_METHOD dso_meth_beos = { | ||
87 | "OpenSSL 'beos' shared library method", | ||
88 | beos_load, | ||
89 | beos_unload, | ||
90 | beos_bind_var, | ||
91 | beos_bind_func, | ||
92 | /* For now, "unbind" doesn't exist */ | ||
93 | #if 0 | ||
94 | NULL, /* unbind_var */ | ||
95 | NULL, /* unbind_func */ | ||
96 | #endif | ||
97 | NULL, /* ctrl */ | ||
98 | beos_name_converter, | ||
99 | NULL, /* init */ | ||
100 | NULL /* finish */ | ||
101 | }; | ||
102 | |||
103 | DSO_METHOD *DSO_METHOD_beos(void) | ||
104 | { | ||
105 | return(&dso_meth_beos); | ||
106 | } | ||
107 | |||
108 | /* For this DSO_METHOD, our meth_data STACK will contain; | ||
109 | * (i) a pointer to the handle (image_id) returned from | ||
110 | * load_add_on(). | ||
111 | */ | ||
112 | |||
113 | static int beos_load(DSO *dso) | ||
114 | { | ||
115 | image_id id; | ||
116 | /* See applicable comments from dso_dl.c */ | ||
117 | char *filename = DSO_convert_filename(dso, NULL); | ||
118 | |||
119 | if(filename == NULL) | ||
120 | { | ||
121 | DSOerr(DSO_F_BEOS_LOAD,DSO_R_NO_FILENAME); | ||
122 | goto err; | ||
123 | } | ||
124 | id = load_add_on(filename); | ||
125 | if(id < 1) | ||
126 | { | ||
127 | DSOerr(DSO_F_BEOS_LOAD,DSO_R_LOAD_FAILED); | ||
128 | ERR_add_error_data(3, "filename(", filename, ")"); | ||
129 | goto err; | ||
130 | } | ||
131 | if(!sk_push(dso->meth_data, (char *)id)) | ||
132 | { | ||
133 | DSOerr(DSO_F_BEOS_LOAD,DSO_R_STACK_ERROR); | ||
134 | goto err; | ||
135 | } | ||
136 | /* Success */ | ||
137 | dso->loaded_filename = filename; | ||
138 | return(1); | ||
139 | err: | ||
140 | /* Cleanup !*/ | ||
141 | if(filename != NULL) | ||
142 | OPENSSL_free(filename); | ||
143 | if(id > 0) | ||
144 | unload_add_on(id); | ||
145 | return(0); | ||
146 | } | ||
147 | |||
148 | static int beos_unload(DSO *dso) | ||
149 | { | ||
150 | image_id id; | ||
151 | if(dso == NULL) | ||
152 | { | ||
153 | DSOerr(DSO_F_BEOS_UNLOAD,ERR_R_PASSED_NULL_PARAMETER); | ||
154 | return(0); | ||
155 | } | ||
156 | if(sk_num(dso->meth_data) < 1) | ||
157 | return(1); | ||
158 | id = (image_id)sk_pop(dso->meth_data); | ||
159 | if(id < 1) | ||
160 | { | ||
161 | DSOerr(DSO_F_BEOS_UNLOAD,DSO_R_NULL_HANDLE); | ||
162 | return(0); | ||
163 | } | ||
164 | if(unload_add_on(id) != B_OK) | ||
165 | { | ||
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); | ||
170 | return(0); | ||
171 | } | ||
172 | return(1); | ||
173 | } | ||
174 | |||
175 | static void *beos_bind_var(DSO *dso, const char *symname) | ||
176 | { | ||
177 | image_id id; | ||
178 | void *sym; | ||
179 | |||
180 | if((dso == NULL) || (symname == NULL)) | ||
181 | { | ||
182 | DSOerr(DSO_F_BEOS_BIND_VAR,ERR_R_PASSED_NULL_PARAMETER); | ||
183 | return(NULL); | ||
184 | } | ||
185 | if(sk_num(dso->meth_data) < 1) | ||
186 | { | ||
187 | DSOerr(DSO_F_BEOS_BIND_VAR,DSO_R_STACK_ERROR); | ||
188 | return(NULL); | ||
189 | } | ||
190 | id = (image_id)sk_value(dso->meth_data, sk_num(dso->meth_data) - 1); | ||
191 | if(id < 1) | ||
192 | { | ||
193 | DSOerr(DSO_F_BEOS_BIND_VAR,DSO_R_NULL_HANDLE); | ||
194 | return(NULL); | ||
195 | } | ||
196 | if(get_image_symbol(id, symname, B_SYMBOL_TYPE_DATA, &sym) != B_OK) | ||
197 | { | ||
198 | DSOerr(DSO_F_BEOS_BIND_VAR,DSO_R_SYM_FAILURE); | ||
199 | ERR_add_error_data(3, "symname(", symname, ")"); | ||
200 | return(NULL); | ||
201 | } | ||
202 | return(sym); | ||
203 | } | ||
204 | |||
205 | static DSO_FUNC_TYPE beos_bind_func(DSO *dso, const char *symname) | ||
206 | { | ||
207 | image_id id; | ||
208 | void *sym; | ||
209 | |||
210 | if((dso == NULL) || (symname == NULL)) | ||
211 | { | ||
212 | DSOerr(DSO_F_BEOS_BIND_FUNC,ERR_R_PASSED_NULL_PARAMETER); | ||
213 | return(NULL); | ||
214 | } | ||
215 | if(sk_num(dso->meth_data) < 1) | ||
216 | { | ||
217 | DSOerr(DSO_F_BEOS_BIND_FUNC,DSO_R_STACK_ERROR); | ||
218 | return(NULL); | ||
219 | } | ||
220 | id = (image_id)sk_value(dso->meth_data, sk_num(dso->meth_data) - 1); | ||
221 | if(id < 1) | ||
222 | { | ||
223 | DSOerr(DSO_F_BEOS_BIND_FUNC,DSO_R_NULL_HANDLE); | ||
224 | return(NULL); | ||
225 | } | ||
226 | if(get_image_symbol(id, symname, B_SYMBOL_TYPE_TEXT, &sym) != B_OK) | ||
227 | { | ||
228 | DSOerr(DSO_F_BEOS_BIND_FUNC,DSO_R_SYM_FAILURE); | ||
229 | ERR_add_error_data(3, "symname(", symname, ")"); | ||
230 | return(NULL); | ||
231 | } | ||
232 | return((DSO_FUNC_TYPE)sym); | ||
233 | } | ||
234 | |||
235 | /* This one is the same as the one in dlfcn */ | ||
236 | static char *beos_name_converter(DSO *dso, const char *filename) | ||
237 | { | ||
238 | char *translated; | ||
239 | int len, rsize, transform; | ||
240 | |||
241 | len = strlen(filename); | ||
242 | rsize = len + 1; | ||
243 | transform = (strstr(filename, "/") == NULL); | ||
244 | if(transform) | ||
245 | { | ||
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" */ | ||
250 | } | ||
251 | translated = OPENSSL_malloc(rsize); | ||
252 | if(translated == NULL) | ||
253 | { | ||
254 | DSOerr(DSO_F_BEOS_NAME_CONVERTER, | ||
255 | DSO_R_NAME_TRANSLATION_FAILED); | ||
256 | return(NULL); | ||
257 | } | ||
258 | if(transform) | ||
259 | { | ||
260 | if ((DSO_flags(dso) & DSO_FLAG_NAME_TRANSLATION_EXT_ONLY) == 0) | ||
261 | sprintf(translated, "lib%s.so", filename); | ||
262 | else | ||
263 | sprintf(translated, "%s.so", filename); | ||
264 | } | ||
265 | else | ||
266 | sprintf(translated, "%s", filename); | ||
267 | return(translated); | ||
268 | } | ||
269 | |||
270 | #endif | ||
diff --git a/src/lib/libcrypto/dso/dso_dl.c b/src/lib/libcrypto/dso/dso_dl.c deleted file mode 100644 index c3b4f6cf45..0000000000 --- a/src/lib/libcrypto/dso/dso_dl.c +++ /dev/null | |||
@@ -1,395 +0,0 @@ | |||
1 | /* dso_dl.c -*- mode:C; c-file-style: "eay" -*- */ | ||
2 | /* Written by Richard Levitte (richard@levitte.org) 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 DSO_DL | ||
64 | DSO_METHOD *DSO_METHOD_dl(void) | ||
65 | { | ||
66 | return NULL; | ||
67 | } | ||
68 | #else | ||
69 | |||
70 | #include <dl.h> | ||
71 | |||
72 | /* Part of the hack in "dl_load" ... */ | ||
73 | #define DSO_MAX_TRANSLATED_SIZE 256 | ||
74 | |||
75 | static int dl_load(DSO *dso); | ||
76 | static int dl_unload(DSO *dso); | ||
77 | static void *dl_bind_var(DSO *dso, const char *symname); | ||
78 | static DSO_FUNC_TYPE dl_bind_func(DSO *dso, const char *symname); | ||
79 | #if 0 | ||
80 | static int dl_unbind_var(DSO *dso, char *symname, void *symptr); | ||
81 | static int dl_unbind_func(DSO *dso, char *symname, DSO_FUNC_TYPE symptr); | ||
82 | static int dl_init(DSO *dso); | ||
83 | static int dl_finish(DSO *dso); | ||
84 | static int dl_ctrl(DSO *dso, int cmd, long larg, void *parg); | ||
85 | #endif | ||
86 | static char *dl_name_converter(DSO *dso, const char *filename); | ||
87 | static char *dl_merger(DSO *dso, const char *filespec1, const char *filespec2); | ||
88 | static int dl_pathbyaddr(void *addr,char *path,int sz); | ||
89 | static void *dl_globallookup(const char *name); | ||
90 | |||
91 | static DSO_METHOD dso_meth_dl = { | ||
92 | "OpenSSL 'dl' shared library method", | ||
93 | dl_load, | ||
94 | dl_unload, | ||
95 | dl_bind_var, | ||
96 | dl_bind_func, | ||
97 | /* For now, "unbind" doesn't exist */ | ||
98 | #if 0 | ||
99 | NULL, /* unbind_var */ | ||
100 | NULL, /* unbind_func */ | ||
101 | #endif | ||
102 | NULL, /* ctrl */ | ||
103 | dl_name_converter, | ||
104 | dl_merger, | ||
105 | NULL, /* init */ | ||
106 | NULL, /* finish */ | ||
107 | dl_pathbyaddr, | ||
108 | dl_globallookup | ||
109 | }; | ||
110 | |||
111 | DSO_METHOD *DSO_METHOD_dl(void) | ||
112 | { | ||
113 | return(&dso_meth_dl); | ||
114 | } | ||
115 | |||
116 | /* For this DSO_METHOD, our meth_data STACK will contain; | ||
117 | * (i) the handle (shl_t) returned from shl_load(). | ||
118 | * NB: I checked on HPUX11 and shl_t is itself a pointer | ||
119 | * type so the cast is safe. | ||
120 | */ | ||
121 | |||
122 | static int dl_load(DSO *dso) | ||
123 | { | ||
124 | shl_t ptr = NULL; | ||
125 | /* We don't do any fancy retries or anything, just take the method's | ||
126 | * (or DSO's if it has the callback set) best translation of the | ||
127 | * platform-independant filename and try once with that. */ | ||
128 | char *filename= DSO_convert_filename(dso, NULL); | ||
129 | |||
130 | if(filename == NULL) | ||
131 | { | ||
132 | DSOerr(DSO_F_DL_LOAD,DSO_R_NO_FILENAME); | ||
133 | goto err; | ||
134 | } | ||
135 | ptr = shl_load(filename, BIND_IMMEDIATE | | ||
136 | (dso->flags&DSO_FLAG_NO_NAME_TRANSLATION?0:DYNAMIC_PATH), 0L); | ||
137 | if(ptr == NULL) | ||
138 | { | ||
139 | DSOerr(DSO_F_DL_LOAD,DSO_R_LOAD_FAILED); | ||
140 | ERR_add_error_data(4, "filename(", filename, "): ", | ||
141 | strerror(errno)); | ||
142 | goto err; | ||
143 | } | ||
144 | if(!sk_push(dso->meth_data, (char *)ptr)) | ||
145 | { | ||
146 | DSOerr(DSO_F_DL_LOAD,DSO_R_STACK_ERROR); | ||
147 | goto err; | ||
148 | } | ||
149 | /* Success, stick the converted filename we've loaded under into the DSO | ||
150 | * (it also serves as the indicator that we are currently loaded). */ | ||
151 | dso->loaded_filename = filename; | ||
152 | return(1); | ||
153 | err: | ||
154 | /* Cleanup! */ | ||
155 | if(filename != NULL) | ||
156 | OPENSSL_free(filename); | ||
157 | if(ptr != NULL) | ||
158 | shl_unload(ptr); | ||
159 | return(0); | ||
160 | } | ||
161 | |||
162 | static int dl_unload(DSO *dso) | ||
163 | { | ||
164 | shl_t ptr; | ||
165 | if(dso == NULL) | ||
166 | { | ||
167 | DSOerr(DSO_F_DL_UNLOAD,ERR_R_PASSED_NULL_PARAMETER); | ||
168 | return(0); | ||
169 | } | ||
170 | if(sk_num(dso->meth_data) < 1) | ||
171 | return(1); | ||
172 | /* Is this statement legal? */ | ||
173 | ptr = (shl_t)sk_pop(dso->meth_data); | ||
174 | if(ptr == NULL) | ||
175 | { | ||
176 | DSOerr(DSO_F_DL_UNLOAD,DSO_R_NULL_HANDLE); | ||
177 | /* Should push the value back onto the stack in | ||
178 | * case of a retry. */ | ||
179 | sk_push(dso->meth_data, (char *)ptr); | ||
180 | return(0); | ||
181 | } | ||
182 | shl_unload(ptr); | ||
183 | return(1); | ||
184 | } | ||
185 | |||
186 | static void *dl_bind_var(DSO *dso, const char *symname) | ||
187 | { | ||
188 | shl_t ptr; | ||
189 | void *sym; | ||
190 | |||
191 | if((dso == NULL) || (symname == NULL)) | ||
192 | { | ||
193 | DSOerr(DSO_F_DL_BIND_VAR,ERR_R_PASSED_NULL_PARAMETER); | ||
194 | return(NULL); | ||
195 | } | ||
196 | if(sk_num(dso->meth_data) < 1) | ||
197 | { | ||
198 | DSOerr(DSO_F_DL_BIND_VAR,DSO_R_STACK_ERROR); | ||
199 | return(NULL); | ||
200 | } | ||
201 | ptr = (shl_t)sk_value(dso->meth_data, sk_num(dso->meth_data) - 1); | ||
202 | if(ptr == NULL) | ||
203 | { | ||
204 | DSOerr(DSO_F_DL_BIND_VAR,DSO_R_NULL_HANDLE); | ||
205 | return(NULL); | ||
206 | } | ||
207 | if (shl_findsym(&ptr, symname, TYPE_UNDEFINED, &sym) < 0) | ||
208 | { | ||
209 | DSOerr(DSO_F_DL_BIND_VAR,DSO_R_SYM_FAILURE); | ||
210 | ERR_add_error_data(4, "symname(", symname, "): ", | ||
211 | strerror(errno)); | ||
212 | return(NULL); | ||
213 | } | ||
214 | return(sym); | ||
215 | } | ||
216 | |||
217 | static DSO_FUNC_TYPE dl_bind_func(DSO *dso, const char *symname) | ||
218 | { | ||
219 | shl_t ptr; | ||
220 | void *sym; | ||
221 | |||
222 | if((dso == NULL) || (symname == NULL)) | ||
223 | { | ||
224 | DSOerr(DSO_F_DL_BIND_FUNC,ERR_R_PASSED_NULL_PARAMETER); | ||
225 | return(NULL); | ||
226 | } | ||
227 | if(sk_num(dso->meth_data) < 1) | ||
228 | { | ||
229 | DSOerr(DSO_F_DL_BIND_FUNC,DSO_R_STACK_ERROR); | ||
230 | return(NULL); | ||
231 | } | ||
232 | ptr = (shl_t)sk_value(dso->meth_data, sk_num(dso->meth_data) - 1); | ||
233 | if(ptr == NULL) | ||
234 | { | ||
235 | DSOerr(DSO_F_DL_BIND_FUNC,DSO_R_NULL_HANDLE); | ||
236 | return(NULL); | ||
237 | } | ||
238 | if (shl_findsym(&ptr, symname, TYPE_UNDEFINED, &sym) < 0) | ||
239 | { | ||
240 | DSOerr(DSO_F_DL_BIND_FUNC,DSO_R_SYM_FAILURE); | ||
241 | ERR_add_error_data(4, "symname(", symname, "): ", | ||
242 | strerror(errno)); | ||
243 | return(NULL); | ||
244 | } | ||
245 | return((DSO_FUNC_TYPE)sym); | ||
246 | } | ||
247 | |||
248 | static char *dl_merger(DSO *dso, const char *filespec1, const char *filespec2) | ||
249 | { | ||
250 | char *merged; | ||
251 | |||
252 | if(!filespec1 && !filespec2) | ||
253 | { | ||
254 | DSOerr(DSO_F_DL_MERGER, | ||
255 | ERR_R_PASSED_NULL_PARAMETER); | ||
256 | return(NULL); | ||
257 | } | ||
258 | /* If the first file specification is a rooted path, it rules. | ||
259 | same goes if the second file specification is missing. */ | ||
260 | if (!filespec2 || filespec1[0] == '/') | ||
261 | { | ||
262 | size_t len = strlen(filespec1) + 1; | ||
263 | merged = OPENSSL_malloc(len); | ||
264 | if(!merged) | ||
265 | { | ||
266 | DSOerr(DSO_F_DL_MERGER, | ||
267 | ERR_R_MALLOC_FAILURE); | ||
268 | return(NULL); | ||
269 | } | ||
270 | memcpy(merged, filespec1, len); | ||
271 | } | ||
272 | /* If the first file specification is missing, the second one rules. */ | ||
273 | else if (!filespec1) | ||
274 | { | ||
275 | size_t len = strlen(filespec2) + 1; | ||
276 | merged = OPENSSL_malloc(strlen(filespec2) + 1); | ||
277 | if(!merged) | ||
278 | { | ||
279 | DSOerr(DSO_F_DL_MERGER, | ||
280 | ERR_R_MALLOC_FAILURE); | ||
281 | return(NULL); | ||
282 | } | ||
283 | memcpy(merged, filespec2, len); | ||
284 | } | ||
285 | else | ||
286 | /* This part isn't as trivial as it looks. It assumes that | ||
287 | the second file specification really is a directory, and | ||
288 | makes no checks whatsoever. Therefore, the result becomes | ||
289 | the concatenation of filespec2 followed by a slash followed | ||
290 | by filespec1. */ | ||
291 | { | ||
292 | size_t spec2len, len; | ||
293 | |||
294 | spec2len = (filespec2 ? strlen(filespec2) : 0); | ||
295 | len = spec2len + (filespec1 ? strlen(filespec1) : 0); | ||
296 | |||
297 | if(filespec2 && filespec2[spec2len - 1] == '/') | ||
298 | { | ||
299 | spec2len--; | ||
300 | len--; | ||
301 | } | ||
302 | merged = OPENSSL_malloc(len + 2); | ||
303 | if(!merged) | ||
304 | { | ||
305 | DSOerr(DSO_F_DL_MERGER, | ||
306 | ERR_R_MALLOC_FAILURE); | ||
307 | return(NULL); | ||
308 | } | ||
309 | strlcpy(merged, filespec2, len + 2); | ||
310 | merged[spec2len] = '/'; | ||
311 | strlcpy(&merged[spec2len + 1], filespec1, 1 + len - spec2len); | ||
312 | } | ||
313 | return(merged); | ||
314 | } | ||
315 | |||
316 | /* This function is identical to the one in dso_dlfcn.c, but as it is highly | ||
317 | * unlikely that both the "dl" *and* "dlfcn" variants are being compiled at the | ||
318 | * same time, there's no great duplicating the code. Figuring out an elegant | ||
319 | * way to share one copy of the code would be more difficult and would not | ||
320 | * leave the implementations independant. */ | ||
321 | #if defined(__hpux) | ||
322 | static const char extension[] = ".sl"; | ||
323 | #else | ||
324 | static const char extension[] = ".so"; | ||
325 | #endif | ||
326 | static char *dl_name_converter(DSO *dso, const char *filename) | ||
327 | { | ||
328 | char *translated; | ||
329 | int len, rsize, transform; | ||
330 | |||
331 | len = strlen(filename); | ||
332 | rsize = len + 1; | ||
333 | transform = (strstr(filename, "/") == NULL); | ||
334 | { | ||
335 | /* We will convert this to "%s.s?" or "lib%s.s?" */ | ||
336 | rsize += strlen(extension);/* The length of ".s?" */ | ||
337 | if ((DSO_flags(dso) & DSO_FLAG_NAME_TRANSLATION_EXT_ONLY) == 0) | ||
338 | rsize += 3; /* The length of "lib" */ | ||
339 | } | ||
340 | translated = OPENSSL_malloc(rsize); | ||
341 | if(translated == NULL) | ||
342 | { | ||
343 | DSOerr(DSO_F_DL_NAME_CONVERTER, | ||
344 | DSO_R_NAME_TRANSLATION_FAILED); | ||
345 | return(NULL); | ||
346 | } | ||
347 | if(transform) | ||
348 | { | ||
349 | if ((DSO_flags(dso) & DSO_FLAG_NAME_TRANSLATION_EXT_ONLY) == 0) | ||
350 | sprintf(translated, "lib%s%s", filename, extension); | ||
351 | else | ||
352 | sprintf(translated, "%s%s", filename, extension); | ||
353 | } | ||
354 | else | ||
355 | sprintf(translated, "%s", filename); | ||
356 | return(translated); | ||
357 | } | ||
358 | |||
359 | static int dl_pathbyaddr(void *addr,char *path,int sz) | ||
360 | { | ||
361 | struct shl_descriptor inf; | ||
362 | int i,len; | ||
363 | |||
364 | if (addr == NULL) | ||
365 | { | ||
366 | union { int(*f)(void*,char*,int); void *p; } t = | ||
367 | { dl_pathbyaddr }; | ||
368 | addr = t.p; | ||
369 | } | ||
370 | |||
371 | for (i=-1;shl_get_r(i,&inf)==0;i++) | ||
372 | { | ||
373 | if (((size_t)addr >= inf.tstart && (size_t)addr < inf.tend) || | ||
374 | ((size_t)addr >= inf.dstart && (size_t)addr < inf.dend)) | ||
375 | { | ||
376 | len = (int)strlen(inf.filename); | ||
377 | if (sz <= 0) return len+1; | ||
378 | if (len >= sz) len=sz-1; | ||
379 | memcpy(path,inf.filename,len); | ||
380 | path[len++] = 0; | ||
381 | return len; | ||
382 | } | ||
383 | } | ||
384 | |||
385 | return -1; | ||
386 | } | ||
387 | |||
388 | static void *dl_globallookup(const char *name) | ||
389 | { | ||
390 | void *ret; | ||
391 | shl_t h = NULL; | ||
392 | |||
393 | return shl_findsym(&h,name,TYPE_UNDEFINED,&ret) ? NULL : ret; | ||
394 | } | ||
395 | #endif /* DSO_DL */ | ||
diff --git a/src/lib/libcrypto/dso/dso_dlfcn.c b/src/lib/libcrypto/dso/dso_dlfcn.c deleted file mode 100644 index e78004903c..0000000000 --- a/src/lib/libcrypto/dso/dso_dlfcn.c +++ /dev/null | |||
@@ -1,486 +0,0 @@ | |||
1 | /* dso_dlfcn.c -*- mode:C; c-file-style: "eay" -*- */ | ||
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 | /* We need to do this early, because stdio.h includes the header files | ||
60 | that handle _GNU_SOURCE and other similar macros. Defining it later | ||
61 | is simply too late, because those headers are protected from re- | ||
62 | inclusion. */ | ||
63 | #ifdef __linux | ||
64 | # ifndef _GNU_SOURCE | ||
65 | # define _GNU_SOURCE /* make sure dladdr is declared */ | ||
66 | # endif | ||
67 | #endif | ||
68 | |||
69 | #include <stdio.h> | ||
70 | #include "cryptlib.h" | ||
71 | #include <openssl/dso.h> | ||
72 | |||
73 | #ifndef DSO_DLFCN | ||
74 | DSO_METHOD *DSO_METHOD_dlfcn(void) | ||
75 | { | ||
76 | return NULL; | ||
77 | } | ||
78 | #else | ||
79 | |||
80 | #ifdef HAVE_DLFCN_H | ||
81 | # ifdef __osf__ | ||
82 | # define __EXTENSIONS__ | ||
83 | # endif | ||
84 | # include <dlfcn.h> | ||
85 | # define HAVE_DLINFO 1 | ||
86 | # if defined(_AIX) || defined(__CYGWIN__) || \ | ||
87 | defined(__SCO_VERSION__) || defined(_SCO_ELF) || \ | ||
88 | (defined(__osf__) && !defined(RTLD_NEXT)) || \ | ||
89 | (defined(__OpenBSD__) && (!defined(__ELF__) || !defined(RTLD_SELF))) | ||
90 | # undef HAVE_DLINFO | ||
91 | # endif | ||
92 | #endif | ||
93 | |||
94 | /* Part of the hack in "dlfcn_load" ... */ | ||
95 | #define DSO_MAX_TRANSLATED_SIZE 256 | ||
96 | |||
97 | static int dlfcn_load(DSO *dso); | ||
98 | static int dlfcn_unload(DSO *dso); | ||
99 | static void *dlfcn_bind_var(DSO *dso, const char *symname); | ||
100 | static DSO_FUNC_TYPE dlfcn_bind_func(DSO *dso, const char *symname); | ||
101 | #if 0 | ||
102 | static int dlfcn_unbind(DSO *dso, char *symname, void *symptr); | ||
103 | static int dlfcn_init(DSO *dso); | ||
104 | static int dlfcn_finish(DSO *dso); | ||
105 | static long dlfcn_ctrl(DSO *dso, int cmd, long larg, void *parg); | ||
106 | #endif | ||
107 | static char *dlfcn_name_converter(DSO *dso, const char *filename); | ||
108 | static char *dlfcn_merger(DSO *dso, const char *filespec1, | ||
109 | const char *filespec2); | ||
110 | static int dlfcn_pathbyaddr(void *addr,char *path,int sz); | ||
111 | static void *dlfcn_globallookup(const char *name); | ||
112 | |||
113 | static DSO_METHOD dso_meth_dlfcn = { | ||
114 | "OpenSSL 'dlfcn' shared library method", | ||
115 | dlfcn_load, | ||
116 | dlfcn_unload, | ||
117 | dlfcn_bind_var, | ||
118 | dlfcn_bind_func, | ||
119 | /* For now, "unbind" doesn't exist */ | ||
120 | #if 0 | ||
121 | NULL, /* unbind_var */ | ||
122 | NULL, /* unbind_func */ | ||
123 | #endif | ||
124 | NULL, /* ctrl */ | ||
125 | dlfcn_name_converter, | ||
126 | dlfcn_merger, | ||
127 | NULL, /* init */ | ||
128 | NULL, /* finish */ | ||
129 | dlfcn_pathbyaddr, | ||
130 | dlfcn_globallookup | ||
131 | }; | ||
132 | |||
133 | DSO_METHOD *DSO_METHOD_dlfcn(void) | ||
134 | { | ||
135 | return(&dso_meth_dlfcn); | ||
136 | } | ||
137 | |||
138 | /* Prior to using the dlopen() function, we should decide on the flag | ||
139 | * we send. There's a few different ways of doing this and it's a | ||
140 | * messy venn-diagram to match up which platforms support what. So | ||
141 | * as we don't have autoconf yet, I'm implementing a hack that could | ||
142 | * be hacked further relatively easily to deal with cases as we find | ||
143 | * them. Initially this is to cope with OpenBSD. */ | ||
144 | #if defined(__OpenBSD__) || defined(__NetBSD__) | ||
145 | # ifdef DL_LAZY | ||
146 | # define DLOPEN_FLAG DL_LAZY | ||
147 | # else | ||
148 | # ifdef RTLD_NOW | ||
149 | # define DLOPEN_FLAG RTLD_NOW | ||
150 | # else | ||
151 | # define DLOPEN_FLAG 0 | ||
152 | # endif | ||
153 | # endif | ||
154 | #else | ||
155 | # ifdef OPENSSL_SYS_SUNOS | ||
156 | # define DLOPEN_FLAG 1 | ||
157 | # else | ||
158 | # define DLOPEN_FLAG RTLD_NOW /* Hope this works everywhere else */ | ||
159 | # endif | ||
160 | #endif | ||
161 | |||
162 | /* For this DSO_METHOD, our meth_data STACK will contain; | ||
163 | * (i) the handle (void*) returned from dlopen(). | ||
164 | */ | ||
165 | |||
166 | static int dlfcn_load(DSO *dso) | ||
167 | { | ||
168 | void *ptr = NULL; | ||
169 | /* See applicable comments in dso_dl.c */ | ||
170 | char *filename = DSO_convert_filename(dso, NULL); | ||
171 | int flags = DLOPEN_FLAG; | ||
172 | |||
173 | if(filename == NULL) | ||
174 | { | ||
175 | DSOerr(DSO_F_DLFCN_LOAD,DSO_R_NO_FILENAME); | ||
176 | goto err; | ||
177 | } | ||
178 | |||
179 | #ifdef RTLD_GLOBAL | ||
180 | if (dso->flags & DSO_FLAG_GLOBAL_SYMBOLS) | ||
181 | flags |= RTLD_GLOBAL; | ||
182 | #endif | ||
183 | ptr = dlopen(filename, flags); | ||
184 | if(ptr == NULL) | ||
185 | { | ||
186 | DSOerr(DSO_F_DLFCN_LOAD,DSO_R_LOAD_FAILED); | ||
187 | ERR_add_error_data(4, "filename(", filename, "): ", dlerror()); | ||
188 | goto err; | ||
189 | } | ||
190 | if(!sk_void_push(dso->meth_data, (char *)ptr)) | ||
191 | { | ||
192 | DSOerr(DSO_F_DLFCN_LOAD,DSO_R_STACK_ERROR); | ||
193 | goto err; | ||
194 | } | ||
195 | /* Success */ | ||
196 | dso->loaded_filename = filename; | ||
197 | return(1); | ||
198 | err: | ||
199 | /* Cleanup! */ | ||
200 | if(filename != NULL) | ||
201 | OPENSSL_free(filename); | ||
202 | if(ptr != NULL) | ||
203 | dlclose(ptr); | ||
204 | return(0); | ||
205 | } | ||
206 | |||
207 | static int dlfcn_unload(DSO *dso) | ||
208 | { | ||
209 | void *ptr; | ||
210 | if(dso == NULL) | ||
211 | { | ||
212 | DSOerr(DSO_F_DLFCN_UNLOAD,ERR_R_PASSED_NULL_PARAMETER); | ||
213 | return(0); | ||
214 | } | ||
215 | if(sk_void_num(dso->meth_data) < 1) | ||
216 | return(1); | ||
217 | ptr = sk_void_pop(dso->meth_data); | ||
218 | if(ptr == NULL) | ||
219 | { | ||
220 | DSOerr(DSO_F_DLFCN_UNLOAD,DSO_R_NULL_HANDLE); | ||
221 | /* Should push the value back onto the stack in | ||
222 | * case of a retry. */ | ||
223 | sk_void_push(dso->meth_data, ptr); | ||
224 | return(0); | ||
225 | } | ||
226 | /* For now I'm not aware of any errors associated with dlclose() */ | ||
227 | dlclose(ptr); | ||
228 | return(1); | ||
229 | } | ||
230 | |||
231 | static void *dlfcn_bind_var(DSO *dso, const char *symname) | ||
232 | { | ||
233 | void *ptr, *sym; | ||
234 | |||
235 | if((dso == NULL) || (symname == NULL)) | ||
236 | { | ||
237 | DSOerr(DSO_F_DLFCN_BIND_VAR,ERR_R_PASSED_NULL_PARAMETER); | ||
238 | return(NULL); | ||
239 | } | ||
240 | if(sk_void_num(dso->meth_data) < 1) | ||
241 | { | ||
242 | DSOerr(DSO_F_DLFCN_BIND_VAR,DSO_R_STACK_ERROR); | ||
243 | return(NULL); | ||
244 | } | ||
245 | ptr = sk_void_value(dso->meth_data, sk_void_num(dso->meth_data) - 1); | ||
246 | if(ptr == NULL) | ||
247 | { | ||
248 | DSOerr(DSO_F_DLFCN_BIND_VAR,DSO_R_NULL_HANDLE); | ||
249 | return(NULL); | ||
250 | } | ||
251 | sym = dlsym(ptr, symname); | ||
252 | if(sym == NULL) | ||
253 | { | ||
254 | DSOerr(DSO_F_DLFCN_BIND_VAR,DSO_R_SYM_FAILURE); | ||
255 | ERR_add_error_data(4, "symname(", symname, "): ", dlerror()); | ||
256 | return(NULL); | ||
257 | } | ||
258 | return(sym); | ||
259 | } | ||
260 | |||
261 | static DSO_FUNC_TYPE dlfcn_bind_func(DSO *dso, const char *symname) | ||
262 | { | ||
263 | void *ptr; | ||
264 | union { | ||
265 | DSO_FUNC_TYPE sym; | ||
266 | void *dlret; | ||
267 | } u; | ||
268 | |||
269 | if((dso == NULL) || (symname == NULL)) | ||
270 | { | ||
271 | DSOerr(DSO_F_DLFCN_BIND_FUNC,ERR_R_PASSED_NULL_PARAMETER); | ||
272 | return(NULL); | ||
273 | } | ||
274 | if(sk_void_num(dso->meth_data) < 1) | ||
275 | { | ||
276 | DSOerr(DSO_F_DLFCN_BIND_FUNC,DSO_R_STACK_ERROR); | ||
277 | return(NULL); | ||
278 | } | ||
279 | ptr = sk_void_value(dso->meth_data, sk_void_num(dso->meth_data) - 1); | ||
280 | if(ptr == NULL) | ||
281 | { | ||
282 | DSOerr(DSO_F_DLFCN_BIND_FUNC,DSO_R_NULL_HANDLE); | ||
283 | return(NULL); | ||
284 | } | ||
285 | u.dlret = dlsym(ptr, symname); | ||
286 | if(u.dlret == NULL) | ||
287 | { | ||
288 | DSOerr(DSO_F_DLFCN_BIND_FUNC,DSO_R_SYM_FAILURE); | ||
289 | ERR_add_error_data(4, "symname(", symname, "): ", dlerror()); | ||
290 | return(NULL); | ||
291 | } | ||
292 | return u.sym; | ||
293 | } | ||
294 | |||
295 | static char *dlfcn_merger(DSO *dso, const char *filespec1, | ||
296 | const char *filespec2) | ||
297 | { | ||
298 | char *merged; | ||
299 | size_t len; | ||
300 | |||
301 | if(!filespec1 && !filespec2) | ||
302 | { | ||
303 | DSOerr(DSO_F_DLFCN_MERGER, | ||
304 | ERR_R_PASSED_NULL_PARAMETER); | ||
305 | return(NULL); | ||
306 | } | ||
307 | /* If the first file specification is a rooted path, it rules. | ||
308 | same goes if the second file specification is missing. */ | ||
309 | if (!filespec2 || (filespec1 != NULL && filespec1[0] == '/')) | ||
310 | { | ||
311 | len = strlen(filespec1) + 1; | ||
312 | merged = OPENSSL_malloc(len); | ||
313 | if(!merged) | ||
314 | { | ||
315 | DSOerr(DSO_F_DLFCN_MERGER, ERR_R_MALLOC_FAILURE); | ||
316 | return(NULL); | ||
317 | } | ||
318 | strlcpy(merged, filespec1, len); | ||
319 | } | ||
320 | /* If the first file specification is missing, the second one rules. */ | ||
321 | else if (!filespec1) | ||
322 | { | ||
323 | len = strlen(filespec2) + 1; | ||
324 | merged = OPENSSL_malloc(strlen(filespec2) + 1); | ||
325 | if(!merged) | ||
326 | { | ||
327 | DSOerr(DSO_F_DLFCN_MERGER, | ||
328 | ERR_R_MALLOC_FAILURE); | ||
329 | return(NULL); | ||
330 | } | ||
331 | strlcpy(merged, filespec2, len); | ||
332 | } | ||
333 | else | ||
334 | /* This part isn't as trivial as it looks. It assumes that | ||
335 | the second file specification really is a directory, and | ||
336 | makes no checks whatsoever. Therefore, the result becomes | ||
337 | the concatenation of filespec2 followed by a slash followed | ||
338 | by filespec1. */ | ||
339 | { | ||
340 | int spec2len, len; | ||
341 | |||
342 | spec2len = strlen(filespec2); | ||
343 | len = spec2len + (filespec1 ? strlen(filespec1) : 0); | ||
344 | |||
345 | if(filespec2 && filespec2[spec2len - 1] == '/') | ||
346 | { | ||
347 | spec2len--; | ||
348 | len--; | ||
349 | } | ||
350 | merged = OPENSSL_malloc(len + 2); | ||
351 | if(!merged) | ||
352 | { | ||
353 | DSOerr(DSO_F_DLFCN_MERGER, | ||
354 | ERR_R_MALLOC_FAILURE); | ||
355 | return(NULL); | ||
356 | } | ||
357 | strlcpy(merged, filespec2, len + 2); | ||
358 | merged[spec2len] = '/'; | ||
359 | strlcpy(&merged[spec2len + 1], filespec1, len + 1 - spec2len); | ||
360 | } | ||
361 | return(merged); | ||
362 | } | ||
363 | |||
364 | #ifdef OPENSSL_SYS_MACOSX | ||
365 | #define DSO_ext ".dylib" | ||
366 | #define DSO_extlen 6 | ||
367 | #else | ||
368 | #define DSO_ext ".so" | ||
369 | #define DSO_extlen 3 | ||
370 | #endif | ||
371 | |||
372 | |||
373 | static char *dlfcn_name_converter(DSO *dso, const char *filename) | ||
374 | { | ||
375 | char *translated; | ||
376 | int len, rsize, transform; | ||
377 | |||
378 | len = strlen(filename); | ||
379 | rsize = len + 1; | ||
380 | transform = (strstr(filename, "/") == NULL); | ||
381 | if(transform) | ||
382 | { | ||
383 | /* We will convert this to "%s.so" or "lib%s.so" etc */ | ||
384 | rsize += DSO_extlen; /* The length of ".so" */ | ||
385 | if ((DSO_flags(dso) & DSO_FLAG_NAME_TRANSLATION_EXT_ONLY) == 0) | ||
386 | rsize += 3; /* The length of "lib" */ | ||
387 | } | ||
388 | translated = OPENSSL_malloc(rsize); | ||
389 | if(translated == NULL) | ||
390 | { | ||
391 | DSOerr(DSO_F_DLFCN_NAME_CONVERTER, | ||
392 | DSO_R_NAME_TRANSLATION_FAILED); | ||
393 | return(NULL); | ||
394 | } | ||
395 | if(transform) | ||
396 | { | ||
397 | if ((DSO_flags(dso) & DSO_FLAG_NAME_TRANSLATION_EXT_ONLY) == 0) | ||
398 | snprintf(translated, rsize, "lib%s" DSO_ext, filename); | ||
399 | else | ||
400 | snprintf(translated, rsize, "%s" DSO_ext, filename); | ||
401 | } | ||
402 | else | ||
403 | snprintf(translated, rsize, "%s", filename); | ||
404 | return(translated); | ||
405 | } | ||
406 | |||
407 | #if defined(__sgi) && !defined(__OpenBSD__) | ||
408 | /* | ||
409 | This is a quote from IRIX manual for dladdr(3c): | ||
410 | |||
411 | <dlfcn.h> does not contain a prototype for dladdr or definition of | ||
412 | Dl_info. The #include <dlfcn.h> in the SYNOPSIS line is traditional, | ||
413 | but contains no dladdr prototype and no IRIX library contains an | ||
414 | implementation. Write your own declaration based on the code below. | ||
415 | |||
416 | The following code is dependent on internal interfaces that are not | ||
417 | part of the IRIX compatibility guarantee; however, there is no future | ||
418 | intention to change this interface, so on a practical level, the code | ||
419 | below is safe to use on IRIX. | ||
420 | */ | ||
421 | #include <rld_interface.h> | ||
422 | #ifndef _RLD_INTERFACE_DLFCN_H_DLADDR | ||
423 | #define _RLD_INTERFACE_DLFCN_H_DLADDR | ||
424 | typedef struct Dl_info { | ||
425 | const char * dli_fname; | ||
426 | void * dli_fbase; | ||
427 | const char * dli_sname; | ||
428 | void * dli_saddr; | ||
429 | int dli_version; | ||
430 | int dli_reserved1; | ||
431 | long dli_reserved[4]; | ||
432 | } Dl_info; | ||
433 | #else | ||
434 | typedef struct Dl_info Dl_info; | ||
435 | #endif | ||
436 | #define _RLD_DLADDR 14 | ||
437 | |||
438 | static int dladdr(void *address, Dl_info *dl) | ||
439 | { | ||
440 | void *v; | ||
441 | v = _rld_new_interface(_RLD_DLADDR,address,dl); | ||
442 | return (int)v; | ||
443 | } | ||
444 | #endif /* __sgi */ | ||
445 | |||
446 | static int dlfcn_pathbyaddr(void *addr,char *path,int sz) | ||
447 | { | ||
448 | #ifdef HAVE_DLINFO | ||
449 | Dl_info dli; | ||
450 | int len; | ||
451 | |||
452 | if (addr == NULL) | ||
453 | { | ||
454 | union { int(*f)(void*,char*,int); void *p; } t = | ||
455 | { dlfcn_pathbyaddr }; | ||
456 | addr = t.p; | ||
457 | } | ||
458 | |||
459 | if (dladdr(addr,&dli)) | ||
460 | { | ||
461 | len = (int)strlen(dli.dli_fname); | ||
462 | if (sz <= 0) return len+1; | ||
463 | if (len >= sz) len=sz-1; | ||
464 | memcpy(path,dli.dli_fname,len); | ||
465 | path[len++]=0; | ||
466 | return len; | ||
467 | } | ||
468 | |||
469 | ERR_add_error_data(4, "dlfcn_pathbyaddr(): ", dlerror()); | ||
470 | #endif | ||
471 | return -1; | ||
472 | } | ||
473 | |||
474 | static void *dlfcn_globallookup(const char *name) | ||
475 | { | ||
476 | void *ret = NULL,*handle = dlopen(NULL,RTLD_LAZY); | ||
477 | |||
478 | if (handle) | ||
479 | { | ||
480 | ret = dlsym(handle,name); | ||
481 | dlclose(handle); | ||
482 | } | ||
483 | |||
484 | return ret; | ||
485 | } | ||
486 | #endif /* DSO_DLFCN */ | ||
diff --git a/src/lib/libcrypto/dso/dso_err.c b/src/lib/libcrypto/dso/dso_err.c deleted file mode 100644 index 2bb07c2514..0000000000 --- a/src/lib/libcrypto/dso/dso_err.c +++ /dev/null | |||
@@ -1,159 +0,0 @@ | |||
1 | /* crypto/dso/dso_err.c */ | ||
2 | /* ==================================================================== | ||
3 | * Copyright (c) 1999-2006 The OpenSSL Project. All rights reserved. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions | ||
7 | * are met: | ||
8 | * | ||
9 | * 1. Redistributions of source code must retain the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer. | ||
11 | * | ||
12 | * 2. Redistributions in binary form must reproduce the above copyright | ||
13 | * notice, this list of conditions and the following disclaimer in | ||
14 | * the documentation and/or other materials provided with the | ||
15 | * distribution. | ||
16 | * | ||
17 | * 3. All advertising materials mentioning features or use of this | ||
18 | * software must display the following acknowledgment: | ||
19 | * "This product includes software developed by the OpenSSL Project | ||
20 | * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" | ||
21 | * | ||
22 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to | ||
23 | * endorse or promote products derived from this software without | ||
24 | * prior written permission. For written permission, please contact | ||
25 | * openssl-core@OpenSSL.org. | ||
26 | * | ||
27 | * 5. Products derived from this software may not be called "OpenSSL" | ||
28 | * nor may "OpenSSL" appear in their names without prior written | ||
29 | * permission of the OpenSSL Project. | ||
30 | * | ||
31 | * 6. Redistributions of any form whatsoever must retain the following | ||
32 | * acknowledgment: | ||
33 | * "This product includes software developed by the OpenSSL Project | ||
34 | * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" | ||
35 | * | ||
36 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY | ||
37 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
38 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
39 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR | ||
40 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
41 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
42 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
43 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
44 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
45 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
46 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | ||
47 | * OF THE POSSIBILITY OF SUCH DAMAGE. | ||
48 | * ==================================================================== | ||
49 | * | ||
50 | * This product includes cryptographic software written by Eric Young | ||
51 | * (eay@cryptsoft.com). This product includes software written by Tim | ||
52 | * Hudson (tjh@cryptsoft.com). | ||
53 | * | ||
54 | */ | ||
55 | |||
56 | /* NOTE: this file was auto generated by the mkerr.pl script: any changes | ||
57 | * made to it will be overwritten when the script next updates this file, | ||
58 | * only reason strings will be preserved. | ||
59 | */ | ||
60 | |||
61 | #include <stdio.h> | ||
62 | #include <openssl/err.h> | ||
63 | #include <openssl/dso.h> | ||
64 | |||
65 | /* BEGIN ERROR CODES */ | ||
66 | #ifndef OPENSSL_NO_ERR | ||
67 | |||
68 | #define ERR_FUNC(func) ERR_PACK(ERR_LIB_DSO,func,0) | ||
69 | #define ERR_REASON(reason) ERR_PACK(ERR_LIB_DSO,0,reason) | ||
70 | |||
71 | static ERR_STRING_DATA DSO_str_functs[]= | ||
72 | { | ||
73 | {ERR_FUNC(DSO_F_BEOS_BIND_FUNC), "BEOS_BIND_FUNC"}, | ||
74 | {ERR_FUNC(DSO_F_BEOS_BIND_VAR), "BEOS_BIND_VAR"}, | ||
75 | {ERR_FUNC(DSO_F_BEOS_LOAD), "BEOS_LOAD"}, | ||
76 | {ERR_FUNC(DSO_F_BEOS_NAME_CONVERTER), "BEOS_NAME_CONVERTER"}, | ||
77 | {ERR_FUNC(DSO_F_BEOS_UNLOAD), "BEOS_UNLOAD"}, | ||
78 | {ERR_FUNC(DSO_F_DLFCN_BIND_FUNC), "DLFCN_BIND_FUNC"}, | ||
79 | {ERR_FUNC(DSO_F_DLFCN_BIND_VAR), "DLFCN_BIND_VAR"}, | ||
80 | {ERR_FUNC(DSO_F_DLFCN_LOAD), "DLFCN_LOAD"}, | ||
81 | {ERR_FUNC(DSO_F_DLFCN_MERGER), "DLFCN_MERGER"}, | ||
82 | {ERR_FUNC(DSO_F_DLFCN_NAME_CONVERTER), "DLFCN_NAME_CONVERTER"}, | ||
83 | {ERR_FUNC(DSO_F_DLFCN_UNLOAD), "DLFCN_UNLOAD"}, | ||
84 | {ERR_FUNC(DSO_F_DL_BIND_FUNC), "DL_BIND_FUNC"}, | ||
85 | {ERR_FUNC(DSO_F_DL_BIND_VAR), "DL_BIND_VAR"}, | ||
86 | {ERR_FUNC(DSO_F_DL_LOAD), "DL_LOAD"}, | ||
87 | {ERR_FUNC(DSO_F_DL_MERGER), "DL_MERGER"}, | ||
88 | {ERR_FUNC(DSO_F_DL_NAME_CONVERTER), "DL_NAME_CONVERTER"}, | ||
89 | {ERR_FUNC(DSO_F_DL_UNLOAD), "DL_UNLOAD"}, | ||
90 | {ERR_FUNC(DSO_F_DSO_BIND_FUNC), "DSO_bind_func"}, | ||
91 | {ERR_FUNC(DSO_F_DSO_BIND_VAR), "DSO_bind_var"}, | ||
92 | {ERR_FUNC(DSO_F_DSO_CONVERT_FILENAME), "DSO_convert_filename"}, | ||
93 | {ERR_FUNC(DSO_F_DSO_CTRL), "DSO_ctrl"}, | ||
94 | {ERR_FUNC(DSO_F_DSO_FREE), "DSO_free"}, | ||
95 | {ERR_FUNC(DSO_F_DSO_GET_FILENAME), "DSO_get_filename"}, | ||
96 | {ERR_FUNC(DSO_F_DSO_GET_LOADED_FILENAME), "DSO_get_loaded_filename"}, | ||
97 | {ERR_FUNC(DSO_F_DSO_GLOBAL_LOOKUP), "DSO_global_lookup"}, | ||
98 | {ERR_FUNC(DSO_F_DSO_LOAD), "DSO_load"}, | ||
99 | {ERR_FUNC(DSO_F_DSO_MERGE), "DSO_merge"}, | ||
100 | {ERR_FUNC(DSO_F_DSO_NEW_METHOD), "DSO_new_method"}, | ||
101 | {ERR_FUNC(DSO_F_DSO_PATHBYADDR), "DSO_pathbyaddr"}, | ||
102 | {ERR_FUNC(DSO_F_DSO_SET_FILENAME), "DSO_set_filename"}, | ||
103 | {ERR_FUNC(DSO_F_DSO_SET_NAME_CONVERTER), "DSO_set_name_converter"}, | ||
104 | {ERR_FUNC(DSO_F_DSO_UP_REF), "DSO_up_ref"}, | ||
105 | {ERR_FUNC(DSO_F_GLOBAL_LOOKUP_FUNC), "GLOBAL_LOOKUP_FUNC"}, | ||
106 | {ERR_FUNC(DSO_F_PATHBYADDR), "PATHBYADDR"}, | ||
107 | {ERR_FUNC(DSO_F_VMS_BIND_SYM), "VMS_BIND_SYM"}, | ||
108 | {ERR_FUNC(DSO_F_VMS_LOAD), "VMS_LOAD"}, | ||
109 | {ERR_FUNC(DSO_F_VMS_MERGER), "VMS_MERGER"}, | ||
110 | {ERR_FUNC(DSO_F_VMS_UNLOAD), "VMS_UNLOAD"}, | ||
111 | {ERR_FUNC(DSO_F_WIN32_BIND_FUNC), "WIN32_BIND_FUNC"}, | ||
112 | {ERR_FUNC(DSO_F_WIN32_BIND_VAR), "WIN32_BIND_VAR"}, | ||
113 | {ERR_FUNC(DSO_F_WIN32_GLOBALLOOKUP), "WIN32_GLOBALLOOKUP"}, | ||
114 | {ERR_FUNC(DSO_F_WIN32_GLOBALLOOKUP_FUNC), "WIN32_GLOBALLOOKUP_FUNC"}, | ||
115 | {ERR_FUNC(DSO_F_WIN32_JOINER), "WIN32_JOINER"}, | ||
116 | {ERR_FUNC(DSO_F_WIN32_LOAD), "WIN32_LOAD"}, | ||
117 | {ERR_FUNC(DSO_F_WIN32_MERGER), "WIN32_MERGER"}, | ||
118 | {ERR_FUNC(DSO_F_WIN32_NAME_CONVERTER), "WIN32_NAME_CONVERTER"}, | ||
119 | {ERR_FUNC(DSO_F_WIN32_PATHBYADDR), "WIN32_PATHBYADDR"}, | ||
120 | {ERR_FUNC(DSO_F_WIN32_SPLITTER), "WIN32_SPLITTER"}, | ||
121 | {ERR_FUNC(DSO_F_WIN32_UNLOAD), "WIN32_UNLOAD"}, | ||
122 | {0,NULL} | ||
123 | }; | ||
124 | |||
125 | static ERR_STRING_DATA DSO_str_reasons[]= | ||
126 | { | ||
127 | {ERR_REASON(DSO_R_CTRL_FAILED) ,"control command failed"}, | ||
128 | {ERR_REASON(DSO_R_DSO_ALREADY_LOADED) ,"dso already loaded"}, | ||
129 | {ERR_REASON(DSO_R_EMPTY_FILE_STRUCTURE) ,"empty file structure"}, | ||
130 | {ERR_REASON(DSO_R_FAILURE) ,"failure"}, | ||
131 | {ERR_REASON(DSO_R_FILENAME_TOO_BIG) ,"filename too big"}, | ||
132 | {ERR_REASON(DSO_R_FINISH_FAILED) ,"cleanup method function failed"}, | ||
133 | {ERR_REASON(DSO_R_INCORRECT_FILE_SYNTAX) ,"incorrect file syntax"}, | ||
134 | {ERR_REASON(DSO_R_LOAD_FAILED) ,"could not load the shared library"}, | ||
135 | {ERR_REASON(DSO_R_NAME_TRANSLATION_FAILED),"name translation failed"}, | ||
136 | {ERR_REASON(DSO_R_NO_FILENAME) ,"no filename"}, | ||
137 | {ERR_REASON(DSO_R_NO_FILE_SPECIFICATION) ,"no file specification"}, | ||
138 | {ERR_REASON(DSO_R_NULL_HANDLE) ,"a null shared library handle was used"}, | ||
139 | {ERR_REASON(DSO_R_SET_FILENAME_FAILED) ,"set filename failed"}, | ||
140 | {ERR_REASON(DSO_R_STACK_ERROR) ,"the meth_data stack is corrupt"}, | ||
141 | {ERR_REASON(DSO_R_SYM_FAILURE) ,"could not bind to the requested symbol name"}, | ||
142 | {ERR_REASON(DSO_R_UNLOAD_FAILED) ,"could not unload the shared library"}, | ||
143 | {ERR_REASON(DSO_R_UNSUPPORTED) ,"functionality not supported"}, | ||
144 | {0,NULL} | ||
145 | }; | ||
146 | |||
147 | #endif | ||
148 | |||
149 | void ERR_load_DSO_strings(void) | ||
150 | { | ||
151 | #ifndef OPENSSL_NO_ERR | ||
152 | |||
153 | if (ERR_func_error_string(DSO_str_functs[0].error) == NULL) | ||
154 | { | ||
155 | ERR_load_strings(0,DSO_str_functs); | ||
156 | ERR_load_strings(0,DSO_str_reasons); | ||
157 | } | ||
158 | #endif | ||
159 | } | ||
diff --git a/src/lib/libcrypto/dso/dso_lib.c b/src/lib/libcrypto/dso/dso_lib.c deleted file mode 100644 index 8a15b794ab..0000000000 --- a/src/lib/libcrypto/dso/dso_lib.c +++ /dev/null | |||
@@ -1,483 +0,0 @@ | |||
1 | /* dso_lib.c -*- mode:C; c-file-style: "eay" -*- */ | ||
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 <openssl/crypto.h> | ||
61 | #include "cryptlib.h" | ||
62 | #include <openssl/dso.h> | ||
63 | |||
64 | static DSO_METHOD *default_DSO_meth = NULL; | ||
65 | |||
66 | DSO *DSO_new(void) | ||
67 | { | ||
68 | return(DSO_new_method(NULL)); | ||
69 | } | ||
70 | |||
71 | void DSO_set_default_method(DSO_METHOD *meth) | ||
72 | { | ||
73 | default_DSO_meth = meth; | ||
74 | } | ||
75 | |||
76 | DSO_METHOD *DSO_get_default_method(void) | ||
77 | { | ||
78 | return(default_DSO_meth); | ||
79 | } | ||
80 | |||
81 | DSO_METHOD *DSO_get_method(DSO *dso) | ||
82 | { | ||
83 | return(dso->meth); | ||
84 | } | ||
85 | |||
86 | DSO_METHOD *DSO_set_method(DSO *dso, DSO_METHOD *meth) | ||
87 | { | ||
88 | DSO_METHOD *mtmp; | ||
89 | mtmp = dso->meth; | ||
90 | dso->meth = meth; | ||
91 | return(mtmp); | ||
92 | } | ||
93 | |||
94 | DSO *DSO_new_method(DSO_METHOD *meth) | ||
95 | { | ||
96 | DSO *ret; | ||
97 | |||
98 | if(default_DSO_meth == NULL) | ||
99 | /* We default to DSO_METH_openssl() which in turn defaults | ||
100 | * to stealing the "best available" method. Will fallback | ||
101 | * to DSO_METH_null() in the worst case. */ | ||
102 | default_DSO_meth = DSO_METHOD_openssl(); | ||
103 | ret = (DSO *)OPENSSL_malloc(sizeof(DSO)); | ||
104 | if(ret == NULL) | ||
105 | { | ||
106 | DSOerr(DSO_F_DSO_NEW_METHOD,ERR_R_MALLOC_FAILURE); | ||
107 | return(NULL); | ||
108 | } | ||
109 | memset(ret, 0, sizeof(DSO)); | ||
110 | ret->meth_data = sk_void_new_null(); | ||
111 | if(ret->meth_data == NULL) | ||
112 | { | ||
113 | /* sk_new doesn't generate any errors so we do */ | ||
114 | DSOerr(DSO_F_DSO_NEW_METHOD,ERR_R_MALLOC_FAILURE); | ||
115 | OPENSSL_free(ret); | ||
116 | return(NULL); | ||
117 | } | ||
118 | if(meth == NULL) | ||
119 | ret->meth = default_DSO_meth; | ||
120 | else | ||
121 | ret->meth = meth; | ||
122 | ret->references = 1; | ||
123 | if((ret->meth->init != NULL) && !ret->meth->init(ret)) | ||
124 | { | ||
125 | OPENSSL_free(ret); | ||
126 | ret=NULL; | ||
127 | } | ||
128 | return(ret); | ||
129 | } | ||
130 | |||
131 | int DSO_free(DSO *dso) | ||
132 | { | ||
133 | int i; | ||
134 | |||
135 | if(dso == NULL) | ||
136 | { | ||
137 | DSOerr(DSO_F_DSO_FREE,ERR_R_PASSED_NULL_PARAMETER); | ||
138 | return(0); | ||
139 | } | ||
140 | |||
141 | i=CRYPTO_add(&dso->references,-1,CRYPTO_LOCK_DSO); | ||
142 | #ifdef REF_PRINT | ||
143 | REF_PRINT("DSO",dso); | ||
144 | #endif | ||
145 | if(i > 0) return(1); | ||
146 | #ifdef REF_CHECK | ||
147 | if(i < 0) | ||
148 | { | ||
149 | fprintf(stderr,"DSO_free, bad reference count\n"); | ||
150 | abort(); | ||
151 | } | ||
152 | #endif | ||
153 | |||
154 | if((dso->meth->dso_unload != NULL) && !dso->meth->dso_unload(dso)) | ||
155 | { | ||
156 | DSOerr(DSO_F_DSO_FREE,DSO_R_UNLOAD_FAILED); | ||
157 | return(0); | ||
158 | } | ||
159 | |||
160 | if((dso->meth->finish != NULL) && !dso->meth->finish(dso)) | ||
161 | { | ||
162 | DSOerr(DSO_F_DSO_FREE,DSO_R_FINISH_FAILED); | ||
163 | return(0); | ||
164 | } | ||
165 | |||
166 | sk_void_free(dso->meth_data); | ||
167 | if(dso->filename != NULL) | ||
168 | OPENSSL_free(dso->filename); | ||
169 | if(dso->loaded_filename != NULL) | ||
170 | OPENSSL_free(dso->loaded_filename); | ||
171 | |||
172 | OPENSSL_free(dso); | ||
173 | return(1); | ||
174 | } | ||
175 | |||
176 | int DSO_flags(DSO *dso) | ||
177 | { | ||
178 | return((dso == NULL) ? 0 : dso->flags); | ||
179 | } | ||
180 | |||
181 | |||
182 | int DSO_up_ref(DSO *dso) | ||
183 | { | ||
184 | if (dso == NULL) | ||
185 | { | ||
186 | DSOerr(DSO_F_DSO_UP_REF,ERR_R_PASSED_NULL_PARAMETER); | ||
187 | return(0); | ||
188 | } | ||
189 | |||
190 | CRYPTO_add(&dso->references,1,CRYPTO_LOCK_DSO); | ||
191 | return(1); | ||
192 | } | ||
193 | |||
194 | DSO *DSO_load(DSO *dso, const char *filename, DSO_METHOD *meth, int flags) | ||
195 | { | ||
196 | DSO *ret; | ||
197 | int allocated = 0; | ||
198 | |||
199 | if(dso == NULL) | ||
200 | { | ||
201 | ret = DSO_new_method(meth); | ||
202 | if(ret == NULL) | ||
203 | { | ||
204 | DSOerr(DSO_F_DSO_LOAD,ERR_R_MALLOC_FAILURE); | ||
205 | goto err; | ||
206 | } | ||
207 | allocated = 1; | ||
208 | /* Pass the provided flags to the new DSO object */ | ||
209 | if(DSO_ctrl(ret, DSO_CTRL_SET_FLAGS, flags, NULL) < 0) | ||
210 | { | ||
211 | DSOerr(DSO_F_DSO_LOAD,DSO_R_CTRL_FAILED); | ||
212 | goto err; | ||
213 | } | ||
214 | } | ||
215 | else | ||
216 | ret = dso; | ||
217 | /* Don't load if we're currently already loaded */ | ||
218 | if(ret->filename != NULL) | ||
219 | { | ||
220 | DSOerr(DSO_F_DSO_LOAD,DSO_R_DSO_ALREADY_LOADED); | ||
221 | goto err; | ||
222 | } | ||
223 | /* filename can only be NULL if we were passed a dso that already has | ||
224 | * one set. */ | ||
225 | if(filename != NULL) | ||
226 | if(!DSO_set_filename(ret, filename)) | ||
227 | { | ||
228 | DSOerr(DSO_F_DSO_LOAD,DSO_R_SET_FILENAME_FAILED); | ||
229 | goto err; | ||
230 | } | ||
231 | filename = ret->filename; | ||
232 | if(filename == NULL) | ||
233 | { | ||
234 | DSOerr(DSO_F_DSO_LOAD,DSO_R_NO_FILENAME); | ||
235 | goto err; | ||
236 | } | ||
237 | if(ret->meth->dso_load == NULL) | ||
238 | { | ||
239 | DSOerr(DSO_F_DSO_LOAD,DSO_R_UNSUPPORTED); | ||
240 | goto err; | ||
241 | } | ||
242 | if(!ret->meth->dso_load(ret)) | ||
243 | { | ||
244 | DSOerr(DSO_F_DSO_LOAD,DSO_R_LOAD_FAILED); | ||
245 | goto err; | ||
246 | } | ||
247 | /* Load succeeded */ | ||
248 | return(ret); | ||
249 | err: | ||
250 | if(allocated) | ||
251 | DSO_free(ret); | ||
252 | return(NULL); | ||
253 | } | ||
254 | |||
255 | void *DSO_bind_var(DSO *dso, const char *symname) | ||
256 | { | ||
257 | void *ret = NULL; | ||
258 | |||
259 | if((dso == NULL) || (symname == NULL)) | ||
260 | { | ||
261 | DSOerr(DSO_F_DSO_BIND_VAR,ERR_R_PASSED_NULL_PARAMETER); | ||
262 | return(NULL); | ||
263 | } | ||
264 | if(dso->meth->dso_bind_var == NULL) | ||
265 | { | ||
266 | DSOerr(DSO_F_DSO_BIND_VAR,DSO_R_UNSUPPORTED); | ||
267 | return(NULL); | ||
268 | } | ||
269 | if((ret = dso->meth->dso_bind_var(dso, symname)) == NULL) | ||
270 | { | ||
271 | DSOerr(DSO_F_DSO_BIND_VAR,DSO_R_SYM_FAILURE); | ||
272 | return(NULL); | ||
273 | } | ||
274 | /* Success */ | ||
275 | return(ret); | ||
276 | } | ||
277 | |||
278 | DSO_FUNC_TYPE DSO_bind_func(DSO *dso, const char *symname) | ||
279 | { | ||
280 | DSO_FUNC_TYPE ret = NULL; | ||
281 | |||
282 | if((dso == NULL) || (symname == NULL)) | ||
283 | { | ||
284 | DSOerr(DSO_F_DSO_BIND_FUNC,ERR_R_PASSED_NULL_PARAMETER); | ||
285 | return(NULL); | ||
286 | } | ||
287 | if(dso->meth->dso_bind_func == NULL) | ||
288 | { | ||
289 | DSOerr(DSO_F_DSO_BIND_FUNC,DSO_R_UNSUPPORTED); | ||
290 | return(NULL); | ||
291 | } | ||
292 | if((ret = dso->meth->dso_bind_func(dso, symname)) == NULL) | ||
293 | { | ||
294 | DSOerr(DSO_F_DSO_BIND_FUNC,DSO_R_SYM_FAILURE); | ||
295 | return(NULL); | ||
296 | } | ||
297 | /* Success */ | ||
298 | return(ret); | ||
299 | } | ||
300 | |||
301 | /* I don't really like these *_ctrl functions very much to be perfectly | ||
302 | * honest. For one thing, I think I have to return a negative value for | ||
303 | * any error because possible DSO_ctrl() commands may return values | ||
304 | * such as "size"s that can legitimately be zero (making the standard | ||
305 | * "if(DSO_cmd(...))" form that works almost everywhere else fail at | ||
306 | * odd times. I'd prefer "output" values to be passed by reference and | ||
307 | * the return value as success/failure like usual ... but we conform | ||
308 | * when we must... :-) */ | ||
309 | long DSO_ctrl(DSO *dso, int cmd, long larg, void *parg) | ||
310 | { | ||
311 | if(dso == NULL) | ||
312 | { | ||
313 | DSOerr(DSO_F_DSO_CTRL,ERR_R_PASSED_NULL_PARAMETER); | ||
314 | return(-1); | ||
315 | } | ||
316 | /* We should intercept certain generic commands and only pass control | ||
317 | * to the method-specific ctrl() function if it's something we don't | ||
318 | * handle. */ | ||
319 | switch(cmd) | ||
320 | { | ||
321 | case DSO_CTRL_GET_FLAGS: | ||
322 | return dso->flags; | ||
323 | case DSO_CTRL_SET_FLAGS: | ||
324 | dso->flags = (int)larg; | ||
325 | return(0); | ||
326 | case DSO_CTRL_OR_FLAGS: | ||
327 | dso->flags |= (int)larg; | ||
328 | return(0); | ||
329 | default: | ||
330 | break; | ||
331 | } | ||
332 | if((dso->meth == NULL) || (dso->meth->dso_ctrl == NULL)) | ||
333 | { | ||
334 | DSOerr(DSO_F_DSO_CTRL,DSO_R_UNSUPPORTED); | ||
335 | return(-1); | ||
336 | } | ||
337 | return(dso->meth->dso_ctrl(dso,cmd,larg,parg)); | ||
338 | } | ||
339 | |||
340 | int DSO_set_name_converter(DSO *dso, DSO_NAME_CONVERTER_FUNC cb, | ||
341 | DSO_NAME_CONVERTER_FUNC *oldcb) | ||
342 | { | ||
343 | if(dso == NULL) | ||
344 | { | ||
345 | DSOerr(DSO_F_DSO_SET_NAME_CONVERTER, | ||
346 | ERR_R_PASSED_NULL_PARAMETER); | ||
347 | return(0); | ||
348 | } | ||
349 | if(oldcb) | ||
350 | *oldcb = dso->name_converter; | ||
351 | dso->name_converter = cb; | ||
352 | return(1); | ||
353 | } | ||
354 | |||
355 | const char *DSO_get_filename(DSO *dso) | ||
356 | { | ||
357 | if(dso == NULL) | ||
358 | { | ||
359 | DSOerr(DSO_F_DSO_GET_FILENAME,ERR_R_PASSED_NULL_PARAMETER); | ||
360 | return(NULL); | ||
361 | } | ||
362 | return(dso->filename); | ||
363 | } | ||
364 | |||
365 | int DSO_set_filename(DSO *dso, const char *filename) | ||
366 | { | ||
367 | char *copied; | ||
368 | |||
369 | if((dso == NULL) || (filename == NULL)) | ||
370 | { | ||
371 | DSOerr(DSO_F_DSO_SET_FILENAME,ERR_R_PASSED_NULL_PARAMETER); | ||
372 | return(0); | ||
373 | } | ||
374 | if(dso->loaded_filename) | ||
375 | { | ||
376 | DSOerr(DSO_F_DSO_SET_FILENAME,DSO_R_DSO_ALREADY_LOADED); | ||
377 | return(0); | ||
378 | } | ||
379 | /* We'll duplicate filename */ | ||
380 | copied = OPENSSL_malloc(strlen(filename) + 1); | ||
381 | if(copied == NULL) | ||
382 | { | ||
383 | DSOerr(DSO_F_DSO_SET_FILENAME,ERR_R_MALLOC_FAILURE); | ||
384 | return(0); | ||
385 | } | ||
386 | BUF_strlcpy(copied, filename, strlen(filename) + 1); | ||
387 | if(dso->filename) | ||
388 | OPENSSL_free(dso->filename); | ||
389 | dso->filename = copied; | ||
390 | return(1); | ||
391 | } | ||
392 | |||
393 | char *DSO_merge(DSO *dso, const char *filespec1, const char *filespec2) | ||
394 | { | ||
395 | char *result = NULL; | ||
396 | |||
397 | if(dso == NULL || filespec1 == NULL) | ||
398 | { | ||
399 | DSOerr(DSO_F_DSO_MERGE,ERR_R_PASSED_NULL_PARAMETER); | ||
400 | return(NULL); | ||
401 | } | ||
402 | if((dso->flags & DSO_FLAG_NO_NAME_TRANSLATION) == 0) | ||
403 | { | ||
404 | if(dso->merger != NULL) | ||
405 | result = dso->merger(dso, filespec1, filespec2); | ||
406 | else if(dso->meth->dso_merger != NULL) | ||
407 | result = dso->meth->dso_merger(dso, | ||
408 | filespec1, filespec2); | ||
409 | } | ||
410 | return(result); | ||
411 | } | ||
412 | |||
413 | char *DSO_convert_filename(DSO *dso, const char *filename) | ||
414 | { | ||
415 | char *result = NULL; | ||
416 | |||
417 | if(dso == NULL) | ||
418 | { | ||
419 | DSOerr(DSO_F_DSO_CONVERT_FILENAME,ERR_R_PASSED_NULL_PARAMETER); | ||
420 | return(NULL); | ||
421 | } | ||
422 | if(filename == NULL) | ||
423 | filename = dso->filename; | ||
424 | if(filename == NULL) | ||
425 | { | ||
426 | DSOerr(DSO_F_DSO_CONVERT_FILENAME,DSO_R_NO_FILENAME); | ||
427 | return(NULL); | ||
428 | } | ||
429 | if((dso->flags & DSO_FLAG_NO_NAME_TRANSLATION) == 0) | ||
430 | { | ||
431 | if(dso->name_converter != NULL) | ||
432 | result = dso->name_converter(dso, filename); | ||
433 | else if(dso->meth->dso_name_converter != NULL) | ||
434 | result = dso->meth->dso_name_converter(dso, filename); | ||
435 | } | ||
436 | if(result == NULL) | ||
437 | { | ||
438 | result = OPENSSL_malloc(strlen(filename) + 1); | ||
439 | if(result == NULL) | ||
440 | { | ||
441 | DSOerr(DSO_F_DSO_CONVERT_FILENAME, | ||
442 | ERR_R_MALLOC_FAILURE); | ||
443 | return(NULL); | ||
444 | } | ||
445 | BUF_strlcpy(result, filename, strlen(filename) + 1); | ||
446 | } | ||
447 | return(result); | ||
448 | } | ||
449 | |||
450 | const char *DSO_get_loaded_filename(DSO *dso) | ||
451 | { | ||
452 | if(dso == NULL) | ||
453 | { | ||
454 | DSOerr(DSO_F_DSO_GET_LOADED_FILENAME, | ||
455 | ERR_R_PASSED_NULL_PARAMETER); | ||
456 | return(NULL); | ||
457 | } | ||
458 | return(dso->loaded_filename); | ||
459 | } | ||
460 | |||
461 | int DSO_pathbyaddr(void *addr,char *path,int sz) | ||
462 | { | ||
463 | DSO_METHOD *meth = default_DSO_meth; | ||
464 | if (meth == NULL) meth = DSO_METHOD_openssl(); | ||
465 | if (meth->pathbyaddr == NULL) | ||
466 | { | ||
467 | DSOerr(DSO_F_DSO_PATHBYADDR,DSO_R_UNSUPPORTED); | ||
468 | return -1; | ||
469 | } | ||
470 | return (*meth->pathbyaddr)(addr,path,sz); | ||
471 | } | ||
472 | |||
473 | void *DSO_global_lookup(const char *name) | ||
474 | { | ||
475 | DSO_METHOD *meth = default_DSO_meth; | ||
476 | if (meth == NULL) meth = DSO_METHOD_openssl(); | ||
477 | if (meth->globallookup == NULL) | ||
478 | { | ||
479 | DSOerr(DSO_F_DSO_GLOBAL_LOOKUP,DSO_R_UNSUPPORTED); | ||
480 | return NULL; | ||
481 | } | ||
482 | return (*meth->globallookup)(name); | ||
483 | } | ||
diff --git a/src/lib/libcrypto/dso/dso_null.c b/src/lib/libcrypto/dso/dso_null.c deleted file mode 100644 index 49d842d1f5..0000000000 --- a/src/lib/libcrypto/dso/dso_null.c +++ /dev/null | |||
@@ -1,90 +0,0 @@ | |||
1 | /* dso_null.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 | /* This "NULL" method is provided as the fallback for systems that have | ||
60 | * no appropriate support for "shared-libraries". */ | ||
61 | |||
62 | #include <stdio.h> | ||
63 | #include "cryptlib.h" | ||
64 | #include <openssl/dso.h> | ||
65 | |||
66 | static DSO_METHOD dso_meth_null = { | ||
67 | "NULL shared library method", | ||
68 | NULL, /* load */ | ||
69 | NULL, /* unload */ | ||
70 | NULL, /* bind_var */ | ||
71 | NULL, /* bind_func */ | ||
72 | /* For now, "unbind" doesn't exist */ | ||
73 | #if 0 | ||
74 | NULL, /* unbind_var */ | ||
75 | NULL, /* unbind_func */ | ||
76 | #endif | ||
77 | NULL, /* ctrl */ | ||
78 | NULL, /* dso_name_converter */ | ||
79 | NULL, /* dso_merger */ | ||
80 | NULL, /* init */ | ||
81 | NULL, /* finish */ | ||
82 | NULL, /* pathbyaddr */ | ||
83 | NULL /* globallookup */ | ||
84 | }; | ||
85 | |||
86 | DSO_METHOD *DSO_METHOD_null(void) | ||
87 | { | ||
88 | return(&dso_meth_null); | ||
89 | } | ||
90 | |||
diff --git a/src/lib/libcrypto/dso/dso_openssl.c b/src/lib/libcrypto/dso/dso_openssl.c deleted file mode 100644 index b17e8e8e9e..0000000000 --- a/src/lib/libcrypto/dso/dso_openssl.c +++ /dev/null | |||
@@ -1,83 +0,0 @@ | |||
1 | /* dso_openssl.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 | /* We just pinch the method from an appropriate "default" method. */ | ||
64 | |||
65 | DSO_METHOD *DSO_METHOD_openssl(void) | ||
66 | { | ||
67 | #ifdef DEF_DSO_METHOD | ||
68 | return(DEF_DSO_METHOD()); | ||
69 | #elif defined(DSO_DLFCN) | ||
70 | return(DSO_METHOD_dlfcn()); | ||
71 | #elif defined(DSO_DL) | ||
72 | return(DSO_METHOD_dl()); | ||
73 | #elif defined(DSO_WIN32) | ||
74 | return(DSO_METHOD_win32()); | ||
75 | #elif defined(DSO_VMS) | ||
76 | return(DSO_METHOD_vms()); | ||
77 | #elif defined(DSO_BEOS) | ||
78 | return(DSO_METHOD_beos()); | ||
79 | #else | ||
80 | return(DSO_METHOD_null()); | ||
81 | #endif | ||
82 | } | ||
83 | |||
diff --git a/src/lib/libcrypto/dso/dso_vms.c b/src/lib/libcrypto/dso/dso_vms.c deleted file mode 100644 index eee20d14f1..0000000000 --- a/src/lib/libcrypto/dso/dso_vms.c +++ /dev/null | |||
@@ -1,525 +0,0 @@ | |||
1 | /* dso_vms.c -*- mode:C; c-file-style: "eay" -*- */ | ||
2 | /* Written by Richard Levitte (richard@levitte.org) 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 <string.h> | ||
61 | #include <errno.h> | ||
62 | #include "cryptlib.h" | ||
63 | #include <openssl/dso.h> | ||
64 | #ifdef OPENSSL_SYS_VMS | ||
65 | #pragma message disable DOLLARID | ||
66 | #include <rms.h> | ||
67 | #include <lib$routines.h> | ||
68 | #include <stsdef.h> | ||
69 | #include <descrip.h> | ||
70 | #include <starlet.h> | ||
71 | #include "vms_rms.h" | ||
72 | #endif | ||
73 | |||
74 | /* Some compiler options may mask the declaration of "_malloc32". */ | ||
75 | #if __INITIAL_POINTER_SIZE && defined _ANSI_C_SOURCE | ||
76 | # if __INITIAL_POINTER_SIZE == 64 | ||
77 | # pragma pointer_size save | ||
78 | # pragma pointer_size 32 | ||
79 | void * _malloc32 (__size_t); | ||
80 | # pragma pointer_size restore | ||
81 | # endif /* __INITIAL_POINTER_SIZE == 64 */ | ||
82 | #endif /* __INITIAL_POINTER_SIZE && defined _ANSI_C_SOURCE */ | ||
83 | |||
84 | |||
85 | #ifndef OPENSSL_SYS_VMS | ||
86 | DSO_METHOD *DSO_METHOD_vms(void) | ||
87 | { | ||
88 | return NULL; | ||
89 | } | ||
90 | #else | ||
91 | #pragma message disable DOLLARID | ||
92 | |||
93 | static int vms_load(DSO *dso); | ||
94 | static int vms_unload(DSO *dso); | ||
95 | static void *vms_bind_var(DSO *dso, const char *symname); | ||
96 | static DSO_FUNC_TYPE vms_bind_func(DSO *dso, const char *symname); | ||
97 | #if 0 | ||
98 | static int vms_unbind_var(DSO *dso, char *symname, void *symptr); | ||
99 | static int vms_unbind_func(DSO *dso, char *symname, DSO_FUNC_TYPE symptr); | ||
100 | static int vms_init(DSO *dso); | ||
101 | static int vms_finish(DSO *dso); | ||
102 | static long vms_ctrl(DSO *dso, int cmd, long larg, void *parg); | ||
103 | #endif | ||
104 | static char *vms_name_converter(DSO *dso, const char *filename); | ||
105 | static char *vms_merger(DSO *dso, const char *filespec1, | ||
106 | const char *filespec2); | ||
107 | |||
108 | static DSO_METHOD dso_meth_vms = { | ||
109 | "OpenSSL 'VMS' shared library method", | ||
110 | vms_load, | ||
111 | NULL, /* unload */ | ||
112 | vms_bind_var, | ||
113 | vms_bind_func, | ||
114 | /* For now, "unbind" doesn't exist */ | ||
115 | #if 0 | ||
116 | NULL, /* unbind_var */ | ||
117 | NULL, /* unbind_func */ | ||
118 | #endif | ||
119 | NULL, /* ctrl */ | ||
120 | vms_name_converter, | ||
121 | vms_merger, | ||
122 | NULL, /* init */ | ||
123 | NULL /* finish */ | ||
124 | }; | ||
125 | |||
126 | /* On VMS, the only "handle" is the file name. LIB$FIND_IMAGE_SYMBOL depends | ||
127 | * on the reference to the file name being the same for all calls regarding | ||
128 | * one shared image, so we'll just store it in an instance of the following | ||
129 | * structure and put a pointer to that instance in the meth_data stack. | ||
130 | */ | ||
131 | typedef struct dso_internal_st | ||
132 | { | ||
133 | /* This should contain the name only, no directory, | ||
134 | * no extension, nothing but a name. */ | ||
135 | struct dsc$descriptor_s filename_dsc; | ||
136 | char filename[ NAMX_MAXRSS+ 1]; | ||
137 | /* This contains whatever is not in filename, if needed. | ||
138 | * Normally not defined. */ | ||
139 | struct dsc$descriptor_s imagename_dsc; | ||
140 | char imagename[ NAMX_MAXRSS+ 1]; | ||
141 | } DSO_VMS_INTERNAL; | ||
142 | |||
143 | DSO_METHOD *DSO_METHOD_vms(void) | ||
144 | { | ||
145 | return(&dso_meth_vms); | ||
146 | } | ||
147 | |||
148 | static int vms_load(DSO *dso) | ||
149 | { | ||
150 | void *ptr = NULL; | ||
151 | /* See applicable comments in dso_dl.c */ | ||
152 | char *filename = DSO_convert_filename(dso, NULL); | ||
153 | |||
154 | /* Ensure 32-bit pointer for "p", and appropriate malloc() function. */ | ||
155 | #if __INITIAL_POINTER_SIZE == 64 | ||
156 | # define DSO_MALLOC _malloc32 | ||
157 | # pragma pointer_size save | ||
158 | # pragma pointer_size 32 | ||
159 | #else /* __INITIAL_POINTER_SIZE == 64 */ | ||
160 | # define DSO_MALLOC OPENSSL_malloc | ||
161 | #endif /* __INITIAL_POINTER_SIZE == 64 [else] */ | ||
162 | |||
163 | DSO_VMS_INTERNAL *p = NULL; | ||
164 | |||
165 | #if __INITIAL_POINTER_SIZE == 64 | ||
166 | # pragma pointer_size restore | ||
167 | #endif /* __INITIAL_POINTER_SIZE == 64 */ | ||
168 | |||
169 | const char *sp1, *sp2; /* Search result */ | ||
170 | |||
171 | if(filename == NULL) | ||
172 | { | ||
173 | DSOerr(DSO_F_VMS_LOAD,DSO_R_NO_FILENAME); | ||
174 | goto err; | ||
175 | } | ||
176 | |||
177 | /* A file specification may look like this: | ||
178 | * | ||
179 | * node::dev:[dir-spec]name.type;ver | ||
180 | * | ||
181 | * or (for compatibility with TOPS-20): | ||
182 | * | ||
183 | * node::dev:<dir-spec>name.type;ver | ||
184 | * | ||
185 | * and the dir-spec uses '.' as separator. Also, a dir-spec | ||
186 | * may consist of several parts, with mixed use of [] and <>: | ||
187 | * | ||
188 | * [dir1.]<dir2> | ||
189 | * | ||
190 | * We need to split the file specification into the name and | ||
191 | * the rest (both before and after the name itself). | ||
192 | */ | ||
193 | /* Start with trying to find the end of a dir-spec, and save the | ||
194 | position of the byte after in sp1 */ | ||
195 | sp1 = strrchr(filename, ']'); | ||
196 | sp2 = strrchr(filename, '>'); | ||
197 | if (sp1 == NULL) sp1 = sp2; | ||
198 | if (sp2 != NULL && sp2 > sp1) sp1 = sp2; | ||
199 | if (sp1 == NULL) sp1 = strrchr(filename, ':'); | ||
200 | if (sp1 == NULL) | ||
201 | sp1 = filename; | ||
202 | else | ||
203 | sp1++; /* The byte after the found character */ | ||
204 | /* Now, let's see if there's a type, and save the position in sp2 */ | ||
205 | sp2 = strchr(sp1, '.'); | ||
206 | /* If we found it, that's where we'll cut. Otherwise, look for a | ||
207 | version number and save the position in sp2 */ | ||
208 | if (sp2 == NULL) sp2 = strchr(sp1, ';'); | ||
209 | /* If there was still nothing to find, set sp2 to point at the end of | ||
210 | the string */ | ||
211 | if (sp2 == NULL) sp2 = sp1 + strlen(sp1); | ||
212 | |||
213 | /* Check that we won't get buffer overflows */ | ||
214 | if (sp2 - sp1 > FILENAME_MAX | ||
215 | || (sp1 - filename) + strlen(sp2) > FILENAME_MAX) | ||
216 | { | ||
217 | DSOerr(DSO_F_VMS_LOAD,DSO_R_FILENAME_TOO_BIG); | ||
218 | goto err; | ||
219 | } | ||
220 | |||
221 | p = DSO_MALLOC(sizeof(DSO_VMS_INTERNAL)); | ||
222 | if(p == NULL) | ||
223 | { | ||
224 | DSOerr(DSO_F_VMS_LOAD,ERR_R_MALLOC_FAILURE); | ||
225 | goto err; | ||
226 | } | ||
227 | |||
228 | strncpy(p->filename, sp1, sp2-sp1); | ||
229 | p->filename[sp2-sp1] = '\0'; | ||
230 | |||
231 | strncpy(p->imagename, filename, sp1-filename); | ||
232 | p->imagename[sp1-filename] = '\0'; | ||
233 | strcat(p->imagename, sp2); | ||
234 | |||
235 | p->filename_dsc.dsc$w_length = strlen(p->filename); | ||
236 | p->filename_dsc.dsc$b_dtype = DSC$K_DTYPE_T; | ||
237 | p->filename_dsc.dsc$b_class = DSC$K_CLASS_S; | ||
238 | p->filename_dsc.dsc$a_pointer = p->filename; | ||
239 | p->imagename_dsc.dsc$w_length = strlen(p->imagename); | ||
240 | p->imagename_dsc.dsc$b_dtype = DSC$K_DTYPE_T; | ||
241 | p->imagename_dsc.dsc$b_class = DSC$K_CLASS_S; | ||
242 | p->imagename_dsc.dsc$a_pointer = p->imagename; | ||
243 | |||
244 | if(!sk_void_push(dso->meth_data, (char *)p)) | ||
245 | { | ||
246 | DSOerr(DSO_F_VMS_LOAD,DSO_R_STACK_ERROR); | ||
247 | goto err; | ||
248 | } | ||
249 | |||
250 | /* Success (for now, we lie. We actually do not know...) */ | ||
251 | dso->loaded_filename = filename; | ||
252 | return(1); | ||
253 | err: | ||
254 | /* Cleanup! */ | ||
255 | if(p != NULL) | ||
256 | OPENSSL_free(p); | ||
257 | if(filename != NULL) | ||
258 | OPENSSL_free(filename); | ||
259 | return(0); | ||
260 | } | ||
261 | |||
262 | /* Note that this doesn't actually unload the shared image, as there is no | ||
263 | * such thing in VMS. Next time it get loaded again, a new copy will | ||
264 | * actually be loaded. | ||
265 | */ | ||
266 | static int vms_unload(DSO *dso) | ||
267 | { | ||
268 | DSO_VMS_INTERNAL *p; | ||
269 | if(dso == NULL) | ||
270 | { | ||
271 | DSOerr(DSO_F_VMS_UNLOAD,ERR_R_PASSED_NULL_PARAMETER); | ||
272 | return(0); | ||
273 | } | ||
274 | if(sk_void_num(dso->meth_data) < 1) | ||
275 | return(1); | ||
276 | p = (DSO_VMS_INTERNAL *)sk_void_pop(dso->meth_data); | ||
277 | if(p == NULL) | ||
278 | { | ||
279 | DSOerr(DSO_F_VMS_UNLOAD,DSO_R_NULL_HANDLE); | ||
280 | return(0); | ||
281 | } | ||
282 | /* Cleanup */ | ||
283 | OPENSSL_free(p); | ||
284 | return(1); | ||
285 | } | ||
286 | |||
287 | /* We must do this in a separate function because of the way the exception | ||
288 | handler works (it makes this function return */ | ||
289 | static int do_find_symbol(DSO_VMS_INTERNAL *ptr, | ||
290 | struct dsc$descriptor_s *symname_dsc, void **sym, | ||
291 | unsigned long flags) | ||
292 | { | ||
293 | /* Make sure that signals are caught and returned instead of | ||
294 | aborting the program. The exception handler gets unestablished | ||
295 | automatically on return from this function. */ | ||
296 | lib$establish(lib$sig_to_ret); | ||
297 | |||
298 | if(ptr->imagename_dsc.dsc$w_length) | ||
299 | return lib$find_image_symbol(&ptr->filename_dsc, | ||
300 | symname_dsc, sym, | ||
301 | &ptr->imagename_dsc, flags); | ||
302 | else | ||
303 | return lib$find_image_symbol(&ptr->filename_dsc, | ||
304 | symname_dsc, sym, | ||
305 | 0, flags); | ||
306 | } | ||
307 | |||
308 | void vms_bind_sym(DSO *dso, const char *symname, void **sym) | ||
309 | { | ||
310 | DSO_VMS_INTERNAL *ptr; | ||
311 | int status; | ||
312 | #if 0 | ||
313 | int flags = (1<<4); /* LIB$M_FIS_MIXEDCASE, but this symbol isn't | ||
314 | defined in VMS older than 7.0 or so */ | ||
315 | #else | ||
316 | int flags = 0; | ||
317 | #endif | ||
318 | struct dsc$descriptor_s symname_dsc; | ||
319 | |||
320 | /* Arrange 32-bit pointer to (copied) string storage, if needed. */ | ||
321 | #if __INITIAL_POINTER_SIZE == 64 | ||
322 | # define SYMNAME symname_32p | ||
323 | # pragma pointer_size save | ||
324 | # pragma pointer_size 32 | ||
325 | char *symname_32p; | ||
326 | # pragma pointer_size restore | ||
327 | char symname_32[ NAMX_MAXRSS+ 1]; | ||
328 | #else /* __INITIAL_POINTER_SIZE == 64 */ | ||
329 | # define SYMNAME ((char *) symname) | ||
330 | #endif /* __INITIAL_POINTER_SIZE == 64 [else] */ | ||
331 | |||
332 | *sym = NULL; | ||
333 | |||
334 | if((dso == NULL) || (symname == NULL)) | ||
335 | { | ||
336 | DSOerr(DSO_F_VMS_BIND_SYM,ERR_R_PASSED_NULL_PARAMETER); | ||
337 | return; | ||
338 | } | ||
339 | |||
340 | #if __INITIAL_POINTER_SIZE == 64 | ||
341 | /* Copy the symbol name to storage with a 32-bit pointer. */ | ||
342 | symname_32p = symname_32; | ||
343 | strcpy( symname_32p, symname); | ||
344 | #endif /* __INITIAL_POINTER_SIZE == 64 [else] */ | ||
345 | |||
346 | symname_dsc.dsc$w_length = strlen(SYMNAME); | ||
347 | symname_dsc.dsc$b_dtype = DSC$K_DTYPE_T; | ||
348 | symname_dsc.dsc$b_class = DSC$K_CLASS_S; | ||
349 | symname_dsc.dsc$a_pointer = SYMNAME; | ||
350 | |||
351 | if(sk_void_num(dso->meth_data) < 1) | ||
352 | { | ||
353 | DSOerr(DSO_F_VMS_BIND_SYM,DSO_R_STACK_ERROR); | ||
354 | return; | ||
355 | } | ||
356 | ptr = (DSO_VMS_INTERNAL *)sk_void_value(dso->meth_data, | ||
357 | sk_void_num(dso->meth_data) - 1); | ||
358 | if(ptr == NULL) | ||
359 | { | ||
360 | DSOerr(DSO_F_VMS_BIND_SYM,DSO_R_NULL_HANDLE); | ||
361 | return; | ||
362 | } | ||
363 | |||
364 | if(dso->flags & DSO_FLAG_UPCASE_SYMBOL) flags = 0; | ||
365 | |||
366 | status = do_find_symbol(ptr, &symname_dsc, sym, flags); | ||
367 | |||
368 | if(!$VMS_STATUS_SUCCESS(status)) | ||
369 | { | ||
370 | unsigned short length; | ||
371 | char errstring[257]; | ||
372 | struct dsc$descriptor_s errstring_dsc; | ||
373 | |||
374 | errstring_dsc.dsc$w_length = sizeof(errstring); | ||
375 | errstring_dsc.dsc$b_dtype = DSC$K_DTYPE_T; | ||
376 | errstring_dsc.dsc$b_class = DSC$K_CLASS_S; | ||
377 | errstring_dsc.dsc$a_pointer = errstring; | ||
378 | |||
379 | *sym = NULL; | ||
380 | |||
381 | status = sys$getmsg(status, &length, &errstring_dsc, 1, 0); | ||
382 | |||
383 | if (!$VMS_STATUS_SUCCESS(status)) | ||
384 | lib$signal(status); /* This is really bad. Abort! */ | ||
385 | else | ||
386 | { | ||
387 | errstring[length] = '\0'; | ||
388 | |||
389 | DSOerr(DSO_F_VMS_BIND_SYM,DSO_R_SYM_FAILURE); | ||
390 | if (ptr->imagename_dsc.dsc$w_length) | ||
391 | ERR_add_error_data(9, | ||
392 | "Symbol ", symname, | ||
393 | " in ", ptr->filename, | ||
394 | " (", ptr->imagename, ")", | ||
395 | ": ", errstring); | ||
396 | else | ||
397 | ERR_add_error_data(6, | ||
398 | "Symbol ", symname, | ||
399 | " in ", ptr->filename, | ||
400 | ": ", errstring); | ||
401 | } | ||
402 | return; | ||
403 | } | ||
404 | return; | ||
405 | } | ||
406 | |||
407 | static void *vms_bind_var(DSO *dso, const char *symname) | ||
408 | { | ||
409 | void *sym = 0; | ||
410 | vms_bind_sym(dso, symname, &sym); | ||
411 | return sym; | ||
412 | } | ||
413 | |||
414 | static DSO_FUNC_TYPE vms_bind_func(DSO *dso, const char *symname) | ||
415 | { | ||
416 | DSO_FUNC_TYPE sym = 0; | ||
417 | vms_bind_sym(dso, symname, (void **)&sym); | ||
418 | return sym; | ||
419 | } | ||
420 | |||
421 | |||
422 | static char *vms_merger(DSO *dso, const char *filespec1, const char *filespec2) | ||
423 | { | ||
424 | int status; | ||
425 | int filespec1len, filespec2len; | ||
426 | struct FAB fab; | ||
427 | struct NAMX_STRUCT nam; | ||
428 | char esa[ NAMX_MAXRSS+ 1]; | ||
429 | char *merged; | ||
430 | |||
431 | /* Arrange 32-bit pointer to (copied) string storage, if needed. */ | ||
432 | #if __INITIAL_POINTER_SIZE == 64 | ||
433 | # define FILESPEC1 filespec1_32p; | ||
434 | # define FILESPEC2 filespec2_32p; | ||
435 | # pragma pointer_size save | ||
436 | # pragma pointer_size 32 | ||
437 | char *filespec1_32p; | ||
438 | char *filespec2_32p; | ||
439 | # pragma pointer_size restore | ||
440 | char filespec1_32[ NAMX_MAXRSS+ 1]; | ||
441 | char filespec2_32[ NAMX_MAXRSS+ 1]; | ||
442 | #else /* __INITIAL_POINTER_SIZE == 64 */ | ||
443 | # define FILESPEC1 ((char *) filespec1) | ||
444 | # define FILESPEC2 ((char *) filespec2) | ||
445 | #endif /* __INITIAL_POINTER_SIZE == 64 [else] */ | ||
446 | |||
447 | if (!filespec1) filespec1 = ""; | ||
448 | if (!filespec2) filespec2 = ""; | ||
449 | filespec1len = strlen(filespec1); | ||
450 | filespec2len = strlen(filespec2); | ||
451 | |||
452 | #if __INITIAL_POINTER_SIZE == 64 | ||
453 | /* Copy the file names to storage with a 32-bit pointer. */ | ||
454 | filespec1_32p = filespec1_32; | ||
455 | filespec2_32p = filespec2_32; | ||
456 | strcpy( filespec1_32p, filespec1); | ||
457 | strcpy( filespec2_32p, filespec2); | ||
458 | #endif /* __INITIAL_POINTER_SIZE == 64 [else] */ | ||
459 | |||
460 | fab = cc$rms_fab; | ||
461 | nam = CC_RMS_NAMX; | ||
462 | |||
463 | FAB_OR_NAML( fab, nam).FAB_OR_NAML_FNA = FILESPEC1; | ||
464 | FAB_OR_NAML( fab, nam).FAB_OR_NAML_FNS = filespec1len; | ||
465 | FAB_OR_NAML( fab, nam).FAB_OR_NAML_DNA = FILESPEC2; | ||
466 | FAB_OR_NAML( fab, nam).FAB_OR_NAML_DNS = filespec2len; | ||
467 | NAMX_DNA_FNA_SET( fab) | ||
468 | |||
469 | nam.NAMX_ESA = esa; | ||
470 | nam.NAMX_ESS = NAMX_MAXRSS; | ||
471 | nam.NAMX_NOP = NAM$M_SYNCHK | NAM$M_PWD; | ||
472 | SET_NAMX_NO_SHORT_UPCASE( nam); | ||
473 | |||
474 | fab.FAB_NAMX = &nam; | ||
475 | |||
476 | status = sys$parse(&fab, 0, 0); | ||
477 | |||
478 | if(!$VMS_STATUS_SUCCESS(status)) | ||
479 | { | ||
480 | unsigned short length; | ||
481 | char errstring[257]; | ||
482 | struct dsc$descriptor_s errstring_dsc; | ||
483 | |||
484 | errstring_dsc.dsc$w_length = sizeof(errstring); | ||
485 | errstring_dsc.dsc$b_dtype = DSC$K_DTYPE_T; | ||
486 | errstring_dsc.dsc$b_class = DSC$K_CLASS_S; | ||
487 | errstring_dsc.dsc$a_pointer = errstring; | ||
488 | |||
489 | status = sys$getmsg(status, &length, &errstring_dsc, 1, 0); | ||
490 | |||
491 | if (!$VMS_STATUS_SUCCESS(status)) | ||
492 | lib$signal(status); /* This is really bad. Abort! */ | ||
493 | else | ||
494 | { | ||
495 | errstring[length] = '\0'; | ||
496 | |||
497 | DSOerr(DSO_F_VMS_MERGER,DSO_R_FAILURE); | ||
498 | ERR_add_error_data(7, | ||
499 | "filespec \"", filespec1, "\", ", | ||
500 | "defaults \"", filespec2, "\": ", | ||
501 | errstring); | ||
502 | } | ||
503 | return(NULL); | ||
504 | } | ||
505 | |||
506 | merged = OPENSSL_malloc( nam.NAMX_ESL+ 1); | ||
507 | if(!merged) | ||
508 | goto malloc_err; | ||
509 | strncpy( merged, nam.NAMX_ESA, nam.NAMX_ESL); | ||
510 | merged[ nam.NAMX_ESL] = '\0'; | ||
511 | return(merged); | ||
512 | malloc_err: | ||
513 | DSOerr(DSO_F_VMS_MERGER, | ||
514 | ERR_R_MALLOC_FAILURE); | ||
515 | } | ||
516 | |||
517 | static char *vms_name_converter(DSO *dso, const char *filename) | ||
518 | { | ||
519 | int len = strlen(filename); | ||
520 | char *not_translated = OPENSSL_malloc(len+1); | ||
521 | strcpy(not_translated,filename); | ||
522 | return(not_translated); | ||
523 | } | ||
524 | |||
525 | #endif /* OPENSSL_SYS_VMS */ | ||
diff --git a/src/lib/libcrypto/dso/dso_win32.c b/src/lib/libcrypto/dso/dso_win32.c deleted file mode 100644 index 6fb6c54181..0000000000 --- a/src/lib/libcrypto/dso/dso_win32.c +++ /dev/null | |||
@@ -1,844 +0,0 @@ | |||
1 | /* dso_win32.c -*- mode:C; c-file-style: "eay" -*- */ | ||
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 <string.h> | ||
61 | #include "cryptlib.h" | ||
62 | #include <openssl/dso.h> | ||
63 | |||
64 | #if !defined(DSO_WIN32) | ||
65 | DSO_METHOD *DSO_METHOD_win32(void) | ||
66 | { | ||
67 | return NULL; | ||
68 | } | ||
69 | #else | ||
70 | |||
71 | #ifdef _WIN32_WCE | ||
72 | # if _WIN32_WCE < 300 | ||
73 | static FARPROC GetProcAddressA(HMODULE hModule,LPCSTR lpProcName) | ||
74 | { | ||
75 | WCHAR lpProcNameW[64]; | ||
76 | int i; | ||
77 | |||
78 | for (i=0;lpProcName[i] && i<64;i++) | ||
79 | lpProcNameW[i] = (WCHAR)lpProcName[i]; | ||
80 | if (i==64) return NULL; | ||
81 | lpProcNameW[i] = 0; | ||
82 | |||
83 | return GetProcAddressW(hModule,lpProcNameW); | ||
84 | } | ||
85 | # endif | ||
86 | # undef GetProcAddress | ||
87 | # define GetProcAddress GetProcAddressA | ||
88 | |||
89 | static HINSTANCE LoadLibraryA(LPCSTR lpLibFileName) | ||
90 | { | ||
91 | WCHAR *fnamw; | ||
92 | size_t len_0=strlen(lpLibFileName)+1,i; | ||
93 | |||
94 | #ifdef _MSC_VER | ||
95 | fnamw = (WCHAR *)_alloca (len_0*sizeof(WCHAR)); | ||
96 | #else | ||
97 | fnamw = (WCHAR *)alloca (len_0*sizeof(WCHAR)); | ||
98 | #endif | ||
99 | if (fnamw == NULL) | ||
100 | { | ||
101 | SetLastError(ERROR_NOT_ENOUGH_MEMORY); | ||
102 | return NULL; | ||
103 | } | ||
104 | |||
105 | #if defined(_WIN32_WCE) && _WIN32_WCE>=101 | ||
106 | if (!MultiByteToWideChar(CP_ACP,0,lpLibFileName,len_0,fnamw,len_0)) | ||
107 | #endif | ||
108 | for (i=0;i<len_0;i++) fnamw[i]=(WCHAR)lpLibFileName[i]; | ||
109 | |||
110 | return LoadLibraryW(fnamw); | ||
111 | } | ||
112 | #endif | ||
113 | |||
114 | /* Part of the hack in "win32_load" ... */ | ||
115 | #define DSO_MAX_TRANSLATED_SIZE 256 | ||
116 | |||
117 | static int win32_load(DSO *dso); | ||
118 | static int win32_unload(DSO *dso); | ||
119 | static void *win32_bind_var(DSO *dso, const char *symname); | ||
120 | static DSO_FUNC_TYPE win32_bind_func(DSO *dso, const char *symname); | ||
121 | #if 0 | ||
122 | static int win32_unbind_var(DSO *dso, char *symname, void *symptr); | ||
123 | static int win32_unbind_func(DSO *dso, char *symname, DSO_FUNC_TYPE symptr); | ||
124 | static int win32_init(DSO *dso); | ||
125 | static int win32_finish(DSO *dso); | ||
126 | static long win32_ctrl(DSO *dso, int cmd, long larg, void *parg); | ||
127 | #endif | ||
128 | static char *win32_name_converter(DSO *dso, const char *filename); | ||
129 | static char *win32_merger(DSO *dso, const char *filespec1, | ||
130 | const char *filespec2); | ||
131 | static int win32_pathbyaddr(void *addr,char *path,int sz); | ||
132 | static void *win32_globallookup(const char *name); | ||
133 | |||
134 | static const char *openssl_strnchr(const char *string, int c, size_t len); | ||
135 | |||
136 | static DSO_METHOD dso_meth_win32 = { | ||
137 | "OpenSSL 'win32' shared library method", | ||
138 | win32_load, | ||
139 | win32_unload, | ||
140 | win32_bind_var, | ||
141 | win32_bind_func, | ||
142 | /* For now, "unbind" doesn't exist */ | ||
143 | #if 0 | ||
144 | NULL, /* unbind_var */ | ||
145 | NULL, /* unbind_func */ | ||
146 | #endif | ||
147 | NULL, /* ctrl */ | ||
148 | win32_name_converter, | ||
149 | win32_merger, | ||
150 | NULL, /* init */ | ||
151 | NULL, /* finish */ | ||
152 | win32_pathbyaddr, | ||
153 | win32_globallookup | ||
154 | }; | ||
155 | |||
156 | DSO_METHOD *DSO_METHOD_win32(void) | ||
157 | { | ||
158 | return(&dso_meth_win32); | ||
159 | } | ||
160 | |||
161 | /* For this DSO_METHOD, our meth_data STACK will contain; | ||
162 | * (i) a pointer to the handle (HINSTANCE) returned from | ||
163 | * LoadLibrary(), and copied. | ||
164 | */ | ||
165 | |||
166 | static int win32_load(DSO *dso) | ||
167 | { | ||
168 | HINSTANCE h = NULL, *p = NULL; | ||
169 | /* See applicable comments from dso_dl.c */ | ||
170 | char *filename = DSO_convert_filename(dso, NULL); | ||
171 | |||
172 | if(filename == NULL) | ||
173 | { | ||
174 | DSOerr(DSO_F_WIN32_LOAD,DSO_R_NO_FILENAME); | ||
175 | goto err; | ||
176 | } | ||
177 | h = LoadLibraryA(filename); | ||
178 | if(h == NULL) | ||
179 | { | ||
180 | DSOerr(DSO_F_WIN32_LOAD,DSO_R_LOAD_FAILED); | ||
181 | ERR_add_error_data(3, "filename(", filename, ")"); | ||
182 | goto err; | ||
183 | } | ||
184 | p = (HINSTANCE *)OPENSSL_malloc(sizeof(HINSTANCE)); | ||
185 | if(p == NULL) | ||
186 | { | ||
187 | DSOerr(DSO_F_WIN32_LOAD,ERR_R_MALLOC_FAILURE); | ||
188 | goto err; | ||
189 | } | ||
190 | *p = h; | ||
191 | if(!sk_void_push(dso->meth_data, p)) | ||
192 | { | ||
193 | DSOerr(DSO_F_WIN32_LOAD,DSO_R_STACK_ERROR); | ||
194 | goto err; | ||
195 | } | ||
196 | /* Success */ | ||
197 | dso->loaded_filename = filename; | ||
198 | return(1); | ||
199 | err: | ||
200 | /* Cleanup !*/ | ||
201 | if(filename != NULL) | ||
202 | OPENSSL_free(filename); | ||
203 | if(p != NULL) | ||
204 | OPENSSL_free(p); | ||
205 | if(h != NULL) | ||
206 | FreeLibrary(h); | ||
207 | return(0); | ||
208 | } | ||
209 | |||
210 | static int win32_unload(DSO *dso) | ||
211 | { | ||
212 | HINSTANCE *p; | ||
213 | if(dso == NULL) | ||
214 | { | ||
215 | DSOerr(DSO_F_WIN32_UNLOAD,ERR_R_PASSED_NULL_PARAMETER); | ||
216 | return(0); | ||
217 | } | ||
218 | if(sk_void_num(dso->meth_data) < 1) | ||
219 | return(1); | ||
220 | p = sk_void_pop(dso->meth_data); | ||
221 | if(p == NULL) | ||
222 | { | ||
223 | DSOerr(DSO_F_WIN32_UNLOAD,DSO_R_NULL_HANDLE); | ||
224 | return(0); | ||
225 | } | ||
226 | if(!FreeLibrary(*p)) | ||
227 | { | ||
228 | DSOerr(DSO_F_WIN32_UNLOAD,DSO_R_UNLOAD_FAILED); | ||
229 | /* We should push the value back onto the stack in | ||
230 | * case of a retry. */ | ||
231 | sk_void_push(dso->meth_data, p); | ||
232 | return(0); | ||
233 | } | ||
234 | /* Cleanup */ | ||
235 | OPENSSL_free(p); | ||
236 | return(1); | ||
237 | } | ||
238 | |||
239 | /* Using GetProcAddress for variables? TODO: Check this out in | ||
240 | * the Win32 API docs, there's probably a variant for variables. */ | ||
241 | static void *win32_bind_var(DSO *dso, const char *symname) | ||
242 | { | ||
243 | HINSTANCE *ptr; | ||
244 | void *sym; | ||
245 | |||
246 | if((dso == NULL) || (symname == NULL)) | ||
247 | { | ||
248 | DSOerr(DSO_F_WIN32_BIND_VAR,ERR_R_PASSED_NULL_PARAMETER); | ||
249 | return(NULL); | ||
250 | } | ||
251 | if(sk_void_num(dso->meth_data) < 1) | ||
252 | { | ||
253 | DSOerr(DSO_F_WIN32_BIND_VAR,DSO_R_STACK_ERROR); | ||
254 | return(NULL); | ||
255 | } | ||
256 | ptr = sk_void_value(dso->meth_data, sk_void_num(dso->meth_data) - 1); | ||
257 | if(ptr == NULL) | ||
258 | { | ||
259 | DSOerr(DSO_F_WIN32_BIND_VAR,DSO_R_NULL_HANDLE); | ||
260 | return(NULL); | ||
261 | } | ||
262 | sym = GetProcAddress(*ptr, symname); | ||
263 | if(sym == NULL) | ||
264 | { | ||
265 | DSOerr(DSO_F_WIN32_BIND_VAR,DSO_R_SYM_FAILURE); | ||
266 | ERR_add_error_data(3, "symname(", symname, ")"); | ||
267 | return(NULL); | ||
268 | } | ||
269 | return(sym); | ||
270 | } | ||
271 | |||
272 | static DSO_FUNC_TYPE win32_bind_func(DSO *dso, const char *symname) | ||
273 | { | ||
274 | HINSTANCE *ptr; | ||
275 | void *sym; | ||
276 | |||
277 | if((dso == NULL) || (symname == NULL)) | ||
278 | { | ||
279 | DSOerr(DSO_F_WIN32_BIND_FUNC,ERR_R_PASSED_NULL_PARAMETER); | ||
280 | return(NULL); | ||
281 | } | ||
282 | if(sk_void_num(dso->meth_data) < 1) | ||
283 | { | ||
284 | DSOerr(DSO_F_WIN32_BIND_FUNC,DSO_R_STACK_ERROR); | ||
285 | return(NULL); | ||
286 | } | ||
287 | ptr = sk_void_value(dso->meth_data, sk_void_num(dso->meth_data) - 1); | ||
288 | if(ptr == NULL) | ||
289 | { | ||
290 | DSOerr(DSO_F_WIN32_BIND_FUNC,DSO_R_NULL_HANDLE); | ||
291 | return(NULL); | ||
292 | } | ||
293 | sym = GetProcAddress(*ptr, symname); | ||
294 | if(sym == NULL) | ||
295 | { | ||
296 | DSOerr(DSO_F_WIN32_BIND_FUNC,DSO_R_SYM_FAILURE); | ||
297 | ERR_add_error_data(3, "symname(", symname, ")"); | ||
298 | return(NULL); | ||
299 | } | ||
300 | return((DSO_FUNC_TYPE)sym); | ||
301 | } | ||
302 | |||
303 | struct file_st | ||
304 | { | ||
305 | const char *node; int nodelen; | ||
306 | const char *device; int devicelen; | ||
307 | const char *predir; int predirlen; | ||
308 | const char *dir; int dirlen; | ||
309 | const char *file; int filelen; | ||
310 | }; | ||
311 | |||
312 | static struct file_st *win32_splitter(DSO *dso, const char *filename, | ||
313 | int assume_last_is_dir) | ||
314 | { | ||
315 | struct file_st *result = NULL; | ||
316 | enum { IN_NODE, IN_DEVICE, IN_FILE } position; | ||
317 | const char *start = filename; | ||
318 | char last; | ||
319 | |||
320 | if (!filename) | ||
321 | { | ||
322 | DSOerr(DSO_F_WIN32_SPLITTER,DSO_R_NO_FILENAME); | ||
323 | /*goto err;*/ | ||
324 | return(NULL); | ||
325 | } | ||
326 | |||
327 | result = OPENSSL_malloc(sizeof(struct file_st)); | ||
328 | if(result == NULL) | ||
329 | { | ||
330 | DSOerr(DSO_F_WIN32_SPLITTER, | ||
331 | ERR_R_MALLOC_FAILURE); | ||
332 | return(NULL); | ||
333 | } | ||
334 | |||
335 | memset(result, 0, sizeof(struct file_st)); | ||
336 | position = IN_DEVICE; | ||
337 | |||
338 | if((filename[0] == '\\' && filename[1] == '\\') | ||
339 | || (filename[0] == '/' && filename[1] == '/')) | ||
340 | { | ||
341 | position = IN_NODE; | ||
342 | filename += 2; | ||
343 | start = filename; | ||
344 | result->node = start; | ||
345 | } | ||
346 | |||
347 | do | ||
348 | { | ||
349 | last = filename[0]; | ||
350 | switch(last) | ||
351 | { | ||
352 | case ':': | ||
353 | if(position != IN_DEVICE) | ||
354 | { | ||
355 | DSOerr(DSO_F_WIN32_SPLITTER, | ||
356 | DSO_R_INCORRECT_FILE_SYNTAX); | ||
357 | /*goto err;*/ | ||
358 | OPENSSL_free(result); | ||
359 | return(NULL); | ||
360 | } | ||
361 | result->device = start; | ||
362 | result->devicelen = (int)(filename - start); | ||
363 | position = IN_FILE; | ||
364 | start = ++filename; | ||
365 | result->dir = start; | ||
366 | break; | ||
367 | case '\\': | ||
368 | case '/': | ||
369 | if(position == IN_NODE) | ||
370 | { | ||
371 | result->nodelen = (int)(filename - start); | ||
372 | position = IN_FILE; | ||
373 | start = ++filename; | ||
374 | result->dir = start; | ||
375 | } | ||
376 | else if(position == IN_DEVICE) | ||
377 | { | ||
378 | position = IN_FILE; | ||
379 | filename++; | ||
380 | result->dir = start; | ||
381 | result->dirlen = (int)(filename - start); | ||
382 | start = filename; | ||
383 | } | ||
384 | else | ||
385 | { | ||
386 | filename++; | ||
387 | result->dirlen += (int)(filename - start); | ||
388 | start = filename; | ||
389 | } | ||
390 | break; | ||
391 | case '\0': | ||
392 | if(position == IN_NODE) | ||
393 | { | ||
394 | result->nodelen = (int)(filename - start); | ||
395 | } | ||
396 | else | ||
397 | { | ||
398 | if(filename - start > 0) | ||
399 | { | ||
400 | if (assume_last_is_dir) | ||
401 | { | ||
402 | if (position == IN_DEVICE) | ||
403 | { | ||
404 | result->dir = start; | ||
405 | result->dirlen = 0; | ||
406 | } | ||
407 | result->dirlen += | ||
408 | (int)(filename - start); | ||
409 | } | ||
410 | else | ||
411 | { | ||
412 | result->file = start; | ||
413 | result->filelen = | ||
414 | (int)(filename - start); | ||
415 | } | ||
416 | } | ||
417 | } | ||
418 | break; | ||
419 | default: | ||
420 | filename++; | ||
421 | break; | ||
422 | } | ||
423 | } | ||
424 | while(last); | ||
425 | |||
426 | if(!result->nodelen) result->node = NULL; | ||
427 | if(!result->devicelen) result->device = NULL; | ||
428 | if(!result->dirlen) result->dir = NULL; | ||
429 | if(!result->filelen) result->file = NULL; | ||
430 | |||
431 | return(result); | ||
432 | } | ||
433 | |||
434 | static char *win32_joiner(DSO *dso, const struct file_st *file_split) | ||
435 | { | ||
436 | int len = 0, offset = 0; | ||
437 | char *result = NULL; | ||
438 | const char *start; | ||
439 | |||
440 | if(!file_split) | ||
441 | { | ||
442 | DSOerr(DSO_F_WIN32_JOINER, | ||
443 | ERR_R_PASSED_NULL_PARAMETER); | ||
444 | return(NULL); | ||
445 | } | ||
446 | if(file_split->node) | ||
447 | { | ||
448 | len += 2 + file_split->nodelen; /* 2 for starting \\ */ | ||
449 | if(file_split->predir || file_split->dir || file_split->file) | ||
450 | len++; /* 1 for ending \ */ | ||
451 | } | ||
452 | else if(file_split->device) | ||
453 | { | ||
454 | len += file_split->devicelen + 1; /* 1 for ending : */ | ||
455 | } | ||
456 | len += file_split->predirlen; | ||
457 | if(file_split->predir && (file_split->dir || file_split->file)) | ||
458 | { | ||
459 | len++; /* 1 for ending \ */ | ||
460 | } | ||
461 | len += file_split->dirlen; | ||
462 | if(file_split->dir && file_split->file) | ||
463 | { | ||
464 | len++; /* 1 for ending \ */ | ||
465 | } | ||
466 | len += file_split->filelen; | ||
467 | |||
468 | if(!len) | ||
469 | { | ||
470 | DSOerr(DSO_F_WIN32_JOINER, DSO_R_EMPTY_FILE_STRUCTURE); | ||
471 | return(NULL); | ||
472 | } | ||
473 | |||
474 | result = OPENSSL_malloc(len + 1); | ||
475 | if (!result) | ||
476 | { | ||
477 | DSOerr(DSO_F_WIN32_JOINER, | ||
478 | ERR_R_MALLOC_FAILURE); | ||
479 | return(NULL); | ||
480 | } | ||
481 | |||
482 | if(file_split->node) | ||
483 | { | ||
484 | strcpy(&result[offset], "\\\\"); offset += 2; | ||
485 | strncpy(&result[offset], file_split->node, | ||
486 | file_split->nodelen); offset += file_split->nodelen; | ||
487 | if(file_split->predir || file_split->dir || file_split->file) | ||
488 | { | ||
489 | result[offset] = '\\'; offset++; | ||
490 | } | ||
491 | } | ||
492 | else if(file_split->device) | ||
493 | { | ||
494 | strncpy(&result[offset], file_split->device, | ||
495 | file_split->devicelen); offset += file_split->devicelen; | ||
496 | result[offset] = ':'; offset++; | ||
497 | } | ||
498 | start = file_split->predir; | ||
499 | while(file_split->predirlen > (start - file_split->predir)) | ||
500 | { | ||
501 | const char *end = openssl_strnchr(start, '/', | ||
502 | file_split->predirlen - (start - file_split->predir)); | ||
503 | if(!end) | ||
504 | end = start | ||
505 | + file_split->predirlen | ||
506 | - (start - file_split->predir); | ||
507 | strncpy(&result[offset], start, | ||
508 | end - start); offset += (int)(end - start); | ||
509 | result[offset] = '\\'; offset++; | ||
510 | start = end + 1; | ||
511 | } | ||
512 | #if 0 /* Not needed, since the directory converter above already appeneded | ||
513 | a backslash */ | ||
514 | if(file_split->predir && (file_split->dir || file_split->file)) | ||
515 | { | ||
516 | result[offset] = '\\'; offset++; | ||
517 | } | ||
518 | #endif | ||
519 | start = file_split->dir; | ||
520 | while(file_split->dirlen > (start - file_split->dir)) | ||
521 | { | ||
522 | const char *end = openssl_strnchr(start, '/', | ||
523 | file_split->dirlen - (start - file_split->dir)); | ||
524 | if(!end) | ||
525 | end = start | ||
526 | + file_split->dirlen | ||
527 | - (start - file_split->dir); | ||
528 | strncpy(&result[offset], start, | ||
529 | end - start); offset += (int)(end - start); | ||
530 | result[offset] = '\\'; offset++; | ||
531 | start = end + 1; | ||
532 | } | ||
533 | #if 0 /* Not needed, since the directory converter above already appeneded | ||
534 | a backslash */ | ||
535 | if(file_split->dir && file_split->file) | ||
536 | { | ||
537 | result[offset] = '\\'; offset++; | ||
538 | } | ||
539 | #endif | ||
540 | strncpy(&result[offset], file_split->file, | ||
541 | file_split->filelen); offset += file_split->filelen; | ||
542 | result[offset] = '\0'; | ||
543 | return(result); | ||
544 | } | ||
545 | |||
546 | static char *win32_merger(DSO *dso, const char *filespec1, const char *filespec2) | ||
547 | { | ||
548 | char *merged = NULL; | ||
549 | struct file_st *filespec1_split = NULL; | ||
550 | struct file_st *filespec2_split = NULL; | ||
551 | |||
552 | if(!filespec1 && !filespec2) | ||
553 | { | ||
554 | DSOerr(DSO_F_WIN32_MERGER, | ||
555 | ERR_R_PASSED_NULL_PARAMETER); | ||
556 | return(NULL); | ||
557 | } | ||
558 | if (!filespec2) | ||
559 | { | ||
560 | merged = OPENSSL_malloc(strlen(filespec1) + 1); | ||
561 | if(!merged) | ||
562 | { | ||
563 | DSOerr(DSO_F_WIN32_MERGER, | ||
564 | ERR_R_MALLOC_FAILURE); | ||
565 | return(NULL); | ||
566 | } | ||
567 | strcpy(merged, filespec1); | ||
568 | } | ||
569 | else if (!filespec1) | ||
570 | { | ||
571 | merged = OPENSSL_malloc(strlen(filespec2) + 1); | ||
572 | if(!merged) | ||
573 | { | ||
574 | DSOerr(DSO_F_WIN32_MERGER, | ||
575 | ERR_R_MALLOC_FAILURE); | ||
576 | return(NULL); | ||
577 | } | ||
578 | strcpy(merged, filespec2); | ||
579 | } | ||
580 | else | ||
581 | { | ||
582 | filespec1_split = win32_splitter(dso, filespec1, 0); | ||
583 | if (!filespec1_split) | ||
584 | { | ||
585 | DSOerr(DSO_F_WIN32_MERGER, | ||
586 | ERR_R_MALLOC_FAILURE); | ||
587 | return(NULL); | ||
588 | } | ||
589 | filespec2_split = win32_splitter(dso, filespec2, 1); | ||
590 | if (!filespec2_split) | ||
591 | { | ||
592 | DSOerr(DSO_F_WIN32_MERGER, | ||
593 | ERR_R_MALLOC_FAILURE); | ||
594 | OPENSSL_free(filespec1_split); | ||
595 | return(NULL); | ||
596 | } | ||
597 | |||
598 | /* Fill in into filespec1_split */ | ||
599 | if (!filespec1_split->node && !filespec1_split->device) | ||
600 | { | ||
601 | filespec1_split->node = filespec2_split->node; | ||
602 | filespec1_split->nodelen = filespec2_split->nodelen; | ||
603 | filespec1_split->device = filespec2_split->device; | ||
604 | filespec1_split->devicelen = filespec2_split->devicelen; | ||
605 | } | ||
606 | if (!filespec1_split->dir) | ||
607 | { | ||
608 | filespec1_split->dir = filespec2_split->dir; | ||
609 | filespec1_split->dirlen = filespec2_split->dirlen; | ||
610 | } | ||
611 | else if (filespec1_split->dir[0] != '\\' | ||
612 | && filespec1_split->dir[0] != '/') | ||
613 | { | ||
614 | filespec1_split->predir = filespec2_split->dir; | ||
615 | filespec1_split->predirlen = filespec2_split->dirlen; | ||
616 | } | ||
617 | if (!filespec1_split->file) | ||
618 | { | ||
619 | filespec1_split->file = filespec2_split->file; | ||
620 | filespec1_split->filelen = filespec2_split->filelen; | ||
621 | } | ||
622 | |||
623 | merged = win32_joiner(dso, filespec1_split); | ||
624 | } | ||
625 | OPENSSL_free(filespec1_split); | ||
626 | OPENSSL_free(filespec2_split); | ||
627 | return(merged); | ||
628 | } | ||
629 | |||
630 | static char *win32_name_converter(DSO *dso, const char *filename) | ||
631 | { | ||
632 | char *translated; | ||
633 | int len, transform; | ||
634 | |||
635 | len = strlen(filename); | ||
636 | transform = ((strstr(filename, "/") == NULL) && | ||
637 | (strstr(filename, "\\") == NULL) && | ||
638 | (strstr(filename, ":") == NULL)); | ||
639 | if(transform) | ||
640 | /* We will convert this to "%s.dll" */ | ||
641 | translated = OPENSSL_malloc(len + 5); | ||
642 | else | ||
643 | /* We will simply duplicate filename */ | ||
644 | translated = OPENSSL_malloc(len + 1); | ||
645 | if(translated == NULL) | ||
646 | { | ||
647 | DSOerr(DSO_F_WIN32_NAME_CONVERTER, | ||
648 | DSO_R_NAME_TRANSLATION_FAILED); | ||
649 | return(NULL); | ||
650 | } | ||
651 | if(transform) | ||
652 | sprintf(translated, "%s.dll", filename); | ||
653 | else | ||
654 | sprintf(translated, "%s", filename); | ||
655 | return(translated); | ||
656 | } | ||
657 | |||
658 | static const char *openssl_strnchr(const char *string, int c, size_t len) | ||
659 | { | ||
660 | size_t i; | ||
661 | const char *p; | ||
662 | for (i = 0, p = string; i < len && *p; i++, p++) | ||
663 | { | ||
664 | if (*p == c) | ||
665 | return p; | ||
666 | } | ||
667 | return NULL; | ||
668 | } | ||
669 | |||
670 | #include <tlhelp32.h> | ||
671 | #ifdef _WIN32_WCE | ||
672 | # define DLLNAME "TOOLHELP.DLL" | ||
673 | #else | ||
674 | # ifdef MODULEENTRY32 | ||
675 | # undef MODULEENTRY32 /* unmask the ASCII version! */ | ||
676 | # endif | ||
677 | # define DLLNAME "KERNEL32.DLL" | ||
678 | #endif | ||
679 | |||
680 | typedef HANDLE (WINAPI *CREATETOOLHELP32SNAPSHOT)(DWORD, DWORD); | ||
681 | typedef BOOL (WINAPI *CLOSETOOLHELP32SNAPSHOT)(HANDLE); | ||
682 | typedef BOOL (WINAPI *MODULE32)(HANDLE, MODULEENTRY32 *); | ||
683 | |||
684 | static int win32_pathbyaddr(void *addr,char *path,int sz) | ||
685 | { | ||
686 | HMODULE dll; | ||
687 | HANDLE hModuleSnap = INVALID_HANDLE_VALUE; | ||
688 | MODULEENTRY32 me32; | ||
689 | CREATETOOLHELP32SNAPSHOT create_snap; | ||
690 | CLOSETOOLHELP32SNAPSHOT close_snap; | ||
691 | MODULE32 module_first, module_next; | ||
692 | int len; | ||
693 | |||
694 | if (addr == NULL) | ||
695 | { | ||
696 | union { int(*f)(void*,char*,int); void *p; } t = | ||
697 | { win32_pathbyaddr }; | ||
698 | addr = t.p; | ||
699 | } | ||
700 | |||
701 | dll = LoadLibrary(TEXT(DLLNAME)); | ||
702 | if (dll == NULL) | ||
703 | { | ||
704 | DSOerr(DSO_F_WIN32_PATHBYADDR,DSO_R_UNSUPPORTED); | ||
705 | return -1; | ||
706 | } | ||
707 | |||
708 | create_snap = (CREATETOOLHELP32SNAPSHOT) | ||
709 | GetProcAddress(dll,"CreateToolhelp32Snapshot"); | ||
710 | if (create_snap == NULL) | ||
711 | { | ||
712 | FreeLibrary(dll); | ||
713 | DSOerr(DSO_F_WIN32_PATHBYADDR,DSO_R_UNSUPPORTED); | ||
714 | return -1; | ||
715 | } | ||
716 | /* We take the rest for granted... */ | ||
717 | #ifdef _WIN32_WCE | ||
718 | close_snap = (CLOSETOOLHELP32SNAPSHOT) | ||
719 | GetProcAddress(dll,"CloseToolhelp32Snapshot"); | ||
720 | #else | ||
721 | close_snap = (CLOSETOOLHELP32SNAPSHOT)CloseHandle; | ||
722 | #endif | ||
723 | module_first = (MODULE32)GetProcAddress(dll,"Module32First"); | ||
724 | module_next = (MODULE32)GetProcAddress(dll,"Module32Next"); | ||
725 | |||
726 | hModuleSnap = (*create_snap)(TH32CS_SNAPMODULE,0); | ||
727 | if( hModuleSnap == INVALID_HANDLE_VALUE ) | ||
728 | { | ||
729 | FreeLibrary(dll); | ||
730 | DSOerr(DSO_F_WIN32_PATHBYADDR,DSO_R_UNSUPPORTED); | ||
731 | return -1; | ||
732 | } | ||
733 | |||
734 | me32.dwSize = sizeof(me32); | ||
735 | |||
736 | if(!(*module_first)(hModuleSnap,&me32)) | ||
737 | { | ||
738 | (*close_snap)(hModuleSnap); | ||
739 | FreeLibrary(dll); | ||
740 | DSOerr(DSO_F_WIN32_PATHBYADDR,DSO_R_FAILURE); | ||
741 | return -1; | ||
742 | } | ||
743 | |||
744 | do { | ||
745 | if ((BYTE *)addr >= me32.modBaseAddr && | ||
746 | (BYTE *)addr < me32.modBaseAddr+me32.modBaseSize) | ||
747 | { | ||
748 | (*close_snap)(hModuleSnap); | ||
749 | FreeLibrary(dll); | ||
750 | #ifdef _WIN32_WCE | ||
751 | # if _WIN32_WCE >= 101 | ||
752 | return WideCharToMultiByte(CP_ACP,0,me32.szExePath,-1, | ||
753 | path,sz,NULL,NULL); | ||
754 | # else | ||
755 | len = (int)wcslen(me32.szExePath); | ||
756 | if (sz <= 0) return len+1; | ||
757 | if (len >= sz) len=sz-1; | ||
758 | for(i=0;i<len;i++) | ||
759 | path[i] = (char)me32.szExePath[i]; | ||
760 | path[len++] = 0; | ||
761 | return len; | ||
762 | # endif | ||
763 | #else | ||
764 | len = (int)strlen(me32.szExePath); | ||
765 | if (sz <= 0) return len+1; | ||
766 | if (len >= sz) len=sz-1; | ||
767 | memcpy(path,me32.szExePath,len); | ||
768 | path[len++] = 0; | ||
769 | return len; | ||
770 | #endif | ||
771 | } | ||
772 | } while((*module_next)(hModuleSnap, &me32)); | ||
773 | |||
774 | (*close_snap)(hModuleSnap); | ||
775 | FreeLibrary(dll); | ||
776 | return 0; | ||
777 | } | ||
778 | |||
779 | static void *win32_globallookup(const char *name) | ||
780 | { | ||
781 | HMODULE dll; | ||
782 | HANDLE hModuleSnap = INVALID_HANDLE_VALUE; | ||
783 | MODULEENTRY32 me32; | ||
784 | CREATETOOLHELP32SNAPSHOT create_snap; | ||
785 | CLOSETOOLHELP32SNAPSHOT close_snap; | ||
786 | MODULE32 module_first, module_next; | ||
787 | FARPROC ret=NULL; | ||
788 | |||
789 | dll = LoadLibrary(TEXT(DLLNAME)); | ||
790 | if (dll == NULL) | ||
791 | { | ||
792 | DSOerr(DSO_F_WIN32_GLOBALLOOKUP,DSO_R_UNSUPPORTED); | ||
793 | return NULL; | ||
794 | } | ||
795 | |||
796 | create_snap = (CREATETOOLHELP32SNAPSHOT) | ||
797 | GetProcAddress(dll,"CreateToolhelp32Snapshot"); | ||
798 | if (create_snap == NULL) | ||
799 | { | ||
800 | FreeLibrary(dll); | ||
801 | DSOerr(DSO_F_WIN32_GLOBALLOOKUP,DSO_R_UNSUPPORTED); | ||
802 | return NULL; | ||
803 | } | ||
804 | /* We take the rest for granted... */ | ||
805 | #ifdef _WIN32_WCE | ||
806 | close_snap = (CLOSETOOLHELP32SNAPSHOT) | ||
807 | GetProcAddress(dll,"CloseToolhelp32Snapshot"); | ||
808 | #else | ||
809 | close_snap = (CLOSETOOLHELP32SNAPSHOT)CloseHandle; | ||
810 | #endif | ||
811 | module_first = (MODULE32)GetProcAddress(dll,"Module32First"); | ||
812 | module_next = (MODULE32)GetProcAddress(dll,"Module32Next"); | ||
813 | |||
814 | hModuleSnap = (*create_snap)(TH32CS_SNAPMODULE,0); | ||
815 | if( hModuleSnap == INVALID_HANDLE_VALUE ) | ||
816 | { | ||
817 | FreeLibrary(dll); | ||
818 | DSOerr(DSO_F_WIN32_GLOBALLOOKUP,DSO_R_UNSUPPORTED); | ||
819 | return NULL; | ||
820 | } | ||
821 | |||
822 | me32.dwSize = sizeof(me32); | ||
823 | |||
824 | if (!(*module_first)(hModuleSnap,&me32)) | ||
825 | { | ||
826 | (*close_snap)(hModuleSnap); | ||
827 | FreeLibrary(dll); | ||
828 | return NULL; | ||
829 | } | ||
830 | |||
831 | do { | ||
832 | if ((ret = GetProcAddress(me32.hModule,name))) | ||
833 | { | ||
834 | (*close_snap)(hModuleSnap); | ||
835 | FreeLibrary(dll); | ||
836 | return ret; | ||
837 | } | ||
838 | } while((*module_next)(hModuleSnap,&me32)); | ||
839 | |||
840 | (*close_snap)(hModuleSnap); | ||
841 | FreeLibrary(dll); | ||
842 | return NULL; | ||
843 | } | ||
844 | #endif /* DSO_WIN32 */ | ||