mirror of
https://github.com/curl/curl.git
synced 2026-05-06 01:27:27 +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
309 lines
7.5 KiB
C
309 lines
7.5 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
|
|
*
|
|
***************************************************************************/
|
|
|
|
#include "curl_setup.h"
|
|
|
|
#include <curl/curl.h>
|
|
#include "urldata.h"
|
|
#include "connect.h"
|
|
#include "curl_share.h"
|
|
#include "psl.h"
|
|
#include "vtls/vtls.h"
|
|
#include "vtls/vtls_scache.h"
|
|
#include "hsts.h"
|
|
#include "url.h"
|
|
|
|
CURLSH *
|
|
curl_share_init(void)
|
|
{
|
|
struct Curl_share *share = curlx_calloc(1, sizeof(struct Curl_share));
|
|
if(share) {
|
|
share->magic = CURL_GOOD_SHARE;
|
|
share->specifier |= (1 << CURL_LOCK_DATA_SHARE);
|
|
Curl_dnscache_init(&share->dnscache, 23);
|
|
share->admin = curl_easy_init();
|
|
if(!share->admin) {
|
|
curlx_free(share);
|
|
return NULL;
|
|
}
|
|
/* admin handles have mid 0 */
|
|
share->admin->mid = 0;
|
|
share->admin->state.internal = TRUE;
|
|
#ifdef DEBUGBUILD
|
|
if(getenv("CURL_DEBUG"))
|
|
share->admin->set.verbose = TRUE;
|
|
#endif
|
|
}
|
|
|
|
return share;
|
|
}
|
|
|
|
#undef curl_share_setopt
|
|
CURLSHcode
|
|
curl_share_setopt(CURLSH *sh, CURLSHoption option, ...)
|
|
{
|
|
va_list param;
|
|
int type;
|
|
curl_lock_function lockfunc;
|
|
curl_unlock_function unlockfunc;
|
|
void *ptr;
|
|
CURLSHcode res = CURLSHE_OK;
|
|
struct Curl_share *share = sh;
|
|
|
|
if(!GOOD_SHARE_HANDLE(share))
|
|
return CURLSHE_INVALID;
|
|
|
|
if(share->dirty)
|
|
/* do not allow setting options while one or more handles are already
|
|
using this share */
|
|
return CURLSHE_IN_USE;
|
|
|
|
va_start(param, option);
|
|
|
|
switch(option) {
|
|
case CURLSHOPT_SHARE:
|
|
/* this is a type this share will share */
|
|
type = va_arg(param, int);
|
|
|
|
switch(type) {
|
|
case CURL_LOCK_DATA_DNS:
|
|
break;
|
|
|
|
case CURL_LOCK_DATA_COOKIE:
|
|
#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_COOKIES)
|
|
if(!share->cookies) {
|
|
share->cookies = Curl_cookie_init();
|
|
if(!share->cookies)
|
|
res = CURLSHE_NOMEM;
|
|
}
|
|
#else /* CURL_DISABLE_HTTP */
|
|
res = CURLSHE_NOT_BUILT_IN;
|
|
#endif
|
|
break;
|
|
|
|
case CURL_LOCK_DATA_HSTS:
|
|
#ifndef CURL_DISABLE_HSTS
|
|
if(!share->hsts) {
|
|
share->hsts = Curl_hsts_init();
|
|
if(!share->hsts)
|
|
res = CURLSHE_NOMEM;
|
|
}
|
|
#else /* CURL_DISABLE_HSTS */
|
|
res = CURLSHE_NOT_BUILT_IN;
|
|
#endif
|
|
break;
|
|
|
|
case CURL_LOCK_DATA_SSL_SESSION:
|
|
#ifdef USE_SSL
|
|
if(!share->ssl_scache) {
|
|
/* There is no way (yet) for the application to configure the
|
|
* session cache size, shared between many transfers. As for curl
|
|
* itself, a high session count will impact startup time. Also, the
|
|
* scache is not optimized for several hundreds of peers. So,
|
|
* keep it at a reasonable level. */
|
|
if(Curl_ssl_scache_create(25, 2, &share->ssl_scache))
|
|
res = CURLSHE_NOMEM;
|
|
}
|
|
#else
|
|
res = CURLSHE_NOT_BUILT_IN;
|
|
#endif
|
|
break;
|
|
|
|
case CURL_LOCK_DATA_CONNECT:
|
|
/* It is safe to set this option several times on a share. */
|
|
if(!share->cpool.initialised) {
|
|
Curl_cpool_init(&share->cpool, share->admin, share, 103);
|
|
}
|
|
break;
|
|
|
|
case CURL_LOCK_DATA_PSL:
|
|
#ifndef USE_LIBPSL
|
|
res = CURLSHE_NOT_BUILT_IN;
|
|
#endif
|
|
break;
|
|
|
|
default:
|
|
res = CURLSHE_BAD_OPTION;
|
|
}
|
|
if(!res)
|
|
share->specifier |= (unsigned int)(1 << type);
|
|
break;
|
|
|
|
case CURLSHOPT_UNSHARE:
|
|
/* this is a type this share will no longer share */
|
|
type = va_arg(param, int);
|
|
share->specifier &= ~(unsigned int)(1 << type);
|
|
switch(type) {
|
|
case CURL_LOCK_DATA_DNS:
|
|
break;
|
|
|
|
case CURL_LOCK_DATA_COOKIE:
|
|
#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_COOKIES)
|
|
if(share->cookies) {
|
|
Curl_cookie_cleanup(share->cookies);
|
|
share->cookies = NULL;
|
|
}
|
|
#else /* CURL_DISABLE_HTTP */
|
|
res = CURLSHE_NOT_BUILT_IN;
|
|
#endif
|
|
break;
|
|
|
|
case CURL_LOCK_DATA_HSTS:
|
|
#ifndef CURL_DISABLE_HSTS
|
|
if(share->hsts) {
|
|
Curl_hsts_cleanup(&share->hsts);
|
|
}
|
|
#else /* CURL_DISABLE_HSTS */
|
|
res = CURLSHE_NOT_BUILT_IN;
|
|
#endif
|
|
break;
|
|
|
|
case CURL_LOCK_DATA_SSL_SESSION:
|
|
#ifdef USE_SSL
|
|
if(share->ssl_scache) {
|
|
Curl_ssl_scache_destroy(share->ssl_scache);
|
|
share->ssl_scache = NULL;
|
|
}
|
|
#else
|
|
res = CURLSHE_NOT_BUILT_IN;
|
|
#endif
|
|
break;
|
|
|
|
case CURL_LOCK_DATA_CONNECT:
|
|
break;
|
|
|
|
default:
|
|
res = CURLSHE_BAD_OPTION;
|
|
break;
|
|
}
|
|
break;
|
|
|
|
case CURLSHOPT_LOCKFUNC:
|
|
lockfunc = va_arg(param, curl_lock_function);
|
|
share->lockfunc = lockfunc;
|
|
break;
|
|
|
|
case CURLSHOPT_UNLOCKFUNC:
|
|
unlockfunc = va_arg(param, curl_unlock_function);
|
|
share->unlockfunc = unlockfunc;
|
|
break;
|
|
|
|
case CURLSHOPT_USERDATA:
|
|
ptr = va_arg(param, void *);
|
|
share->clientdata = ptr;
|
|
break;
|
|
|
|
default:
|
|
res = CURLSHE_BAD_OPTION;
|
|
break;
|
|
}
|
|
|
|
va_end(param);
|
|
|
|
return res;
|
|
}
|
|
|
|
CURLSHcode
|
|
curl_share_cleanup(CURLSH *sh)
|
|
{
|
|
struct Curl_share *share = sh;
|
|
if(!GOOD_SHARE_HANDLE(share))
|
|
return CURLSHE_INVALID;
|
|
|
|
if(share->lockfunc)
|
|
share->lockfunc(NULL, CURL_LOCK_DATA_SHARE, CURL_LOCK_ACCESS_SINGLE,
|
|
share->clientdata);
|
|
|
|
if(share->dirty) {
|
|
if(share->unlockfunc)
|
|
share->unlockfunc(NULL, CURL_LOCK_DATA_SHARE, share->clientdata);
|
|
return CURLSHE_IN_USE;
|
|
}
|
|
|
|
if(share->specifier & (1 << CURL_LOCK_DATA_CONNECT)) {
|
|
Curl_cpool_destroy(&share->cpool);
|
|
}
|
|
|
|
Curl_dnscache_destroy(&share->dnscache);
|
|
|
|
#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_COOKIES)
|
|
Curl_cookie_cleanup(share->cookies);
|
|
#endif
|
|
|
|
#ifndef CURL_DISABLE_HSTS
|
|
Curl_hsts_cleanup(&share->hsts);
|
|
#endif
|
|
|
|
#ifdef USE_SSL
|
|
if(share->ssl_scache) {
|
|
Curl_ssl_scache_destroy(share->ssl_scache);
|
|
share->ssl_scache = NULL;
|
|
}
|
|
#endif
|
|
|
|
Curl_psl_destroy(&share->psl);
|
|
Curl_close(&share->admin);
|
|
|
|
if(share->unlockfunc)
|
|
share->unlockfunc(NULL, CURL_LOCK_DATA_SHARE, share->clientdata);
|
|
share->magic = 0;
|
|
curlx_free(share);
|
|
|
|
return CURLSHE_OK;
|
|
}
|
|
|
|
|
|
CURLSHcode
|
|
Curl_share_lock(struct Curl_easy *data, curl_lock_data type,
|
|
curl_lock_access accesstype)
|
|
{
|
|
struct Curl_share *share = data->share;
|
|
|
|
if(!share)
|
|
return CURLSHE_INVALID;
|
|
|
|
if(share->specifier & (unsigned int)(1 << type)) {
|
|
if(share->lockfunc) /* only call this if set! */
|
|
share->lockfunc(data, type, accesstype, share->clientdata);
|
|
}
|
|
/* else if we do not share this, pretend successful lock */
|
|
|
|
return CURLSHE_OK;
|
|
}
|
|
|
|
CURLSHcode
|
|
Curl_share_unlock(struct Curl_easy *data, curl_lock_data type)
|
|
{
|
|
struct Curl_share *share = data->share;
|
|
|
|
if(!share)
|
|
return CURLSHE_INVALID;
|
|
|
|
if(share->specifier & (unsigned int)(1 << type)) {
|
|
if(share->unlockfunc) /* only call this if set! */
|
|
share->unlockfunc (data, type, share->clientdata);
|
|
}
|
|
|
|
return CURLSHE_OK;
|
|
}
|