mirror of
https://github.com/curl/curl.git
synced 2026-06-22 18:25:37 +03:00
Before this patch curl used the C preprocessor to override standard memory allocation symbols: malloc, calloc, strdup, realloc, free. The goal of these is to replace them with curl's debug wrappers in `CURLDEBUG` builds, another was to replace them with the wrappers calling user-defined allocators in libcurl. This solution needed a bunch of workarounds to avoid breaking external headers: it relied on include order to do the overriding last. For "unity" builds it needed to reset overrides before external includes. Also in test apps, which are always built as single source files. It also needed the `(symbol)` trick to avoid overrides in some places. This would still not fix cases where the standard symbols were macros. It was also fragile and difficult to figure out which was the actual function behind an alloc or free call in a specific piece of code. This in turn caused bugs where the wrong allocator was accidentally called. To avoid these problems, this patch replaces this solution with `curlx_`-prefixed allocator macros, and mapping them _once_ to either the libcurl wrappers, the debug wrappers or the standard ones, matching the rest of the code in libtests. This concludes the long journey to avoid redefining standard functions in the curl codebase. Note: I did not update `packages/OS400/*.c` sources. They did not `#include` `curl_setup.h`, `curl_memory.h` or `memdebug.h`, meaning the overrides were never applied to them. This may or may not have been correct. For now I suppressed the direct use of standard allocators via a local `.checksrc`. Probably they (except for `curlcl.c`) should be updated to include `curl_setup.h` and use the `curlx_` macros. This patch changes mappings in two places: - `lib/curl_threads.c` in libtests: Before this patch it mapped to libcurl allocators. After, it maps to standard allocators, like the rest of libtests code. - `units`: before this patch it mapped to standard allocators. After, it maps to libcurl allocators. Also: - drop all position-dependent `curl_memory.h` and `memdebug.h` includes, and delete the now unnecessary headers. - rename `Curl_tcsdup` macro to `curlx_tcsdup` and define like the other allocators. - map `curlx_strdup()` to `_strdup()` on Windows (was: `strdup()`). To fix warnings silenced via `_CRT_NONSTDC_NO_DEPRECATE`. - multibyte: map `curlx_convert_*()` to `_strdup()` on Windows (was: `strdup()`). - src: do not reuse the `strdup` name for the local replacement. - lib509: call `_strdup()` on Windows (was: `strdup()`). - test1132: delete test obsoleted by this patch. - CHECKSRC.md: update text for `SNPRINTF`. - checksrc: ban standard allocator symbols. Follow-up tob12da22db1#18866 Follow-up todb98daab05#18844 Follow-up to4deea9396b#18814 Follow-up to9678ff5b1b#18776 Follow-up to10bac43b87#18774 Follow-up to20142f5d06#18634 Follow-up tobf7375ecc5#18503 Follow-up to9863599d69#18502 Follow-up to3bb5e58c10#17827 Closes #19626
592 lines
16 KiB
C
592 lines
16 KiB
C
/***************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
*
|
|
* This software is licensed as described in the file COPYING, which
|
|
* you should have received as part of this distribution. The terms
|
|
* are also available at https://curl.se/docs/copyright.html.
|
|
*
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
* SPDX-License-Identifier: curl
|
|
*
|
|
***************************************************************************/
|
|
/*
|
|
* The Strict-Transport-Security header is defined in RFC 6797:
|
|
* https://datatracker.ietf.org/doc/html/rfc6797
|
|
*/
|
|
#include "curl_setup.h"
|
|
|
|
#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_HSTS)
|
|
#include <curl/curl.h>
|
|
#include "urldata.h"
|
|
#include "llist.h"
|
|
#include "hsts.h"
|
|
#include "curl_fopen.h"
|
|
#include "curl_get_line.h"
|
|
#include "sendf.h"
|
|
#include "parsedate.h"
|
|
#include "rename.h"
|
|
#include "curl_share.h"
|
|
#include "strdup.h"
|
|
#include "curlx/strparse.h"
|
|
|
|
#define MAX_HSTS_LINE 4095
|
|
#define MAX_HSTS_HOSTLEN 2048
|
|
#define MAX_HSTS_DATELEN 256
|
|
#define UNLIMITED "unlimited"
|
|
|
|
#if defined(DEBUGBUILD) || defined(UNITTESTS)
|
|
/* to play well with debug builds, we can *set* a fixed time this will
|
|
return */
|
|
time_t deltatime; /* allow for "adjustments" for unit test purposes */
|
|
static time_t hsts_debugtime(void *unused)
|
|
{
|
|
const char *timestr = getenv("CURL_TIME");
|
|
(void)unused;
|
|
if(timestr) {
|
|
curl_off_t val;
|
|
if(!curlx_str_number(×tr, &val, TIME_T_MAX))
|
|
val += (curl_off_t)deltatime;
|
|
return (time_t)val;
|
|
}
|
|
return time(NULL);
|
|
}
|
|
#undef time
|
|
#define time(x) hsts_debugtime(x)
|
|
#endif
|
|
|
|
struct hsts *Curl_hsts_init(void)
|
|
{
|
|
struct hsts *h = curlx_calloc(1, sizeof(struct hsts));
|
|
if(h) {
|
|
Curl_llist_init(&h->list, NULL);
|
|
}
|
|
return h;
|
|
}
|
|
|
|
static void hsts_free(struct stsentry *e)
|
|
{
|
|
curlx_free(CURL_UNCONST(e->host));
|
|
curlx_free(e);
|
|
}
|
|
|
|
void Curl_hsts_cleanup(struct hsts **hp)
|
|
{
|
|
struct hsts *h = *hp;
|
|
if(h) {
|
|
struct Curl_llist_node *e;
|
|
struct Curl_llist_node *n;
|
|
for(e = Curl_llist_head(&h->list); e; e = n) {
|
|
struct stsentry *sts = Curl_node_elem(e);
|
|
n = Curl_node_next(e);
|
|
hsts_free(sts);
|
|
}
|
|
curlx_free(h->filename);
|
|
curlx_free(h);
|
|
*hp = NULL;
|
|
}
|
|
}
|
|
|
|
static CURLcode hsts_create(struct hsts *h,
|
|
const char *hostname,
|
|
size_t hlen,
|
|
bool subdomains,
|
|
curl_off_t expires)
|
|
{
|
|
DEBUGASSERT(h);
|
|
DEBUGASSERT(hostname);
|
|
|
|
if(hlen && (hostname[hlen - 1] == '.'))
|
|
/* strip off any trailing dot */
|
|
--hlen;
|
|
if(hlen) {
|
|
char *duphost;
|
|
struct stsentry *sts = curlx_calloc(1, sizeof(struct stsentry));
|
|
if(!sts)
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
duphost = Curl_memdup0(hostname, hlen);
|
|
if(!duphost) {
|
|
curlx_free(sts);
|
|
return CURLE_OUT_OF_MEMORY;
|
|
}
|
|
|
|
sts->host = duphost;
|
|
sts->expires = expires;
|
|
sts->includeSubDomains = subdomains;
|
|
Curl_llist_append(&h->list, sts, &sts->node);
|
|
}
|
|
return CURLE_OK;
|
|
}
|
|
|
|
CURLcode Curl_hsts_parse(struct hsts *h, const char *hostname,
|
|
const char *header)
|
|
{
|
|
const char *p = header;
|
|
curl_off_t expires = 0;
|
|
bool gotma = FALSE;
|
|
bool gotinc = FALSE;
|
|
bool subdomains = FALSE;
|
|
struct stsentry *sts;
|
|
time_t now = time(NULL);
|
|
size_t hlen = strlen(hostname);
|
|
|
|
if(Curl_host_is_ipnum(hostname))
|
|
/* "explicit IP address identification of all forms is excluded."
|
|
/ RFC 6797 */
|
|
return CURLE_OK;
|
|
|
|
do {
|
|
curlx_str_passblanks(&p);
|
|
if(curl_strnequal("max-age", p, 7)) {
|
|
bool quoted = FALSE;
|
|
int rc;
|
|
|
|
if(gotma)
|
|
return CURLE_BAD_FUNCTION_ARGUMENT;
|
|
|
|
p += 7;
|
|
curlx_str_passblanks(&p);
|
|
if(curlx_str_single(&p, '='))
|
|
return CURLE_BAD_FUNCTION_ARGUMENT;
|
|
curlx_str_passblanks(&p);
|
|
|
|
if(!curlx_str_single(&p, '\"'))
|
|
quoted = TRUE;
|
|
|
|
rc = curlx_str_number(&p, &expires, TIME_T_MAX);
|
|
if(rc == STRE_OVERFLOW)
|
|
expires = CURL_OFF_T_MAX;
|
|
else if(rc)
|
|
/* invalid max-age */
|
|
return CURLE_BAD_FUNCTION_ARGUMENT;
|
|
|
|
if(quoted) {
|
|
if(*p != '\"')
|
|
return CURLE_BAD_FUNCTION_ARGUMENT;
|
|
p++;
|
|
}
|
|
gotma = TRUE;
|
|
}
|
|
else if(curl_strnequal("includesubdomains", p, 17)) {
|
|
if(gotinc)
|
|
return CURLE_BAD_FUNCTION_ARGUMENT;
|
|
subdomains = TRUE;
|
|
p += 17;
|
|
gotinc = TRUE;
|
|
}
|
|
else {
|
|
/* unknown directive, do a lame attempt to skip */
|
|
while(*p && (*p != ';'))
|
|
p++;
|
|
}
|
|
|
|
curlx_str_passblanks(&p);
|
|
if(*p == ';')
|
|
p++;
|
|
} while(*p);
|
|
|
|
if(!gotma)
|
|
/* max-age is mandatory */
|
|
return CURLE_BAD_FUNCTION_ARGUMENT;
|
|
|
|
if(!expires) {
|
|
/* remove the entry if present verbatim (without subdomain match) */
|
|
sts = Curl_hsts(h, hostname, hlen, FALSE);
|
|
if(sts) {
|
|
Curl_node_remove(&sts->node);
|
|
hsts_free(sts);
|
|
}
|
|
return CURLE_OK;
|
|
}
|
|
|
|
if(CURL_OFF_T_MAX - now < expires)
|
|
/* would overflow, use maximum value */
|
|
expires = CURL_OFF_T_MAX;
|
|
else
|
|
expires += now;
|
|
|
|
/* check if it already exists */
|
|
sts = Curl_hsts(h, hostname, hlen, FALSE);
|
|
if(sts) {
|
|
/* just update these fields */
|
|
sts->expires = expires;
|
|
sts->includeSubDomains = subdomains;
|
|
}
|
|
else
|
|
return hsts_create(h, hostname, hlen, subdomains, expires);
|
|
|
|
return CURLE_OK;
|
|
}
|
|
|
|
/*
|
|
* Return TRUE if the given hostname is currently an HSTS one.
|
|
*
|
|
* The 'subdomain' argument tells the function if subdomain matching should be
|
|
* attempted.
|
|
*/
|
|
struct stsentry *Curl_hsts(struct hsts *h, const char *hostname,
|
|
size_t hlen, bool subdomain)
|
|
{
|
|
struct stsentry *bestsub = NULL;
|
|
if(h) {
|
|
time_t now = time(NULL);
|
|
struct Curl_llist_node *e;
|
|
struct Curl_llist_node *n;
|
|
size_t blen = 0;
|
|
|
|
if((hlen > MAX_HSTS_HOSTLEN) || !hlen)
|
|
return NULL;
|
|
if(hostname[hlen-1] == '.')
|
|
/* remove the trailing dot */
|
|
--hlen;
|
|
|
|
for(e = Curl_llist_head(&h->list); e; e = n) {
|
|
struct stsentry *sts = Curl_node_elem(e);
|
|
size_t ntail;
|
|
n = Curl_node_next(e);
|
|
if(sts->expires <= now) {
|
|
/* remove expired entries */
|
|
Curl_node_remove(&sts->node);
|
|
hsts_free(sts);
|
|
continue;
|
|
}
|
|
ntail = strlen(sts->host);
|
|
if((subdomain && sts->includeSubDomains) && (ntail < hlen)) {
|
|
size_t offs = hlen - ntail;
|
|
if((hostname[offs-1] == '.') &&
|
|
curl_strnequal(&hostname[offs], sts->host, ntail) &&
|
|
(ntail > blen)) {
|
|
/* save the tail match with the longest tail */
|
|
bestsub = sts;
|
|
blen = ntail;
|
|
}
|
|
}
|
|
/* avoid curl_strequal because the hostname is not null-terminated */
|
|
if((hlen == ntail) && curl_strnequal(hostname, sts->host, hlen))
|
|
return sts;
|
|
}
|
|
}
|
|
return bestsub;
|
|
}
|
|
|
|
/*
|
|
* Send this HSTS entry to the write callback.
|
|
*/
|
|
static CURLcode hsts_push(struct Curl_easy *data,
|
|
struct curl_index *i,
|
|
struct stsentry *sts,
|
|
bool *stop)
|
|
{
|
|
struct curl_hstsentry e;
|
|
CURLSTScode sc;
|
|
struct tm stamp;
|
|
CURLcode result;
|
|
|
|
e.name = (char *)CURL_UNCONST(sts->host);
|
|
e.namelen = strlen(sts->host);
|
|
e.includeSubDomains = sts->includeSubDomains;
|
|
|
|
if(sts->expires != TIME_T_MAX) {
|
|
result = Curl_gmtime((time_t)sts->expires, &stamp);
|
|
if(result)
|
|
return result;
|
|
|
|
curl_msnprintf(e.expire, sizeof(e.expire), "%d%02d%02d %02d:%02d:%02d",
|
|
stamp.tm_year + 1900, stamp.tm_mon + 1, stamp.tm_mday,
|
|
stamp.tm_hour, stamp.tm_min, stamp.tm_sec);
|
|
}
|
|
else
|
|
strcpy(e.expire, UNLIMITED);
|
|
|
|
sc = data->set.hsts_write(data, &e, i,
|
|
data->set.hsts_write_userp);
|
|
*stop = (sc != CURLSTS_OK);
|
|
return sc == CURLSTS_FAIL ? CURLE_BAD_FUNCTION_ARGUMENT : CURLE_OK;
|
|
}
|
|
|
|
/*
|
|
* Write this single hsts entry to a single output line
|
|
*/
|
|
static CURLcode hsts_out(struct stsentry *sts, FILE *fp)
|
|
{
|
|
struct tm stamp;
|
|
if(sts->expires != TIME_T_MAX) {
|
|
CURLcode result = Curl_gmtime((time_t)sts->expires, &stamp);
|
|
if(result)
|
|
return result;
|
|
curl_mfprintf(fp, "%s%s \"%d%02d%02d %02d:%02d:%02d\"\n",
|
|
sts->includeSubDomains ? ".": "", sts->host,
|
|
stamp.tm_year + 1900, stamp.tm_mon + 1, stamp.tm_mday,
|
|
stamp.tm_hour, stamp.tm_min, stamp.tm_sec);
|
|
}
|
|
else
|
|
curl_mfprintf(fp, "%s%s \"%s\"\n",
|
|
sts->includeSubDomains ? ".": "", sts->host, UNLIMITED);
|
|
return CURLE_OK;
|
|
}
|
|
|
|
|
|
/*
|
|
* Curl_https_save() writes the HSTS cache to file and callback.
|
|
*/
|
|
CURLcode Curl_hsts_save(struct Curl_easy *data, struct hsts *h,
|
|
const char *file)
|
|
{
|
|
struct Curl_llist_node *e;
|
|
struct Curl_llist_node *n;
|
|
CURLcode result = CURLE_OK;
|
|
FILE *out;
|
|
char *tempstore = NULL;
|
|
|
|
if(!h)
|
|
/* no cache activated */
|
|
return CURLE_OK;
|
|
|
|
/* if no new name is given, use the one we stored from the load */
|
|
if(!file && h->filename)
|
|
file = h->filename;
|
|
|
|
if((h->flags & CURLHSTS_READONLYFILE) || !file || !file[0])
|
|
/* marked as read-only, no file or zero length filename */
|
|
goto skipsave;
|
|
|
|
result = Curl_fopen(data, file, &out, &tempstore);
|
|
if(!result) {
|
|
fputs("# Your HSTS cache. https://curl.se/docs/hsts.html\n"
|
|
"# This file was generated by libcurl! Edit at your own risk.\n",
|
|
out);
|
|
for(e = Curl_llist_head(&h->list); e; e = n) {
|
|
struct stsentry *sts = Curl_node_elem(e);
|
|
n = Curl_node_next(e);
|
|
result = hsts_out(sts, out);
|
|
if(result)
|
|
break;
|
|
}
|
|
curlx_fclose(out);
|
|
if(!result && tempstore && Curl_rename(tempstore, file))
|
|
result = CURLE_WRITE_ERROR;
|
|
|
|
if(result && tempstore)
|
|
unlink(tempstore);
|
|
}
|
|
curlx_free(tempstore);
|
|
skipsave:
|
|
if(data->set.hsts_write) {
|
|
/* if there is a write callback */
|
|
struct curl_index i; /* count */
|
|
i.total = Curl_llist_count(&h->list);
|
|
i.index = 0;
|
|
for(e = Curl_llist_head(&h->list); e; e = n) {
|
|
struct stsentry *sts = Curl_node_elem(e);
|
|
bool stop;
|
|
n = Curl_node_next(e);
|
|
result = hsts_push(data, &i, sts, &stop);
|
|
if(result || stop)
|
|
break;
|
|
i.index++;
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
/* only returns SERIOUS errors */
|
|
static CURLcode hsts_add(struct hsts *h, const char *line)
|
|
{
|
|
/* Example lines:
|
|
example.com "20191231 10:00:00"
|
|
.example.net "20191231 10:00:00"
|
|
*/
|
|
struct Curl_str host;
|
|
struct Curl_str date;
|
|
|
|
if(curlx_str_word(&line, &host, MAX_HSTS_HOSTLEN) ||
|
|
curlx_str_singlespace(&line) ||
|
|
curlx_str_quotedword(&line, &date, MAX_HSTS_DATELEN) ||
|
|
curlx_str_newline(&line))
|
|
;
|
|
else {
|
|
CURLcode result = CURLE_OK;
|
|
bool subdomain = FALSE;
|
|
struct stsentry *e;
|
|
char dbuf[MAX_HSTS_DATELEN + 1];
|
|
time_t expires = 0;
|
|
const char *hp = curlx_str(&host);
|
|
|
|
/* The date parser works on a null-terminated string. The maximum length
|
|
is upheld by curlx_str_quotedword(). */
|
|
memcpy(dbuf, curlx_str(&date), curlx_strlen(&date));
|
|
dbuf[curlx_strlen(&date)] = 0;
|
|
|
|
if(!strcmp(dbuf, UNLIMITED))
|
|
expires = TIME_T_MAX;
|
|
else
|
|
Curl_getdate_capped(dbuf, &expires);
|
|
|
|
if(hp[0] == '.') {
|
|
curlx_str_nudge(&host, 1);
|
|
subdomain = TRUE;
|
|
}
|
|
/* only add it if not already present */
|
|
e = Curl_hsts(h, curlx_str(&host), curlx_strlen(&host), subdomain);
|
|
if(!e)
|
|
result = hsts_create(h, curlx_str(&host), curlx_strlen(&host),
|
|
subdomain, expires);
|
|
else if(curlx_str_casecompare(&host, e->host)) {
|
|
/* the same hostname, use the largest expire time */
|
|
if(expires > e->expires)
|
|
e->expires = expires;
|
|
}
|
|
if(result)
|
|
return result;
|
|
}
|
|
|
|
return CURLE_OK;
|
|
}
|
|
|
|
/*
|
|
* Load HSTS data from callback.
|
|
*
|
|
*/
|
|
static CURLcode hsts_pull(struct Curl_easy *data, struct hsts *h)
|
|
{
|
|
/* if the HSTS read callback is set, use it */
|
|
if(data->set.hsts_read) {
|
|
CURLSTScode sc;
|
|
DEBUGASSERT(h);
|
|
do {
|
|
char buffer[MAX_HSTS_HOSTLEN + 1];
|
|
struct curl_hstsentry e;
|
|
e.name = buffer;
|
|
e.namelen = sizeof(buffer)-1;
|
|
e.includeSubDomains = FALSE; /* default */
|
|
e.expire[0] = 0;
|
|
e.name[0] = 0; /* just to make it clean */
|
|
sc = data->set.hsts_read(data, &e, data->set.hsts_read_userp);
|
|
if(sc == CURLSTS_OK) {
|
|
time_t expires = 0;
|
|
CURLcode result;
|
|
DEBUGASSERT(e.name[0]);
|
|
if(!e.name[0])
|
|
/* bail out if no name was stored */
|
|
return CURLE_BAD_FUNCTION_ARGUMENT;
|
|
if(e.expire[0])
|
|
Curl_getdate_capped(e.expire, &expires);
|
|
else
|
|
expires = TIME_T_MAX; /* the end of time */
|
|
result = hsts_create(h, e.name, strlen(e.name),
|
|
/* bitfield to bool conversion: */
|
|
e.includeSubDomains ? TRUE : FALSE,
|
|
expires);
|
|
if(result)
|
|
return result;
|
|
}
|
|
else if(sc == CURLSTS_FAIL)
|
|
return CURLE_ABORTED_BY_CALLBACK;
|
|
} while(sc == CURLSTS_OK);
|
|
}
|
|
return CURLE_OK;
|
|
}
|
|
|
|
/*
|
|
* Load the HSTS cache from the given file. The text based line-oriented file
|
|
* format is documented here: https://curl.se/docs/hsts.html
|
|
*
|
|
* This function only returns error on major problems that prevent hsts
|
|
* handling to work completely. It will ignore individual syntactical errors
|
|
* etc.
|
|
*/
|
|
static CURLcode hsts_load(struct hsts *h, const char *file)
|
|
{
|
|
CURLcode result = CURLE_OK;
|
|
FILE *fp;
|
|
|
|
/* we need a private copy of the filename so that the hsts cache file
|
|
name survives an easy handle reset */
|
|
curlx_free(h->filename);
|
|
h->filename = curlx_strdup(file);
|
|
if(!h->filename)
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
fp = curlx_fopen(file, FOPEN_READTEXT);
|
|
if(fp) {
|
|
struct dynbuf buf;
|
|
bool eof = FALSE;
|
|
curlx_dyn_init(&buf, MAX_HSTS_LINE);
|
|
do {
|
|
result = Curl_get_line(&buf, fp, &eof);
|
|
if(!result) {
|
|
const char *lineptr = curlx_dyn_ptr(&buf);
|
|
curlx_str_passblanks(&lineptr);
|
|
|
|
/*
|
|
* Skip empty or commented lines, since we know the line will have a
|
|
* trailing newline from Curl_get_line we can treat length 1 as empty.
|
|
*/
|
|
if((*lineptr == '#') || strlen(lineptr) <= 1)
|
|
continue;
|
|
|
|
hsts_add(h, lineptr);
|
|
}
|
|
} while(!result && !eof);
|
|
curlx_dyn_free(&buf); /* free the line buffer */
|
|
curlx_fclose(fp);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
/*
|
|
* Curl_hsts_loadfile() loads HSTS from file
|
|
*/
|
|
CURLcode Curl_hsts_loadfile(struct Curl_easy *data,
|
|
struct hsts *h, const char *file)
|
|
{
|
|
DEBUGASSERT(h);
|
|
(void)data;
|
|
return hsts_load(h, file);
|
|
}
|
|
|
|
/*
|
|
* Curl_hsts_loadcb() loads HSTS from callback
|
|
*/
|
|
CURLcode Curl_hsts_loadcb(struct Curl_easy *data, struct hsts *h)
|
|
{
|
|
if(h)
|
|
return hsts_pull(data, h);
|
|
return CURLE_OK;
|
|
}
|
|
|
|
CURLcode Curl_hsts_loadfiles(struct Curl_easy *data)
|
|
{
|
|
CURLcode result = CURLE_OK;
|
|
struct curl_slist *l = data->state.hstslist;
|
|
if(l) {
|
|
Curl_share_lock(data, CURL_LOCK_DATA_HSTS, CURL_LOCK_ACCESS_SINGLE);
|
|
|
|
while(l) {
|
|
result = Curl_hsts_loadfile(data, data->hsts, l->data);
|
|
if(result)
|
|
break;
|
|
l = l->next;
|
|
}
|
|
Curl_share_unlock(data, CURL_LOCK_DATA_HSTS);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
#if defined(DEBUGBUILD) || defined(UNITTESTS)
|
|
#undef time
|
|
#endif
|
|
|
|
#endif /* CURL_DISABLE_HTTP || CURL_DISABLE_HSTS */
|