store.h 14 KB

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