mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-05-08 14:33:23 +00:00
* fix: xray heap corruption * fix: use proper configuration for split-tunneled apps * chore: enable killswitch * chore: xray windows split-tunneling cleanup * chore: proper xray killswitch log * feat: add wait for the tun device * chore: update amnezia_xray deps for macos * fix: add nullptr check for split-tunnel on win * fix: modernize vpnAdapter grabbing function * fix: remove network watcher due to its fragileness * chore: xrayprotocol cleanup * fix: correct wrong iface index on win * chore: move tun2socks implementation to the client from the service * chore: xrayprotocol cleanup * chore: more xrayprotocol cleanup * fix: consistent tun device with GUID specified * chore: tun2socks logs * chore: PrivilegedProcess cleanup * better error handling in establishment phase * terminate&kill ops for remote process * fix: straighforward killing the process on windows * fix: finally remove GUID setting from tun2socks due to instability * fix: add sanitizer to ipc process * chore: do not collect sensitive info from tun2socks
57 lines
1.5 KiB
C++
57 lines
1.5 KiB
C++
#ifndef IPCCLIENT_H
|
|
#define IPCCLIENT_H
|
|
|
|
#include <QLocalSocket>
|
|
#include <QObject>
|
|
|
|
#include "rep_ipc_interface_replica.h"
|
|
#include "rep_ipc_process_interface_replica.h"
|
|
|
|
class IpcClient : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit IpcClient(QObject *parent = nullptr);
|
|
|
|
static IpcClient& Instance();
|
|
|
|
static QSharedPointer<IpcInterfaceReplica> Interface();
|
|
static QSharedPointer<IpcProcessInterfaceReplica> CreatePrivilegedProcess();
|
|
|
|
template <typename Func>
|
|
static auto withInterface(Func func)
|
|
{
|
|
QSharedPointer<IpcInterfaceReplica> iface = Instance().m_interface;
|
|
using ReturnType = decltype(func(std::declval<QSharedPointer<IpcInterfaceReplica>>()));
|
|
|
|
if (iface.isNull() || !iface->waitForSource(1000) || !iface->isReplicaValid()) {
|
|
qWarning() << "IpcClient::withInterface(): Service is not running";
|
|
|
|
if constexpr (std::is_void_v<ReturnType>)
|
|
return;
|
|
else
|
|
return ReturnType{};
|
|
}
|
|
|
|
return func(iface);
|
|
}
|
|
|
|
template <typename OnSuccess, typename OnFailure>
|
|
static auto withInterface(OnSuccess onSuccess, OnFailure onFailure)
|
|
{
|
|
QSharedPointer<IpcInterfaceReplica> iface = Instance().m_interface;
|
|
if (iface.isNull() || !iface->waitForSource(1000) || !iface->isReplicaValid()) {
|
|
return onFailure();
|
|
}
|
|
|
|
return onSuccess(iface);
|
|
}
|
|
signals:
|
|
|
|
private:
|
|
QRemoteObjectNode m_node;
|
|
QSharedPointer<IpcInterfaceReplica> m_interface;
|
|
};
|
|
|
|
#endif // IPCCLIENT_H
|