vmbus_relay/
saved_state.rs

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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

use crate::ChannelId;
use crate::ChannelInfo;
use crate::InterceptChannelRequest;
use crate::InterruptRelay;
use crate::RelayChannelRequest;
use crate::RelayChannelTask;
use crate::RelayTask;
use anyhow::Context as _;
use anyhow::Result;
use mesh::payload::Protobuf;
use mesh::rpc::RpcSend;
use pal_event::Event;
use std::sync::Arc;
use std::sync::OnceLock;
use std::sync::atomic::Ordering;
use vmbus_channel::bus::ChannelServerRequest;
use vmbus_channel::bus::OpenResult;
use vmbus_client as client;
use vmcore::interrupt::Interrupt;
use vmcore::notify::Notify;
use vmcore::save_restore::SavedStateRoot;

impl RelayTask {
    pub async fn handle_save(&self) -> SavedState {
        assert!(!self.running);

        let channels = futures::future::join_all(
            self.channels
                .iter()
                .map(|(id, channel)| self.save_channel_state(*id, channel)),
        )
        .await
        .drain(..)
        .flatten()
        .collect();

        SavedState {
            use_interrupt_relay: self.use_interrupt_relay.load(Ordering::SeqCst),
            channels,
        }
    }

    pub async fn handle_restore(&mut self, state: SavedState) -> Result<()> {
        let SavedState {
            use_interrupt_relay,
            channels,
        } = state;

        self.use_interrupt_relay
            .store(use_interrupt_relay, Ordering::SeqCst);

        for saved_channel in channels {
            let Some(channel) = self.channels.get_mut(&ChannelId(saved_channel.channel_id)) else {
                tracing::info!(
                    channel_id = saved_channel.channel_id,
                    "channel not found during restore, probably revoked"
                );
                continue;
            };
            match channel {
                ChannelInfo::Relay(info) => {
                    info.relay_request_send
                        .call_failable(RelayChannelRequest::Restore, saved_channel)
                        .await?;
                }
                ChannelInfo::Intercept(id) => {
                    if saved_channel.is_open {
                        anyhow::bail!("cannot restore intercepted channel {id}");
                    }
                }
            }
        }

        Ok(())
    }

    async fn save_channel_state(
        &self,
        channel_id: ChannelId,
        channel: &ChannelInfo,
    ) -> Option<Channel> {
        match channel {
            ChannelInfo::Relay(relay) => {
                match relay
                    .relay_request_send
                    .call(RelayChannelRequest::Save, ())
                    .await
                {
                    Ok(result) => Some(result),
                    Err(err) => {
                        tracing::error!(
                            err = &err as &dyn std::error::Error,
                            "Failed to save relay channel state"
                        );
                        None
                    }
                }
            }
            ChannelInfo::Intercept(id) => {
                let intercepted_save_state = if let Some(intercepted_channel) =
                    self.intercept_channels.get(id)
                {
                    let result = intercepted_channel
                        .call(InterceptChannelRequest::Save, ())
                        .await;
                    match result {
                        Ok(save_state) => mesh_protobuf::encode(save_state),
                        Err(err) => {
                            tracing::error!(err = &err as &dyn std::error::Error, %id, "Failed to call device to save state");
                            Vec::new()
                        }
                    }
                } else {
                    tracing::error!(%id, "Intercepted device missing during save operation");
                    Vec::new()
                };
                Some(Channel {
                    channel_id: channel_id.0,
                    event_flag: None,
                    intercepted: true,
                    intercepted_save_state,
                    is_open: false,
                })
            }
        }
    }
}

impl RelayChannelTask {
    /// Handle creating channel save state.
    pub(crate) fn handle_save(&self) -> Channel {
        Channel {
            channel_id: self.channel.channel_id.0,
            event_flag: self
                .channel
                .interrupt_relay
                .as_ref()
                .map(|interrupt| interrupt.event_flag),
            intercepted: false,
            intercepted_save_state: Vec::new(),
            is_open: self.channel.is_open,
        }
    }

    pub(crate) async fn handle_restore(&mut self, state: Channel) -> Result<()> {
        let Channel {
            channel_id: _,
            event_flag,
            intercepted,
            intercepted_save_state: _,
            is_open,
        } = state;

        if intercepted {
            anyhow::bail!("cannot restore an intercepted channel");
        }

        // FUTURE: restore vmbus_client before vmbus_server to avoid this
        // indirection. This requires vmbus_client saving/restoring the
        // connection ID itself.
        let restored_interrupt = Arc::new(OnceLock::<Interrupt>::new());
        let guest_to_host_interrupt = Interrupt::from_fn({
            let x = restored_interrupt.clone();
            move || {
                if let Some(x) = x.get() {
                    x.deliver();
                }
            }
        });

        let open_result = is_open.then(|| OpenResult {
            guest_to_host_interrupt,
        });
        let result = self
            .channel
            .server_request_send
            .call(ChannelServerRequest::Restore, open_result)
            .await
            .context("Failed to send restore request")?
            .map_err(|err| {
                anyhow::Error::from(err).context("failed to restore vmbus relay channel")
            })?;

        if let Some(request) = result.open_request {
            let use_interrupt_relay = self.channel.use_interrupt_relay.load(Ordering::SeqCst);
            if use_interrupt_relay && event_flag.is_none() {
                anyhow::bail!("using an interrupt relay but no event flag was provided");
            }
            let (incoming_event, notify) = if use_interrupt_relay {
                let event = Event::new();
                let notify = Notify::from_event(event.clone())
                    .pollable(self.driver.as_ref())
                    .context("failed to create polled notify")?;
                Some((event, notify))
            } else {
                None
            }
            .unzip();

            let opened = self
                .channel
                .request_send
                .call_failable(
                    client::ChannelRequest::Restore,
                    client::RestoreRequest {
                        connection_id: request.open_data.connection_id,
                        redirected_event_flag: event_flag,
                        incoming_event,
                    },
                )
                .await
                .context("client failed to restore channel")?;

            if let Some(notify) = notify {
                self.channel.interrupt_relay = Some(InterruptRelay {
                    event_flag: event_flag.unwrap(),
                    notify,
                    interrupt: request.interrupt,
                });
            }

            restored_interrupt
                .set(opened.guest_to_host_signal)
                .ok()
                .unwrap();
        }

        Ok(())
    }
}

#[derive(Clone, Protobuf, SavedStateRoot)]
#[mesh(package = "vmbus.relay")]
pub struct SavedState {
    #[mesh(1)]
    pub(crate) use_interrupt_relay: bool,
    // Fields 2, 3, and 4 are used by the legacy saved state but are ignored here.
    #[mesh(5)]
    pub(crate) channels: Vec<Channel>,
}

#[derive(Clone, Protobuf)]
#[mesh(package = "vmbus.relay")]
pub(crate) struct Channel {
    #[mesh(1)]
    pub(crate) channel_id: u32,
    #[mesh(2)]
    pub(crate) event_flag: Option<u16>,
    #[mesh(3)]
    pub(crate) intercepted: bool,
    #[mesh(4)]
    pub(crate) intercepted_save_state: Vec<u8>,
    #[mesh(5)]
    pub(crate) is_open: bool,
}