File: //proc/self/root/usr/lib/check_mk_agent/plugins/kaspersky_av
#!/bin/sh
# Copyright (C) 2019 Checkmk GmbH - License: GNU General Public License v2
# This file is part of Checkmk (https://checkmk.com). It is subject to the terms and
# conditions defined in the file COPYING, which is part of this source code package.
# Reason for this no-op: shellcheck disable=... before the first command disables the error for the
# entire script.
:
# Disable unused variable error (needed to keep track of version)
# shellcheck disable=SC2034
CMK_VERSION="2.3.0p38"
KAV4FS="kav4fs"
KESL="kesl"
# BEGIN COMMON PLUGIN CODE
# check that no users other than root can change the file
only_root_can_modify() {
permissions=$1
owner=$2
group=$3
group_write_perm=$(echo "$permissions" | cut -c 6)
other_write_perm=$(echo "$permissions" | cut -c 9)
if [ "$owner" != "root" ] || [ "$other_write_perm" != "-" ]; then
return 1
fi
[ "$group" = "root" ] || [ "$group_write_perm" = "-" ]
}
get_binary_owner() {
BINARY_PATH=$1
stat -c '%U' "${BINARY_PATH}"
}
get_binary_execution_mode() {
BINARY_PATH=$1
BINARY_USER=$2
# if the executable belongs to someone besides root, do not execute it as root
if needs_user_switch_before_executing "$BINARY_PATH"; then
echo "su ${BINARY_USER} -c"
return
fi
echo "bash -c"
}
needs_user_switch_before_executing() {
BINARY_PATH=$1
[ "$(whoami)" = "root" ] && ! only_root_can_modify "$(stat -c '%A' "$BINARY_PATH")" "$(stat -c '%U' "$BINARY_PATH")" "$(stat -c '%G' "$BINARY_PATH")"
}
# END COMMON PLUGIN CODE
run() {
suite="$1"
control="/opt/kaspersky/$suite/bin/$suite-control"
[ -x "$(command -v "$control")" ] || return
only_root_can_modify "$(stat -c '%A' "$control")" "$(stat -c '%U' "$control")" "$(stat -c '%G' "$control")" || return
if [ "$suite" = "$KAV4FS" ]; then
echo "<<<kaspersky_av_updates:sep(58)>>>"
$control --get-stat Update
else
echo "<<<kaspersky_av_kesl_updates:sep(124)>>>"
$control --app-info | sed -r 's/:\s+/|/1'
fi
if [ "$suite" = "$KAV4FS" ]; then
echo "<<<kaspersky_av_quarantine:sep(58)>>>"
$control -Q --get-stat
fi
echo "<<<kaspersky_av_tasks>>>"
$control --get-task-list
}
main() {
# Debian will refuse to install both at the same time on the same machine.
run $KAV4FS
run $KESL
}
main "$@"