CRYPTO_THREAD_run_once.pod 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. =pod
  2. =head1 NAME
  3. CRYPTO_THREAD_run_once,
  4. CRYPTO_THREAD_lock_new, CRYPTO_THREAD_read_lock, CRYPTO_THREAD_write_lock,
  5. CRYPTO_THREAD_unlock, CRYPTO_THREAD_lock_free,
  6. CRYPTO_atomic_add, CRYPTO_atomic_or, CRYPTO_atomic_load,
  7. CRYPTO_atomic_load_int,
  8. OSSL_set_max_threads, OSSL_get_max_threads,
  9. OSSL_get_thread_support_flags, OSSL_THREAD_SUPPORT_FLAG_THREAD_POOL,
  10. OSSL_THREAD_SUPPORT_FLAG_DEFAULT_SPAWN - OpenSSL thread support
  11. =head1 SYNOPSIS
  12. #include <openssl/crypto.h>
  13. CRYPTO_ONCE CRYPTO_ONCE_STATIC_INIT;
  14. int CRYPTO_THREAD_run_once(CRYPTO_ONCE *once, void (*init)(void));
  15. CRYPTO_RWLOCK *CRYPTO_THREAD_lock_new(void);
  16. int CRYPTO_THREAD_read_lock(CRYPTO_RWLOCK *lock);
  17. int CRYPTO_THREAD_write_lock(CRYPTO_RWLOCK *lock);
  18. int CRYPTO_THREAD_unlock(CRYPTO_RWLOCK *lock);
  19. void CRYPTO_THREAD_lock_free(CRYPTO_RWLOCK *lock);
  20. int CRYPTO_atomic_add(int *val, int amount, int *ret, CRYPTO_RWLOCK *lock);
  21. int CRYPTO_atomic_or(uint64_t *val, uint64_t op, uint64_t *ret,
  22. CRYPTO_RWLOCK *lock);
  23. int CRYPTO_atomic_load(uint64_t *val, uint64_t *ret, CRYPTO_RWLOCK *lock);
  24. int CRYPTO_atomic_load_int(int *val, int *ret, CRYPTO_RWLOCK *lock);
  25. int OSSL_set_max_threads(OSSL_LIB_CTX *ctx, uint64_t max_threads);
  26. uint64_t OSSL_get_max_threads(OSSL_LIB_CTX *ctx);
  27. uint32_t OSSL_get_thread_support_flags(void);
  28. #define OSSL_THREAD_SUPPORT_FLAG_THREAD_POOL
  29. #define OSSL_THREAD_SUPPORT_FLAG_DEFAULT_SPAWN
  30. =head1 DESCRIPTION
  31. OpenSSL can be safely used in multi-threaded applications provided that
  32. support for the underlying OS threading API is built-in. Currently, OpenSSL
  33. supports the pthread and Windows APIs. OpenSSL can also be built without
  34. any multi-threading support, for example on platforms that don't provide
  35. any threading support or that provide a threading API that is not yet
  36. supported by OpenSSL.
  37. The following multi-threading function are provided:
  38. =over 2
  39. =item *
  40. CRYPTO_THREAD_run_once() can be used to perform one-time initialization.
  41. The I<once> argument must be a pointer to a static object of type
  42. B<CRYPTO_ONCE> that was statically initialized to the value
  43. B<CRYPTO_ONCE_STATIC_INIT>.
  44. The I<init> argument is a pointer to a function that performs the desired
  45. exactly once initialization.
  46. In particular, this can be used to allocate locks in a thread-safe manner,
  47. which can then be used with the locking functions below.
  48. =item *
  49. CRYPTO_THREAD_lock_new() allocates, initializes and returns a new read/write
  50. lock.
  51. =item *
  52. CRYPTO_THREAD_read_lock() locks the provided I<lock> for reading.
  53. =item *
  54. CRYPTO_THREAD_write_lock() locks the provided I<lock> for writing.
  55. =item *
  56. CRYPTO_THREAD_unlock() unlocks the previously locked I<lock>.
  57. =item *
  58. CRYPTO_THREAD_lock_free() frees the provided I<lock>.
  59. If the argument is NULL, nothing is done.
  60. =item *
  61. CRYPTO_atomic_add() atomically adds I<amount> to I<*val> and returns the
  62. result of the operation in I<*ret>. I<lock> will be locked, unless atomic
  63. operations are supported on the specific platform. Because of this, if a
  64. variable is modified by CRYPTO_atomic_add() then CRYPTO_atomic_add() must
  65. be the only way that the variable is modified. If atomic operations are not
  66. supported and I<lock> is NULL, then the function will fail.
  67. =item *
  68. CRYPTO_atomic_or() performs an atomic bitwise or of I<op> and I<*val> and stores
  69. the result back in I<*val>. It also returns the result of the operation in
  70. I<*ret>. I<lock> will be locked, unless atomic operations are supported on the
  71. specific platform. Because of this, if a variable is modified by
  72. CRYPTO_atomic_or() or read by CRYPTO_atomic_load() then CRYPTO_atomic_or() must
  73. be the only way that the variable is modified. If atomic operations are not
  74. supported and I<lock> is NULL, then the function will fail.
  75. =item *
  76. CRYPTO_atomic_load() atomically loads the contents of I<*val> into I<*ret>.
  77. I<lock> will be locked, unless atomic operations are supported on the specific
  78. platform. Because of this, if a variable is modified by CRYPTO_atomic_or() or
  79. read by CRYPTO_atomic_load() then CRYPTO_atomic_load() must be the only way that
  80. the variable is read. If atomic operations are not supported and I<lock> is
  81. NULL, then the function will fail.
  82. =item *
  83. CRYPTO_atomic_load_int() works identically to CRYPTO_atomic_load() but operates
  84. on an I<int> value instead of a I<uint64_t> value.
  85. =item *
  86. OSSL_set_max_threads() sets the maximum number of threads to be used by the
  87. thread pool. If the argument is 0, thread pooling is disabled. OpenSSL will
  88. not create any threads and existing threads in the thread pool will be torn
  89. down. The maximum thread count is a limit, not a target. Threads will not be
  90. spawned unless (and until) there is demand. Thread polling is disabled by
  91. default. To enable threading you must call OSSL_set_max_threads() explicitly.
  92. Under no circumstances is this done for you.
  93. =item *
  94. OSSL_get_thread_support_flags() determines what thread pool functionality
  95. OpenSSL is compiled with and is able to support in the current run time
  96. environment. B<OSSL_THREAD_SUPPORT_FLAG_THREAD_POOL> indicates that the base
  97. thread pool functionality is available, and
  98. B<OSSL_THREAD_SUPPORT_FLAG_DEFAULT_SPAWN> indicates that the default thread pool
  99. model is available. The default thread pool model is currently the only model
  100. available, therefore both of these flags must be set for thread pool
  101. functionality to be used.
  102. =back
  103. =head1 RETURN VALUES
  104. CRYPTO_THREAD_run_once() returns 1 on success, or 0 on error.
  105. CRYPTO_THREAD_lock_new() returns the allocated lock, or NULL on error.
  106. CRYPTO_THREAD_lock_free() returns no value.
  107. OSSL_set_max_threads() returns 1 on success and 0 on failure. Returns failure
  108. if OpenSSL-managed thread pooling is not supported (for example, if it is not
  109. supported on the current platform, or because OpenSSL is not built with the
  110. necessary support).
  111. OSSL_get_max_threads() returns the maximum number of threads currently allowed
  112. to be used by the thread pool. If thread pooling is disabled or not available,
  113. returns 0.
  114. OSSL_get_thread_support_flags() returns zero or more B<OSSL_THREAD_SUPPORT_FLAG>
  115. values.
  116. The other functions return 1 on success, or 0 on error.
  117. =head1 NOTES
  118. On Windows platforms the CRYPTO_THREAD_* types and functions in the
  119. F<< <openssl/crypto.h> >> header are dependent on some of the types
  120. customarily made available by including F<< <windows.h> >>. The application
  121. developer is likely to require control over when the latter is included,
  122. commonly as one of the first included headers. Therefore, it is defined as an
  123. application developer's responsibility to include F<< <windows.h> >> prior to
  124. F<< <openssl/crypto.h> >> where use of CRYPTO_THREAD_* types and functions is
  125. required.
  126. =head1 EXAMPLES
  127. You can find out if OpenSSL was configured with thread support:
  128. #include <openssl/opensslconf.h>
  129. #if defined(OPENSSL_THREADS)
  130. /* thread support enabled */
  131. #else
  132. /* no thread support */
  133. #endif
  134. This example safely initializes and uses a lock.
  135. #ifdef _WIN32
  136. # include <windows.h>
  137. #endif
  138. #include <openssl/crypto.h>
  139. static CRYPTO_ONCE once = CRYPTO_ONCE_STATIC_INIT;
  140. static CRYPTO_RWLOCK *lock;
  141. static void myinit(void)
  142. {
  143. lock = CRYPTO_THREAD_lock_new();
  144. }
  145. static int mylock(void)
  146. {
  147. if (!CRYPTO_THREAD_run_once(&once, void init) || lock == NULL)
  148. return 0;
  149. return CRYPTO_THREAD_write_lock(lock);
  150. }
  151. static int myunlock(void)
  152. {
  153. return CRYPTO_THREAD_unlock(lock);
  154. }
  155. int serialized(void)
  156. {
  157. int ret = 0;
  158. if (!mylock()) {
  159. /* Do not unlock unless the lock was successfully acquired. */
  160. return 0;
  161. }
  162. /* Your code here, do not return without releasing the lock! */
  163. ret = ... ;
  164. myunlock();
  165. return ret;
  166. }
  167. Finalization of locks is an advanced topic, not covered in this example.
  168. This can only be done at process exit or when a dynamically loaded library is
  169. no longer in use and is unloaded.
  170. The simplest solution is to just "leak" the lock in applications and not
  171. repeatedly load/unload shared libraries that allocate locks.
  172. =head1 SEE ALSO
  173. L<crypto(7)>, L<openssl-threads(7)>.
  174. =head1 COPYRIGHT
  175. Copyright 2000-2024 The OpenSSL Project Authors. All Rights Reserved.
  176. Licensed under the Apache License 2.0 (the "License"). You may not use
  177. this file except in compliance with the License. You can obtain a copy
  178. in the file LICENSE in the source distribution or at
  179. L<https://www.openssl.org/source/license.html>.
  180. =cut