cmp_ctx_test.c 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900
  1. /*
  2. * Copyright 2007-2021 The OpenSSL Project Authors. All Rights Reserved.
  3. * Copyright Nokia 2007-2019
  4. * Copyright Siemens AG 2015-2019
  5. *
  6. * Licensed under the Apache License 2.0 (the "License"). You may not use
  7. * this file except in compliance with the License. You can obtain a copy
  8. * in the file LICENSE in the source distribution or at
  9. * https://www.openssl.org/source/license.html
  10. */
  11. #include "helpers/cmp_testlib.h"
  12. #include <openssl/x509_vfy.h>
  13. typedef struct test_fixture {
  14. const char *test_case_name;
  15. OSSL_CMP_CTX *ctx;
  16. } OSSL_CMP_CTX_TEST_FIXTURE;
  17. static void tear_down(OSSL_CMP_CTX_TEST_FIXTURE *fixture)
  18. {
  19. if (fixture != NULL)
  20. OSSL_CMP_CTX_free(fixture->ctx);
  21. OPENSSL_free(fixture);
  22. }
  23. static OSSL_CMP_CTX_TEST_FIXTURE *set_up(const char *const test_case_name)
  24. {
  25. OSSL_CMP_CTX_TEST_FIXTURE *fixture;
  26. if (!TEST_ptr(fixture = OPENSSL_zalloc(sizeof(*fixture))))
  27. return NULL;
  28. if (!TEST_ptr(fixture->ctx = OSSL_CMP_CTX_new(NULL, NULL))) {
  29. tear_down(fixture);
  30. return NULL;
  31. }
  32. fixture->test_case_name = test_case_name;
  33. return fixture;
  34. }
  35. static STACK_OF(X509) *sk_X509_new_1(void)
  36. {
  37. STACK_OF(X509) *sk = sk_X509_new_null();
  38. X509 *x = X509_new();
  39. if (x == NULL || !sk_X509_push(sk, x)) {
  40. sk_X509_free(sk);
  41. X509_free(x);
  42. sk = NULL;
  43. }
  44. return sk;
  45. }
  46. static void sk_X509_pop_X509_free(STACK_OF(X509) *sk)
  47. {
  48. OSSL_STACK_OF_X509_free(sk);
  49. }
  50. static int execute_CTX_reinit_test(OSSL_CMP_CTX_TEST_FIXTURE *fixture)
  51. {
  52. OSSL_CMP_CTX *ctx = fixture->ctx;
  53. ASN1_OCTET_STRING *bytes = NULL;
  54. STACK_OF(X509) *certs = NULL;
  55. X509 *cert = X509_new();
  56. int res = 0;
  57. /* set non-default values in all relevant fields */
  58. ctx->status = 1;
  59. ctx->failInfoCode = 1;
  60. if (!ossl_cmp_ctx_set0_statusString(ctx, sk_ASN1_UTF8STRING_new_null())
  61. || !ossl_cmp_ctx_set0_newCert(ctx, X509_new())
  62. || !TEST_ptr(certs = sk_X509_new_1())
  63. || !ossl_cmp_ctx_set1_newChain(ctx, certs)
  64. || !ossl_cmp_ctx_set1_caPubs(ctx, certs)
  65. || !ossl_cmp_ctx_set1_extraCertsIn(ctx, certs)
  66. || !ossl_cmp_ctx_set1_validatedSrvCert(ctx, cert)
  67. || !TEST_ptr(bytes = ASN1_OCTET_STRING_new())
  68. || !OSSL_CMP_CTX_set1_transactionID(ctx, bytes)
  69. || !OSSL_CMP_CTX_set1_senderNonce(ctx, bytes)
  70. || !ossl_cmp_ctx_set1_recipNonce(ctx, bytes))
  71. goto err;
  72. if (!TEST_true(OSSL_CMP_CTX_reinit(ctx)))
  73. goto err;
  74. /* check whether values have been reset to default in all relevant fields */
  75. if (!TEST_true(ctx->status == -1
  76. && ctx->failInfoCode == -1
  77. && ctx->statusString == NULL
  78. && ctx->newCert == NULL
  79. && ctx->newChain == NULL
  80. && ctx->caPubs == NULL
  81. && ctx->extraCertsIn == NULL
  82. && ctx->validatedSrvCert == NULL
  83. && ctx->transactionID == NULL
  84. && ctx->senderNonce == NULL
  85. && ctx->recipNonce == NULL))
  86. goto err;
  87. /* this does not check that all remaining fields are untouched */
  88. res = 1;
  89. err:
  90. X509_free(cert);
  91. sk_X509_pop_X509_free(certs);
  92. ASN1_OCTET_STRING_free(bytes);
  93. return res;
  94. }
  95. static int test_CTX_libctx_propq(void)
  96. {
  97. OSSL_LIB_CTX *libctx = OSSL_LIB_CTX_new();
  98. const char *propq = "?provider=legacy";
  99. OSSL_CMP_CTX *cmpctx = OSSL_CMP_CTX_new(libctx, propq);
  100. int res = TEST_ptr(libctx)
  101. && TEST_ptr(cmpctx)
  102. && TEST_ptr_eq(libctx, OSSL_CMP_CTX_get0_libctx(cmpctx))
  103. && TEST_str_eq(propq, OSSL_CMP_CTX_get0_propq(cmpctx));
  104. OSSL_CMP_CTX_free(cmpctx);
  105. OSSL_LIB_CTX_free(libctx);
  106. return res;
  107. }
  108. static int test_CTX_reinit(void)
  109. {
  110. SETUP_TEST_FIXTURE(OSSL_CMP_CTX_TEST_FIXTURE, set_up);
  111. EXECUTE_TEST(execute_CTX_reinit_test, tear_down);
  112. return result;
  113. }
  114. #if !defined(OPENSSL_NO_ERR) && !defined(OPENSSL_NO_AUTOERRINIT)
  115. static int msg_total_size = 0;
  116. static int msg_total_size_log_cb(const char *func, const char *file, int line,
  117. OSSL_CMP_severity level, const char *msg)
  118. {
  119. msg_total_size += strlen(msg);
  120. TEST_note("total=%d len=%zu msg='%s'\n", msg_total_size, strlen(msg), msg);
  121. return 1;
  122. }
  123. # define STR64 "This is a 64 bytes looooooooooooooooooooooooooooooooong string.\n"
  124. /* max string length ISO C90 compilers are required to support is 509. */
  125. # define STR509 STR64 STR64 STR64 STR64 STR64 STR64 STR64 \
  126. "This is a 61 bytes loooooooooooooooooooooooooooooong string.\n"
  127. static const char *const max_str_literal = STR509;
  128. # define STR_SEP "<SEP>"
  129. static int execute_CTX_print_errors_test(OSSL_CMP_CTX_TEST_FIXTURE *fixture)
  130. {
  131. OSSL_CMP_CTX *ctx = fixture->ctx;
  132. int base_err_msg_size, expected_size;
  133. int res = 1;
  134. if (!TEST_true(OSSL_CMP_CTX_set_log_cb(ctx, NULL)))
  135. res = 0;
  136. if (!TEST_true(ctx->log_cb == NULL))
  137. res = 0;
  138. # ifndef OPENSSL_NO_STDIO
  139. ERR_raise(ERR_LIB_CMP, CMP_R_MULTIPLE_SAN_SOURCES);
  140. OSSL_CMP_CTX_print_errors(ctx); /* should print above error to STDERR */
  141. # endif
  142. /* this should work regardless of OPENSSL_NO_STDIO and OPENSSL_NO_TRACE: */
  143. if (!TEST_true(OSSL_CMP_CTX_set_log_cb(ctx, msg_total_size_log_cb)))
  144. res = 0;
  145. if (!TEST_true(ctx->log_cb == msg_total_size_log_cb)) {
  146. res = 0;
  147. } else {
  148. ERR_raise(ERR_LIB_CMP, CMP_R_INVALID_ARGS);
  149. base_err_msg_size = strlen("INVALID_ARGS");
  150. ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT);
  151. base_err_msg_size += strlen("NULL_ARGUMENT");
  152. expected_size = base_err_msg_size;
  153. ossl_cmp_add_error_data("data1"); /* should prepend separator ":" */
  154. expected_size += strlen(":" "data1");
  155. ossl_cmp_add_error_data("data2"); /* should prepend separator " : " */
  156. expected_size += strlen(" : " "data2");
  157. ossl_cmp_add_error_line("new line"); /* should prepend separator "\n" */
  158. expected_size += strlen("\n" "new line");
  159. OSSL_CMP_CTX_print_errors(ctx);
  160. if (!TEST_int_eq(msg_total_size, expected_size))
  161. res = 0;
  162. ERR_raise(ERR_LIB_CMP, CMP_R_INVALID_ARGS);
  163. base_err_msg_size = strlen("INVALID_ARGS") + strlen(":");
  164. expected_size = base_err_msg_size;
  165. while (expected_size < 4096) { /* force split */
  166. ERR_add_error_txt(STR_SEP, max_str_literal);
  167. expected_size += strlen(STR_SEP) + strlen(max_str_literal);
  168. }
  169. expected_size += base_err_msg_size - 2 * strlen(STR_SEP);
  170. msg_total_size = 0;
  171. OSSL_CMP_CTX_print_errors(ctx);
  172. if (!TEST_int_eq(msg_total_size, expected_size))
  173. res = 0;
  174. }
  175. return res;
  176. }
  177. static int test_CTX_print_errors(void)
  178. {
  179. SETUP_TEST_FIXTURE(OSSL_CMP_CTX_TEST_FIXTURE, set_up);
  180. EXECUTE_TEST(execute_CTX_print_errors_test, tear_down);
  181. return result;
  182. }
  183. #endif
  184. static
  185. int execute_CTX_reqExtensions_have_SAN_test(OSSL_CMP_CTX_TEST_FIXTURE *fixture)
  186. {
  187. OSSL_CMP_CTX *ctx = fixture->ctx;
  188. const int len = 16;
  189. unsigned char str[16 /* = len */];
  190. ASN1_OCTET_STRING *data = NULL;
  191. X509_EXTENSION *ext = NULL;
  192. X509_EXTENSIONS *exts = NULL;
  193. int res = 0;
  194. if (!TEST_false(OSSL_CMP_CTX_reqExtensions_have_SAN(ctx)))
  195. return 0;
  196. if (!TEST_int_eq(1, RAND_bytes(str, len))
  197. || !TEST_ptr(data = ASN1_OCTET_STRING_new())
  198. || !TEST_true(ASN1_OCTET_STRING_set(data, str, len)))
  199. goto err;
  200. ext = X509_EXTENSION_create_by_NID(NULL, NID_subject_alt_name, 0, data);
  201. if (!TEST_ptr(ext)
  202. || !TEST_ptr(exts = sk_X509_EXTENSION_new_null())
  203. || !TEST_true(sk_X509_EXTENSION_push(exts, ext))
  204. || !TEST_true(OSSL_CMP_CTX_set0_reqExtensions(ctx, exts))) {
  205. X509_EXTENSION_free(ext);
  206. sk_X509_EXTENSION_free(exts);
  207. goto err;
  208. }
  209. if (TEST_int_eq(OSSL_CMP_CTX_reqExtensions_have_SAN(ctx), 1)) {
  210. ext = sk_X509_EXTENSION_pop(exts);
  211. res = TEST_false(OSSL_CMP_CTX_reqExtensions_have_SAN(ctx));
  212. X509_EXTENSION_free(ext);
  213. }
  214. err:
  215. ASN1_OCTET_STRING_free(data);
  216. return res;
  217. }
  218. static int test_CTX_reqExtensions_have_SAN(void)
  219. {
  220. SETUP_TEST_FIXTURE(OSSL_CMP_CTX_TEST_FIXTURE, set_up);
  221. EXECUTE_TEST(execute_CTX_reqExtensions_have_SAN_test, tear_down);
  222. return result;
  223. }
  224. static int test_log_line;
  225. static int test_log_cb_res = 0;
  226. static int test_log_cb(const char *func, const char *file, int line,
  227. OSSL_CMP_severity level, const char *msg)
  228. {
  229. test_log_cb_res =
  230. #ifndef PEDANTIC
  231. (TEST_str_eq(func, "execute_cmp_ctx_log_cb_test")
  232. || TEST_str_eq(func, "(unknown function)")) &&
  233. #endif
  234. (TEST_str_eq(file, OPENSSL_FILE)
  235. || TEST_str_eq(file, "(no file)"))
  236. && (TEST_int_eq(line, test_log_line) || TEST_int_eq(line, 0))
  237. && (TEST_int_eq(level, OSSL_CMP_LOG_INFO) || TEST_int_eq(level, -1))
  238. && TEST_str_eq(msg, "ok");
  239. return 1;
  240. }
  241. static int execute_cmp_ctx_log_cb_test(OSSL_CMP_CTX_TEST_FIXTURE *fixture)
  242. {
  243. int res = 1;
  244. OSSL_CMP_CTX *ctx = fixture->ctx;
  245. OSSL_TRACE(ALL, "this general trace message is not shown by default\n");
  246. OSSL_CMP_log_open();
  247. OSSL_CMP_log_open(); /* multiple calls should be harmless */
  248. if (!TEST_true(OSSL_CMP_CTX_set_log_cb(ctx, NULL))) {
  249. res = 0;
  250. } else {
  251. ossl_cmp_err(ctx, "this should be printed as CMP error message");
  252. ossl_cmp_warn(ctx, "this should be printed as CMP warning message");
  253. ossl_cmp_debug(ctx, "this should not be printed");
  254. TEST_true(OSSL_CMP_CTX_set_log_verbosity(ctx, OSSL_CMP_LOG_DEBUG));
  255. ossl_cmp_debug(ctx, "this should be printed as CMP debug message");
  256. TEST_true(OSSL_CMP_CTX_set_log_verbosity(ctx, OSSL_CMP_LOG_INFO));
  257. }
  258. if (!TEST_true(OSSL_CMP_CTX_set_log_cb(ctx, test_log_cb))) {
  259. res = 0;
  260. } else {
  261. test_log_line = OPENSSL_LINE + 1;
  262. ossl_cmp_log2(INFO, ctx, "%s%c", "o", 'k');
  263. if (!TEST_int_eq(test_log_cb_res, 1))
  264. res = 0;
  265. OSSL_CMP_CTX_set_log_verbosity(ctx, OSSL_CMP_LOG_ERR);
  266. test_log_cb_res = -1; /* callback should not be called at all */
  267. test_log_line = OPENSSL_LINE + 1;
  268. ossl_cmp_log2(INFO, ctx, "%s%c", "o", 'k');
  269. if (!TEST_int_eq(test_log_cb_res, -1))
  270. res = 0;
  271. }
  272. OSSL_CMP_log_close();
  273. OSSL_CMP_log_close(); /* multiple calls should be harmless */
  274. return res;
  275. }
  276. static int test_cmp_ctx_log_cb(void)
  277. {
  278. SETUP_TEST_FIXTURE(OSSL_CMP_CTX_TEST_FIXTURE, set_up);
  279. EXECUTE_TEST(execute_cmp_ctx_log_cb_test, tear_down);
  280. return result;
  281. }
  282. static BIO *test_http_cb(BIO *bio, void *arg, int use_ssl, int detail)
  283. {
  284. return NULL;
  285. }
  286. static OSSL_CMP_MSG *test_transfer_cb(OSSL_CMP_CTX *ctx,
  287. const OSSL_CMP_MSG *req)
  288. {
  289. return NULL;
  290. }
  291. static int test_certConf_cb(OSSL_CMP_CTX *ctx, X509 *cert, int fail_info,
  292. const char **txt)
  293. {
  294. return 0;
  295. }
  296. typedef OSSL_CMP_CTX CMP_CTX; /* prevents rewriting type name by below macro */
  297. #define OSSL_CMP_CTX 1 /* name prefix for exported setter functions */
  298. #define ossl_cmp_ctx 0 /* name prefix for internal setter functions */
  299. #define set 0
  300. #define set0 0
  301. #define set1 1
  302. #define get 0
  303. #define get0 0
  304. #define get1 1
  305. #define DEFINE_SET_GET_BASE_TEST(PREFIX, SETN, GETN, DUP, FIELD, TYPE, ERR, \
  306. DEFAULT, NEW, FREE) \
  307. static int \
  308. execute_CTX_##SETN##_##GETN##_##FIELD(OSSL_CMP_CTX_TEST_FIXTURE *fixture) \
  309. { \
  310. CMP_CTX *ctx = fixture->ctx; \
  311. int (*set_fn)(CMP_CTX *ctx, TYPE) = \
  312. (int (*)(CMP_CTX *ctx, TYPE))PREFIX##_##SETN##_##FIELD; \
  313. /* need type cast in above assignment as TYPE arg sometimes is const */ \
  314. TYPE (*get_fn)(const CMP_CTX *ctx) = OSSL_CMP_CTX_##GETN##_##FIELD; \
  315. TYPE val1_to_free = NEW; \
  316. TYPE val1 = val1_to_free; \
  317. TYPE val1_read = 0; /* 0 works for any type */ \
  318. TYPE val2_to_free = NEW; \
  319. TYPE val2 = val2_to_free; \
  320. TYPE val2_read = 0; \
  321. TYPE val3_read = 0; \
  322. int res = 1; \
  323. \
  324. if (!TEST_int_eq(ERR_peek_error(), 0)) \
  325. res = 0; \
  326. if (PREFIX == 1) { /* exported setter functions must test ctx == NULL */ \
  327. if ((*set_fn)(NULL, val1) || ERR_peek_error() == 0) { \
  328. TEST_error("setter did not return error on ctx == NULL"); \
  329. res = 0; \
  330. } \
  331. } \
  332. ERR_clear_error(); \
  333. \
  334. if ((*get_fn)(NULL) != ERR || ERR_peek_error() == 0) { \
  335. TEST_error("getter did not return error on ctx == NULL"); \
  336. res = 0; \
  337. } \
  338. ERR_clear_error(); \
  339. \
  340. val1_read = (*get_fn)(ctx); \
  341. if (!DEFAULT(val1_read)) { \
  342. TEST_error("did not get default value"); \
  343. res = 0; \
  344. } \
  345. if (!(*set_fn)(ctx, val1)) { \
  346. TEST_error("setting first value failed"); \
  347. res = 0; \
  348. } \
  349. if (SETN == 0) \
  350. val1_to_free = 0; /* 0 works for any type */ \
  351. \
  352. if (GETN == 1) \
  353. FREE(val1_read); \
  354. val1_read = (*get_fn)(ctx); \
  355. if (SETN == 0) { \
  356. if (val1_read != val1) { \
  357. TEST_error("set/get first value did not match"); \
  358. res = 0; \
  359. } \
  360. } else { \
  361. if (DUP && val1_read == val1) { \
  362. TEST_error("first set did not dup the value"); \
  363. res = 0; \
  364. } \
  365. if (DEFAULT(val1_read)) { \
  366. TEST_error("first set had no effect"); \
  367. res = 0; \
  368. } \
  369. } \
  370. \
  371. if (!(*set_fn)(ctx, val2)) { \
  372. TEST_error("setting second value failed"); \
  373. res = 0; \
  374. } \
  375. if (SETN == 0) \
  376. val2_to_free = 0; \
  377. \
  378. val2_read = (*get_fn)(ctx); \
  379. if (DEFAULT(val2_read)) { \
  380. TEST_error("second set reset the value"); \
  381. res = 0; \
  382. } \
  383. if (SETN == 0 && GETN == 0) { \
  384. if (val2_read != val2) { \
  385. TEST_error("set/get second value did not match"); \
  386. res = 0; \
  387. } \
  388. } else { \
  389. if (DUP && val2_read == val2) { \
  390. TEST_error("second set did not dup the value"); \
  391. res = 0; \
  392. } \
  393. if (val2 == val1) { \
  394. TEST_error("second value is same as first value"); \
  395. res = 0; \
  396. } \
  397. if (GETN == 1 && val2_read == val1_read) { \
  398. /* \
  399. * Note that if GETN == 0 then possibly val2_read == val1_read \
  400. * because set1 may allocate the new copy at the same location. \
  401. */ \
  402. TEST_error("second get returned same as first get"); \
  403. res = 0; \
  404. } \
  405. } \
  406. \
  407. val3_read = (*get_fn)(ctx); \
  408. if (DEFAULT(val3_read)) { \
  409. TEST_error("third set reset the value"); \
  410. res = 0; \
  411. } \
  412. if (GETN == 0) { \
  413. if (val3_read != val2_read) { \
  414. TEST_error("third get gave different value"); \
  415. res = 0; \
  416. } \
  417. } else { \
  418. if (DUP && val3_read == val2_read) { \
  419. TEST_error("third get did not create a new dup"); \
  420. res = 0; \
  421. } \
  422. } \
  423. /* this does not check that all remaining fields are untouched */ \
  424. \
  425. if (!TEST_int_eq(ERR_peek_error(), 0)) \
  426. res = 0; \
  427. \
  428. FREE(val1_to_free); \
  429. FREE(val2_to_free); \
  430. if (GETN == 1) { \
  431. FREE(val1_read); \
  432. FREE(val2_read); \
  433. FREE(val3_read); \
  434. } \
  435. return TEST_true(res); \
  436. } \
  437. \
  438. static int test_CTX_##SETN##_##GETN##_##FIELD(void) \
  439. { \
  440. SETUP_TEST_FIXTURE(OSSL_CMP_CTX_TEST_FIXTURE, set_up); \
  441. EXECUTE_TEST(execute_CTX_##SETN##_##GETN##_##FIELD, tear_down); \
  442. return result; \
  443. }
  444. static char *char_new(void)
  445. {
  446. return OPENSSL_strdup("test");
  447. }
  448. static void char_free(char *val)
  449. {
  450. OPENSSL_free(val);
  451. }
  452. #define EMPTY_SK_X509(x) ((x) == NULL || sk_X509_num(x) == 0)
  453. static X509_STORE *X509_STORE_new_1(void)
  454. {
  455. X509_STORE *store = X509_STORE_new();
  456. if (store != NULL)
  457. X509_VERIFY_PARAM_set_flags(X509_STORE_get0_param(store), 1);
  458. return store;
  459. }
  460. #define DEFAULT_STORE(x) \
  461. ((x) == NULL || X509_VERIFY_PARAM_get_flags(X509_STORE_get0_param(x)) == 0)
  462. #define IS_NEG(x) ((x) < 0)
  463. #define IS_0(x) ((x) == 0) /* for any type */
  464. #define DROP(x) (void)(x) /* dummy free() for non-pointer and function types */
  465. #define RET_IF_NULL_ARG(ctx, ret) \
  466. if (ctx == NULL) { \
  467. ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); \
  468. return ret; \
  469. }
  470. /* cannot use PREFIX instead of OSSL_CMP and CTX due to #define OSSL_CMP_CTX */
  471. #define DEFINE_SET_GET_TEST(OSSL_CMP, CTX, N, M, DUP, FIELD, TYPE) \
  472. DEFINE_SET_GET_BASE_TEST(OSSL_CMP##_##CTX, set##N, get##M, DUP, FIELD, \
  473. TYPE *, NULL, IS_0, TYPE##_new(), TYPE##_free)
  474. #define DEFINE_SET_GET_SK_TEST_DEFAULT(OSSL_CMP, CTX, N, M, FIELD, ELEM_TYPE, \
  475. DEFAULT, NEW, FREE) \
  476. DEFINE_SET_GET_BASE_TEST(OSSL_CMP##_##CTX, set##N, get##M, 1, FIELD, \
  477. STACK_OF(ELEM_TYPE)*, NULL, DEFAULT, NEW, FREE)
  478. #define DEFINE_SET_GET_SK_TEST(OSSL_CMP, CTX, N, M, FIELD, T) \
  479. DEFINE_SET_GET_SK_TEST_DEFAULT(OSSL_CMP, CTX, N, M, FIELD, T, \
  480. IS_0, sk_##T##_new_null(), sk_##T##_free)
  481. #define DEFINE_SET_GET_SK_X509_TEST(OSSL_CMP, CTX, N, M, FNAME) \
  482. DEFINE_SET_GET_SK_TEST_DEFAULT(OSSL_CMP, CTX, N, M, FNAME, X509, \
  483. EMPTY_SK_X509, \
  484. sk_X509_new_1(), sk_X509_pop_X509_free)
  485. #define DEFINE_SET_GET_TEST_DEFAULT(OSSL_CMP, CTX, N, M, DUP, FIELD, TYPE, \
  486. DEFAULT) \
  487. DEFINE_SET_GET_BASE_TEST(OSSL_CMP##_##CTX, set##N, get##M, DUP, FIELD, \
  488. TYPE *, NULL, DEFAULT, TYPE##_new(), TYPE##_free)
  489. #define DEFINE_SET_TEST_DEFAULT(OSSL_CMP, CTX, N, DUP, FIELD, TYPE, DEFAULT) \
  490. static TYPE *OSSL_CMP_CTX_get0_##FIELD(const CMP_CTX *ctx) \
  491. { \
  492. RET_IF_NULL_ARG(ctx, NULL); \
  493. return (TYPE *)ctx->FIELD; \
  494. } \
  495. DEFINE_SET_GET_TEST_DEFAULT(OSSL_CMP, CTX, N, 0, DUP, FIELD, TYPE, DEFAULT)
  496. #define DEFINE_SET_TEST(OSSL_CMP, CTX, N, DUP, FIELD, TYPE) \
  497. DEFINE_SET_TEST_DEFAULT(OSSL_CMP, CTX, N, DUP, FIELD, TYPE, IS_0)
  498. #define DEFINE_SET_SK_TEST(OSSL_CMP, CTX, N, FIELD, TYPE) \
  499. static STACK_OF(TYPE) *OSSL_CMP_CTX_get0_##FIELD(const CMP_CTX *ctx) \
  500. { \
  501. RET_IF_NULL_ARG(ctx, NULL); \
  502. return ctx->FIELD; \
  503. } \
  504. DEFINE_SET_GET_BASE_TEST(OSSL_CMP##_##CTX, set##N, get0, 1, FIELD, \
  505. STACK_OF(TYPE)*, NULL, IS_0, \
  506. sk_##TYPE##_new_null(), sk_##TYPE##_free)
  507. typedef OSSL_HTTP_bio_cb_t OSSL_CMP_http_cb_t;
  508. #define DEFINE_SET_CB_TEST(FIELD) \
  509. static OSSL_CMP_##FIELD##_t OSSL_CMP_CTX_get_##FIELD(const CMP_CTX *ctx) \
  510. { \
  511. RET_IF_NULL_ARG(ctx, NULL); \
  512. return ctx->FIELD; \
  513. } \
  514. DEFINE_SET_GET_BASE_TEST(OSSL_CMP_CTX, set, get, 0, FIELD, \
  515. OSSL_CMP_##FIELD##_t, NULL, IS_0, \
  516. test_##FIELD, DROP)
  517. #define DEFINE_SET_GET_P_VOID_TEST(FIELD) \
  518. DEFINE_SET_GET_BASE_TEST(OSSL_CMP_CTX, set, get, 0, FIELD, void *, \
  519. NULL, IS_0, ((void *)1), DROP)
  520. #define DEFINE_SET_GET_INT_TEST_DEFAULT(OSSL_CMP, CTX, FIELD, DEFAULT) \
  521. DEFINE_SET_GET_BASE_TEST(OSSL_CMP##_##CTX, set, get, 0, FIELD, int, -1, \
  522. DEFAULT, 1, DROP)
  523. #define DEFINE_SET_GET_INT_TEST(OSSL_CMP, CTX, FIELD) \
  524. DEFINE_SET_GET_INT_TEST_DEFAULT(OSSL_CMP, CTX, FIELD, IS_NEG)
  525. #define DEFINE_SET_INT_TEST(FIELD) \
  526. static int OSSL_CMP_CTX_get_##FIELD(const CMP_CTX *ctx) \
  527. { \
  528. RET_IF_NULL_ARG(ctx, -1); \
  529. return ctx->FIELD; \
  530. } \
  531. DEFINE_SET_GET_INT_TEST_DEFAULT(OSSL_CMP, CTX, FIELD, IS_0)
  532. #define DEFINE_SET_GET_ARG_FN(SETN, GETN, FIELD, ARG, T) \
  533. static int OSSL_CMP_CTX_##SETN##_##FIELD##_##ARG(CMP_CTX *ctx, T val) \
  534. { \
  535. return OSSL_CMP_CTX_##SETN##_##FIELD(ctx, ARG, val); \
  536. } \
  537. \
  538. static T OSSL_CMP_CTX_##GETN##_##FIELD##_##ARG(const CMP_CTX *ctx) \
  539. { \
  540. return OSSL_CMP_CTX_##GETN##_##FIELD(ctx, ARG); \
  541. }
  542. #define DEFINE_SET_GET1_STR_FN(SETN, FIELD) \
  543. static int OSSL_CMP_CTX_##SETN##_##FIELD##_str(CMP_CTX *ctx, char *val)\
  544. { \
  545. return OSSL_CMP_CTX_##SETN##_##FIELD(ctx, (unsigned char *)val, \
  546. strlen(val)); \
  547. } \
  548. \
  549. static char *OSSL_CMP_CTX_get1_##FIELD##_str(const CMP_CTX *ctx) \
  550. { \
  551. const ASN1_OCTET_STRING *bytes = NULL; \
  552. \
  553. RET_IF_NULL_ARG(ctx, NULL); \
  554. bytes = ctx->FIELD; \
  555. return bytes == NULL ? NULL : \
  556. OPENSSL_strndup((char *)bytes->data, bytes->length); \
  557. }
  558. #define push 0
  559. #define push0 0
  560. #define push1 1
  561. #define DEFINE_PUSH_BASE_TEST(PUSHN, DUP, FIELD, ELEM, TYPE, T, \
  562. DEFAULT, NEW, FREE) \
  563. static TYPE sk_top_##FIELD(const CMP_CTX *ctx) \
  564. { \
  565. return sk_##T##_value(ctx->FIELD, sk_##T##_num(ctx->FIELD) - 1); \
  566. } \
  567. \
  568. static int execute_CTX_##PUSHN##_##ELEM(OSSL_CMP_CTX_TEST_FIXTURE *fixture) \
  569. { \
  570. CMP_CTX *ctx = fixture->ctx; \
  571. int (*push_fn)(CMP_CTX *ctx, TYPE) = \
  572. (int (*)(CMP_CTX *ctx, TYPE))OSSL_CMP_CTX_##PUSHN##_##ELEM; \
  573. /* \
  574. * need type cast in above assignment because TYPE arg sometimes is const \
  575. */ \
  576. int n_elem = sk_##T##_num(ctx->FIELD); \
  577. STACK_OF(TYPE) field_read; \
  578. TYPE val1_to_free = NEW; \
  579. TYPE val1 = val1_to_free; \
  580. TYPE val1_read = 0; /* 0 works for any type */ \
  581. TYPE val2_to_free = NEW; \
  582. TYPE val2 = val2_to_free; \
  583. TYPE val2_read = 0; \
  584. int res = 1; \
  585. \
  586. if (!TEST_int_eq(ERR_peek_error(), 0)) \
  587. res = 0; \
  588. if ((*push_fn)(NULL, val1) || ERR_peek_error() == 0) { \
  589. TEST_error("pusher did not return error on ctx == NULL"); \
  590. res = 0; \
  591. } \
  592. ERR_clear_error(); \
  593. \
  594. if (n_elem < 0) /* can happen for NULL stack */ \
  595. n_elem = 0; \
  596. field_read = ctx->FIELD; \
  597. if (!DEFAULT(field_read)) { \
  598. TEST_error("did not get default value for stack field"); \
  599. res = 0; \
  600. } \
  601. if (!(*push_fn)(ctx, val1)) { \
  602. TEST_error("pushing first value failed"); \
  603. res = 0; \
  604. } \
  605. if (PUSHN == 0) \
  606. val1_to_free = 0; /* 0 works for any type */ \
  607. \
  608. if (sk_##T##_num(ctx->FIELD) != ++n_elem) { \
  609. TEST_error("pushing first value did not increment number"); \
  610. res = 0; \
  611. } \
  612. val1_read = sk_top_##FIELD(ctx); \
  613. if (PUSHN == 0) { \
  614. if (val1_read != val1) { \
  615. TEST_error("push/sk_top first value did not match"); \
  616. res = 0; \
  617. } \
  618. } else { \
  619. if (DUP && val1_read == val1) { \
  620. TEST_error("first push did not dup the value"); \
  621. res = 0; \
  622. } \
  623. } \
  624. \
  625. if (!(*push_fn)(ctx, val2)) { \
  626. TEST_error("pushing second value failed"); \
  627. res = 0; \
  628. } \
  629. if (PUSHN == 0) \
  630. val2_to_free = 0; \
  631. \
  632. if (sk_##T##_num(ctx->FIELD) != ++n_elem) { \
  633. TEST_error("pushing second value did not increment number"); \
  634. res = 0; \
  635. } \
  636. val2_read = sk_top_##FIELD(ctx); \
  637. if (PUSHN == 0) { \
  638. if (val2_read != val2) { \
  639. TEST_error("push/sk_top second value did not match"); \
  640. res = 0; \
  641. } \
  642. } else { \
  643. if (DUP && val2_read == val2) { \
  644. TEST_error("second push did not dup the value"); \
  645. res = 0; \
  646. } \
  647. if (val2 == val1) { \
  648. TEST_error("second value is same as first value"); \
  649. res = 0; \
  650. } \
  651. } \
  652. /* this does not check if all remaining fields and elems are untouched */ \
  653. \
  654. if (!TEST_int_eq(ERR_peek_error(), 0)) \
  655. res = 0; \
  656. \
  657. FREE(val1_to_free); \
  658. FREE(val2_to_free); \
  659. return TEST_true(res); \
  660. } \
  661. \
  662. static int test_CTX_##PUSHN##_##ELEM(void) \
  663. { \
  664. SETUP_TEST_FIXTURE(OSSL_CMP_CTX_TEST_FIXTURE, set_up); \
  665. EXECUTE_TEST(execute_CTX_##PUSHN##_##ELEM, tear_down); \
  666. return result; \
  667. } \
  668. #define DEFINE_PUSH_TEST(N, DUP, FIELD, ELEM, TYPE) \
  669. DEFINE_PUSH_BASE_TEST(push##N, DUP, FIELD, ELEM, TYPE *, TYPE, \
  670. IS_0, TYPE##_new(), TYPE##_free)
  671. void cleanup_tests(void)
  672. {
  673. return;
  674. }
  675. DEFINE_SET_GET_ARG_FN(set, get, option, 35, int) /* OPT_IGNORE_KEYUSAGE */
  676. DEFINE_SET_GET_BASE_TEST(OSSL_CMP_CTX, set, get, 0, option_35, int, -1, IS_0, \
  677. 1 /* true */, DROP)
  678. DEFINE_SET_CB_TEST(log_cb)
  679. DEFINE_SET_TEST_DEFAULT(OSSL_CMP, CTX, 1, 1, serverPath, char, IS_0)
  680. DEFINE_SET_TEST(OSSL_CMP, CTX, 1, 1, server, char)
  681. DEFINE_SET_INT_TEST(serverPort)
  682. DEFINE_SET_TEST(OSSL_CMP, CTX, 1, 1, proxy, char)
  683. DEFINE_SET_TEST(OSSL_CMP, CTX, 1, 1, no_proxy, char)
  684. DEFINE_SET_CB_TEST(http_cb)
  685. DEFINE_SET_GET_P_VOID_TEST(http_cb_arg)
  686. DEFINE_SET_CB_TEST(transfer_cb)
  687. DEFINE_SET_GET_P_VOID_TEST(transfer_cb_arg)
  688. DEFINE_SET_TEST(OSSL_CMP, CTX, 1, 0, srvCert, X509)
  689. DEFINE_SET_GET_TEST(ossl_cmp, ctx, 1, 0, 0, validatedSrvCert, X509)
  690. DEFINE_SET_TEST(OSSL_CMP, CTX, 1, 1, expected_sender, X509_NAME)
  691. DEFINE_SET_GET_BASE_TEST(OSSL_CMP_CTX, set0, get0, 0, trusted,
  692. X509_STORE *, NULL,
  693. DEFAULT_STORE, X509_STORE_new_1(), X509_STORE_free)
  694. DEFINE_SET_GET_SK_X509_TEST(OSSL_CMP, CTX, 1, 0, untrusted)
  695. DEFINE_SET_TEST(OSSL_CMP, CTX, 1, 0, cert, X509)
  696. DEFINE_SET_TEST(OSSL_CMP, CTX, 1, 0, pkey, EVP_PKEY)
  697. DEFINE_SET_TEST(OSSL_CMP, CTX, 1, 1, recipient, X509_NAME)
  698. DEFINE_PUSH_TEST(0, 0, geninfo_ITAVs, geninfo_ITAV, OSSL_CMP_ITAV)
  699. DEFINE_SET_SK_TEST(OSSL_CMP, CTX, 1, extraCertsOut, X509)
  700. DEFINE_SET_GET_ARG_FN(set0, get0, newPkey, 1, EVP_PKEY *) /* priv == 1 */
  701. DEFINE_SET_GET_TEST(OSSL_CMP, CTX, 0, 0, 0, newPkey_1, EVP_PKEY)
  702. DEFINE_SET_GET_ARG_FN(set0, get0, newPkey, 0, EVP_PKEY *) /* priv == 0 */
  703. DEFINE_SET_GET_TEST(OSSL_CMP, CTX, 0, 0, 0, newPkey_0, EVP_PKEY)
  704. DEFINE_SET_GET1_STR_FN(set1, referenceValue)
  705. DEFINE_SET_GET_TEST_DEFAULT(OSSL_CMP, CTX, 1, 1, 1, referenceValue_str, char,
  706. IS_0)
  707. DEFINE_SET_GET1_STR_FN(set1, secretValue)
  708. DEFINE_SET_GET_TEST_DEFAULT(OSSL_CMP, CTX, 1, 1, 1, secretValue_str, char, IS_0)
  709. DEFINE_SET_TEST(OSSL_CMP, CTX, 1, 1, issuer, X509_NAME)
  710. DEFINE_SET_TEST(OSSL_CMP, CTX, 1, 1, subjectName, X509_NAME)
  711. #ifdef ISSUE_9504_RESOLVED
  712. DEFINE_PUSH_TEST(1, 1, subjectAltNames, subjectAltName, GENERAL_NAME)
  713. #endif
  714. DEFINE_SET_SK_TEST(OSSL_CMP, CTX, 0, reqExtensions, X509_EXTENSION)
  715. DEFINE_PUSH_TEST(0, 0, policies, policy, POLICYINFO)
  716. DEFINE_SET_TEST(OSSL_CMP, CTX, 1, 0, oldCert, X509)
  717. #ifdef ISSUE_9504_RESOLVED
  718. DEFINE_SET_TEST(OSSL_CMP, CTX, 1, 1, p10CSR, X509_REQ)
  719. #endif
  720. DEFINE_PUSH_TEST(0, 0, genm_ITAVs, genm_ITAV, OSSL_CMP_ITAV)
  721. DEFINE_SET_CB_TEST(certConf_cb)
  722. DEFINE_SET_GET_P_VOID_TEST(certConf_cb_arg)
  723. DEFINE_SET_GET_INT_TEST(ossl_cmp, ctx, status)
  724. DEFINE_SET_GET_SK_TEST(ossl_cmp, ctx, 0, 0, statusString, ASN1_UTF8STRING)
  725. DEFINE_SET_GET_INT_TEST(ossl_cmp, ctx, failInfoCode)
  726. DEFINE_SET_GET_TEST(ossl_cmp, ctx, 0, 0, 0, newCert, X509)
  727. DEFINE_SET_GET_SK_X509_TEST(ossl_cmp, ctx, 1, 1, newChain)
  728. DEFINE_SET_GET_SK_X509_TEST(ossl_cmp, ctx, 1, 1, caPubs)
  729. DEFINE_SET_GET_SK_X509_TEST(ossl_cmp, ctx, 1, 1, extraCertsIn)
  730. DEFINE_SET_TEST_DEFAULT(OSSL_CMP, CTX, 1, 1, transactionID, ASN1_OCTET_STRING,
  731. IS_0)
  732. DEFINE_SET_TEST(OSSL_CMP, CTX, 1, 1, senderNonce, ASN1_OCTET_STRING)
  733. DEFINE_SET_TEST(ossl_cmp, ctx, 1, 1, recipNonce, ASN1_OCTET_STRING)
  734. int setup_tests(void)
  735. {
  736. if (!test_skip_common_options()) {
  737. TEST_error("Error parsing test options\n");
  738. return 0;
  739. }
  740. /* also tests OSSL_CMP_CTX_new() and OSSL_CMP_CTX_free(): */
  741. ADD_TEST(test_CTX_libctx_propq);
  742. ADD_TEST(test_CTX_reinit);
  743. /* various CMP options: */
  744. ADD_TEST(test_CTX_set_get_option_35);
  745. /* CMP-specific callback for logging and outputting the error queue: */
  746. ADD_TEST(test_CTX_set_get_log_cb);
  747. /*
  748. * also tests OSSL_CMP_log_open(), OSSL_CMP_CTX_set_log_verbosity(),
  749. * ossl_cmp_err(), ossl_cmp_warn(), * ossl_cmp_debug(),
  750. * ossl_cmp_log2(), ossl_cmp_log_parse_metadata(), and OSSL_CMP_log_close()
  751. * with OSSL_CMP_severity OSSL_CMP_LOG_ERR/WARNING/DEBUG/INFO:
  752. */
  753. ADD_TEST(test_cmp_ctx_log_cb);
  754. #if !defined(OPENSSL_NO_ERR) && !defined(OPENSSL_NO_AUTOERRINIT)
  755. /*
  756. * also tests OSSL_CMP_CTX_set_log_cb(), OSSL_CMP_print_errors_cb(),
  757. * and the macros ossl_cmp_add_error_data and ossl_cmp_add_error_line:
  758. */
  759. ADD_TEST(test_CTX_print_errors);
  760. #endif
  761. /* message transfer: */
  762. ADD_TEST(test_CTX_set1_get0_serverPath);
  763. ADD_TEST(test_CTX_set1_get0_server);
  764. ADD_TEST(test_CTX_set_get_serverPort);
  765. ADD_TEST(test_CTX_set1_get0_proxy);
  766. ADD_TEST(test_CTX_set1_get0_no_proxy);
  767. ADD_TEST(test_CTX_set_get_http_cb);
  768. ADD_TEST(test_CTX_set_get_http_cb_arg);
  769. ADD_TEST(test_CTX_set_get_transfer_cb);
  770. ADD_TEST(test_CTX_set_get_transfer_cb_arg);
  771. /* server authentication: */
  772. ADD_TEST(test_CTX_set1_get0_srvCert);
  773. ADD_TEST(test_CTX_set1_get0_validatedSrvCert);
  774. ADD_TEST(test_CTX_set1_get0_expected_sender);
  775. ADD_TEST(test_CTX_set0_get0_trusted);
  776. ADD_TEST(test_CTX_set1_get0_untrusted);
  777. /* client authentication: */
  778. ADD_TEST(test_CTX_set1_get0_cert);
  779. ADD_TEST(test_CTX_set1_get0_pkey);
  780. /* the following two also test ossl_cmp_asn1_octet_string_set1_bytes(): */
  781. ADD_TEST(test_CTX_set1_get1_referenceValue_str);
  782. ADD_TEST(test_CTX_set1_get1_secretValue_str);
  783. /* CMP message header and extra certificates: */
  784. ADD_TEST(test_CTX_set1_get0_recipient);
  785. ADD_TEST(test_CTX_push0_geninfo_ITAV);
  786. ADD_TEST(test_CTX_set1_get0_extraCertsOut);
  787. /* certificate template: */
  788. ADD_TEST(test_CTX_set0_get0_newPkey_1);
  789. ADD_TEST(test_CTX_set0_get0_newPkey_0);
  790. ADD_TEST(test_CTX_set1_get0_issuer);
  791. ADD_TEST(test_CTX_set1_get0_subjectName);
  792. #ifdef ISSUE_9504_RESOLVED
  793. /*
  794. * test currently fails, see https://github.com/openssl/openssl/issues/9504
  795. */
  796. ADD_TEST(test_CTX_push1_subjectAltName);
  797. #endif
  798. ADD_TEST(test_CTX_set0_get0_reqExtensions);
  799. ADD_TEST(test_CTX_reqExtensions_have_SAN);
  800. ADD_TEST(test_CTX_push0_policy);
  801. ADD_TEST(test_CTX_set1_get0_oldCert);
  802. #ifdef ISSUE_9504_RESOLVED
  803. /*
  804. * test currently fails, see https://github.com/openssl/openssl/issues/9504
  805. */
  806. ADD_TEST(test_CTX_set1_get0_p10CSR);
  807. #endif
  808. /* misc body contents: */
  809. ADD_TEST(test_CTX_push0_genm_ITAV);
  810. /* certificate confirmation: */
  811. ADD_TEST(test_CTX_set_get_certConf_cb);
  812. ADD_TEST(test_CTX_set_get_certConf_cb_arg);
  813. /* result fetching: */
  814. ADD_TEST(test_CTX_set_get_status);
  815. ADD_TEST(test_CTX_set0_get0_statusString);
  816. ADD_TEST(test_CTX_set_get_failInfoCode);
  817. ADD_TEST(test_CTX_set0_get0_newCert);
  818. ADD_TEST(test_CTX_set1_get1_newChain);
  819. ADD_TEST(test_CTX_set1_get1_caPubs);
  820. ADD_TEST(test_CTX_set1_get1_extraCertsIn);
  821. /* exported for testing and debugging purposes: */
  822. /* the following three also test ossl_cmp_asn1_octet_string_set1(): */
  823. ADD_TEST(test_CTX_set1_get0_transactionID);
  824. ADD_TEST(test_CTX_set1_get0_senderNonce);
  825. ADD_TEST(test_CTX_set1_get0_recipNonce);
  826. return 1;
  827. }