keymgmt_lib.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583
  1. /*
  2. * Copyright 2019-2022 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #include <openssl/core_names.h>
  10. #include "internal/cryptlib.h"
  11. #include "internal/nelem.h"
  12. #include "crypto/evp.h"
  13. #include "internal/core.h"
  14. #include "internal/provider.h"
  15. #include "evp_local.h"
  16. /*
  17. * match_type() checks if two EVP_KEYMGMT are matching key types. This
  18. * function assumes that the caller has made all the necessary NULL checks.
  19. */
  20. static int match_type(const EVP_KEYMGMT *keymgmt1, const EVP_KEYMGMT *keymgmt2)
  21. {
  22. const char *name2 = EVP_KEYMGMT_get0_name(keymgmt2);
  23. return EVP_KEYMGMT_is_a(keymgmt1, name2);
  24. }
  25. int evp_keymgmt_util_try_import(const OSSL_PARAM params[], void *arg)
  26. {
  27. struct evp_keymgmt_util_try_import_data_st *data = arg;
  28. int delete_on_error = 0;
  29. /* Just in time creation of keydata */
  30. if (data->keydata == NULL) {
  31. if ((data->keydata = evp_keymgmt_newdata(data->keymgmt)) == NULL) {
  32. ERR_raise(ERR_LIB_EVP, ERR_R_MALLOC_FAILURE);
  33. return 0;
  34. }
  35. delete_on_error = 1;
  36. }
  37. /*
  38. * It's fine if there was no data to transfer, we just end up with an
  39. * empty destination key.
  40. */
  41. if (params[0].key == NULL)
  42. return 1;
  43. if (evp_keymgmt_import(data->keymgmt, data->keydata, data->selection,
  44. params))
  45. return 1;
  46. if (delete_on_error) {
  47. evp_keymgmt_freedata(data->keymgmt, data->keydata);
  48. data->keydata = NULL;
  49. }
  50. return 0;
  51. }
  52. int evp_keymgmt_util_assign_pkey(EVP_PKEY *pkey, EVP_KEYMGMT *keymgmt,
  53. void *keydata)
  54. {
  55. if (pkey == NULL || keymgmt == NULL || keydata == NULL
  56. || !EVP_PKEY_set_type_by_keymgmt(pkey, keymgmt)) {
  57. ERR_raise(ERR_LIB_EVP, ERR_R_INTERNAL_ERROR);
  58. return 0;
  59. }
  60. pkey->keydata = keydata;
  61. evp_keymgmt_util_cache_keyinfo(pkey);
  62. return 1;
  63. }
  64. EVP_PKEY *evp_keymgmt_util_make_pkey(EVP_KEYMGMT *keymgmt, void *keydata)
  65. {
  66. EVP_PKEY *pkey = NULL;
  67. if (keymgmt == NULL
  68. || keydata == NULL
  69. || (pkey = EVP_PKEY_new()) == NULL
  70. || !evp_keymgmt_util_assign_pkey(pkey, keymgmt, keydata)) {
  71. EVP_PKEY_free(pkey);
  72. return NULL;
  73. }
  74. return pkey;
  75. }
  76. int evp_keymgmt_util_export(const EVP_PKEY *pk, int selection,
  77. OSSL_CALLBACK *export_cb, void *export_cbarg)
  78. {
  79. if (pk == NULL || export_cb == NULL)
  80. return 0;
  81. return evp_keymgmt_export(pk->keymgmt, pk->keydata, selection,
  82. export_cb, export_cbarg);
  83. }
  84. void *evp_keymgmt_util_export_to_provider(EVP_PKEY *pk, EVP_KEYMGMT *keymgmt)
  85. {
  86. struct evp_keymgmt_util_try_import_data_st import_data;
  87. OP_CACHE_ELEM *op;
  88. /* Export to where? */
  89. if (keymgmt == NULL)
  90. return NULL;
  91. /* If we have an unassigned key, give up */
  92. if (pk->keydata == NULL)
  93. return NULL;
  94. /*
  95. * If |keymgmt| matches the "origin" |keymgmt|, there is no more to do.
  96. * The "origin" is determined by the |keymgmt| pointers being identical
  97. * or when the provider and the name ID match. The latter case handles the
  98. * situation where the fetch cache is flushed and a "new" key manager is
  99. * created.
  100. */
  101. if (pk->keymgmt == keymgmt
  102. || (pk->keymgmt->name_id == keymgmt->name_id
  103. && pk->keymgmt->prov == keymgmt->prov))
  104. return pk->keydata;
  105. if (!CRYPTO_THREAD_read_lock(pk->lock))
  106. return NULL;
  107. /*
  108. * If the provider native "origin" hasn't changed since last time, we
  109. * try to find our keymgmt in the operation cache. If it has changed
  110. * and our keymgmt isn't found, we will clear the cache further down.
  111. */
  112. if (pk->dirty_cnt == pk->dirty_cnt_copy) {
  113. /* If this key is already exported to |keymgmt|, no more to do */
  114. op = evp_keymgmt_util_find_operation_cache(pk, keymgmt);
  115. if (op != NULL && op->keymgmt != NULL) {
  116. void *ret = op->keydata;
  117. CRYPTO_THREAD_unlock(pk->lock);
  118. return ret;
  119. }
  120. }
  121. CRYPTO_THREAD_unlock(pk->lock);
  122. /* If the "origin" |keymgmt| doesn't support exporting, give up */
  123. if (pk->keymgmt->export == NULL)
  124. return NULL;
  125. /*
  126. * Make sure that the type of the keymgmt to export to matches the type
  127. * of the "origin"
  128. */
  129. if (!ossl_assert(match_type(pk->keymgmt, keymgmt)))
  130. return NULL;
  131. /*
  132. * We look at the already cached provider keys, and import from the
  133. * first that supports it (i.e. use its export function), and export
  134. * the imported data to the new provider.
  135. */
  136. /* Setup for the export callback */
  137. import_data.keydata = NULL; /* evp_keymgmt_util_try_import will create it */
  138. import_data.keymgmt = keymgmt;
  139. import_data.selection = OSSL_KEYMGMT_SELECT_ALL;
  140. /*
  141. * The export function calls the callback (evp_keymgmt_util_try_import),
  142. * which does the import for us. If successful, we're done.
  143. */
  144. if (!evp_keymgmt_util_export(pk, OSSL_KEYMGMT_SELECT_ALL,
  145. &evp_keymgmt_util_try_import, &import_data))
  146. /* If there was an error, bail out */
  147. return NULL;
  148. if (!CRYPTO_THREAD_write_lock(pk->lock)) {
  149. evp_keymgmt_freedata(keymgmt, import_data.keydata);
  150. return NULL;
  151. }
  152. /* Check to make sure some other thread didn't get there first */
  153. op = evp_keymgmt_util_find_operation_cache(pk, keymgmt);
  154. if (op != NULL && op->keydata != NULL) {
  155. void *ret = op->keydata;
  156. CRYPTO_THREAD_unlock(pk->lock);
  157. /*
  158. * Another thread seemms to have already exported this so we abandon
  159. * all the work we just did.
  160. */
  161. evp_keymgmt_freedata(keymgmt, import_data.keydata);
  162. return ret;
  163. }
  164. /*
  165. * If the dirty counter changed since last time, then clear the
  166. * operation cache. In that case, we know that |i| is zero.
  167. */
  168. if (pk->dirty_cnt != pk->dirty_cnt_copy)
  169. evp_keymgmt_util_clear_operation_cache(pk, 0);
  170. /* Add the new export to the operation cache */
  171. if (!evp_keymgmt_util_cache_keydata(pk, keymgmt, import_data.keydata)) {
  172. CRYPTO_THREAD_unlock(pk->lock);
  173. evp_keymgmt_freedata(keymgmt, import_data.keydata);
  174. return NULL;
  175. }
  176. /* Synchronize the dirty count */
  177. pk->dirty_cnt_copy = pk->dirty_cnt;
  178. CRYPTO_THREAD_unlock(pk->lock);
  179. return import_data.keydata;
  180. }
  181. static void op_cache_free(OP_CACHE_ELEM *e)
  182. {
  183. evp_keymgmt_freedata(e->keymgmt, e->keydata);
  184. EVP_KEYMGMT_free(e->keymgmt);
  185. OPENSSL_free(e);
  186. }
  187. int evp_keymgmt_util_clear_operation_cache(EVP_PKEY *pk, int locking)
  188. {
  189. if (pk != NULL) {
  190. if (locking && pk->lock != NULL && !CRYPTO_THREAD_write_lock(pk->lock))
  191. return 0;
  192. sk_OP_CACHE_ELEM_pop_free(pk->operation_cache, op_cache_free);
  193. pk->operation_cache = NULL;
  194. if (locking && pk->lock != NULL)
  195. CRYPTO_THREAD_unlock(pk->lock);
  196. }
  197. return 1;
  198. }
  199. OP_CACHE_ELEM *evp_keymgmt_util_find_operation_cache(EVP_PKEY *pk,
  200. EVP_KEYMGMT *keymgmt)
  201. {
  202. int i, end = sk_OP_CACHE_ELEM_num(pk->operation_cache);
  203. OP_CACHE_ELEM *p;
  204. /*
  205. * A comparison and sk_P_CACHE_ELEM_find() are avoided to not cause
  206. * problems when we've only a read lock.
  207. */
  208. for (i = 0; i < end; i++) {
  209. p = sk_OP_CACHE_ELEM_value(pk->operation_cache, i);
  210. if (keymgmt == p->keymgmt)
  211. return p;
  212. }
  213. return NULL;
  214. }
  215. int evp_keymgmt_util_cache_keydata(EVP_PKEY *pk,
  216. EVP_KEYMGMT *keymgmt, void *keydata)
  217. {
  218. OP_CACHE_ELEM *p = NULL;
  219. if (keydata != NULL) {
  220. if (pk->operation_cache == NULL) {
  221. pk->operation_cache = sk_OP_CACHE_ELEM_new_null();
  222. if (pk->operation_cache == NULL)
  223. return 0;
  224. }
  225. p = OPENSSL_malloc(sizeof(*p));
  226. if (p == NULL)
  227. return 0;
  228. p->keydata = keydata;
  229. p->keymgmt = keymgmt;
  230. if (!EVP_KEYMGMT_up_ref(keymgmt)) {
  231. OPENSSL_free(p);
  232. return 0;
  233. }
  234. if (!sk_OP_CACHE_ELEM_push(pk->operation_cache, p)) {
  235. EVP_KEYMGMT_free(keymgmt);
  236. OPENSSL_free(p);
  237. return 0;
  238. }
  239. }
  240. return 1;
  241. }
  242. void evp_keymgmt_util_cache_keyinfo(EVP_PKEY *pk)
  243. {
  244. /*
  245. * Cache information about the provider "origin" key.
  246. *
  247. * This services functions like EVP_PKEY_get_size, EVP_PKEY_get_bits, etc
  248. */
  249. if (pk->keydata != NULL) {
  250. int bits = 0;
  251. int security_bits = 0;
  252. int size = 0;
  253. OSSL_PARAM params[4];
  254. params[0] = OSSL_PARAM_construct_int(OSSL_PKEY_PARAM_BITS, &bits);
  255. params[1] = OSSL_PARAM_construct_int(OSSL_PKEY_PARAM_SECURITY_BITS,
  256. &security_bits);
  257. params[2] = OSSL_PARAM_construct_int(OSSL_PKEY_PARAM_MAX_SIZE, &size);
  258. params[3] = OSSL_PARAM_construct_end();
  259. if (evp_keymgmt_get_params(pk->keymgmt, pk->keydata, params)) {
  260. pk->cache.size = size;
  261. pk->cache.bits = bits;
  262. pk->cache.security_bits = security_bits;
  263. }
  264. }
  265. }
  266. void *evp_keymgmt_util_fromdata(EVP_PKEY *target, EVP_KEYMGMT *keymgmt,
  267. int selection, const OSSL_PARAM params[])
  268. {
  269. void *keydata = NULL;
  270. if ((keydata = evp_keymgmt_newdata(keymgmt)) == NULL
  271. || !evp_keymgmt_import(keymgmt, keydata, selection, params)
  272. || !evp_keymgmt_util_assign_pkey(target, keymgmt, keydata)) {
  273. evp_keymgmt_freedata(keymgmt, keydata);
  274. keydata = NULL;
  275. }
  276. return keydata;
  277. }
  278. int evp_keymgmt_util_has(EVP_PKEY *pk, int selection)
  279. {
  280. /* Check if key is even assigned */
  281. if (pk->keymgmt == NULL)
  282. return 0;
  283. return evp_keymgmt_has(pk->keymgmt, pk->keydata, selection);
  284. }
  285. /*
  286. * evp_keymgmt_util_match() doesn't just look at the provider side "origin",
  287. * but also in the operation cache to see if there's any common keymgmt that
  288. * supplies OP_keymgmt_match.
  289. *
  290. * evp_keymgmt_util_match() adheres to the return values that EVP_PKEY_eq()
  291. * and EVP_PKEY_parameters_eq() return, i.e.:
  292. *
  293. * 1 same key
  294. * 0 not same key
  295. * -1 not same key type
  296. * -2 unsupported operation
  297. */
  298. int evp_keymgmt_util_match(EVP_PKEY *pk1, EVP_PKEY *pk2, int selection)
  299. {
  300. EVP_KEYMGMT *keymgmt1 = NULL, *keymgmt2 = NULL;
  301. void *keydata1 = NULL, *keydata2 = NULL;
  302. if (pk1 == NULL || pk2 == NULL) {
  303. if (pk1 == NULL && pk2 == NULL)
  304. return 1;
  305. return 0;
  306. }
  307. keymgmt1 = pk1->keymgmt;
  308. keydata1 = pk1->keydata;
  309. keymgmt2 = pk2->keymgmt;
  310. keydata2 = pk2->keydata;
  311. if (keymgmt1 != keymgmt2) {
  312. /*
  313. * The condition for a successful cross export is that the
  314. * keydata to be exported is NULL (typed, but otherwise empty
  315. * EVP_PKEY), or that it was possible to export it with
  316. * evp_keymgmt_util_export_to_provider().
  317. *
  318. * We use |ok| to determine if it's ok to cross export one way,
  319. * but also to determine if we should attempt a cross export
  320. * the other way. There's no point doing it both ways.
  321. */
  322. int ok = 0;
  323. /* Complex case, where the keymgmt differ */
  324. if (keymgmt1 != NULL
  325. && keymgmt2 != NULL
  326. && !match_type(keymgmt1, keymgmt2)) {
  327. ERR_raise(ERR_LIB_EVP, EVP_R_DIFFERENT_KEY_TYPES);
  328. return -1; /* Not the same type */
  329. }
  330. /*
  331. * The key types are determined to match, so we try cross export,
  332. * but only to keymgmt's that supply a matching function.
  333. */
  334. if (keymgmt2 != NULL
  335. && keymgmt2->match != NULL) {
  336. void *tmp_keydata = NULL;
  337. ok = 1;
  338. if (keydata1 != NULL) {
  339. tmp_keydata =
  340. evp_keymgmt_util_export_to_provider(pk1, keymgmt2);
  341. ok = (tmp_keydata != NULL);
  342. }
  343. if (ok) {
  344. keymgmt1 = keymgmt2;
  345. keydata1 = tmp_keydata;
  346. }
  347. }
  348. /*
  349. * If we've successfully cross exported one way, there's no point
  350. * doing it the other way, hence the |!ok| check.
  351. */
  352. if (!ok
  353. && keymgmt1 != NULL
  354. && keymgmt1->match != NULL) {
  355. void *tmp_keydata = NULL;
  356. ok = 1;
  357. if (keydata2 != NULL) {
  358. tmp_keydata =
  359. evp_keymgmt_util_export_to_provider(pk2, keymgmt1);
  360. ok = (tmp_keydata != NULL);
  361. }
  362. if (ok) {
  363. keymgmt2 = keymgmt1;
  364. keydata2 = tmp_keydata;
  365. }
  366. }
  367. }
  368. /* If we still don't have matching keymgmt implementations, we give up */
  369. if (keymgmt1 != keymgmt2)
  370. return -2;
  371. /* If both keydata are NULL, then they're the same key */
  372. if (keydata1 == NULL && keydata2 == NULL)
  373. return 1;
  374. /* If only one of the keydata is NULL, then they're different keys */
  375. if (keydata1 == NULL || keydata2 == NULL)
  376. return 0;
  377. /* If both keydata are non-NULL, we let the backend decide */
  378. return evp_keymgmt_match(keymgmt1, keydata1, keydata2, selection);
  379. }
  380. int evp_keymgmt_util_copy(EVP_PKEY *to, EVP_PKEY *from, int selection)
  381. {
  382. /* Save copies of pointers we want to play with without affecting |to| */
  383. EVP_KEYMGMT *to_keymgmt = to->keymgmt;
  384. void *to_keydata = to->keydata, *alloc_keydata = NULL;
  385. /* An unassigned key can't be copied */
  386. if (from == NULL || from->keydata == NULL)
  387. return 0;
  388. /*
  389. * If |to| is unassigned, ensure it gets the same KEYMGMT as |from|,
  390. * Note that the final setting of KEYMGMT is done further down, with
  391. * EVP_PKEY_set_type_by_keymgmt(); we don't want to do that prematurely.
  392. */
  393. if (to_keymgmt == NULL)
  394. to_keymgmt = from->keymgmt;
  395. if (to_keymgmt == from->keymgmt && to_keymgmt->dup != NULL
  396. && to_keydata == NULL) {
  397. to_keydata = alloc_keydata = evp_keymgmt_dup(to_keymgmt,
  398. from->keydata,
  399. selection);
  400. if (to_keydata == NULL)
  401. return 0;
  402. } else if (match_type(to_keymgmt, from->keymgmt)) {
  403. struct evp_keymgmt_util_try_import_data_st import_data;
  404. import_data.keymgmt = to_keymgmt;
  405. import_data.keydata = to_keydata;
  406. import_data.selection = selection;
  407. if (!evp_keymgmt_util_export(from, selection,
  408. &evp_keymgmt_util_try_import,
  409. &import_data))
  410. return 0;
  411. /*
  412. * In case to_keydata was previously unallocated,
  413. * evp_keymgmt_util_try_import() may have created it for us.
  414. */
  415. if (to_keydata == NULL)
  416. to_keydata = alloc_keydata = import_data.keydata;
  417. } else {
  418. ERR_raise(ERR_LIB_EVP, EVP_R_DIFFERENT_KEY_TYPES);
  419. return 0;
  420. }
  421. /*
  422. * We only need to set the |to| type when its |keymgmt| isn't set.
  423. * We can then just set its |keydata| to what we have, which might
  424. * be exactly what it had when entering this function.
  425. * This is a bit different from using evp_keymgmt_util_assign_pkey(),
  426. * which isn't as careful with |to|'s original |keymgmt|, since it's
  427. * meant to forcibly reassign an EVP_PKEY no matter what, which is
  428. * why we don't use that one here.
  429. */
  430. if (to->keymgmt == NULL
  431. && !EVP_PKEY_set_type_by_keymgmt(to, to_keymgmt)) {
  432. evp_keymgmt_freedata(to_keymgmt, alloc_keydata);
  433. return 0;
  434. }
  435. to->keydata = to_keydata;
  436. evp_keymgmt_util_cache_keyinfo(to);
  437. return 1;
  438. }
  439. void *evp_keymgmt_util_gen(EVP_PKEY *target, EVP_KEYMGMT *keymgmt,
  440. void *genctx, OSSL_CALLBACK *cb, void *cbarg)
  441. {
  442. void *keydata = NULL;
  443. if ((keydata = evp_keymgmt_gen(keymgmt, genctx, cb, cbarg)) == NULL
  444. || !evp_keymgmt_util_assign_pkey(target, keymgmt, keydata)) {
  445. evp_keymgmt_freedata(keymgmt, keydata);
  446. keydata = NULL;
  447. }
  448. return keydata;
  449. }
  450. /*
  451. * Returns the same numbers as EVP_PKEY_get_default_digest_name()
  452. * When the string from the EVP_KEYMGMT implementation is "", we use
  453. * SN_undef, since that corresponds to what EVP_PKEY_get_default_nid()
  454. * returns for no digest.
  455. */
  456. int evp_keymgmt_util_get_deflt_digest_name(EVP_KEYMGMT *keymgmt,
  457. void *keydata,
  458. char *mdname, size_t mdname_sz)
  459. {
  460. OSSL_PARAM params[3];
  461. char mddefault[100] = "";
  462. char mdmandatory[100] = "";
  463. char *result = NULL;
  464. int rv = -2;
  465. params[0] =
  466. OSSL_PARAM_construct_utf8_string(OSSL_PKEY_PARAM_DEFAULT_DIGEST,
  467. mddefault, sizeof(mddefault));
  468. params[1] =
  469. OSSL_PARAM_construct_utf8_string(OSSL_PKEY_PARAM_MANDATORY_DIGEST,
  470. mdmandatory,
  471. sizeof(mdmandatory));
  472. params[2] = OSSL_PARAM_construct_end();
  473. if (!evp_keymgmt_get_params(keymgmt, keydata, params))
  474. return 0;
  475. if (OSSL_PARAM_modified(params + 1)) {
  476. if (params[1].return_size <= 1) /* Only a NUL byte */
  477. result = SN_undef;
  478. else
  479. result = mdmandatory;
  480. rv = 2;
  481. } else if (OSSL_PARAM_modified(params)) {
  482. if (params[0].return_size <= 1) /* Only a NUL byte */
  483. result = SN_undef;
  484. else
  485. result = mddefault;
  486. rv = 1;
  487. }
  488. if (rv > 0)
  489. OPENSSL_strlcpy(mdname, result, mdname_sz);
  490. return rv;
  491. }
  492. /*
  493. * If |keymgmt| has the method function |query_operation_name|, use it to get
  494. * the name of a supported operation identity. Otherwise, return the keytype,
  495. * assuming that it works as a default operation name.
  496. */
  497. const char *evp_keymgmt_util_query_operation_name(EVP_KEYMGMT *keymgmt,
  498. int op_id)
  499. {
  500. const char *name = NULL;
  501. if (keymgmt != NULL) {
  502. if (keymgmt->query_operation_name != NULL)
  503. name = keymgmt->query_operation_name(op_id);
  504. if (name == NULL)
  505. name = EVP_KEYMGMT_get0_name(keymgmt);
  506. }
  507. return name;
  508. }