icinga2/plugins/check_update.cpp

249 lines
7.1 KiB
C++
Raw Permalink Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2018-02-01 08:45:09 +01:00
#include "plugins/thresholds.hpp"
#include <boost/program_options.hpp>
2014-11-06 15:17:08 +01:00
#include <iostream>
2018-02-01 08:45:09 +01:00
#include <windows.h>
#include <shlwapi.h>
2014-11-06 15:17:08 +01:00
#include <wuapi.h>
#include <wuerror.h>
#define VERSION 1.0
#define CRITERIA L"(IsInstalled = 0 and CategoryIDs contains '0fa1201d-4330-4fa8-8ae9-b877473b6441') or (IsInstalled = 0 and CategoryIDs contains 'E6CF1350-C01B-414D-A61F-263D14D133B4')"
namespace po = boost::program_options;
2018-02-01 08:45:09 +01:00
struct printInfoStruct
2014-11-06 15:17:08 +01:00
{
int warn{0};
int crit{0};
2018-02-01 08:45:09 +01:00
LONG numUpdates{0};
bool ignoreReboot{false};
int reboot{0};
2018-02-01 08:45:09 +01:00
bool careForCanRequest{false};
};
2014-11-06 15:17:08 +01:00
2018-02-01 08:45:09 +01:00
static bool l_Debug;
2014-11-06 15:17:08 +01:00
2018-02-01 08:45:09 +01:00
static int parseArguments(int ac, WCHAR **av, po::variables_map& vm, printInfoStruct& printInfo)
2014-11-06 15:17:08 +01:00
{
2015-03-23 13:07:02 +01:00
WCHAR namePath[MAX_PATH];
2014-11-06 15:17:08 +01:00
GetModuleFileName(NULL, namePath, MAX_PATH);
2015-03-23 13:07:02 +01:00
WCHAR *progName = PathFindFileName(namePath);
2014-11-06 15:17:08 +01:00
po::options_description desc;
desc.add_options()
2015-03-23 13:07:02 +01:00
("help,h", "Print help message and exit")
("version,V", "Print version and exit")
("debug,d", "Verbose/Debug output")
("warning,w", po::value<int>(), "Number of updates to trigger a warning.")
("critical,c", po::value<int>(), "Number of updates to trigger a critical.")
2015-03-23 13:07:02 +01:00
("possible-reboot", "Treat \"update may need reboot\" as \"update needs reboot\"")
("no-reboot-critical", "Do not automatically return critical if an update requiring reboot is present.")
2014-11-06 15:17:08 +01:00
;
2018-02-01 08:45:09 +01:00
po::wcommand_line_parser parser(ac, av);
2014-11-06 15:17:08 +01:00
try {
po::store(
parser
.options(desc)
.style(
2018-02-01 08:45:09 +01:00
po::command_line_style::unix_style |
po::command_line_style::allow_long_disguise)
2014-11-06 15:17:08 +01:00
.run(),
vm);
vm.notify();
2018-02-01 08:45:09 +01:00
} catch (const std::exception& e) {
2015-03-23 13:07:02 +01:00
std::cout << e.what() << '\n' << desc << '\n';
2014-11-06 15:17:08 +01:00
return 3;
}
2014-11-06 15:17:08 +01:00
if (vm.count("help")) {
2015-03-23 13:07:02 +01:00
std::wcout << progName << " Help\n\tVersion: " << VERSION << '\n';
2014-11-06 15:17:08 +01:00
wprintf(
L"%s is a simple program to check a machines required updates.\n"
L"You can use the following options to define its behaviour:\n\n", progName);
2015-03-23 13:07:02 +01:00
std::cout << desc;
2014-11-06 15:17:08 +01:00
wprintf(
L"\nAfter some time, it will then output a string like this one:\n\n"
L"\tUPDATE WARNING 8 | updates=8;1;1;0\n\n"
2014-11-06 15:17:08 +01:00
L"\"UPDATE\" being the type of the check, \"WARNING\" the returned status\n"
L"and \"8\" is the number of important updates.\n"
2014-11-06 15:17:08 +01:00
L"The performance data is found behind the \"|\", in order:\n"
L"returned value, warning threshold, critical threshold, minimal value and,\n"
L"if applicable, the maximal value.\n\n"
2014-11-06 15:17:08 +01:00
L"An update counts as important when it is part of the Security- or\n"
L"CriticalUpdates group.\n"
L"Consult the msdn on WSUS Classification GUIDs for more information.\n"
L"%s' exit codes denote the following:\n"
2014-11-06 16:36:42 +01:00
L" 0\tOK,\n\tNo Thresholds were broken or the programs check part was not executed\n"
2014-11-06 15:17:08 +01:00
L" 1\tWARNING,\n\tThe warning, but not the critical threshold was broken\n"
L" 2\tCRITICAL,\n\tThe critical threshold was broken or an update required reboot.\n"
2014-11-06 16:36:42 +01:00
L" 3\tUNKNOWN, \n\tThe program experienced an internal or input error\n\n"
L"If a warning threshold is set but not a critical threshold, the critical\n"
L"threshold will be set to one greater than the set warning threshold.\n\n"
2014-11-06 15:17:08 +01:00
L"The \"possible-reboot\" option is not recommended since this true for nearly\n"
L"every update."
, progName);
2015-03-23 13:07:02 +01:00
std::cout << '\n';
2014-11-06 15:17:08 +01:00
return 0;
} if (vm.count("version")) {
2015-03-23 13:07:02 +01:00
std::cout << "Version: " << VERSION << '\n';
2014-11-06 15:17:08 +01:00
return 0;
}
if(vm.count("warning"))
printInfo.warn = vm["warning"].as<int>();
if (vm.count("critical"))
printInfo.crit = vm["critical"].as<int>();
else if (vm.count("warning"))
printInfo.crit = printInfo.warn + 1;
2018-02-01 08:45:09 +01:00
printInfo.careForCanRequest = vm.count("possible-reboot") > 0;
printInfo.ignoreReboot = vm.count("no-reboot-critical") > 0;
2014-11-06 15:17:08 +01:00
2018-02-01 08:45:09 +01:00
l_Debug = vm.count("debug") > 0;
2014-11-06 15:17:08 +01:00
return -1;
}
2018-02-01 08:45:09 +01:00
static int printOutput(const printInfoStruct& printInfo)
{
2018-02-01 08:45:09 +01:00
if (l_Debug)
2015-03-23 13:07:02 +01:00
std::wcout << L"Constructing output string" << '\n';
state state = OK;
2015-03-23 13:07:02 +01:00
std::wstring output = L"UPDATE ";
if (printInfo.numUpdates >= printInfo.warn && printInfo.warn)
state = WARNING;
if ((printInfo.reboot && !printInfo.ignoreReboot) || (printInfo.numUpdates >= printInfo.crit && printInfo.crit))
state = CRITICAL;
switch (state) {
case OK:
output.append(L"OK ");
break;
case WARNING:
output.append(L"WARNING ");
break;
case CRITICAL:
output.append(L"CRITICAL ");
break;
}
output.append(std::to_wstring(printInfo.numUpdates));
if (printInfo.reboot) {
output.append(L"; ");
output.append(std::to_wstring(printInfo.reboot));
output.append(L" NEED REBOOT ");
}
std::wcout << output << L" | 'update'=" << printInfo.numUpdates << L";"
2015-03-23 13:07:02 +01:00
<< printInfo.warn << L";" << printInfo.crit << L";0;" << '\n';
return state;
}
2018-02-01 08:45:09 +01:00
static int check_update(printInfoStruct& printInfo)
2014-11-06 15:17:08 +01:00
{
2018-02-01 08:45:09 +01:00
if (l_Debug)
2015-03-23 13:07:02 +01:00
std::wcout << "Initializing COM library" << '\n';
2014-11-06 15:17:08 +01:00
CoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
ISearchResult *pResult;
IUpdateSession *pSession;
IUpdateSearcher *pSearcher;
BSTR criteria = NULL;
2014-11-06 15:17:08 +01:00
HRESULT err;
2018-02-01 08:45:09 +01:00
if (l_Debug)
2015-03-23 13:07:02 +01:00
std::wcout << "Creating UpdateSession and UpdateSearcher" << '\n';
2018-02-01 08:45:09 +01:00
CoCreateInstance(CLSID_UpdateSession, NULL, CLSCTX_INPROC_SERVER, IID_IUpdateSession, (void **)&pSession);
2014-11-06 15:17:08 +01:00
pSession->CreateUpdateSearcher(&pSearcher);
/*
2018-02-01 08:45:09 +01:00
* IsInstalled = 0: All updates, including languagepacks and features
* BrowseOnly = 0: No features or languagepacks, security and unnamed
* BrowseOnly = 1: Nothing, broken
* RebootRequired = 1: Reboot required
*/
2014-11-06 15:17:08 +01:00
criteria = SysAllocString(CRITERIA);
// https://msdn.microsoft.com/en-us/library/windows/desktop/aa386526%28v=vs.85%29.aspx
// https://msdn.microsoft.com/en-us/library/ff357803%28v=vs.85%29.aspx
2014-11-06 15:17:08 +01:00
2018-02-01 08:45:09 +01:00
if (l_Debug)
std::wcout << L"Querying updates from server" << '\n';
err = pSearcher->Search(criteria, &pResult);
if (!SUCCEEDED(err))
2014-11-06 15:17:08 +01:00
goto die;
SysFreeString(criteria);
IUpdateCollection *pCollection;
IUpdate *pUpdate;
LONG updateSize;
pResult->get_Updates(&pCollection);
pCollection->get_Count(&updateSize);
if (updateSize == 0)
return -1;
printInfo.numUpdates = updateSize;
2018-02-01 08:45:09 +01:00
// printInfo.important = printInfo.warn;
2014-11-06 15:17:08 +01:00
IInstallationBehavior *pIbehav;
InstallationRebootBehavior updateReboot;
2014-11-06 16:36:42 +01:00
for (LONG i = 0; i < updateSize; i++) {
2014-11-06 15:17:08 +01:00
pCollection->get_Item(i, &pUpdate);
2018-02-01 08:45:09 +01:00
if (l_Debug) {
2015-03-23 13:07:02 +01:00
std::wcout << L"Checking reboot behaviour of update number " << i << '\n';
}
2014-11-06 15:17:08 +01:00
pUpdate->get_InstallationBehavior(&pIbehav);
pIbehav->get_RebootBehavior(&updateReboot);
if (updateReboot == irbAlwaysRequiresReboot) {
printInfo.reboot++;
2018-02-01 08:45:09 +01:00
if (l_Debug)
2015-03-23 13:07:02 +01:00
std::wcout << L"It requires reboot" << '\n';
2014-11-06 15:17:08 +01:00
continue;
}
if (printInfo.careForCanRequest && updateReboot == irbCanRequestReboot) {
2018-02-01 08:45:09 +01:00
if (l_Debug)
2015-03-23 13:07:02 +01:00
std::wcout << L"It requires reboot" << '\n';
printInfo.reboot++;
}
2014-11-06 15:17:08 +01:00
}
2018-02-01 08:45:09 +01:00
if (l_Debug)
2015-03-23 13:07:02 +01:00
std::wcout << L"Cleaning up and returning" << '\n';
SysFreeString(criteria);
CoUninitialize();
return -1;
2014-11-06 15:17:08 +01:00
die:
2018-02-01 08:45:09 +01:00
printErrorInfo(err);
CoUninitialize();
2014-11-06 15:17:08 +01:00
if (criteria)
SysFreeString(criteria);
return 3;
2015-09-18 13:04:09 +02:00
}
2018-02-01 08:45:09 +01:00
int wmain(int argc, WCHAR **argv)
{
printInfoStruct printInfo;
po::variables_map vm;
int ret = parseArguments(argc, argv, vm, printInfo);
if (ret != -1)
return ret;
ret = check_update(printInfo);
if (ret != -1)
return ret;
return printOutput(printInfo);
}