[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 08/12] rust: hpet: do not access fields of SysBusDevice
From: |
Paolo Bonzini |
Subject: |
[PATCH 08/12] rust: hpet: do not access fields of SysBusDevice |
Date: |
Thu, 27 Feb 2025 15:22:15 +0100 |
Fields of SysBusDevice must only be accessed with the BQL taken. Add
a wrapper that verifies that.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
rust/hw/timer/hpet/src/hpet.rs | 4 +---
rust/qemu-api/src/sysbus.rs | 12 ++++++++++++
2 files changed, 13 insertions(+), 3 deletions(-)
diff --git a/rust/hw/timer/hpet/src/hpet.rs b/rust/hw/timer/hpet/src/hpet.rs
index ce4b289d0c8..a440c9f4cb9 100644
--- a/rust/hw/timer/hpet/src/hpet.rs
+++ b/rust/hw/timer/hpet/src/hpet.rs
@@ -724,8 +724,6 @@ fn realize(&self) {
}
fn reset_hold(&self, _type: ResetType) {
- let sbd = self.upcast::<SysBusDevice>();
-
for timer in self.timers.iter().take(self.num_timers.get()) {
timer.borrow_mut().reset();
}
@@ -738,7 +736,7 @@ fn reset_hold(&self, _type: ResetType) {
HPETFwConfig::update_hpet_cfg(
self.hpet_id.get(),
self.capability.get() as u32,
- sbd.mmio[0].addr,
+ self.mmio_addr(0).unwrap(),
);
// to document that the RTC lowers its output on reset as well
diff --git a/rust/qemu-api/src/sysbus.rs b/rust/qemu-api/src/sysbus.rs
index 48803a655f9..0790576d446 100644
--- a/rust/qemu-api/src/sysbus.rs
+++ b/rust/qemu-api/src/sysbus.rs
@@ -64,6 +64,18 @@ fn init_irq(&self, irq: &InterruptSource) {
}
}
+ // TODO: do we want a type like GuestAddress here?
+ fn mmio_addr(&self, id: u32) -> Option<u64> {
+ assert!(bql_locked());
+ let sbd = self.upcast();
+ let id: usize = id.try_into().unwrap();
+ if sbd.mmio[id].memory.is_null() {
+ None
+ } else {
+ Some(sbd.mmio[id].addr)
+ }
+ }
+
// TODO: do we want a type like GuestAddress here?
fn mmio_map(&self, id: u32, addr: u64) {
assert!(bql_locked());
--
2.48.1
- [PATCH v2 00/12] rust: wrap all C types exposed through qemu_api, Paolo Bonzini, 2025/02/27
- [PATCH 03/12] rust: vmstate: add std::pin::Pin as transparent wrapper, Paolo Bonzini, 2025/02/27
- [PATCH 01/12] rust: cell: add wrapper for FFI types, Paolo Bonzini, 2025/02/27
- [PATCH 04/12] rust: timer: wrap QEMUTimer with Opaque<> and express pinning requirements, Paolo Bonzini, 2025/02/27
- [PATCH 06/12] rust: qom: wrap Object with Opaque<>, Paolo Bonzini, 2025/02/27
- [PATCH 05/12] rust: irq: wrap IRQState with Opaque<>, Paolo Bonzini, 2025/02/27
- [PATCH 09/12] rust: sysbus: wrap SysBusDevice with Opaque<>, Paolo Bonzini, 2025/02/27
- [PATCH 11/12] rust: chardev: wrap Chardev with Opaque<>, Paolo Bonzini, 2025/02/27
- [PATCH 07/12] rust: qdev: wrap Clock and DeviceState with Opaque<>, Paolo Bonzini, 2025/02/27
- [PATCH 08/12] rust: hpet: do not access fields of SysBusDevice,
Paolo Bonzini <=
- [PATCH 10/12] rust: memory: wrap MemoryRegion with Opaque<>, Paolo Bonzini, 2025/02/27
- [PATCH 02/12] rust: qemu_api_macros: add Wrapper derive macro, Paolo Bonzini, 2025/02/27
- [PATCH 12/12] rust: bindings: remove more unnecessary Send/Sync impls, Paolo Bonzini, 2025/02/27