keymgmt_lib.c 17 KB

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