store.h 15 KB

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