vmbus_channel/
channel.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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Trait-based VMBus channel support.

use crate::bus::ChannelRequest;
use crate::bus::ChannelServerRequest;
use crate::bus::ModifyRequest;
use crate::bus::OfferInput;
use crate::bus::OfferParams;
use crate::bus::OfferResources;
use crate::bus::OpenRequest;
use crate::bus::OpenResult;
use crate::bus::ParentBus;
use crate::gpadl::GpadlMap;
use crate::gpadl::GpadlMapView;
use anyhow::Context;
use async_trait::async_trait;
use futures::StreamExt;
use futures::stream::SelectAll;
use futures::stream::select;
use inspect::Inspect;
use inspect::InspectMut;
use mesh::RecvError;
use mesh::rpc::FailableRpc;
use mesh::rpc::Rpc;
use mesh::rpc::RpcSend;
use pal_async::task::Spawn;
use pal_async::task::Task;
use pal_event::Event;
use std::any::Any;
use std::collections::BTreeSet;
use std::marker::PhantomData;
use std::pin::pin;
use std::sync::Arc;
use thiserror::Error;
use tracing::instrument;
use vmbus_core::TaggedStream;
use vmbus_core::protocol::GpadlId;
use vmbus_ring::gparange::MultiPagedRangeBuf;
use vmcore::notify::Notify;
use vmcore::save_restore::RestoreError;
use vmcore::save_restore::SaveError;
use vmcore::save_restore::SavedStateBlob;
use vmcore::slim_event::SlimEvent;

/// An error when opening a channel.
pub type ChannelOpenError = anyhow::Error;

/// Trait implemented by VMBus devices.
#[async_trait]
pub trait VmbusDevice: Send + IntoAny + InspectMut {
    /// The offer parameters.
    fn offer(&self) -> OfferParams;

    /// The maximum number of subchannels supported by this device.
    fn max_subchannels(&self) -> u16 {
        0
    }

    /// Installs resources used by the device.
    fn install(&mut self, resources: DeviceResources);

    /// Opens the channel number `channel_idx`.
    async fn open(
        &mut self,
        channel_idx: u16,
        open_request: &OpenRequest,
    ) -> Result<(), ChannelOpenError>;

    /// Closes the channel number `channel_idx`.
    async fn close(&mut self, channel_idx: u16);

    /// Notifies the device that interrupts for channel will now target `target_vp`.
    async fn retarget_vp(&mut self, channel_idx: u16, target_vp: u32);

    /// Start processing of all channels.
    fn start(&mut self);

    /// Stop processing of all channels.
    async fn stop(&mut self);

    /// Returns a trait used to save/restore the channel.
    ///
    /// Returns `None` if save/restore is not supported, in which case the
    /// channel will be revoked and reoffered on restore.
    fn supports_save_restore(&mut self) -> Option<&mut dyn SaveRestoreVmbusDevice>;
}

/// Trait for vmbus devices that implement save/restore.
#[async_trait]
pub trait SaveRestoreVmbusDevice: VmbusDevice {
    /// Save the stopped device.
    async fn save(&mut self) -> Result<SavedStateBlob, SaveError>;

    /// Restore the stopped device.
    ///
    /// `control` must be used to restore the channel state in the server and to
    /// get the GPADL and interrupt state.
    async fn restore(
        &mut self,
        control: RestoreControl<'_>,
        state: SavedStateBlob,
    ) -> Result<(), RestoreError>;
}

/// Trait for converting into a `Box<dyn Any>`.
pub trait IntoAny {
    /// Converts into a `Box<dyn Any>`.
    fn into_any(self: Box<Self>) -> Box<dyn Any>;
}

impl<T: Any> IntoAny for T {
    fn into_any(self: Box<Self>) -> Box<dyn Any> {
        self
    }
}

/// Resources used by the device to communicate with the guest.
#[derive(Debug, Default)]
pub struct DeviceResources {
    /// Memory resources for the offer.
    pub offer_resources: OfferResources,
    /// A map providing access to GPADLs.
    pub gpadl_map: GpadlMapView,
    /// The control object for enabling subchannels.
    pub channel_control: ChannelControl,
    /// The resources for each channel.
    pub channels: Vec<ChannelResources>,
}

/// Resources used by an individual channel.
#[derive(Debug)]
pub struct ChannelResources {
    /// An event signaled by the guest.
    pub event: Notify,
}

/// Control object for enabling subchannels.
#[derive(Debug, Default, Clone)]
pub struct ChannelControl {
    send: Option<mesh::Sender<u16>>,
    max: u16,
}

/// Error indicating that too many subchannels were requested.
#[derive(Debug, Error)]
#[error("too many subchannels requested")]
pub struct TooManySubchannels;

impl ChannelControl {
    /// Enables the first `count` subchannels.
    ///
    /// If more than `count` subchannels are already enabled, this does nothing.
    ///
    /// Fails if `count` is bigger than the requested maximum returned by
    /// [`VmbusDevice::max_subchannels`].
    pub fn enable_subchannels(&self, count: u16) -> Result<(), TooManySubchannels> {
        if count > self.max {
            return Err(TooManySubchannels);
        }
        if let Some(send) = &self.send {
            send.send(count);
        }
        Ok(())
    }

    /// Returns the maximum number of supported subchannels.
    pub fn max_subchannels(&self) -> u16 {
        self.max
    }
}

/// A handle to an offered channel.
///
/// The channel will be revoked when this is dropped.
#[must_use]
pub(crate) struct GenericChannelHandle {
    state_req: mesh::Sender<StateRequest>,
    task: Task<Box<dyn VmbusDevice>>,
}

#[derive(Debug)]
enum StateRequest {
    /// Start asynchronous operations.
    Start,
    /// Stop asynchronous operations.
    Stop(Rpc<(), ()>),

    /// Reset to initial state.
    ///
    /// Must be stopped.
    Reset(Rpc<(), ()>),

    /// Save state.
    ///
    /// Must be stopped.
    Save(FailableRpc<(), Option<SavedStateBlob>>),

    /// Restore state.
    ///
    /// Must be stopped.
    Restore(FailableRpc<SavedStateBlob, ()>),

    /// Inspect state.
    Inspect(inspect::Deferred),
}

impl std::fmt::Debug for GenericChannelHandle {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.pad("ChannelHandle")
    }
}

impl GenericChannelHandle {
    /// Revokes the channel, returning it if the VMBus server is still running.
    pub async fn revoke(self) -> Option<Box<dyn VmbusDevice>> {
        drop(self.state_req);
        Some(self.task.await)
    }

    pub fn start(&self) {
        self.state_req.send(StateRequest::Start);
    }

    pub async fn stop(&self) {
        self.state_req
            .call(StateRequest::Stop, ())
            .await
            .expect("critical channel failure")
    }

    pub async fn reset(&self) {
        self.state_req
            .call(StateRequest::Reset, ())
            .await
            .expect("critical channel failure")
    }

    pub async fn save(&self) -> anyhow::Result<Option<SavedStateBlob>> {
        self.state_req
            .call(StateRequest::Save, ())
            .await
            .expect("critical channel failure")
            .map_err(|err| err.into())
    }

    pub async fn restore(&self, buffer: SavedStateBlob) -> anyhow::Result<()> {
        self.state_req
            .call(StateRequest::Restore, buffer)
            .await
            .expect("critical channel failure")
            .map_err(|err| err.into())
    }
}

impl Inspect for GenericChannelHandle {
    fn inspect(&self, req: inspect::Request<'_>) {
        self.state_req.send(StateRequest::Inspect(req.defer()));
    }
}

/// A handle to an offered channel.
///
/// The channel will be revoked when this is dropped.
#[must_use]
#[derive(Inspect)]
#[inspect(transparent)]
pub struct ChannelHandle<T: ?Sized>(GenericChannelHandle, PhantomData<fn() -> Box<T>>);

impl<T: ?Sized> std::fmt::Debug for ChannelHandle<T> {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.pad("ChannelHandle")
    }
}

impl<T: 'static + VmbusDevice> ChannelHandle<T> {
    /// Revokes the channel, returning it if the VMBus server is still running.
    pub async fn revoke(self) -> Option<T> {
        Some(
            *self
                .0
                .revoke()
                .await?
                .into_any()
                .downcast()
                .expect("type must match the one used to create it"),
        )
    }
}

impl ChannelHandle<dyn VmbusDevice> {
    /// Revokes the channel, returning it if the VMBus server is still running.
    pub async fn revoke(self) -> Option<Box<dyn VmbusDevice>> {
        self.0.revoke().await
    }
}

impl<T: 'static + VmbusDevice + ?Sized> ChannelHandle<T> {
    /// Starts the device.
    pub fn start(&self) {
        self.0.start()
    }

    /// Stops the device.
    pub async fn stop(&self) {
        self.0.stop().await
    }

    /// Resets a stopped device.
    pub async fn reset(&self) {
        self.0.reset().await
    }

    /// Saves a stopped device.
    pub async fn save(&self) -> anyhow::Result<Option<SavedStateBlob>> {
        self.0.save().await
    }

    /// Restores a stopped device.
    pub async fn restore(&self, buffer: SavedStateBlob) -> anyhow::Result<()> {
        self.0.restore(buffer).await
    }
}

async fn offer_generic(
    driver: &impl Spawn,
    bus: &(impl ParentBus + ?Sized),
    mut channel: Box<dyn VmbusDevice>,
) -> anyhow::Result<GenericChannelHandle> {
    let offer = channel.offer();
    let max_subchannels = channel.max_subchannels();
    let instance_id = offer.instance_id;
    let (request_send, request_recv) = mesh::channel();
    let (server_request_send, server_request_recv) = mesh::channel();
    let (state_req_send, state_req_recv) = mesh::channel();

    let use_event = bus.use_event();

    let events: Vec<_> = (0..max_subchannels + 1)
        .map(|_| {
            if use_event {
                Notify::from_event(Event::new())
            } else {
                Notify::from_slim_event(Arc::new(SlimEvent::new()))
            }
        })
        .collect();

    let request = OfferInput {
        params: offer,
        request_send,
        server_request_recv,
    };

    let gpadl_map = GpadlMap::new();

    let offer_result = bus.add_child(request).await?;

    let resources = events
        .iter()
        .map(|event| ChannelResources {
            event: event.clone(),
        })
        .collect();

    let (subchannel_enable_send, subchannel_enable_recv) = mesh::channel();
    channel.install(DeviceResources {
        offer_resources: offer_result,
        gpadl_map: gpadl_map.clone().view(),
        channels: resources,
        channel_control: ChannelControl {
            send: Some(subchannel_enable_send),
            max: max_subchannels,
        },
    });

    let bus = bus.clone_bus();
    let task = driver.spawn(format!("vmbus offer {}", instance_id), async move {
        let device = Device::new(
            request_recv,
            server_request_send,
            events,
            gpadl_map,
            subchannel_enable_recv,
        );
        device
            .run_channel(bus.as_ref(), channel.as_mut(), state_req_recv)
            .await;
        channel
    });

    Ok(GenericChannelHandle {
        state_req: state_req_send,
        task,
    })
}

/// A control interface for use to restore channels during the lifetime of the
/// [`SaveRestoreVmbusDevice::restore`] method.
pub struct RestoreControl<'a> {
    device: &'a mut Device,
    bus: &'a dyn ParentBus,
    offer: OfferParams,
}

impl RestoreControl<'_> {
    /// Restore the channel and subchannels.
    ///
    /// If this is never called, then the channel is revoked and reoffered
    /// instead of restored.
    ///
    /// `states` contains a boolean for the channel and each offered subchannel.
    /// If true, restore the channel into an open state. If false, restore it
    /// into a closed state.
    pub async fn restore(
        &mut self,
        states: &[bool],
    ) -> Result<Vec<Option<OpenRequest>>, ChannelRestoreError> {
        self.device.restore(self.bus, &self.offer, states).await
    }
}

/// An error returned by [`RestoreControl::restore`].
#[derive(Debug, Error)]
pub enum ChannelRestoreError {
    /// Failed to enable subchannels.
    #[error("failed to enable subchannels")]
    EnablingSubchannels(#[source] anyhow::Error),
    /// Failed to restore vmbus channel.
    #[error("failed to restore vmbus channel")]
    RestoreError(#[source] anyhow::Error),
    /// Failed to restore gpadl.
    #[error("failed to restore gpadl")]
    GpadlError(#[source] vmbus_ring::gparange::Error),
}

impl From<ChannelRestoreError> for RestoreError {
    fn from(err: ChannelRestoreError) -> Self {
        RestoreError::Other(err.into())
    }
}

struct Device {
    server_requests: Vec<mesh::Sender<ChannelServerRequest>>,
    open: Vec<bool>,
    subchannel_gpadls: Vec<BTreeSet<GpadlId>>,
    requests: SelectAll<TaggedStream<usize, mesh::Receiver<ChannelRequest>>>,
    events: Vec<Notify>,
    gpadl_map: Arc<GpadlMap>,
    subchannel_enable_recv: mesh::Receiver<u16>,
}

impl Device {
    fn new(
        request_recv: mesh::Receiver<ChannelRequest>,
        server_request_send: mesh::Sender<ChannelServerRequest>,
        events: Vec<Notify>,
        gpadl_map: Arc<GpadlMap>,
        subchannel_enable_recv: mesh::Receiver<u16>,
    ) -> Self {
        let open: Vec<bool> = vec![false];
        let subchannel_gpadls: Vec<BTreeSet<GpadlId>> = vec![];
        let mut requests: SelectAll<TaggedStream<usize, mesh::Receiver<ChannelRequest>>> =
            SelectAll::new();
        requests.push(TaggedStream::new(0, request_recv));
        Self {
            server_requests: vec![server_request_send],
            open,
            subchannel_gpadls,
            requests,
            events,
            gpadl_map,
            subchannel_enable_recv,
        }
    }

    /// Runs a VMBus channel, taking requests from `open_recv`.
    async fn run_channel(
        mut self,
        bus: &dyn ParentBus,
        channel: &mut dyn VmbusDevice,
        state_req_recv: mesh::Receiver<StateRequest>,
    ) {
        enum Event {
            Request(usize, Option<ChannelRequest>),
            EnableSubchannels(u16),
            StateRequest(Result<StateRequest, RecvError>),
        }

        let mut state_req_recv = pin!(futures::stream::unfold(state_req_recv, async |mut recv| {
            Some((recv.recv().await, recv))
        }));

        let map_request = |(idx, req)| Event::Request(idx, req);
        loop {
            let mut s = select(
                (&mut self.requests).map(map_request),
                select(
                    (&mut self.subchannel_enable_recv).map(Event::EnableSubchannels),
                    (&mut state_req_recv).map(Event::StateRequest),
                ),
            );
            if let Some(event) = s.next().await {
                match event {
                    Event::Request(idx, Some(request)) => {
                        self.handle_channel_request(idx, request, channel).await;
                    }
                    Event::Request(_idx, None) => continue,
                    Event::EnableSubchannels(count) => {
                        let offer = channel.offer();
                        let _ = self.enable_channels(bus, &offer, count as usize + 1).await;
                    }
                    Event::StateRequest(Ok(request)) => {
                        self.handle_state_request(request, channel, bus).await;
                    }
                    Event::StateRequest(Err(_)) => {
                        // Revoke.
                        break;
                    }
                }
            }
        }
        // Revoke the channel.
        drop(self.server_requests);
        // Wait for the revokes to finish.
        // When vmbus (sub)channels are closed, `self.requests` ends up with stale
        // channels i.e. (self.requests.value.is_none()) that are not getting cleaned
        // up. Waiting on those channels never completes here. Workaround the issue by
        // only waiting on `valid` channels.
        // TODO: The original issue should be fixed and the code here should be reverted
        //       to wait for all (i.e. while self.requests.next().await.is_some() {})
        for recv in self.requests.iter_mut() {
            if recv.value().is_some() {
                while recv.next().await.is_some() {}
            }
        }

        for subchannel_idx in (0..self.open.len()).rev() {
            if self.open[subchannel_idx] {
                channel.close(subchannel_idx as u16).await;
            }
        }
    }

    #[instrument(level = "debug", skip_all, fields(channel_idx, ?request))]
    async fn handle_channel_request(
        &mut self,
        channel_idx: usize,
        request: ChannelRequest,
        channel: &mut dyn VmbusDevice,
    ) {
        match request {
            ChannelRequest::Open(rpc) => {
                rpc.handle(async |open_request| {
                    self.handle_open(channel, channel_idx, open_request).await
                })
                .await
            }
            ChannelRequest::Close(rpc) => {
                rpc.handle(async |()| {
                    self.handle_close(channel_idx, channel).await;
                })
                .await
            }
            ChannelRequest::Gpadl(rpc) => rpc.handle_sync(|gpadl| {
                self.handle_gpadl(gpadl.id, gpadl.count, gpadl.buf, channel_idx);
                true
            }),
            ChannelRequest::TeardownGpadl(rpc) => {
                self.handle_teardown_gpadl(rpc, channel_idx);
            }
            ChannelRequest::Modify(rpc) => {
                rpc.handle(async |req| {
                    self.handle_modify(channel, channel_idx, req).await;
                    0
                })
                .await
            }
        }
    }

    async fn handle_open(
        &mut self,
        channel: &mut dyn VmbusDevice,
        channel_idx: usize,
        open_request: OpenRequest,
    ) -> Option<OpenResult> {
        assert!(!self.open[channel_idx]);
        // N.B. Any asynchronous GPADL requests will block while in
        //      open(). This should be fine for all known devices.
        let opened = if let Err(error) = channel.open(channel_idx as u16, &open_request).await {
            tracelimit::error_ratelimited!(
                error = error.as_ref() as &dyn std::error::Error,
                "failed to open channel"
            );
            None
        } else {
            Some(OpenResult {
                guest_to_host_interrupt: self.events[channel_idx].clone().interrupt(),
            })
        };
        self.open[channel_idx] = opened.is_some();
        opened
    }

    async fn handle_close(&mut self, channel_idx: usize, channel: &mut dyn VmbusDevice) {
        assert!(self.open[channel_idx]);
        if channel_idx == 0 {
            // Revoke all subchannels.
            self.server_requests.truncate(1);
            for recv in self.requests.iter_mut() {
                if let Some(&idx) = recv.value() {
                    if idx > 0 {
                        while recv.next().await.is_some() {}
                    }
                }
            }
            for subchannel_idx in 1..self.open.len() {
                if self.open[subchannel_idx] {
                    channel.close(subchannel_idx as u16).await;
                }
                for &gpadl_id in &self.subchannel_gpadls[subchannel_idx - 1] {
                    self.gpadl_map.remove(gpadl_id, Box::new(|| ()));
                }
            }
            self.open.truncate(1);
            self.subchannel_gpadls.clear();
        }
        channel.close(channel_idx as u16).await;
        self.open[channel_idx] = false;
        if channel_idx == 0 {
            // Drain any stale enable subchannel requests.
            while self.subchannel_enable_recv.try_recv().is_ok() {}
        }
    }

    fn handle_gpadl(&mut self, id: GpadlId, count: u16, buf: Vec<u64>, channel_idx: usize) {
        self.gpadl_map
            .add(id, MultiPagedRangeBuf::new(count.into(), buf).unwrap());
        if channel_idx > 0 {
            self.subchannel_gpadls[channel_idx - 1].insert(id);
        }
    }

    fn handle_teardown_gpadl(&mut self, rpc: Rpc<GpadlId, ()>, channel_idx: usize) {
        let id = *rpc.input();
        if let Some(f) = self.gpadl_map.remove(
            id,
            Box::new(move || {
                rpc.complete(());
            }),
        ) {
            f()
        }
        if channel_idx > 0 {
            assert!(self.subchannel_gpadls[channel_idx - 1].remove(&id));
        }
    }

    async fn handle_modify(
        &mut self,
        channel: &mut dyn VmbusDevice,
        channel_idx: usize,
        req: ModifyRequest,
    ) {
        match req {
            ModifyRequest::TargetVp { target_vp } => {
                channel.retarget_vp(channel_idx as u16, target_vp).await
            }
        }
    }

    #[instrument(level = "debug", skip_all, fields(?request))]
    async fn handle_state_request(
        &mut self,
        request: StateRequest,
        channel: &mut dyn VmbusDevice,
        bus: &dyn ParentBus,
    ) {
        match request {
            StateRequest::Start => {
                channel.start();
            }
            StateRequest::Stop(rpc) => {
                rpc.handle(async |()| {
                    channel.stop().await;
                })
                .await;
            }
            StateRequest::Reset(rpc) => {
                rpc.complete(());
            }
            StateRequest::Save(rpc) => {
                rpc.handle_failable(async |()| {
                    if let Some(channel) = channel.supports_save_restore() {
                        channel.save().await.map(Some)
                    } else {
                        Ok(None)
                    }
                })
                .await;
            }
            StateRequest::Restore(rpc) => {
                rpc.handle_failable(async |buffer| {
                    let channel = channel
                        .supports_save_restore()
                        .context("saved state not supported")?;
                    let control = RestoreControl {
                        device: &mut *self,
                        offer: channel.offer(),
                        bus,
                    };
                    channel
                        .restore(control, buffer)
                        .await
                        .map_err(anyhow::Error::from)?;
                    anyhow::Ok(())
                })
                .await;
            }
            StateRequest::Inspect(deferred) => {
                deferred.inspect(&mut *channel);
            }
        }
    }

    async fn enable_channels(
        &mut self,
        bus: &dyn ParentBus,
        offer: &OfferParams,
        count: usize,
    ) -> anyhow::Result<()> {
        // Offer new subchannels.
        let mut r = Ok(());
        for subchannel_idx in self.server_requests.len()..count {
            let (request_send, request_recv) = mesh::channel();
            let (server_request_send, server_request_recv) = mesh::channel();
            let request = OfferInput {
                params: OfferParams {
                    subchannel_index: subchannel_idx as u16,
                    ..offer.clone()
                },
                request_send,
                server_request_recv,
            };
            match bus.add_child(request).await {
                Ok(_) => {
                    self.requests
                        .push(TaggedStream::new(subchannel_idx, request_recv));
                    self.server_requests.push(server_request_send);
                    self.subchannel_gpadls.push(BTreeSet::new());
                    self.open.push(false);
                }
                Err(err) => {
                    tracing::error!(
                        error = err.as_ref() as &dyn std::error::Error,
                        "could not offer subchannel"
                    );
                    if r.is_ok() {
                        r = Err(err);
                    }
                }
            }
        }
        r
    }

    pub async fn restore(
        &mut self,
        bus: &dyn ParentBus,
        offer: &OfferParams,
        states: &[bool],
    ) -> Result<Vec<Option<OpenRequest>>, ChannelRestoreError> {
        self.enable_channels(bus, offer, states.len())
            .await
            .map_err(ChannelRestoreError::EnablingSubchannels)?;

        let mut results = Vec::with_capacity(states.len());
        for (channel_idx, (open, event)) in states.iter().copied().zip(&self.events).enumerate() {
            let open_result = open.then(|| OpenResult {
                guest_to_host_interrupt: event.clone().interrupt(),
            });
            let result = self.server_requests[channel_idx]
                .call_failable(ChannelServerRequest::Restore, open_result)
                .await
                .map_err(|err| ChannelRestoreError::RestoreError(err.into()))?;

            assert!(open == result.open_request.is_some());

            for gpadl in result.gpadls {
                let buf =
                    match MultiPagedRangeBuf::new(gpadl.request.count.into(), gpadl.request.buf) {
                        Ok(buf) => buf,
                        Err(err) => {
                            if gpadl.accepted {
                                return Err(ChannelRestoreError::GpadlError(err));
                            } else {
                                // The GPADL will be reoffered later and we can fail
                                // it then.
                                continue;
                            }
                        }
                    };
                self.gpadl_map.add(gpadl.request.id, buf);
                if channel_idx > 0 {
                    self.subchannel_gpadls[channel_idx - 1].insert(gpadl.request.id);
                }
            }

            results.push(result.open_request);
        }
        self.open.copy_from_slice(states);
        Ok(results)
    }
}

/// Offers a new channel, returning a typed handle to get back the original
/// channel when it's revoked.
pub async fn offer_channel<T: 'static + VmbusDevice>(
    driver: &impl Spawn,
    bus: &(impl ParentBus + ?Sized),
    channel: T,
) -> anyhow::Result<ChannelHandle<T>> {
    let handle = offer_generic(driver, bus, Box::new(channel)).await?;
    Ok(ChannelHandle(handle, PhantomData))
}

/// Offers a new channel with the type erased.
pub async fn offer_generic_channel(
    driver: &impl Spawn,
    bus: &(impl ParentBus + ?Sized),
    channel: Box<dyn VmbusDevice>,
) -> anyhow::Result<ChannelHandle<dyn VmbusDevice>> {
    let handle = offer_generic(driver, bus, channel).await?;
    Ok(ChannelHandle(handle, PhantomData))
}