1 /* crypto/engine/enginetest.c */
2 /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL
5 /* ====================================================================
6 * Copyright (c) 1999-2001 The OpenSSL Project. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * licensing@OpenSSL.org.
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
34 * 6. Redistributions of any form whatsoever must retain the following
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
61 #include <openssl/e_os2.h>
63 #ifdef OPENSSL_NO_ENGINE
64 int main(int argc
, char *argv
[])
66 printf("No ENGINE support\n");
70 #include <openssl/buffer.h>
71 #include <openssl/crypto.h>
72 #include <openssl/engine.h>
73 #include <openssl/err.h>
75 static void display_engine_list(void)
80 h
= ENGINE_get_first();
82 printf("listing available engine types\n");
85 printf("engine %i, id = \"%s\", name = \"%s\"\n",
86 loop
++, ENGINE_get_id(h
), ENGINE_get_name(h
));
87 h
= ENGINE_get_next(h
);
89 printf("end of list\n");
90 /* ENGINE_get_first() increases the struct_ref counter, so we
91 must call ENGINE_free() to decrease it again */
95 int main(int argc
, char *argv
[])
99 const char *id
, *name
;
103 ENGINE
*new_h1
= NULL
;
104 ENGINE
*new_h2
= NULL
;
105 ENGINE
*new_h3
= NULL
;
106 ENGINE
*new_h4
= NULL
;
108 /* enable memory leak checking unless explicitly disabled */
109 if (!((getenv("OPENSSL_DEBUG_MEMORY") != NULL
) && (0 == strcmp(getenv("OPENSSL_DEBUG_MEMORY"), "off"))))
111 CRYPTO_malloc_debug_init();
112 CRYPTO_set_mem_debug_options(V_CRYPTO_MDEBUG_ALL
);
116 /* OPENSSL_DEBUG_MEMORY=off */
117 CRYPTO_set_mem_debug_functions(0, 0, 0, 0, 0);
119 CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON
);
120 ERR_load_crypto_strings();
122 memset(block
, 0, 512 * sizeof(ENGINE
*));
123 if(((new_h1
= ENGINE_new()) == NULL
) ||
124 !ENGINE_set_id(new_h1
, "test_id0") ||
125 !ENGINE_set_name(new_h1
, "First test item") ||
126 ((new_h2
= ENGINE_new()) == NULL
) ||
127 !ENGINE_set_id(new_h2
, "test_id1") ||
128 !ENGINE_set_name(new_h2
, "Second test item") ||
129 ((new_h3
= ENGINE_new()) == NULL
) ||
130 !ENGINE_set_id(new_h3
, "test_id2") ||
131 !ENGINE_set_name(new_h3
, "Third test item") ||
132 ((new_h4
= ENGINE_new()) == NULL
) ||
133 !ENGINE_set_id(new_h4
, "test_id3") ||
134 !ENGINE_set_name(new_h4
, "Fourth test item"))
136 printf("Couldn't set up test ENGINE structures\n");
139 printf("\nenginetest beginning\n\n");
140 display_engine_list();
141 if(!ENGINE_add(new_h1
))
143 printf("Add failed!\n");
146 display_engine_list();
147 ptr
= ENGINE_get_first();
148 if(!ENGINE_remove(ptr
))
150 printf("Remove failed!\n");
155 display_engine_list();
156 if(!ENGINE_add(new_h3
) || !ENGINE_add(new_h2
))
158 printf("Add failed!\n");
161 display_engine_list();
162 if(!ENGINE_remove(new_h2
))
164 printf("Remove failed!\n");
167 display_engine_list();
168 if(!ENGINE_add(new_h4
))
170 printf("Add failed!\n");
173 display_engine_list();
174 if(ENGINE_add(new_h3
))
176 printf("Add *should* have failed but didn't!\n");
180 printf("Add that should fail did.\n");
182 if(ENGINE_remove(new_h2
))
184 printf("Remove *should* have failed but didn't!\n");
188 printf("Remove that should fail did.\n");
190 if(!ENGINE_remove(new_h3
))
192 printf("Remove failed!\n");
195 display_engine_list();
196 if(!ENGINE_remove(new_h4
))
198 printf("Remove failed!\n");
201 display_engine_list();
202 /* Depending on whether there's any hardware support compiled
203 * in, this remove may be destined to fail. */
204 ptr
= ENGINE_get_first();
206 if(!ENGINE_remove(ptr
))
207 printf("Remove failed!i - probably no hardware "
208 "support present.\n");
211 display_engine_list();
212 if(!ENGINE_add(new_h1
) || !ENGINE_remove(new_h1
))
214 printf("Couldn't add and remove to an empty list!\n");
218 printf("Successfully added and removed to an empty list!\n");
219 printf("About to beef up the engine-type list\n");
220 for(loop
= 0; loop
< 512; loop
++)
222 sprintf(buf
, "id%i", loop
);
223 id
= BUF_strdup(buf
);
224 sprintf(buf
, "Fake engine type %i", loop
);
225 name
= BUF_strdup(buf
);
226 if(((block
[loop
] = ENGINE_new()) == NULL
) ||
227 !ENGINE_set_id(block
[loop
], id
) ||
228 !ENGINE_set_name(block
[loop
], name
))
230 printf("Couldn't create block of ENGINE structures.\n"
231 "I'll probably also core-dump now, damn.\n");
235 for(loop
= 0; loop
< 512; loop
++)
237 if(!ENGINE_add(block
[loop
]))
239 printf("\nAdding stopped at %i, (%s,%s)\n",
240 loop
, ENGINE_get_id(block
[loop
]),
241 ENGINE_get_name(block
[loop
]));
245 printf("."); fflush(stdout
);
248 printf("\nAbout to empty the engine-type list\n");
249 while((ptr
= ENGINE_get_first()) != NULL
)
251 if(!ENGINE_remove(ptr
))
253 printf("\nRemove failed!\n");
257 printf("."); fflush(stdout
);
259 for(loop
= 0; loop
< 512; loop
++)
261 OPENSSL_free((void *)ENGINE_get_id(block
[loop
]));
262 OPENSSL_free((void *)ENGINE_get_name(block
[loop
]));
264 printf("\nTests completed happily\n");
268 ERR_print_errors_fp(stderr
);
269 if(new_h1
) ENGINE_free(new_h1
);
270 if(new_h2
) ENGINE_free(new_h2
);
271 if(new_h3
) ENGINE_free(new_h3
);
272 if(new_h4
) ENGINE_free(new_h4
);
273 for(loop
= 0; loop
< 512; loop
++)
275 ENGINE_free(block
[loop
]);
277 CRYPTO_cleanup_all_ex_data();
279 ERR_remove_thread_state(NULL
);
280 CRYPTO_mem_leaks_fp(stderr
);