mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
xen-pt: fix Out-of-bounds read
The array length of s->real_device.io_regions[] is "PCI_NUM_REGIONS - 1". Signed-off-by: Gonglei <arei.gonglei@huawei.com> Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
@@ -438,7 +438,7 @@ static int xen_pt_bar_reg_read(XenPCIPassthroughState *s, XenPTReg *cfg_entry,
|
||||
|
||||
/* get BAR index */
|
||||
index = xen_pt_bar_offset_to_index(reg->offset);
|
||||
if (index < 0 || index >= PCI_NUM_REGIONS) {
|
||||
if (index < 0 || index >= PCI_NUM_REGIONS - 1) {
|
||||
XEN_PT_ERR(&s->dev, "Internal error: Invalid BAR index [%d].\n", index);
|
||||
return -1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user