check_xbps.py 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. #!/usr/bin/env python2
  2. # -*- encoding: utf-8 -*-
  3. #####################################################################
  4. # (c) 2016-2017 by Sven Velt, Germany #
  5. # sven-mymonplugins@velt.biz #
  6. # #
  7. # This file is part of "velt.biz - My Monitoring Plugins" #
  8. # a fork of "team(ix) Monitoring Plugins" in 2015 #
  9. # URL: https://gogs.velt.biz/velt.biz/MyMonPlugins/ #
  10. # #
  11. # This file is free software: you can redistribute it and/or modify #
  12. # it under the terms of the GNU General Public License as published #
  13. # by the Free Software Foundation, either version 2 of the License, #
  14. # or (at your option) any later version. #
  15. # #
  16. # This file is distributed in the hope that it will be useful, but #
  17. # WITHOUT ANY WARRANTY; without even the implied warranty of #
  18. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
  19. # GNU General Public License for more details. #
  20. # #
  21. # You should have received a copy of the GNU General Public License #
  22. # along with this file. If not, see <http://www.gnu.org/licenses/>. #
  23. #####################################################################
  24. import subprocess
  25. import sys
  26. import time
  27. try:
  28. from monitoringplugin import MonitoringPlugin
  29. except ImportError:
  30. print '=========================='
  31. print 'AIKS! Python import error!'
  32. print '==========================\n'
  33. print 'Could not find "monitoringplugin.py"!\n'
  34. print 'Did you download "%s"' % os.path.basename(sys.argv[0])
  35. print 'without "monitoringplugin.py"?\n'
  36. print 'Please go back to'
  37. print 'https://gogs.velt.biz/velt.biz/MyMonPlugins and download it,'
  38. print 'or even better:'
  39. print 'get a full archive at http://gogs.velt.biz/velt.biz/MyMonPlugins/releases'
  40. print 'or a master snapshot at http://gogs.velt.biz/velt.biz/MyMonPlugins/archive/master.tar.gz\n'
  41. sys.exit(127)
  42. plugin = MonitoringPlugin(
  43. pluginname='check_xbps',
  44. tagforstatusline='XBPS',
  45. description='Check XBPS package manager for updates',
  46. version='0.1',
  47. )
  48. plugin.add_cmdlineoption('-P', '--path-xbps-install', 'xbps_install', 'full path to xbps-install', default='/usr/bin/xbps-install')
  49. plugin.add_cmdlineoption('-S', '--sync-repo-index', 'sync_repo_index', 'sync repository index files at startup', default=False, action='store_true')
  50. plugin.add_cmdlineoption('', '--ignore-sync-failure', 'fail_on_sync_failure', 'ignore repo index sync failures', default=True, action='store_false')
  51. plugin.add_cmdlineoption('', '--sudo', 'sudo', 'call "xbps-install" with sudo', default=False, action='store_true')
  52. plugin.add_cmdlineoption('', '--mymonplugins-testmode', 'mymonplugins_testmode', None, default=False, action='store_true')
  53. plugin.parse_cmdlineoptions()
  54. ##############################################################################
  55. ##### Testmode
  56. if plugin.options.mymonplugins_testmode:
  57. mymonplugins_testmode = {}
  58. mymonplugins_testmode['xbps-install -S'] = '''[*] Updating `https://repo.voidlinux.eu/current/x86_64-repodata' ...
  59. '''.split('\n')
  60. mymonplugins_testmode['xbps-install -un'] = '''elementary-1.17.1_1 remove x86_64 https://repo.voidlinux.eu/current 19821495 12302924
  61. bash-4.3.046_2 update x86_64 https://repo.voidlinux.eu/current 5019665 998440
  62. libllvm3.9-3.9.0_2 install x86_64 https://repo.voidlinux.eu/current 51052672 12480860
  63. linux4.7-4.7.4_1 install x86_64 https://repo.voidlinux.eu/current 61839987 55203908
  64. linux-4.7_1 update x86_64 https://repo.voidlinux.eu/current 624
  65. linux4.6-4.6.7_1 update x86_64 https://repo.voidlinux.eu/current 60995961 54434936
  66. lxc-2.0.4_1 update x86_64 https://repo.voidlinux.eu/current 1837102 468024'''.split('\n')
  67. ##############################################################################
  68. def run_command(cmdline, needs_sudo=False):
  69. tstart = time.time()
  70. if needs_sudo and plugin.options.sudo:
  71. new = ['sudo', '-n', '--']
  72. new.extend(cmdline)
  73. cmdline = new
  74. plugin.verbose(1, 'Running command line: %s' % subprocess.list2cmdline(cmdline))
  75. try:
  76. cmd = subprocess.Popen(
  77. cmdline,
  78. stdout = subprocess.PIPE,
  79. stderr = subprocess.PIPE
  80. )
  81. except OSError:
  82. plugin.back2nagios(plugin.RETURNCODE['UNKNOWN'], 'Could not execute command line: %s' % subprocess.list2cmdline(cmdline))
  83. (sout,serr) = cmd.communicate()
  84. plugin.verbose(2, 'Runtime %.3fs' % (time.time() - tstart, ) )
  85. sout = sout.rstrip().split('\n')
  86. if sout == ['']:
  87. sout = []
  88. serr = serr.rstrip().split('\n')
  89. if serr == ['']:
  90. serr = []
  91. return( (sout, serr, cmd.returncode,) )
  92. ##############################################################################
  93. if plugin.options.sync_repo_index:
  94. plugin.verbose(1, '-S/--sync_repo_index given')
  95. cmdline = [plugin.options.xbps_install, '-S',]
  96. (sout, serr, rc) = run_command(cmdline, needs_sudo=True)
  97. sout and plugin.verbose(3, sout, prefix='stdout: ')
  98. serr and plugin.verbose(3, serr, prefix='stderr: ')
  99. plugin.verbose(2, 'Return code: %d' % rc)
  100. if plugin.options.fail_on_sync_failure and (rc != 0 or 'ERROR:' in ' '.join(serr)):
  101. if 'Permission denied' in ' '.join(serr):
  102. plugin.back2nagios(plugin.RETURNCODE['CRITICAL'], 'Syncing of repository index files failed, permission denied. Do you need "--sudo"?', multiline=serr)
  103. plugin.back2nagios(plugin.RETURNCODE['CRITICAL'], 'Syncing of repository index files failed', multiline=serr)
  104. ##############################################################################
  105. cmdline = [plugin.options.xbps_install, '-un',]
  106. (sout, serr, rc) = run_command(cmdline)
  107. sout and plugin.verbose(3, sout, prefix='stdout: ')
  108. serr and plugin.verbose(3, serr, prefix='stderr: ')
  109. plugin.verbose(2, 'Return code: %d' % rc)
  110. if plugin.options.sudo and 'sudo: ' in ' '.join(serr):
  111. # Running with sudo
  112. if rc == 1:
  113. # sudo RC 1: a password is required
  114. plugin.back2nagios(plugin.RETURNCODE['CRITICAL'], ' '.join(serr))
  115. if rc == 8:
  116. # RC 8: Transaction aborted due to unresolved shlibs.
  117. plugin.back2nagios(plugin.RETURNCODE['WARNING'], serr[-1], serr[:-1])
  118. elif rc not in [0, 6]:
  119. # RC 0: Packages to update
  120. # RC 6: Package(s) already installed
  121. plugin.back2nagios(plugin.RETURNCODE['WARNING'], 'Unknown returncode "%s", please contact the author of plugin or open an issue!' % rc)
  122. action = {'remove':[], 'update':[], 'install':[], 'configure':[]}
  123. arch = {}
  124. repo = {}
  125. downby = 0L
  126. for line in sout:
  127. cols = line.split(' ')
  128. # Append package name to action type list
  129. try:
  130. action[cols[1]].append(cols[0])
  131. except KeyError:
  132. action[cols[1]] = [ cols[0], ]
  133. # Count per arch
  134. try:
  135. arch[cols[2]] += 1
  136. except KeyError:
  137. arch[cols[2]] = 1
  138. # Count per repo
  139. try:
  140. repo[cols[3]] += 1
  141. except KeyError:
  142. repo[cols[3]] = 1
  143. # Count bytes to download
  144. if len(cols) == 5:
  145. downby += long(cols[4])
  146. else:
  147. downby += long(cols[5])
  148. if len(sout) == 0:
  149. plugin.remember_check('Updates', plugin.RETURNCODE['OK'], 'Everything uptodate')
  150. else:
  151. out = []
  152. multiline = []
  153. for act in ['update', 'install', 'remove', 'configure']:
  154. pkgs = action.pop(act)
  155. pkgs.sort()
  156. l = len(pkgs)
  157. out.append('%s package%s to %s' % (l, l != 1 and 's' or '', act) )
  158. l and multiline.append('%s(%s): %s' % (act, l, ', '.join(pkgs)) )
  159. for act in action.keys():
  160. pkgs = action.pop(act)
  161. pkgs.sort()
  162. l = len(pkgs)
  163. out.append('%s package%s to %s' % (l, l != 1 and 's' or '', act) )
  164. l and multiline.append('%s(%s): %s' % (act, l, ', '.join(pkgs)) )
  165. out = ', '.join(out)
  166. if downby:
  167. out += ' - %s to download' % plugin.value_to_human_binary(downby, 'B')
  168. stats = 'Statistics: '
  169. for (k, v) in arch.iteritems():
  170. stats += '%sx %s, ' % (v, k)
  171. for (k, v) in repo.iteritems():
  172. stats += '%s from %s, ' % (v, k)
  173. multiline.append(stats[:-2])
  174. plugin.remember_check('Updates', plugin.RETURNCODE['CRITICAL'], out, multilineoutput=multiline)
  175. # Exit
  176. plugin.brain2output()
  177. plugin.exit()