1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-06 11:13:12 +02:00
Files
unrealircd/src/url_curl.c
T
Bram Matthys 548d66d26c Reformat all source code, using 'make format' (clang-format 21.1.8)
This reformats entire UnrealIRCd source code, according to
.clang-format which was previously commited.

This is reproducable using clang-format version 21.1.8.

These are only visual changes, they have no effect on code.

This commit will be added to .git-blame-ignore-revs so 'git blame'
and the similar blame view on GitHub will ignore this commit.
2026-07-05 12:11:51 +02:00

517 lines
16 KiB
C

/*
* Unreal Internet Relay Chat Daemon, src/url.c
* (C) 2003 Dominick Meglio and the UnrealIRCd Team
* (C) 2004-2021 Bram Matthys <syzop@vulnscan.org>
* (C) 2012 William Pitcock <nenolod@dereferenced.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 1, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "unrealircd.h"
extern char *TLSKeyPasswd;
/* Stores information about the async transfer.
* Used to maintain information about the transfer
* to trigger the callback upon completion.
*/
typedef struct Download Download;
struct Download {
Download *prev, *next;
OutgoingWebRequest *request;
struct curl_slist *request_headers_curl;
char errorbuf[CURL_ERROR_SIZE];
FILE *file_fd; /**< File open for writing (otherwise NULL) */
char *filename;
char *memory_data; /**< Memory for writing response (otherwise NULL) */
long long memory_data_len; /**< Size of memory_data */
long long memory_data_allocated; /**< Total allocated memory for 'memory_data' */
long long bytes_written_to_file; /**< Bytes written to file_fd so far (for max_size cap) */
int cap_exceeded; /**< Set to 1 by do_download_memory/file when max_size was hit */
};
CURLM *multihandle = NULL;
Download *downloads = NULL;
void url_free_handle(Download *handle)
{
DelListItem(handle, downloads);
if (handle->file_fd)
fclose(handle->file_fd);
if (handle->filename && !handle->request->keep_file)
remove(handle->filename);
safe_free(handle->memory_data);
safe_free(handle->filename);
if (handle->request_headers_curl)
curl_slist_free_all(handle->request_headers_curl);
safe_free_outgoingwebrequest(handle->request);
safe_free(handle);
}
void url_cancel_handle_by_callback_data(void *ptr)
{
Download *d, *d_next;
for (d = downloads; d; d = d_next)
{
d_next = d->next;
if (d->request->callback_data == ptr)
{
d->request->callback = NULL;
d->request->callback_data = NULL;
}
}
}
/** Transform a TLSxxxxx_VERSION from OpenSSL to a CURL_SSLVERSION_TLSxxxx
* suitable for use in curl_easy_setopt(.., CURLOPT_SSLVERSION, xxx);
*/
long openssl_tls_version_to_curl_tls_version(int v)
{
switch (v)
{
#if defined(TLS1_2_VERSION) && defined(CURL_SSLVERSION_TLSv1_3)
case TLS1_2_VERSION:
return CURL_SSLVERSION_TLSv1_3;
#endif
#if defined(TLS1_3_VERSION) && defined(CURL_SSLVERSION_TLSv1_3)
case TLS1_3_VERSION:
return CURL_SSLVERSION_TLSv1_3;
#endif
default:
break;
}
return 0;
}
/*
* Sets up all of the SSL options necessary to support HTTPS/FTPS
* transfers.
*/
static void set_curl_tls_options(CURL *curl, int minimum_tls_version)
{
char buf[512];
#if 0
/* This would only be necessary if you use client certificates over HTTPS and such.
* But this information is not known yet since the configuration file has not been
* parsed yet at this point.
*/
curl_easy_setopt(curl, CURLOPT_SSLCERT, iConf.tls_options->certificate_file);
if (TLSKeyPasswd)
curl_easy_setopt(curl, CURLOPT_SSLKEYPASSWD, TLSKeyPasswd);
curl_easy_setopt(curl, CURLOPT_SSLKEY, iConf.tls_options->key_file);
#endif
snprintf(buf, sizeof(buf), "%s/tls/curl-ca-bundle.crt", CONFDIR);
#ifndef _WIN32
if (!file_exists(buf))
snprintf(buf, sizeof(buf), "%s/doc/conf/tls/curl-ca-bundle.crt", BUILDDIR);
#endif
curl_easy_setopt(curl, CURLOPT_CAINFO, buf);
#if LIBCURL_VERSION_NUM >= 0x073601
/* Set minimum TLS version to TLSv1.2. cURL 7.1.0 intoruced this but the
* implementation is only correct in 7.54.0+ to mean "or a later TLS version".
* Just for reference, 7.54.0 was released in April 2017, so you having an
* older library version on your system that would be... odd.
*/
// these are two calls, just in case the 2nd failed, then we are at least TLSv1.2+
curl_easy_setopt(curl, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1_2);
if (minimum_tls_version)
{
long v = openssl_tls_version_to_curl_tls_version(minimum_tls_version);
if (v)
curl_easy_setopt(curl, CURLOPT_SSLVERSION, v);
}
#endif
#if LIBCURL_VERSION_NUM >= 0x070900
/* Set cipher list for TLSv1.2 (cURL 7.9.0+) */
curl_easy_setopt(curl, CURLOPT_SSL_CIPHER_LIST, UNREALIRCD_DEFAULT_CIPHERS);
#endif
#if LIBCURL_VERSION_NUM >= 0x073d00
/* Set cipher list for TLSv1.3 (cURL 7.61.0+) */
curl_easy_setopt(curl, CURLOPT_TLS13_CIPHERS, UNREALIRCD_DEFAULT_CIPHERSUITES);
#endif
/* TODO: ideally we would set UNREALIRCD_DEFAULT_TLS_GROUPS_PRIMARY,
* fallback to _SECONDARY, and fallback to _TERTIARY here,
* but i don't think curl_easy_setopt() checks if they are valid,
* so we would only discover at runtime. Bad idea.
* Also can't assume that if it is working in unreal (which uses openssl)
* it will work with curl (which may use gnutls).
* So yeah, opted not to set it.
* In url_unreal we control everything and we do.
*/
}
/*
* Used by CURLOPT_WRITEFUNCTION to actually write the data to
* a stream. - File backed
*/
static size_t do_download_file(void *ptr, size_t size, size_t nmemb, void *stream)
{
Download *handle = (Download *)stream;
size_t write_sz = size * nmemb;
long long size_required = handle->bytes_written_to_file + (long long)write_sz;
if (size_required > handle->request->max_size)
{
handle->cap_exceeded = 1;
return 0; /* aborts the curl transfer; real error surfaced in url_check_multi_handles */
}
if (fwrite(ptr, size, nmemb, handle->file_fd) != nmemb)
return 0; /* short write -> abort */
handle->bytes_written_to_file += (long long)write_sz;
return nmemb;
}
/*
* Used by CURLOPT_WRITEFUNCTION to actually write the data to
* a stream. - Memory backed
*/
static size_t do_download_memory(void *ptr, size_t size, size_t nmemb, void *stream)
{
// DUPLICATE CODE: same as src/url_unreal.c, well.. sortof
Download *handle = (Download *)stream;
size_t write_sz = size * nmemb;
long long size_required = handle->memory_data_len + (long long)write_sz;
if (size_required > handle->request->max_size)
{
handle->cap_exceeded = 1;
safe_free(handle->memory_data);
handle->memory_data_len = 0;
handle->memory_data_allocated = 0;
return 0; /* aborts the curl transfer; real error surfaced in url_check_multi_handles */
}
if (size_required >= handle->memory_data_allocated - 1) // the -1 is for zero termination, even though it is binary..
{
long long newsize = ((size_required / URL_MEMORY_BACKED_CHUNK_SIZE) + 1) * URL_MEMORY_BACKED_CHUNK_SIZE;
char *newptr = realloc(handle->memory_data, newsize);
if (!newptr)
{
unreal_log(ULOG_ERROR, "url", "URL_DOWNLOAD_MEMORY", NULL, "Async URL callback failed when reading returned data: out of memory?");
safe_free(handle->memory_data);
handle->memory_data_len = 0;
handle->memory_data_allocated = 0;
return 0;
}
handle->memory_data = newptr;
handle->memory_data_allocated = newsize;
/* fill rest with zeroes, yeah.. no trust! ;D */
memset(handle->memory_data + handle->memory_data_len, 0, handle->memory_data_allocated - handle->memory_data_len);
}
memcpy(handle->memory_data + handle->memory_data_len, ptr, write_sz);
handle->memory_data_len += write_sz;
handle->memory_data[handle->memory_data_len] = '\0';
return write_sz;
}
/*
* Interface for new-style evented I/O.
*
* url_socket_pollcb is the callback from our eventing system into
* cURL.
*
* The other callbacks are for cURL notifying our event system what
* it wants to do.
*/
static void url_check_multi_handles(void)
{
CURLMsg *msg;
int msgs_left;
while ((msg = curl_multi_info_read(multihandle, &msgs_left)) != NULL)
{
if (msg->msg == CURLMSG_DONE)
{
Download *handle;
long code;
long last_mod;
CURL *easyhand = msg->easy_handle;
curl_easy_getinfo(easyhand, CURLINFO_RESPONSE_CODE, &code);
curl_easy_getinfo(easyhand, CURLINFO_PRIVATE, (char **)&handle);
curl_easy_getinfo(easyhand, CURLINFO_FILETIME, &last_mod);
if (handle->file_fd)
{
fclose(handle->file_fd);
handle->file_fd = NULL;
}
if (msg->data.result == CURLE_OK)
{
if (code == 304 || (last_mod != -1 && last_mod <= handle->request->cachetime))
{
url_callback(handle->request, NULL, handle->memory_data, handle->memory_data_len, NULL, 1, handle->request->callback_data);
} else
{
if ((last_mod != -1) && handle->filename)
unreal_setfilemodtime(handle->filename, last_mod);
url_callback(handle->request, handle->filename, handle->memory_data, handle->memory_data_len, NULL, 0, handle->request->callback_data);
}
} else
{
char capbuf[128];
const char *err = handle->errorbuf;
if (handle->cap_exceeded)
{
snprintf(capbuf, sizeof(capbuf),
"Response too large (maximum: %lld bytes)",
handle->request->max_size);
err = capbuf;
}
url_callback(handle->request, NULL, NULL, 0, err, 0, handle->request->callback_data);
}
if (handle->filename && !handle->request->keep_file)
remove(handle->filename);
url_free_handle(handle);
curl_multi_remove_handle(multihandle, easyhand);
/* NOTE: after curl_multi_remove_handle() you cannot use
* 'msg' anymore because it has freed by curl (as of v7.11.0),
* therefore 'easyhand' is used... fun! -- Syzop
*/
curl_easy_cleanup(easyhand);
}
}
}
static void url_socket_pollcb(int fd, int revents, void *data)
{
int flags = 0;
int dummy;
if (revents & FD_SELECT_READ)
flags |= CURL_CSELECT_IN;
if (revents & FD_SELECT_WRITE)
flags |= CURL_CSELECT_OUT;
curl_multi_socket_action(multihandle, fd, flags, &dummy);
url_check_multi_handles();
}
static int url_socket_cb(CURL *e, curl_socket_t s, int what, void *cbp, void *sockp)
{
if (what == CURL_POLL_REMOVE)
{
fd_close(s);
} else
{
FDEntry *fde = &fd_table[s];
int flags = 0;
if (!fde->is_open)
{
/* NOTE: We use FDCLOSE_NONE here because cURL will take
* care of the closing of the socket. So *WE* must never
* close the socket ourselves.
*/
fd_open(s, "CURL transfer", FDCLOSE_NONE);
}
if (what == CURL_POLL_IN || what == CURL_POLL_INOUT)
flags |= FD_SELECT_READ;
if (what == CURL_POLL_OUT || what == CURL_POLL_INOUT)
flags |= FD_SELECT_WRITE;
fd_setselect(s, flags, url_socket_pollcb, NULL);
}
return 0;
}
/* Handle timeouts. */
EVENT(url_socket_timeout)
{
int dummy;
curl_multi_socket_action(multihandle, CURL_SOCKET_TIMEOUT, 0, &dummy);
url_check_multi_handles();
}
static Event *url_socket_timeout_hdl = NULL;
/*
* Initializes the URL system
*/
void url_init(void)
{
curl_global_init(CURL_GLOBAL_ALL);
multihandle = curl_multi_init();
curl_multi_setopt(multihandle, CURLMOPT_SOCKETFUNCTION, url_socket_cb);
url_socket_timeout_hdl = EventAdd(NULL, "url_socket_timeout", url_socket_timeout, NULL, 500, 0);
}
void url_start_async(OutgoingWebRequest *request)
{
static char errorbuf[CURL_ERROR_SIZE];
char user_agent[256];
CURL *curl;
char *file;
const char *filename;
char *tmp;
Download *handle;
/* Check for the bare minimum */
if (!request->url || !request->http_method)
abort();
/* Set request defaults */
if (request->max_size <= 0)
request->max_size = request->store_in_file ? DOWNLOAD_MAX_SIZE_FILE_BACKED : DOWNLOAD_MAX_SIZE_MEMORY_BACKED;
curl = curl_easy_init();
if (!curl)
{
unreal_log(ULOG_ERROR, "main", "CURL_INTERNAL_FAILURE", NULL,
"Could not initialize curl handle. Maybe out of memory/resources?");
snprintf(errorbuf, sizeof(errorbuf), "Could not initialize curl handle");
return;
}
handle = safe_alloc(sizeof(Download));
handle->request = request;
if (handle->request->store_in_file)
{
file = url_getfilename(handle->request->url);
filename = unreal_getfilename(file);
tmp = unreal_mktemp(TMPDIR, filename ? filename : "download.conf");
handle->file_fd = fopen(tmp, "wb");
if (!handle->file_fd)
{
snprintf(errorbuf, sizeof(errorbuf), "Cannot create '%s': %s", tmp, strerror(ERRNO));
url_callback(handle->request, NULL, NULL, 0, errorbuf, 0, handle->request->callback_data);
safe_free(file);
safe_free(handle);
return;
}
safe_strdup(handle->filename, tmp);
safe_free(file);
}
AddListItem(handle, downloads);
curl_easy_setopt(curl, CURLOPT_URL, handle->request->url);
snprintf(user_agent, sizeof(user_agent), "UnrealIRCd %s", VERSIONONLY);
curl_easy_setopt(curl, CURLOPT_USERAGENT, user_agent);
if (handle->request->store_in_file)
{
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, do_download_file);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void *)handle);
} else
{
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, do_download_memory);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void *)handle);
handle->memory_data_allocated = URL_MEMORY_BACKED_CHUNK_SIZE;
handle->memory_data = safe_alloc(URL_MEMORY_BACKED_CHUNK_SIZE + 1);
}
if (handle->request->http_method == HTTP_METHOD_POST)
{
curl_easy_setopt(curl, CURLOPT_POST, 1);
#if LIBCURL_VERSION_NUM >= 0x071301
curl_easy_setopt(curl, CURLOPT_POSTREDIR, CURL_REDIR_POST_ALL);
#endif
if (handle->request->body && strlen(handle->request->body))
curl_easy_setopt(curl, CURLOPT_COPYPOSTFIELDS, handle->request->body);
}
if (handle->request->headers)
{
NameValuePrioList *n;
char buf[512];
for (n = handle->request->headers; n; n = n->next)
{
if (n->value)
snprintf(buf, sizeof(buf), "%s: %s", n->name, n->value);
else
snprintf(buf, sizeof(buf), "%s:", n->name);
handle->request_headers_curl = curl_slist_append(handle->request_headers_curl, buf);
}
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, handle->request_headers_curl);
}
curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1);
set_curl_tls_options(curl, handle->request->minimum_tls_version);
memset(handle->errorbuf, 0, CURL_ERROR_SIZE);
curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, handle->errorbuf);
curl_easy_setopt(curl, CURLOPT_PRIVATE, (char *)handle);
curl_easy_setopt(curl, CURLOPT_FILETIME, 1);
/* We need to set CURLOPT_FORBID_REUSE because otherwise libcurl does not
* notify us (or not in time) about FD close/opens, thus we end up closing and
* screwing up another innocent FD, like a listener (BAD!). In my view a bug, but
* mailing list archives seem to indicate curl devs have a different opinion
* on these matters...
* Actually I don't know for sure if this option alone fixes 100% of the cases
* but at least I can't crash my server anymore.
* As a side-effect we also fix useless CLOSE_WAIT connections.
*/
curl_easy_setopt(curl, CURLOPT_FORBID_REUSE, 1);
if (handle->request->cachetime)
{
curl_easy_setopt(curl, CURLOPT_TIMECONDITION, CURL_TIMECOND_IFMODSINCE);
curl_easy_setopt(curl, CURLOPT_TIMEVALUE, handle->request->cachetime);
}
curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1);
curl_easy_setopt(curl, CURLOPT_TIMEOUT, request->transfer_timeout ? request->transfer_timeout : DOWNLOAD_TRANSFER_TIMEOUT);
curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, request->connect_timeout ? request->connect_timeout : DOWNLOAD_CONNECT_TIMEOUT);
/* Reject early if Content-Length exceeds the cap. */
curl_easy_setopt(curl, CURLOPT_MAXFILESIZE_LARGE, (curl_off_t)request->max_size);
#if LIBCURL_VERSION_NUM >= 0x070f01
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1);
curl_easy_setopt(curl, CURLOPT_MAXREDIRS, handle->request->max_redirects);
#endif
curl_multi_add_handle(multihandle, curl);
}
char *urlencode(const char *s, char *wbuf, int wlen)
{
char *ret = curl_easy_escape(NULL, s, strlen(s));
if (ret == NULL)
{
if (wlen > 0)
*wbuf = '\0';
return NULL;
}
strlcpy(wbuf, ret, wlen);
return wbuf;
}
int downloads_in_progress(void)
{
Download *d;
int count = 0;
/* Bit stupid to do it this slow way, can't we maintain a counter? Needs to be accurate though */
for (d = downloads; d; d = d->next)
count++;
return count;
}