curl_easy_ssls_export(3) | Introduction to Library Functions | curl_easy_ssls_export(3) |
curl_easy_ssls_export - export SSL sessions
#include <curl/curl.h> typedef CURLcode curl_ssls_export_function(CURL *handle,
void *userptr,
const char *session_key,
const unsigned char *shmac,
size_t shmac_len,
const unsigned char *sdata,
size_t sdata_len,
curl_off_t valid_until,
int ietf_tls_id,
const char *alpn,
size_t earlydata_max); CURLcode curl_easy_ssls_export(CURL *handle,
curl_ssls_export_function *export_fn,
void *userptr);
This function iterates over all SSL session tickets that belong to the easy handle and invokes the export_fn callback on each of them, as long as the callback returns CURLE_OK.
The callback may then store this information and use curl_easy_ssls_import(3) in another libcurl instance to add SSL session tickets again. Reuse of SSL session tickets may result in faster handshakes and some connections might be able to send request data in the initial packets (0-RTT).
From all the parameters passed to the export_fn only two need to be persisted: either session_key or shamc and always sdata. All other parameters are informative, e.g. allow the callback to act only on specific session tickets.
Note that SSL sessions that involve a client certificate or SRP username/password are not exported.
It is recommended to only persist session_key when it can be protected from outside access. Since the hostname appears in plain text, it would allow any third party to see how curl has been used for.
A third party may brute-force known hostnames, but cannot just "grep" for them.
This functionality affects all TLS based protocols: HTTPS, FTPS, IMAPS, POP3S, SMTPS etc.
This option works only with the following TLS backends: BearSSL, GnuTLS, OpenSSL, mbedTLS and wolfSSL
CURLcode my_export_cb(CURL *handle,
void *userptr,
const char *session_key,
const unsigned char *shmac,
size_t shmac_len,
const unsigned char *sdata,
size_t sdata_len,
curl_off_t valid_until,
int ietf_tls_id,
const char *alpn,
size_t earlydata_max) {
/* persist sdata */
return CURLE_OK; } int main(void) {
CURLSHcode sh;
CURLSH *share = curl_share_init();
CURLcode rc;
CURL *curl;
sh = curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_SSL_SESSION);
if(sh)
printf("Error: %s\n", curl_share_strerror(sh));
curl = curl_easy_init();
if(curl) {
curl_easy_setopt(curl, CURLOPT_SHARE, share);
rc = curl_easy_ssls_export(curl, my_export_cb, NULL);
/* always cleanup */
curl_easy_cleanup(curl);
}
curl_share_cleanup(share); }
Added in curl 8.12.0
This function returns a CURLcode indicating success or error.
CURLE_OK (0) means everything was OK, non-zero means an error occurred, see libcurl-errors(3). If CURLOPT_ERRORBUFFER(3) was set with curl_easy_setopt(3) there can be an error message stored in the error buffer when non-zero is returned.
CURLOPT_SHARE(3), curl_easy_ssls_import(3), curl_share_setopt(3)
2025-02-08 | libcurl |