Subversion Repositories vnag

Rev

Rev 2 | Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. <?php /* <ViaThinkSoftSignature>
  2. JvUe2EqrSTpzUAa69aGVuvQPVhC4dS9OgSJw+lNJLLFBnB10I8C8EVE5DcrC1/bQ+
  3. uF7qNulGCHJktHv8GEUhS79S7VzsuwFo8N1GXxRuanRlk3uCrPtOx8kvgdUesL8dm
  4. fCKQAxGHauSogngnj3qyN6PvcKbcBpp+oFzzQvOJrlb3osfKMcaAtJP1k8UYaNvpd
  5. T+Osi7jEe6sxRIH4c8iosSumIMHC763S0ngYMFk6i4tzHiyXr3QsfH9afKiVCX+8F
  6. /Q9zlj83VHNRsJYFk/z83R74nK8ZEmOWqUtlC3WaHN5ieNwOfwgjCQQP6QBOk/Eih
  7. VvBuT/RXlZxEpzkzkpevkGfPK0c21XFHFmni6zhMx950oKY3lUXhvjesORZ+wVGN7
  8. CVi/ZjjoP0OAqT0dkl9X9t8LA2zIcN8qcq7kfd1T4ySbu88trlmoM4TM8/JE75B7X
  9. H/UwsqxX+aG1pqwy9Ea9IkvCRTD1y80bp4HMrrEhStw70j0xPJMB/IxRRQjVoCajN
  10. 4ABpPpVk5cibj3/KLsWDSSu0PkXqkWBi1i1D+PZvDW/pqPTHLkd4wxj+dLp76kAga
  11. OZ/xKJ6WNXS+bFd95RjURZaOoVYtwSION0tqqtNXTugmnDcrofSAFz+0+ccdLZKXX
  12. jlqLHs042ZGZCHW76hjvneraHqpM9svGorm2i3ka88nCG72ssNIaGfEGiVIzneSNi
  13. DHzmL5Qb9YLMa2bSH6CEgYmsaVtYmnwxEAPe2fq73/7pAdLXxRznuu5FbVGkjXXF3
  14. MjOMEX+EKmIrtaVWvL6ny+EvAI0BYymuuk2H5fvDMzOIGtsAt3whjR2khF/FF1xUl
  15. s5WgvE7lM6PQftgI11EHNjgjV5EPstThMHuLWbl8GlMCktG/gS8PMJM2arN7VL1NP
  16. jDvJ3wath3kEUBZxfP0k1C7FhrL12I3PLy931uPMRtFH7em7zmLe76sYmgludGkR1
  17. W5SZCRXwjk2T8q/fOGV3Ra334cr4ix2gw/EjTK1Ojtlidt3qYeKde1N/WK+n2kihO
  18. eMjNj28r6l/0ysF5AYL42ZujJnMyyIiOIDEerYNKZKg9+Q5/6fCrTmItuIp0x2SqW
  19. 29b4fwtMFoPXN6a+XB/f09NTjnZ56tsG3EY7AJHGKZ9MjTvedrJ/cch1wr6LuD6eT
  20. aHlf3zFK3Rgzyp/ixZqjVA4zjSrT/xQnoymLp7PjTK8tKcCOFxm2eJ+u3tsdg/Uka
  21. Xylt+XPr0/QEXhKheAjug2Ylcqf1Aj4LH/WYVrZcUGAFIH/4Bzy7JEI+KRiN9MO3S
  22. gSlzEzaQwfXnvm9rMhGawsgbapsRMpAbNDr9qfMO8iSgKy0SBi+16ao0H4bNxPgM6
  23. w==
  24. </ViaThinkSoftSignature> */ ?>
  25. <?php
  26.  
  27. /*
  28.  * VNag - Nagios Framework for PHP
  29.  * Developed by Daniel Marschall, ViaThinkSoft <www.viathinksoft.com>
  30.  * Licensed under the terms of the Apache 2.0 license
  31.  *
  32.  * Revision 2018-07-16
  33.  */
  34.  
  35. declare(ticks=1);
  36.  
  37. class X509ExpireCheck extends VNag {
  38.         protected $argFiles = null;
  39.  
  40.         public function __construct() {
  41.                 parent::__construct();
  42.  
  43.                 $this->registerExpectedStandardArguments('Vhtwcv');
  44.  
  45.                 $this->getHelpManager()->setPluginName('check_x509_expire');
  46.                 $this->getHelpManager()->setVersion('1.0');
  47.                 $this->getHelpManager()->setShortDescription('This plugin checks X.509 (PEM) files and warns if certificates are about to expire.');
  48.                 $this->getHelpManager()->setCopyright('Copyright (C) 2011-$CURYEAR$ Daniel Marschall, ViaThinkSoft.');
  49.                 $this->getHelpManager()->setSyntax('$SCRIPTNAME$ [-v] -w <warnSeconds>s -c <critSeconds>s -f "[#]<mask>" [-f "[#]<mask>" [...]]');
  50.                 $this->getHelpManager()->setFootNotes('If you encounter bugs, please contact ViaThinkSoft at www.viathinksoft.com');
  51.  
  52.                 // Individual (non-standard) arguments:
  53.                 $this->addExpectedArgument($this->argFiles = new VNagArgument('f', 'file', VNagArgument::VALUE_REQUIRED, 'mask', 'The files to be checked. This argument can be used multiple times. Wilcards may be used but MUST be passed as string only (not resolved by the Shell). There are two possible checking modes: If you put a # in front of the file mask, only the oldest file of each group will be checked (use this mode e.g. if you have a directory which contains old backups of certificates beside the current working certificate). Otherwise, all files of the file group are checked.'));
  54.  
  55.                 // In this context, when the user writes "-w 60s" then he actually means "-w @~:60s" or "-w 60s:~", so these commands allow this notation:
  56.                 $this->warningSingleValueRangeBehaviors[0]  = self::SINGLEVALUE_RANGE_VAL_LT_X_BAD;
  57.                 $this->criticalSingleValueRangeBehaviors[0] = self::SINGLEVALUE_RANGE_VAL_LT_X_BAD;
  58.         }
  59.  
  60.         private static function humanFriendlyTimeLeft($secs) {
  61.                 $out = array();
  62.  
  63.                 if ($expired = $secs < 0) $secs *= -1;
  64.  
  65.                 $years = floor($secs / 60 / 60 / 24 / 365);
  66.                 if ($years > 0) $out[] = $years == 1 ? "$years year" : "$years years";
  67.  
  68.                 $days = floor($secs / 60 / 60 / 24) % 365;
  69.                 if ($days > 0) $out[] = $days == 1 ? "$days day" : "$days days";
  70.  
  71.                 $hours = floor($secs / 60 / 60) % 24;
  72.                 if ($hours > 0) $out[] = $hours == 1 ? "$hours hour" : "$hours hours";
  73.  
  74.                 $minutes = floor($secs / 60) % 60;
  75.                 if ($minutes > 0) $out[] = $minutes == 1 ? "$minutes minute" : "$minutes minutes";
  76.  
  77.                 $seconds = $secs % 60;
  78.                 if ($seconds > 0) $out[] = $seconds == 1 ? "$seconds second" : "$seconds seconds";
  79.  
  80.                 return ($expired ? 'EXPIRED SINCE ' : '').implode(", ", $out).($expired ? '' : ' left');
  81.         }
  82.  
  83.         private static function timeLeft($pemFile) {
  84.                 $out = array();
  85.  
  86.                 // TODO: Call PHP's openssl functions instead
  87.                 exec("openssl x509 -in ".escapeshellarg($pemFile)." -noout -text | grep \"Not After\" | cut -d ':' -f 2-", $out, $code); // TODO: check $code
  88.                 if ($code != 0) {
  89.                         throw new VNagException("Error calling openssl!");
  90.                 }
  91.  
  92.                 $tim = strtotime($out[0]);
  93.                 return $tim - time();
  94.         }
  95.  
  96.         protected function cbRun($optional_args=array()) {
  97.                 $this->argFiles->require();
  98.  
  99.                 $countFilesTotal = 0;
  100.                 $countFilesCrit = 0;
  101.                 $countFilesWarn = 0;
  102.  
  103.                 $fileGroupMasks = $this->argFiles->getValue();
  104.                 if (!is_array($fileGroupMasks)) $fileGroupMasks = array($fileGroupMasks);
  105.                 foreach ($fileGroupMasks as $fileGroupMask) {
  106.                         if (substr($fileGroupMask, 0, 1) === '#') {
  107.                                 $fileGroupMask = substr($fileGroupMask, 1); // remove #
  108.  
  109.                                 // Mode 1: Only the youngest file of each group is checked.
  110.                                 // You can use this mode e.g. if you have a folder with downloaded files
  111.                                 // and you want to check if a downloading-script is still downloading
  112.                                 // new files regularly.
  113.  
  114.                                 $files = glob($fileGroupMask);
  115.                                 if (count($files) == 0) continue;
  116.  
  117.                                 $minTimeLeft = null;
  118.                                 foreach ($files as $file) {
  119.                                         $minTimeLeft = is_null($minTimeLeft) ? filemtime($file) : min($minTimeLeft, self::timeLeft($file));
  120.                                 }
  121.  
  122.                                 $countFilesTotal++;
  123.                                 if ($this->checkAgainstCriticalRange($minTimeLeft.'s', false, true)) {
  124.                                         $countFilesCrit++;
  125.                                         $this->addVerboseMessage("File group '$fileGroupMask' oldest file: ".self::humanFriendlyTimeLeft($minTimeLeft)." (Critical)\n", VNag::VERBOSITY_SUMMARY);
  126.                                 } else if ($this->checkAgainstWarningRange($minTimeLeft.'s', false, true)) {
  127.                                         $countFilesWarn++;
  128.                                         $this->addVerboseMessage("File group '$fileGroupMask' oldest file: ".self::humanFriendlyTimeLeft($minTimeLeft)." (Warning)\n", VNag::VERBOSITY_SUMMARY);
  129.                                 } else {
  130.                                         if (($this->getArgumentHandler()->getArgumentObj('w')->available()) || ($this->getArgumentHandler()->getArgumentObj('c')->available())) {
  131.                                                 $this->addVerboseMessage("File group '$fileGroupMask' oldest file: ".self::humanFriendlyTimeLeft($minTimeLeft)." (OK)\n", VNag::VERBOSITY_ADDITIONAL_INFORMATION);
  132.                                         } else {
  133.                                                 $this->addVerboseMessage("File group '$fileGroupMask' oldest file: ".self::humanFriendlyTimeLeft($minTimeLeft)."\n", VNag::VERBOSITY_ADDITIONAL_INFORMATION);
  134.                                         }
  135.                                 }
  136.                         } else {
  137.                                 // Mode 2: All files of each group are checked.
  138.  
  139.                                 $files = glob($fileGroupMask);
  140.                                 if (count($files) == 0) continue;
  141.  
  142.                                 foreach ($files as $file) {
  143.                                         $timeLeft = self::timeLeft($file);
  144.                                         $countFilesTotal++;
  145.                                         if ($this->checkAgainstCriticalRange($timeLeft.'s', false, true)) {
  146.                                                 $countFilesCrit++;
  147.                                                 $this->addVerboseMessage("File $file: ".self::humanFriendlyTimeLeft($timeLeft)." (Critical)\n", VNag::VERBOSITY_SUMMARY);
  148.                                         } else if ($this->checkAgainstWarningRange($timeLeft.'s', false, true)) {
  149.                                                 $countFilesWarn++;
  150.                                                 $this->addVerboseMessage("File $file: ".self::humanFriendlyTimeLeft($timeLeft)." (Warning)\n", VNag::VERBOSITY_SUMMARY);
  151.                                         } else {
  152.                                                 if (($this->getArgumentHandler()->getArgumentObj('w')->available()) || ($this->getArgumentHandler()->getArgumentObj('c')->available())) {
  153.                                                         $this->addVerboseMessage("File $file: ".self::humanFriendlyTimeLeft($timeLeft)." (OK)\n", VNag::VERBOSITY_ADDITIONAL_INFORMATION);
  154.                                                 } else {
  155.                                                         $this->addVerboseMessage("File $file: ".self::humanFriendlyTimeLeft($timeLeft)."\n", VNag::VERBOSITY_ADDITIONAL_INFORMATION);
  156.                                                 }
  157.                                         }
  158.                                 }
  159.                         }
  160.                 }
  161.  
  162.                 $msg = array();
  163.                 $msg[] = "Checked $countFilesTotal certificates";
  164.                 if ($this->getArgumentHandler()->getArgumentObj('w')->available()) $msg[] = "$countFilesWarn are in warning time range";
  165.                 if ($this->getArgumentHandler()->getArgumentObj('c')->available()) $msg[] = "$countFilesCrit are in critical time range";
  166.                 $msg = implode(", ", $msg);
  167.  
  168.                 $this->setHeadLine($msg);
  169.         }
  170. }
  171.