Connection string support for XRay protocol (#777)
* Connection string support for XRay protocol
This commit is contained in:
parent
d8020878d5
commit
e6ee9085a2
39 changed files with 20709 additions and 11 deletions
244
client/core/serialization/ssd.cpp
Normal file
244
client/core/serialization/ssd.cpp
Normal file
|
|
@ -0,0 +1,244 @@
|
|||
// Copyright (c) Qv2ray, A Qt frontend for V2Ray. Written in C++.
|
||||
// This file is part of the Qv2ray VPN client.
|
||||
//
|
||||
// Qv2ray, A Qt frontend for V2Ray. Written in C++
|
||||
|
||||
// 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 <https://www.gnu.org/licenses/>.
|
||||
|
||||
// Copyright (c) 2024 AmneziaVPN
|
||||
// This file has been modified for AmneziaVPN
|
||||
//
|
||||
// This file is based on the work of the Qv2ray VPN client.
|
||||
// The original code of the Qv2ray, A Qt frontend for V2Ray. Written in C++ and licensed under GPL3.
|
||||
//
|
||||
// The modified version of this file 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 file. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* A Naive SSD Decoder for Qv2ray
|
||||
*
|
||||
* @author DuckSoft <realducksoft@gmail.com>
|
||||
* @copyright Licensed under GPLv3.
|
||||
*/
|
||||
|
||||
#include "3rd/QJsonStruct/QJsonIO.hpp"
|
||||
#include "3rd/QJsonStruct/QJsonStruct.hpp"
|
||||
#include "utilities.h"
|
||||
#include "serialization.h"
|
||||
|
||||
const inline QString QV2RAY_SSD_DEFAULT_NAME_PATTERN = "%1 - %2 (rate %3)";
|
||||
#define OUTBOUND_TAG_PROXY "PROXY"
|
||||
|
||||
namespace amnezia::serialization::ssd
|
||||
{
|
||||
// These below are super strict checking schemes, but necessary.
|
||||
#define MUST_EXIST(fieldName) \
|
||||
if (!obj.contains((fieldName)) || obj[(fieldName)].isUndefined() || obj[(fieldName)].isNull()) \
|
||||
{ \
|
||||
*logList << QObject::tr("Invalid ssd link: json: field %1 must exist").arg(fieldName); \
|
||||
return {}; \
|
||||
}
|
||||
#define MUST_PORT(fieldName) \
|
||||
MUST_EXIST(fieldName); \
|
||||
if (int value = obj[(fieldName)].toInt(-1); value < 0 || value > 65535) \
|
||||
{ \
|
||||
*logList << QObject::tr("Invalid ssd link: json: field %1 must be valid port number"); \
|
||||
return {}; \
|
||||
}
|
||||
#define MUST_STRING(fieldName) \
|
||||
MUST_EXIST(fieldName); \
|
||||
if (!obj[(fieldName)].isString()) \
|
||||
{ \
|
||||
*logList << QObject::tr("Invalid ssd link: json: field %1 must be of type 'string'").arg(fieldName); \
|
||||
return {}; \
|
||||
}
|
||||
#define MUST_ARRAY(fieldName) \
|
||||
MUST_EXIST(fieldName); \
|
||||
if (!obj[(fieldName)].isArray()) \
|
||||
{ \
|
||||
*logList << QObject::tr("Invalid ssd link: json: field %1 must be an array").arg(fieldName); \
|
||||
return {}; \
|
||||
}
|
||||
|
||||
#define SERVER_SHOULD_BE_OBJECT(server) \
|
||||
if (!server.isObject()) \
|
||||
{ \
|
||||
*logList << QObject::tr("Skipping invalid ssd server: server must be an object"); \
|
||||
continue; \
|
||||
}
|
||||
#define SHOULD_EXIST(fieldName) \
|
||||
if (serverObject[(fieldName)].isUndefined()) \
|
||||
{ \
|
||||
*logList << QObject::tr("Skipping invalid ssd server: missing required field %1").arg(fieldName); \
|
||||
continue; \
|
||||
}
|
||||
#define SHOULD_STRING(fieldName) \
|
||||
SHOULD_EXIST(fieldName); \
|
||||
if (!serverObject[(fieldName)].isString()) \
|
||||
{ \
|
||||
*logList << QObject::tr("Skipping invalid ssd server: field %1 should be of type 'string'").arg(fieldName); \
|
||||
continue; \
|
||||
}
|
||||
|
||||
QList<std::pair<QString, QJsonObject>> Deserialize(const QString &uri, QString *groupName, QStringList *logList)
|
||||
{
|
||||
// ssd links should begin with "ssd://"
|
||||
if (!uri.startsWith("ssd://"))
|
||||
{
|
||||
*logList << QObject::tr("Invalid ssd link: should begin with ssd://");
|
||||
return {};
|
||||
}
|
||||
|
||||
// decode base64
|
||||
const auto ssdURIBody = uri.mid(6, uri.length() - 6); //(&uri, 6, uri.length() - 6);
|
||||
const auto decodedJSON = Utils::SafeBase64Decode(ssdURIBody).toUtf8();
|
||||
|
||||
if (decodedJSON.length() == 0)
|
||||
{
|
||||
*logList << QObject::tr("Invalid ssd link: base64 parse failed");
|
||||
return {};
|
||||
}
|
||||
|
||||
const auto decodeError = Utils::VerifyJsonString(decodedJSON);
|
||||
if (!decodeError.isEmpty())
|
||||
{
|
||||
*logList << QObject::tr("Invalid ssd link: json parse failed");
|
||||
return {};
|
||||
}
|
||||
|
||||
// casting to object
|
||||
const auto obj = Utils::JsonFromString(decodedJSON);
|
||||
|
||||
// obj.airport
|
||||
MUST_STRING("airport");
|
||||
*groupName = obj["airport"].toString();
|
||||
|
||||
// obj.port
|
||||
MUST_PORT("port");
|
||||
const int port = obj["port"].toInt();
|
||||
|
||||
// obj.encryption
|
||||
MUST_STRING("encryption");
|
||||
const auto encryption = obj["encryption"].toString();
|
||||
|
||||
// check: rc4-md5 is not supported by v2ray-core
|
||||
// TODO: more checks, including all algorithms
|
||||
if (encryption.toLower() == "rc4-md5")
|
||||
{
|
||||
*logList << QObject::tr("Invalid ssd link: rc4-md5 encryption is not supported by v2ray-core");
|
||||
return {};
|
||||
}
|
||||
|
||||
// obj.password
|
||||
MUST_STRING("password");
|
||||
const auto password = obj["password"].toString();
|
||||
// obj.servers
|
||||
MUST_ARRAY("servers");
|
||||
//
|
||||
QList<std::pair<QString, QJsonObject>> serverList;
|
||||
//
|
||||
|
||||
// iterate through the servers
|
||||
for (const auto &server : obj["servers"].toArray())
|
||||
{
|
||||
SERVER_SHOULD_BE_OBJECT(server);
|
||||
const auto serverObject = server.toObject();
|
||||
ShadowSocksServerObject ssObject;
|
||||
|
||||
// encryption
|
||||
ssObject.method = encryption;
|
||||
|
||||
// password
|
||||
ssObject.password = password;
|
||||
|
||||
// address :-> "server"
|
||||
SHOULD_STRING("server");
|
||||
const auto serverAddress = serverObject["server"].toString();
|
||||
ssObject.address = serverAddress;
|
||||
|
||||
// port selection:
|
||||
// normal: use global settings
|
||||
// overriding: use current config
|
||||
if (serverObject["port"].isUndefined())
|
||||
{
|
||||
ssObject.port = port;
|
||||
}
|
||||
else if (auto currPort = serverObject["port"].toInt(-1); (currPort >= 0 && currPort <= 65535))
|
||||
{
|
||||
ssObject.port = currPort;
|
||||
}
|
||||
else
|
||||
{
|
||||
ssObject.port = port;
|
||||
}
|
||||
|
||||
// name decision:
|
||||
// untitled: using server:port as name
|
||||
// entitled: using given name
|
||||
QString nodeName;
|
||||
if (serverObject["remarks"].isUndefined())
|
||||
{
|
||||
nodeName = QString("%1:%2").arg(ssObject.address).arg(ssObject.port);
|
||||
}
|
||||
else if (serverObject["remarks"].isString())
|
||||
{
|
||||
nodeName = serverObject["remarks"].toString();
|
||||
}
|
||||
else
|
||||
{
|
||||
nodeName = QString("%1:%2").arg(ssObject.address).arg(ssObject.port);
|
||||
}
|
||||
|
||||
// ratio decision:
|
||||
// unspecified: ratio = 1
|
||||
// specified: use given value
|
||||
double ratio = 1.0;
|
||||
if (auto currRatio = serverObject["ratio"].toDouble(-1.0); currRatio != -1.0)
|
||||
{
|
||||
ratio = currRatio;
|
||||
}
|
||||
// else if (!serverObject["ratio"].isUndefined())
|
||||
// {
|
||||
// //*logList << QObject::tr("Invalid ratio encountered. using fallback value.");
|
||||
// }
|
||||
|
||||
// format the total name of the node.
|
||||
const auto finalName = QV2RAY_SSD_DEFAULT_NAME_PATTERN.arg(*groupName, nodeName).arg(ratio);
|
||||
// appending to the total list
|
||||
QJsonObject root;
|
||||
QJsonArray outbounds;
|
||||
QJsonObject inbound = inbounds::GenerateInboundEntry();
|
||||
outbounds.append(outbounds::GenerateOutboundEntry(OUTBOUND_TAG_PROXY, "shadowsocks", outbounds::GenerateShadowSocksOUT({ ssObject }), {}));
|
||||
root["outbounds"] = outbounds;
|
||||
root["inbounds"] = QJsonArray{ inbound };
|
||||
serverList.append({ finalName, root });
|
||||
}
|
||||
|
||||
// returns the current result
|
||||
return serverList;
|
||||
}
|
||||
#undef MUST_EXIST
|
||||
#undef MUST_PORT
|
||||
#undef MUST_ARRAY
|
||||
#undef MUST_STRING
|
||||
#undef SERVER_SHOULD_BE_OBJECT
|
||||
#undef SHOULD_EXIST
|
||||
#undef SHOULD_STRING
|
||||
} // namespace amnezia::serialization::ssd
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue