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
use super::REQUEST_HDR_SIZE;
use crate::requests::MAGIC_NUMBER;
use crate::requests::{AuthType, BodyType, Opcode, ProviderID};
use crate::requests::{ResponseStatus, Result};
#[cfg(feature = "fuzz")]
use arbitrary::Arbitrary;
use num::FromPrimitive;
use serde::{Deserialize, Serialize};
use std::convert::TryFrom;
use std::io::{Read, Write};
#[cfg_attr(feature = "fuzz", derive(Arbitrary))]
#[derive(Copy, Clone, Debug, Serialize, Deserialize)]
pub struct RawRequestHeader {
pub version_maj: u8,
pub version_min: u8,
pub provider: u8,
pub session: u64,
pub content_type: u8,
pub accept_type: u8,
pub auth_type: u8,
pub body_len: u32,
pub auth_len: u16,
pub opcode: u16,
}
impl RawRequestHeader {
#[cfg(feature = "testing")]
#[allow(clippy::new_without_default)]
pub fn new() -> RawRequestHeader {
RawRequestHeader {
version_maj: 0,
version_min: 0,
provider: 0,
session: 0,
content_type: 0,
accept_type: 0,
auth_type: 0,
body_len: 0,
auth_len: 0,
opcode: 0,
}
}
pub fn write_to_stream<W: Write>(&self, stream: &mut W) -> Result<()> {
stream.write_all(&bincode::serialize(&MAGIC_NUMBER)?)?;
stream.write_all(&bincode::serialize(&REQUEST_HDR_SIZE)?)?;
stream.write_all(&bincode::serialize(&self)?)?;
Ok(())
}
pub fn read_from_stream<R: Read>(mut stream: &mut R) -> Result<RawRequestHeader> {
let magic_number = get_from_stream!(stream, u32);
let hdr_size = get_from_stream!(stream, u16);
if magic_number != MAGIC_NUMBER || hdr_size != REQUEST_HDR_SIZE {
return Err(ResponseStatus::InvalidHeader);
}
let mut bytes = vec![0_u8; usize::try_from(hdr_size)?];
stream.read_exact(&mut bytes)?;
let raw_request: RawRequestHeader = bincode::deserialize(&bytes)?;
if raw_request.version_maj != 1 || raw_request.version_min != 0 {
Err(ResponseStatus::WireProtocolVersionNotSupported)
} else {
Ok(raw_request)
}
}
}
#[cfg_attr(feature = "fuzz", derive(Arbitrary))]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct RequestHeader {
pub version_maj: u8,
pub version_min: u8,
pub provider: ProviderID,
pub session: u64,
pub content_type: BodyType,
pub accept_type: BodyType,
pub auth_type: AuthType,
pub opcode: Opcode,
}
impl RequestHeader {
#[cfg(feature = "testing")]
pub(crate) fn new() -> RequestHeader {
RequestHeader {
version_maj: 0,
version_min: 0,
provider: ProviderID::CoreProvider,
session: 0,
content_type: BodyType::Protobuf,
accept_type: BodyType::Protobuf,
auth_type: AuthType::Direct,
opcode: Opcode::Ping,
}
}
}
impl TryFrom<RawRequestHeader> for RequestHeader {
type Error = ResponseStatus;
fn try_from(header: RawRequestHeader) -> ::std::result::Result<Self, Self::Error> {
let content_type: BodyType = match FromPrimitive::from_u8(header.content_type) {
Some(content_type) => content_type,
None => return Err(ResponseStatus::ContentTypeNotSupported),
};
let accept_type: BodyType = match FromPrimitive::from_u8(header.accept_type) {
Some(accept_type) => accept_type,
None => return Err(ResponseStatus::AcceptTypeNotSupported),
};
let auth_type: AuthType = match FromPrimitive::from_u8(header.auth_type) {
Some(auth_type) => auth_type,
None => return Err(ResponseStatus::AuthenticatorDoesNotExist),
};
let opcode: Opcode = match FromPrimitive::from_u16(header.opcode) {
Some(opcode) => opcode,
None => return Err(ResponseStatus::OpcodeDoesNotExist),
};
Ok(RequestHeader {
version_maj: header.version_maj,
version_min: header.version_min,
provider: ProviderID::try_from(header.provider)?,
session: header.session,
content_type,
accept_type,
auth_type,
opcode,
})
}
}
impl From<RequestHeader> for RawRequestHeader {
fn from(header: RequestHeader) -> Self {
RawRequestHeader {
version_maj: header.version_maj,
version_min: header.version_min,
provider: header.provider as u8,
session: header.session,
content_type: header.content_type as u8,
accept_type: header.accept_type as u8,
auth_type: header.auth_type as u8,
body_len: 0,
auth_len: 0,
opcode: header.opcode as u16,
}
}
}