fix(xen): remove xenbus and xenwatch as they also exist in domU

This commit is contained in:
Stéphane Lesimple 2019-05-15 00:23:05 +02:00
parent de793a7204
commit 8fd4e3ab01
1 changed files with 3 additions and 2 deletions

View File

@ -4018,14 +4018,15 @@ check_CVE_2018_3646_linux()
# this can always be overridden with --vmm in any case.
has_vmm=0
if command -v pgrep >/dev/null 2>&1; then
# remove xenbus and xenwatch, also present inside domU
if pgrep qemu >/dev/null || pgrep kvm >/dev/null || pgrep libvirtd >/dev/null || \
pgrep xenbus >/dev/null || pgrep xenwatch >/dev/null || pgrep xenstored >/dev/null || pgrep xenconsoled >/dev/null; then
pgrep xenstored >/dev/null || pgrep xenconsoled >/dev/null; then
has_vmm=1
fi
else
# ignore SC2009 as `ps ax` is actually used as a fallback if `pgrep` isn't installed
# shellcheck disable=SC2009
if ps ax | grep -vw grep | grep -q -e '\<qemu' -e '/qemu' -e '<\kvm' -e '/kvm' -e '/libvirtd' -e '\[xenbus\]' -e '\[xenwatch\]' -e '/xenstored' -e '/xenconsoled'; then
if ps ax | grep -vw grep | grep -q -e '\<qemu' -e '/qemu' -e '<\kvm' -e '/kvm' -e '/libvirtd' -e '/xenstored' -e '/xenconsoled'; then
has_vmm=1
fi
fi