2015-01-22 03:40:55 +00:00
|
|
|
/*
|
2017-06-19 01:21:22 +00:00
|
|
|
* Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
|
2000-10-26 21:07:28 +00:00
|
|
|
*
|
2016-05-17 18:20:24 +00:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2000-10-26 21:07:28 +00:00
|
|
|
*/
|
|
|
|
|
2001-06-23 16:44:15 +00:00
|
|
|
#include <stdio.h>
|
2001-09-10 21:02:06 +00:00
|
|
|
#include <string.h>
|
2008-12-20 17:04:40 +00:00
|
|
|
#include <openssl/e_os2.h>
|
2003-01-30 17:39:26 +00:00
|
|
|
|
|
|
|
#ifdef OPENSSL_NO_ENGINE
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
printf("No ENGINE support\n");
|
2015-01-22 03:40:55 +00:00
|
|
|
return (0);
|
2003-01-30 17:39:26 +00:00
|
|
|
}
|
|
|
|
#else
|
2015-01-22 03:40:55 +00:00
|
|
|
# include <openssl/buffer.h>
|
|
|
|
# include <openssl/crypto.h>
|
|
|
|
# include <openssl/engine.h>
|
|
|
|
# include <openssl/err.h>
|
2017-04-18 18:34:43 +00:00
|
|
|
# include "testutil.h"
|
2000-10-26 21:07:28 +00:00
|
|
|
|
2005-03-31 09:26:39 +00:00
|
|
|
static void display_engine_list(void)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
ENGINE *h;
|
|
|
|
int loop;
|
2000-10-26 21:07:28 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
loop = 0;
|
2017-04-18 18:34:43 +00:00
|
|
|
for (h = ENGINE_get_first(); h != NULL; h = ENGINE_get_next(h)) {
|
|
|
|
TEST_info("#%d: id = \"%s\", name = \"%s\"",
|
2015-01-22 03:40:55 +00:00
|
|
|
loop++, ENGINE_get_id(h), ENGINE_get_name(h));
|
|
|
|
}
|
2017-04-18 18:34:43 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
/*
|
|
|
|
* ENGINE_get_first() increases the struct_ref counter, so we must call
|
|
|
|
* ENGINE_free() to decrease it again
|
|
|
|
*/
|
|
|
|
ENGINE_free(h);
|
|
|
|
}
|
2000-10-26 21:07:28 +00:00
|
|
|
|
2017-04-18 18:34:43 +00:00
|
|
|
#define NUMTOADD 512
|
|
|
|
|
|
|
|
static int test_engines(void)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
2017-04-18 18:34:43 +00:00
|
|
|
ENGINE *block[NUMTOADD];
|
2015-01-22 03:40:55 +00:00
|
|
|
char buf[256];
|
2017-04-18 18:34:43 +00:00
|
|
|
const char *id, *name;
|
2015-01-22 03:40:55 +00:00
|
|
|
ENGINE *ptr;
|
|
|
|
int loop;
|
2017-04-18 18:34:43 +00:00
|
|
|
int to_return = 0;
|
2015-01-22 03:40:55 +00:00
|
|
|
ENGINE *new_h1 = NULL;
|
|
|
|
ENGINE *new_h2 = NULL;
|
|
|
|
ENGINE *new_h3 = NULL;
|
|
|
|
ENGINE *new_h4 = NULL;
|
2000-10-26 21:07:28 +00:00
|
|
|
|
2015-05-04 22:00:15 +00:00
|
|
|
memset(block, 0, sizeof(block));
|
2017-04-18 18:34:43 +00:00
|
|
|
if (!TEST_ptr(new_h1 = ENGINE_new())
|
|
|
|
|| !TEST_true(ENGINE_set_id(new_h1, "test_id0"))
|
|
|
|
|| !TEST_true(ENGINE_set_name(new_h1, "First test item"))
|
|
|
|
|| !TEST_ptr(new_h2 = ENGINE_new())
|
|
|
|
|| !TEST_true(ENGINE_set_id(new_h2, "test_id1"))
|
|
|
|
|| !TEST_true(ENGINE_set_name(new_h2, "Second test item"))
|
|
|
|
|| !TEST_ptr(new_h3 = ENGINE_new())
|
|
|
|
|| !TEST_true(ENGINE_set_id(new_h3, "test_id2"))
|
|
|
|
|| !TEST_true(ENGINE_set_name(new_h3, "Third test item"))
|
|
|
|
|| !TEST_ptr(new_h4 = ENGINE_new())
|
|
|
|
|| !TEST_true(ENGINE_set_id(new_h4, "test_id3"))
|
|
|
|
|| !TEST_true(ENGINE_set_name(new_h4, "Fourth test item")))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto end;
|
2017-04-18 18:34:43 +00:00
|
|
|
TEST_info("Engines:");
|
2015-01-22 03:40:55 +00:00
|
|
|
display_engine_list();
|
2017-04-18 18:34:43 +00:00
|
|
|
|
|
|
|
if (!TEST_true(ENGINE_add(new_h1)))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto end;
|
2017-04-18 18:34:43 +00:00
|
|
|
TEST_info("Engines:");
|
2015-01-22 03:40:55 +00:00
|
|
|
display_engine_list();
|
2017-04-18 18:34:43 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
ptr = ENGINE_get_first();
|
2017-04-18 18:34:43 +00:00
|
|
|
if (!TEST_true(ENGINE_remove(ptr)))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto end;
|
2015-05-01 14:15:18 +00:00
|
|
|
ENGINE_free(ptr);
|
2017-04-18 18:34:43 +00:00
|
|
|
TEST_info("Engines:");
|
2015-01-22 03:40:55 +00:00
|
|
|
display_engine_list();
|
2017-04-18 18:34:43 +00:00
|
|
|
|
|
|
|
if (!TEST_true(ENGINE_add(new_h3))
|
|
|
|
|| !TEST_true(ENGINE_add(new_h2)))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto end;
|
2017-04-18 18:34:43 +00:00
|
|
|
TEST_info("Engines:");
|
2015-01-22 03:40:55 +00:00
|
|
|
display_engine_list();
|
2017-04-18 18:34:43 +00:00
|
|
|
|
|
|
|
if (!TEST_true(ENGINE_remove(new_h2)))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto end;
|
2017-04-18 18:34:43 +00:00
|
|
|
TEST_info("Engines:");
|
2015-01-22 03:40:55 +00:00
|
|
|
display_engine_list();
|
2017-04-18 18:34:43 +00:00
|
|
|
|
|
|
|
if (!TEST_true(ENGINE_add(new_h4)))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto end;
|
2017-04-18 18:34:43 +00:00
|
|
|
TEST_info("Engines:");
|
2015-01-22 03:40:55 +00:00
|
|
|
display_engine_list();
|
2017-04-18 18:34:43 +00:00
|
|
|
|
|
|
|
/* Should fail. */
|
|
|
|
if (!TEST_false(ENGINE_add(new_h3)))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto end;
|
|
|
|
ERR_clear_error();
|
2017-04-18 18:34:43 +00:00
|
|
|
|
|
|
|
/* Should fail. */
|
|
|
|
if (!TEST_false(ENGINE_remove(new_h2)))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto end;
|
|
|
|
ERR_clear_error();
|
2017-04-18 18:34:43 +00:00
|
|
|
|
|
|
|
if (!TEST_true(ENGINE_remove(new_h3)))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto end;
|
2017-04-18 18:34:43 +00:00
|
|
|
TEST_info("Engines:");
|
2015-01-22 03:40:55 +00:00
|
|
|
display_engine_list();
|
2017-04-18 18:34:43 +00:00
|
|
|
|
|
|
|
if (!TEST_true(ENGINE_remove(new_h4)))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto end;
|
2017-04-18 18:34:43 +00:00
|
|
|
TEST_info("Engines:");
|
2015-01-22 03:40:55 +00:00
|
|
|
display_engine_list();
|
2017-04-18 18:34:43 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
/*
|
|
|
|
* Depending on whether there's any hardware support compiled in, this
|
|
|
|
* remove may be destined to fail.
|
|
|
|
*/
|
2017-04-18 18:34:43 +00:00
|
|
|
if ((ptr = ENGINE_get_first()) != NULL) {
|
2015-01-22 03:40:55 +00:00
|
|
|
if (!ENGINE_remove(ptr))
|
2017-04-18 18:34:43 +00:00
|
|
|
TEST_info("Remove failed - probably no hardware support present");
|
|
|
|
}
|
2015-05-01 14:15:18 +00:00
|
|
|
ENGINE_free(ptr);
|
2017-04-18 18:34:43 +00:00
|
|
|
TEST_info("Engines:");
|
2015-01-22 03:40:55 +00:00
|
|
|
display_engine_list();
|
2017-04-18 18:34:43 +00:00
|
|
|
|
|
|
|
if (!TEST_true(ENGINE_add(new_h1))
|
|
|
|
|| !TEST_true(ENGINE_remove(new_h1)))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto end;
|
2017-04-18 18:34:43 +00:00
|
|
|
|
|
|
|
TEST_info("About to beef up the engine-type list");
|
|
|
|
for (loop = 0; loop < NUMTOADD; loop++) {
|
|
|
|
sprintf(buf, "id%d", loop);
|
Rename some BUF_xxx to OPENSSL_xxx
Rename BUF_{strdup,strlcat,strlcpy,memdup,strndup,strnlen}
to OPENSSL_{strdup,strlcat,strlcpy,memdup,strndup,strnlen}
Add #define's for the old names.
Add CRYPTO_{memdup,strndup}, called by OPENSSL_{memdup,strndup} macros.
Reviewed-by: Tim Hudson <tjh@openssl.org>
2015-12-16 21:12:24 +00:00
|
|
|
id = OPENSSL_strdup(buf);
|
2017-04-18 18:34:43 +00:00
|
|
|
sprintf(buf, "Fake engine type %d", loop);
|
Rename some BUF_xxx to OPENSSL_xxx
Rename BUF_{strdup,strlcat,strlcpy,memdup,strndup,strnlen}
to OPENSSL_{strdup,strlcat,strlcpy,memdup,strndup,strnlen}
Add #define's for the old names.
Add CRYPTO_{memdup,strndup}, called by OPENSSL_{memdup,strndup} macros.
Reviewed-by: Tim Hudson <tjh@openssl.org>
2015-12-16 21:12:24 +00:00
|
|
|
name = OPENSSL_strdup(buf);
|
2017-04-18 18:34:43 +00:00
|
|
|
if (!TEST_ptr(block[loop] = ENGINE_new())
|
|
|
|
|| !TEST_true(ENGINE_set_id(block[loop], id))
|
|
|
|
|| !TEST_true(ENGINE_set_name(block[loop], name)))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto end;
|
|
|
|
}
|
2017-04-18 18:34:43 +00:00
|
|
|
for (loop = 0; loop < NUMTOADD; loop++) {
|
|
|
|
if (!TEST_true(ENGINE_add(block[loop]))) {
|
2017-06-19 01:21:22 +00:00
|
|
|
test_note("Adding stopped at %d, (%s,%s)",
|
|
|
|
loop, ENGINE_get_id(block[loop]),
|
|
|
|
ENGINE_get_name(block[loop]));
|
2015-01-22 03:40:55 +00:00
|
|
|
goto cleanup_loop;
|
2017-04-18 18:34:43 +00:00
|
|
|
}
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
|
|
|
cleanup_loop:
|
2017-04-18 18:34:43 +00:00
|
|
|
TEST_info("About to empty the engine-type list");
|
2015-01-22 03:40:55 +00:00
|
|
|
while ((ptr = ENGINE_get_first()) != NULL) {
|
2017-04-18 18:34:43 +00:00
|
|
|
if (!TEST_true(ENGINE_remove(ptr)))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto end;
|
|
|
|
ENGINE_free(ptr);
|
|
|
|
}
|
2017-04-18 18:34:43 +00:00
|
|
|
for (loop = 0; loop < NUMTOADD; loop++) {
|
2015-01-22 03:40:55 +00:00
|
|
|
OPENSSL_free((void *)ENGINE_get_id(block[loop]));
|
|
|
|
OPENSSL_free((void *)ENGINE_get_name(block[loop]));
|
|
|
|
}
|
2017-04-18 18:34:43 +00:00
|
|
|
to_return = 1;
|
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
end:
|
2015-05-01 14:15:18 +00:00
|
|
|
ENGINE_free(new_h1);
|
|
|
|
ENGINE_free(new_h2);
|
|
|
|
ENGINE_free(new_h3);
|
|
|
|
ENGINE_free(new_h4);
|
2017-04-18 18:34:43 +00:00
|
|
|
for (loop = 0; loop < NUMTOADD; loop++)
|
2015-05-01 14:15:18 +00:00
|
|
|
ENGINE_free(block[loop]);
|
2015-01-22 03:40:55 +00:00
|
|
|
return to_return;
|
|
|
|
}
|
2017-04-18 18:34:43 +00:00
|
|
|
|
|
|
|
void register_tests(void)
|
|
|
|
{
|
|
|
|
ADD_TEST(test_engines);
|
|
|
|
}
|
2003-01-30 17:39:26 +00:00
|
|
|
#endif
|