Files
EZ4Connect/infrastructure/coreprocess/zjuconnectprocess.cpp
2026-08-10 19:04:20 +08:00

288 lines
8.4 KiB
C++

#include "zjuconnectprocess.h"
#include "infrastructure/coreprocess/corecommandbuilder.h"
#include "infrastructure/coreprocess/consoleoutputdecoder.h"
#include "infrastructure/coreprocess/coreoutputparser.h"
#include "infrastructure/platform/privileges.h"
#include "infrastructure/storage/applicationpaths.h"
#include <qcontainerfwd.h>
#include <QDebug>
#include <QDir>
#include <QFileInfo>
#include <QStandardPaths>
ZjuConnectProcess::ZjuConnectProcess(QObject *parent) : CoreProcess(parent)
{
zjuConnectProcess = new QProcess(this);
connect(zjuConnectProcess, &QProcess::readyReadStandardOutput, this, [this]()
{
processOutput(standardOutputBuffer, zjuConnectProcess->readAllStandardOutput());
});
connect(zjuConnectProcess, &QProcess::readyReadStandardError, this, [this]()
{
processOutput(standardErrorBuffer, zjuConnectProcess->readAllStandardError());
});
connect(zjuConnectProcess, &QProcess::errorOccurred, this, [&](QProcess::ProcessError err)
{
if (stopRequested)
{
return;
}
QString errorString = zjuConnectProcess->errorString();
qWarning().noquote() << "退出原因:" + errorString;
if (errorString.contains("No such file or directory") || errorString.contains("not found") || errorString.contains("找不到"))
{
qWarning().noquote() << "核心路径:" + zjuConnectProcess->program();
emit error(ZJU_ERROR::PROGRAM_NOT_FOUND);
}
});
connect(zjuConnectProcess, &QProcess::finished, this, [&]()
{
processOutput(standardOutputBuffer, zjuConnectProcess->readAllStandardOutput(), true);
processOutput(standardErrorBuffer, zjuConnectProcess->readAllStandardError(), true);
stopRequested = false;
qInfo().noquote() << "退出原因:进程已结束";
emit finished();
});
}
void ZjuConnectProcess::processOutput(CoreOutputBuffer &buffer, const QByteArray &data, bool flushPending)
{
QList<QByteArray> lines = buffer.append(data);
if (buffer.hasPendingData())
{
if (flushPending || CoreOutputParser::hasInteractivePrompt(buffer.pendingData()))
{
lines.append(buffer.takePendingData());
}
}
processOutputLines(lines);
}
void ZjuConnectProcess::processOutputLines(const QList<QByteArray> &lines)
{
if (lines.isEmpty())
{
return;
}
QStringList outputLines;
outputLines.reserve(lines.size());
for (const QByteArray &line : lines)
{
outputLines.append(ConsoleOutputDecoder::decode(line));
}
const QString output = outputLines.join('\n');
emit outputRead(output);
for (const QString &line : outputLines)
{
switch (CoreOutputParser::parse(line))
{
case CoreOutputEvent::AskSudoPassword:
emit askSudoPass();
break;
case CoreOutputEvent::GraphCaptcha:
emit graphCaptcha(CoreOutputParser::graphCaptchaFile(line));
break;
case CoreOutputEvent::SmsCodeWithSkipOption:
emit smsCode(true);
break;
case CoreOutputEvent::SmsCode:
emit smsCode(false);
break;
case CoreOutputEvent::TotpCode:
emit totpCode();
break;
case CoreOutputEvent::SsoCallback:
emit ssoAuth();
break;
case CoreOutputEvent::CaptchaFailed:
emit error(ZJU_ERROR::CAPTCHA_FAILED);
break;
case CoreOutputEvent::AccessDenied:
emit error(ZJU_ERROR::ACCESS_DENIED);
break;
case CoreOutputEvent::ListenFailed:
emit error(ZJU_ERROR::LISTEN_FAILED);
break;
case CoreOutputEvent::InvalidCredentials:
emit error(ZJU_ERROR::INVALID_DETAIL);
break;
case CoreOutputEvent::BruteForceBlocked:
emit error(ZJU_ERROR::BRUTE_FORCE);
break;
case CoreOutputEvent::LoginFailed:
emit error(ZJU_ERROR::OTHER_LOGIN_FAILED);
break;
case CoreOutputEvent::InteractiveError:
emit error(ZJU_ERROR::INTERACTIVE_ERROR);
break;
case CoreOutputEvent::AuthNotAvailable:
emit error(ZJU_ERROR::AUTH_NOT_AVAILABLE);
break;
case CoreOutputEvent::AuthExpired:
emit error(ZJU_ERROR::AUTH_EXPIRED);
break;
case CoreOutputEvent::ClientFailed:
emit error(ZJU_ERROR::CLIENT_FAILED);
break;
case CoreOutputEvent::CorePanic:
emit error(ZJU_ERROR::OTHER);
break;
case CoreOutputEvent::None:
break;
}
}
}
QString ZjuConnectProcess::copyCoreForAppImage(const QString &programPath)
{
#if defined(Q_OS_UNIX)
static QString cachedSourcePath;
static QString cachedTempPath;
if (!qEnvironmentVariableIsSet("APPIMAGE")) {
return programPath;
}
if (cachedSourcePath == programPath && !cachedTempPath.isEmpty() && QFileInfo::exists(cachedTempPath)) {
return cachedTempPath;
}
const QFileInfo sourceInfo(programPath);
if (!sourceInfo.exists() || !sourceInfo.isFile()) {
return programPath;
}
const QString tempRoot = QStandardPaths::writableLocation(QStandardPaths::TempLocation)
+ "/EZ4Connect-" + QString::number(QCoreApplication::applicationPid());
QDir().mkpath(tempRoot);
const QString tempPath = tempRoot + "/" + sourceInfo.fileName();
if (QFileInfo::exists(tempPath)) {
QFile::remove(tempPath);
}
if (!QFile::copy(programPath, tempPath)) {
return programPath;
}
QFile::setPermissions(tempPath,
QFileDevice::ReadOwner | QFileDevice::WriteOwner | QFileDevice::ExeOwner |
QFileDevice::ReadGroup | QFileDevice::ExeGroup |
QFileDevice::ReadOther | QFileDevice::ExeOther);
cachedSourcePath = programPath;
cachedTempPath = tempPath;
return tempPath;
#else
return programPath;
#endif
}
void ZjuConnectProcess::start(const ConnectionProfile &profile)
{
CoreRuntimePaths runtimePaths;
// Both protocols can require a graph captcha. The UI chooses the response
// format according to the active protocol.
if (tempDir == nullptr)
{
tempDir = new QTemporaryDir;
tempDir->setAutoRemove(true);
}
runtimePaths.graphCodeFile = tempDir->filePath("graph.jpg");
if (profile.endpoint.protocol == "atrust")
{
runtimePaths.clientDataFile = ApplicationPaths::clientDataFile(profile.profileId);
}
const CoreCommand command = CoreCommandBuilder::build(profile, runtimePaths);
qInfo().noquote() << "VPN 启动!参数:" + command.loggableArguments.join(' ');
if (!profile.credentials.totpSecret.isEmpty())
{
qInfo().noquote() << "使用了 TOTP";
}
if (!profile.credentials.certFile.isEmpty())
{
qInfo().noquote() << "使用了证书文件";
}
QString programToStart = profile.program;
QStringList finalArgs = command.arguments;
#if defined(Q_OS_UNIX)
if (profile.tunnel.tunMode && !Privileges::isElevated())
{
programToStart = copyCoreForAppImage(programToStart);
QStringList sudoArgs;
sudoArgs << "-p" << "SUDO_ASK_PASS";
sudoArgs << "-S";
sudoArgs << programToStart << finalArgs;
programToStart = "sudo";
finalArgs = sudoArgs;
}
#endif
zjuConnectProcess->start(programToStart, finalArgs);
zjuConnectProcess->waitForStarted();
if (zjuConnectProcess->state() == QProcess::NotRunning)
{
emit finished();
}
else
{
emit started();
}
}
void ZjuConnectProcess::stop()
{
if (zjuConnectProcess->state() == QProcess::NotRunning)
{
return;
}
if (!stopRequested)
{
stopRequested = true;
zjuConnectProcess->terminate();
}
else
{
zjuConnectProcess->kill();
}
}
void ZjuConnectProcess::writeInput(const QByteArray &data)
{
zjuConnectProcess->write(data);
}
ZjuConnectProcess::~ZjuConnectProcess()
{
disconnect(zjuConnectProcess, nullptr, this, nullptr);
if (zjuConnectProcess->state() == QProcess::NotRunning)
{
return;
}
zjuConnectProcess->terminate();
if (!zjuConnectProcess->waitForFinished(3000))
{
zjuConnectProcess->kill();
zjuConnectProcess->waitForFinished();
}
}