mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-05-08 14:33:23 +00:00
* fix: xray heap corruption * fix: use proper configuration for split-tunneled apps * chore: enable killswitch * chore: xray windows split-tunneling cleanup * chore: proper xray killswitch log * feat: add wait for the tun device * chore: update amnezia_xray deps for macos * fix: add nullptr check for split-tunnel on win * fix: modernize vpnAdapter grabbing function * fix: remove network watcher due to its fragileness * chore: xrayprotocol cleanup * fix: correct wrong iface index on win * chore: move tun2socks implementation to the client from the service * chore: xrayprotocol cleanup * chore: more xrayprotocol cleanup * fix: consistent tun device with GUID specified * chore: tun2socks logs * chore: PrivilegedProcess cleanup * better error handling in establishment phase * terminate&kill ops for remote process * fix: straighforward killing the process on windows * fix: finally remove GUID setting from tun2socks due to instability * fix: add sanitizer to ipc process * chore: do not collect sensitive info from tun2socks
324 lines
6.5 KiB
C++
324 lines
6.5 KiB
C++
#include "ipcserver.h"
|
|
|
|
#include <QDateTime>
|
|
#include <QDebug>
|
|
#include <QFileInfo>
|
|
#include <QHostAddress>
|
|
#include <QJsonObject>
|
|
#include <QLocalServer>
|
|
#include <QLocalSocket>
|
|
#include <QObject>
|
|
#include <QRemoteObjectHost>
|
|
#include <QRemoteObjectNode>
|
|
#include <QString>
|
|
#include <QStringList>
|
|
|
|
#include "logger.h"
|
|
#include "router.h"
|
|
#include "killswitch.h"
|
|
#include "xray.h"
|
|
|
|
#ifdef Q_OS_WIN
|
|
#include "tapcontroller_win.h"
|
|
#endif
|
|
|
|
|
|
IpcServer::IpcServer(QObject *parent) : IpcInterfaceSource(parent)
|
|
{
|
|
connect(&m_pingHelper, &PingHelper::connectionLose, this, &IpcServer::connectionLose);
|
|
}
|
|
|
|
int IpcServer::createPrivilegedProcess()
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::createPrivilegedProcess";
|
|
#endif
|
|
|
|
m_localpid++;
|
|
|
|
ProcessDescriptor pd(this);
|
|
|
|
pd.localServer->setSocketOptions(QLocalServer::WorldAccessOption);
|
|
|
|
if (!pd.localServer->listen(amnezia::getIpcProcessUrl(m_localpid))) {
|
|
qDebug() << QString("Unable to start the server: %1.").arg(pd.localServer->errorString());
|
|
return -1;
|
|
}
|
|
|
|
// Make sure any connections are handed to QtRO
|
|
QObject::connect(pd.localServer.data(), &QLocalServer::newConnection, this, [pd]() {
|
|
qDebug() << "IpcServer new connection";
|
|
if (pd.serverNode) {
|
|
pd.serverNode->addHostSideConnection(pd.localServer->nextPendingConnection());
|
|
pd.serverNode->enableRemoting(pd.ipcProcess.data());
|
|
}
|
|
});
|
|
|
|
QObject::connect(pd.serverNode.data(), &QRemoteObjectHost::error, this,
|
|
[pd](QRemoteObjectNode::ErrorCode errorCode) { qDebug() << "QRemoteObjectHost::error" << errorCode; });
|
|
|
|
QObject::connect(pd.serverNode.data(), &QRemoteObjectHost::destroyed, this, [pd]() { qDebug() << "QRemoteObjectHost::destroyed"; });
|
|
|
|
m_processes.insert(m_localpid, pd);
|
|
|
|
return m_localpid;
|
|
}
|
|
|
|
int IpcServer::routeAddList(const QString &gw, const QStringList &ips)
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::routeAddList";
|
|
#endif
|
|
|
|
return Router::routeAddList(gw, ips);
|
|
}
|
|
|
|
bool IpcServer::clearSavedRoutes()
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::clearSavedRoutes";
|
|
#endif
|
|
|
|
return Router::clearSavedRoutes();
|
|
}
|
|
|
|
bool IpcServer::routeDeleteList(const QString &gw, const QStringList &ips)
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::routeDeleteList";
|
|
#endif
|
|
|
|
return Router::routeDeleteList(gw, ips);
|
|
}
|
|
|
|
bool IpcServer::flushDns()
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::flushDns";
|
|
#endif
|
|
|
|
return Router::flushDns();
|
|
}
|
|
|
|
void IpcServer::resetIpStack()
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::resetIpStack";
|
|
#endif
|
|
|
|
Router::resetIpStack();
|
|
}
|
|
|
|
bool IpcServer::checkAndInstallDriver()
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::checkAndInstallDriver";
|
|
#endif
|
|
|
|
#ifdef Q_OS_WIN
|
|
return TapController::checkAndSetup();
|
|
#else
|
|
return true;
|
|
#endif
|
|
}
|
|
|
|
QStringList IpcServer::getTapList()
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::getTapList";
|
|
#endif
|
|
|
|
#ifdef Q_OS_WIN
|
|
return TapController::getTapList();
|
|
#else
|
|
return QStringList();
|
|
#endif
|
|
}
|
|
|
|
void IpcServer::cleanUp()
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::cleanUp";
|
|
#endif
|
|
|
|
Logger::deInit();
|
|
Logger::cleanUp();
|
|
}
|
|
|
|
void IpcServer::clearLogs()
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::clearLogs";
|
|
#endif
|
|
|
|
Logger::clearLogs(true);
|
|
}
|
|
|
|
bool IpcServer::createTun(const QString &dev, const QString &subnet)
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::createTun";
|
|
#endif
|
|
|
|
return Router::createTun(dev, subnet);
|
|
}
|
|
|
|
bool IpcServer::deleteTun(const QString &dev)
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::deleteTun";
|
|
#endif
|
|
|
|
return Router::deleteTun(dev);
|
|
}
|
|
|
|
bool IpcServer::updateResolvers(const QString &ifname, const QList<QHostAddress> &resolvers)
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::updateResolvers";
|
|
#endif
|
|
|
|
return Router::updateResolvers(ifname, resolvers);
|
|
}
|
|
|
|
bool IpcServer::restoreResolvers()
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::restoreResolvers";
|
|
#endif
|
|
|
|
return Router::restoreResolvers();
|
|
}
|
|
|
|
bool IpcServer::StartRoutingIpv6()
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::StartRoutingIpv6";
|
|
#endif
|
|
|
|
return Router::StartRoutingIpv6();
|
|
}
|
|
|
|
bool IpcServer::StopRoutingIpv6()
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::StopRoutingIpv6";
|
|
#endif
|
|
|
|
return Router::StopRoutingIpv6();
|
|
}
|
|
|
|
void IpcServer::setLogsEnabled(bool enabled)
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::setLogsEnabled";
|
|
#endif
|
|
|
|
if (enabled) {
|
|
Logger::init(true);
|
|
} else {
|
|
Logger::deInit();
|
|
}
|
|
}
|
|
|
|
bool IpcServer::startNetworkCheck(const QString& serverIpv4Gateway, const QString& deviceIpv4Address)
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::startNetworkCheck";
|
|
#endif
|
|
|
|
m_pingHelper.start(serverIpv4Gateway, deviceIpv4Address);
|
|
return true;
|
|
}
|
|
|
|
bool IpcServer::stopNetworkCheck()
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::stopNetworkCheck";
|
|
#endif
|
|
|
|
m_pingHelper.stop();
|
|
return true;
|
|
}
|
|
|
|
bool IpcServer::resetKillSwitchAllowedRange(QStringList ranges)
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::resetKillSwitchAllowedRange";
|
|
#endif
|
|
|
|
return KillSwitch::instance()->resetAllowedRange(ranges);
|
|
}
|
|
|
|
bool IpcServer::addKillSwitchAllowedRange(QStringList ranges)
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::addKillSwitchAllowedRange";
|
|
#endif
|
|
|
|
return KillSwitch::instance()->addAllowedRange(ranges);
|
|
}
|
|
|
|
bool IpcServer::disableAllTraffic()
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::disableAllTraffic";
|
|
#endif
|
|
|
|
return KillSwitch::instance()->disableAllTraffic();
|
|
}
|
|
|
|
bool IpcServer::enableKillSwitch(const QJsonObject &configStr, int vpnAdapterIndex)
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::enableKillSwitch";
|
|
#endif
|
|
|
|
return KillSwitch::instance()->enableKillSwitch(configStr, vpnAdapterIndex);
|
|
}
|
|
|
|
bool IpcServer::disableKillSwitch()
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::disableKillSwitch";
|
|
#endif
|
|
|
|
return KillSwitch::instance()->disableKillSwitch();
|
|
}
|
|
|
|
bool IpcServer::enablePeerTraffic(const QJsonObject &configStr)
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::enablePeerTraffic";
|
|
#endif
|
|
|
|
return KillSwitch::instance()->enablePeerTraffic(configStr);
|
|
}
|
|
|
|
bool IpcServer::refreshKillSwitch(bool enabled)
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::refreshKillSwitch";
|
|
#endif
|
|
|
|
return KillSwitch::instance()->refresh(enabled);
|
|
}
|
|
|
|
bool IpcServer::xrayStart(const QString& cfg)
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::xrayStart";
|
|
#endif
|
|
|
|
return Xray::getInstance().startXray(cfg);
|
|
}
|
|
|
|
bool IpcServer::xrayStop()
|
|
{
|
|
#ifdef MZ_DEBUG
|
|
qDebug() << "IpcServer::xrayStop";
|
|
#endif
|
|
|
|
return Xray::getInstance().stopXray();
|
|
}
|