Update contrib.
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).
59 © Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
64 #ifdef OPENSSL_NO_ENGINE
65 int main(int argc, char *argv[])
67 printf("No ENGINE support\n");
71 #include <openssl/e_os2.h>
72 #include <openssl/buffer.h>
73 #include <openssl/crypto.h>
74 #include <openssl/engine.h>
75 #include <openssl/err.h>
88 #define stdin fp_stdin
89 #define stdout fp_stdout
90 #define stderr fp_stderr
92 extern FILE *fp_stdout;
93 extern FILE *fp_stderr;
96 static void display_engine_list(void)
101 h = ENGINE_get_first();
107 fprintf(stdout,"listing available engine types\n");
114 fprintf(stdout,"engine %i, id = \"%s\", name = \"%s\"\n",
115 loop++, ENGINE_get_id(h), ENGINE_get_name(h));
120 h = ENGINE_get_next(h);
126 fprintf(stdout,"end of list\n");
131 /* ENGINE_get_first() increases the struct_ref counter, so we
132 must call ENGINE_free() to decrease it again */
141 int main(int argc, char *argv[])
143 int engine_main(int argc, char *argv[])
149 const char *id, *name;
153 ENGINE *new_h1 = NULL;
154 ENGINE *new_h2 = NULL;
155 ENGINE *new_h3 = NULL;
156 ENGINE *new_h4 = NULL;
158 /* enable memory leak checking unless explicitly disabled */
160 ERR_load_crypto_strings();
166 memset(block, 0, 512 * sizeof(ENGINE *));
171 if(((new_h1 = ENGINE_new()) == NULL) ||
172 !ENGINE_set_id(new_h1, "test_id0") ||
173 !ENGINE_set_name(new_h1, "First test item") ||
174 ((new_h2 = ENGINE_new()) == NULL) ||
175 !ENGINE_set_id(new_h2, "test_id1") ||
176 !ENGINE_set_name(new_h2, "Second test item") ||
177 ((new_h3 = ENGINE_new()) == NULL) ||
178 !ENGINE_set_id(new_h3, "test_id2") ||
179 !ENGINE_set_name(new_h3, "Third test item") ||
180 ((new_h4 = ENGINE_new()) == NULL) ||
181 !ENGINE_set_id(new_h4, "test_id3") ||
182 !ENGINE_set_name(new_h4, "Fourth test item"))
188 fprintf(stdout,"Couldn't set up test ENGINE structures\n");
191 fprintf(stdout,"\nenginetest beginning\n\n");
196 display_engine_list();
197 if(!ENGINE_add(new_h1))
199 fprintf(stdout,"Add failed!\n");
202 display_engine_list();
207 ptr = ENGINE_get_first();
212 if(!ENGINE_remove(ptr))
218 fprintf(stdout,"Remove failed!\n");
229 display_engine_list();
234 if(!ENGINE_add(new_h3) || !ENGINE_add(new_h2))
240 fprintf(stdout,"Add failed!\n");
243 display_engine_list();
248 if(!ENGINE_remove(new_h2))
254 fprintf(stdout,"Remove failed!\n");
257 display_engine_list();
262 if(!ENGINE_add(new_h4))
268 fprintf(stdout,"Add failed!\n");
271 display_engine_list();
276 if(ENGINE_add(new_h3))
282 fprintf(stdout,"Add *should* have failed but didn't!\n");
286 fprintf(stdout,"Add that should fail did.\n");
292 if(ENGINE_remove(new_h2))
298 fprintf(stdout,"Remove *should* have failed but didn't!\n");
302 fprintf(stdout,"Remove that should fail did.\n");
308 if(!ENGINE_remove(new_h3))
314 fprintf(stdout,"Remove failed!\n");
317 display_engine_list();
322 if(!ENGINE_remove(new_h4))
328 fprintf(stdout,"Remove failed!\n");
331 display_engine_list();
336 /* Depending on whether there's any hardware support compiled
337 * in, this remove may be destined to fail. */
338 ptr = ENGINE_get_first();
344 if(!ENGINE_remove(ptr))
350 fprintf(stdout,"Remove failed!i - probably no hardware "
351 "support present.\n");
361 display_engine_list();
366 if(!ENGINE_add(new_h1) || !ENGINE_remove(new_h1))
372 fprintf(stdout,"Couldn't add and remove to an empty list!\n");
376 fprintf(stdout,"Successfully added and removed to an empty list!\n");
377 fprintf(stdout,"About to beef up the engine-type list\n");
378 for(loop = 0; loop < 512; loop++)
380 sprintf(buf, "id%i", loop);
381 id = BUF_strdup(buf);
386 sprintf(buf, "Fake engine type %i", loop);
387 name = BUF_strdup(buf);
392 if(((block[loop] = ENGINE_new()) == NULL) ||
393 !ENGINE_set_id(block[loop], id) ||
394 !ENGINE_set_name(block[loop], name))
400 fprintf(stdout,"Couldn't create block of ENGINE structures.\n"
401 "I'll probably also core-dump now, damn.\n");
405 for(loop = 0; loop < 512; loop++)
407 if(!ENGINE_add(block[loop]))
413 fprintf(stdout,"\nAdding stopped at %i, (%s,%s)\n",
414 loop, ENGINE_get_id(block[loop]),
415 ENGINE_get_name(block[loop]));
424 fprintf(stdout,"."); fflush(stdout);
427 fprintf(stdout,"\nAbout to empty the engine-type list\n");
428 while((ptr = ENGINE_get_first()) != NULL)
434 if(!ENGINE_remove(ptr))
440 fprintf(stdout,"\nRemove failed!\n");
448 fprintf(stdout,"."); fflush(stdout);
450 for(loop = 0; loop < 512; loop++)
452 OPENSSL_free((void *)ENGINE_get_id(block[loop]));
458 OPENSSL_free((void *)ENGINE_get_name(block[loop]));
465 fprintf(stdout,"\nTests completed happily\n");
470 ERR_print_errors_fp(stderr);
477 { ENGINE_free(new_h1);
507 for(loop = 0; loop < 512; loop++)
510 ENGINE_free(block[loop]);
521 CRYPTO_cleanup_all_ex_data();
536 CRYPTO_mem_leaks_fp(stderr);