mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-24 02:00:24 +07:00
Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3e719aac56 | |||
| f87925c819 | |||
| 63c6d7a77b | |||
| 90ef4ec3de | |||
| eb7bfc2815 | |||
| ac77b4ee75 | |||
| fbf652f818 | |||
| bbbf4891e6 | |||
| 20d005d66c | |||
| c81ae2b060 |
@@ -351,7 +351,7 @@ jobs:
|
|||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
|
|
||||||
env:
|
env:
|
||||||
QT_VERSION: 6.8.0
|
QT_VERSION: 6.8.3
|
||||||
|
|
||||||
MAC_TEAM_ID: ${{ secrets.MAC_TEAM_ID }}
|
MAC_TEAM_ID: ${{ secrets.MAC_TEAM_ID }}
|
||||||
|
|
||||||
@@ -381,7 +381,7 @@ jobs:
|
|||||||
xcode-version: '16.2.0'
|
xcode-version: '16.2.0'
|
||||||
|
|
||||||
- name: 'Install Qt'
|
- name: 'Install Qt'
|
||||||
uses: jurplel/install-qt-action@v3
|
uses: jurplel/install-qt-action@v4
|
||||||
with:
|
with:
|
||||||
version: ${{ env.QT_VERSION }}
|
version: ${{ env.QT_VERSION }}
|
||||||
host: 'mac'
|
host: 'mac'
|
||||||
@@ -389,10 +389,15 @@ jobs:
|
|||||||
arch: 'clang_64'
|
arch: 'clang_64'
|
||||||
modules: 'qtremoteobjects qt5compat qtshadertools'
|
modules: 'qtremoteobjects qt5compat qtshadertools'
|
||||||
dir: ${{ runner.temp }}
|
dir: ${{ runner.temp }}
|
||||||
|
#setup-python: 'true'
|
||||||
|
#set-env: 'true'
|
||||||
|
#extra: '--external 7z --base ${{ env.QT_MIRROR }}'
|
||||||
setup-python: 'true'
|
setup-python: 'true'
|
||||||
set-env: 'true'
|
set-env: 'true'
|
||||||
extra: '--external 7z --base ${{ env.QT_MIRROR }}'
|
aqtversion: '==3.3.0'
|
||||||
|
py7zrversion: '==0.22.*'
|
||||||
|
extra: '--base ${{ env.QT_MIRROR }}'
|
||||||
|
cache: 'true'
|
||||||
|
|
||||||
- name: 'Get sources'
|
- name: 'Get sources'
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|||||||
@@ -76,6 +76,7 @@ set(AMNEZIAVPN_TS_FILES
|
|||||||
${CMAKE_CURRENT_LIST_DIR}/translations/amneziavpn_uk_UA.ts
|
${CMAKE_CURRENT_LIST_DIR}/translations/amneziavpn_uk_UA.ts
|
||||||
${CMAKE_CURRENT_LIST_DIR}/translations/amneziavpn_ur_PK.ts
|
${CMAKE_CURRENT_LIST_DIR}/translations/amneziavpn_ur_PK.ts
|
||||||
${CMAKE_CURRENT_LIST_DIR}/translations/amneziavpn_hi_IN.ts
|
${CMAKE_CURRENT_LIST_DIR}/translations/amneziavpn_hi_IN.ts
|
||||||
|
${CMAKE_CURRENT_LIST_DIR}/translations/amneziavpn_es_ES.ts
|
||||||
)
|
)
|
||||||
|
|
||||||
file(GLOB_RECURSE AMNEZIAVPN_TS_SOURCES *.qrc *.cpp *.h *.ui)
|
file(GLOB_RECURSE AMNEZIAVPN_TS_SOURCES *.qrc *.cpp *.h *.ui)
|
||||||
|
|||||||
@@ -37,7 +37,6 @@ set(HEADERS ${HEADERS}
|
|||||||
${CLIENT_ROOT_DIR}/mozilla/shared/ipaddress.h
|
${CLIENT_ROOT_DIR}/mozilla/shared/ipaddress.h
|
||||||
${CLIENT_ROOT_DIR}/mozilla/shared/leakdetector.h
|
${CLIENT_ROOT_DIR}/mozilla/shared/leakdetector.h
|
||||||
${CLIENT_ROOT_DIR}/mozilla/controllerimpl.h
|
${CLIENT_ROOT_DIR}/mozilla/controllerimpl.h
|
||||||
${CLIENT_ROOT_DIR}/mozilla/localsocketcontroller.h
|
|
||||||
)
|
)
|
||||||
|
|
||||||
if(NOT IOS AND NOT MACOS_NE)
|
if(NOT IOS AND NOT MACOS_NE)
|
||||||
@@ -88,7 +87,6 @@ set(SOURCES ${SOURCES}
|
|||||||
${CLIENT_ROOT_DIR}/mozilla/models/server.cpp
|
${CLIENT_ROOT_DIR}/mozilla/models/server.cpp
|
||||||
${CLIENT_ROOT_DIR}/mozilla/shared/ipaddress.cpp
|
${CLIENT_ROOT_DIR}/mozilla/shared/ipaddress.cpp
|
||||||
${CLIENT_ROOT_DIR}/mozilla/shared/leakdetector.cpp
|
${CLIENT_ROOT_DIR}/mozilla/shared/leakdetector.cpp
|
||||||
${CLIENT_ROOT_DIR}/mozilla/localsocketcontroller.cpp
|
|
||||||
)
|
)
|
||||||
|
|
||||||
if(NOT IOS AND NOT MACOS_NE)
|
if(NOT IOS AND NOT MACOS_NE)
|
||||||
@@ -191,11 +189,13 @@ if(WIN32 OR (APPLE AND NOT IOS AND NOT MACOS_NE) OR (LINUX AND NOT ANDROID))
|
|||||||
${CLIENT_ROOT_DIR}/protocols/wireguardprotocol.h
|
${CLIENT_ROOT_DIR}/protocols/wireguardprotocol.h
|
||||||
${CLIENT_ROOT_DIR}/protocols/xrayprotocol.h
|
${CLIENT_ROOT_DIR}/protocols/xrayprotocol.h
|
||||||
${CLIENT_ROOT_DIR}/protocols/awgprotocol.h
|
${CLIENT_ROOT_DIR}/protocols/awgprotocol.h
|
||||||
|
${CLIENT_ROOT_DIR}/mozilla/localsocketcontroller.h
|
||||||
)
|
)
|
||||||
|
|
||||||
set(SOURCES ${SOURCES}
|
set(SOURCES ${SOURCES}
|
||||||
${CLIENT_ROOT_DIR}/core/ipcclient.cpp
|
${CLIENT_ROOT_DIR}/core/ipcclient.cpp
|
||||||
${CLIENT_ROOT_DIR}/core/privileged_process.cpp
|
${CLIENT_ROOT_DIR}/core/privileged_process.cpp
|
||||||
|
${CLIENT_ROOT_DIR}/mozilla/localsocketcontroller.cpp
|
||||||
${CLIENT_ROOT_DIR}/ui/systemtray_notificationhandler.cpp
|
${CLIENT_ROOT_DIR}/ui/systemtray_notificationhandler.cpp
|
||||||
${CLIENT_ROOT_DIR}/protocols/openvpnprotocol.cpp
|
${CLIENT_ROOT_DIR}/protocols/openvpnprotocol.cpp
|
||||||
${CLIENT_ROOT_DIR}/protocols/openvpnovercloakprotocol.cpp
|
${CLIENT_ROOT_DIR}/protocols/openvpnovercloakprotocol.cpp
|
||||||
|
|||||||
@@ -18,6 +18,22 @@ bool IpcClient::isSocketConnected() const
|
|||||||
return m_isSocketConnected;
|
return m_isSocketConnected;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void IpcClient::closeAndResetInstance(bool deleteSelf)
|
||||||
|
{
|
||||||
|
if (m_localSocket)
|
||||||
|
{
|
||||||
|
m_localSocket->disconnectFromServer();
|
||||||
|
m_localSocket->deleteLater();
|
||||||
|
m_localSocket.clear();
|
||||||
|
}
|
||||||
|
m_ipcClient.reset();
|
||||||
|
m_Tun2SocksClient.reset();
|
||||||
|
m_isSocketConnected = false;
|
||||||
|
if (deleteSelf) {
|
||||||
|
m_instance = nullptr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
IpcClient *IpcClient::Instance()
|
IpcClient *IpcClient::Instance()
|
||||||
{
|
{
|
||||||
return m_instance;
|
return m_instance;
|
||||||
@@ -39,6 +55,10 @@ QSharedPointer<IpcProcessTun2SocksReplica> IpcClient::InterfaceTun2Socks()
|
|||||||
|
|
||||||
bool IpcClient::init(IpcClient *instance)
|
bool IpcClient::init(IpcClient *instance)
|
||||||
{
|
{
|
||||||
|
if (m_instance && m_instance != instance) {
|
||||||
|
m_instance->closeAndResetInstance(false);
|
||||||
|
m_instance->deleteLater();
|
||||||
|
}
|
||||||
m_instance = instance;
|
m_instance = instance;
|
||||||
|
|
||||||
Instance()->m_localSocket = new QLocalSocket(Instance());
|
Instance()->m_localSocket = new QLocalSocket(Instance());
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ public:
|
|||||||
static QSharedPointer<PrivilegedProcess> CreatePrivilegedProcess();
|
static QSharedPointer<PrivilegedProcess> CreatePrivilegedProcess();
|
||||||
|
|
||||||
bool isSocketConnected() const;
|
bool isSocketConnected() const;
|
||||||
|
void closeAndResetInstance(bool deleteSelf = false);
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
|
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ namespace
|
|||||||
sigaddset(&set, SIGINT);
|
sigaddset(&set, SIGINT);
|
||||||
sigaddset(&set, SIGTERM);
|
sigaddset(&set, SIGTERM);
|
||||||
|
|
||||||
pthread_sigmask(SIBLOCK, &set, nullptr);
|
pthread_sigmask(SIG_BLOCK, &set, nullptr);
|
||||||
|
|
||||||
signalFd = signalfd(-1, &set, SFD_NONBLOCK | SFD_CLOEXEC);
|
signalFd = signalfd(-1, &set, SFD_NONBLOCK | SFD_CLOEXEC);
|
||||||
if (signalFd < 0)
|
if (signalFd < 0)
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ namespace amnezia::serialization
|
|||||||
namespace vless
|
namespace vless
|
||||||
{
|
{
|
||||||
QJsonObject Deserialize(const QString &vless, QString *alias, QString *errMessage);
|
QJsonObject Deserialize(const QString &vless, QString *alias, QString *errMessage);
|
||||||
|
const QString Serialize(const VlessServerObject &server, const QString &alias);
|
||||||
} // namespace vless
|
} // namespace vless
|
||||||
|
|
||||||
namespace ss
|
namespace ss
|
||||||
|
|||||||
@@ -42,6 +42,25 @@ struct VMessServerObject
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
struct VlessServerObject
|
||||||
|
{
|
||||||
|
QString address;
|
||||||
|
QString id; // UUID
|
||||||
|
int port;
|
||||||
|
QString flow = "xtls-rprx-vision";
|
||||||
|
QString encryption = "none";
|
||||||
|
QString network = "tcp";
|
||||||
|
QString security = "reality";
|
||||||
|
QString serverName; // SNI
|
||||||
|
QString publicKey;
|
||||||
|
QString shortId;
|
||||||
|
QString fingerprint = "chrome";
|
||||||
|
QString spiderX = "";
|
||||||
|
JSONSTRUCT_COMPARE(VlessServerObject, address, id, port, flow, encryption)
|
||||||
|
JSONSTRUCT_REGISTER(VlessServerObject, F(address, id, port, flow, encryption, network, security, serverName, publicKey, shortId, fingerprint, spiderX))
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
namespace transfer
|
namespace transfer
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|||||||
@@ -252,5 +252,65 @@ QJsonObject Deserialize(const QString &str, QString *alias, QString *errMessage)
|
|||||||
root["inbounds"] = QJsonArray { inbound };
|
root["inbounds"] = QJsonArray { inbound };
|
||||||
return root;
|
return root;
|
||||||
}
|
}
|
||||||
} // namespace amnezia::serialization::vless
|
|
||||||
|
const QString Serialize(const VlessServerObject &server, const QString &alias)
|
||||||
|
{
|
||||||
|
|
||||||
|
QUrl url;
|
||||||
|
|
||||||
|
// Set basic URL components
|
||||||
|
url.setScheme("vless");
|
||||||
|
url.setUserInfo(server.id);
|
||||||
|
url.setHost(server.address);
|
||||||
|
url.setPort(server.port);
|
||||||
|
|
||||||
|
QUrlQuery query;
|
||||||
|
|
||||||
|
if (!server.network.isEmpty() && server.network != "tcp") {
|
||||||
|
query.addQueryItem("type", server.network);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!server.encryption.isEmpty()) {
|
||||||
|
query.addQueryItem("encryption", server.encryption);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!server.security.isEmpty() && server.security != "none") {
|
||||||
|
query.addQueryItem("security", server.security);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!server.flow.isEmpty() && (server.security == "xtls" || server.security == "reality")) {
|
||||||
|
query.addQueryItem("flow", server.flow);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!server.serverName.isEmpty()) {
|
||||||
|
query.addQueryItem("sni", server.serverName);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (server.security == "reality") {
|
||||||
|
if (!server.fingerprint.isEmpty()) {
|
||||||
|
query.addQueryItem("fp", server.fingerprint);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!server.publicKey.isEmpty()) {
|
||||||
|
query.addQueryItem("pbk", server.publicKey);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!server.shortId.isEmpty()) {
|
||||||
|
query.addQueryItem("sid", server.shortId);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!server.spiderX.isEmpty()) {
|
||||||
|
query.addQueryItem("spiderX", server.spiderX);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
url.setQuery(query);
|
||||||
|
|
||||||
|
if (!alias.isEmpty()) {
|
||||||
|
url.setFragment(alias);
|
||||||
|
}
|
||||||
|
|
||||||
|
return url.toString(QUrl::ComponentFormattingOption::FullyEncoded);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
#include <QList>
|
#include <QList>
|
||||||
#include <QMap>
|
#include <QMap>
|
||||||
#include <QString>
|
#include <QString>
|
||||||
|
#include <QMap>
|
||||||
#include "ipaddress.h"
|
#include "ipaddress.h"
|
||||||
|
|
||||||
class QJsonObject;
|
class QJsonObject;
|
||||||
|
|||||||
@@ -5,6 +5,9 @@
|
|||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
|
#include <QCoreApplication>
|
||||||
|
#include <QDateTime>
|
||||||
|
#include <QDebug>
|
||||||
#include <QDir>
|
#include <QDir>
|
||||||
#include <QFileInfo>
|
#include <QFileInfo>
|
||||||
#include <QHostAddress>
|
#include <QHostAddress>
|
||||||
@@ -12,12 +15,13 @@
|
|||||||
#include <QJsonDocument>
|
#include <QJsonDocument>
|
||||||
#include <QJsonObject>
|
#include <QJsonObject>
|
||||||
#include <QJsonValue>
|
#include <QJsonValue>
|
||||||
|
#include <QLocalSocket>
|
||||||
|
#include <QObject>
|
||||||
#include <QStandardPaths>
|
#include <QStandardPaths>
|
||||||
|
#include <QTimer>
|
||||||
|
|
||||||
#include "ipaddress.h"
|
|
||||||
#include "leakdetector.h"
|
#include "leakdetector.h"
|
||||||
#include "logger.h"
|
#include "logger.h"
|
||||||
#include "models/server.h"
|
|
||||||
#include "daemon/daemonerrors.h"
|
#include "daemon/daemonerrors.h"
|
||||||
|
|
||||||
#include "protocols/protocols_defs.h"
|
#include "protocols/protocols_defs.h"
|
||||||
@@ -115,7 +119,6 @@ void LocalSocketController::daemonConnected() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void LocalSocketController::activate(const QJsonObject &rawConfig) {
|
void LocalSocketController::activate(const QJsonObject &rawConfig) {
|
||||||
|
|
||||||
QString protocolName = rawConfig.value("protocol").toString();
|
QString protocolName = rawConfig.value("protocol").toString();
|
||||||
|
|
||||||
int splitTunnelType = rawConfig.value("splitTunnelType").toInt();
|
int splitTunnelType = rawConfig.value("splitTunnelType").toInt();
|
||||||
@@ -132,13 +135,16 @@ void LocalSocketController::activate(const QJsonObject &rawConfig) {
|
|||||||
// json.insert("hopindex", QJsonValue((double)hop.m_hopindex));
|
// json.insert("hopindex", QJsonValue((double)hop.m_hopindex));
|
||||||
json.insert("privateKey", wgConfig.value(amnezia::config_key::client_priv_key));
|
json.insert("privateKey", wgConfig.value(amnezia::config_key::client_priv_key));
|
||||||
json.insert("deviceIpv4Address", wgConfig.value(amnezia::config_key::client_ip));
|
json.insert("deviceIpv4Address", wgConfig.value(amnezia::config_key::client_ip));
|
||||||
|
m_deviceIpv4 = wgConfig.value(amnezia::config_key::client_ip).toString();
|
||||||
|
|
||||||
// set up IPv6 unique-local-address, ULA, with "fd00::/8" prefix, not globally routable.
|
// set up IPv6 unique-local-address, ULA, with "fd00::/8" prefix, not globally routable.
|
||||||
// this will be default IPv6 gateway, OS recognizes that IPv6 link is local and switches to IPv4.
|
// this will be default IPv6 gateway, OS recognizes that IPv6 link is local and switches to IPv4.
|
||||||
// Otherwise some OSes (Linux) try IPv6 forever and hang.
|
// Otherwise some OSes (Linux) try IPv6 forever and hang.
|
||||||
// https://en.wikipedia.org/wiki/Unique_local_address (RFC 4193)
|
// https://en.wikipedia.org/wiki/Unique_local_address (RFC 4193)
|
||||||
// https://man7.org/linux/man-pages/man5/gai.conf.5.html
|
// https://man7.org/linux/man-pages/man5/gai.conf.5.html
|
||||||
json.insert("deviceIpv6Address", "fd58:baa6:dead::1"); // simply "dead::1" is globally-routable, don't use it
|
|
||||||
|
// simply "dead::1" is globally-routable, don't use it
|
||||||
|
json.insert("deviceIpv6Address", "fd58:baa6:dead::1");
|
||||||
|
|
||||||
json.insert("serverPublicKey", wgConfig.value(amnezia::config_key::server_pub_key));
|
json.insert("serverPublicKey", wgConfig.value(amnezia::config_key::server_pub_key));
|
||||||
json.insert("serverPskKey", wgConfig.value(amnezia::config_key::psk_key));
|
json.insert("serverPskKey", wgConfig.value(amnezia::config_key::psk_key));
|
||||||
@@ -220,7 +226,6 @@ void LocalSocketController::activate(const QJsonObject &rawConfig) {
|
|||||||
|
|
||||||
json.insert("allowedIPAddressRanges", jsAllowedIPAddesses);
|
json.insert("allowedIPAddressRanges", jsAllowedIPAddesses);
|
||||||
|
|
||||||
|
|
||||||
QJsonArray jsExcludedAddresses;
|
QJsonArray jsExcludedAddresses;
|
||||||
jsExcludedAddresses.append(wgConfig.value(amnezia::config_key::hostName));
|
jsExcludedAddresses.append(wgConfig.value(amnezia::config_key::hostName));
|
||||||
if (splitTunnelType == 2) {
|
if (splitTunnelType == 2) {
|
||||||
@@ -449,6 +454,7 @@ void LocalSocketController::parseCommand(const QByteArray& command) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (type == "status") {
|
if (type == "status") {
|
||||||
|
|
||||||
QJsonValue serverIpv4Gateway = obj.value("serverIpv4Gateway");
|
QJsonValue serverIpv4Gateway = obj.value("serverIpv4Gateway");
|
||||||
if (!serverIpv4Gateway.isString()) {
|
if (!serverIpv4Gateway.isString()) {
|
||||||
logger.error() << "Unexpected serverIpv4Gateway value";
|
logger.error() << "Unexpected serverIpv4Gateway value";
|
||||||
@@ -493,6 +499,11 @@ void LocalSocketController::parseCommand(const QByteArray& command) {
|
|||||||
|
|
||||||
logger.debug() << "Handshake completed with:"
|
logger.debug() << "Handshake completed with:"
|
||||||
<< pubkey.toString();
|
<< pubkey.toString();
|
||||||
|
|
||||||
|
checkStatus();
|
||||||
|
|
||||||
|
emit statusUpdated("", m_deviceIpv4, 0, 0);
|
||||||
|
|
||||||
emit connected(pubkey.toString());
|
emit connected(pubkey.toString());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,6 +12,7 @@
|
|||||||
|
|
||||||
#include "controllerimpl.h"
|
#include "controllerimpl.h"
|
||||||
|
|
||||||
|
|
||||||
class QJsonObject;
|
class QJsonObject;
|
||||||
|
|
||||||
class LocalSocketController final : public ControllerImpl {
|
class LocalSocketController final : public ControllerImpl {
|
||||||
@@ -58,6 +59,7 @@ class LocalSocketController final : public ControllerImpl {
|
|||||||
|
|
||||||
QByteArray m_buffer;
|
QByteArray m_buffer;
|
||||||
|
|
||||||
|
QString m_deviceIpv4;
|
||||||
std::function<void(const QString&)> m_logCallback = nullptr;
|
std::function<void(const QString&)> m_logCallback = nullptr;
|
||||||
|
|
||||||
QTimer m_initializingTimer;
|
QTimer m_initializingTimer;
|
||||||
|
|||||||
@@ -11,7 +11,6 @@
|
|||||||
#include "logger.h"
|
#include "logger.h"
|
||||||
//#include "mozillavpn.h"
|
//#include "mozillavpn.h"
|
||||||
#include "networkwatcherimpl.h"
|
#include "networkwatcherimpl.h"
|
||||||
#include "platforms/dummy/dummynetworkwatcher.h"
|
|
||||||
//#include "settingsholder.h"
|
//#include "settingsholder.h"
|
||||||
|
|
||||||
#ifdef MZ_WINDOWS
|
#ifdef MZ_WINDOWS
|
||||||
@@ -51,7 +50,7 @@ NetworkWatcher::NetworkWatcher() { MZ_COUNT_CTOR(NetworkWatcher); }
|
|||||||
NetworkWatcher::~NetworkWatcher() { MZ_COUNT_DTOR(NetworkWatcher); }
|
NetworkWatcher::~NetworkWatcher() { MZ_COUNT_DTOR(NetworkWatcher); }
|
||||||
|
|
||||||
void NetworkWatcher::initialize() {
|
void NetworkWatcher::initialize() {
|
||||||
logger.debug() << "Initialize";
|
logger.debug() << "Initialize NetworkWatcher";
|
||||||
|
|
||||||
#if defined(MZ_WINDOWS)
|
#if defined(MZ_WINDOWS)
|
||||||
m_impl = new WindowsNetworkWatcher(this);
|
m_impl = new WindowsNetworkWatcher(this);
|
||||||
@@ -69,59 +68,45 @@ void NetworkWatcher::initialize() {
|
|||||||
m_impl = new DummyNetworkWatcher(this);
|
m_impl = new DummyNetworkWatcher(this);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
connect(m_impl, &NetworkWatcherImpl::unsecuredNetwork, this,
|
connect(m_impl, &NetworkWatcherImpl::unsecuredNetwork, this,
|
||||||
&NetworkWatcher::unsecuredNetwork);
|
&NetworkWatcher::unsecuredNetwork);
|
||||||
connect(m_impl, &NetworkWatcherImpl::networkChanged, this,
|
connect(m_impl, &NetworkWatcherImpl::networkChanged, this,
|
||||||
&NetworkWatcher::networkChange);
|
&NetworkWatcher::networkChange);
|
||||||
|
connect(m_impl, &NetworkWatcherImpl::sleepMode, this,
|
||||||
|
&NetworkWatcher::onSleepMode);
|
||||||
m_impl->initialize();
|
m_impl->initialize();
|
||||||
|
|
||||||
|
// Enable sleep/wake monitoring for VPN auto-reconnection
|
||||||
// TODO: IMPL FOR AMNEZIA
|
logger.debug() << "Starting NetworkWatcher for sleep/wake monitoring";
|
||||||
#if 0
|
logger.debug() << "About to call m_impl->start()";
|
||||||
SettingsHolder* settingsHolder = SettingsHolder::instance();
|
try {
|
||||||
Q_ASSERT(settingsHolder);
|
|
||||||
|
|
||||||
m_active = settingsHolder->unsecuredNetworkAlert() ||
|
|
||||||
settingsHolder->captivePortalAlert();
|
|
||||||
m_reportUnsecuredNetwork = settingsHolder->unsecuredNetworkAlert();
|
|
||||||
if (m_active) {
|
|
||||||
m_impl->start();
|
m_impl->start();
|
||||||
|
logger.debug() << "m_impl->start() completed successfully";
|
||||||
|
} catch (const std::exception& e) {
|
||||||
|
logger.error() << "Exception in m_impl->start():" << e.what();
|
||||||
|
} catch (...) {
|
||||||
|
logger.error() << "Unknown exception in m_impl->start()";
|
||||||
}
|
}
|
||||||
|
m_active = true;
|
||||||
connect(settingsHolder, &SettingsHolder::unsecuredNetworkAlertChanged, this,
|
m_reportUnsecuredNetwork = false; // Disable unsecured network alerts for Amnezia
|
||||||
&NetworkWatcher::settingsChanged);
|
|
||||||
connect(settingsHolder, &SettingsHolder::captivePortalAlertChanged, this,
|
|
||||||
&NetworkWatcher::settingsChanged);
|
|
||||||
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void NetworkWatcher::settingsChanged() {
|
void NetworkWatcher::settingsChanged() {
|
||||||
// TODO: IMPL FOR AMNEZIA
|
// For Amnezia: Keep NetworkWatcher always active for sleep/wake monitoring
|
||||||
#if 0
|
logger.debug() << "NetworkWatcher settings changed - keeping sleep monitoring active";
|
||||||
SettingsHolder* settingsHolder = SettingsHolder::instance();
|
|
||||||
m_active = settingsHolder->unsecuredNetworkAlert() ||
|
|
||||||
settingsHolder->captivePortalAlert();
|
|
||||||
m_reportUnsecuredNetwork = settingsHolder->unsecuredNetworkAlert();
|
|
||||||
|
|
||||||
if (m_active) {
|
|
||||||
logger.debug()
|
|
||||||
<< "Starting Network Watcher; Reporting of Unsecured Networks: "
|
|
||||||
<< m_reportUnsecuredNetwork;
|
|
||||||
m_impl->start();
|
|
||||||
} else {
|
|
||||||
logger.debug() << "Stopping Network Watcher";
|
|
||||||
m_impl->stop();
|
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
void NetworkWatcher::onSleepMode()
|
||||||
|
{
|
||||||
|
logger.debug() << "Resumed from sleep mode";
|
||||||
|
emit sleepMode();
|
||||||
}
|
}
|
||||||
|
|
||||||
void NetworkWatcher::unsecuredNetwork(const QString& networkName,
|
void NetworkWatcher::unsecuredNetwork(const QString& networkName,
|
||||||
const QString& networkId) {
|
const QString& networkId) {
|
||||||
logger.debug() << "Unsecured network:" << logger.sensitive(networkName)
|
logger.debug() << "Unsecured network:" << logger.sensitive(networkName)
|
||||||
<< "id:" << logger.sensitive(networkId);
|
<< "id:" << logger.sensitive(networkId);
|
||||||
|
|
||||||
#ifndef UNIT_TEST
|
#ifndef UNIT_TEST
|
||||||
if (!m_reportUnsecuredNetwork) {
|
if (!m_reportUnsecuredNetwork) {
|
||||||
logger.debug() << "Disabled. Ignoring unsecured network";
|
logger.debug() << "Disabled. Ignoring unsecured network";
|
||||||
|
|||||||
@@ -29,10 +29,13 @@ public:
|
|||||||
// false to restore.
|
// false to restore.
|
||||||
void simulateDisconnection(bool simulatedDisconnection);
|
void simulateDisconnection(bool simulatedDisconnection);
|
||||||
|
|
||||||
|
void onSleepMode();
|
||||||
|
|
||||||
QNetworkInformation::Reachability getReachability();
|
QNetworkInformation::Reachability getReachability();
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
void networkChange();
|
void networkChange();
|
||||||
|
void sleepMode();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void settingsChanged();
|
void settingsChanged();
|
||||||
|
|||||||
@@ -41,6 +41,8 @@ signals:
|
|||||||
// TODO: Only windows-networkwatcher has this, the other plattforms should
|
// TODO: Only windows-networkwatcher has this, the other plattforms should
|
||||||
// too.
|
// too.
|
||||||
void networkChanged(QString newBSSID);
|
void networkChanged(QString newBSSID);
|
||||||
|
void sleepMode();
|
||||||
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
bool m_active = false;
|
bool m_active = false;
|
||||||
|
|||||||
@@ -41,6 +41,7 @@ void PingHelper::start(const QString& serverIpv4Gateway,
|
|||||||
|
|
||||||
m_gateway = QHostAddress(serverIpv4Gateway);
|
m_gateway = QHostAddress(serverIpv4Gateway);
|
||||||
m_source = QHostAddress(deviceIpv4Address.section('/', 0, 0));
|
m_source = QHostAddress(deviceIpv4Address.section('/', 0, 0));
|
||||||
|
|
||||||
m_pingSender = PingSenderFactory::create(m_source, this);
|
m_pingSender = PingSenderFactory::create(m_source, this);
|
||||||
|
|
||||||
// Some platforms require root access to send and receive ICMP pings. If
|
// Some platforms require root access to send and receive ICMP pings. If
|
||||||
@@ -53,8 +54,10 @@ void PingHelper::start(const QString& serverIpv4Gateway,
|
|||||||
|
|
||||||
connect(m_pingSender, &PingSender::recvPing, this, &PingHelper::pingReceived,
|
connect(m_pingSender, &PingSender::recvPing, this, &PingHelper::pingReceived,
|
||||||
Qt::QueuedConnection);
|
Qt::QueuedConnection);
|
||||||
connect(m_pingSender, &PingSender::criticalPingError, this,
|
connect(m_pingSender, &PingSender::criticalPingError, this, [this]() {
|
||||||
[]() { logger.info() << "Encountered Unrecoverable ping error"; });
|
logger.info() << "Encountered Unrecoverable ping error";
|
||||||
|
emit connectionLose();
|
||||||
|
});
|
||||||
|
|
||||||
// Reset the ping statistics
|
// Reset the ping statistics
|
||||||
m_sequence = 0;
|
m_sequence = 0;
|
||||||
|
|||||||
@@ -33,6 +33,8 @@ class PingHelper final : public QObject {
|
|||||||
|
|
||||||
signals:
|
signals:
|
||||||
void pingSentAndReceived(qint64 msec);
|
void pingSentAndReceived(qint64 msec);
|
||||||
|
void connectionLose();
|
||||||
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void nextPing();
|
void nextPing();
|
||||||
|
|||||||
@@ -5,12 +5,12 @@
|
|||||||
#include "pingsenderfactory.h"
|
#include "pingsenderfactory.h"
|
||||||
|
|
||||||
#if defined(MZ_LINUX) || defined(MZ_ANDROID)
|
#if defined(MZ_LINUX) || defined(MZ_ANDROID)
|
||||||
//# include "platforms/linux/linuxpingsender.h"
|
# include "platforms/linux/linuxpingsender.h"
|
||||||
#elif defined(MZ_MACOS) || defined(MZ_IOS)
|
#elif defined(MZ_MACOS) || defined(MZ_IOS)
|
||||||
# include "platforms/macos/macospingsender.h"
|
# include "platforms/macos/macospingsender.h"
|
||||||
#elif defined(MZ_WINDOWS)
|
#elif defined(MZ_WINDOWS)
|
||||||
# include "platforms/windows/windowspingsender.h"
|
# include "platforms/windows/windowspingsender.h"
|
||||||
#elif defined(MZ_DUMMY) || defined(UNIT_TEST)
|
#elif defined(MZ_WASM) || defined(UNIT_TEST)
|
||||||
# include "platforms/dummy/dummypingsender.h"
|
# include "platforms/dummy/dummypingsender.h"
|
||||||
#else
|
#else
|
||||||
# error "Unsupported platform"
|
# error "Unsupported platform"
|
||||||
@@ -19,8 +19,7 @@
|
|||||||
PingSender* PingSenderFactory::create(const QHostAddress& source,
|
PingSender* PingSenderFactory::create(const QHostAddress& source,
|
||||||
QObject* parent) {
|
QObject* parent) {
|
||||||
#if defined(MZ_LINUX) || defined(MZ_ANDROID)
|
#if defined(MZ_LINUX) || defined(MZ_ANDROID)
|
||||||
return nullptr;
|
return new LinuxPingSender(source, parent);
|
||||||
// return new LinuxPingSender(source, parent);
|
|
||||||
#elif defined(MZ_MACOS) || defined(MZ_IOS)
|
#elif defined(MZ_MACOS) || defined(MZ_IOS)
|
||||||
return new MacOSPingSender(source, parent);
|
return new MacOSPingSender(source, parent);
|
||||||
#elif defined(MZ_WINDOWS)
|
#elif defined(MZ_WINDOWS)
|
||||||
|
|||||||
@@ -15,4 +15,5 @@ class PingSenderFactory final {
|
|||||||
static PingSender* create(const QHostAddress& source, QObject* parent);
|
static PingSender* create(const QHostAddress& source, QObject* parent);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
#endif // PINGSENDERFACTORY_H
|
#endif // PINGSENDERFACTORY_H
|
||||||
|
|||||||
@@ -34,6 +34,9 @@ void IOSNetworkWatcher::initialize() {
|
|||||||
});
|
});
|
||||||
nw_path_monitor_start(m_networkMonitor);
|
nw_path_monitor_start(m_networkMonitor);
|
||||||
|
|
||||||
|
// Call start() to initialize sleep/wake monitoring (will call MacOSNetworkWatcher::start() if this is macOS)
|
||||||
|
this->start();
|
||||||
|
|
||||||
//TODO IMPL FOR AMNEZIA
|
//TODO IMPL FOR AMNEZIA
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -41,6 +41,9 @@ void LinuxNetworkWatcher::initialize() {
|
|||||||
connect(m_worker, &LinuxNetworkWatcherWorker::unsecuredNetwork, this,
|
connect(m_worker, &LinuxNetworkWatcherWorker::unsecuredNetwork, this,
|
||||||
&LinuxNetworkWatcher::unsecuredNetwork);
|
&LinuxNetworkWatcher::unsecuredNetwork);
|
||||||
|
|
||||||
|
connect(m_worker, &LinuxNetworkWatcherWorker::sleepMode, this,
|
||||||
|
&NetworkWatcherImpl::sleepMode);
|
||||||
|
|
||||||
// Let's wait a few seconds to allow the UI to be fully loaded and shown.
|
// Let's wait a few seconds to allow the UI to be fully loaded and shown.
|
||||||
// This is not strictly needed, but it's better for user experience because
|
// This is not strictly needed, but it's better for user experience because
|
||||||
// it makes the UI faster to appear, plus it gives a bit of delay between the
|
// it makes the UI faster to appear, plus it gives a bit of delay between the
|
||||||
|
|||||||
@@ -33,7 +33,21 @@
|
|||||||
#define NM_802_11_AP_SEC_WEAK_CRYPTO \
|
#define NM_802_11_AP_SEC_WEAK_CRYPTO \
|
||||||
(NM_802_11_AP_SEC_PAIR_WEP40 | NM_802_11_AP_SEC_PAIR_WEP104)
|
(NM_802_11_AP_SEC_PAIR_WEP40 | NM_802_11_AP_SEC_PAIR_WEP104)
|
||||||
|
|
||||||
|
|
||||||
|
enum NMState {
|
||||||
|
NM_STATE_UNKNOWN = 0,
|
||||||
|
NM_STATE_ASLEEP = 10,
|
||||||
|
NM_STATE_DISCONNECTED = 20,
|
||||||
|
NM_STATE_DISCONNECTING = 30,
|
||||||
|
NM_STATE_CONNECTING = 40,
|
||||||
|
NM_STATE_CONNECTED_LOCAL = 50,
|
||||||
|
NM_STATE_CONNECTED_SITE = 60,
|
||||||
|
NM_STATE_CONNECTED_GLOBAL = 70
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
constexpr const char* DBUS_NETWORKMANAGER = "org.freedesktop.NetworkManager";
|
constexpr const char* DBUS_NETWORKMANAGER = "org.freedesktop.NetworkManager";
|
||||||
|
constexpr const char* DBUS_NETWORKMANAGER_PATH = "/org/freedesktop/NetworkManager";
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
Logger logger("LinuxNetworkWatcherWorker");
|
Logger logger("LinuxNetworkWatcherWorker");
|
||||||
@@ -73,7 +87,7 @@ void LinuxNetworkWatcherWorker::initialize() {
|
|||||||
// documentation:
|
// documentation:
|
||||||
// https://developer.gnome.org/NetworkManager/stable/gdbus-org.freedesktop.NetworkManager.html
|
// https://developer.gnome.org/NetworkManager/stable/gdbus-org.freedesktop.NetworkManager.html
|
||||||
|
|
||||||
QDBusInterface nm(DBUS_NETWORKMANAGER, "/org/freedesktop/NetworkManager",
|
QDBusInterface nm(DBUS_NETWORKMANAGER, DBUS_NETWORKMANAGER_PATH,
|
||||||
DBUS_NETWORKMANAGER, QDBusConnection::systemBus());
|
DBUS_NETWORKMANAGER, QDBusConnection::systemBus());
|
||||||
if (!nm.isValid()) {
|
if (!nm.isValid()) {
|
||||||
logger.error()
|
logger.error()
|
||||||
@@ -108,6 +122,12 @@ void LinuxNetworkWatcherWorker::initialize() {
|
|||||||
SLOT(propertyChanged(QString, QVariantMap, QStringList)));
|
SLOT(propertyChanged(QString, QVariantMap, QStringList)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QDBusConnection::systemBus().connect(DBUS_NETWORKMANAGER,
|
||||||
|
DBUS_NETWORKMANAGER_PATH,
|
||||||
|
DBUS_NETWORKMANAGER,
|
||||||
|
"StateChanged",
|
||||||
|
this, SLOT(NMStateChanged(quint32)));
|
||||||
|
|
||||||
if (m_devicePaths.isEmpty()) {
|
if (m_devicePaths.isEmpty()) {
|
||||||
logger.warning() << "No wifi devices found";
|
logger.warning() << "No wifi devices found";
|
||||||
return;
|
return;
|
||||||
@@ -173,5 +193,16 @@ void LinuxNetworkWatcherWorker::checkDevices() {
|
|||||||
emit unsecuredNetwork(ssid, bssid);
|
emit unsecuredNetwork(ssid, bssid);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void LinuxNetworkWatcherWorker::NMStateChanged(quint32 state)
|
||||||
|
{
|
||||||
|
if (state == NM_STATE_ASLEEP) {
|
||||||
|
emit sleepMode();
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.debug() << "NMStateChanged " << state;
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ class LinuxNetworkWatcherWorker final : public QObject {
|
|||||||
|
|
||||||
signals:
|
signals:
|
||||||
void unsecuredNetwork(const QString& networkName, const QString& networkId);
|
void unsecuredNetwork(const QString& networkName, const QString& networkId);
|
||||||
|
void sleepMode();
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void initialize();
|
void initialize();
|
||||||
@@ -30,6 +31,7 @@ class LinuxNetworkWatcherWorker final : public QObject {
|
|||||||
private slots:
|
private slots:
|
||||||
void propertyChanged(QString interface, QVariantMap properties,
|
void propertyChanged(QString interface, QVariantMap properties,
|
||||||
QStringList list);
|
QStringList list);
|
||||||
|
void NMStateChanged(quint32 state);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// We collect the list of DBus wifi network device paths during the
|
// We collect the list of DBus wifi network device paths during the
|
||||||
|
|||||||
@@ -0,0 +1,185 @@
|
|||||||
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
|
#include "linuxpingsender.h"
|
||||||
|
|
||||||
|
#include <arpa/inet.h>
|
||||||
|
#include <errno.h>
|
||||||
|
#include <linux/filter.h>
|
||||||
|
#include <netinet/in.h>
|
||||||
|
#include <netinet/ip.h>
|
||||||
|
#include <netinet/ip_icmp.h>
|
||||||
|
#include <sys/socket.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
|
#include <QSocketNotifier>
|
||||||
|
#include <QtEndian>
|
||||||
|
|
||||||
|
#include "leakdetector.h"
|
||||||
|
#include "logger.h"
|
||||||
|
#include "qhostaddress.h"
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
Logger logger("LinuxPingSender");
|
||||||
|
}
|
||||||
|
|
||||||
|
int LinuxPingSender::createSocket() {
|
||||||
|
// Try creating an ICMP socket. This would be the ideal choice, but it can
|
||||||
|
// fail depending on the kernel config (see: sys.net.ipv4.ping_group_range)
|
||||||
|
m_socket = socket(AF_INET, SOCK_DGRAM, IPPROTO_ICMP);
|
||||||
|
if (m_socket >= 0) {
|
||||||
|
m_ident = 0;
|
||||||
|
return m_socket;
|
||||||
|
}
|
||||||
|
if ((errno != EPERM) && (errno != EACCES)) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// As a fallback, create a raw socket, which requires root permissions
|
||||||
|
// or CAP_NET_RAW to be granted to the VPN client.
|
||||||
|
m_socket = socket(AF_INET, SOCK_RAW, IPPROTO_ICMP);
|
||||||
|
if (m_socket < 0) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
m_ident = getpid() & 0xffff;
|
||||||
|
|
||||||
|
// Attach a BPF filter to discard everything but replies to our echo.
|
||||||
|
struct sock_filter bpf_prog[] = {
|
||||||
|
BPF_STMT(BPF_LDX | BPF_B | BPF_MSH, 0), /* Skip IP header. */
|
||||||
|
BPF_STMT(BPF_LD | BPF_H | BPF_IND, 4), /* Load icmp echo ident */
|
||||||
|
BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, m_ident, 1, 0), /* Ours? */
|
||||||
|
BPF_STMT(BPF_RET | BPF_K, 0), /* Unexpected identifier. Reject. */
|
||||||
|
BPF_STMT(BPF_LD | BPF_B | BPF_IND, 0), /* Load icmp type */
|
||||||
|
BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, ICMP_ECHOREPLY, 1, 0), /* Echo? */
|
||||||
|
BPF_STMT(BPF_RET | BPF_K, 0), /* Unexpected type. Reject. */
|
||||||
|
BPF_STMT(BPF_RET | BPF_K, ~0U), /* Packet passes the filter. */
|
||||||
|
};
|
||||||
|
struct sock_fprog filter = {
|
||||||
|
.len = sizeof(bpf_prog) / sizeof(struct sock_filter),
|
||||||
|
.filter = bpf_prog,
|
||||||
|
};
|
||||||
|
setsockopt(m_socket, SOL_SOCKET, SO_ATTACH_FILTER, &filter, sizeof(filter));
|
||||||
|
|
||||||
|
return m_socket;
|
||||||
|
}
|
||||||
|
|
||||||
|
LinuxPingSender::LinuxPingSender(const QHostAddress& source, QObject* parent)
|
||||||
|
: PingSender(parent) {
|
||||||
|
MZ_COUNT_CTOR(LinuxPingSender);
|
||||||
|
|
||||||
|
logger.debug() << "LinuxPingSender(" + logger.sensitive(source.toString()) +
|
||||||
|
") created";
|
||||||
|
|
||||||
|
m_socket = createSocket();
|
||||||
|
if (m_socket < 0) {
|
||||||
|
logger.error() << "Socket creation error: " << strerror(errno);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
quint32 ipv4addr = INADDR_ANY;
|
||||||
|
if (!source.isNull()) {
|
||||||
|
ipv4addr = source.toIPv4Address();
|
||||||
|
}
|
||||||
|
struct sockaddr_in addr;
|
||||||
|
memset(&addr, 0, sizeof addr);
|
||||||
|
addr.sin_family = AF_INET;
|
||||||
|
addr.sin_addr.s_addr = qToBigEndian<quint32>(ipv4addr);
|
||||||
|
|
||||||
|
if (bind(m_socket, (struct sockaddr*)&addr, sizeof(addr)) != 0) {
|
||||||
|
close(m_socket);
|
||||||
|
m_socket = -1;
|
||||||
|
logger.error() << "bind error:" << strerror(errno);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
m_notifier = new QSocketNotifier(m_socket, QSocketNotifier::Read, this);
|
||||||
|
if (m_ident) {
|
||||||
|
connect(m_notifier, &QSocketNotifier::activated, this,
|
||||||
|
&LinuxPingSender::rawSocketReady);
|
||||||
|
} else {
|
||||||
|
connect(m_notifier, &QSocketNotifier::activated, this,
|
||||||
|
&LinuxPingSender::icmpSocketReady);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
LinuxPingSender::~LinuxPingSender() {
|
||||||
|
MZ_COUNT_DTOR(LinuxPingSender);
|
||||||
|
if (m_socket >= 0) {
|
||||||
|
close(m_socket);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void LinuxPingSender::sendPing(const QHostAddress& dest, quint16 sequence) {
|
||||||
|
quint32 ipv4dest = dest.toIPv4Address();
|
||||||
|
struct sockaddr_in addr;
|
||||||
|
memset(&addr, 0, sizeof(addr));
|
||||||
|
addr.sin_family = AF_INET;
|
||||||
|
addr.sin_addr.s_addr = qToBigEndian<quint32>(ipv4dest);
|
||||||
|
|
||||||
|
struct icmphdr packet;
|
||||||
|
memset(&packet, 0, sizeof(packet));
|
||||||
|
packet.type = ICMP_ECHO;
|
||||||
|
packet.un.echo.id = htons(m_ident);
|
||||||
|
packet.un.echo.sequence = htons(sequence);
|
||||||
|
packet.checksum = inetChecksum(&packet, sizeof(packet));
|
||||||
|
|
||||||
|
int rc = sendto(m_socket, &packet, sizeof(packet), 0, (struct sockaddr*)&addr,
|
||||||
|
sizeof(addr));
|
||||||
|
if (rc < 0) {
|
||||||
|
logger.error() << "failed to send:" << strerror(errno);
|
||||||
|
if (errno == ENETUNREACH) {
|
||||||
|
emit criticalPingError();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void LinuxPingSender::icmpSocketReady() {
|
||||||
|
socklen_t slen = 0;
|
||||||
|
unsigned char data[2048];
|
||||||
|
int rc = recvfrom(m_socket, data, sizeof(data), MSG_DONTWAIT, NULL, &slen);
|
||||||
|
if (rc <= 0) {
|
||||||
|
logger.error() << "recvfrom failed:" << strerror(errno);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct icmphdr packet;
|
||||||
|
if (rc >= (int)sizeof(packet)) {
|
||||||
|
memcpy(&packet, data, sizeof(packet));
|
||||||
|
if (packet.type == ICMP_ECHOREPLY) {
|
||||||
|
emit recvPing(htons(packet.un.echo.sequence));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void LinuxPingSender::rawSocketReady() {
|
||||||
|
socklen_t slen = 0;
|
||||||
|
unsigned char data[2048];
|
||||||
|
int rc = recvfrom(m_socket, data, sizeof(data), MSG_DONTWAIT, NULL, &slen);
|
||||||
|
if (rc <= 0) {
|
||||||
|
logger.error() << "recvfrom failed:" << strerror(errno);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check the IP header
|
||||||
|
const struct iphdr* ip = (struct iphdr*)data;
|
||||||
|
int iphdrlen = ip->ihl * 4;
|
||||||
|
if (rc < iphdrlen || iphdrlen < (int)sizeof(struct iphdr)) {
|
||||||
|
logger.error() << "malformed IP packet:" << strerror(errno);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check the ICMP packet
|
||||||
|
struct icmphdr packet;
|
||||||
|
if (inetChecksum(data + iphdrlen, rc - iphdrlen) != 0) {
|
||||||
|
logger.warning() << "invalid checksum";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (rc >= (iphdrlen + (int)sizeof(packet))) {
|
||||||
|
memcpy(&packet, data + iphdrlen, sizeof(packet));
|
||||||
|
quint16 id = htons(m_ident);
|
||||||
|
if ((packet.type == ICMP_ECHOREPLY) && (packet.un.echo.id == id)) {
|
||||||
|
emit recvPing(htons(packet.un.echo.sequence));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
|
#ifndef LINUXPINGSENDER_H
|
||||||
|
#define LINUXPINGSENDER_H
|
||||||
|
|
||||||
|
#include <QObject>
|
||||||
|
|
||||||
|
#include "../../mozilla/pingsender.h"
|
||||||
|
|
||||||
|
class QSocketNotifier;
|
||||||
|
|
||||||
|
class LinuxPingSender final : public PingSender {
|
||||||
|
Q_OBJECT
|
||||||
|
Q_DISABLE_COPY_MOVE(LinuxPingSender)
|
||||||
|
|
||||||
|
public:
|
||||||
|
LinuxPingSender(const QHostAddress& source, QObject* parent = nullptr);
|
||||||
|
~LinuxPingSender();
|
||||||
|
|
||||||
|
bool isValid() override { return (m_socket >= 0); };
|
||||||
|
|
||||||
|
void sendPing(const QHostAddress& dest, quint16 sequence) override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
int createSocket();
|
||||||
|
|
||||||
|
private slots:
|
||||||
|
void rawSocketReady();
|
||||||
|
void icmpSocketReady();
|
||||||
|
|
||||||
|
private:
|
||||||
|
QSocketNotifier* m_notifier = nullptr;
|
||||||
|
int m_socket = -1;
|
||||||
|
quint16 m_ident = 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // LINUXPINGSENDER_H
|
||||||
@@ -10,8 +10,31 @@
|
|||||||
#include "../ios/iosnetworkwatcher.h"
|
#include "../ios/iosnetworkwatcher.h"
|
||||||
#include "networkwatcherimpl.h"
|
#include "networkwatcherimpl.h"
|
||||||
|
|
||||||
|
#include <IOKit/pwr_mgt/IOPMLib.h>
|
||||||
|
#include <IOKit/IOMessage.h>
|
||||||
|
|
||||||
|
|
||||||
class QString;
|
class QString;
|
||||||
|
|
||||||
|
// Inspired by https://ladydebug.com/blog/2020/05/21/programmatically-capture-energy-saver-event-on-mac/
|
||||||
|
class PowerNotificationsListener
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
PowerNotificationsListener(class MacOSNetworkWatcher* watcher) : m_watcher(watcher) {}
|
||||||
|
void registerForNotifications();
|
||||||
|
void cleanup();
|
||||||
|
|
||||||
|
private:
|
||||||
|
static void sleepWakeupCallBack(void *refParam, io_service_t service, natural_t messageType, void *messageArgument);
|
||||||
|
|
||||||
|
private:
|
||||||
|
class MacOSNetworkWatcher* m_watcher = nullptr;
|
||||||
|
IONotificationPortRef notifyPortRef = nullptr; // notification port allocated by IORegisterForSystemPower
|
||||||
|
io_object_t notifierObj = IO_OBJECT_NULL; // notifier object, used to deregister later
|
||||||
|
io_connect_t rootPowerDomain = IO_OBJECT_NULL; // a reference to the Root Power Domain IOService
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
class MacOSNetworkWatcher final : public IOSNetworkWatcher {
|
class MacOSNetworkWatcher final : public IOSNetworkWatcher {
|
||||||
public:
|
public:
|
||||||
MacOSNetworkWatcher(QObject* parent);
|
MacOSNetworkWatcher(QObject* parent);
|
||||||
@@ -25,6 +48,7 @@ class MacOSNetworkWatcher final : public IOSNetworkWatcher {
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
void* m_delegate = nullptr;
|
void* m_delegate = nullptr;
|
||||||
|
PowerNotificationsListener m_powerlistener;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // MACOSNETWORKWATCHER_H
|
#endif // MACOSNETWORKWATCHER_H
|
||||||
|
|||||||
@@ -6,6 +6,11 @@
|
|||||||
#include "leakdetector.h"
|
#include "leakdetector.h"
|
||||||
#include "logger.h"
|
#include "logger.h"
|
||||||
|
|
||||||
|
#include <QProcess>
|
||||||
|
#include <QMetaObject>
|
||||||
|
#include <pthread.h>
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
#import <CoreWLAN/CoreWLAN.h>
|
#import <CoreWLAN/CoreWLAN.h>
|
||||||
#import <Network/Network.h>
|
#import <Network/Network.h>
|
||||||
|
|
||||||
@@ -13,6 +18,37 @@ namespace {
|
|||||||
Logger logger("MacOSNetworkWatcher");
|
Logger logger("MacOSNetworkWatcher");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Global variables for CFRunLoop thread
|
||||||
|
static pthread_t g_powerThread;
|
||||||
|
static CFRunLoopRef g_powerRunLoop = nullptr;
|
||||||
|
static bool g_shouldStopPowerThread = false;
|
||||||
|
static PowerNotificationsListener* g_powerListener = nullptr;
|
||||||
|
|
||||||
|
// Thread function for dedicated CFRunLoop
|
||||||
|
void* powerMonitoringThread(void* arg) {
|
||||||
|
logger.debug() << "Power monitoring thread started";
|
||||||
|
|
||||||
|
PowerNotificationsListener* listener = static_cast<PowerNotificationsListener*>(arg);
|
||||||
|
|
||||||
|
// Get the runloop for this thread
|
||||||
|
g_powerRunLoop = CFRunLoopGetCurrent();
|
||||||
|
|
||||||
|
// Register for power notifications in this thread
|
||||||
|
listener->registerForNotifications();
|
||||||
|
|
||||||
|
// Run the CFRunLoop - this will block until CFRunLoopStop is called
|
||||||
|
while (!g_shouldStopPowerThread) {
|
||||||
|
CFRunLoopRunInMode(kCFRunLoopDefaultMode, 1.0, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Cleanup
|
||||||
|
listener->cleanup();
|
||||||
|
g_powerRunLoop = nullptr;
|
||||||
|
|
||||||
|
logger.debug() << "Power monitoring thread finished";
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
@interface MacOSNetworkWatcherDelegate : NSObject <CWEventDelegate> {
|
@interface MacOSNetworkWatcherDelegate : NSObject <CWEventDelegate> {
|
||||||
MacOSNetworkWatcher* m_watcher;
|
MacOSNetworkWatcher* m_watcher;
|
||||||
}
|
}
|
||||||
@@ -33,17 +69,145 @@ Logger logger("MacOSNetworkWatcher");
|
|||||||
|
|
||||||
if (m_watcher) {
|
if (m_watcher) {
|
||||||
m_watcher->checkInterface();
|
m_watcher->checkInterface();
|
||||||
|
// Emit networkChanged signal when BSSID changes
|
||||||
|
emit m_watcher->networkChanged(QString::fromNSString(interfaceName));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
MacOSNetworkWatcher::MacOSNetworkWatcher(QObject* parent) : IOSNetworkWatcher(parent) {
|
void PowerNotificationsListener::registerForNotifications()
|
||||||
|
{
|
||||||
|
logger.debug() << "Registering for system power notifications in dedicated thread";
|
||||||
|
|
||||||
|
rootPowerDomain = IORegisterForSystemPower(this, ¬ifyPortRef, sleepWakeupCallBack, ¬ifierObj);
|
||||||
|
if (rootPowerDomain == IO_OBJECT_NULL) {
|
||||||
|
logger.error() << "Failed to register for system power notifications!";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add the notification port to the current runloop (dedicated thread)
|
||||||
|
CFRunLoopAddSource(CFRunLoopGetCurrent(), IONotificationPortGetRunLoopSource(notifyPortRef), kCFRunLoopCommonModes);
|
||||||
|
logger.debug() << "Power notifications registered successfully";
|
||||||
|
}
|
||||||
|
|
||||||
|
void PowerNotificationsListener::cleanup()
|
||||||
|
{
|
||||||
|
if (notifyPortRef != nullptr) {
|
||||||
|
CFRunLoopRemoveSource(CFRunLoopGetCurrent(), IONotificationPortGetRunLoopSource(notifyPortRef), kCFRunLoopCommonModes);
|
||||||
|
IONotificationPortDestroy(notifyPortRef);
|
||||||
|
notifyPortRef = nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (notifierObj != IO_OBJECT_NULL) {
|
||||||
|
IODeregisterForSystemPower(¬ifierObj);
|
||||||
|
notifierObj = IO_OBJECT_NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (rootPowerDomain != IO_OBJECT_NULL) {
|
||||||
|
IOServiceClose(rootPowerDomain);
|
||||||
|
rootPowerDomain = IO_OBJECT_NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void PowerNotificationsListener::sleepWakeupCallBack(void *refParam, io_service_t service, natural_t messageType, void *messageArgument)
|
||||||
|
{
|
||||||
|
Q_UNUSED(service)
|
||||||
|
|
||||||
|
auto listener = static_cast<PowerNotificationsListener *>(refParam);
|
||||||
|
|
||||||
|
logger.debug() << "Power callback received, messageType:" << messageType;
|
||||||
|
switch (messageType) {
|
||||||
|
case kIOMessageCanSystemSleep:
|
||||||
|
/* Idle sleep is about to kick in. This message will not be sent for forced sleep.
|
||||||
|
* Applications have a chance to prevent sleep by calling IOCancelPowerChange.
|
||||||
|
* Most applications should not prevent idle sleep. Power Management waits up to
|
||||||
|
* 30 seconds for you to either allow or deny idle sleep. If you don’t acknowledge
|
||||||
|
* this power change by calling either IOAllowPowerChange or IOCancelPowerChange,
|
||||||
|
* the system will wait 30 seconds then go to sleep.
|
||||||
|
*/
|
||||||
|
|
||||||
|
logger.debug() << "System power message: can system sleep?";
|
||||||
|
|
||||||
|
// Uncomment to cancel idle sleep
|
||||||
|
// IOCancelPowerChange(thiz->rootPowerDomain, reinterpret_cast<long>(messageArgument));
|
||||||
|
|
||||||
|
// Allow idle sleep
|
||||||
|
IOAllowPowerChange(listener->rootPowerDomain, reinterpret_cast<long>(messageArgument));
|
||||||
|
break;
|
||||||
|
|
||||||
|
case kIOMessageSystemWillNotSleep:
|
||||||
|
/* Announces that the system has retracted a previous attempt to sleep; it
|
||||||
|
* follows `kIOMessageCanSystemSleep`.
|
||||||
|
*/
|
||||||
|
logger.debug() << "System power message: system will NOT sleep.";
|
||||||
|
break;
|
||||||
|
|
||||||
|
case kIOMessageSystemWillSleep:
|
||||||
|
/* The system WILL go to sleep. If you do not call IOAllowPowerChange or
|
||||||
|
* IOCancelPowerChange to acknowledge this message, sleep will be delayed by
|
||||||
|
* 30 seconds.
|
||||||
|
*
|
||||||
|
* NOTE: If you call IOCancelPowerChange to deny sleep it returns kIOReturnSuccess,
|
||||||
|
* however the system WILL still go to sleep.
|
||||||
|
*/
|
||||||
|
|
||||||
|
logger.debug() << "System power message: system WILL sleep";
|
||||||
|
IOAllowPowerChange(listener->rootPowerDomain, reinterpret_cast<long>(messageArgument));
|
||||||
|
break;
|
||||||
|
|
||||||
|
case kIOMessageSystemWillPowerOn:
|
||||||
|
/* Announces that the system is beginning to power the device tree; most devices
|
||||||
|
* are still unavailable at this point.
|
||||||
|
*/
|
||||||
|
/* From the documentation:
|
||||||
|
*
|
||||||
|
* - kIOMessageSystemWillPowerOn is delivered at early wakeup time, before most hardware
|
||||||
|
* has been powered on. Be aware that any attempts to access disk, network, the display,
|
||||||
|
* etc. may result in errors or blocking your process until those resources become
|
||||||
|
* available.
|
||||||
|
*
|
||||||
|
* So we do NOT log this event.
|
||||||
|
*/
|
||||||
|
break;
|
||||||
|
|
||||||
|
case kIOMessageSystemHasPoweredOn:
|
||||||
|
/* Announces that the system and its devices have woken up. */
|
||||||
|
logger.debug() << "System has powered on - emitting sleepMode signal from dedicated CFRunLoop thread";
|
||||||
|
if (listener->m_watcher) {
|
||||||
|
// Use QMetaObject::invokeMethod for thread-safe signal emission
|
||||||
|
QMetaObject::invokeMethod(listener->m_watcher, "sleepMode", Qt::QueuedConnection);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
logger.debug() << "System power message: other event: " << messageType;
|
||||||
|
/* Not a system sleep and wake notification. */
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
MacOSNetworkWatcher::MacOSNetworkWatcher(QObject* parent) : IOSNetworkWatcher(parent), m_powerlistener(this) {
|
||||||
MZ_COUNT_CTOR(MacOSNetworkWatcher);
|
MZ_COUNT_CTOR(MacOSNetworkWatcher);
|
||||||
}
|
}
|
||||||
|
|
||||||
MacOSNetworkWatcher::~MacOSNetworkWatcher() {
|
MacOSNetworkWatcher::~MacOSNetworkWatcher() {
|
||||||
MZ_COUNT_DTOR(MacOSNetworkWatcher);
|
MZ_COUNT_DTOR(MacOSNetworkWatcher);
|
||||||
|
|
||||||
|
// Stop the dedicated power monitoring thread
|
||||||
|
if (g_powerListener) {
|
||||||
|
logger.debug() << "Stopping dedicated power monitoring thread";
|
||||||
|
g_shouldStopPowerThread = true;
|
||||||
|
|
||||||
|
if (g_powerRunLoop) {
|
||||||
|
CFRunLoopStop(g_powerRunLoop);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Wait for thread to finish
|
||||||
|
pthread_join(g_powerThread, nullptr);
|
||||||
|
g_powerListener = nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
if (m_delegate) {
|
if (m_delegate) {
|
||||||
CWWiFiClient* client = CWWiFiClient.sharedWiFiClient;
|
CWWiFiClient* client = CWWiFiClient.sharedWiFiClient;
|
||||||
if (!client) {
|
if (!client) {
|
||||||
@@ -67,6 +231,20 @@ void MacOSNetworkWatcher::start() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Start dedicated power monitoring thread with CFRunLoop
|
||||||
|
if (!g_powerListener) {
|
||||||
|
g_powerListener = &m_powerlistener;
|
||||||
|
g_shouldStopPowerThread = false;
|
||||||
|
|
||||||
|
int result = pthread_create(&g_powerThread, nullptr, powerMonitoringThread, &m_powerlistener);
|
||||||
|
if (result != 0) {
|
||||||
|
logger.error() << "Failed to create power monitoring thread:" << result;
|
||||||
|
g_powerListener = nullptr;
|
||||||
|
} else {
|
||||||
|
logger.debug() << "Power monitoring enabled";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
CWWiFiClient* client = CWWiFiClient.sharedWiFiClient;
|
CWWiFiClient* client = CWWiFiClient.sharedWiFiClient;
|
||||||
if (!client) {
|
if (!client) {
|
||||||
logger.error() << "Unable to retrieve the CWWiFiClient shared instance";
|
logger.error() << "Unable to retrieve the CWWiFiClient shared instance";
|
||||||
@@ -77,6 +255,8 @@ void MacOSNetworkWatcher::start() {
|
|||||||
m_delegate = [[MacOSNetworkWatcherDelegate alloc] initWithObject:this];
|
m_delegate = [[MacOSNetworkWatcherDelegate alloc] initWithObject:this];
|
||||||
[client setDelegate:static_cast<MacOSNetworkWatcherDelegate*>(m_delegate)];
|
[client setDelegate:static_cast<MacOSNetworkWatcherDelegate*>(m_delegate)];
|
||||||
[client startMonitoringEventWithType:CWEventTypeBSSIDDidChange error:nullptr];
|
[client startMonitoringEventWithType:CWEventTypeBSSIDDidChange error:nullptr];
|
||||||
|
|
||||||
|
logger.debug() << "MacOSNetworkWatcher started successfully";
|
||||||
}
|
}
|
||||||
|
|
||||||
void MacOSNetworkWatcher::checkInterface() {
|
void MacOSNetworkWatcher::checkInterface() {
|
||||||
@@ -87,42 +267,70 @@ void MacOSNetworkWatcher::checkInterface() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
CWWiFiClient* client = CWWiFiClient.sharedWiFiClient;
|
// Use wdutil to get reliable WiFi information
|
||||||
if (!client) {
|
QProcess process;
|
||||||
logger.debug() << "Unable to retrieve the CWWiFiClient shared instance";
|
process.start("wdutil", QStringList() << "info");
|
||||||
|
process.waitForFinished(5000);
|
||||||
|
|
||||||
|
QString output = process.readAllStandardOutput();
|
||||||
|
QString errorOutput = process.readAllStandardError();
|
||||||
|
|
||||||
|
logger.debug() << "wdutil exit code:" << process.exitCode();
|
||||||
|
|
||||||
|
if (process.exitCode() != 0) {
|
||||||
|
logger.debug() << "wdutil failed with exit code:" << process.exitCode();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
CWInterface* interface = [client interface];
|
// Parse wdutil output to find WiFi connection info
|
||||||
if (!interface) {
|
QStringList lines = output.split('\n');
|
||||||
logger.debug() << "No default wifi interface";
|
QString ssid, interfaceName, security;
|
||||||
return;
|
bool wifiSectionFound = false;
|
||||||
|
|
||||||
|
for (int i = 0; i < lines.size(); i++) {
|
||||||
|
QString trimmedLine = lines[i].trimmed();
|
||||||
|
|
||||||
|
if (trimmedLine == "WIFI") {
|
||||||
|
wifiSectionFound = true;
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (![interface powerOn]) {
|
if (wifiSectionFound) {
|
||||||
logger.debug() << "The interface is off";
|
// Stop parsing when we reach next section header (all caps after separator line)
|
||||||
return;
|
if (trimmedLine.startsWith("————————")) {
|
||||||
|
if (i + 1 < lines.size()) {
|
||||||
|
QString nextLine = lines[i + 1].trimmed();
|
||||||
|
if (!nextLine.isEmpty() && nextLine.length() > 2 && nextLine.toUpper() == nextLine && nextLine != "WIFI") {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
continue; // Skip separator lines
|
||||||
}
|
}
|
||||||
|
|
||||||
NSString* ssidNS = [interface ssid];
|
if (trimmedLine.startsWith("Interface Name")) {
|
||||||
if (!ssidNS) {
|
QStringList parts = trimmedLine.split(":");
|
||||||
logger.debug() << "WiFi is not in used";
|
if (parts.size() >= 2) {
|
||||||
return;
|
interfaceName = parts[1].trimmed();
|
||||||
|
}
|
||||||
|
} else if (trimmedLine.startsWith("SSID")) {
|
||||||
|
QStringList parts = trimmedLine.split(":");
|
||||||
|
if (parts.size() >= 2) {
|
||||||
|
ssid = parts[1].trimmed();
|
||||||
|
}
|
||||||
|
} else if (trimmedLine.startsWith("Security")) {
|
||||||
|
QStringList parts = trimmedLine.split(":");
|
||||||
|
if (parts.size() >= 2) {
|
||||||
|
security = parts[1].trimmed();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
QString ssid = QString::fromNSString(ssidNS);
|
if (!ssid.isEmpty() && !interfaceName.isEmpty()) {
|
||||||
if (ssid.isEmpty()) {
|
logger.debug() << "Found active WiFi connection on" << interfaceName
|
||||||
logger.debug() << "WiFi doesn't have a valid SSID";
|
<< "SSID:" << ssid << "Security:" << security;
|
||||||
return;
|
} else {
|
||||||
}
|
logger.debug() << "No active WiFi connection found";
|
||||||
|
}
|
||||||
CWSecurity security = [interface security];
|
|
||||||
if (security == kCWSecurityNone || security == kCWSecurityWEP) {
|
|
||||||
logger.debug() << "Unsecured network found!";
|
|
||||||
emit unsecuredNetwork(ssid, ssid);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
logger.debug() << "Secure WiFi interface";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -22,7 +22,6 @@
|
|||||||
#include "logger.h"
|
#include "logger.h"
|
||||||
#include "platforms/windows/daemon/windowsfirewall.h"
|
#include "platforms/windows/daemon/windowsfirewall.h"
|
||||||
#include "platforms/windows/daemon/windowssplittunnel.h"
|
#include "platforms/windows/daemon/windowssplittunnel.h"
|
||||||
#include "platforms/windows/windowscommons.h"
|
|
||||||
#include "windowsfirewall.h"
|
#include "windowsfirewall.h"
|
||||||
|
|
||||||
#include "core/networkUtilities.h"
|
#include "core/networkUtilities.h"
|
||||||
|
|||||||
@@ -32,9 +32,28 @@ WindowsNetworkWatcher::~WindowsNetworkWatcher() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
LRESULT WindowsNetworkWatcher::PowerWndProcCallback(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) {
|
||||||
|
auto obj = reinterpret_cast<WindowsNetworkWatcher*>(GetWindowLongPtr(hwnd, GWLP_USERDATA));
|
||||||
|
if (!obj){
|
||||||
|
logger.debug() << "obj not casted";
|
||||||
|
return DefWindowProc(hwnd, uMsg, wParam, lParam);
|
||||||
|
}
|
||||||
|
switch (uMsg) {
|
||||||
|
case WM_POWERBROADCAST:
|
||||||
|
if (wParam == PBT_APMRESUMESUSPEND) {
|
||||||
|
emit obj->sleepMode();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return DefWindowProc(hwnd, uMsg, wParam, lParam);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
void WindowsNetworkWatcher::initialize() {
|
void WindowsNetworkWatcher::initialize() {
|
||||||
logger.debug() << "initialize";
|
logger.debug() << "initialize";
|
||||||
|
|
||||||
|
|
||||||
DWORD negotiatedVersion;
|
DWORD negotiatedVersion;
|
||||||
if (WlanOpenHandle(2, nullptr, &negotiatedVersion, &m_wlanHandle) !=
|
if (WlanOpenHandle(2, nullptr, &negotiatedVersion, &m_wlanHandle) !=
|
||||||
ERROR_SUCCESS) {
|
ERROR_SUCCESS) {
|
||||||
@@ -51,6 +70,25 @@ void WindowsNetworkWatcher::initialize() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const wchar_t* className = L"PowerMonitorClass";
|
||||||
|
WNDCLASS wc = { 0 };
|
||||||
|
wc.lpfnWndProc = &WindowsNetworkWatcher::PowerWndProcCallback;
|
||||||
|
wc.hInstance = GetModuleHandle(NULL);
|
||||||
|
wc.lpszClassName = className;
|
||||||
|
wc.cbWndExtra = sizeof(WindowsNetworkWatcher*);
|
||||||
|
|
||||||
|
if (!RegisterClass(&wc)) {
|
||||||
|
logger.debug() << "Failed to register window class in createPowerMonitorWindow.";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
HWND hwnd = CreateWindowEx(0, className, L"Power Monitor", 0, 0, 0, 0, 0, NULL, NULL, GetModuleHandle(NULL), static_cast<LPVOID>(this));
|
||||||
|
if (!hwnd) {
|
||||||
|
logger.debug() << "Failed to create window in createPowerMonitorWindow.";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
SetWindowLongPtr(hwnd, GWLP_USERDATA, reinterpret_cast<LONG_PTR>(this));
|
||||||
|
|
||||||
logger.debug() << "callback registered";
|
logger.debug() << "callback registered";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ class WindowsNetworkWatcher final : public NetworkWatcherImpl {
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
static void wlanCallback(PWLAN_NOTIFICATION_DATA data, PVOID context);
|
static void wlanCallback(PWLAN_NOTIFICATION_DATA data, PVOID context);
|
||||||
|
static LRESULT PowerWndProcCallback(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
||||||
|
|
||||||
void processWlan(PWLAN_NOTIFICATION_DATA data);
|
void processWlan(PWLAN_NOTIFICATION_DATA data);
|
||||||
|
|
||||||
|
|||||||
@@ -179,6 +179,7 @@ void WindowsPingSender::pingEventReady() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
QString errmsg = WindowsUtils::getErrorMessage();
|
QString errmsg = WindowsUtils::getErrorMessage();
|
||||||
|
emit criticalPingError();
|
||||||
logger.error() << "No ping reply. Code: " << error
|
logger.error() << "No ping reply. Code: " << error
|
||||||
<< " Message: " << errmsg;
|
<< " Message: " << errmsg;
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -103,6 +103,11 @@ QString VpnProtocol::vpnGateway() const
|
|||||||
return m_vpnGateway;
|
return m_vpnGateway;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QString VpnProtocol::vpnLocalAddress() const
|
||||||
|
{
|
||||||
|
return m_vpnLocalAddress;
|
||||||
|
}
|
||||||
|
|
||||||
VpnProtocol *VpnProtocol::factory(DockerContainer container, const QJsonObject &configuration)
|
VpnProtocol *VpnProtocol::factory(DockerContainer container, const QJsonObject &configuration)
|
||||||
{
|
{
|
||||||
switch (container) {
|
switch (container) {
|
||||||
|
|||||||
@@ -63,6 +63,7 @@ public:
|
|||||||
|
|
||||||
QString routeGateway() const;
|
QString routeGateway() const;
|
||||||
QString vpnGateway() const;
|
QString vpnGateway() const;
|
||||||
|
QString vpnLocalAddress() const;
|
||||||
|
|
||||||
static VpnProtocol* factory(amnezia::DockerContainer container, const QJsonObject &configuration);
|
static VpnProtocol* factory(amnezia::DockerContainer container, const QJsonObject &configuration);
|
||||||
|
|
||||||
@@ -71,6 +72,7 @@ signals:
|
|||||||
void connectionStateChanged(Vpn::ConnectionState state);
|
void connectionStateChanged(Vpn::ConnectionState state);
|
||||||
void timeoutTimerEvent();
|
void timeoutTimerEvent();
|
||||||
void protocolError(amnezia::ErrorCode e);
|
void protocolError(amnezia::ErrorCode e);
|
||||||
|
void tunnelAddressesUpdated(const QString& gateway, const QString& localAddress);
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
virtual void onTimeout(); // todo: remove?
|
virtual void onTimeout(); // todo: remove?
|
||||||
|
|||||||
@@ -17,6 +17,26 @@ WireguardProtocol::WireguardProtocol(const QJsonObject &configuration, QObject *
|
|||||||
[this](const QString &pubkey, const QDateTime &connectionTimestamp) {
|
[this](const QString &pubkey, const QDateTime &connectionTimestamp) {
|
||||||
emit connectionStateChanged(Vpn::ConnectionState::Connected);
|
emit connectionStateChanged(Vpn::ConnectionState::Connected);
|
||||||
});
|
});
|
||||||
|
connect(m_impl.get(), &ControllerImpl::statusUpdated, this,
|
||||||
|
[this](const QString& serverIpv4Gateway,
|
||||||
|
const QString& deviceIpv4Address, uint64_t txBytes,
|
||||||
|
uint64_t rxBytes) {
|
||||||
|
const QString previousGateway = m_vpnGateway;
|
||||||
|
const QString previousLocal = m_vpnLocalAddress;
|
||||||
|
|
||||||
|
if (!serverIpv4Gateway.isEmpty()) {
|
||||||
|
m_vpnGateway = serverIpv4Gateway;
|
||||||
|
}
|
||||||
|
if (!deviceIpv4Address.isEmpty()) {
|
||||||
|
m_vpnLocalAddress = deviceIpv4Address;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((!m_vpnGateway.isEmpty() && m_vpnGateway != previousGateway) ||
|
||||||
|
(!m_vpnLocalAddress.isEmpty() && m_vpnLocalAddress != previousLocal)) {
|
||||||
|
emit tunnelAddressesUpdated(m_vpnGateway, m_vpnLocalAddress);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
connect(m_impl.get(), &ControllerImpl::disconnected, this,
|
connect(m_impl.get(), &ControllerImpl::disconnected, this,
|
||||||
[this]() { emit connectionStateChanged(Vpn::ConnectionState::Disconnected); });
|
[this]() { emit connectionStateChanged(Vpn::ConnectionState::Disconnected); });
|
||||||
m_impl->initialize(nullptr, nullptr);
|
m_impl->initialize(nullptr, nullptr);
|
||||||
@@ -57,4 +77,3 @@ ErrorCode WireguardProtocol::start()
|
|||||||
{
|
{
|
||||||
return startMzImpl();
|
return startMzImpl();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -10,7 +10,10 @@
|
|||||||
|
|
||||||
#include "core/controllers/vpnConfigurationController.h"
|
#include "core/controllers/vpnConfigurationController.h"
|
||||||
#include "core/qrCodeUtils.h"
|
#include "core/qrCodeUtils.h"
|
||||||
|
#include "core/serialization/serialization.h"
|
||||||
|
#include "core/serialization/transfer.h"
|
||||||
#include "systemController.h"
|
#include "systemController.h"
|
||||||
|
#include <QDebug>
|
||||||
|
|
||||||
ExportController::ExportController(const QSharedPointer<ServersModel> &serversModel, const QSharedPointer<ContainersModel> &containersModel,
|
ExportController::ExportController(const QSharedPointer<ServersModel> &serversModel, const QSharedPointer<ContainersModel> &containersModel,
|
||||||
const QSharedPointer<ClientManagementModel> &clientManagementModel,
|
const QSharedPointer<ClientManagementModel> &clientManagementModel,
|
||||||
@@ -249,6 +252,7 @@ void ExportController::generateCloakConfig()
|
|||||||
|
|
||||||
void ExportController::generateXrayConfig(const QString &clientName)
|
void ExportController::generateXrayConfig(const QString &clientName)
|
||||||
{
|
{
|
||||||
|
//Xray data
|
||||||
QJsonObject nativeConfig;
|
QJsonObject nativeConfig;
|
||||||
ErrorCode errorCode = generateNativeConfig(DockerContainer::Xray, clientName, Proto::Xray, nativeConfig);
|
ErrorCode errorCode = generateNativeConfig(DockerContainer::Xray, clientName, Proto::Xray, nativeConfig);
|
||||||
if (errorCode) {
|
if (errorCode) {
|
||||||
@@ -260,6 +264,70 @@ void ExportController::generateXrayConfig(const QString &clientName)
|
|||||||
for (const QString &line : std::as_const(lines)) {
|
for (const QString &line : std::as_const(lines)) {
|
||||||
m_config.append(line+ "\n");
|
m_config.append(line+ "\n");
|
||||||
}
|
}
|
||||||
|
//Xray data
|
||||||
|
|
||||||
|
// Parse the Xray data to extract VLESS parameters and generate string
|
||||||
|
QString configString = QString(QJsonDocument(nativeConfig).toJson(QJsonDocument::Compact));
|
||||||
|
|
||||||
|
QJsonDocument doc = QJsonDocument::fromJson(configString.toUtf8());
|
||||||
|
if (doc.isNull() || !doc.isObject()) {
|
||||||
|
qDebug() << "ERROR: Failed to parse config JSON";
|
||||||
|
emit exportErrorOccurred(ErrorCode::InternalError);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
QJsonObject xrayConfig = doc.object();
|
||||||
|
QJsonArray outbounds = xrayConfig.value("outbounds").toArray();
|
||||||
|
|
||||||
|
if (outbounds.isEmpty()) {
|
||||||
|
qDebug() << "ERROR: Outbounds array is empty";
|
||||||
|
emit exportErrorOccurred(ErrorCode::InternalError);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
QJsonObject outbound = outbounds[0].toObject();
|
||||||
|
QJsonObject settings = outbound.value("settings").toObject();
|
||||||
|
QJsonObject streamSettings = outbound.value("streamSettings").toObject();
|
||||||
|
|
||||||
|
QJsonArray vnext = settings.value("vnext").toArray();
|
||||||
|
if (vnext.isEmpty()) {
|
||||||
|
qDebug() << "ERROR: vnext array is empty";
|
||||||
|
emit exportErrorOccurred(ErrorCode::InternalError);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
QJsonObject server = vnext[0].toObject();
|
||||||
|
QJsonArray users = server.value("users").toArray();
|
||||||
|
if (users.isEmpty()) {
|
||||||
|
qDebug() << "ERROR: users array is empty";
|
||||||
|
emit exportErrorOccurred(ErrorCode::InternalError);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
QJsonObject user = users[0].toObject();
|
||||||
|
|
||||||
|
amnezia::serialization::VlessServerObject vlessServer;
|
||||||
|
vlessServer.address = server.value("address").toString();
|
||||||
|
vlessServer.port = server.value("port").toInt();
|
||||||
|
vlessServer.id = user.value("id").toString();
|
||||||
|
vlessServer.flow = user.value("flow").toString("xtls-rprx-vision");
|
||||||
|
vlessServer.encryption = user.value("encryption").toString("none");
|
||||||
|
|
||||||
|
vlessServer.network = streamSettings.value("network").toString("tcp");
|
||||||
|
vlessServer.security = streamSettings.value("security").toString("reality");
|
||||||
|
|
||||||
|
|
||||||
|
if (vlessServer.security == "reality") {
|
||||||
|
QJsonObject realitySettings = streamSettings.value("realitySettings").toObject();
|
||||||
|
vlessServer.serverName = realitySettings.value("serverName").toString();
|
||||||
|
vlessServer.publicKey = realitySettings.value("publicKey").toString();
|
||||||
|
vlessServer.shortId = realitySettings.value("shortId").toString();
|
||||||
|
vlessServer.fingerprint = realitySettings.value("fingerprint").toString("chrome");
|
||||||
|
vlessServer.spiderX = realitySettings.value("spiderX").toString("");
|
||||||
|
}
|
||||||
|
|
||||||
|
m_nativeConfigString = amnezia::serialization::vless::Serialize(vlessServer, "AmneziaVPN");
|
||||||
|
|
||||||
|
|
||||||
emit exportConfigChanged();
|
emit exportConfigChanged();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -208,6 +208,7 @@ bool ImportController::extractConfigFromData(QString data)
|
|||||||
}
|
}
|
||||||
case ConfigTypes::Invalid: {
|
case ConfigTypes::Invalid: {
|
||||||
emit importErrorOccurred(ErrorCode::ImportInvalidConfigError, false);
|
emit importErrorOccurred(ErrorCode::ImportInvalidConfigError, false);
|
||||||
|
m_configFileName.clear();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -341,6 +342,11 @@ void ImportController::importConfig()
|
|||||||
m_maliciousWarningText.clear();
|
m_maliciousWarningText.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ImportController::clearConfigFileName()
|
||||||
|
{
|
||||||
|
m_configFileName.clear();
|
||||||
|
}
|
||||||
|
|
||||||
QJsonObject ImportController::extractOpenVpnConfig(const QString &data)
|
QJsonObject ImportController::extractOpenVpnConfig(const QString &data)
|
||||||
{
|
{
|
||||||
QJsonObject openVpnConfig;
|
QJsonObject openVpnConfig;
|
||||||
|
|||||||
@@ -30,6 +30,7 @@ public:
|
|||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void importConfig();
|
void importConfig();
|
||||||
|
void clearConfigFileName();
|
||||||
bool extractConfigFromFile(const QString &fileName);
|
bool extractConfigFromFile(const QString &fileName);
|
||||||
bool extractConfigFromData(QString data);
|
bool extractConfigFromData(QString data);
|
||||||
bool extractConfigFromQr(const QByteArray &data);
|
bool extractConfigFromQr(const QByteArray &data);
|
||||||
|
|||||||
@@ -48,6 +48,7 @@ QString LanguageModel::getLocalLanguageName(const LanguageSettings::AvailableLan
|
|||||||
case LanguageSettings::AvailableLanguageEnum::Burmese: strLanguage = "မြန်မာဘာသာ"; break;
|
case LanguageSettings::AvailableLanguageEnum::Burmese: strLanguage = "မြန်မာဘာသာ"; break;
|
||||||
case LanguageSettings::AvailableLanguageEnum::Urdu: strLanguage = "اُرْدُوْ"; break;
|
case LanguageSettings::AvailableLanguageEnum::Urdu: strLanguage = "اُرْدُوْ"; break;
|
||||||
case LanguageSettings::AvailableLanguageEnum::Hindi: strLanguage = "हिन्दी"; break;
|
case LanguageSettings::AvailableLanguageEnum::Hindi: strLanguage = "हिन्दी"; break;
|
||||||
|
case LanguageSettings::AvailableLanguageEnum::Spanish: strLanguage = "Español"; break;
|
||||||
default: break;
|
default: break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -66,6 +67,7 @@ void LanguageModel::changeLanguage(const LanguageSettings::AvailableLanguageEnum
|
|||||||
case LanguageSettings::AvailableLanguageEnum::Burmese: emit updateTranslations(QLocale::Burmese); break;
|
case LanguageSettings::AvailableLanguageEnum::Burmese: emit updateTranslations(QLocale::Burmese); break;
|
||||||
case LanguageSettings::AvailableLanguageEnum::Urdu: emit updateTranslations(QLocale::Urdu); break;
|
case LanguageSettings::AvailableLanguageEnum::Urdu: emit updateTranslations(QLocale::Urdu); break;
|
||||||
case LanguageSettings::AvailableLanguageEnum::Hindi: emit updateTranslations(QLocale::Hindi); break;
|
case LanguageSettings::AvailableLanguageEnum::Hindi: emit updateTranslations(QLocale::Hindi); break;
|
||||||
|
case LanguageSettings::AvailableLanguageEnum::Spanish: emit updateTranslations(QLocale::Spanish); break;
|
||||||
default: emit updateTranslations(QLocale::English); break;
|
default: emit updateTranslations(QLocale::English); break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -83,6 +85,7 @@ int LanguageModel::getCurrentLanguageIndex()
|
|||||||
case QLocale::Burmese: return static_cast<int>(LanguageSettings::AvailableLanguageEnum::Burmese); break;
|
case QLocale::Burmese: return static_cast<int>(LanguageSettings::AvailableLanguageEnum::Burmese); break;
|
||||||
case QLocale::Urdu: return static_cast<int>(LanguageSettings::AvailableLanguageEnum::Urdu); break;
|
case QLocale::Urdu: return static_cast<int>(LanguageSettings::AvailableLanguageEnum::Urdu); break;
|
||||||
case QLocale::Hindi: return static_cast<int>(LanguageSettings::AvailableLanguageEnum::Hindi); break;
|
case QLocale::Hindi: return static_cast<int>(LanguageSettings::AvailableLanguageEnum::Hindi); break;
|
||||||
|
case QLocale::Spanish: return static_cast<int>(LanguageSettings::AvailableLanguageEnum::Spanish); break;
|
||||||
default: return static_cast<int>(LanguageSettings::AvailableLanguageEnum::English); break;
|
default: return static_cast<int>(LanguageSettings::AvailableLanguageEnum::English); break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -113,6 +116,7 @@ LanguageSettings::AvailableLanguageEnum LanguageModel::getSystemLanguageEnum()
|
|||||||
case QLocale::Burmese: return LanguageSettings::AvailableLanguageEnum::Burmese;
|
case QLocale::Burmese: return LanguageSettings::AvailableLanguageEnum::Burmese;
|
||||||
case QLocale::Urdu: return LanguageSettings::AvailableLanguageEnum::Urdu;
|
case QLocale::Urdu: return LanguageSettings::AvailableLanguageEnum::Urdu;
|
||||||
case QLocale::Hindi: return LanguageSettings::AvailableLanguageEnum::Hindi;
|
case QLocale::Hindi: return LanguageSettings::AvailableLanguageEnum::Hindi;
|
||||||
|
case QLocale::Spanish: return LanguageSettings::AvailableLanguageEnum::Spanish;
|
||||||
case QLocale::English: return LanguageSettings::AvailableLanguageEnum::English;
|
case QLocale::English: return LanguageSettings::AvailableLanguageEnum::English;
|
||||||
default: return LanguageSettings::AvailableLanguageEnum::English;
|
default: return LanguageSettings::AvailableLanguageEnum::English;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,7 +18,8 @@ namespace LanguageSettings
|
|||||||
Arabic,
|
Arabic,
|
||||||
Burmese,
|
Burmese,
|
||||||
Urdu,
|
Urdu,
|
||||||
Hindi
|
Hindi,
|
||||||
|
Spanish
|
||||||
};
|
};
|
||||||
Q_ENUM_NS(AvailableLanguageEnum)
|
Q_ENUM_NS(AvailableLanguageEnum)
|
||||||
|
|
||||||
|
|||||||
@@ -78,34 +78,28 @@ void NewsModel::setProcessedIndex(int index)
|
|||||||
|
|
||||||
void NewsModel::updateModel(const QJsonArray &serverItems)
|
void NewsModel::updateModel(const QJsonArray &serverItems)
|
||||||
{
|
{
|
||||||
QSet<QString> existingIds;
|
QList<NewsItem> updatedItems;
|
||||||
for (const NewsItem &item : m_items) {
|
|
||||||
existingIds.insert(item.id);
|
|
||||||
}
|
|
||||||
|
|
||||||
QList<NewsItem> newItems;
|
|
||||||
for (const QJsonValue &value : serverItems) {
|
for (const QJsonValue &value : serverItems) {
|
||||||
if (!value.isObject())
|
if (!value.isObject())
|
||||||
continue;
|
continue;
|
||||||
const QJsonObject obj = value.toObject();
|
|
||||||
QString id = obj.value("id").toString();
|
|
||||||
|
|
||||||
if (!existingIds.contains(id)) {
|
QJsonObject object = value.toObject();
|
||||||
|
|
||||||
NewsItem item;
|
NewsItem item;
|
||||||
item.id = id;
|
item.id = object.value("id").toString();
|
||||||
item.title = obj.value("title").toString();
|
item.title = object.value("title").toString();
|
||||||
item.content = obj.value("content").toString();
|
item.content = object.value("content").toString();
|
||||||
item.timestamp = QDateTime::fromString(obj.value("timestamp").toString(), Qt::ISODate);
|
item.timestamp = QDateTime::fromString(object.value("timestamp").toString(), Qt::ISODate);
|
||||||
item.read = m_readIds.contains(id);
|
item.read = m_readIds.contains(object.value("id").toString());
|
||||||
newItems.append(item);
|
updatedItems.append(item);
|
||||||
existingIds.insert(id);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
beginResetModel();
|
beginResetModel();
|
||||||
m_items.append(newItems);
|
m_items = updatedItems;
|
||||||
std::sort(m_items.begin(), m_items.end(), [](const NewsItem &a, const NewsItem &b) { return a.timestamp > b.timestamp; });
|
std::sort(m_items.begin(), m_items.end(), [](const NewsItem &a, const NewsItem &b) { return a.timestamp > b.timestamp; });
|
||||||
endResetModel();
|
endResetModel();
|
||||||
|
loadReadIds();
|
||||||
emit hasUnreadChanged();
|
emit hasUnreadChanged();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -63,6 +63,18 @@ PageType {
|
|||||||
Layout.leftMargin: 16
|
Layout.leftMargin: 16
|
||||||
Layout.rightMargin: 16
|
Layout.rightMargin: 16
|
||||||
text: newsItem.content
|
text: newsItem.content
|
||||||
|
|
||||||
|
textFormat: Text.RichText
|
||||||
|
|
||||||
|
onLinkActivated: function(link) {
|
||||||
|
Qt.openUrlExternally(link)
|
||||||
|
}
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
acceptedButtons: Qt.NoButton
|
||||||
|
cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -31,6 +31,14 @@ PageType {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Connections {
|
||||||
|
target: PageController
|
||||||
|
|
||||||
|
function onClosePage() {
|
||||||
|
ImportController.clearConfigFileName()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Connections {
|
Connections {
|
||||||
target: ImportController
|
target: ImportController
|
||||||
|
|
||||||
|
|||||||
+116
-4
@@ -1,12 +1,16 @@
|
|||||||
#include "qtimer.h"
|
#include "vpnconnection.h"
|
||||||
|
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
#include <QEventLoop>
|
#include <QEventLoop>
|
||||||
#include <QFile>
|
#include <QFile>
|
||||||
#include <QHostInfo>
|
#include <QHostInfo>
|
||||||
#include <QJsonObject>
|
#include <QJsonObject>
|
||||||
|
#include <QObject>
|
||||||
|
#include <QSharedPointer>
|
||||||
|
#include <QString>
|
||||||
|
#include <QStringList>
|
||||||
|
#include <QTimer>
|
||||||
|
|
||||||
#include "core/controllers/serverController.h"
|
|
||||||
#include <configurators/cloak_configurator.h>
|
#include <configurators/cloak_configurator.h>
|
||||||
#include <configurators/openvpn_configurator.h>
|
#include <configurators/openvpn_configurator.h>
|
||||||
#include <configurators/shadowsocks_configurator.h>
|
#include <configurators/shadowsocks_configurator.h>
|
||||||
@@ -14,12 +18,13 @@
|
|||||||
|
|
||||||
#ifdef AMNEZIA_DESKTOP
|
#ifdef AMNEZIA_DESKTOP
|
||||||
#include "core/ipcclient.h"
|
#include "core/ipcclient.h"
|
||||||
#include "ipc.h"
|
|
||||||
#include <protocols/wireguardprotocol.h>
|
#include <protocols/wireguardprotocol.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef Q_OS_ANDROID
|
#ifdef Q_OS_ANDROID
|
||||||
#include "platforms/android/android_controller.h"
|
#include "platforms/android/android_controller.h"
|
||||||
|
#include <QThread>
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(Q_OS_IOS) || defined(MACOS_NE)
|
#if defined(Q_OS_IOS) || defined(MACOS_NE)
|
||||||
@@ -61,7 +66,6 @@ void VpnConnection::onKillSwitchModeChanged(bool enabled)
|
|||||||
|
|
||||||
void VpnConnection::onConnectionStateChanged(Vpn::ConnectionState state)
|
void VpnConnection::onConnectionStateChanged(Vpn::ConnectionState state)
|
||||||
{
|
{
|
||||||
|
|
||||||
#ifdef AMNEZIA_DESKTOP
|
#ifdef AMNEZIA_DESKTOP
|
||||||
auto container = m_settings->defaultContainer(m_settings->defaultServerIndex());
|
auto container = m_settings->defaultContainer(m_settings->defaultServerIndex());
|
||||||
|
|
||||||
@@ -92,7 +96,20 @@ void VpnConnection::onConnectionStateChanged(Vpn::ConnectionState state)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (container != DockerContainer::Ipsec) {
|
||||||
|
if (startNetworkCheckIfReady()) {
|
||||||
|
m_pendingNetworkCheck = false;
|
||||||
|
} else {
|
||||||
|
m_pendingNetworkCheck = true;
|
||||||
|
qWarning() << "Deferring startNetworkCheck; missing gateway/local address"
|
||||||
|
<< m_vpnProtocol->vpnGateway() << m_vpnProtocol->vpnLocalAddress();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
m_pendingNetworkCheck = false;
|
||||||
|
}
|
||||||
|
|
||||||
} else if (state == Vpn::ConnectionState::Error) {
|
} else if (state == Vpn::ConnectionState::Error) {
|
||||||
|
m_pendingNetworkCheck = false;
|
||||||
IpcClient::Interface()->flushDns();
|
IpcClient::Interface()->flushDns();
|
||||||
|
|
||||||
if (m_settings->isSitesSplitTunnelingEnabled()) {
|
if (m_settings->isSitesSplitTunnelingEnabled()) {
|
||||||
@@ -103,6 +120,9 @@ void VpnConnection::onConnectionStateChanged(Vpn::ConnectionState state)
|
|||||||
} else if (state == Vpn::ConnectionState::Connecting) {
|
} else if (state == Vpn::ConnectionState::Connecting) {
|
||||||
|
|
||||||
} else if (state == Vpn::ConnectionState::Disconnected) {
|
} else if (state == Vpn::ConnectionState::Disconnected) {
|
||||||
|
m_pendingNetworkCheck = false;
|
||||||
|
auto result = IpcClient::Interface()->stopNetworkCheck();
|
||||||
|
result.waitForFinished(3000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
@@ -200,6 +220,11 @@ void VpnConnection::deleteRoutes(const QStringList &ips)
|
|||||||
bool VpnConnection::InterfaceReady()
|
bool VpnConnection::InterfaceReady()
|
||||||
{
|
{
|
||||||
#ifdef AMNEZIA_DESKTOP
|
#ifdef AMNEZIA_DESKTOP
|
||||||
|
if (m_IpcClient) {
|
||||||
|
m_IpcClient->closeAndResetInstance(true);
|
||||||
|
m_IpcClient->deleteLater();
|
||||||
|
m_IpcClient = nullptr;
|
||||||
|
}
|
||||||
if (!m_IpcClient) {
|
if (!m_IpcClient) {
|
||||||
m_IpcClient = new IpcClient(this);
|
m_IpcClient = new IpcClient(this);
|
||||||
}
|
}
|
||||||
@@ -261,7 +286,11 @@ void VpnConnection::connectToVpn(int serverIndex, const ServerCredentials &crede
|
|||||||
m_remoteAddress = NetworkUtilities::getIPAddress(credentials.hostName);
|
m_remoteAddress = NetworkUtilities::getIPAddress(credentials.hostName);
|
||||||
emit connectionStateChanged(Vpn::ConnectionState::Connecting);
|
emit connectionStateChanged(Vpn::ConnectionState::Connecting);
|
||||||
|
|
||||||
|
m_pendingNetworkCheck = false;
|
||||||
m_vpnConfiguration = vpnConfiguration;
|
m_vpnConfiguration = vpnConfiguration;
|
||||||
|
m_serverIndex = serverIndex;
|
||||||
|
m_serverCredentials = credentials;
|
||||||
|
m_dockerContainer = container;
|
||||||
|
|
||||||
#ifdef AMNEZIA_DESKTOP
|
#ifdef AMNEZIA_DESKTOP
|
||||||
if (m_vpnProtocol) {
|
if (m_vpnProtocol) {
|
||||||
@@ -300,12 +329,70 @@ void VpnConnection::connectToVpn(int serverIndex, const ServerCredentials &crede
|
|||||||
emit connectionStateChanged(Vpn::ConnectionState::Error);
|
emit connectionStateChanged(Vpn::ConnectionState::Error);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void VpnConnection::restartConnection()
|
||||||
|
{
|
||||||
|
// Only reconnect if VPN was connected before sleep/network change
|
||||||
|
if (!m_wasConnectedBeforeSleep) {
|
||||||
|
qDebug() << "VPN was not connected before sleep/network change, skipping reconnection";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
qDebug() << "VPN was connected before sleep/network change, attempting reconnection";
|
||||||
|
this->disconnectFromVpn();
|
||||||
|
#ifdef Q_OS_LINUX
|
||||||
|
QThread::msleep(5000);
|
||||||
|
#endif
|
||||||
|
this->connectToVpn(m_serverIndex, m_serverCredentials, m_dockerContainer, m_vpnConfiguration);
|
||||||
|
|
||||||
|
// Reset the flag after reconnection attempt
|
||||||
|
m_wasConnectedBeforeSleep = false;
|
||||||
|
}
|
||||||
|
|
||||||
void VpnConnection::createProtocolConnections()
|
void VpnConnection::createProtocolConnections()
|
||||||
{
|
{
|
||||||
connect(m_vpnProtocol.data(), &VpnProtocol::protocolError, this, &VpnConnection::vpnProtocolError);
|
connect(m_vpnProtocol.data(), &VpnProtocol::protocolError, this, &VpnConnection::vpnProtocolError);
|
||||||
connect(m_vpnProtocol.data(), SIGNAL(connectionStateChanged(Vpn::ConnectionState)), this,
|
connect(m_vpnProtocol.data(), SIGNAL(connectionStateChanged(Vpn::ConnectionState)), this,
|
||||||
SLOT(onConnectionStateChanged(Vpn::ConnectionState)));
|
SLOT(onConnectionStateChanged(Vpn::ConnectionState)));
|
||||||
connect(m_vpnProtocol.data(), SIGNAL(bytesChanged(quint64, quint64)), this, SLOT(onBytesChanged(quint64, quint64)));
|
connect(m_vpnProtocol.data(), SIGNAL(bytesChanged(quint64, quint64)), this, SLOT(onBytesChanged(quint64, quint64)));
|
||||||
|
|
||||||
|
#ifdef AMNEZIA_DESKTOP
|
||||||
|
if (m_connectionLoseHandle)
|
||||||
|
disconnect(m_connectionLoseHandle);
|
||||||
|
if (m_networkChangeHandle)
|
||||||
|
disconnect(m_networkChangeHandle);
|
||||||
|
m_connectionLoseHandle = QMetaObject::Connection();
|
||||||
|
m_networkChangeHandle = QMetaObject::Connection();
|
||||||
|
|
||||||
|
m_connectionLoseHandle = connect(IpcClient::Interface().data(), &IpcInterfaceReplica::connectionLose,
|
||||||
|
this, [this]() {
|
||||||
|
qDebug() << "Connection Lose";
|
||||||
|
auto result = IpcClient::Interface()->stopNetworkCheck();
|
||||||
|
result.waitForFinished(3000);
|
||||||
|
// Track VPN state before connection loss
|
||||||
|
m_wasConnectedBeforeSleep = isConnected();
|
||||||
|
qDebug() << "VPN was connected before connection loss:" << m_wasConnectedBeforeSleep;
|
||||||
|
this->restartConnection();
|
||||||
|
});
|
||||||
|
m_networkChangeHandle = connect(IpcClient::Interface().data(), &IpcInterfaceReplica::networkChange,
|
||||||
|
this, [this]() {
|
||||||
|
qDebug() << "Network change";
|
||||||
|
// Track VPN state before network change (including sleep/wake)
|
||||||
|
m_wasConnectedBeforeSleep = isConnected();
|
||||||
|
qDebug() << "VPN was connected before network change:" << m_wasConnectedBeforeSleep;
|
||||||
|
this->restartConnection();
|
||||||
|
});
|
||||||
|
connect(m_vpnProtocol.data(), &VpnProtocol::tunnelAddressesUpdated,
|
||||||
|
this, [this](const QString& gateway, const QString& localAddress) {
|
||||||
|
Q_UNUSED(gateway)
|
||||||
|
Q_UNUSED(localAddress)
|
||||||
|
if (connectionState() != Vpn::ConnectionState::Connected) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (startNetworkCheckIfReady()) {
|
||||||
|
m_pendingNetworkCheck = false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void VpnConnection::appendKillSwitchConfig()
|
void VpnConnection::appendKillSwitchConfig()
|
||||||
@@ -409,6 +496,31 @@ void VpnConnection::appendSplitTunnelingConfig()
|
|||||||
m_vpnConfiguration.insert(config_key::splitTunnelApps, appsJsonArray);
|
m_vpnConfiguration.insert(config_key::splitTunnelApps, appsJsonArray);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool VpnConnection::startNetworkCheckIfReady()
|
||||||
|
{
|
||||||
|
#ifdef AMNEZIA_DESKTOP
|
||||||
|
if (!m_vpnProtocol || m_dockerContainer == DockerContainer::Ipsec) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
const QString gateway = m_vpnProtocol->vpnGateway();
|
||||||
|
const QString localAddress = m_vpnProtocol->vpnLocalAddress();
|
||||||
|
if (gateway.isEmpty() || localAddress.isEmpty()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
auto iface = IpcClient::Interface();
|
||||||
|
if (!iface) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
iface->startNetworkCheck(gateway, localAddress);
|
||||||
|
return true;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef Q_OS_ANDROID
|
#ifdef Q_OS_ANDROID
|
||||||
void VpnConnection::restoreConnection()
|
void VpnConnection::restoreConnection()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
#define VPNCONNECTION_H
|
#define VPNCONNECTION_H
|
||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
|
#include <QMetaObject>
|
||||||
#include <QString>
|
#include <QString>
|
||||||
#include <QScopedPointer>
|
#include <QScopedPointer>
|
||||||
#include <QRemoteObjectNode>
|
#include <QRemoteObjectNode>
|
||||||
@@ -51,6 +52,7 @@ public slots:
|
|||||||
const ServerCredentials &credentials, DockerContainer container, const QJsonObject &vpnConfiguration);
|
const ServerCredentials &credentials, DockerContainer container, const QJsonObject &vpnConfiguration);
|
||||||
|
|
||||||
void disconnectFromVpn();
|
void disconnectFromVpn();
|
||||||
|
void restartConnection();
|
||||||
|
|
||||||
void addRoutes(const QStringList &ips);
|
void addRoutes(const QStringList &ips);
|
||||||
void deleteRoutes(const QStringList &ips);
|
void deleteRoutes(const QStringList &ips);
|
||||||
@@ -71,6 +73,8 @@ protected slots:
|
|||||||
|
|
||||||
protected:
|
protected:
|
||||||
QSharedPointer<VpnProtocol> m_vpnProtocol;
|
QSharedPointer<VpnProtocol> m_vpnProtocol;
|
||||||
|
QMetaObject::Connection m_connectionLoseHandle;
|
||||||
|
QMetaObject::Connection m_networkChangeHandle;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::shared_ptr<Settings> m_settings;
|
std::shared_ptr<Settings> m_settings;
|
||||||
@@ -78,6 +82,14 @@ private:
|
|||||||
QJsonObject m_routeMode;
|
QJsonObject m_routeMode;
|
||||||
QString m_remoteAddress;
|
QString m_remoteAddress;
|
||||||
|
|
||||||
|
ServerCredentials m_serverCredentials;
|
||||||
|
int m_serverIndex;
|
||||||
|
DockerContainer m_dockerContainer;
|
||||||
|
|
||||||
|
// Track VPN state before sleep for smart reconnection
|
||||||
|
bool m_wasConnectedBeforeSleep = false;
|
||||||
|
bool m_pendingNetworkCheck = false;
|
||||||
|
|
||||||
// Only for iOS for now, check counters
|
// Only for iOS for now, check counters
|
||||||
QTimer m_checkTimer;
|
QTimer m_checkTimer;
|
||||||
|
|
||||||
@@ -96,6 +108,7 @@ private:
|
|||||||
|
|
||||||
void appendSplitTunnelingConfig();
|
void appendSplitTunnelingConfig();
|
||||||
void appendKillSwitchConfig();
|
void appendKillSwitchConfig();
|
||||||
|
bool startNetworkCheckIfReady();
|
||||||
bool InterfaceReady();
|
bool InterfaceReady();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -37,5 +37,10 @@ class IpcInterface
|
|||||||
SLOT( bool enableKillSwitch( const QJsonObject &excludeAddr, int vpnAdapterIndex) );
|
SLOT( bool enableKillSwitch( const QJsonObject &excludeAddr, int vpnAdapterIndex) );
|
||||||
SLOT( bool updateResolvers(const QString& ifname, const QList<QHostAddress>& resolvers) );
|
SLOT( bool updateResolvers(const QString& ifname, const QList<QHostAddress>& resolvers) );
|
||||||
SLOT( bool restoreResolvers() );
|
SLOT( bool restoreResolvers() );
|
||||||
};
|
|
||||||
|
|
||||||
|
SLOT( bool startNetworkCheck(const QString& serverIpv4Gateway, const QString& deviceIpv4Address) );
|
||||||
|
SLOT( bool stopNetworkCheck() );
|
||||||
|
|
||||||
|
SIGNAL( connectionLose() );
|
||||||
|
SIGNAL( networkChange() );
|
||||||
|
};
|
||||||
|
|||||||
+23
-1
@@ -1,9 +1,17 @@
|
|||||||
#include "ipcserver.h"
|
#include "ipcserver.h"
|
||||||
|
|
||||||
#include <QDateTime>
|
#include <QDateTime>
|
||||||
|
#include <QDebug>
|
||||||
#include <QFileInfo>
|
#include <QFileInfo>
|
||||||
|
#include <QHostAddress>
|
||||||
|
#include <QJsonObject>
|
||||||
|
#include <QLocalServer>
|
||||||
#include <QLocalSocket>
|
#include <QLocalSocket>
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
|
#include <QRemoteObjectHost>
|
||||||
|
#include <QRemoteObjectNode>
|
||||||
|
#include <QString>
|
||||||
|
#include <QStringList>
|
||||||
|
|
||||||
#include "logger.h"
|
#include "logger.h"
|
||||||
#include "router.h"
|
#include "router.h"
|
||||||
@@ -16,8 +24,8 @@
|
|||||||
|
|
||||||
|
|
||||||
IpcServer::IpcServer(QObject *parent) : IpcInterfaceSource(parent)
|
IpcServer::IpcServer(QObject *parent) : IpcInterfaceSource(parent)
|
||||||
|
|
||||||
{
|
{
|
||||||
|
connect(&m_pingHelper, &PingHelper::connectionLose, this, &IpcServer::connectionLose);
|
||||||
}
|
}
|
||||||
|
|
||||||
int IpcServer::createPrivilegedProcess()
|
int IpcServer::createPrivilegedProcess()
|
||||||
@@ -184,6 +192,20 @@ void IpcServer::setLogsEnabled(bool enabled)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool IpcServer::startNetworkCheck(const QString& serverIpv4Gateway, const QString& deviceIpv4Address)
|
||||||
|
{
|
||||||
|
qDebug() << "startNetworkCheck";
|
||||||
|
m_pingHelper.start(serverIpv4Gateway, deviceIpv4Address);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool IpcServer::stopNetworkCheck()
|
||||||
|
{
|
||||||
|
qDebug() << "stopNetworkCheck";
|
||||||
|
m_pingHelper.stop();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
bool IpcServer::resetKillSwitchAllowedRange(QStringList ranges)
|
bool IpcServer::resetKillSwitchAllowedRange(QStringList ranges)
|
||||||
{
|
{
|
||||||
return KillSwitch::instance()->resetAllowedRange(ranges);
|
return KillSwitch::instance()->resetAllowedRange(ranges);
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
#include <QRemoteObjectNode>
|
#include <QRemoteObjectNode>
|
||||||
#include <QJsonObject>
|
#include <QJsonObject>
|
||||||
#include "../client/daemon/interfaceconfig.h"
|
#include "../client/daemon/interfaceconfig.h"
|
||||||
|
#include "../client/mozilla/pinghelper.h"
|
||||||
|
|
||||||
#include "ipc.h"
|
#include "ipc.h"
|
||||||
#include "ipcserverprocess.h"
|
#include "ipcserverprocess.h"
|
||||||
@@ -43,6 +44,8 @@ public:
|
|||||||
virtual bool refreshKillSwitch( bool enabled ) override;
|
virtual bool refreshKillSwitch( bool enabled ) override;
|
||||||
virtual bool updateResolvers(const QString& ifname, const QList<QHostAddress>& resolvers) override;
|
virtual bool updateResolvers(const QString& ifname, const QList<QHostAddress>& resolvers) override;
|
||||||
virtual bool restoreResolvers() override;
|
virtual bool restoreResolvers() override;
|
||||||
|
virtual bool startNetworkCheck(const QString& serverIpv4Gateway, const QString& deviceIpv4Address) override;
|
||||||
|
virtual bool stopNetworkCheck() override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
int m_localpid = 0;
|
int m_localpid = 0;
|
||||||
@@ -62,6 +65,7 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
QMap<int, ProcessDescriptor> m_processes;
|
QMap<int, ProcessDescriptor> m_processes;
|
||||||
|
PingHelper m_pingHelper;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // IPCSERVER_H
|
#endif // IPCSERVER_H
|
||||||
|
|||||||
@@ -109,7 +109,6 @@ set(HEADERS ${HEADERS}
|
|||||||
|
|
||||||
${CMAKE_CURRENT_LIST_DIR}/../../client/mozilla/controllerimpl.h
|
${CMAKE_CURRENT_LIST_DIR}/../../client/mozilla/controllerimpl.h
|
||||||
${CMAKE_CURRENT_LIST_DIR}/../../client/mozilla/dnspingsender.h
|
${CMAKE_CURRENT_LIST_DIR}/../../client/mozilla/dnspingsender.h
|
||||||
${CMAKE_CURRENT_LIST_DIR}/../../client/mozilla/localsocketcontroller.h
|
|
||||||
${CMAKE_CURRENT_LIST_DIR}/../../client/mozilla/networkwatcher.h
|
${CMAKE_CURRENT_LIST_DIR}/../../client/mozilla/networkwatcher.h
|
||||||
${CMAKE_CURRENT_LIST_DIR}/../../client/mozilla/networkwatcherimpl.h
|
${CMAKE_CURRENT_LIST_DIR}/../../client/mozilla/networkwatcherimpl.h
|
||||||
${CMAKE_CURRENT_LIST_DIR}/../../client/mozilla/pinghelper.h
|
${CMAKE_CURRENT_LIST_DIR}/../../client/mozilla/pinghelper.h
|
||||||
@@ -133,7 +132,6 @@ set(SOURCES ${SOURCES}
|
|||||||
${CMAKE_CURRENT_LIST_DIR}/../../client/mozilla/shared/leakdetector.cpp
|
${CMAKE_CURRENT_LIST_DIR}/../../client/mozilla/shared/leakdetector.cpp
|
||||||
|
|
||||||
${CMAKE_CURRENT_LIST_DIR}/../../client/mozilla/dnspingsender.cpp
|
${CMAKE_CURRENT_LIST_DIR}/../../client/mozilla/dnspingsender.cpp
|
||||||
${CMAKE_CURRENT_LIST_DIR}/../../client/mozilla/localsocketcontroller.cpp
|
|
||||||
${CMAKE_CURRENT_LIST_DIR}/../../client/mozilla/networkwatcher.cpp
|
${CMAKE_CURRENT_LIST_DIR}/../../client/mozilla/networkwatcher.cpp
|
||||||
${CMAKE_CURRENT_LIST_DIR}/../../client/mozilla/pinghelper.cpp
|
${CMAKE_CURRENT_LIST_DIR}/../../client/mozilla/pinghelper.cpp
|
||||||
${CMAKE_CURRENT_LIST_DIR}/../../client/mozilla/pingsender.cpp
|
${CMAKE_CURRENT_LIST_DIR}/../../client/mozilla/pingsender.cpp
|
||||||
@@ -282,6 +280,7 @@ if(LINUX)
|
|||||||
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/linuxnetworkwatcher.h
|
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/linuxnetworkwatcher.h
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/linuxnetworkwatcherworker.h
|
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/linuxnetworkwatcherworker.h
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/linuxdependencies.h
|
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/linuxdependencies.h
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/linuxpingsender.h
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/daemon/iputilslinux.h
|
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/daemon/iputilslinux.h
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/daemon/dbustypeslinux.h
|
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/daemon/dbustypeslinux.h
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/daemon/linuxdaemon.h
|
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/daemon/linuxdaemon.h
|
||||||
@@ -296,6 +295,7 @@ if(LINUX)
|
|||||||
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/linuxnetworkwatcher.cpp
|
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/linuxnetworkwatcher.cpp
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/linuxnetworkwatcherworker.cpp
|
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/linuxnetworkwatcherworker.cpp
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/linuxdependencies.cpp
|
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/linuxdependencies.cpp
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/linuxpingsender.cpp
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/daemon/dnsutilslinux.cpp
|
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/daemon/dnsutilslinux.cpp
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/daemon/iputilslinux.cpp
|
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/daemon/iputilslinux.cpp
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/daemon/linuxdaemon.cpp
|
${CMAKE_CURRENT_SOURCE_DIR}/../../client/platforms/linux/daemon/linuxdaemon.cpp
|
||||||
|
|||||||
@@ -1,11 +1,15 @@
|
|||||||
|
#include "localserver.h"
|
||||||
|
|
||||||
#include <QCoreApplication>
|
#include <QCoreApplication>
|
||||||
|
#include <QDebug>
|
||||||
#include <QFileInfo>
|
#include <QFileInfo>
|
||||||
#include <QLocalServer>
|
#include <QLocalServer>
|
||||||
#include <QLocalSocket>
|
#include <QLocalSocket>
|
||||||
|
#include <QObject>
|
||||||
|
#include <QSharedPointer>
|
||||||
|
#include <QString>
|
||||||
|
|
||||||
#include "ipc.h"
|
#include "ipc.h"
|
||||||
#include "localserver.h"
|
|
||||||
|
|
||||||
#include "killswitch.h"
|
#include "killswitch.h"
|
||||||
#include "logger.h"
|
#include "logger.h"
|
||||||
|
|
||||||
@@ -46,6 +50,9 @@ LocalServer::LocalServer(QObject *parent) : QObject(parent),
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
m_networkWatcher.initialize();
|
||||||
|
connect(&m_networkWatcher, &NetworkWatcher::sleepMode, &m_ipcServer, &IpcServer::networkChange);
|
||||||
|
connect(&m_networkWatcher, &NetworkWatcher::networkChange, &m_ipcServer, &IpcServer::networkChange);
|
||||||
KillSwitch::instance()->init();
|
KillSwitch::instance()->init();
|
||||||
|
|
||||||
#ifdef Q_OS_LINUX
|
#ifdef Q_OS_LINUX
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
#include "ipcserver.h"
|
#include "ipcserver.h"
|
||||||
|
|
||||||
#include "../../client/daemon/daemonlocalserver.h"
|
#include "../../client/daemon/daemonlocalserver.h"
|
||||||
|
#include "../../client/mozilla/networkwatcher.h"
|
||||||
|
|
||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
#include "windows/daemon/windowsdaemon.h"
|
#include "windows/daemon/windowsdaemon.h"
|
||||||
@@ -41,6 +41,8 @@ public:
|
|||||||
IpcProcessTun2Socks m_tun2socks;
|
IpcProcessTun2Socks m_tun2socks;
|
||||||
QRemoteObjectHost m_serverNode;
|
QRemoteObjectHost m_serverNode;
|
||||||
bool m_isRemotingEnabled = false;
|
bool m_isRemotingEnabled = false;
|
||||||
|
|
||||||
|
NetworkWatcher m_networkWatcher;
|
||||||
#ifdef Q_OS_LINUX
|
#ifdef Q_OS_LINUX
|
||||||
DaemonLocalServer server{qApp};
|
DaemonLocalServer server{qApp};
|
||||||
LinuxDaemon daemon;
|
LinuxDaemon daemon;
|
||||||
|
|||||||
Reference in New Issue
Block a user