icinga2/plugins/check_disk.cpp

444 lines
13 KiB
C++
Raw 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>
#include <vector>
#include <windows.h>
2014-11-06 15:17:08 +01:00
#include <set>
#include <iostream>
#include <functional>
2018-02-01 08:45:09 +01:00
#include <shlwapi.h>
#include <math.h>
2014-11-06 15:17:08 +01:00
#define VERSION 1.1
2014-11-06 15:17:08 +01:00
namespace po = boost::program_options;
2018-02-01 08:45:09 +01:00
struct drive
{
std::wstring name;
double cap;
double free;
double used;
drive(std::wstring p)
: name(p)
{ }
};
2018-02-01 08:45:09 +01:00
struct printInfoStruct
2014-11-06 15:17:08 +01:00
{
2018-02-01 08:45:09 +01:00
threshold warn;
threshold crit;
std::vector<std::wstring> drives;
std::vector<std::wstring> exclude_drives;
Bunit unit;
bool showUsed{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 check_drives(std::vector<drive>& vDrives, std::vector<std::wstring>& vExclude_Drives)
{
DWORD dwResult, dwSize = 0, dwVolumePathNamesLen = MAX_PATH + 1;
WCHAR szLogicalDrives[1024], szVolumeName[MAX_PATH], *szVolumePathNames = NULL;
HANDLE hVolume = NULL;
std::wstring wsLogicalDrives;
size_t volumeNameEnd = 0;
2014-11-06 15:17:08 +01:00
2018-02-01 08:45:09 +01:00
std::set<std::wstring> sDrives;
2018-02-01 08:45:09 +01:00
if (l_Debug)
std::wcout << "Getting logic drive string (includes network drives)\n";
2017-12-13 12:54:14 +01:00
2018-02-01 08:45:09 +01:00
dwResult = GetLogicalDriveStrings(MAX_PATH, szLogicalDrives);
if (dwResult > MAX_PATH)
goto die;
if (l_Debug)
std::wcout << "Splitting string into single drive names\n";
2014-11-06 15:17:08 +01:00
2018-02-01 08:45:09 +01:00
LPTSTR szSingleDrive = szLogicalDrives;
while (*szSingleDrive) {
std::wstring drname = szSingleDrive;
sDrives.insert(drname);
szSingleDrive += wcslen(szSingleDrive) + 1;
if (l_Debug)
std::wcout << "Got: " << drname << '\n';
}
if (l_Debug)
std::wcout << "Getting volume mountpoints (includes NTFS folders)\n"
<< "Getting first volume\n";
hVolume = FindFirstVolume(szVolumeName, MAX_PATH);
if (hVolume == INVALID_HANDLE_VALUE)
goto die;
if (l_Debug)
std::wcout << "Traversing through list of drives\n";
while (GetLastError() != ERROR_NO_MORE_FILES) {
if (l_Debug)
std::wcout << "Path name for " << szVolumeName << "= \"";
volumeNameEnd = wcslen(szVolumeName) - 1;
szVolumePathNames = new WCHAR[dwVolumePathNamesLen];
while (!GetVolumePathNamesForVolumeName(szVolumeName, szVolumePathNames, dwVolumePathNamesLen,
&dwVolumePathNamesLen)) {
if (GetLastError() != ERROR_MORE_DATA)
break;
delete[] szVolumePathNames;
szVolumePathNames = new WCHAR[dwVolumePathNamesLen];
}
if (l_Debug)
std::wcout << szVolumePathNames << "\"\n";
sDrives.insert(std::wstring(szVolumePathNames));
FindNextVolume(hVolume, szVolumeName, MAX_PATH);
}
if (l_Debug)
std::wcout << "Creating vector from found volumes, ignoring CD drives etc.:\n";
for (const auto& driveName : sDrives) {
unsigned int type = GetDriveType(driveName.c_str());
if (type == DRIVE_FIXED || type == DRIVE_REMOTE) {
if (l_Debug)
std::wcout << "\t" << driveName << '\n';
vDrives.push_back(drive(driveName));
}
}
FindVolumeClose(hVolume);
if (szVolumePathNames)
delete[] szVolumePathNames;
if (l_Debug)
std::wcout << "Removing excluded drives\n";
for (const auto& driveName : vExclude_Drives) {
vDrives.erase(std::remove_if(vDrives.begin(), vDrives.end(),
[&driveName](const drive& d) { return d.name == driveName + L'\\'; }),
vDrives.end());
}
return -1;
die:
if (hVolume)
FindVolumeClose(hVolume);
printErrorInfo();
return 3;
}
static int check_drives(std::vector<drive>& vDrives, printInfoStruct& printInfo)
{
if (l_Debug)
std::wcout << "Removing excluded drives from user input drives\n";
for (const auto& driveName : printInfo.exclude_drives) {
printInfo.drives.erase(std::remove(printInfo.drives.begin(), printInfo.drives.end(), driveName),
printInfo.drives.end());
}
if (l_Debug)
std::wcout << "Parsing user input drive names\n";
for (auto& driveName : printInfo.drives) {
if (driveName.at(driveName.length() - 1) != *L"\\")
driveName.append(L"\\");
if (std::wstring::npos == driveName.find(L":\\")) {
std::wcout << "A \":\" is required after the drive name of " << driveName << '\n';
2014-11-06 15:17:08 +01:00
return 3;
}
2018-02-01 08:45:09 +01:00
if (l_Debug)
std::wcout << "Added " << driveName << '\n';
vDrives.emplace_back(driveName);
2014-11-06 15:17:08 +01:00
}
2018-02-01 08:45:09 +01:00
return -1;
}
static bool getDriveSpaceValues(drive& drive, const Bunit& unit)
{
if (l_Debug)
std::wcout << "Getting free and used disk space for drive " << drive.name << '\n';
ULARGE_INTEGER tempFree, tempTotal;
if (!GetDiskFreeSpaceEx(drive.name.c_str(), NULL, &tempTotal, &tempFree))
return false;
ULARGE_INTEGER tempUsed;
tempUsed.QuadPart = tempTotal.QuadPart - tempFree.QuadPart;
if (l_Debug)
std::wcout << "\tcap: " << tempFree.QuadPart << '\n';
drive.cap = round((tempTotal.QuadPart / pow(1024.0, unit)));
if (l_Debug)
std::wcout << "\tAfter conversion: " << drive.cap << '\n'
<< "\tfree: " << tempFree.QuadPart << '\n';
drive.free = round((tempFree.QuadPart / pow(1024.0, unit)));
if (l_Debug)
std::wcout << "\tAfter conversion: " << drive.free << '\n'
<< "\tused: " << tempUsed.QuadPart << '\n';
drive.used = round((tempUsed.QuadPart / pow(1024.0, unit)));
if (l_Debug)
std::wcout << "\tAfter conversion: " << drive.used << '\n' << '\n';
return true;
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("Options");
desc.add_options()
2015-03-23 13:07:02 +01:00
("help,h", "Print usage message and exit")
("version,V", "Print version and exit")
("debug,d", "Verbose/Debug output")
2015-03-23 13:07:02 +01:00
("warning,w", po::wvalue<std::wstring>(), "Warning threshold")
("critical,c", po::wvalue<std::wstring>(), "Critical threshold")
("path,p", po::wvalue<std::vector<std::wstring>>()->multitoken(), "Declare explicitly which drives to check (default checks all)")
("exclude_device,x", po::wvalue<std::vector<std::wstring>>()->multitoken(), "Exclude these drives from check")
("exclude-type,X", po::wvalue<std::vector<std::wstring>>()->multitoken(), "Exclude partition types (ignored)")
("iwarning,W", po::wvalue<std::wstring>(), "Warning threshold for inodes (ignored)")
("icritical,K", po::wvalue<std::wstring>(), "Critical threshold for inodes (ignored)")
("unit,u", po::wvalue<std::wstring>(), "Assign unit possible are: B, kB, MB, GB, TB")
("show-used,U", "Show used space instead of the free space")
("megabytes,m", "use megabytes, overridden by -unit")
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)
2014-11-06 15:17:08 +01:00
.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;
}
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 disk space usage.\n"
2014-11-06 15:17:08 +01:00
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"\nIt will then output a string looking something like this:\n\n"
2015-03-06 12:14:09 +01:00
L"\tDISK WARNING 29GB | disk=29GB;50%%;5;0;120\n\n"
2014-11-06 15:17:08 +01:00
L"\"DISK\" being the type of the check, \"WARNING\" the returned status\n"
L"and \"23.8304%%\" is the returned value.\n"
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"
2014-11-06 15:17:08 +01:00
L"This program will also print out additional performance data disk by disk\n\n"
2014-11-06 16:36:42 +01:00
L"%s' exit codes denote the following:\n\n"
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\n"
L" 3\tUNKNOWN, \n\tThe program experienced an internal or input error\n\n"
2014-11-06 15:17:08 +01:00
L"Threshold syntax:\n\n"
L"-w THRESHOLD\n"
L"warn if threshold is broken, which means VALUE < THRESHOLD\n\n"
2014-11-06 15:17:08 +01:00
L"-w !THRESHOLD\n"
L"inverts threshold check, VALUE > THRESHOLD (analogous to above)\n\n"
2014-11-06 15:17:08 +01:00
L"-w [THR1-THR2]\n"
L"warn is VALUE is inside the range spanned by THR1 and THR2\n\n"
L"-w ![THR1-THR2]\n"
L"warn if VALUE is outside the range spanned by THR1 and THR2\n\n"
L"-w THRESHOLD%%\n"
L"if the plugin accepts percentage based thresholds those will be used.\n"
L"Does nothing if the plugin does not accept percentages, or only uses\n"
L"percentage thresholds. Ranges can be used with \"%%\", but both range values need\n"
L"to end with a percentage sign.\n\n"
L"All of these options work with the critical threshold \"-c\" too."
, 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
if (vm.count("warning")) {
try {
2015-03-23 13:07:02 +01:00
printInfo.warn = threshold(vm["warning"].as<std::wstring>());
2018-02-01 08:45:09 +01:00
} catch (const std::invalid_argument& e) {
2015-03-23 13:07:02 +01:00
std::cout << e.what() << '\n';
return 3;
}
}
if (vm.count("critical")) {
try {
2015-03-23 13:07:02 +01:00
printInfo.crit = threshold(vm["critical"].as<std::wstring>());
2018-02-01 08:45:09 +01:00
} catch (const std::invalid_argument& e) {
2015-03-23 13:07:02 +01:00
std::cout << e.what() << '\n';
return 3;
}
}
2017-12-13 12:54:14 +01:00
if (vm.count("path"))
2015-03-23 13:07:02 +01:00
printInfo.drives = vm["path"].as<std::vector<std::wstring>>();
2014-11-06 15:17:08 +01:00
if (vm.count("exclude_device"))
printInfo.exclude_drives = vm["exclude_device"].as<std::vector<std::wstring>>();
2014-11-06 16:36:42 +01:00
if (vm.count("unit")) {
try {
2015-03-23 13:07:02 +01:00
printInfo.unit = parseBUnit(vm["unit"].as<std::wstring>());
2018-02-01 08:45:09 +01:00
} catch (const std::invalid_argument&) {
2015-03-23 13:07:02 +01:00
std::wcout << "Unknown unit Type " << vm["unit"].as<std::wstring>() << '\n';
2014-11-06 16:36:42 +01:00
return 3;
}
} else {
if (vm.count("megabytes"))
printInfo.unit = BunitMB;
else
printInfo.unit = BunitB;
}
2014-11-06 16:36:42 +01:00
2017-12-14 08:47:04 +01:00
printInfo.showUsed = vm.count("show-used") > 0;
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(printInfoStruct& printInfo, std::vector<drive>& vDrives)
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 << "Constructing output string\n";
2014-11-06 15:17:08 +01:00
2015-03-23 13:07:02 +01:00
std::vector<std::wstring> wsDrives, wsPerf;
std::wstring unit = BunitStr(printInfo.unit);
2014-11-06 15:17:08 +01:00
state state = OK;
2015-03-23 13:07:02 +01:00
std::wstring output = L"DISK OK - free space:";
2014-11-06 15:17:08 +01:00
2017-07-24 09:36:39 +02:00
if (printInfo.showUsed)
output = L"DISK OK - used space:";
2017-12-13 12:54:14 +01:00
double tCap = 0, tFree = 0, tUsed = 0;
2015-03-23 13:07:02 +01:00
for (std::vector<drive>::iterator it = vDrives.begin(); it != vDrives.end(); it++) {
tCap += it->cap;
tFree += it->free;
tUsed += it->used;
2018-02-01 08:45:09 +01:00
if (printInfo.showUsed) {
wsDrives.push_back(it->name + L" " + removeZero(it->used) + L" " + unit + L" (" +
removeZero(std::round(it->used / it->cap * 100.0)) + L"%); ");
wsPerf.push_back(L" " + it->name + L"=" + removeZero(it->used) + unit + L";" +
printInfo.warn.pString(it->cap) + L";" + printInfo.crit.pString(it->cap) + L";0;"
+ removeZero(it->cap));
if (printInfo.crit.set && !printInfo.crit.rend(it->used, it->cap))
state = CRITICAL;
if (state == OK && printInfo.warn.set && !printInfo.warn.rend(it->used, it->cap))
state = WARNING;
2018-02-01 08:45:09 +01:00
} else {
wsDrives.push_back(it->name + L" " + removeZero(it->free) + L" " + unit + L" (" +
removeZero(std::round(it->free / it->cap * 100.0)) + L"%); ");
wsPerf.push_back(L" '" + it->name + L"'=" + removeZero(it->free) + unit + L";" +
printInfo.warn.pString(it->cap) + L";" + printInfo.crit.pString(it->cap) + L";0;"
+ removeZero(it->cap));
2018-02-01 08:45:09 +01:00
if (printInfo.crit.rend(it->free, it->cap))
state = CRITICAL;
if (state == OK && printInfo.warn.rend(it->free, it->cap))
state = WARNING;
}
2014-11-06 15:17:08 +01:00
}
2014-11-06 16:36:42 +01:00
if (state == WARNING) {
output = L"DISK WARNING - free space:";
2017-12-13 12:54:14 +01:00
if (printInfo.showUsed)
output = L"DISK WARNING - used space:";
}
2014-11-06 15:17:08 +01:00
if (state == CRITICAL) {
output = L"DISK CRITICAL - free space:";
2014-11-06 15:17:08 +01:00
if (printInfo.showUsed)
output = L"DISK CRITICAL - used space:";
}
2015-03-23 13:07:02 +01:00
std::wcout << output;
2018-02-01 08:45:09 +01:00
if (vDrives.size() > 1 && printInfo.showUsed) {
std::wcout << "Total " << (printInfo.showUsed ? tUsed : tFree) << unit
<< " (" << removeZero(std::round(tUsed / tCap * 100.0)) << "%); ";
}
2018-02-01 08:45:09 +01:00
for (const auto& driveName : wsDrives)
std::wcout << driveName;
2017-07-24 09:36:39 +02:00
2015-03-23 13:07:02 +01:00
std::wcout << "|";
2018-02-01 08:45:09 +01:00
for (const auto& perf : wsPerf)
std::wcout << perf;
2015-03-23 13:07:02 +01:00
std::wcout << '\n';
2018-02-01 08:45:09 +01:00
2014-11-06 15:17:08 +01:00
return state;
}
2018-02-01 08:45:09 +01:00
int wmain(int argc, WCHAR **argv)
2014-11-06 15:17:08 +01:00
{
2018-02-01 08:45:09 +01:00
std::vector<drive> vDrives;
printInfoStruct printInfo;
po::variables_map vm;
2018-02-01 08:45:09 +01:00
int ret;
2018-02-01 08:45:09 +01:00
ret = parseArguments(argc, argv, vm, printInfo);
if (ret != -1)
return ret;
2018-02-01 08:45:09 +01:00
printInfo.warn.legal = !printInfo.warn.legal;
printInfo.crit.legal = !printInfo.crit.legal;
2014-11-06 15:17:08 +01:00
2018-02-01 08:45:09 +01:00
if (printInfo.drives.empty())
ret = check_drives(vDrives, printInfo.exclude_drives);
else
ret = check_drives(vDrives, printInfo);
2014-11-06 15:17:08 +01:00
2018-02-01 08:45:09 +01:00
if (ret != -1)
return ret;
2018-02-01 08:45:09 +01:00
for (std::vector<drive>::iterator it = vDrives.begin(); it != vDrives.end(); ++it) {
if (!getDriveSpaceValues(*it, printInfo.unit)) {
std::wcout << "Failed to access drive at " << it->name << '\n';
return 3;
}
2014-11-06 15:17:08 +01:00
}
2018-02-01 08:45:09 +01:00
return printOutput(printInfo, vDrives);
}