Initial commit

This commit is contained in:
2026-02-02 04:50:13 +01:00
commit 5b11698731
22592 changed files with 7677434 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
*
*/
#include "backends/networking/basic/curl/cacert.h"
#include "common/fs.h"
namespace Networking {
Common::String getCaCertPath() {
#if defined(DATA_PATH)
static enum {
kNotInitialized,
kFileNotFound,
kFileExists
} state = kNotInitialized;
if (state == kNotInitialized) {
Common::FSNode node(DATA_PATH "/cacert.pem");
state = node.exists() ? kFileExists : kFileNotFound;
}
if (state == kFileExists) {
return DATA_PATH "/cacert.pem";
} else {
return "";
}
#else
return "";
#endif
}
} // End of namespace Networking

View File

@@ -0,0 +1,33 @@
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef BACKENDS_NETWORKING_BASIC_CURL_CACERT_H
#define BACKENDS_NETWORKING_BASIC_CURL_CACERT_H
#include "common/str.h"
namespace Networking {
/** Return the path to the CA certificates bundle. */
Common::String getCaCertPath();
}
#endif

View File

@@ -0,0 +1,177 @@
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
*
*/
#define FORBIDDEN_SYMBOL_ALLOW_ALL
#include <curl/curl.h>
#include "backends/networking/basic/curl/socket.h"
#include "backends/networking/basic/curl/cacert.h"
#include "common/debug.h"
#include "common/system.h"
// Auxiliary function that waits on the socket.
// From https://github.com/curl/curl/blob/master/docs/examples/sendrecv.c
static int waitOnSocket(curl_socket_t sockfd, int for_recv, long timeout_ms) {
struct timeval tv {};
fd_set infd {}, outfd {}, errfd {};
int res;
tv.tv_sec = timeout_ms / 1000;
tv.tv_usec = (timeout_ms % 1000) * 1000;
FD_ZERO(&infd);
FD_ZERO(&outfd);
FD_ZERO(&errfd);
FD_SET(sockfd, &errfd); /* always check for error */
if(for_recv) {
FD_SET(sockfd, &infd);
} else {
FD_SET(sockfd, &outfd);
}
/* select() returns the number of signalled sockets or -1 */
res = select((int)sockfd + 1, &infd, &outfd, &errfd, &tv);
return res;
}
namespace Networking {
Socket *Socket::connect(const Common::String &url) {
CURL *easy = curl_easy_init();
if (!easy) {
return nullptr;
}
curl_easy_setopt(easy, CURLOPT_URL, url.c_str());
// Just connect to the host, do not do any transfers.
curl_easy_setopt(easy, CURLOPT_CONNECT_ONLY, 1L);
// libcurl won't connect to SSL connections
// with VERIFYPEER enabled because we do not ship
// with a CA bundle in these platforms.
// So let's disable it.
#if defined NINTENDO_SWITCH || defined PSP2
curl_easy_setopt(easy, CURLOPT_SSL_VERIFYPEER, 0);
#endif
Common::String caCertPath = getCaCertPath();
if (!caCertPath.empty()) {
curl_easy_setopt(easy, CURLOPT_CAINFO, caCertPath.c_str());
}
CURLcode res = curl_easy_perform(easy);
if (res != CURLE_OK) {
warning("libcurl: Failed to connect: %s", curl_easy_strerror(res));
curl_easy_cleanup(easy);
return nullptr;
}
// Get the socket, we'll need it for waiting.
// NB: Do not use CURL_AT_LEAST_VERSION(x,y,z) or CURL_VERSION_BITS(x,y,z) for version check
// These were only added around v7.45.0 release so break build with earlier libcurl versions
#if LIBCURL_VERSION_NUM >= 0x072d00 // 7.45.0
// Use new CURLINFO_ACTIVESOCKET API for libcurl v7.45.0 or greater
curl_socket_t socket;
res = curl_easy_getinfo(easy, CURLINFO_ACTIVESOCKET, &socket);
if (res == CURLE_OK) {
return new CurlSocket(easy, socket);
}
#else
// Fallback on old deprecated CURLINFO_LASTSOCKET API for libcurl older than v7.45.0 (October 2015)
long socket;
res = curl_easy_getinfo(easy, CURLINFO_LASTSOCKET, &socket);
if (res == CURLE_OK) {
// curl_socket_t is an int or a SOCKET (Win32) which is a UINT_PTR
// A cast should be safe enough as long fits in it
return new CurlSocket(easy, (curl_socket_t)socket);
}
#endif
warning("libcurl: Failed to extract socket: %s", curl_easy_strerror(res));
curl_easy_cleanup(easy);
return nullptr;
}
CurlSocket::CurlSocket(CURL *easy, curl_socket_t socket) : _easy(easy), _socket(socket) {
}
CurlSocket::~CurlSocket() {
// Always clean up.
curl_easy_cleanup(_easy);
}
int CurlSocket::ready() {
return waitOnSocket(_socket, 1, 0);
}
size_t CurlSocket::send(const char *data, int len) {
size_t nsent_total = 0, left = len;
CURLcode res = CURLE_AGAIN;
// Keep looping until the whole thing is sent, errors,
// or times out.
while (((left > 0) && (len > 0))) {
size_t nsent = 0;
uint32 tickCount = g_system->getMillis() + 5000;
while (res == CURLE_AGAIN) {
res = curl_easy_send(_easy, data + nsent_total, left - nsent_total, &nsent);
if (g_system->getMillis() >= tickCount) {
warning("libcurl: Took too long attempting to send data to socket");
return nsent;
}
}
if (res == CURLE_OK) {
nsent_total += nsent;
left -= nsent;
} else if (res != CURLE_AGAIN) {
warning("libcurl: Error when sending to socket: %s", curl_easy_strerror(res));
return nsent_total;
}
}
return nsent_total;
}
size_t CurlSocket::recv(void *data, int maxLen) {
size_t nread = 0;
CURLcode res = CURLE_AGAIN;
uint32 tickCount = g_system->getMillis() + 5000;
while (res == CURLE_AGAIN) {
res = curl_easy_recv(_easy, data, maxLen, &nread);
if (g_system->getMillis() >= tickCount) {
warning("libcurl: Took too long attempting to read data from socket");
return nread;
}
}
if(res != CURLE_OK) {
warning("libcurl Error on receiving data: %s\n", curl_easy_strerror(res));
return nread;
}
debug(3, "libcurl: Received %llu bytes", (unsigned long long)nread);
return nread;
}
} // End of namespace Networking

View File

@@ -0,0 +1,56 @@
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef BACKENDS_NETWORKING_BASIC_CURL_SOCKET_H
#define BACKENDS_NETWORKING_BASIC_CURL_SOCKET_H
typedef void CURL;
#ifdef WIN32
// Including winsock2.h will result in errors, we have to define
// SOCKET ourselves.
#include <basetsd.h>
typedef UINT_PTR SOCKET;
typedef SOCKET curl_socket_t;
#else
typedef int curl_socket_t;
#endif
#include "backends/networking/basic/socket.h"
namespace Networking {
class CurlSocket : public Socket {
public:
CurlSocket(CURL *easy, curl_socket_t socket);
~CurlSocket() override;
int ready() override;
size_t send(const char *data, int len) override;
size_t recv(void *data, int maxLen) override;
private:
CURL *_easy;
curl_socket_t _socket;
};
} // End of namespace Networking
#endif

View File

@@ -0,0 +1,104 @@
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
*
*/
#define FORBIDDEN_SYMBOL_ALLOW_ALL
#include <curl/curl.h>
#include "backends/networking/basic/curl/url.h"
#include "common/debug.h"
#include "common/textconsole.h"
namespace Networking {
// This requires libcurl version 7.62.0, If we're using
// a lower version, stub all of this.
#if LIBCURL_VERSION_NUM < 0x073E00
URL *URL::parseURL(const Common::String &url) {
warning("libcurl: curl_url requires curl 7.62.0 or later");
return nullptr;
}
#else
URL *URL::parseURL(const Common::String &url) {
CURLU *curlu = curl_url();
if (!curlu) {
warning("libcurl: Could not create curl_url handle");
return nullptr;
}
CURLUcode rc = curl_url_set(curlu, CURLUPART_URL, url.c_str(), 0);
if (rc) {
warning("libcurl: Unable to parse URL: \"%s\"", url.c_str());
curl_url_cleanup(curlu);
return nullptr;
}
return new CurlURL(curlu);
}
CurlURL::CurlURL(CURLU *curlu) : _url(curlu) {
}
CurlURL::~CurlURL() {
curl_url_cleanup(_url);
}
Common::String CurlURL::getScheme() const {
char *scheme;
CURLUcode rc = curl_url_get(_url, CURLUPART_SCHEME, &scheme, 0);
if (rc) {
warning("libcurl: Unable to get scheme");
return "";
}
Common::String schemeString(scheme);
curl_free(scheme);
return schemeString;
}
Common::String CurlURL::getHost() const {
char *host;
CURLUcode rc = curl_url_get(_url, CURLUPART_HOST, &host, 0);
if (rc) {
warning("libcurl: Unable to get host");
return "";
}
Common::String hostString(host);
curl_free(host);
return hostString;
}
int CurlURL::getPort(bool defaultPort) const {
char *portChr;
CURLUcode rc = curl_url_get(_url, CURLUPART_PORT, &portChr, (defaultPort) ? CURLU_DEFAULT_PORT : CURLU_NO_DEFAULT_PORT);
if (rc) {
if (rc == CURLUE_NO_PORT)
return 0;
warning("libcurl: Unable to get port");
return -1;
}
int port = atoi(portChr);
curl_free(portChr);
return port;
}
#endif
} // End of namespace Networking

View File

@@ -0,0 +1,45 @@
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef BACKENDS_NETWORKING_BASIC_CURL_URL_H
#define BACKENDS_NETWORKING_BASIC_CURL_URL_H
typedef struct Curl_URL CURLU;
#include "backends/networking/basic/url.h"
namespace Networking {
class CurlURL : public URL {
public:
CurlURL(CURLU *curlu);
~CurlURL() override;
Common::String getScheme() const override;
Common::String getHost() const override;
int getPort(bool returnDefault = false) const override;
private:
CURLU *_url;
};
} // End of Namespace Networking
#endif