icinga-powershell-framework/lib/daemon/Start-IcingaPowerShellDaemon.psm1

124 lines
4.8 KiB
PowerShell
Raw Normal View History

function Start-IcingaPowerShellDaemon()
{
2021-08-06 12:12:27 -04:00
param (
[switch]$RunAsService = $FALSE,
[switch]$JEAContext = $FALSE,
2021-08-06 12:12:27 -04:00
[switch]$JEARestart = $FALSE
);
Start-IcingaForWindowsDaemon -RunAsService:$RunAsService -JEARestart:$JEARestart -JEAContext:$JEAContext;
2021-12-09 11:42:06 -05:00
}
2021-12-09 11:42:06 -05:00
function Start-IcingaForWindowsDaemon()
{
param (
[switch]$RunAsService = $FALSE,
[switch]$JEAContext = $FALSE,
2021-12-09 11:42:06 -05:00
[switch]$JEARestart = $FALSE
);
$Global:Icinga.Protected.RunAsDaemon = [bool]$RunAsService;
$Global:Icinga.Protected.JEAContext = [bool]$JEAContext;
[string]$MainServicePidFile = (Join-Path -Path (Get-IcingaCacheDir) -ChildPath 'service.pid');
[string]$JeaPidFile = (Join-Path -Path (Get-IcingaCacheDir) -ChildPath 'jea.pid');
[string]$JeaProfile = Get-IcingaPowerShellConfig -Path 'Framework.JEAProfile';
[string]$JeaPid = '';
if ((Test-IcingaJEAServiceRunning) -eq $FALSE) {
Write-IcingaFileSecure -File ($MainServicePidFile) -Value $PID;
if ([string]::IsNullOrEmpty($JeaProfile)) {
Write-IcingaDebugMessage -Message 'Starting Icinga for Windows service without JEA context' -Objects $RunAsService, $JEARestart, $JeaProfile;
# Todo: Add config for active background tasks. Set it to 20 for the moment
Add-IcingaThreadPool -Name 'MainPool' -MaxInstances 20;
$Global:Icinga.Public.Add(
'SSL',
@{
'Certificate' = $null;
'CertFile' = $null;
'CertThumbprint' = $null;
'CertFilter' = $null;
}
);
New-IcingaThreadInstance -Name "Main" -ThreadPool (Get-IcingaThreadPool -Name 'MainPool') -Command 'Add-IcingaForWindowsDaemon' -Start;
} else {
Write-IcingaDebugMessage -Message 'Starting Icinga for Windows service inside JEA context' -Objects $RunAsService, $JEARestart, $JeaProfile;
& powershell.exe -NoProfile -NoLogo -ConfigurationName $JeaProfile -Command {
try {
Use-Icinga -Daemon;
2021-08-06 12:12:27 -04:00
Write-IcingaFileSecure -File ($args[0]) -Value $PID;
2021-08-06 12:12:27 -04:00
$Global:Icinga.Protected.JEAContext = $TRUE;
$Global:Icinga.Protected.RunAsDaemon = $TRUE;
# Todo: Add config for active background tasks. Set it to 20 for the moment
Add-IcingaThreadPool -Name 'MainPool' -MaxInstances 20;
$Global:Icinga.Public.Add(
'SSL',
@{
'Certificate' = $null;
'CertFile' = $null;
'CertThumbprint' = $null;
'CertFilter' = $null;
}
);
New-IcingaThreadInstance -Name "Main" -ThreadPool (Get-IcingaThreadPool -Name 'MainPool') -Command 'Add-IcingaForWindowsDaemon' -Start;
while ($TRUE) {
Start-Sleep -Seconds 100;
}
} catch {
Write-IcingaEventMessage -EventId 1600 -Namespace 'Framework' -ExceptionObject $_;
2021-08-06 12:12:27 -04:00
}
} -Args $JeaPidFile;
}
2021-08-06 12:12:27 -04:00
}
if ($JEARestart) {
return;
}
if ($RunAsService) {
2021-08-06 12:12:27 -04:00
[int]$JeaRestartCounter = 1;
$FailureTime = $null;
while ($TRUE) {
2021-08-06 12:12:27 -04:00
if ([string]::IsNullOrEmpty($JeaProfile) -eq $FALSE) {
if ([string]::IsNullOrEmpty($JeaPid)) {
[string]$JeaPid = Get-IcingaJEAServicePid;
}
if ((Test-IcingaJEAServiceRunning -JeaPid $JeaPid) -eq $FALSE) {
if ($JeaRestartCounter -gt 5) {
Write-IcingaEventMessage -EventId 1504 -Namespace Framework;
exit 1;
}
Write-IcingaFileSecure -File $JeaPidFile -Value '';
$FailureTime = [DateTime]::Now;
2021-08-06 12:12:27 -04:00
Write-IcingaEventMessage -EventId 1505 -Namespace Framework -Objects ([string]::Format('{0}/5', $JeaRestartCounter));
Start-IcingaForWindowsDaemon -RunAsService:$RunAsService -JEAContext:$JEAContext -JEARestart;
2021-08-06 12:12:27 -04:00
if (([DateTime]::Now - $FailureTime).TotalSeconds -lt 180) {
$JeaRestartCounter += 1;
} else {
$JeaRestartCounter = 1;
}
2021-08-06 12:12:27 -04:00
$JeaPid = '';
}
Start-Sleep -Seconds 5;
$JeaAliveCounter += 1;
2021-08-06 12:12:27 -04:00
continue;
}
Start-Sleep -Seconds 100;
}
}
}