1libcurl-thread(3) libcurl thread safety libcurl-thread(3)
2
3
4
6 libcurl-thread - libcurl thread safety
7
9 libcurl is thread safe but has no internal thread synchronization. You
10 may have to provide your own locking should you meet any of the thread
11 safety exceptions below.
12
13 Handles. You must never share the same handle in multiple threads. You
14 can pass the handles around among threads, but you must never use a
15 single handle from more than one thread at any given time.
16
17 Shared objects. You can share certain data between multiple handles by
18 using the share interface but you must provide your own locking and set
19 curl_share_setopt(3) CURLSHOPT_LOCKFUNC and CURLSHOPT_UNLOCKFUNC.
20
22 If you are accessing HTTPS or FTPS URLs in a multi-threaded manner, you
23 are then of course using the underlying SSL library multi-threaded and
24 those libs might have their own requirements on this issue. You may
25 need to provide one or two functions to allow it to function properly:
26
27 OpenSSL
28 OpenSSL 1.1.0+ "can be safely used in multi-threaded applica‐
29 tions provided that support for the underlying OS threading API
30 is built-in." In that case the engine is used by libcurl in a
31 way that is fully thread-safe.
32
33 https://www.openssl.org/docs/man1.1.0/man3/CRYPTO_THREAD_run_once.html#DE‐
34 SCRIPTION
35
36 OpenSSL <= 1.0.2 the user must set callbacks.
37
38 https://www.openssl.org/docs/man1.0.2/man3/CRYPTO_set_lock‐
39 ing_callback.html#DESCRIPTION
40
41 https://curl.se/libcurl/c/opensslthreadlock.html
42
43
44 GnuTLS https://gnutls.org/manual/html_node/Thread-safety.html
45
46 NSS thread-safe already without anything required.
47
48 Secure-Transport
49 The engine is used by libcurl in a way that is fully thread-
50 safe.
51
52 Schannel
53 The engine is used by libcurl in a way that is fully thread-
54 safe.
55
56 wolfSSL
57 The engine is used by libcurl in a way that is fully thread-
58 safe.
59
60 BoringSSL
61 The engine is used by libcurl in a way that is fully thread-
62 safe.
63
65 Signals
66 Signals are used for timing out name resolves (during DNS
67 lookup) - when built without using either the c-ares or threaded
68 resolver backends. When using multiple threads you should set
69 the CURLOPT_NOSIGNAL(3) option to 1L for all handles. Everything
70 will or might work fine except that timeouts are not honored
71 during the DNS lookup - which you can work around by building
72 libcurl with c-ares or threaded-resolver support. c-ares is a
73 library that provides asynchronous name resolves. On some plat‐
74 forms, libcurl simply will not function properly multi-threaded
75 unless the CURLOPT_NOSIGNAL(3) option is set.
76
77 When CURLOPT_NOSIGNAL(3) is set to 1L, your application needs to
78 deal with the risk of a SIGPIPE (that at least the OpenSSL back‐
79 end can trigger). Note that setting CURLOPT_NOSIGNAL(3) to 0L
80 will not work in a threaded situation as there will be race
81 where libcurl risks restoring the former signal handler while
82 another thread should still ignore it.
83
84 Name resolving
85 gethostby* functions and other system calls. These functions,
86 provided by your operating system, must be thread safe. It is
87 very important that libcurl can find and use thread safe ver‐
88 sions of these and other system calls, as otherwise it can't
89 function fully thread safe. Some operating systems are known to
90 have faulty thread implementations. We have previously received
91 problem reports on *BSD (at least in the past, they may be work‐
92 ing fine these days). Some operating systems that are known to
93 have solid and working thread support are Linux, Solaris and
94 Windows.
95
96 curl_global_* functions
97 These functions are not thread safe. If you are using libcurl
98 with multiple threads it is especially important that before use
99 you call curl_global_init(3) or curl_global_init_mem(3) to ex‐
100 plicitly initialize the library and its dependents, rather than
101 rely on the "lazy" fail-safe initialization that takes place the
102 first time curl_easy_init(3) is called. For an in-depth explana‐
103 tion refer to libcurl(3) section GLOBAL CONSTANTS.
104
105 Memory functions
106 These functions, provided either by your operating system or
107 your own replacements, must be thread safe. You can use
108 curl_global_init_mem(3) to set your own replacement memory func‐
109 tions.
110
111 Non-safe functions
112 CURLOPT_DNS_USE_GLOBAL_CACHE(3) is not thread-safe.
113
114
115
116libcurl 7.76.1 November 04, 2020 libcurl-thread(3)