0.38
This commit is contained in:
parent
239c896b61
commit
f748198e89
735
truenas-agent.py
Normal file
735
truenas-agent.py
Normal file
@ -0,0 +1,735 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: set fileencoding=utf-8:noet
|
||||||
|
|
||||||
|
## Copyright 2022 Bashclub
|
||||||
|
## BSD-2-Clause
|
||||||
|
##
|
||||||
|
## Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
||||||
|
##
|
||||||
|
## 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
||||||
|
##
|
||||||
|
## 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||||
|
##
|
||||||
|
## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
## THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
|
||||||
|
## BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
|
||||||
|
## GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||||
|
## LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
## save the file in any Datastore in a subfolder named check_mk_agent and start it Task -> Init/Shutdown Scripts as POSTINIT
|
||||||
|
## optional create a folder local in the check_mk_agent folder and execute local checks (subdirs for caching data supported)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
__VERSION__ = "0.38"
|
||||||
|
|
||||||
|
import sys
|
||||||
|
import os
|
||||||
|
import shlex
|
||||||
|
import glob
|
||||||
|
import re
|
||||||
|
import time
|
||||||
|
import json
|
||||||
|
import socket
|
||||||
|
import signal
|
||||||
|
import struct
|
||||||
|
import subprocess
|
||||||
|
import pwd
|
||||||
|
import threading
|
||||||
|
import ipaddress
|
||||||
|
import base64
|
||||||
|
import traceback
|
||||||
|
from cryptography import x509
|
||||||
|
from cryptography.hazmat.backends import default_backend as crypto_default_backend
|
||||||
|
from cryptography.hazmat.primitives import hashes
|
||||||
|
from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes
|
||||||
|
from cryptography.hazmat.primitives.kdf.pbkdf2 import PBKDF2HMAC
|
||||||
|
from xml.etree import cElementTree as ELementTree
|
||||||
|
from collections import Counter,defaultdict
|
||||||
|
from pprint import pprint
|
||||||
|
from socketserver import TCPServer,StreamRequestHandler
|
||||||
|
SCRIPTPATH = os.path.abspath(os.path.basename(__file__))
|
||||||
|
if os.path.islink(SCRIPTPATH):
|
||||||
|
SCRIPTPATH = os.path.realpath(os.readlink(SCRIPTPATH))
|
||||||
|
BASEDIR = os.path.dirname(SCRIPTPATH)
|
||||||
|
if BASEDIR.endswith("/bin"):
|
||||||
|
BASEDIR = BASEDIR[:-4]
|
||||||
|
MK_CONFDIR = os.path.join(BASEDIR,"etc")
|
||||||
|
LOCALDIR = os.path.join(BASEDIR,"local")
|
||||||
|
SPOOLDIR = os.path.join(BASEDIR,"spool")
|
||||||
|
|
||||||
|
class object_dict(defaultdict):
|
||||||
|
def __getattr__(self,name):
|
||||||
|
return self[name] if name in self else ""
|
||||||
|
|
||||||
|
def etree_to_dict(t):
|
||||||
|
d = {t.tag: {} if t.attrib else None}
|
||||||
|
children = list(t)
|
||||||
|
if children:
|
||||||
|
dd = object_dict(list)
|
||||||
|
for dc in map(etree_to_dict, children):
|
||||||
|
for k, v in dc.items():
|
||||||
|
dd[k].append(v)
|
||||||
|
d = {t.tag: {k:v[0] if len(v) == 1 else v for k, v in dd.items()}}
|
||||||
|
if t.attrib:
|
||||||
|
d[t.tag].update(('@' + k, v) for k, v in t.attrib.items())
|
||||||
|
if t.text:
|
||||||
|
text = t.text.strip()
|
||||||
|
if children or t.attrib:
|
||||||
|
if text:
|
||||||
|
d[t.tag]['#text'] = text
|
||||||
|
else:
|
||||||
|
d[t.tag] = text
|
||||||
|
return d
|
||||||
|
|
||||||
|
def pad_pkcs7(message,size=16):
|
||||||
|
_pad = size - (len(message) % size)
|
||||||
|
if type(message) == str:
|
||||||
|
return message + chr(_pad) * _pad
|
||||||
|
else:
|
||||||
|
return message + bytes([_pad]) * _pad
|
||||||
|
|
||||||
|
class checkmk_handler(StreamRequestHandler):
|
||||||
|
def handle(self):
|
||||||
|
with self.server._mutex:
|
||||||
|
try:
|
||||||
|
_strmsg = self.server.do_checks(remote_ip=self.client_address[0])
|
||||||
|
except Exception as e:
|
||||||
|
_strmsg = str(e).encode("utf-8")
|
||||||
|
try:
|
||||||
|
self.wfile.write(_strmsg)
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
|
class checkmk_checker(object):
|
||||||
|
_check_cache = {}
|
||||||
|
def encrypt(self,message,password='secretpassword'):
|
||||||
|
SALT_LENGTH = 8
|
||||||
|
KEY_LENGTH = 32
|
||||||
|
IV_LENGTH = 16
|
||||||
|
PBKDF2_CYCLES = 10_000
|
||||||
|
SALT = b"Salted__"
|
||||||
|
_backend = crypto_default_backend()
|
||||||
|
_kdf_key = PBKDF2HMAC(
|
||||||
|
algorithm = hashes.SHA256,
|
||||||
|
length = KEY_LENGTH + IV_LENGTH,
|
||||||
|
salt = SALT,
|
||||||
|
iterations = PBKDF2_CYCLES,
|
||||||
|
backend = _backend
|
||||||
|
).derive(password.encode("utf-8"))
|
||||||
|
_key, _iv = _kdf_key[:KEY_LENGTH],_kdf_key[KEY_LENGTH:]
|
||||||
|
_encryptor = Cipher(
|
||||||
|
algorithms.AES(_key),
|
||||||
|
modes.CBC(_iv),
|
||||||
|
backend = _backend
|
||||||
|
).encryptor()
|
||||||
|
message = pad_pkcs7(message)
|
||||||
|
message = message.encode("utf-8")
|
||||||
|
_encrypted_message = _encryptor.update(message) + _encryptor.finalize()
|
||||||
|
return pad_pkcs7(b"03",10) + SALT + _encrypted_message
|
||||||
|
|
||||||
|
def _encrypt(self,message): ## openssl ## todo ## remove
|
||||||
|
_cmd = shlex.split('openssl enc -aes-256-cbc -md sha256 -iter 10000 -k "secretpassword"',posix=True)
|
||||||
|
_proc = subprocess.Popen(_cmd,stderr=subprocess.DEVNULL,stdout=subprocess.PIPE,stdin=subprocess.PIPE)
|
||||||
|
_out,_err = _proc.communicate(input=message.encode("utf-8"))
|
||||||
|
return b"03" + _out
|
||||||
|
|
||||||
|
def do_checks(self,debug=False,remote_ip=None,**kwargs):
|
||||||
|
self._getosinfo()
|
||||||
|
_errors = []
|
||||||
|
_failed_sections = []
|
||||||
|
_lines = ["<<<check_mk>>>"]
|
||||||
|
_lines.append("AgentOS: {os}".format(**self._info))
|
||||||
|
_lines.append("OSVersion: {os_version}".format(**self._info))
|
||||||
|
_lines.append(f"Version: {__VERSION__}")
|
||||||
|
_lines.append("Hostname: {hostname}".format(**self._info))
|
||||||
|
if self.onlyfrom:
|
||||||
|
_lines.append("OnlyFrom: {0}".format(",".join(self.onlyfrom)))
|
||||||
|
|
||||||
|
_lines.append(f"LocalDirectory: {LOCALDIR}")
|
||||||
|
_lines.append(f"AgentDirectory: {MK_CONFDIR}")
|
||||||
|
_lines.append(f"SpoolDirectory: {SPOOLDIR}")
|
||||||
|
|
||||||
|
for _check in dir(self):
|
||||||
|
if _check.startswith("check_"):
|
||||||
|
_name = _check.split("_",1)[1]
|
||||||
|
try:
|
||||||
|
_lines += getattr(self,_check)()
|
||||||
|
except:
|
||||||
|
_failed_sections.append(_name)
|
||||||
|
_errors.append(traceback.format_exc())
|
||||||
|
|
||||||
|
_lines.append("<<<local:sep(0)>>>")
|
||||||
|
for _check in dir(self):
|
||||||
|
if _check.startswith("checklocal_"):
|
||||||
|
_name = _check.split("_",1)[1]
|
||||||
|
try:
|
||||||
|
_lines += getattr(self,_check)()
|
||||||
|
except:
|
||||||
|
_failed_sections.append(_name)
|
||||||
|
_errors.append(traceback.format_exc())
|
||||||
|
|
||||||
|
if os.path.isdir(LOCALDIR):
|
||||||
|
for _local_file in glob.glob(f"{LOCALDIR}/**",recursive=True):
|
||||||
|
if os.path.isfile(_local_file) and os.access(_local_file,os.X_OK):
|
||||||
|
try:
|
||||||
|
_cachetime = int(_local_file.split(os.path.sep)[-2])
|
||||||
|
except:
|
||||||
|
_cachetime = 0
|
||||||
|
try:
|
||||||
|
_lines.append(self._run_cache_prog(_local_file,_cachetime))
|
||||||
|
except:
|
||||||
|
_errors.append(traceback.format_exc())
|
||||||
|
|
||||||
|
if os.path.isdir(SPOOLDIR):
|
||||||
|
_now = time.time()
|
||||||
|
for _filename in glob.glob(f"{SPOOLDIR}/*"):
|
||||||
|
_maxage = re.search("^\d+",_filename)
|
||||||
|
|
||||||
|
if _maxage:
|
||||||
|
_maxage = int(_maxage.group())
|
||||||
|
_mtime = os.stat(_filename).st_mtime
|
||||||
|
if _now - _mtime > _maxage:
|
||||||
|
continue
|
||||||
|
with open(_filename) as _f:
|
||||||
|
_lines.append(_f.read())
|
||||||
|
|
||||||
|
_lines.append("")
|
||||||
|
if debug:
|
||||||
|
sys.stderr.write("\n".join(_errors))
|
||||||
|
sys.stderr.flush()
|
||||||
|
if _failed_sections:
|
||||||
|
_lines.append("<<<check_mk>>>")
|
||||||
|
_lines.append("FailedPythonPlugins: {0}".format(",".join(_failed_sections)))
|
||||||
|
|
||||||
|
if self.encryptionkey:
|
||||||
|
return self.encrypt("\n".join(_lines),password=self.encryptionkey)
|
||||||
|
return "\n".join(_lines).encode("utf-8")
|
||||||
|
|
||||||
|
def _getosinfo(self):
|
||||||
|
_version_file = "/conf/base/etc/version"
|
||||||
|
_version_modified = os.stat(_version_file).st_mtime
|
||||||
|
_os,_version = open(_version_file,"rt").read().strip().split("-",1)
|
||||||
|
self._info = {
|
||||||
|
"os" : _os,
|
||||||
|
"os_version" : _version.split(" ")[0],
|
||||||
|
"version_age" : int(time.time() - _version_modified),
|
||||||
|
"config_age" : 0,
|
||||||
|
"last_configchange" : "",
|
||||||
|
"latest_version" : "",
|
||||||
|
"latest_date" : "",
|
||||||
|
"hostname" : self._run_prog("hostname").strip(" \n")
|
||||||
|
}
|
||||||
|
|
||||||
|
def pidof(self,prog,default=None):
|
||||||
|
_allprogs = re.findall("(\w+)\s+(\d+)",self._run_prog("ps ax -c -o command,pid"))
|
||||||
|
return int(dict(_allprogs).get(prog,default))
|
||||||
|
|
||||||
|
def check_label(self):
|
||||||
|
_ret = ["<<<labels:sep(0)>>>"]
|
||||||
|
_dmsg = self._run_prog("dmesg",timeout=10)
|
||||||
|
if _dmsg.lower().find("hypervisor:") > -1:
|
||||||
|
_ret.append('{{"cmk/device_type":"vm"}}')
|
||||||
|
return _ret
|
||||||
|
|
||||||
|
def check_net(self):
|
||||||
|
_now = int(time.time())
|
||||||
|
_ret = ["<<<statgrab_net>>>"]
|
||||||
|
_interface_status = dict(
|
||||||
|
map(lambda x: (x[0],(x[1:])),
|
||||||
|
re.findall("^(?P<iface>[\w.]+):.*?(?P<adminstate>UP|DOWN),.*?\n(?:\s+(?:media:.*?(?P<speed>\d+G?).*?\<(?P<duplex>.*?)\>|(?:status:\s(?P<operstate>[ \w]+))|).*?\n)*",
|
||||||
|
self._run_prog("ifconfig"),re.M)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
_interface_data = self._run_prog("/usr/bin/netstat -i -b -d -n -W -f link").split("\n")
|
||||||
|
_header = _interface_data[0].lower()
|
||||||
|
_header = _header.replace("pkts","packets").replace("coll","collisions").replace("errs","error").replace("ibytes","rx").replace("obytes","tx")
|
||||||
|
_header = _header.split()
|
||||||
|
|
||||||
|
for _line in _interface_data[1:]:
|
||||||
|
_fields = _line.split()
|
||||||
|
if not _fields:
|
||||||
|
continue
|
||||||
|
_iface = _fields[0]
|
||||||
|
if _iface.replace("*","") in ("pflog0","lo0"):
|
||||||
|
continue
|
||||||
|
_ifconfig = _interface_status.get(_iface,("","","unknown",""))
|
||||||
|
_iface = _iface.replace(".","_")
|
||||||
|
_ifacedict = dict(zip(_header,_fields))
|
||||||
|
_ifacedict.update({
|
||||||
|
"interface_name" : _iface,
|
||||||
|
"duplex" : _ifconfig[2],
|
||||||
|
"speed" : _ifconfig[1].replace("G","000"),
|
||||||
|
"systime" : _now,
|
||||||
|
"up" : str(bool(_ifconfig[3] in ("active",""))).lower(),
|
||||||
|
"admin_status" : str(bool(_ifconfig[0] == "UP")).lower(),
|
||||||
|
"phys_address" : _ifacedict.get("address")
|
||||||
|
})
|
||||||
|
for _key,_val in _ifacedict.items():
|
||||||
|
if _key in ("name","network","address"):
|
||||||
|
continue
|
||||||
|
if type(_val) == str:
|
||||||
|
_val = _val.replace(" ","_")
|
||||||
|
if not _val:
|
||||||
|
continue
|
||||||
|
_ret.append(f"{_iface}.{_key} {_val}")
|
||||||
|
return _ret
|
||||||
|
|
||||||
|
|
||||||
|
def check_smartinfo(self):
|
||||||
|
if not os.path.exists("/usr/local/sbin/smartctl"):
|
||||||
|
return []
|
||||||
|
REGEX_DISCPATH = re.compile("(sd[a-z]+|da[0-9]+|nvme[0-9]+|ada[0-9]+)$")
|
||||||
|
_ret = ["<<<disk_smart_info:sep(124)>>>"]
|
||||||
|
for _dev in filter(lambda x: REGEX_DISCPATH.match(x),os.listdir("/dev/")):
|
||||||
|
try:
|
||||||
|
_ret.append(str(smart_disc(_dev)))
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
return _ret
|
||||||
|
|
||||||
|
def check_kernel(self):
|
||||||
|
_ret = ["<<<kernel>>>"]
|
||||||
|
_out = self._run_prog("sysctl vm.stats",timeout=10)
|
||||||
|
_kernel = dict([_v.split(": ") for _v in _out.split("\n") if len(_v.split(": ")) == 2])
|
||||||
|
_ret.append("{0:.0f}".format(time.time()))
|
||||||
|
_ret.append("cpu {0} {1} {2} {4} {3}".format(*(_kernel.get("kern.cp_time","").split(" "))))
|
||||||
|
_ret.append("ctxt {0}".format(_kernel.get("vm.stats.sys.v_swtch")))
|
||||||
|
_sum = sum(map(lambda x: int(x[1]),(filter(lambda x: x[0] in ("vm.stats.vm.v_forks","vm.stats.vm.v_vforks","vm.stats.vm.v_rforks","vm.stats.vm.v_kthreads"),_kernel.items()))))
|
||||||
|
_ret.append("processes {0}".format(_sum))
|
||||||
|
return _ret
|
||||||
|
|
||||||
|
def check_mem(self):
|
||||||
|
_ret = ["<<<statgrab_mem>>>"]
|
||||||
|
_pagesize = int(self._run_prog("sysctl -n hw.pagesize"))
|
||||||
|
_out = self._run_prog("sysctl vm.stats",timeout=10)
|
||||||
|
_mem = dict(map(lambda x: (x[0],int(x[1])) ,[_v.split(": ") for _v in _out.split("\n") if len(_v.split(": ")) == 2]))
|
||||||
|
_mem_cache = _mem.get("vm.stats.vm.v_cache_count") * _pagesize
|
||||||
|
_mem_free = _mem.get("vm.stats.vm.v_free_count") * _pagesize
|
||||||
|
_mem_inactive = _mem.get("vm.stats.vm.v_inactive_count") * _pagesize
|
||||||
|
_mem_total = _mem.get("vm.stats.vm.v_page_count") * _pagesize
|
||||||
|
_mem_avail = _mem_inactive + _mem_cache + _mem_free
|
||||||
|
_mem_used = _mem_total - _mem_avail # fixme mem.hw
|
||||||
|
_ret.append("mem.cache {0}".format(_mem_cache))
|
||||||
|
_ret.append("mem.free {0}".format(_mem_free))
|
||||||
|
_ret.append("mem.total {0}".format(_mem_total))
|
||||||
|
_ret.append("mem.used {0}".format(_mem_used))
|
||||||
|
_ret.append("swap.free 0")
|
||||||
|
_ret.append("swap.total 0")
|
||||||
|
_ret.append("swap.used 0")
|
||||||
|
|
||||||
|
return _ret
|
||||||
|
|
||||||
|
def check_df(self):
|
||||||
|
_ret = ["<<<df>>>"]
|
||||||
|
_ret += self._run_prog("df -kTP -t ufs").split("\n")[1:]
|
||||||
|
return _ret
|
||||||
|
|
||||||
|
def check_zpool(self):
|
||||||
|
_ret = ["<<<zpool_status>>>"]
|
||||||
|
try:
|
||||||
|
for _line in self._run_prog("zpool status -x").split("\n"):
|
||||||
|
if _line.find("errors: No known data errors") == -1:
|
||||||
|
_ret.append(_line)
|
||||||
|
except:
|
||||||
|
return []
|
||||||
|
return _ret
|
||||||
|
|
||||||
|
def check_zfs(self):
|
||||||
|
_ret = ["<<<zfsget>>>"]
|
||||||
|
_ret.append(self._run_prog("zfs get -t filesystem,volume -Hp name,quota,used,avail,mountpoint,type"))
|
||||||
|
_ret.append("[df]")
|
||||||
|
_ret.append(self._run_prog("df -kP -t zfs"))
|
||||||
|
_ret.append("<<<zfs_arc_cache>>>")
|
||||||
|
_ret.append(self._run_prog("sysctl -q kstat.zfs.misc.arcstats").replace("kstat.zfs.misc.arcstats.","").replace(": "," = ").strip())
|
||||||
|
return _ret
|
||||||
|
|
||||||
|
def check_mounts(self):
|
||||||
|
_ret = ["<<<mounts>>>"]
|
||||||
|
_ret.append(self._run_prog("mount -p -t ufs").strip())
|
||||||
|
return _ret
|
||||||
|
|
||||||
|
def check_cpu(self):
|
||||||
|
_ret = ["<<<cpu>>>"]
|
||||||
|
_loadavg = self._run_prog("sysctl -n vm.loadavg").strip("{} \n")
|
||||||
|
_proc = self._run_prog("top -b -n 1").split("\n")[1].split(" ")
|
||||||
|
_proc = "{0}/{1}".format(_proc[3],_proc[0])
|
||||||
|
_lastpid = self._run_prog("sysctl -n kern.lastpid").strip(" \n")
|
||||||
|
_ncpu = self._run_prog("sysctl -n hw.ncpu").strip(" \n")
|
||||||
|
_ret.append(f"{_loadavg} {_proc} {_lastpid} {_ncpu}")
|
||||||
|
return _ret
|
||||||
|
|
||||||
|
def check_netctr(self):
|
||||||
|
_ret = ["<<<netctr>>>"]
|
||||||
|
_out = self._run_prog("netstat -inb")
|
||||||
|
for _line in re.finditer("^(?!Name|lo|plip)(?P<iface>\w+)\s+(?P<mtu>\d+).*?Link.*?\s+.*?\s+(?P<inpkts>\d+)\s+(?P<inerr>\d+)\s+(?P<indrop>\d+)\s+(?P<inbytes>\d+)\s+(?P<outpkts>\d+)\s+(?P<outerr>\d+)\s+(?P<outbytes>\d+)\s+(?P<coll>\d+)$",_out,re.M):
|
||||||
|
_ret.append("{iface} {inbytes} {inpkts} {inerr} {indrop} 0 0 0 0 {outbytes} {outpkts} {outerr} 0 0 0 0 0".format(**_line.groupdict()))
|
||||||
|
return _ret
|
||||||
|
|
||||||
|
def check_ntp(self):
|
||||||
|
_ret = ["<<<ntp>>>"]
|
||||||
|
for _line in self._run_prog("ntpq -np",timeout=30).split("\n")[2:]:
|
||||||
|
if _line.strip():
|
||||||
|
_ret.append("{0} {1}".format(_line[0],_line[1:]))
|
||||||
|
return _ret
|
||||||
|
|
||||||
|
|
||||||
|
def check_tcp(self):
|
||||||
|
_ret = ["<<<tcp_conn_stats>>>"]
|
||||||
|
_out = self._run_prog("netstat -na")
|
||||||
|
counts = Counter(re.findall("ESTABLISHED|LISTEN",_out))
|
||||||
|
for _key,_val in counts.items():
|
||||||
|
_ret.append(f"{_key} {_val}")
|
||||||
|
return _ret
|
||||||
|
|
||||||
|
def check_ps(self):
|
||||||
|
_ret = ["<<<ps>>>"]
|
||||||
|
_out = self._run_prog("ps ax -o state,user,vsz,rss,pcpu,command")
|
||||||
|
for _line in re.finditer("^(?P<stat>\w+)\s+(?P<user>\w+)\s+(?P<vsz>\d+)\s+(?P<rss>\d+)\s+(?P<cpu>[\d.]+)\s+(?P<command>.*)$",_out,re.M):
|
||||||
|
_ret.append("({user},{vsz},{rss},{cpu}) {command}".format(**_line.groupdict()))
|
||||||
|
return _ret
|
||||||
|
|
||||||
|
|
||||||
|
def check_uptime(self):
|
||||||
|
_ret = ["<<<uptime>>>"]
|
||||||
|
_uptime_sec = time.time() - int(self._run_prog("sysctl -n kern.boottime").split(" ")[3].strip(" ,"))
|
||||||
|
_idle_sec = re.findall("(\d+):[\d.]+\s+\[idle\]",self._run_prog("ps axw"))[0]
|
||||||
|
_ret.append(f"{_uptime_sec} {_idle_sec}")
|
||||||
|
return _ret
|
||||||
|
|
||||||
|
def _run_prog(self,cmdline="",*args,shell=False,timeout=60):
|
||||||
|
if type(cmdline) == str:
|
||||||
|
_process = shlex.split(cmdline,posix=True)
|
||||||
|
else:
|
||||||
|
_process = cmdline
|
||||||
|
try:
|
||||||
|
return subprocess.check_output(_process,encoding="utf-8",shell=shell,stderr=subprocess.DEVNULL,timeout=timeout)
|
||||||
|
except subprocess.CalledProcessError as e:
|
||||||
|
return ""
|
||||||
|
except subprocess.TimeoutExpired:
|
||||||
|
return ""
|
||||||
|
|
||||||
|
def _run_cache_prog(self,cmdline="",cachetime=10,*args,shell=False):
|
||||||
|
if type(cmdline) == str:
|
||||||
|
_process = shlex.split(cmdline,posix=True)
|
||||||
|
else:
|
||||||
|
_process = cmdline
|
||||||
|
_process_id = "".join(_process)
|
||||||
|
_runner = self._check_cache.get(_process_id)
|
||||||
|
if _runner == None:
|
||||||
|
_runner = checkmk_cached_process(_process,shell=shell)
|
||||||
|
self._check_cache[_process_id] = _runner
|
||||||
|
return _runner.get(cachetime)
|
||||||
|
|
||||||
|
class checkmk_cached_process(object):
|
||||||
|
def __init__(self,process,shell=False):
|
||||||
|
self._processs = process
|
||||||
|
self._islocal = os.path.dirname(process[0]).startswith(LOCALDIR)
|
||||||
|
self._shell = shell
|
||||||
|
self._mutex = threading.Lock()
|
||||||
|
with self._mutex:
|
||||||
|
self._data = (0,"")
|
||||||
|
self._thread = None
|
||||||
|
|
||||||
|
def _runner(self,timeout):
|
||||||
|
try:
|
||||||
|
_data = subprocess.check_output(self._processs,shell=self._shell,encoding="utf-8",stderr=subprocess.DEVNULL,timeout=timeout)
|
||||||
|
except subprocess.CalledProcessError as e:
|
||||||
|
_data = ""
|
||||||
|
except subprocess.TimeoutExpired:
|
||||||
|
_data = ""
|
||||||
|
with self._mutex:
|
||||||
|
self._data = (int(time.time()),_data)
|
||||||
|
self._thread = None
|
||||||
|
|
||||||
|
def get(self,cachetime):
|
||||||
|
with self._mutex:
|
||||||
|
_now = time.time()
|
||||||
|
_mtime = self._data[0]
|
||||||
|
if _now - _mtime > cachetime or cachetime == 0:
|
||||||
|
if not self._thread:
|
||||||
|
if cachetime > 0:
|
||||||
|
_timeout = cachetime*2-1
|
||||||
|
else:
|
||||||
|
_timeout = None
|
||||||
|
with self._mutex:
|
||||||
|
self._thread = threading.Thread(target=self._runner,args=[_timeout])
|
||||||
|
self._thread.start()
|
||||||
|
|
||||||
|
self._thread.join(30) ## waitmax
|
||||||
|
with self._mutex:
|
||||||
|
_mtime, _data = self._data
|
||||||
|
if not _data.strip():
|
||||||
|
return ""
|
||||||
|
if self._islocal:
|
||||||
|
_data = "".join([f"cached({_mtime},{cachetime}) {_line}" for _line in _data.splitlines(True) if len(_line.strip()) > 0])
|
||||||
|
else:
|
||||||
|
_data = re.sub("\B[<]{3}(.*?)[>]{3}\B",f"<<<\\1:cached({_mtime},{cachetime})>>>",_data)
|
||||||
|
return _data
|
||||||
|
|
||||||
|
class checkmk_server(TCPServer,checkmk_checker):
|
||||||
|
def __init__(self,port,pidfile,user,onlyfrom=None,encryptionkey=None,**kwargs):
|
||||||
|
self.pidfile = pidfile
|
||||||
|
self.onlyfrom=onlyfrom.split(",") if onlyfrom else None
|
||||||
|
self.encryptionkey = encryptionkey
|
||||||
|
self._mutex = threading.Lock()
|
||||||
|
self.user = pwd.getpwnam(user)
|
||||||
|
self.allow_reuse_address = True
|
||||||
|
TCPServer.__init__(self,("",port),checkmk_handler,bind_and_activate=False)
|
||||||
|
|
||||||
|
def _change_user(self):
|
||||||
|
_, _, _uid, _gid, _, _, _ = self.user
|
||||||
|
if os.getuid() != _uid:
|
||||||
|
os.setgid(_gid)
|
||||||
|
os.setuid(_uid)
|
||||||
|
|
||||||
|
def verify_request(self, request, client_address):
|
||||||
|
if self.onlyfrom and client_address[0] not in self.onlyfrom:
|
||||||
|
return False
|
||||||
|
return True
|
||||||
|
|
||||||
|
def server_start(self):
|
||||||
|
sys.stderr.write("starting checkmk_agent\n")
|
||||||
|
sys.stderr.flush()
|
||||||
|
signal.signal(signal.SIGTERM, self._signal_handler)
|
||||||
|
signal.signal(signal.SIGINT, self._signal_handler)
|
||||||
|
signal.signal(signal.SIGHUP, self._signal_handler)
|
||||||
|
self._change_user()
|
||||||
|
try:
|
||||||
|
self.server_bind()
|
||||||
|
self.server_activate()
|
||||||
|
except:
|
||||||
|
self.server_close()
|
||||||
|
raise
|
||||||
|
try:
|
||||||
|
self.serve_forever()
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
sys.stdout.flush()
|
||||||
|
sys.stdout.write("\n")
|
||||||
|
pass
|
||||||
|
|
||||||
|
def _signal_handler(self,signum,*args):
|
||||||
|
if signum in (signal.SIGTERM,signal.SIGINT):
|
||||||
|
sys.stderr.write("stopping checkmk_agent\n")
|
||||||
|
threading.Thread(target=self.shutdown,name='shutdown').start()
|
||||||
|
sys.exit(0)
|
||||||
|
sys.stderr.write("checkmk_agent running\n")
|
||||||
|
sys.stderr.flush()
|
||||||
|
|
||||||
|
def daemonize(self):
|
||||||
|
try:
|
||||||
|
pid = os.fork()
|
||||||
|
if pid > 0:
|
||||||
|
## first parent
|
||||||
|
sys.exit(0)
|
||||||
|
except OSError as e:
|
||||||
|
print("Fork failed")
|
||||||
|
sys.exit(1)
|
||||||
|
os.chdir("/")
|
||||||
|
os.setsid()
|
||||||
|
os.umask(0)
|
||||||
|
try:
|
||||||
|
pid = os.fork()
|
||||||
|
if pid > 0:
|
||||||
|
## second
|
||||||
|
sys.exit(0)
|
||||||
|
except OSError as e:
|
||||||
|
print("Fork 2 failed")
|
||||||
|
sys.exit(1)
|
||||||
|
sys.stdout.flush()
|
||||||
|
sys.stderr.flush()
|
||||||
|
self._redirect_stream(sys.stdin,None)
|
||||||
|
self._redirect_stream(sys.stdout,None)
|
||||||
|
#self._redirect_stream(sys.stderr,None)
|
||||||
|
with open(self.pidfile,"wt") as _pidfile:
|
||||||
|
_pidfile.write(str(os.getpid()))
|
||||||
|
os.chown(self.pidfile,self.user[2],self.user[3])
|
||||||
|
try:
|
||||||
|
self.server_start()
|
||||||
|
finally:
|
||||||
|
try:
|
||||||
|
os.remove(self.pidfile)
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def _redirect_stream(system_stream,target_stream):
|
||||||
|
if target_stream is None:
|
||||||
|
target_fd = os.open(os.devnull, os.O_RDWR)
|
||||||
|
else:
|
||||||
|
target_fd = target_stream.fileno()
|
||||||
|
os.dup2(target_fd, system_stream.fileno())
|
||||||
|
|
||||||
|
def __del__(self):
|
||||||
|
pass ## todo
|
||||||
|
|
||||||
|
|
||||||
|
REGEX_SMART_VENDOR = re.compile(r"^\s*(?P<num>\d+)\s(?P<name>[-\w]+).*\s{2,}(?P<value>[\w\/() ]+)$",re.M)
|
||||||
|
REGEX_SMART_DICT = re.compile(r"^(.*?):\s*(.*?)$",re.M)
|
||||||
|
class smart_disc(object):
|
||||||
|
def __init__(self,device):
|
||||||
|
self.device = device
|
||||||
|
MAPPING = {
|
||||||
|
"Model Family" : ("model_family" ,lambda x: x),
|
||||||
|
"Model Number" : ("model_family" ,lambda x: x),
|
||||||
|
"Product" : ("model_family" ,lambda x: x),
|
||||||
|
"Vendor" : ("vendor" ,lambda x: x),
|
||||||
|
"Revision" : ("revision" ,lambda x: x),
|
||||||
|
"Device Model" : ("model_type" ,lambda x: x),
|
||||||
|
"Serial Number" : ("serial_number" ,lambda x: x),
|
||||||
|
"Serial number" : ("serial_number" ,lambda x: x),
|
||||||
|
"Firmware Version" : ("firmware_version" ,lambda x: x),
|
||||||
|
"User Capacity" : ("capacity" ,lambda x: x.split(" ")[0].replace(",","")),
|
||||||
|
"Total NVM Capacity": ("capacity" ,lambda x: x.split(" ")[0].replace(",","")),
|
||||||
|
"Rotation Rate" : ("rpm" ,lambda x: x.replace(" rpm","")),
|
||||||
|
"Form Factor" : ("formfactor" ,lambda x: x),
|
||||||
|
"SATA Version is" : ("transport" ,lambda x: x.split(",")[0]),
|
||||||
|
"Transport protocol": ("transport" ,lambda x: x),
|
||||||
|
"SMART support is" : ("smart" ,lambda x: int(x.lower() == "enabled")),
|
||||||
|
"Critical Warning" : ("critical" ,lambda x: self._saveint(x,base=16)),
|
||||||
|
"Temperature" : ("temperature" ,lambda x: x.split(" ")[0]),
|
||||||
|
"Data Units Read" : ("data_read_bytes" ,lambda x: x.split(" ")[0].replace(",","")),
|
||||||
|
"Data Units Written": ("data_write_bytes" ,lambda x: x.split(" ")[0].replace(",","")),
|
||||||
|
"Power On Hours" : ("poweronhours" ,lambda x: x.replace(",","")),
|
||||||
|
"Power Cycles" : ("powercycles" ,lambda x: x.replace(",","")),
|
||||||
|
"NVMe Version" : ("transport" ,lambda x: f"NVMe {x}"),
|
||||||
|
"Raw_Read_Error_Rate" : ("error_rate" ,lambda x: x.replace(",","")),
|
||||||
|
"Reallocated_Sector_Ct" : ("reallocate" ,lambda x: x.replace(",","")),
|
||||||
|
"Seek_Error_Rate" : ("seek_error_rate",lambda x: x.replace(",","")),
|
||||||
|
"Power_Cycle_Count" : ("powercycles" ,lambda x: x.replace(",","")),
|
||||||
|
"Temperature_Celsius" : ("temperature" ,lambda x: x.split(" ")[0]),
|
||||||
|
"UDMA_CRC_Error_Count" : ("udma_error" ,lambda x: x.replace(",","")),
|
||||||
|
"Offline_Uncorrectable" : ("uncorrectable" ,lambda x: x.replace(",","")),
|
||||||
|
"Power_On_Hours" : ("poweronhours" ,lambda x: x.replace(",","")),
|
||||||
|
"Spin_Retry_Count" : ("spinretry" ,lambda x: x.replace(",","")),
|
||||||
|
"Current_Pending_Sector": ("pendingsector" ,lambda x: x.replace(",","")),
|
||||||
|
"Current Drive Temperature" : ("temperature" ,lambda x: x.split(" ")[0]),
|
||||||
|
"Reallocated_Event_Count" : ("reallocate_ev" ,lambda x: x.split(" ")[0]),
|
||||||
|
"Warning Comp. Temp. Threshold" : ("temperature_warn" ,lambda x: x.split(" ")[0]),
|
||||||
|
"Critical Comp. Temp. Threshold" : ("temperature_crit" ,lambda x: x.split(" ")[0]),
|
||||||
|
"Media and Data Integrity Errors" : ("media_errors" ,lambda x: x),
|
||||||
|
"Airflow_Temperature_Cel" : ("temperature" ,lambda x: x),
|
||||||
|
"SMART overall-health self-assessment test result" : ("smart_status" ,lambda x: int(x.lower() == "passed")),
|
||||||
|
"SMART Health Status" : ("smart_status" ,lambda x: int(x.lower() == "ok")),
|
||||||
|
}
|
||||||
|
self._get_data()
|
||||||
|
for _key, _value in REGEX_SMART_DICT.findall(self._smartctl_output):
|
||||||
|
if _key in MAPPING.keys():
|
||||||
|
_map = MAPPING[_key]
|
||||||
|
setattr(self,_map[0],_map[1](_value))
|
||||||
|
|
||||||
|
for _vendor_num,_vendor_text,_value in REGEX_SMART_VENDOR.findall(self._smartctl_output):
|
||||||
|
if _vendor_text in MAPPING.keys():
|
||||||
|
_map = MAPPING[_vendor_text]
|
||||||
|
setattr(self,_map[0],_map[1](_value))
|
||||||
|
|
||||||
|
def _saveint(self,val,base=10):
|
||||||
|
try:
|
||||||
|
return int(val,base)
|
||||||
|
except (TypeError,ValueError):
|
||||||
|
return 0
|
||||||
|
|
||||||
|
def _get_data(self):
|
||||||
|
try:
|
||||||
|
self._smartctl_output = subprocess.check_output(["smartctl","-a","-n","standby", f"/dev/{self.device}"],encoding=sys.stdout.encoding,timeout=10)
|
||||||
|
except subprocess.CalledProcessError as e:
|
||||||
|
if e.returncode & 0x1:
|
||||||
|
raise
|
||||||
|
_status = ""
|
||||||
|
self._smartctl_output = e.output
|
||||||
|
if e.returncode & 0x2:
|
||||||
|
_status = "SMART Health Status: CRC Error"
|
||||||
|
if e.returncode & 0x4:
|
||||||
|
_status = "SMART Health Status: PREFAIL"
|
||||||
|
if e.returncode & 0x3:
|
||||||
|
_status = "SMART Health Status: DISK FAILING"
|
||||||
|
|
||||||
|
self._smartctl_output += f"\n{_status}\n"
|
||||||
|
except subprocess.TimeoutExpired:
|
||||||
|
self._smartctl_output += "\nSMART smartctl Timeout\n"
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
_ret = []
|
||||||
|
if not getattr(self,"model_type",None):
|
||||||
|
self.model_type = getattr(self,"model_family","unknown")
|
||||||
|
for _k,_v in self.__dict__.items():
|
||||||
|
if _k.startswith("_") or _k in ("device"):
|
||||||
|
continue
|
||||||
|
_ret.append(f"{self.device}|{_k}|{_v}")
|
||||||
|
return "\n".join(_ret)
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
import argparse
|
||||||
|
_ = lambda x: x
|
||||||
|
_parser = argparse.ArgumentParser(f"checkmk_agent for TrueNAS\nVersion: {__VERSION__}\n##########################################\n")
|
||||||
|
_parser.add_argument("--port",type=int,default=6556,
|
||||||
|
help=_("Port checkmk_agent listen"))
|
||||||
|
_parser.add_argument("--start",action="store_true",
|
||||||
|
help=_("start the daemon"))
|
||||||
|
_parser.add_argument("--stop",action="store_true",
|
||||||
|
help=_("stop the daemon"))
|
||||||
|
_parser.add_argument("--nodaemon",action="store_true",
|
||||||
|
help=_("run in foreground"))
|
||||||
|
_parser.add_argument("--status",action="store_true",
|
||||||
|
help=_("show status if running"))
|
||||||
|
_parser.add_argument("--user",type=str,default="root",
|
||||||
|
help=_(""))
|
||||||
|
_parser.add_argument("--encrypt",type=str,dest="encryptionkey",
|
||||||
|
help=_("Encryption password (do not use from cmdline)"))
|
||||||
|
_parser.add_argument("--pidfile",type=str,default="/var/run/checkmk_agent.pid",
|
||||||
|
help=_(""))
|
||||||
|
_parser.add_argument("--onlyfrom",type=str,
|
||||||
|
help=_("comma seperated ip addresses to allow"))
|
||||||
|
_parser.add_argument("--debug",action="store_true",
|
||||||
|
help=_("debug Ausgabe"))
|
||||||
|
args = _parser.parse_args()
|
||||||
|
_server = checkmk_server(**args.__dict__)
|
||||||
|
_pid = None
|
||||||
|
try:
|
||||||
|
with open(args.pidfile,"rt") as _pidfile:
|
||||||
|
_pid = int(_pidfile.read())
|
||||||
|
except (FileNotFoundError,IOError):
|
||||||
|
_out = subprocess.check_output(["sockstat", "-l", "-p", str(args.port),"-P", "tcp"],encoding=sys.stdout.encoding)
|
||||||
|
try:
|
||||||
|
_pid = int(re.findall("\s(\d+)\s",_out.split("\n")[1])[0])
|
||||||
|
except (IndexError,ValueError):
|
||||||
|
pass
|
||||||
|
if args.start:
|
||||||
|
if _pid:
|
||||||
|
try:
|
||||||
|
os.kill(_pid,0)
|
||||||
|
except OSError:
|
||||||
|
pass
|
||||||
|
else:
|
||||||
|
sys.stderr.write(f"allready running with pid {_pid}")
|
||||||
|
sys.exit(1)
|
||||||
|
_server.daemonize()
|
||||||
|
|
||||||
|
elif args.status:
|
||||||
|
if not _pid:
|
||||||
|
sys.stderr.write("Not running\n")
|
||||||
|
else:
|
||||||
|
os.kill(int(_pid),signal.SIGHUP)
|
||||||
|
elif args.stop:
|
||||||
|
if not _pid:
|
||||||
|
sys.stderr.write("Not running\n")
|
||||||
|
sys.exit(1)
|
||||||
|
os.kill(int(_pid),signal.SIGTERM)
|
||||||
|
|
||||||
|
elif args.debug:
|
||||||
|
sys.stdout.buffer.write(_server.do_checks(debug=True))
|
||||||
|
elif args.nodaemon:
|
||||||
|
_server.server_start()
|
||||||
|
else:
|
||||||
|
# _server.server_start()
|
||||||
|
## default start daemon
|
||||||
|
if _pid:
|
||||||
|
try:
|
||||||
|
os.kill(_pid,0)
|
||||||
|
except OSError:
|
||||||
|
pass
|
||||||
|
else:
|
||||||
|
sys.stderr.write(f"allready running with pid {_pid}")
|
||||||
|
sys.exit(1)
|
||||||
|
_server.daemonize()
|
Loading…
Reference in New Issue
Block a user