1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
use std::any::Any;
use std::io::Error;
use std::sync::Arc;
use vmm_sys_util::eventfd::EventFd;
use crate::{InterruptIndex, InterruptSourceGroup, InterruptStatusRegister32};
#[cfg(feature = "legacy-irq")]
pub use self::legacy::*;
#[cfg(feature = "msi-irq")]
pub use self::msi::*;
pub trait InterruptNotifier: Send + Sync {
fn notify(&self) -> Result<(), Error>;
fn notifier(&self) -> Option<&EventFd>;
fn clone_boxed(&self) -> Box<dyn InterruptNotifier>;
fn as_any(&self) -> &dyn Any;
}
#[cfg(feature = "legacy-irq")]
mod legacy {
use super::*;
#[derive(Clone)]
pub struct LegacyNotifier {
pub(crate) intr_group: Arc<Box<dyn InterruptSourceGroup>>,
pub(crate) intr_status: Arc<InterruptStatusRegister32>,
pub(crate) status_bits: u32,
}
impl LegacyNotifier {
pub fn new(
intr_group: Arc<Box<dyn InterruptSourceGroup>>,
intr_status: Arc<InterruptStatusRegister32>,
status_bits: u32,
) -> Self {
Self {
intr_group,
intr_status,
status_bits,
}
}
}
impl InterruptNotifier for LegacyNotifier {
fn notify(&self) -> Result<(), Error> {
self.intr_status.set_bits(self.status_bits);
self.intr_group.trigger(0)
}
fn notifier(&self) -> Option<&EventFd> {
self.intr_group.notifier(0)
}
fn clone_boxed(&self) -> Box<dyn InterruptNotifier> {
Box::new(self.clone())
}
fn as_any(&self) -> &dyn Any {
self
}
}
}
#[cfg(feature = "msi-irq")]
mod msi {
use super::*;
#[derive(Clone)]
pub struct MsiNotifier {
pub(crate) intr_group: Arc<Box<dyn InterruptSourceGroup>>,
pub(crate) intr_index: InterruptIndex,
}
impl MsiNotifier {
pub fn new(
intr_group: Arc<Box<dyn InterruptSourceGroup>>,
intr_index: InterruptIndex,
) -> Self {
MsiNotifier {
intr_group,
intr_index,
}
}
}
impl InterruptNotifier for MsiNotifier {
fn notify(&self) -> Result<(), Error> {
self.intr_group.trigger(self.intr_index)
}
fn notifier(&self) -> Option<&EventFd> {
self.intr_group.notifier(self.intr_index)
}
fn clone_boxed(&self) -> Box<dyn InterruptNotifier> {
Box::new(self.clone())
}
fn as_any(&self) -> &dyn Any {
self
}
}
}
#[derive(Copy, Clone, Debug, Default)]
pub struct NoopNotifier {}
impl NoopNotifier {
pub fn new() -> Self {
NoopNotifier {}
}
}
impl InterruptNotifier for NoopNotifier {
fn notify(&self) -> Result<(), Error> {
Ok(())
}
fn notifier(&self) -> Option<&EventFd> {
None
}
fn clone_boxed(&self) -> Box<dyn InterruptNotifier> {
Box::new(*self)
}
fn as_any(&self) -> &dyn Any {
self
}
}
pub fn clone_notifier(notifier: &dyn InterruptNotifier) -> Box<dyn InterruptNotifier> {
notifier.clone_boxed()
}
#[cfg(test)]
mod tests {
#![allow(unused_imports)]
#![allow(dead_code)]
use super::*;
use crate::{InterruptManager, InterruptSourceType};
const VIRTIO_INTR_VRING: u32 = 0x01;
const VIRTIO_INTR_CONFIG: u32 = 0x02;
#[test]
fn create_virtio_null_notifier() {
let notifier = NoopNotifier::new();
notifier.notify().unwrap();
assert!(notifier.notifier().is_none());
}
#[cfg(feature = "kvm-legacy-irq")]
#[test]
fn test_create_legacy_notifier() {
let (_vmfd, irq_manager) = crate::kvm::tests::create_kvm_irq_manager();
let group = irq_manager
.create_group(InterruptSourceType::LegacyIrq, 0, 1)
.unwrap();
let status = Arc::new(InterruptStatusRegister32::new());
assert_eq!(status.read(), 0);
let notifer = LegacyNotifier::new(group.clone(), status.clone(), VIRTIO_INTR_CONFIG);
notifer.notify().unwrap();
assert!(notifer.notifier().is_some());
assert_eq!(notifer.status_bits, VIRTIO_INTR_CONFIG);
assert_eq!(status.read_and_clear(), VIRTIO_INTR_CONFIG);
assert_eq!(status.read(), 0);
let notifier = LegacyNotifier::new(group.clone(), status.clone(), VIRTIO_INTR_VRING);
notifier.notify().unwrap();
assert!(notifier.notifier().is_some());
assert_eq!(status.read(), VIRTIO_INTR_VRING);
status.clear_bits(VIRTIO_INTR_VRING);
assert_eq!(status.read(), 0);
let eventfd = notifier.notifier().unwrap();
assert_eq!(eventfd.read().unwrap(), 2);
let clone = clone_notifier(¬ifier);
assert_eq!(clone.as_any().type_id(), notifier.as_any().type_id());
}
#[cfg(feature = "kvm-msi-irq")]
#[test]
fn test_virtio_msi_notifier() {
let (_vmfd, irq_manager) = crate::kvm::tests::create_kvm_irq_manager();
let group = irq_manager
.create_group(InterruptSourceType::MsiIrq, 0, 3)
.unwrap();
let notifier1 = MsiNotifier::new(group.clone(), 1);
let notifier2 = MsiNotifier::new(group.clone(), 2);
let notifier3 = MsiNotifier::new(group.clone(), 3);
assert!(notifier1.notifier().is_some());
assert!(notifier2.notifier().is_some());
assert!(notifier3.notifier().is_none());
notifier1.notify().unwrap();
notifier1.notify().unwrap();
notifier2.notify().unwrap();
assert_eq!(notifier1.notifier().unwrap().read().unwrap(), 2);
assert_eq!(notifier2.notifier().unwrap().read().unwrap(), 1);
let clone = clone_notifier(¬ifier1);
assert_eq!(clone.as_any().type_id(), notifier1.as_any().type_id());
}
}