2021-10-16 16:19:51 +01:00
|
|
|
#include "stdafx.h"
|
|
|
|
#include "SbiePlusAPI.h"
|
2022-02-05 14:09:53 +00:00
|
|
|
#include "SbieProcess.h"
|
|
|
|
#include "SandMan.h"
|
2021-10-16 16:19:51 +01:00
|
|
|
#include "..\MiscHelpers\Common\Common.h"
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
CSbiePlusAPI::CSbiePlusAPI(QObject* parent) : CSbieAPI(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CSbiePlusAPI::~CSbiePlusAPI()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CSandBox* CSbiePlusAPI::NewSandBox(const QString& BoxName, class CSbieAPI* pAPI)
|
|
|
|
{
|
|
|
|
return new CSandBoxPlus(BoxName, pAPI);
|
|
|
|
}
|
|
|
|
|
|
|
|
CBoxedProcess* CSbiePlusAPI::NewBoxedProcess(quint32 ProcessId, class CSandBox* pBox)
|
|
|
|
{
|
|
|
|
return new CSbieProcess(ProcessId, pBox);
|
|
|
|
}
|
|
|
|
|
|
|
|
CBoxedProcessPtr CSbiePlusAPI::OnProcessBoxed(quint32 ProcessId, const QString& Path, const QString& Box, quint32 ParentId)
|
|
|
|
{
|
|
|
|
CBoxedProcessPtr pProcess = CSbieAPI::OnProcessBoxed(ProcessId, Path, Box, ParentId);
|
|
|
|
if (!pProcess.isNull() && pProcess->GetFileName().indexOf(theAPI->GetSbiePath(), 0, Qt::CaseInsensitive) != 0) {
|
|
|
|
CSandBoxPlus* pBox = pProcess.objectCast<CSbieProcess>()->GetBox();
|
|
|
|
pBox->m_RecentPrograms.insert(pProcess->GetProcessName());
|
|
|
|
}
|
|
|
|
return pProcess;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL CALLBACK CSbiePlusAPI__WindowEnum(HWND hwnd, LPARAM lParam)
|
|
|
|
{
|
|
|
|
if (GetParent(hwnd) || GetWindow(hwnd, GW_OWNER))
|
|
|
|
return TRUE;
|
|
|
|
ULONG style = GetWindowLong(hwnd, GWL_STYLE);
|
|
|
|
if ((style & (WS_CAPTION | WS_SYSMENU)) != (WS_CAPTION | WS_SYSMENU))
|
|
|
|
return TRUE;
|
|
|
|
if (!IsWindowVisible(hwnd))
|
|
|
|
return TRUE;
|
|
|
|
/*
|
|
|
|
if ((style & WS_OVERLAPPEDWINDOW) != WS_OVERLAPPEDWINDOW &&
|
|
|
|
(style & WS_POPUPWINDOW) != WS_POPUPWINDOW)
|
|
|
|
return TRUE;
|
|
|
|
*/
|
|
|
|
|
|
|
|
ULONG pid;
|
|
|
|
GetWindowThreadProcessId(hwnd, &pid);
|
|
|
|
|
|
|
|
QMultiMap<quint32, QString>& m_WindowMap = *((QMultiMap<quint32, QString>*)(lParam));
|
|
|
|
|
|
|
|
WCHAR title[256];
|
|
|
|
GetWindowTextW(hwnd, title, 256);
|
|
|
|
|
|
|
|
m_WindowMap.insert(pid, QString::fromWCharArray(title));
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSbiePlusAPI::UpdateWindowMap()
|
|
|
|
{
|
|
|
|
m_WindowMap.clear();
|
|
|
|
EnumWindows(CSbiePlusAPI__WindowEnum, (LPARAM)&m_WindowMap);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CSbiePlusAPI::IsRunningAsAdmin()
|
|
|
|
{
|
|
|
|
if (m_UserSid.left(9) != "S-1-5-21-")
|
|
|
|
return false;
|
|
|
|
if (m_UserSid.right(4) != "-500")
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// CSandBoxPlus
|
|
|
|
//
|
|
|
|
|
|
|
|
CSandBoxPlus::CSandBoxPlus(const QString& BoxName, class CSbieAPI* pAPI) : CSandBox(BoxName, pAPI)
|
|
|
|
{
|
|
|
|
m_bLogApiFound = false;
|
|
|
|
m_bINetBlocked = false;
|
|
|
|
m_bSharesAllowed = false;
|
|
|
|
m_bDropRights = false;
|
|
|
|
|
|
|
|
|
2021-11-13 08:28:32 +00:00
|
|
|
m_bSecurityEnhanced = false;
|
|
|
|
m_bPrivacyEnhanced = false;
|
|
|
|
m_bApplicationCompartment = false;
|
2021-10-16 16:19:51 +01:00
|
|
|
m_iUnsecureDebugging = 0;
|
|
|
|
|
|
|
|
m_SuspendRecovery = false;
|
|
|
|
|
|
|
|
m_pOptionsWnd = NULL;
|
|
|
|
m_pRecoveryWnd = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
CSandBoxPlus::~CSandBoxPlus()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSandBoxPlus::UpdateDetails()
|
|
|
|
{
|
|
|
|
//m_bLogApiFound = GetTextList("OpenPipePath", false).contains("\\Device\\NamedPipe\\LogAPI");
|
|
|
|
m_bLogApiFound = false;
|
|
|
|
QStringList InjectDlls = GetTextList("InjectDll", false);
|
|
|
|
foreach(const QString & InjectDll, InjectDlls)
|
|
|
|
{
|
|
|
|
if (InjectDll.contains("logapi", Qt::CaseInsensitive)) {
|
|
|
|
m_bLogApiFound = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m_bINetBlocked = false;
|
|
|
|
foreach(const QString& Entry, GetTextList("ClosedFilePath", false))
|
|
|
|
{
|
2021-10-20 14:06:52 +01:00
|
|
|
if (Entry == "!<InternetAccess>,InternetAccessDevices") {
|
2021-10-16 16:19:51 +01:00
|
|
|
m_bINetBlocked = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2021-10-20 14:06:52 +01:00
|
|
|
foreach(const QString& Entry, GetTextList("AllowNetworkAccess", false))
|
|
|
|
{
|
|
|
|
if (Entry == "!<InternetAccess>,n") {
|
|
|
|
m_bINetBlocked = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-16 16:19:51 +01:00
|
|
|
|
|
|
|
m_bSharesAllowed = GetBool("BlockNetworkFiles", true) == false;
|
|
|
|
|
|
|
|
m_bDropRights = GetBool("DropAdminRights", false);
|
|
|
|
|
|
|
|
if (CheckUnsecureConfig())
|
|
|
|
m_iUnsecureDebugging = 1;
|
|
|
|
else if(GetBool("ExposeBoxedSystem", false) || GetBool("UnrestrictedSCM", false) /*|| GetBool("RunServicesAsSystem", false)*/)
|
|
|
|
m_iUnsecureDebugging = 2;
|
|
|
|
else
|
|
|
|
m_iUnsecureDebugging = 0;
|
|
|
|
|
|
|
|
//GetBool("SandboxieLogon", false)
|
|
|
|
|
2021-11-13 08:28:32 +00:00
|
|
|
m_bSecurityEnhanced = m_iUnsecureDebugging == 0 && (GetBool("DropAdminRights", false));
|
|
|
|
m_bApplicationCompartment = GetBool("NoSecurityIsolation", false);
|
|
|
|
m_bPrivacyEnhanced = (m_iUnsecureDebugging != 1 || m_bApplicationCompartment) && (GetBool("UsePrivacyMode", false)); // app compartments are inhenrently insecure
|
2021-10-16 16:19:51 +01:00
|
|
|
|
|
|
|
CSandBox::UpdateDetails();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSandBoxPlus::CloseBox()
|
|
|
|
{
|
|
|
|
CSandBox::CloseBox();
|
|
|
|
|
|
|
|
m_SuspendRecovery = false;
|
|
|
|
}
|
|
|
|
|
2021-11-13 08:28:32 +00:00
|
|
|
bool CSandBoxPlus::CheckUnsecureConfig() const
|
|
|
|
{
|
2022-01-01 19:31:05 +00:00
|
|
|
//if (GetBool("UnsafeTemplate", false)) return true;
|
2021-11-13 08:28:32 +00:00
|
|
|
if (GetBool("OriginalToken", false)) return true;
|
|
|
|
if (GetBool("OpenToken", false)) return true;
|
|
|
|
if(GetBool("UnrestrictedToken", false)) return true;
|
|
|
|
if (GetBool("KeepTokenIntegrity", false)) return true;
|
2021-12-26 09:19:31 +00:00
|
|
|
if (GetBool("UnstrippedToken", false)) return true;
|
|
|
|
if (GetBool("KeepUserGroup", false)) return true;
|
|
|
|
if (!GetBool("AnonymousLogon", true)) return true;
|
2021-11-13 08:28:32 +00:00
|
|
|
if(GetBool("UnfilteredToken", false)) return true;
|
|
|
|
if (GetBool("DisableFileFilter", false)) return true;
|
|
|
|
if (GetBool("DisableKeyFilter", false)) return true;
|
|
|
|
if (GetBool("DisableObjectFilter", false)) return true;
|
|
|
|
|
|
|
|
if (GetBool("StripSystemPrivileges", false)) return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-10-16 16:19:51 +01:00
|
|
|
QString CSandBoxPlus::GetStatusStr() const
|
|
|
|
{
|
|
|
|
if (!m_IsEnabled)
|
|
|
|
return tr("Disabled");
|
|
|
|
|
2022-02-05 14:09:53 +00:00
|
|
|
if (!m_StatusStr.isEmpty())
|
|
|
|
return m_StatusStr;
|
|
|
|
|
2021-10-16 16:19:51 +01:00
|
|
|
QStringList Status;
|
|
|
|
|
|
|
|
if (IsEmpty())
|
|
|
|
Status.append(tr("Empty"));
|
|
|
|
|
2021-11-13 08:28:32 +00:00
|
|
|
if (m_bApplicationCompartment)
|
|
|
|
Status.append(tr("Application Compartment"));
|
|
|
|
else if (m_iUnsecureDebugging == 1)
|
|
|
|
Status.append(tr("NOT SECURE"));
|
2021-10-16 16:19:51 +01:00
|
|
|
else if (m_iUnsecureDebugging == 2)
|
|
|
|
Status.append(tr("Reduced Isolation"));
|
2021-11-13 08:28:32 +00:00
|
|
|
else if(m_bSecurityEnhanced)
|
2021-10-16 16:19:51 +01:00
|
|
|
Status.append(tr("Enhanced Isolation"));
|
2021-11-13 08:28:32 +00:00
|
|
|
|
|
|
|
if(m_bPrivacyEnhanced)
|
|
|
|
Status.append(tr("Privacy Enhanced"));
|
2021-10-16 16:19:51 +01:00
|
|
|
|
|
|
|
if (m_bLogApiFound)
|
|
|
|
Status.append(tr("API Log"));
|
|
|
|
if (m_bINetBlocked)
|
|
|
|
Status.append(tr("No INet"));
|
|
|
|
if (m_bSharesAllowed)
|
|
|
|
Status.append(tr("Net Share"));
|
2021-11-13 08:28:32 +00:00
|
|
|
if (m_bDropRights && !m_bSecurityEnhanced)
|
2021-10-16 16:19:51 +01:00
|
|
|
Status.append(tr("No Admin"));
|
|
|
|
|
|
|
|
if (Status.isEmpty())
|
|
|
|
return tr("Normal");
|
|
|
|
return Status.join(", ");
|
|
|
|
}
|
|
|
|
|
2021-11-13 08:28:32 +00:00
|
|
|
CSandBoxPlus::EBoxTypes CSandBoxPlus::GetType() const
|
2021-10-16 16:19:51 +01:00
|
|
|
{
|
2021-11-13 08:28:32 +00:00
|
|
|
if (m_bApplicationCompartment && m_bPrivacyEnhanced)
|
|
|
|
return eAppBoxPlus;
|
|
|
|
if (m_bApplicationCompartment)
|
|
|
|
return eAppBox;
|
|
|
|
|
|
|
|
if (m_iUnsecureDebugging != 0)
|
|
|
|
return eInsecure;
|
|
|
|
|
|
|
|
if (m_bSecurityEnhanced && m_bPrivacyEnhanced)
|
|
|
|
return eHardenedPlus;
|
|
|
|
if (m_bSecurityEnhanced)
|
|
|
|
return eHardened;
|
|
|
|
|
|
|
|
if (m_bPrivacyEnhanced)
|
|
|
|
return eDefaultPlus;
|
|
|
|
return eDefault;
|
2021-10-16 16:19:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CSandBoxPlus::SetLogApi(bool bEnable)
|
|
|
|
{
|
|
|
|
if (bEnable)
|
|
|
|
{
|
|
|
|
//InsertText("OpenPipePath", "\\Device\\NamedPipe\\LogAPI");
|
|
|
|
InsertText("InjectDll", "\\LogAPI\\logapi32.dll");
|
|
|
|
InsertText("InjectDll64", "\\LogAPI\\logapi64.dll");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//DelValue("OpenPipePath", "\\Device\\NamedPipe\\LogAPI");
|
|
|
|
DelValue("InjectDll", "\\LogAPI\\logapi32.dll");
|
|
|
|
DelValue("InjectDll64", "\\LogAPI\\logapi64.dll");
|
|
|
|
}
|
|
|
|
m_bLogApiFound = bEnable;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSandBoxPlus::SetINetBlock(bool bEnable)
|
|
|
|
{
|
|
|
|
if (bEnable)
|
|
|
|
InsertText("ClosedFilePath", "!<InternetAccess>,InternetAccessDevices");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
foreach(const QString& Entry, GetTextList("ClosedFilePath", false))
|
|
|
|
{
|
|
|
|
if (Entry.contains("InternetAccessDevices"))
|
|
|
|
DelValue("ClosedFilePath", Entry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSandBoxPlus::SetAllowShares(bool bEnable)
|
|
|
|
{
|
|
|
|
SetBool("BlockNetworkFiles", !bEnable);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSandBoxPlus::SetDropRights(bool bEnable)
|
|
|
|
{
|
|
|
|
SetBool("DropAdminRights", bEnable);
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList::iterator FindInStrList(QStringList& list, const QString& str)
|
|
|
|
{
|
|
|
|
QStringList::iterator J = list.begin();
|
|
|
|
for (; J != list.end(); ++J)
|
|
|
|
{
|
|
|
|
if (J->compare(str, Qt::CaseInsensitive) == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return J;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetInStrList(QStringList& list, const QString& str, bool bSet)
|
|
|
|
{
|
|
|
|
if (bSet)
|
|
|
|
list.append(str);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (QStringList::iterator J = list.begin(); J != list.end();)
|
|
|
|
{
|
|
|
|
if (J->compare(str, Qt::CaseInsensitive) == 0) {
|
|
|
|
J = list.erase(J);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
++J;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CSandBoxPlus::TestProgramGroup(const QString& Group, const QString& ProgName)
|
|
|
|
{
|
|
|
|
QStringList ProcessGroups = GetTextList("ProcessGroup", false);
|
|
|
|
foreach(const QString & ProcessGroup, ProcessGroups)
|
|
|
|
{
|
|
|
|
StrPair GroupPaths = Split2(ProcessGroup, ",");
|
|
|
|
if (GroupPaths.first.compare(Group, Qt::CaseInsensitive) == 0)
|
|
|
|
{
|
|
|
|
QStringList Programs = SplitStr(GroupPaths.second, ",");
|
|
|
|
return FindInStrList(Programs, ProgName) != Programs.end();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSandBoxPlus::EditProgramGroup(const QString& Group, const QString& ProgName, bool bSet)
|
|
|
|
{
|
|
|
|
QStringList ProcessGroups = GetTextList("ProcessGroup", false);
|
|
|
|
|
|
|
|
QStringList Programs;
|
|
|
|
QStringList::iterator I = ProcessGroups.begin();
|
|
|
|
for (; I != ProcessGroups.end(); ++I)
|
|
|
|
{
|
|
|
|
StrPair GroupPaths = Split2(*I, ",");
|
|
|
|
if (GroupPaths.first.compare(Group, Qt::CaseInsensitive) == 0)
|
|
|
|
{
|
|
|
|
Programs = SplitStr(GroupPaths.second, ",");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (I == ProcessGroups.end())
|
|
|
|
I = ProcessGroups.insert(I, "");
|
|
|
|
|
|
|
|
SetInStrList(Programs, ProgName, bSet);
|
|
|
|
|
|
|
|
*I = Group + "," + Programs.join(",");
|
|
|
|
|
|
|
|
UpdateTextList("ProcessGroup", ProcessGroups, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSandBoxPlus::BlockProgram(const QString& ProgName)
|
|
|
|
{
|
|
|
|
bool WhiteList = false;
|
|
|
|
bool BlackList = false;
|
|
|
|
foreach(const QString& Entry, GetTextList("ClosedIpcPath", false))
|
|
|
|
{
|
|
|
|
StrPair ProgPath = Split2(Entry, ",");
|
|
|
|
if (ProgPath.second != "*")
|
|
|
|
continue;
|
|
|
|
if (ProgPath.first.compare("!<StartRunAccess>", Qt::CaseInsensitive) == 0)
|
|
|
|
WhiteList = true;
|
|
|
|
else if (ProgPath.first.compare("<StartRunAccess>", Qt::CaseInsensitive) == 0)
|
|
|
|
BlackList = true;
|
|
|
|
else
|
|
|
|
continue;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!WhiteList && !BlackList)
|
|
|
|
{
|
|
|
|
BlackList = true;
|
|
|
|
InsertText("ClosedIpcPath", "<StartRunAccess>,*");
|
|
|
|
}
|
|
|
|
|
|
|
|
EditProgramGroup("<StartRunAccess>", ProgName, !WhiteList);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSandBoxPlus::SetInternetAccess(const QString& ProgName, bool bSet)
|
|
|
|
{
|
|
|
|
EditProgramGroup("<InternetAccess>", ProgName, bSet);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CSandBoxPlus::HasInternetAccess(const QString& ProgName)
|
|
|
|
{
|
|
|
|
return TestProgramGroup("<InternetAccess>", ProgName);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSandBoxPlus::SetForcedProgram(const QString& ProgName, bool bSet)
|
|
|
|
{
|
|
|
|
QStringList Programs = GetTextList("ForceProcess", false);
|
|
|
|
SetInStrList(Programs, ProgName, bSet);
|
|
|
|
UpdateTextList("ForceProcess", Programs, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CSandBoxPlus::IsForcedProgram(const QString& ProgName)
|
|
|
|
{
|
|
|
|
QStringList Programs = GetTextList("ForceProcess", false);
|
|
|
|
return FindInStrList(Programs, ProgName) != Programs.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSandBoxPlus::SetLingeringProgram(const QString& ProgName, bool bSet)
|
|
|
|
{
|
|
|
|
QStringList Programs = GetTextList("LingerProcess", false);
|
|
|
|
SetInStrList(Programs, ProgName, bSet);
|
|
|
|
UpdateTextList("LingerProcess", Programs, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
int CSandBoxPlus::IsLingeringProgram(const QString& ProgName)
|
|
|
|
{
|
|
|
|
QStringList Programs = GetTextList("LingerProcess", false);
|
|
|
|
if (FindInStrList(Programs, ProgName) != Programs.end())
|
|
|
|
return 1;
|
|
|
|
Programs = GetTextList("LingerProcess", true);
|
|
|
|
if (FindInStrList(Programs, ProgName) != Programs.end())
|
|
|
|
return 2;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSandBoxPlus::SetLeaderProgram(const QString& ProgName, bool bSet)
|
|
|
|
{
|
|
|
|
QStringList Programs = GetTextList("LeaderProcess", false);
|
|
|
|
SetInStrList(Programs, ProgName, bSet);
|
|
|
|
UpdateTextList("LeaderProcess", Programs, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
int CSandBoxPlus::IsLeaderProgram(const QString& ProgName)
|
|
|
|
{
|
|
|
|
QStringList Programs = GetTextList("LeaderProcess", false);
|
|
|
|
return FindInStrList(Programs, ProgName) != Programs.end() ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
2022-02-05 14:09:53 +00:00
|
|
|
SB_STATUS CSandBoxPlus::DeleteContentAsync(bool DeleteShapshots, bool bOnAutoDelete)
|
|
|
|
{
|
|
|
|
if (GetBool("NeverDelete", false))
|
|
|
|
return SB_ERR(SB_DeleteProtect);
|
2021-10-16 16:19:51 +01:00
|
|
|
|
2022-02-05 14:09:53 +00:00
|
|
|
SB_STATUS Status = TerminateAll();
|
|
|
|
if (Status.IsError())
|
|
|
|
return Status;
|
|
|
|
m_ActiveProcessCount = 0; // to ensure CleanBox will be happy
|
|
|
|
|
|
|
|
foreach(const QString& Command, GetTextList("OnBoxDelete", true, false, true)) {
|
|
|
|
CBoxJob* pJob = new COnDeleteJob(this, Expand(Command));
|
|
|
|
AddJobToQueue(pJob);
|
2021-10-16 16:19:51 +01:00
|
|
|
}
|
2022-02-05 14:09:53 +00:00
|
|
|
|
|
|
|
CBoxJob* pJob = new CCleanUpJob(this, DeleteShapshots, bOnAutoDelete);
|
|
|
|
AddJobToQueue(pJob);
|
|
|
|
|
|
|
|
return SB_OK;
|
2021-10-16 16:19:51 +01:00
|
|
|
}
|
|
|
|
|
2022-02-05 14:09:53 +00:00
|
|
|
void CSandBoxPlus::AddJobToQueue(CBoxJob* pJob)
|
2021-10-16 16:19:51 +01:00
|
|
|
{
|
2022-02-05 14:09:53 +00:00
|
|
|
m_JobQueue.append(QSharedPointer<CBoxJob>(pJob));
|
|
|
|
if (m_JobQueue.count() == 1)
|
|
|
|
StartNextJob();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSandBoxPlus::StartNextJob()
|
|
|
|
{
|
|
|
|
next:
|
|
|
|
Q_ASSERT(m_JobQueue.count() > 0);
|
|
|
|
Q_ASSERT(m_JobQueue.first()->GetProgress().isNull());
|
|
|
|
|
|
|
|
QSharedPointer<CBoxJob> pJob = m_JobQueue.first();
|
|
|
|
SB_PROGRESS Status = pJob->Start();
|
|
|
|
if (Status.GetStatus() == OP_ASYNC)
|
|
|
|
{
|
|
|
|
m_StatusStr = pJob->GetDescription();
|
|
|
|
|
|
|
|
CSbieProgressPtr pProgress = Status.GetValue();
|
|
|
|
connect(pProgress.data(), SIGNAL(Message(const QString&)), this, SLOT(OnAsyncMessage(const QString&)));
|
|
|
|
connect(pProgress.data(), SIGNAL(Progress(int)), this, SLOT(OnAsyncProgress(int)));
|
|
|
|
connect(pProgress.data(), SIGNAL(Finished()), this, SLOT(OnAsyncFinished()));
|
2021-10-16 16:19:51 +01:00
|
|
|
}
|
2022-02-05 14:09:53 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
m_JobQueue.removeFirst();
|
|
|
|
if (Status.IsError()) {
|
|
|
|
m_JobQueue.clear();
|
|
|
|
theGUI->CheckResults(QList<SB_STATUS>() << Status);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!m_JobQueue.isEmpty())
|
|
|
|
goto next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSandBoxPlus::OnAsyncFinished()
|
|
|
|
{
|
|
|
|
Q_ASSERT(m_JobQueue.count() > 0);
|
|
|
|
Q_ASSERT(!m_JobQueue.first()->GetProgress().isNull());
|
2021-10-16 16:19:51 +01:00
|
|
|
|
2022-02-05 14:09:53 +00:00
|
|
|
m_StatusStr.clear();
|
2021-10-16 16:19:51 +01:00
|
|
|
|
2022-02-05 14:09:53 +00:00
|
|
|
QSharedPointer<CBoxJob> pJob = m_JobQueue.takeFirst();
|
|
|
|
CSbieProgressPtr pProgress = pJob->GetProgress();
|
|
|
|
if (pProgress->IsCanceled()) {
|
|
|
|
m_JobQueue.clear();
|
|
|
|
return;
|
|
|
|
}
|
2021-10-16 16:19:51 +01:00
|
|
|
|
2022-02-05 14:09:53 +00:00
|
|
|
SB_STATUS Status = pProgress->GetStatus();
|
|
|
|
if (Status.IsError()) {
|
|
|
|
m_JobQueue.clear();
|
|
|
|
theGUI->CheckResults(QList<SB_STATUS>() << Status);
|
|
|
|
return;
|
2021-10-16 16:19:51 +01:00
|
|
|
}
|
|
|
|
|
2022-02-05 14:09:53 +00:00
|
|
|
if (!m_JobQueue.isEmpty())
|
|
|
|
StartNextJob();
|
2021-10-16 16:19:51 +01:00
|
|
|
}
|
2022-02-05 14:09:53 +00:00
|
|
|
|
|
|
|
void CSandBoxPlus::OnAsyncMessage(const QString& Text)
|
|
|
|
{
|
|
|
|
m_StatusStr = Text;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSandBoxPlus::OnAsyncProgress(int Progress)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSandBoxPlus::OnCancelAsync()
|
|
|
|
{
|
|
|
|
if (m_JobQueue.isEmpty())
|
|
|
|
return;
|
|
|
|
Q_ASSERT(!m_JobQueue.first()->GetProgress().isNull());
|
|
|
|
|
|
|
|
QSharedPointer<CBoxJob> pJob = m_JobQueue.first();
|
|
|
|
CSbieProgressPtr pProgress = pJob->GetProgress();
|
|
|
|
pProgress->Cancel();
|
|
|
|
}
|