]> git.baikalelectronics.ru Git - kernel.git/commit
xen/events: block rogue events for some time
authorJuergen Gross <jgross@suse.com>
Mon, 14 Sep 2020 12:01:02 +0000 (14:01 +0200)
committerJuergen Gross <jgross@suse.com>
Tue, 20 Oct 2020 08:22:19 +0000 (10:22 +0200)
commite5cb862284e7afa01673f8bd5057f834a5fe0d3a
tree97e21b64edbc6345af5aec7658a358200e80cddb
parent20e1666626eac4a4e8ab1437083bdb6bb3780613
xen/events: block rogue events for some time

In order to avoid high dom0 load due to rogue guests sending events at
high frequency, block those events in case there was no action needed
in dom0 to handle the events.

This is done by adding a per-event counter, which set to zero in case
an EOI without the XEN_EOI_FLAG_SPURIOUS is received from a backend
driver, and incremented when this flag has been set. In case the
counter is 2 or higher delay the EOI by 1 << (cnt - 2) jiffies, but
not more than 1 second.

In order not to waste memory shorten the per-event refcnt to two bytes
(it should normally never exceed a value of 2). Add an overflow check
to evtchn_get() to make sure the 2 bytes really won't overflow.

This is part of XSA-332.

Cc: stable@vger.kernel.org
Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
Reviewed-by: Wei Liu <wl@xen.org>
drivers/xen/events/events_base.c
drivers/xen/events/events_internal.h