OSSL_METHOD_STORE.pod 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. =pod
  2. =head1 NAME
  3. OSSL_METHOD_STORE, ossl_method_store_new, ossl_method_store_free,
  4. ossl_method_store_init, ossl_method_store_cleanup,
  5. ossl_method_store_add, ossl_method_store_remove, ossl_method_store_fetch,
  6. ossl_method_store_set_global_properties,
  7. ossl_method_store_cache_get, ossl_method_store_cache_set
  8. - implementation method store and query
  9. =head1 SYNOPSIS
  10. #include "internal/property.h"
  11. typedef struct ossl_method_store_st OSSL_METHOD_STORE;
  12. OSSL_METHOD_STORE *ossl_method_store_new(OPENSSL_CTX *ctx);
  13. void ossl_method_store_free(OSSL_METHOD_STORE *store);
  14. int ossl_method_store_init(OPENSSL_CTX *ctx);
  15. void ossl_method_store_cleanup(OPENSSL_CTX *ctx);
  16. int ossl_method_store_add(OSSL_METHOD_STORE *store,
  17. int nid, const char *properties,
  18. void *method, void (*method_destruct)(void *));
  19. int ossl_method_store_remove(OSSL_METHOD_STORE *store,
  20. int nid, const void *method);
  21. int ossl_method_store_fetch(OSSL_METHOD_STORE *store,
  22. int nid, const char *properties,
  23. void **method);
  24. int ossl_method_store_set_global_properties(OSSL_METHOD_STORE *store,
  25. const char *prop_query);
  26. int ossl_method_store_cache_get(OSSL_METHOD_STORE *store, int nid,
  27. const char *prop_query, void **method);
  28. int ossl_method_store_cache_set(OSSL_METHOD_STORE *store, int nid,
  29. const char *prop_query, void *method);
  30. =head1 DESCRIPTION
  31. OSSL_METHOD_STORE stores methods that can be queried using properties and a
  32. numeric identity (nid).
  33. Methods are expected to be library internal structures.
  34. It's left to the caller to define the exact contents.
  35. Numeric identities are expected to be an algorithm identity for the methods.
  36. It's left to the caller to define exactly what an algorithm is, and to allocate
  37. these numeric identities accordingly.
  38. The B<OSSL_METHOD_STORE> also holds an internal query cache, which is accessed
  39. separately (see L</Cache Functions> below).
  40. =head2 Store Functions
  41. ossl_method_store_init() initialises the method store subsystem in the scope of
  42. the library context B<ctx>.
  43. ossl_method_store_cleanup() cleans up and shuts down the implementation method
  44. store subsystem in the scope of the library context B<ctx>.
  45. ossl_method_store_new() create a new empty method store using the supplied
  46. B<ctx> to allow access to the required underlying property data.
  47. ossl_method_store_free() frees resources allocated to B<store>.
  48. ossl_method_store_add() adds the B<method> to the B<store> as an instance of an
  49. algorithm indicated by B<nid> and the property definition B<properties>.
  50. The optional B<method_destruct> function is called when B<method> is being
  51. released from B<store>.
  52. ossl_method_store_remove() removes the B<method> identified by B<nid> from the
  53. B<store>.
  54. ossl_method_store_fetch() queries B<store> for an method identified by B<nid>
  55. that matches the property query B<prop_query>.
  56. The result, if any, is returned in B<method>.
  57. ossl_method_store_set_global_properties() sets method B<store> wide query
  58. properties to B<prop_query>.
  59. All subsequent fetches will need to meet both these global query properties
  60. and the ones passed to the ossl_method_store_free().
  61. =head2 Cache Functions
  62. ossl_method_store_cache_get() queries the cache associated with the B<store>
  63. for an method identified by B<nid> that matches the property query
  64. B<prop_query>.
  65. The result, if any, is returned in B<method>.
  66. ossl_method_store_cache_set() sets a cache entry identified by B<nid> with the
  67. property query B<prop_query> in the B<store>.
  68. Future cache gets will return the specified B<method>.
  69. =head1 RETURN VALUES
  70. ossl_method_store_new() a new method store object or B<NULL> on failure.
  71. ossl_method_store_free(), ossl_method_store_add(),
  72. ossl_method_store_remove(), ossl_method_store_fetch(),
  73. ossl_method_store_set_global_properties(), ossl_method_store_cache_get()
  74. and ossl_method_store_cache_set() return B<1> on success and B<0> on error.
  75. ossl_method_store_free() and ossl_method_store_cleanup() do not return values.
  76. =head1 HISTORY
  77. This functionality was added to OpenSSL 3.0.0.
  78. =head1 COPYRIGHT
  79. Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
  80. Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
  81. Licensed under the Apache License 2.0 (the "License"). You may not use this
  82. file except in compliance with the License. You can obtain a copy in the file
  83. LICENSE in the source distribution or at
  84. L<https://www.openssl.org/source/license.html>.
  85. =cut