CRYPTO_THREAD_run_once.pod 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  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. =item *
  60. CRYPTO_atomic_add() atomically adds I<amount> to I<*val> and returns the
  61. result of the operation in I<*ret>. I<lock> will be locked, unless atomic
  62. operations are supported on the specific platform. Because of this, if a
  63. variable is modified by CRYPTO_atomic_add() then CRYPTO_atomic_add() must
  64. be the only way that the variable is modified. If atomic operations are not
  65. supported and I<lock> is NULL, then the function will fail.
  66. =item *
  67. CRYPTO_atomic_or() performs an atomic bitwise or of I<op> and I<*val> and stores
  68. the result back in I<*val>. It also returns the result of the operation in
  69. I<*ret>. I<lock> will be locked, unless atomic operations are supported on the
  70. specific platform. Because of this, if a variable is modified by
  71. CRYPTO_atomic_or() or read by CRYPTO_atomic_load() then CRYPTO_atomic_or() must
  72. be the only way that the variable is modified. If atomic operations are not
  73. supported and I<lock> is NULL, then the function will fail.
  74. =item *
  75. CRYPTO_atomic_load() atomically loads the contents of I<*val> into I<*ret>.
  76. I<lock> will be locked, unless atomic operations are supported on the specific
  77. platform. Because of this, if a variable is modified by CRYPTO_atomic_or() or
  78. read by CRYPTO_atomic_load() then CRYPTO_atomic_load() must be the only way that
  79. the variable is read. If atomic operations are not supported and I<lock> is
  80. NULL, then the function will fail.
  81. =item *
  82. CRYPTO_atomic_load_int() works identically to CRYPTO_atomic_load() but operates
  83. on an I<int> value instead of a I<uint64_t> value.
  84. =item *
  85. OSSL_set_max_threads() sets the maximum number of threads to be used by the
  86. thread pool. If the argument is 0, thread pooling is disabled. OpenSSL will
  87. not create any threads and existing threads in the thread pool will be torn
  88. down. The maximum thread count is a limit, not a target. Threads will not be
  89. spawned unless (and until) there is demand. Thread polling is disabled by
  90. default. To enable threading you must call OSSL_set_max_threads() explicitly.
  91. Under no circumstances is this done for you.
  92. =item *
  93. OSSL_get_thread_support_flags() determines what thread pool functionality
  94. OpenSSL is compiled with and is able to support in the current run time
  95. environment. B<OSSL_THREAD_SUPPORT_FLAG_THREAD_POOL> indicates that the base
  96. thread pool functionality is available, and
  97. B<OSSL_THREAD_SUPPORT_FLAG_DEFAULT_SPAWN> indicates that the default thread pool
  98. model is available. The default thread pool model is currently the only model
  99. available, therefore both of these flags must be set for thread pool
  100. functionality to be used.
  101. =back
  102. =head1 RETURN VALUES
  103. CRYPTO_THREAD_run_once() returns 1 on success, or 0 on error.
  104. CRYPTO_THREAD_lock_new() returns the allocated lock, or NULL on error.
  105. CRYPTO_THREAD_lock_free() returns no value.
  106. OSSL_set_max_threads() returns 1 on success and 0 on failure. Returns failure
  107. if OpenSSL-managed thread pooling is not supported (for example, if it is not
  108. supported on the current platform, or because OpenSSL is not built with the
  109. necessary support).
  110. OSSL_get_max_threads() returns the maximum number of threads currently allowed
  111. to be used by the thread pool. If thread pooling is disabled or not available,
  112. returns 0.
  113. OSSL_get_thread_support_flags() returns zero or more B<OSSL_THREAD_SUPPORT_FLAG>
  114. values.
  115. The other functions return 1 on success, or 0 on error.
  116. =head1 NOTES
  117. On Windows platforms the CRYPTO_THREAD_* types and functions in the
  118. F<< <openssl/crypto.h> >> header are dependent on some of the types
  119. customarily made available by including F<< <windows.h> >>. The application
  120. developer is likely to require control over when the latter is included,
  121. commonly as one of the first included headers. Therefore, it is defined as an
  122. application developer's responsibility to include F<< <windows.h> >> prior to
  123. F<< <openssl/crypto.h> >> where use of CRYPTO_THREAD_* types and functions is
  124. required.
  125. =head1 EXAMPLES
  126. You can find out if OpenSSL was configured with thread support:
  127. #include <openssl/opensslconf.h>
  128. #if defined(OPENSSL_THREADS)
  129. /* thread support enabled */
  130. #else
  131. /* no thread support */
  132. #endif
  133. This example safely initializes and uses a lock.
  134. #ifdef _WIN32
  135. # include <windows.h>
  136. #endif
  137. #include <openssl/crypto.h>
  138. static CRYPTO_ONCE once = CRYPTO_ONCE_STATIC_INIT;
  139. static CRYPTO_RWLOCK *lock;
  140. static void myinit(void)
  141. {
  142. lock = CRYPTO_THREAD_lock_new();
  143. }
  144. static int mylock(void)
  145. {
  146. if (!CRYPTO_THREAD_run_once(&once, void init) || lock == NULL)
  147. return 0;
  148. return CRYPTO_THREAD_write_lock(lock);
  149. }
  150. static int myunlock(void)
  151. {
  152. return CRYPTO_THREAD_unlock(lock);
  153. }
  154. int serialized(void)
  155. {
  156. int ret = 0;
  157. if (mylock()) {
  158. /* Your code here, do not return without releasing the lock! */
  159. ret = ... ;
  160. }
  161. myunlock();
  162. return ret;
  163. }
  164. Finalization of locks is an advanced topic, not covered in this example.
  165. This can only be done at process exit or when a dynamically loaded library is
  166. no longer in use and is unloaded.
  167. The simplest solution is to just "leak" the lock in applications and not
  168. repeatedly load/unload shared libraries that allocate locks.
  169. =head1 SEE ALSO
  170. L<crypto(7)>, L<openssl-threads(7)>.
  171. =head1 COPYRIGHT
  172. Copyright 2000-2023 The OpenSSL Project Authors. All Rights Reserved.
  173. Licensed under the Apache License 2.0 (the "License"). You may not use
  174. this file except in compliance with the License. You can obtain a copy
  175. in the file LICENSE in the source distribution or at
  176. L<https://www.openssl.org/source/license.html>.
  177. =cut