-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathutil.rs
374 lines (324 loc) · 12.6 KB
/
util.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
//! Utilities
//!
//! This module contains utilities to read and write varints, as well as
//! functions to set up quinn endpoints for local rpc and testing.
#[cfg(feature = "test")]
#[cfg_attr(quicrpc_docsrs, doc(cfg(feature = "test")))]
mod quinn_setup_utils {
use std::{net::SocketAddr, sync::Arc};
use anyhow::Result;
use quinn::{crypto::rustls::QuicClientConfig, ClientConfig, Endpoint, ServerConfig};
/// Builds default quinn client config and trusts given certificates.
///
/// ## Args
///
/// - server_certs: a list of trusted certificates in DER format.
pub fn configure_client(server_certs: &[&[u8]]) -> Result<ClientConfig> {
let mut certs = rustls::RootCertStore::empty();
for cert in server_certs {
let cert = rustls::pki_types::CertificateDer::from(cert.to_vec());
certs.add(cert)?;
}
let crypto_client_config = rustls::ClientConfig::builder_with_provider(Arc::new(
rustls::crypto::ring::default_provider(),
))
.with_protocol_versions(&[&rustls::version::TLS13])
.expect("valid versions")
.with_root_certificates(certs)
.with_no_client_auth();
let quic_client_config =
quinn::crypto::rustls::QuicClientConfig::try_from(crypto_client_config)?;
Ok(ClientConfig::new(Arc::new(quic_client_config)))
}
/// Constructs a QUIC endpoint configured for use a client only.
///
/// ## Args
///
/// - server_certs: list of trusted certificates.
pub fn make_client_endpoint(bind_addr: SocketAddr, server_certs: &[&[u8]]) -> Result<Endpoint> {
let client_cfg = configure_client(server_certs)?;
let mut endpoint = Endpoint::client(bind_addr)?;
endpoint.set_default_client_config(client_cfg);
Ok(endpoint)
}
/// Create a server endpoint with a self-signed certificate
///
/// Returns the server endpoint and the certificate in DER format
pub fn make_server_endpoint(bind_addr: SocketAddr) -> Result<(Endpoint, Vec<u8>)> {
let (server_config, server_cert) = configure_server()?;
let endpoint = Endpoint::server(server_config, bind_addr)?;
Ok((endpoint, server_cert))
}
/// Create a quinn server config with a self-signed certificate
///
/// Returns the server config and the certificate in DER format
pub fn configure_server() -> anyhow::Result<(ServerConfig, Vec<u8>)> {
let cert = rcgen::generate_simple_self_signed(vec!["localhost".into()])?;
let cert_der = cert.cert.der();
let priv_key = rustls::pki_types::PrivatePkcs8KeyDer::from(cert.key_pair.serialize_der());
let cert_chain = vec![cert_der.clone()];
let mut server_config = ServerConfig::with_single_cert(cert_chain, priv_key.into())?;
Arc::get_mut(&mut server_config.transport)
.unwrap()
.max_concurrent_uni_streams(0_u8.into());
Ok((server_config, cert_der.to_vec()))
}
/// Constructs a QUIC endpoint that trusts all certificates.
///
/// This is useful for testing and local connections, but should be used with care.
pub fn make_insecure_client_endpoint(bind_addr: SocketAddr) -> Result<Endpoint> {
let crypto = rustls::ClientConfig::builder()
.dangerous()
.with_custom_certificate_verifier(Arc::new(SkipServerVerification))
.with_no_client_auth();
let client_cfg = QuicClientConfig::try_from(crypto)?;
let client_cfg = ClientConfig::new(Arc::new(client_cfg));
let mut endpoint = Endpoint::client(bind_addr)?;
endpoint.set_default_client_config(client_cfg);
Ok(endpoint)
}
#[derive(Debug)]
struct SkipServerVerification;
impl rustls::client::danger::ServerCertVerifier for SkipServerVerification {
fn verify_server_cert(
&self,
_end_entity: &rustls::pki_types::CertificateDer<'_>,
_intermediates: &[rustls::pki_types::CertificateDer<'_>],
_server_name: &rustls::pki_types::ServerName<'_>,
_ocsp_response: &[u8],
_now: rustls::pki_types::UnixTime,
) -> Result<rustls::client::danger::ServerCertVerified, rustls::Error> {
Ok(rustls::client::danger::ServerCertVerified::assertion())
}
fn verify_tls12_signature(
&self,
_message: &[u8],
_cert: &rustls::pki_types::CertificateDer<'_>,
_dss: &rustls::DigitallySignedStruct,
) -> Result<rustls::client::danger::HandshakeSignatureValid, rustls::Error> {
Ok(rustls::client::danger::HandshakeSignatureValid::assertion())
}
fn verify_tls13_signature(
&self,
_message: &[u8],
_cert: &rustls::pki_types::CertificateDer<'_>,
_dss: &rustls::DigitallySignedStruct,
) -> Result<rustls::client::danger::HandshakeSignatureValid, rustls::Error> {
Ok(rustls::client::danger::HandshakeSignatureValid::assertion())
}
fn supported_verify_schemes(&self) -> Vec<rustls::SignatureScheme> {
use rustls::SignatureScheme::*;
// list them all, we don't care.
vec![
RSA_PKCS1_SHA1,
ECDSA_SHA1_Legacy,
RSA_PKCS1_SHA256,
ECDSA_NISTP256_SHA256,
RSA_PKCS1_SHA384,
ECDSA_NISTP384_SHA384,
RSA_PKCS1_SHA512,
ECDSA_NISTP521_SHA512,
RSA_PSS_SHA256,
RSA_PSS_SHA384,
RSA_PSS_SHA512,
ED25519,
ED448,
]
}
}
}
#[cfg(feature = "test")]
#[cfg_attr(quicrpc_docsrs, doc(cfg(feature = "test")))]
pub use quinn_setup_utils::*;
#[cfg(feature = "rpc")]
mod varint_util {
use std::{
future::Future,
io::{self, Error},
};
use serde::Serialize;
use tokio::io::{AsyncRead, AsyncReadExt};
/// Reads a u64 varint from an AsyncRead source, using the Postcard/LEB128 format.
///
/// In Postcard's varint format (LEB128):
/// - Each byte uses 7 bits for the value
/// - The MSB (most significant bit) of each byte indicates if there are more bytes (1) or not (0)
/// - Values are stored in little-endian order (least significant group first)
///
/// Returns the decoded u64 value.
pub async fn read_varint_u64<R>(reader: &mut R) -> io::Result<Option<u64>>
where
R: AsyncRead + Unpin,
{
let mut result: u64 = 0;
let mut shift: u32 = 0;
loop {
// We can only shift up to 63 bits (for a u64)
if shift >= 64 {
return Err(io::Error::new(
io::ErrorKind::InvalidData,
"Varint is too large for u64",
));
}
// Read a single byte
let res = reader.read_u8().await;
if shift == 0 {
if let Err(cause) = res {
if cause.kind() == io::ErrorKind::UnexpectedEof {
return Ok(None);
} else {
return Err(cause);
}
}
}
let byte = res?;
// Extract the 7 value bits (bits 0-6, excluding the MSB which is the continuation bit)
let value = (byte & 0x7F) as u64;
// Add the bits to our result at the current shift position
result |= value << shift;
// If the high bit is not set (0), this is the last byte
if byte & 0x80 == 0 {
break;
}
// Move to the next 7 bits
shift += 7;
}
Ok(Some(result))
}
/// Writes a u64 varint to any object that implements the `std::io::Write` trait.
///
/// This encodes the value using LEB128 encoding.
///
/// # Arguments
/// * `writer` - Any object implementing `std::io::Write`
/// * `value` - The u64 value to encode as a varint
///
/// # Returns
/// The number of bytes written or an IO error
pub fn write_varint_u64_sync<W: std::io::Write>(
writer: &mut W,
value: u64,
) -> std::io::Result<usize> {
// Handle zero as a special case
if value == 0 {
writer.write_all(&[0])?;
return Ok(1);
}
let mut bytes_written = 0;
let mut remaining = value;
while remaining > 0 {
// Extract the 7 least significant bits
let mut byte = (remaining & 0x7F) as u8;
remaining >>= 7;
// Set the continuation bit if there's more data
if remaining > 0 {
byte |= 0x80;
}
writer.write_all(&[byte])?;
bytes_written += 1;
}
Ok(bytes_written)
}
pub fn write_length_prefixed<T: Serialize>(
mut write: impl std::io::Write,
value: T,
) -> io::Result<()> {
let size = postcard::experimental::serialized_size(&value)
.map_err(|e| Error::new(io::ErrorKind::InvalidData, e))? as u64;
write_varint_u64_sync(&mut write, size)?;
postcard::to_io(&value, &mut write)
.map_err(|e| Error::new(io::ErrorKind::InvalidData, e))?;
Ok(())
}
/// Provides a fn to read a varint from an AsyncRead source.
pub trait AsyncReadVarintExt: AsyncRead + Unpin {
/// Reads a u64 varint from an AsyncRead source, using the Postcard/LEB128 format.
///
/// If the stream is at the end, this returns `Ok(None)`.
fn read_varint_u64(&mut self) -> impl Future<Output = io::Result<Option<u64>>>;
}
impl<T: AsyncRead + Unpin> AsyncReadVarintExt for T {
fn read_varint_u64(&mut self) -> impl Future<Output = io::Result<Option<u64>>> {
read_varint_u64(self)
}
}
/// Provides a fn to write a varint to an [`io::Write`] target, as well as a
/// helper to write a length-prefixed value.
pub trait WriteVarintExt: std::io::Write {
/// Write a varint
#[allow(dead_code)]
fn write_varint_u64(&mut self, value: u64) -> io::Result<usize>;
/// Write a value with a varint enoded length prefix.
fn write_length_prefixed<T: Serialize>(&mut self, value: T) -> io::Result<()>;
}
impl<T: std::io::Write> WriteVarintExt for T {
fn write_varint_u64(&mut self, value: u64) -> io::Result<usize> {
write_varint_u64_sync(self, value)
}
fn write_length_prefixed<V: Serialize>(&mut self, value: V) -> io::Result<()> {
write_length_prefixed(self, value)
}
}
}
#[cfg(feature = "rpc")]
pub use varint_util::{AsyncReadVarintExt, WriteVarintExt};
mod fuse_wrapper {
use std::{
future::Future,
pin::Pin,
result::Result,
task::{Context, Poll},
};
pub struct FusedOneshotReceiver<T>(pub tokio::sync::oneshot::Receiver<T>);
impl<T> Future for FusedOneshotReceiver<T> {
type Output = Result<T, tokio::sync::oneshot::error::RecvError>;
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
if self.0.is_terminated() {
// don't panic when polling a terminated receiver
Poll::Pending
} else {
Future::poll(Pin::new(&mut self.0), cx)
}
}
}
}
pub(crate) use fuse_wrapper::FusedOneshotReceiver;
#[cfg(feature = "rpc")]
mod now_or_never {
use std::{
future::Future,
pin::Pin,
task::{Context, Poll, RawWaker, RawWakerVTable, Waker},
};
// Simple pin_mut! macro implementation
macro_rules! pin_mut {
($($x:ident),* $(,)?) => {
$(
let mut $x = $x;
#[allow(unused_mut)]
let mut $x = unsafe { Pin::new_unchecked(&mut $x) };
)*
}
}
// Minimal implementation of a no-op waker
fn noop_waker() -> Waker {
fn noop(_: *const ()) {}
fn clone(_: *const ()) -> RawWaker {
let vtable = &RawWakerVTable::new(clone, noop, noop, noop);
RawWaker::new(std::ptr::null(), vtable)
}
unsafe { Waker::from_raw(clone(std::ptr::null())) }
}
/// Attempts to complete a future immediately, returning None if it would block
pub(crate) fn now_or_never<F: Future>(future: F) -> Option<F::Output> {
let waker = noop_waker();
let mut cx = Context::from_waker(&waker);
pin_mut!(future);
match future.poll(&mut cx) {
Poll::Ready(x) => Some(x),
Poll::Pending => None,
}
}
}
#[cfg(feature = "rpc")]
pub(crate) use now_or_never::now_or_never;