support for kfreebsd
[mirror/dsa-nagios.git] / dsa-nagios-checks / checks / dsa-check-running-kernel
index 78255f7..bb0fc96 100755 (executable)
@@ -3,9 +3,10 @@
 # Check if the running kernel has the same version string as the on-disk
 # kernel image.
 
-# Copyright 2008,2009 Peter Palfrader
+# Copyright 2008,2009,2011 Peter Palfrader
 # Copyright 2009 Stephen Gran
 # Copyright 2010 Uli Martens
+# Copyright 2011 Alexander Reichle-Schmehl
 #
 # Permission is hereby granted, free of charge, to any person obtaining
 # a copy of this software and associated documentation files (the
@@ -45,10 +46,10 @@ get_offset() {
                print $i,"\n"' < "$file"
 }
 
-get_avail_linux() {
+get_avail() {
        # This is wrong, but leaves room for when we have to care for machines running
        # myfirstunix-image-0.1-dsa-arm
-       local prefix=linux
+       local prefix="$1"; shift
 
        local kervers=$(uname -r)
 
@@ -152,6 +153,22 @@ get_image_linux() {
        exit 1
 }
 
+
+freebsd_check_running_version() {
+       local imagefile="$1"; shift
+
+       local r="$(uname -r)"
+       local v="$(uname -v| sed -e 's/^#[0-9]*/&:/')"
+
+       local q='@\(#\)FreeBSD '"$r $v"
+
+       if zcat "$imagefile" | strings | egrep -q "$q"; then
+               echo "OK"
+       else
+               echo "not OK"
+       fi
+}
+
 searched=""
 for on_disk in \
        "/boot/vmlinuz-`uname -r`"\
@@ -159,8 +176,18 @@ for on_disk in \
        "/boot/kfreebsd-`uname -r`.gz"; do
 
        if [ -e "$on_disk" ]; then
+               if [ ! -x "$(which strings)" ]; then
+                       echo "UNKNOWN: 'strings' command missing, perhaps install binutils?"
+                       exit $UNKNOWN
+               fi
                if [ "${on_disk/vmlinu}" != "$on_disk" ]; then
                        on_disk_version="`get_image_linux "$on_disk" | strings | grep 'Linux version' | head -n1`"
+                       if [ -x /usr/bin/lsb_release ] ; then
+                               vendor=$(lsb_release -i -s)
+                               if [ -n "$vendor" ] && [ "xDebian" != "x$vendor" ] ; then
+                                       on_disk_version=$( echo $on_disk_version|sed -e "s/ ($vendor [[:alnum:]\.-]\+ [[:alnum:]\.]\+)//")
+                               fi
+                       fi
                        [ -z "$on_disk_version" ] || break
                        on_disk_version="`cat "$on_disk" | strings | grep 'Linux version' | head -n1`"
                        [ -z "$on_disk_version" ] || break
@@ -191,14 +218,25 @@ if [ "$(uname -s)" = "Linux" ]; then
                exit $WARNING
        fi
 
-       ret="$(get_avail_linux)"
+       ret="$(get_avail linux)"
        if [ $? = 1 ]; then
                echo "WARNING: Kernel needs upgrade [$ret]"
                exit $WARNING
        fi
 else
-       echo "No support for FreeBSD yet"
-       exit $OK
+       image_current=$(freebsd_check_running_version $on_disk)
+       running_version="`uname -s` `uname -r` `uname -v`"
+       if [ "$image_current" != "OK" ]; then
+               approx_time="$(date -d "@`stat -c '%Y' "$on_disk"`" +"%Y-%m-%d %H:%M:%S")"
+               echo "WARNING: Currently running kernel ($running_version) does not match on disk image (~ $approx_time)"
+               exit $WARNING;
+       fi
+
+       ret="$(get_avail linux)"
+       if [ $? = 1 ]; then
+               echo "WARNING: Kernel needs upgrade [$ret]"
+               exit $WARNING
+       fi
 fi
 
 echo "OK: Running kernel matches on disk image: [$running_version]"