netvsp/
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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Saved state definitions.

use mesh::payload::Protobuf;
use vmbus_channel::gpadl::GpadlId;
use vmcore::save_restore::SavedStateRoot;

#[derive(Debug, Protobuf, SavedStateRoot)]
#[mesh(package = "net.netvsp")]
pub struct SavedState {
    #[mesh(1)]
    pub open: Option<OpenState>,
}

#[derive(Debug, Protobuf)]
#[mesh(package = "net.netvsp")]
pub struct OpenState {
    #[mesh(1)]
    pub primary: Primary,
}

#[derive(Debug, Protobuf)]
#[mesh(package = "net.netvsp")]
pub enum Primary {
    #[mesh(1)]
    Version,
    #[mesh(2)]
    Init(#[mesh(1)] InitPrimary),
    #[mesh(3)]
    Ready(#[mesh(1)] ReadyPrimary),
}

#[derive(Debug, Protobuf)]
#[mesh(package = "net.netvsp")]
pub struct InitPrimary {
    #[mesh(1)]
    pub version: u32,
    #[mesh(2)]
    pub ndis_config: Option<NdisConfig>,
    #[mesh(3)]
    pub ndis_version: Option<NdisVersion>,
    #[mesh(4)]
    pub receive_buffer: Option<ReceiveBuffer>,
    #[mesh(5)]
    pub send_buffer: Option<SendBuffer>,
}

#[derive(Debug, Protobuf)]
#[mesh(package = "net.netvsp")]
pub struct NdisVersion {
    #[mesh(1)]
    pub major: u32,
    #[mesh(2)]
    pub minor: u32,
}

#[derive(Debug, Protobuf)]
#[mesh(package = "net.netvsp")]
pub struct NdisConfig {
    #[mesh(1)]
    pub mtu: u32,
    #[mesh(2)]
    pub capabilities: u64,
}

#[derive(Copy, Clone, Debug, Protobuf)]
#[mesh(package = "net.netvsp")]
pub enum GuestVfState {
    #[mesh(1)]
    NoState,
    #[mesh(2)]
    AvailableAdvertised,
    #[mesh(3)]
    Ready,
    #[mesh(4)]
    DataPathSwitchPending {
        #[mesh(1)]
        to_guest: bool,
        #[mesh(2)]
        id: Option<u64>,
        #[mesh(3)]
        result: Option<bool>,
    },
    #[mesh(5)]
    DataPathSwitched,
}

#[derive(Debug, Protobuf)]
#[mesh(package = "net.netvsp")]
pub struct ReadyPrimary {
    #[mesh(1)]
    pub version: u32,
    #[mesh(2)]
    pub receive_buffer: ReceiveBuffer,
    #[mesh(3)]
    pub send_buffer: Option<SendBuffer>,
    #[mesh(4)]
    pub ndis_config: NdisConfig,
    #[mesh(5)]
    pub ndis_version: NdisVersion,
    #[mesh(6)]
    pub rndis_state: RndisState,
    #[mesh(7)]
    pub guest_vf_state: GuestVfState,
    #[mesh(8)]
    pub offload_config: OffloadConfig,
    #[mesh(9)]
    pub pending_offload_change: bool,
    #[mesh(10)]
    pub control_messages: Vec<IncomingControlMessage>,
    #[mesh(11)]
    pub rss_state: Option<RssState>,
    #[mesh(12)]
    pub channels: Vec<Option<Channel>>,
    #[mesh(13)]
    pub tx_spread_sent: bool,
    #[mesh(14)]
    pub guest_link_down: bool,
    #[mesh(15)]
    pub pending_link_action: Option<bool>,
}

#[derive(Debug, Protobuf)]
#[mesh(package = "net.netvsp")]
pub enum RndisState {
    #[mesh(1)]
    Initializing,
    #[mesh(2)]
    Operational,
    #[mesh(3)]
    Halted,
}

#[derive(Debug, Protobuf)]
#[mesh(package = "net.netvsp")]
pub struct OffloadConfig {
    #[mesh(1)]
    pub checksum_tx: ChecksumOffloadConfig,
    #[mesh(2)]
    pub checksum_rx: ChecksumOffloadConfig,
    #[mesh(3)]
    pub lso4: bool,
    #[mesh(4)]
    pub lso6: bool,
}

#[derive(Debug, Protobuf)]
#[mesh(package = "net.netvsp")]
pub struct ChecksumOffloadConfig {
    #[mesh(1)]
    pub ipv4_header: bool,
    #[mesh(2)]
    pub tcp4: bool,
    #[mesh(3)]
    pub udp4: bool,
    #[mesh(4)]
    pub tcp6: bool,
    #[mesh(5)]
    pub udp6: bool,
}

#[derive(Debug, Protobuf)]
#[mesh(package = "net.netvsp")]
pub struct RssState {
    #[mesh(1)]
    pub key: Vec<u8>,
    #[mesh(2)]
    pub indirection_table: Vec<u16>,
}

#[derive(Debug, Protobuf)]
#[mesh(package = "net.netvsp")]
pub struct IncomingControlMessage {
    #[mesh(1)]
    pub message_type: u32,
    #[mesh(2)]
    pub data: Vec<u8>,
}

#[derive(Debug, Protobuf)]
#[mesh(package = "net.netvsp")]
pub struct ReceiveBuffer {
    #[mesh(1)]
    pub gpadl_id: GpadlId,
    #[mesh(2)]
    pub id: u16,
    #[mesh(3)]
    pub sub_allocation_size: u32,
}

#[derive(Debug, Protobuf)]
#[mesh(package = "net.netvsp")]
pub struct SendBuffer {
    #[mesh(1)]
    pub gpadl_id: GpadlId,
}

#[derive(Debug, Protobuf)]
#[mesh(package = "net.netvsp")]
pub struct Channel {
    #[mesh(1)]
    pub pending_tx_completions: Vec<u64>,
    #[mesh(2)]
    pub in_use_rx: Vec<Rx>,
}

#[derive(Debug, Protobuf)]
#[mesh(package = "net.netvsp")]
pub struct Rx {
    #[mesh(1)]
    pub buffers: Vec<u32>,
}