keymgmt_lib.c 19 KB

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