122 lines
3.5 KiB
C++
122 lines
3.5 KiB
C++
#include "shadowsocksvpnprotocol.h"
|
|
|
|
#include "debug.h"
|
|
#include "utils.h"
|
|
#include "containers/containers_defs.h"
|
|
|
|
#include <QCryptographicHash>
|
|
#include <QJsonDocument>
|
|
#include <QJsonObject>
|
|
|
|
ShadowSocksVpnProtocol::ShadowSocksVpnProtocol(const QJsonObject &configuration, QObject *parent):
|
|
OpenVpnProtocol(configuration, parent)
|
|
{
|
|
readShadowSocksConfiguration(configuration);
|
|
}
|
|
|
|
ShadowSocksVpnProtocol::~ShadowSocksVpnProtocol()
|
|
{
|
|
qDebug() << "ShadowSocksVpnProtocol::~ShadowSocksVpnProtocol";
|
|
ShadowSocksVpnProtocol::stop();
|
|
QThread::msleep(200);
|
|
#ifndef Q_OS_IOS
|
|
m_ssProcess.close();
|
|
#endif
|
|
}
|
|
|
|
ErrorCode ShadowSocksVpnProtocol::start()
|
|
{
|
|
|
|
if (!QFileInfo::exists(shadowSocksExecPath())) {
|
|
setLastError(ErrorCode::ShadowSocksExecutableMissing);
|
|
return lastError();
|
|
}
|
|
|
|
|
|
#ifndef Q_OS_IOS
|
|
if (Utils::processIsRunning(Utils::executable("ss-local", false))) {
|
|
Utils::killProcessByName(Utils::executable("ss-local", false));
|
|
}
|
|
|
|
#ifdef QT_DEBUG
|
|
m_shadowSocksCfgFile.setAutoRemove(false);
|
|
#endif
|
|
m_shadowSocksCfgFile.open();
|
|
m_shadowSocksCfgFile.write(QJsonDocument(m_shadowSocksConfig).toJson());
|
|
m_shadowSocksCfgFile.close();
|
|
|
|
#ifdef Q_OS_LINUX
|
|
QStringList args = QStringList() << "-c" << m_shadowSocksCfgFile.fileName();
|
|
#else
|
|
QStringList args = QStringList() << "-c" << m_shadowSocksCfgFile.fileName()
|
|
<< "--no-delay";
|
|
#endif
|
|
|
|
qDebug().noquote() << "ShadowSocksVpnProtocol::start()"
|
|
<< shadowSocksExecPath() << args.join(" ");
|
|
|
|
m_ssProcess.setProcessChannelMode(QProcess::MergedChannels);
|
|
|
|
m_ssProcess.setProgram(shadowSocksExecPath());
|
|
m_ssProcess.setArguments(args);
|
|
|
|
connect(&m_ssProcess, &QProcess::readyReadStandardOutput, this, [this](){
|
|
qDebug().noquote() << "ss-local:" << m_ssProcess.readAllStandardOutput();
|
|
});
|
|
|
|
connect(&m_ssProcess, QOverload<int, QProcess::ExitStatus>::of(&QProcess::finished), this, [this](int exitCode, QProcess::ExitStatus exitStatus){
|
|
qDebug().noquote() << "ShadowSocksVpnProtocol finished, exitCode, exiStatus" << exitCode << exitStatus;
|
|
setConnectionState(VpnProtocol::Disconnected);
|
|
if (exitStatus != QProcess::NormalExit){
|
|
emit protocolError(amnezia::ErrorCode::ShadowSocksExecutableCrashed);
|
|
stop();
|
|
}
|
|
if (exitCode !=0 ){
|
|
emit protocolError(amnezia::ErrorCode::InternalError);
|
|
stop();
|
|
}
|
|
});
|
|
|
|
m_ssProcess.start();
|
|
m_ssProcess.waitForStarted();
|
|
|
|
if (m_ssProcess.state() == QProcess::ProcessState::Running) {
|
|
setConnectionState(VpnConnectionState::Connecting);
|
|
|
|
return OpenVpnProtocol::start();
|
|
}
|
|
else return ErrorCode::ShadowSocksExecutableMissing;
|
|
#else
|
|
return ErrorCode::NotImplementedError;
|
|
#endif
|
|
}
|
|
|
|
void ShadowSocksVpnProtocol::stop()
|
|
{
|
|
OpenVpnProtocol::stop();
|
|
|
|
qDebug() << "ShadowSocksVpnProtocol::stop()";
|
|
#ifndef Q_OS_IOS
|
|
m_ssProcess.terminate();
|
|
#endif
|
|
|
|
#ifdef Q_OS_WIN
|
|
Utils::signalCtrl(m_ssProcess.processId(), CTRL_C_EVENT);
|
|
#endif
|
|
}
|
|
|
|
QString ShadowSocksVpnProtocol::shadowSocksExecPath()
|
|
{
|
|
#ifdef Q_OS_WIN
|
|
return Utils::executable(QString("ss/ss-local"), true);
|
|
#elif defined Q_OS_LINUX
|
|
return Utils::usrExecutable(QString("ss-local"));
|
|
#else
|
|
return Utils::executable(QString("/ss-local"), true);
|
|
#endif
|
|
}
|
|
|
|
void ShadowSocksVpnProtocol::readShadowSocksConfiguration(const QJsonObject &configuration)
|
|
{
|
|
m_shadowSocksConfig = configuration.value(ProtocolProps::key_proto_config_data(Proto::ShadowSocks)).toObject();
|
|
}
|