Merge pull request #2919 from KevDi/bugfix/setFailureActionsCrashes

Fixed Crash in WinService::setFailureActions
This commit is contained in:
Günter Obiltschnig
2020-02-12 20:35:44 +01:00
committed by GitHub

View File

@@ -236,9 +236,16 @@ WinService::Startup WinService::getStartup() const
void WinService::setFailureActions(FailureActionVector failureActions, const std::string& command, const std::string& rebootMessage) void WinService::setFailureActions(FailureActionVector failureActions, const std::string& command, const std::string& rebootMessage)
{ {
if (failureActions.size() > 3) {
throw InvalidArgumentException{ "Only 0-3 Failure Actions are supported" };
}
open(); open();
auto actions = new SC_ACTION[3]; auto actions = new SC_ACTION[failureActions.size()];
SERVICE_FAILURE_ACTIONSW ac; SERVICE_FAILURE_ACTIONSW ac;
ac.lpCommand = NULL;
ac.lpRebootMsg = NULL;
std::wstring urebootMessage; std::wstring urebootMessage;
Poco::UnicodeConverter::toUTF16(rebootMessage, urebootMessage); Poco::UnicodeConverter::toUTF16(rebootMessage, urebootMessage);
@@ -250,7 +257,7 @@ void WinService::setFailureActions(FailureActionVector failureActions, const std
std::vector<wchar_t> commandVector{ uComamnd.begin(), uComamnd.end() }; std::vector<wchar_t> commandVector{ uComamnd.begin(), uComamnd.end() };
commandVector.push_back('\0'); commandVector.push_back('\0');
for (auto i = 0; i < 3; i++) for (auto i = 0; i < failureActions.size(); i++)
{ {
switch (failureActions[i].type) switch (failureActions[i].type)
{ {
@@ -276,7 +283,7 @@ void WinService::setFailureActions(FailureActionVector failureActions, const std
} }
ac.dwResetPeriod = 0; ac.dwResetPeriod = 0;
ac.cActions = 3; ac.cActions = failureActions.size();
ac.lpsaActions = actions; ac.lpsaActions = actions;
if (!ChangeServiceConfig2W(_svcHandle, SERVICE_CONFIG_FAILURE_ACTIONS, &ac)) if (!ChangeServiceConfig2W(_svcHandle, SERVICE_CONFIG_FAILURE_ACTIONS, &ac))