Skip to content

Commit d489ae4

Browse files
Alexander Duyckbonzini
authored andcommitted
memory: Do not allow direct write access to rom_device regions
According to the documentation in memory.h a ROM memory region will be backed by RAM for reads, but is supposed to go through a callback for writes. Currently we were not checking for the existence of the rom_device flag when determining if we could perform a direct write or not. To correct that add a check to memory_region_is_direct so that if the memory region has the rom_device flag set we will return false for all checks where is_write is set. Signed-off-by: Alexander Duyck <[email protected]> Message-Id: <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]>
1 parent 1148e4f commit d489ae4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/exec/memory.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2351,8 +2351,8 @@ void address_space_write_cached_slow(MemoryRegionCache *cache,
23512351
static inline bool memory_access_is_direct(MemoryRegion *mr, bool is_write)
23522352
{
23532353
if (is_write) {
2354-
return memory_region_is_ram(mr) &&
2355-
!mr->readonly && !memory_region_is_ram_device(mr);
2354+
return memory_region_is_ram(mr) && !mr->readonly &&
2355+
!mr->rom_device && !memory_region_is_ram_device(mr);
23562356
} else {
23572357
return (memory_region_is_ram(mr) && !memory_region_is_ram_device(mr)) ||
23582358
memory_region_is_romd(mr);

0 commit comments

Comments
 (0)