VirtualBox

source: vbox/trunk/src/libs/openssl-3.3.2/doc/man3/CRYPTO_THREAD_run_once.pod

Last change on this file was 108206, checked in by vboxsync, 3 months ago

openssl-3.3.2: Exported all files to OSE and removed .scm-settings ​bugref:10757

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

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette