You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

store.h 14 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. /*
  2. * Copyright 2016-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. #ifndef OPENSSL_STORE_H
  10. #define OPENSSL_STORE_H
  11. #pragma once
  12. #include <openssl/macros.h>
  13. #ifndef OPENSSL_NO_DEPRECATED_3_0
  14. #define HEADER_OSSL_STORE_H
  15. #endif
  16. #include <stdarg.h>
  17. #include <openssl/types.h>
  18. #include <openssl/pem.h>
  19. #include <openssl/storeerr.h>
  20. #ifdef __cplusplus
  21. extern "C"
  22. {
  23. #endif
  24. /*-
  25. * The main OSSL_STORE functions.
  26. * ------------------------------
  27. *
  28. * These allow applications to open a channel to a resource with supported
  29. * data (keys, certs, crls, ...), read the data a piece at a time and decide
  30. * what to do with it, and finally close.
  31. */
  32. typedef struct ossl_store_ctx_st OSSL_STORE_CTX;
  33. /*
  34. * Typedef for the OSSL_STORE_INFO post processing callback. This can be used
  35. * to massage the given OSSL_STORE_INFO, or to drop it entirely (by returning
  36. * NULL).
  37. */
  38. typedef OSSL_STORE_INFO* (*OSSL_STORE_post_process_info_fn)(OSSL_STORE_INFO*, void*);
  39. /*
  40. * Open a channel given a URI. The given UI method will be used any time the
  41. * loader needs extra input, for example when a password or pin is needed, and
  42. * will be passed the same user data every time it's needed in this context.
  43. *
  44. * Returns a context reference which represents the channel to communicate
  45. * through.
  46. */
  47. OSSL_STORE_CTX*
  48. OSSL_STORE_open(const char* uri, const UI_METHOD* ui_method, void* ui_data, OSSL_STORE_post_process_info_fn post_process, void* post_process_data);
  49. OSSL_STORE_CTX*
  50. OSSL_STORE_open_ex(const char* uri, OSSL_LIB_CTX* libctx, const char* propq, const UI_METHOD* ui_method, void* ui_data, const OSSL_PARAM params[], OSSL_STORE_post_process_info_fn post_process, void* post_process_data);
  51. /*
  52. * Control / fine tune the OSSL_STORE channel. |cmd| determines what is to be
  53. * done, and depends on the underlying loader (use OSSL_STORE_get0_scheme to
  54. * determine which loader is used), except for common commands (see below).
  55. * Each command takes different arguments.
  56. */
  57. #ifndef OPENSSL_NO_DEPRECATED_3_0
  58. OSSL_DEPRECATEDIN_3_0 int OSSL_STORE_ctrl(OSSL_STORE_CTX* ctx, int cmd, ... /* args */);
  59. OSSL_DEPRECATEDIN_3_0 int OSSL_STORE_vctrl(OSSL_STORE_CTX* ctx, int cmd, va_list args);
  60. #endif
  61. #ifndef OPENSSL_NO_DEPRECATED_3_0
  62. /*
  63. * Common ctrl commands that different loaders may choose to support.
  64. */
  65. /* int on = 0 or 1; STORE_ctrl(ctx, STORE_C_USE_SECMEM, &on); */
  66. #define OSSL_STORE_C_USE_SECMEM 1
  67. /* Where custom commands start */
  68. #define OSSL_STORE_C_CUSTOM_START 100
  69. #endif
  70. /*
  71. * Read one data item (a key, a cert, a CRL) that is supported by the OSSL_STORE
  72. * functionality, given a context.
  73. * Returns a OSSL_STORE_INFO pointer, from which OpenSSL typed data can be
  74. * extracted with OSSL_STORE_INFO_get0_PKEY(), OSSL_STORE_INFO_get0_CERT(), ...
  75. * NULL is returned on error, which may include that the data found at the URI
  76. * can't be figured out for certain or is ambiguous.
  77. */
  78. OSSL_STORE_INFO* OSSL_STORE_load(OSSL_STORE_CTX* ctx);
  79. /*
  80. * Check if end of data (end of file) is reached
  81. * Returns 1 on end, 0 otherwise.
  82. */
  83. int OSSL_STORE_eof(OSSL_STORE_CTX* ctx);
  84. /*
  85. * Check if an error occurred
  86. * Returns 1 if it did, 0 otherwise.
  87. */
  88. int OSSL_STORE_error(OSSL_STORE_CTX* ctx);
  89. /*
  90. * Close the channel
  91. * Returns 1 on success, 0 on error.
  92. */
  93. int OSSL_STORE_close(OSSL_STORE_CTX* ctx);
  94. /*
  95. * Attach to a BIO. This works like OSSL_STORE_open() except it takes a
  96. * BIO instead of a uri, along with a scheme to use when reading.
  97. * The given UI method will be used any time the loader needs extra input,
  98. * for example when a password or pin is needed, and will be passed the
  99. * same user data every time it's needed in this context.
  100. *
  101. * Returns a context reference which represents the channel to communicate
  102. * through.
  103. *
  104. * Note that this function is considered unsafe, all depending on what the
  105. * BIO actually reads.
  106. */
  107. OSSL_STORE_CTX* OSSL_STORE_attach(BIO* bio, const char* scheme, OSSL_LIB_CTX* libctx, const char* propq, const UI_METHOD* ui_method, void* ui_data, const OSSL_PARAM params[], OSSL_STORE_post_process_info_fn post_process, void* post_process_data);
  108. /*-
  109. * Extracting OpenSSL types from and creating new OSSL_STORE_INFOs
  110. * ---------------------------------------------------------------
  111. */
  112. /*
  113. * Types of data that can be ossl_stored in a OSSL_STORE_INFO.
  114. * OSSL_STORE_INFO_NAME is typically found when getting a listing of
  115. * available "files" / "tokens" / what have you.
  116. */
  117. #define OSSL_STORE_INFO_NAME 1 /* char * */
  118. #define OSSL_STORE_INFO_PARAMS 2 /* EVP_PKEY * */
  119. #define OSSL_STORE_INFO_PUBKEY 3 /* EVP_PKEY * */
  120. #define OSSL_STORE_INFO_PKEY 4 /* EVP_PKEY * */
  121. #define OSSL_STORE_INFO_CERT 5 /* X509 * */
  122. #define OSSL_STORE_INFO_CRL 6 /* X509_CRL * */
  123. /*
  124. * Functions to generate OSSL_STORE_INFOs, one function for each type we
  125. * support having in them, as well as a generic constructor.
  126. *
  127. * In all cases, ownership of the object is transferred to the OSSL_STORE_INFO
  128. * and will therefore be freed when the OSSL_STORE_INFO is freed.
  129. */
  130. OSSL_STORE_INFO* OSSL_STORE_INFO_new(int type, void* data);
  131. OSSL_STORE_INFO* OSSL_STORE_INFO_new_NAME(char* name);
  132. int OSSL_STORE_INFO_set0_NAME_description(OSSL_STORE_INFO* info, char* desc);
  133. OSSL_STORE_INFO* OSSL_STORE_INFO_new_PARAMS(EVP_PKEY* params);
  134. OSSL_STORE_INFO* OSSL_STORE_INFO_new_PUBKEY(EVP_PKEY* pubkey);
  135. OSSL_STORE_INFO* OSSL_STORE_INFO_new_PKEY(EVP_PKEY* pkey);
  136. OSSL_STORE_INFO* OSSL_STORE_INFO_new_CERT(X509* x509);
  137. OSSL_STORE_INFO* OSSL_STORE_INFO_new_CRL(X509_CRL* crl);
  138. /*
  139. * Functions to try to extract data from a OSSL_STORE_INFO.
  140. */
  141. int OSSL_STORE_INFO_get_type(const OSSL_STORE_INFO* info);
  142. void* OSSL_STORE_INFO_get0_data(int type, const OSSL_STORE_INFO* info);
  143. const char* OSSL_STORE_INFO_get0_NAME(const OSSL_STORE_INFO* info);
  144. char* OSSL_STORE_INFO_get1_NAME(const OSSL_STORE_INFO* info);
  145. const char* OSSL_STORE_INFO_get0_NAME_description(const OSSL_STORE_INFO* info);
  146. char* OSSL_STORE_INFO_get1_NAME_description(const OSSL_STORE_INFO* info);
  147. EVP_PKEY* OSSL_STORE_INFO_get0_PARAMS(const OSSL_STORE_INFO* info);
  148. EVP_PKEY* OSSL_STORE_INFO_get1_PARAMS(const OSSL_STORE_INFO* info);
  149. EVP_PKEY* OSSL_STORE_INFO_get0_PUBKEY(const OSSL_STORE_INFO* info);
  150. EVP_PKEY* OSSL_STORE_INFO_get1_PUBKEY(const OSSL_STORE_INFO* info);
  151. EVP_PKEY* OSSL_STORE_INFO_get0_PKEY(const OSSL_STORE_INFO* info);
  152. EVP_PKEY* OSSL_STORE_INFO_get1_PKEY(const OSSL_STORE_INFO* info);
  153. X509* OSSL_STORE_INFO_get0_CERT(const OSSL_STORE_INFO* info);
  154. X509* OSSL_STORE_INFO_get1_CERT(const OSSL_STORE_INFO* info);
  155. X509_CRL* OSSL_STORE_INFO_get0_CRL(const OSSL_STORE_INFO* info);
  156. X509_CRL* OSSL_STORE_INFO_get1_CRL(const OSSL_STORE_INFO* info);
  157. const char* OSSL_STORE_INFO_type_string(int type);
  158. /*
  159. * Free the OSSL_STORE_INFO
  160. */
  161. void OSSL_STORE_INFO_free(OSSL_STORE_INFO* info);
  162. /*-
  163. * Functions to construct a search URI from a base URI and search criteria
  164. * -----------------------------------------------------------------------
  165. */
  166. /* OSSL_STORE search types */
  167. #define OSSL_STORE_SEARCH_BY_NAME 1 /* subject in certs, issuer in CRLs */
  168. #define OSSL_STORE_SEARCH_BY_ISSUER_SERIAL 2
  169. #define OSSL_STORE_SEARCH_BY_KEY_FINGERPRINT 3
  170. #define OSSL_STORE_SEARCH_BY_ALIAS 4
  171. /* To check what search types the scheme handler supports */
  172. int OSSL_STORE_supports_search(OSSL_STORE_CTX* ctx, int search_type);
  173. /* Search term constructors */
  174. /*
  175. * The input is considered to be owned by the caller, and must therefore
  176. * remain present throughout the lifetime of the returned OSSL_STORE_SEARCH
  177. */
  178. OSSL_STORE_SEARCH* OSSL_STORE_SEARCH_by_name(X509_NAME* name);
  179. OSSL_STORE_SEARCH* OSSL_STORE_SEARCH_by_issuer_serial(X509_NAME* name, const ASN1_INTEGER* serial);
  180. OSSL_STORE_SEARCH* OSSL_STORE_SEARCH_by_key_fingerprint(const EVP_MD* digest, const unsigned char* bytes, size_t len);
  181. OSSL_STORE_SEARCH* OSSL_STORE_SEARCH_by_alias(const char* alias);
  182. /* Search term destructor */
  183. void OSSL_STORE_SEARCH_free(OSSL_STORE_SEARCH* search);
  184. /* Search term accessors */
  185. int OSSL_STORE_SEARCH_get_type(const OSSL_STORE_SEARCH* criterion);
  186. X509_NAME* OSSL_STORE_SEARCH_get0_name(const OSSL_STORE_SEARCH* criterion);
  187. const ASN1_INTEGER* OSSL_STORE_SEARCH_get0_serial(const OSSL_STORE_SEARCH* criterion);
  188. const unsigned char* OSSL_STORE_SEARCH_get0_bytes(const OSSL_STORE_SEARCH* criterion, size_t* length);
  189. const char* OSSL_STORE_SEARCH_get0_string(const OSSL_STORE_SEARCH* criterion);
  190. const EVP_MD* OSSL_STORE_SEARCH_get0_digest(const OSSL_STORE_SEARCH* criterion);
  191. /*
  192. * Add search criterion and expected return type (which can be unspecified)
  193. * to the loading channel. This MUST happen before the first OSSL_STORE_load().
  194. */
  195. int OSSL_STORE_expect(OSSL_STORE_CTX* ctx, int expected_type);
  196. int OSSL_STORE_find(OSSL_STORE_CTX* ctx, const OSSL_STORE_SEARCH* search);
  197. /*-
  198. * Function to fetch a loader and extract data from it
  199. * ---------------------------------------------------
  200. */
  201. typedef struct ossl_store_loader_st OSSL_STORE_LOADER;
  202. OSSL_STORE_LOADER* OSSL_STORE_LOADER_fetch(OSSL_LIB_CTX* libctx, const char* scheme, const char* properties);
  203. int OSSL_STORE_LOADER_up_ref(OSSL_STORE_LOADER* loader);
  204. void OSSL_STORE_LOADER_free(OSSL_STORE_LOADER* loader);
  205. const OSSL_PROVIDER* OSSL_STORE_LOADER_get0_provider(const OSSL_STORE_LOADER*
  206. loader);
  207. const char* OSSL_STORE_LOADER_get0_properties(const OSSL_STORE_LOADER* loader);
  208. const char* OSSL_STORE_LOADER_get0_description(const OSSL_STORE_LOADER* loader);
  209. int OSSL_STORE_LOADER_is_a(const OSSL_STORE_LOADER* loader, const char* scheme);
  210. void OSSL_STORE_LOADER_do_all_provided(OSSL_LIB_CTX* libctx, void (*fn)(OSSL_STORE_LOADER* loader, void* arg), void* arg);
  211. int OSSL_STORE_LOADER_names_do_all(const OSSL_STORE_LOADER* loader, void (*fn)(const char* name, void* data), void* data);
  212. /*-
  213. * Function to register a loader for the given URI scheme.
  214. * -------------------------------------------------------
  215. *
  216. * The loader receives all the main components of an URI except for the
  217. * scheme.
  218. */
  219. #ifndef OPENSSL_NO_DEPRECATED_3_0
  220. /* struct ossl_store_loader_ctx_st is defined differently by each loader */
  221. typedef struct ossl_store_loader_ctx_st OSSL_STORE_LOADER_CTX;
  222. typedef OSSL_STORE_LOADER_CTX* (*OSSL_STORE_open_fn)(const OSSL_STORE_LOADER* loader, const char* uri, const UI_METHOD* ui_method, void* ui_data);
  223. typedef OSSL_STORE_LOADER_CTX* (*OSSL_STORE_open_ex_fn)(const OSSL_STORE_LOADER* loader, const char* uri, OSSL_LIB_CTX* libctx, const char* propq, const UI_METHOD* ui_method, void* ui_data);
  224. typedef OSSL_STORE_LOADER_CTX* (*OSSL_STORE_attach_fn)(const OSSL_STORE_LOADER* loader, BIO* bio, OSSL_LIB_CTX* libctx, const char* propq, const UI_METHOD* ui_method, void* ui_data);
  225. typedef int (*OSSL_STORE_ctrl_fn)(OSSL_STORE_LOADER_CTX* ctx, int cmd, va_list args);
  226. typedef int (*OSSL_STORE_expect_fn)(OSSL_STORE_LOADER_CTX* ctx, int expected);
  227. typedef int (*OSSL_STORE_find_fn)(OSSL_STORE_LOADER_CTX* ctx, const OSSL_STORE_SEARCH* criteria);
  228. typedef OSSL_STORE_INFO* (*OSSL_STORE_load_fn)(OSSL_STORE_LOADER_CTX* ctx, const UI_METHOD* ui_method, void* ui_data);
  229. typedef int (*OSSL_STORE_eof_fn)(OSSL_STORE_LOADER_CTX* ctx);
  230. typedef int (*OSSL_STORE_error_fn)(OSSL_STORE_LOADER_CTX* ctx);
  231. typedef int (*OSSL_STORE_close_fn)(OSSL_STORE_LOADER_CTX* ctx);
  232. #endif
  233. #ifndef OPENSSL_NO_DEPRECATED_3_0
  234. OSSL_DEPRECATEDIN_3_0
  235. OSSL_STORE_LOADER* OSSL_STORE_LOADER_new(ENGINE* e, const char* scheme);
  236. OSSL_DEPRECATEDIN_3_0
  237. int OSSL_STORE_LOADER_set_open(OSSL_STORE_LOADER* loader, OSSL_STORE_open_fn open_function);
  238. OSSL_DEPRECATEDIN_3_0
  239. int OSSL_STORE_LOADER_set_open_ex(OSSL_STORE_LOADER* loader, OSSL_STORE_open_ex_fn open_ex_function);
  240. OSSL_DEPRECATEDIN_3_0
  241. int OSSL_STORE_LOADER_set_attach(OSSL_STORE_LOADER* loader, OSSL_STORE_attach_fn attach_function);
  242. OSSL_DEPRECATEDIN_3_0
  243. int OSSL_STORE_LOADER_set_ctrl(OSSL_STORE_LOADER* loader, OSSL_STORE_ctrl_fn ctrl_function);
  244. OSSL_DEPRECATEDIN_3_0
  245. int OSSL_STORE_LOADER_set_expect(OSSL_STORE_LOADER* loader, OSSL_STORE_expect_fn expect_function);
  246. OSSL_DEPRECATEDIN_3_0
  247. int OSSL_STORE_LOADER_set_find(OSSL_STORE_LOADER* loader, OSSL_STORE_find_fn find_function);
  248. OSSL_DEPRECATEDIN_3_0
  249. int OSSL_STORE_LOADER_set_load(OSSL_STORE_LOADER* loader, OSSL_STORE_load_fn load_function);
  250. OSSL_DEPRECATEDIN_3_0
  251. int OSSL_STORE_LOADER_set_eof(OSSL_STORE_LOADER* loader, OSSL_STORE_eof_fn eof_function);
  252. OSSL_DEPRECATEDIN_3_0
  253. int OSSL_STORE_LOADER_set_error(OSSL_STORE_LOADER* loader, OSSL_STORE_error_fn error_function);
  254. OSSL_DEPRECATEDIN_3_0
  255. int OSSL_STORE_LOADER_set_close(OSSL_STORE_LOADER* loader, OSSL_STORE_close_fn close_function);
  256. OSSL_DEPRECATEDIN_3_0
  257. const ENGINE* OSSL_STORE_LOADER_get0_engine(const OSSL_STORE_LOADER* loader);
  258. OSSL_DEPRECATEDIN_3_0
  259. const char* OSSL_STORE_LOADER_get0_scheme(const OSSL_STORE_LOADER* loader);
  260. OSSL_DEPRECATEDIN_3_0
  261. int OSSL_STORE_register_loader(OSSL_STORE_LOADER* loader);
  262. OSSL_DEPRECATEDIN_3_0
  263. OSSL_STORE_LOADER* OSSL_STORE_unregister_loader(const char* scheme);
  264. #endif
  265. /*-
  266. * Functions to list STORE loaders
  267. * -------------------------------
  268. */
  269. #ifndef OPENSSL_NO_DEPRECATED_3_0
  270. OSSL_DEPRECATEDIN_3_0
  271. int OSSL_STORE_do_all_loaders(void (*do_function)(const OSSL_STORE_LOADER* loader, void* do_arg), void* do_arg);
  272. #endif
  273. #ifdef __cplusplus
  274. }
  275. #endif
  276. #endif