evp_local.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  1. /*
  2. * Copyright 2000-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_dispatch.h>
  10. #include "internal/refcount.h"
  11. #define EVP_CTRL_RET_UNSUPPORTED -1
  12. struct evp_md_ctx_st {
  13. const EVP_MD *reqdigest; /* The original requested digest */
  14. const EVP_MD *digest;
  15. ENGINE *engine; /* functional reference if 'digest' is
  16. * ENGINE-provided */
  17. unsigned long flags;
  18. void *md_data;
  19. /* Public key context for sign/verify */
  20. EVP_PKEY_CTX *pctx;
  21. /* Update function: usually copied from EVP_MD */
  22. int (*update) (EVP_MD_CTX *ctx, const void *data, size_t count);
  23. /*
  24. * Opaque ctx returned from a providers digest algorithm implementation
  25. * OSSL_FUNC_digest_newctx()
  26. */
  27. void *algctx;
  28. EVP_MD *fetched_digest;
  29. } /* EVP_MD_CTX */ ;
  30. struct evp_cipher_ctx_st {
  31. const EVP_CIPHER *cipher;
  32. ENGINE *engine; /* functional reference if 'cipher' is
  33. * ENGINE-provided */
  34. int encrypt; /* encrypt or decrypt */
  35. int buf_len; /* number we have left */
  36. unsigned char oiv[EVP_MAX_IV_LENGTH]; /* original iv */
  37. unsigned char iv[EVP_MAX_IV_LENGTH]; /* working iv */
  38. unsigned char buf[EVP_MAX_BLOCK_LENGTH]; /* saved partial block */
  39. int num; /* used by cfb/ofb/ctr mode */
  40. /* FIXME: Should this even exist? It appears unused */
  41. void *app_data; /* application stuff */
  42. int key_len; /* May change for variable length cipher */
  43. unsigned long flags; /* Various flags */
  44. void *cipher_data; /* per EVP data */
  45. int final_used;
  46. int block_mask;
  47. unsigned char final[EVP_MAX_BLOCK_LENGTH]; /* possible final block */
  48. /*
  49. * Opaque ctx returned from a providers cipher algorithm implementation
  50. * OSSL_FUNC_cipher_newctx()
  51. */
  52. void *algctx;
  53. EVP_CIPHER *fetched_cipher;
  54. } /* EVP_CIPHER_CTX */ ;
  55. struct evp_mac_ctx_st {
  56. EVP_MAC *meth; /* Method structure */
  57. /*
  58. * Opaque ctx returned from a providers MAC algorithm implementation
  59. * OSSL_FUNC_mac_newctx()
  60. */
  61. void *algctx;
  62. } /* EVP_MAC_CTX */;
  63. struct evp_kdf_ctx_st {
  64. EVP_KDF *meth; /* Method structure */
  65. /*
  66. * Opaque ctx returned from a providers KDF algorithm implementation
  67. * OSSL_FUNC_kdf_newctx()
  68. */
  69. void *algctx;
  70. } /* EVP_KDF_CTX */ ;
  71. struct evp_rand_ctx_st {
  72. EVP_RAND *meth; /* Method structure */
  73. /*
  74. * Opaque ctx returned from a providers rand algorithm implementation
  75. * OSSL_FUNC_rand_newctx()
  76. */
  77. void *algctx;
  78. EVP_RAND_CTX *parent; /* Parent EVP_RAND or NULL if none */
  79. CRYPTO_REF_COUNT refcnt; /* Context reference count */
  80. CRYPTO_RWLOCK *refcnt_lock;
  81. } /* EVP_RAND_CTX */ ;
  82. struct evp_keymgmt_st {
  83. int id; /* libcrypto internal */
  84. int name_id;
  85. char *type_name;
  86. const char *description;
  87. OSSL_PROVIDER *prov;
  88. CRYPTO_REF_COUNT refcnt;
  89. CRYPTO_RWLOCK *lock;
  90. /* Constructor(s), destructor, information */
  91. OSSL_FUNC_keymgmt_new_fn *new;
  92. OSSL_FUNC_keymgmt_free_fn *free;
  93. OSSL_FUNC_keymgmt_get_params_fn *get_params;
  94. OSSL_FUNC_keymgmt_gettable_params_fn *gettable_params;
  95. OSSL_FUNC_keymgmt_set_params_fn *set_params;
  96. OSSL_FUNC_keymgmt_settable_params_fn *settable_params;
  97. /* Generation, a complex constructor */
  98. OSSL_FUNC_keymgmt_gen_init_fn *gen_init;
  99. OSSL_FUNC_keymgmt_gen_set_template_fn *gen_set_template;
  100. OSSL_FUNC_keymgmt_gen_set_params_fn *gen_set_params;
  101. OSSL_FUNC_keymgmt_gen_settable_params_fn *gen_settable_params;
  102. OSSL_FUNC_keymgmt_gen_fn *gen;
  103. OSSL_FUNC_keymgmt_gen_cleanup_fn *gen_cleanup;
  104. OSSL_FUNC_keymgmt_load_fn *load;
  105. /* Key object checking */
  106. OSSL_FUNC_keymgmt_query_operation_name_fn *query_operation_name;
  107. OSSL_FUNC_keymgmt_has_fn *has;
  108. OSSL_FUNC_keymgmt_validate_fn *validate;
  109. OSSL_FUNC_keymgmt_match_fn *match;
  110. /* Import and export routines */
  111. OSSL_FUNC_keymgmt_import_fn *import;
  112. OSSL_FUNC_keymgmt_import_types_fn *import_types;
  113. OSSL_FUNC_keymgmt_export_fn *export;
  114. OSSL_FUNC_keymgmt_export_types_fn *export_types;
  115. OSSL_FUNC_keymgmt_dup_fn *dup;
  116. } /* EVP_KEYMGMT */ ;
  117. struct evp_keyexch_st {
  118. int name_id;
  119. char *type_name;
  120. const char *description;
  121. OSSL_PROVIDER *prov;
  122. CRYPTO_REF_COUNT refcnt;
  123. CRYPTO_RWLOCK *lock;
  124. OSSL_FUNC_keyexch_newctx_fn *newctx;
  125. OSSL_FUNC_keyexch_init_fn *init;
  126. OSSL_FUNC_keyexch_set_peer_fn *set_peer;
  127. OSSL_FUNC_keyexch_derive_fn *derive;
  128. OSSL_FUNC_keyexch_freectx_fn *freectx;
  129. OSSL_FUNC_keyexch_dupctx_fn *dupctx;
  130. OSSL_FUNC_keyexch_set_ctx_params_fn *set_ctx_params;
  131. OSSL_FUNC_keyexch_settable_ctx_params_fn *settable_ctx_params;
  132. OSSL_FUNC_keyexch_get_ctx_params_fn *get_ctx_params;
  133. OSSL_FUNC_keyexch_gettable_ctx_params_fn *gettable_ctx_params;
  134. } /* EVP_KEYEXCH */;
  135. struct evp_signature_st {
  136. int name_id;
  137. char *type_name;
  138. const char *description;
  139. OSSL_PROVIDER *prov;
  140. CRYPTO_REF_COUNT refcnt;
  141. CRYPTO_RWLOCK *lock;
  142. OSSL_FUNC_signature_newctx_fn *newctx;
  143. OSSL_FUNC_signature_sign_init_fn *sign_init;
  144. OSSL_FUNC_signature_sign_fn *sign;
  145. OSSL_FUNC_signature_verify_init_fn *verify_init;
  146. OSSL_FUNC_signature_verify_fn *verify;
  147. OSSL_FUNC_signature_verify_recover_init_fn *verify_recover_init;
  148. OSSL_FUNC_signature_verify_recover_fn *verify_recover;
  149. OSSL_FUNC_signature_digest_sign_init_fn *digest_sign_init;
  150. OSSL_FUNC_signature_digest_sign_update_fn *digest_sign_update;
  151. OSSL_FUNC_signature_digest_sign_final_fn *digest_sign_final;
  152. OSSL_FUNC_signature_digest_sign_fn *digest_sign;
  153. OSSL_FUNC_signature_digest_verify_init_fn *digest_verify_init;
  154. OSSL_FUNC_signature_digest_verify_update_fn *digest_verify_update;
  155. OSSL_FUNC_signature_digest_verify_final_fn *digest_verify_final;
  156. OSSL_FUNC_signature_digest_verify_fn *digest_verify;
  157. OSSL_FUNC_signature_freectx_fn *freectx;
  158. OSSL_FUNC_signature_dupctx_fn *dupctx;
  159. OSSL_FUNC_signature_get_ctx_params_fn *get_ctx_params;
  160. OSSL_FUNC_signature_gettable_ctx_params_fn *gettable_ctx_params;
  161. OSSL_FUNC_signature_set_ctx_params_fn *set_ctx_params;
  162. OSSL_FUNC_signature_settable_ctx_params_fn *settable_ctx_params;
  163. OSSL_FUNC_signature_get_ctx_md_params_fn *get_ctx_md_params;
  164. OSSL_FUNC_signature_gettable_ctx_md_params_fn *gettable_ctx_md_params;
  165. OSSL_FUNC_signature_set_ctx_md_params_fn *set_ctx_md_params;
  166. OSSL_FUNC_signature_settable_ctx_md_params_fn *settable_ctx_md_params;
  167. } /* EVP_SIGNATURE */;
  168. struct evp_asym_cipher_st {
  169. int name_id;
  170. char *type_name;
  171. const char *description;
  172. OSSL_PROVIDER *prov;
  173. CRYPTO_REF_COUNT refcnt;
  174. CRYPTO_RWLOCK *lock;
  175. OSSL_FUNC_asym_cipher_newctx_fn *newctx;
  176. OSSL_FUNC_asym_cipher_encrypt_init_fn *encrypt_init;
  177. OSSL_FUNC_asym_cipher_encrypt_fn *encrypt;
  178. OSSL_FUNC_asym_cipher_decrypt_init_fn *decrypt_init;
  179. OSSL_FUNC_asym_cipher_decrypt_fn *decrypt;
  180. OSSL_FUNC_asym_cipher_freectx_fn *freectx;
  181. OSSL_FUNC_asym_cipher_dupctx_fn *dupctx;
  182. OSSL_FUNC_asym_cipher_get_ctx_params_fn *get_ctx_params;
  183. OSSL_FUNC_asym_cipher_gettable_ctx_params_fn *gettable_ctx_params;
  184. OSSL_FUNC_asym_cipher_set_ctx_params_fn *set_ctx_params;
  185. OSSL_FUNC_asym_cipher_settable_ctx_params_fn *settable_ctx_params;
  186. } /* EVP_ASYM_CIPHER */;
  187. struct evp_kem_st {
  188. int name_id;
  189. char *type_name;
  190. const char *description;
  191. OSSL_PROVIDER *prov;
  192. CRYPTO_REF_COUNT refcnt;
  193. CRYPTO_RWLOCK *lock;
  194. OSSL_FUNC_kem_newctx_fn *newctx;
  195. OSSL_FUNC_kem_encapsulate_init_fn *encapsulate_init;
  196. OSSL_FUNC_kem_encapsulate_fn *encapsulate;
  197. OSSL_FUNC_kem_decapsulate_init_fn *decapsulate_init;
  198. OSSL_FUNC_kem_decapsulate_fn *decapsulate;
  199. OSSL_FUNC_kem_freectx_fn *freectx;
  200. OSSL_FUNC_kem_dupctx_fn *dupctx;
  201. OSSL_FUNC_kem_get_ctx_params_fn *get_ctx_params;
  202. OSSL_FUNC_kem_gettable_ctx_params_fn *gettable_ctx_params;
  203. OSSL_FUNC_kem_set_ctx_params_fn *set_ctx_params;
  204. OSSL_FUNC_kem_settable_ctx_params_fn *settable_ctx_params;
  205. } /* EVP_KEM */;
  206. int PKCS5_v2_PBKDF2_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass,
  207. int passlen, ASN1_TYPE *param,
  208. const EVP_CIPHER *c, const EVP_MD *md,
  209. int en_de);
  210. int PKCS5_v2_PBKDF2_keyivgen_ex(EVP_CIPHER_CTX *ctx, const char *pass,
  211. int passlen, ASN1_TYPE *param,
  212. const EVP_CIPHER *c, const EVP_MD *md,
  213. int en_de, OSSL_LIB_CTX *libctx, const char *propq);
  214. struct evp_Encode_Ctx_st {
  215. /* number saved in a partial encode/decode */
  216. int num;
  217. /*
  218. * The length is either the output line length (in input bytes) or the
  219. * shortest input line length that is ok. Once decoding begins, the
  220. * length is adjusted up each time a longer line is decoded
  221. */
  222. int length;
  223. /* data to encode */
  224. unsigned char enc_data[80];
  225. /* number read on current line */
  226. int line_num;
  227. unsigned int flags;
  228. };
  229. typedef struct evp_pbe_st EVP_PBE_CTL;
  230. DEFINE_STACK_OF(EVP_PBE_CTL)
  231. int ossl_is_partially_overlapping(const void *ptr1, const void *ptr2, int len);
  232. #include <openssl/types.h>
  233. #include <openssl/core.h>
  234. void *evp_generic_fetch(OSSL_LIB_CTX *ctx, int operation_id,
  235. const char *name, const char *properties,
  236. void *(*new_method)(int name_id,
  237. const OSSL_ALGORITHM *algodef,
  238. OSSL_PROVIDER *prov),
  239. int (*up_ref_method)(void *),
  240. void (*free_method)(void *));
  241. void *evp_generic_fetch_by_number(OSSL_LIB_CTX *ctx, int operation_id,
  242. int name_id, const char *properties,
  243. void *(*new_method)(int name_id,
  244. const OSSL_ALGORITHM *algodef,
  245. OSSL_PROVIDER *prov),
  246. int (*up_ref_method)(void *),
  247. void (*free_method)(void *));
  248. void evp_generic_do_all_prefetched(OSSL_LIB_CTX *libctx, int operation_id,
  249. void (*user_fn)(void *method, void *arg),
  250. void *user_arg);
  251. void evp_generic_do_all(OSSL_LIB_CTX *libctx, int operation_id,
  252. void (*user_fn)(void *method, void *arg),
  253. void *user_arg,
  254. void *(*new_method)(int name_id,
  255. const OSSL_ALGORITHM *algodef,
  256. OSSL_PROVIDER *prov),
  257. int (*up_ref_method)(void *),
  258. void (*free_method)(void *));
  259. /* Internal fetchers for method types that are to be combined with others */
  260. EVP_KEYMGMT *evp_keymgmt_fetch_by_number(OSSL_LIB_CTX *ctx, int name_id,
  261. const char *properties);
  262. /* Internal structure constructors for fetched methods */
  263. EVP_MD *evp_md_new(void);
  264. EVP_CIPHER *evp_cipher_new(void);
  265. int evp_cipher_get_asn1_aead_params(EVP_CIPHER_CTX *c, ASN1_TYPE *type,
  266. evp_cipher_aead_asn1_params *asn1_params);
  267. int evp_cipher_set_asn1_aead_params(EVP_CIPHER_CTX *c, ASN1_TYPE *type,
  268. evp_cipher_aead_asn1_params *asn1_params);
  269. /* Helper functions to avoid duplicating code */
  270. /*
  271. * These methods implement different ways to pass a params array to the
  272. * provider. They will return one of these values:
  273. *
  274. * -2 if the method doesn't come from a provider
  275. * (evp_do_param will return this to the called)
  276. * -1 if the provider doesn't offer the desired function
  277. * (evp_do_param will raise an error and return 0)
  278. * or the return value from the desired function
  279. * (evp_do_param will return it to the caller)
  280. */
  281. int evp_do_ciph_getparams(const EVP_CIPHER *ciph, OSSL_PARAM params[]);
  282. int evp_do_ciph_ctx_getparams(const EVP_CIPHER *ciph, void *provctx,
  283. OSSL_PARAM params[]);
  284. int evp_do_ciph_ctx_setparams(const EVP_CIPHER *ciph, void *provctx,
  285. OSSL_PARAM params[]);
  286. int evp_do_md_getparams(const EVP_MD *md, OSSL_PARAM params[]);
  287. int evp_do_md_ctx_getparams(const EVP_MD *md, void *provctx,
  288. OSSL_PARAM params[]);
  289. int evp_do_md_ctx_setparams(const EVP_MD *md, void *provctx,
  290. OSSL_PARAM params[]);
  291. OSSL_PARAM *evp_pkey_to_param(EVP_PKEY *pkey, size_t *sz);
  292. #define M_check_autoarg(ctx, arg, arglen, err) \
  293. if (ctx->pmeth->flags & EVP_PKEY_FLAG_AUTOARGLEN) { \
  294. size_t pksize = (size_t)EVP_PKEY_get_size(ctx->pkey); \
  295. \
  296. if (pksize == 0) { \
  297. ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_KEY); /*ckerr_ignore*/ \
  298. return 0; \
  299. } \
  300. if (arg == NULL) { \
  301. *arglen = pksize; \
  302. return 1; \
  303. } \
  304. if (*arglen < pksize) { \
  305. ERR_raise(ERR_LIB_EVP, EVP_R_BUFFER_TOO_SMALL); /*ckerr_ignore*/ \
  306. return 0; \
  307. } \
  308. }
  309. void evp_pkey_ctx_free_old_ops(EVP_PKEY_CTX *ctx);
  310. void evp_cipher_free_int(EVP_CIPHER *md);
  311. void evp_md_free_int(EVP_MD *md);
  312. /* OSSL_PROVIDER * is only used to get the library context */
  313. int evp_is_a(OSSL_PROVIDER *prov, int number,
  314. const char *legacy_name, const char *name);
  315. int evp_names_do_all(OSSL_PROVIDER *prov, int number,
  316. void (*fn)(const char *name, void *data),
  317. void *data);
  318. int evp_cipher_cache_constants(EVP_CIPHER *cipher);