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
pub mod decode;
pub mod encode;
use std::{
io::{self, Read, Write},
pin::Pin,
task::{Context, Poll},
};
use futures::{ready, AsyncRead, AsyncReadExt, AsyncWrite, AsyncWriteExt, FutureExt};
use crate::{
secure::{stream::decode::decode_secure_head, SecurePacket},
vec_buf::VecBuf,
};
use self::encode::to_encrypted_packet;
use super::{
crypto::{CryptoError, CryptoStore},
SECURE_HEAD_SIZE,
};
#[derive(Debug)]
pub enum SecureError {
Bincode(bincode::Error),
Io(io::Error),
Crypto(CryptoError),
}
impl From<bincode::Error> for SecureError {
fn from(err: bincode::Error) -> Self {
Self::Bincode(err)
}
}
impl From<io::Error> for SecureError {
fn from(err: io::Error) -> Self {
Self::Io(err)
}
}
impl From<CryptoError> for SecureError {
fn from(err: CryptoError) -> Self {
Self::Crypto(err)
}
}
#[derive(Debug)]
pub struct SecureStream<S> {
crypto: CryptoStore,
stream: S,
read_buf: VecBuf,
}
impl<S> SecureStream<S> {
pub fn new(crypto: CryptoStore, stream: S) -> Self {
Self {
crypto,
stream,
read_buf: VecBuf::new(),
}
}
pub fn stream(&self) -> &S {
&self.stream
}
pub fn stream_mut(&mut self) -> &mut S {
&mut self.stream
}
pub fn crypto(&self) -> &CryptoStore {
&self.crypto
}
pub fn unwrap(self) -> (CryptoStore, S) {
(self.crypto, self.stream)
}
}
impl<S: Read> SecureStream<S> {
pub fn read_packet(&mut self) -> Result<SecurePacket, SecureError> {
let mut head_buf = [0_u8; SECURE_HEAD_SIZE];
self.stream.read_exact(&mut head_buf)?;
let mut packet = decode_secure_head(&head_buf)?;
self.stream.read_exact(&mut packet.data)?;
let data = self.crypto.decrypt_aes(&packet.data, &packet.header.iv)?;
Ok(SecurePacket {
header: packet.header,
data,
})
}
}
impl<S: Write> SecureStream<S> {
pub fn write_data(&mut self, buf: &[u8]) -> Result<usize, SecureError> {
let encrypted = to_encrypted_packet(&self.crypto, buf)?;
self.stream.write_all(&encrypted)?;
Ok(encrypted.len())
}
}
impl<S: Read> Read for SecureStream<S> {
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
if self.read_buf.is_empty() {
let chunk = self.read_packet().map_err(io_error_map)?;
self.read_buf.push(chunk.data);
}
self.read_buf.read(buf)
}
}
impl<S: Write> Write for SecureStream<S> {
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
self.write_data(buf).map_err(io_error_map)?;
Ok(buf.len())
}
fn flush(&mut self) -> io::Result<()> {
self.stream.flush()
}
}
impl<S: AsyncRead + Unpin> SecureStream<S> {
pub async fn read_packet_async(&mut self) -> Result<SecurePacket, SecureError> {
let mut head_buf = [0_u8; SECURE_HEAD_SIZE];
self.stream.read_exact(&mut head_buf).await?;
let mut packet = decode_secure_head(&head_buf)?;
self.stream.read_exact(&mut packet.data).await?;
let data = self.crypto.decrypt_aes(&packet.data, &packet.header.iv)?;
Ok(SecurePacket {
header: packet.header,
data,
})
}
}
impl<S: AsyncWrite + Unpin> SecureStream<S> {
pub async fn write_data_async(&mut self, buf: &[u8]) -> Result<usize, SecureError> {
let encrypted = to_encrypted_packet(&self.crypto, buf)?;
self.stream.write_all(&encrypted).await?;
Ok(encrypted.len())
}
}
impl<S: AsyncRead + Unpin> AsyncRead for SecureStream<S> {
fn poll_read(
mut self: Pin<&mut Self>,
cx: &mut Context,
buf: &mut [u8],
) -> Poll<io::Result<usize>> {
if self.read_buf.is_empty() {
let chunk = ready!(Box::pin(self.read_packet_async())
.poll_unpin(cx)
.map_err(io_error_map)?);
self.read_buf.push(chunk.data);
}
Poll::Ready(self.read_buf.read(buf))
}
}
impl<S: AsyncWrite + Unpin> AsyncWrite for SecureStream<S> {
fn poll_write(
mut self: Pin<&mut Self>,
cx: &mut Context,
buf: &[u8],
) -> Poll<io::Result<usize>> {
ready!(Box::pin(self.write_data_async(&buf))
.poll_unpin(cx)
.map_err(io_error_map))?;
Poll::Ready(Ok(buf.len()))
}
fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<io::Result<()>> {
Pin::new(&mut self.stream).poll_flush(cx)
}
fn poll_close(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<io::Result<()>> {
Pin::new(&mut self.stream).poll_close(cx)
}
}
fn io_error_map(err: SecureError) -> io::Error {
match err {
SecureError::Io(err) => err,
_ => io::Error::new(io::ErrorKind::InvalidData, "Invalid encryption data"),
}
}