This commit is contained in:
parent
6e5c985719
commit
b262235ac7
41 changed files with 1688 additions and 653 deletions
|
|
@ -11,6 +11,8 @@ mod stream;
|
|||
mod transport;
|
||||
|
||||
pub use error::WebServerError;
|
||||
#[cfg(feature = "pipes")]
|
||||
pub use mtp_transport::TransportEvent;
|
||||
pub use router::{HttpHandler, Router, RouterError};
|
||||
pub use server::{MTPWebServer, WebServerConfig, WebServerMetrics};
|
||||
pub use stream::{Http3Request, Http3Response};
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ impl WebServerConfig {
|
|||
max_request_body: 4 * 1024 * 1024,
|
||||
max_connections: 256,
|
||||
request_timeout: Duration::from_secs(30),
|
||||
drain_timeout: Duration::from_secs(10),
|
||||
drain_timeout: Duration::from_secs(5),
|
||||
metrics: None,
|
||||
}
|
||||
}
|
||||
|
|
@ -138,18 +138,12 @@ impl MTPWebServer {
|
|||
host_config: HostConfig,
|
||||
web_config: WebServerConfig,
|
||||
) -> Result<Self, CommunicationError> {
|
||||
#[cfg(feature = "crypto")]
|
||||
if !matches!(
|
||||
host_config.authentication_policy,
|
||||
mtp_host::AuthenticationPolicy::Unauthenticated
|
||||
) {
|
||||
return Err(CommunicationError::Other(
|
||||
"web authentication is not supported yet; use Unauthenticated".into(),
|
||||
));
|
||||
}
|
||||
let host_config = Arc::new(host_config);
|
||||
let endpoint = build_endpoint(&host_config)?;
|
||||
let driver_endpoint = endpoint.clone();
|
||||
let (mtp_tx, mtp_incoming) = tokio::sync::mpsc::channel(16);
|
||||
// A completed MTP handshake must never block the endpoint driver just
|
||||
// because the application is briefly slow to call `accept()`.
|
||||
let (mtp_tx, mtp_incoming) = tokio::sync::mpsc::channel(web_config.max_connections.max(1));
|
||||
let (shutdown_tx, shutdown_rx) = watch::channel(());
|
||||
let connection_semaphore = Arc::new(Semaphore::new(web_config.max_connections));
|
||||
let driver_config = DriverConfig {
|
||||
|
|
@ -160,6 +154,7 @@ impl MTPWebServer {
|
|||
drain_timeout: web_config.drain_timeout,
|
||||
send_pongs: host_config.send_pongs,
|
||||
policy: host_config.policy,
|
||||
host_config,
|
||||
metrics: web_config.metrics,
|
||||
};
|
||||
let driver = tokio::spawn(run_driver(
|
||||
|
|
@ -230,11 +225,12 @@ struct DriverConfig {
|
|||
drain_timeout: Duration,
|
||||
send_pongs: bool,
|
||||
policy: mtp_transport::Policy,
|
||||
host_config: Arc<HostConfig>,
|
||||
metrics: Option<Arc<dyn WebServerMetrics>>,
|
||||
}
|
||||
|
||||
fn build_endpoint(config: &HostConfig) -> Result<quinn::Endpoint, CommunicationError> {
|
||||
let _ = rustls::crypto::aws_lc_rs::default_provider().install_default();
|
||||
mtp_crypto::ensure_crypto_provider();
|
||||
let certificates = rustls::pki_types::CertificateDer::pem_slice_iter(&config.tls_fullchain)
|
||||
.collect::<Result<Vec<_>, _>>()
|
||||
.map_err(|_| CommunicationError::CertificateLoadFailed)?;
|
||||
|
|
@ -270,6 +266,7 @@ async fn run_driver(
|
|||
drain_timeout,
|
||||
send_pongs,
|
||||
policy,
|
||||
host_config,
|
||||
metrics,
|
||||
} = config;
|
||||
let mut connection_tasks = tokio::task::JoinSet::new();
|
||||
|
|
@ -283,14 +280,20 @@ async fn run_driver(
|
|||
let Some(incoming) = incoming else {
|
||||
break;
|
||||
};
|
||||
let permit = match connection_semaphore.clone().acquire_owned().await {
|
||||
// Do not await capacity here: doing so would prevent this loop
|
||||
// from observing shutdown while all connection slots are in use.
|
||||
let permit = match connection_semaphore.clone().try_acquire_owned() {
|
||||
Ok(permit) => permit,
|
||||
Err(_) => break,
|
||||
Err(_) => {
|
||||
tracing::debug!("rejecting QUIC connection at configured connection limit");
|
||||
continue;
|
||||
}
|
||||
};
|
||||
let router = router.clone();
|
||||
let mtp_path = mtp_path.clone();
|
||||
let mtp_tx = mtp_tx.clone();
|
||||
let metrics = metrics.clone();
|
||||
let host_config = host_config.clone();
|
||||
connection_tasks.spawn(async move {
|
||||
let _permit = permit;
|
||||
let connect_start = std::time::Instant::now();
|
||||
|
|
@ -364,7 +367,11 @@ async fn run_driver(
|
|||
return;
|
||||
}
|
||||
};
|
||||
tasks.spawn(run_session_requests(
|
||||
// The WebTransport session request driver must outlive this
|
||||
// endpoint request task. Keep it detached so handing the MTP
|
||||
// connection to the application does not wait for the session
|
||||
// (which is intentionally an open-ended accept loop).
|
||||
tokio::spawn(run_session_requests(
|
||||
session.clone(),
|
||||
router.clone(),
|
||||
max_request_body,
|
||||
|
|
@ -372,9 +379,25 @@ async fn run_driver(
|
|||
metrics.clone(),
|
||||
));
|
||||
let result =
|
||||
accept_web_connection(session, mtp_path, connection, send_pongs, policy)
|
||||
accept_web_connection(session, mtp_path, connection, send_pongs, policy, host_config.clone())
|
||||
.await;
|
||||
let _ = mtp_tx.send(result).await;
|
||||
match mtp_tx.try_send(result) {
|
||||
Ok(()) => {
|
||||
// The detached session driver remains active while the
|
||||
// delivered MTP connection keeps the session alive.
|
||||
}
|
||||
Err(tokio::sync::mpsc::error::TrySendError::Full(result)) => {
|
||||
tracing::warn!("MTP connection backlog is full; dropping connection");
|
||||
if let Ok(connection) = result {
|
||||
connection.sender.close();
|
||||
}
|
||||
}
|
||||
Err(tokio::sync::mpsc::error::TrySendError::Closed(result)) => {
|
||||
if let Ok(connection) = result {
|
||||
connection.sender.close();
|
||||
}
|
||||
}
|
||||
}
|
||||
return;
|
||||
}
|
||||
let router = router.clone();
|
||||
|
|
|
|||
|
|
@ -5,12 +5,16 @@ use mtp_codec::{
|
|||
};
|
||||
use mtp_common::CommunicationError;
|
||||
use mtp_host::AcceptError;
|
||||
use mtp_host::HostConfig;
|
||||
use mtp_transport::{
|
||||
GenericReceiver, GenericSender, Policy, TransportConnection, TransportRecvStream,
|
||||
TransportSendStream,
|
||||
};
|
||||
use std::sync::Arc;
|
||||
#[cfg(feature = "crypto")]
|
||||
use std::time::Instant;
|
||||
use tokio::io::{AsyncReadExt, AsyncWriteExt};
|
||||
use tracing::error;
|
||||
|
||||
type Session = h3_webtransport::server::WebTransportSession<h3_quinn::Connection, Bytes>;
|
||||
type H3SendStream = h3_webtransport::stream::SendStream<h3_quinn::SendStream<Bytes>, Bytes>;
|
||||
|
|
@ -47,6 +51,13 @@ impl TransportSendStream for H3TransportSender {
|
|||
self.stream
|
||||
.write_all(buf)
|
||||
.await
|
||||
.map_err(|_| CommunicationError::StreamError)?;
|
||||
// Control/authentication frames use a persistent stream. h3 keeps
|
||||
// those writes buffered until flushed; without this the peer can wait
|
||||
// for the challenge while the server waits for its proof.
|
||||
self.stream
|
||||
.flush()
|
||||
.await
|
||||
.map_err(|_| CommunicationError::StreamError)
|
||||
}
|
||||
|
||||
|
|
@ -65,7 +76,16 @@ impl TransportRecvStream for H3TransportReceiver {
|
|||
.read_exact(buf)
|
||||
.await
|
||||
.map(|_| ())
|
||||
.map_err(|_| CommunicationError::StreamError)
|
||||
.map_err(|error| {
|
||||
if error.kind() == std::io::ErrorKind::UnexpectedEof {
|
||||
// Browser control frames are sent on one-frame uni streams.
|
||||
// Reaching FIN while looking for another frame is normal.
|
||||
return CommunicationError::StreamClosed;
|
||||
}
|
||||
error!("[mtp-webserver] receive stream read_exact failed ({} bytes): {error}", buf.len());
|
||||
tracing::warn!(len = buf.len(), %error, "WebTransport receive stream read_exact failed");
|
||||
CommunicationError::StreamError
|
||||
})
|
||||
}
|
||||
|
||||
async fn read_chunk(&mut self, max: usize) -> Result<Option<Vec<u8>>, CommunicationError> {
|
||||
|
|
@ -76,7 +96,14 @@ impl TransportRecvStream for H3TransportReceiver {
|
|||
buf.truncate(size);
|
||||
Ok(Some(buf))
|
||||
}
|
||||
Err(_) => Err(CommunicationError::StreamError),
|
||||
Err(error) => {
|
||||
error!(
|
||||
"[mtp-webserver] receive stream read failed (max {} bytes): {error}",
|
||||
max
|
||||
);
|
||||
tracing::warn!(max, %error, "WebTransport receive stream read failed");
|
||||
Err(CommunicationError::StreamError)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -129,14 +156,50 @@ impl TransportConnection for H3TransportConnection {
|
|||
}
|
||||
|
||||
async fn accept_uni(&self) -> Result<Self::RecvStream, CommunicationError> {
|
||||
const MAX_CONSECUTIVE_ERRORS: u32 = 10;
|
||||
const INITIAL_RETRY_DELAY: std::time::Duration = std::time::Duration::from_millis(20);
|
||||
|
||||
let mut consecutive_errors = 0_u32;
|
||||
loop {
|
||||
match self.session.accept_uni().await {
|
||||
Ok(Some((id, stream))) if id == self.session.session_id() => {
|
||||
return Ok(H3TransportReceiver { stream });
|
||||
}
|
||||
Ok(Some(_)) => continue,
|
||||
Ok(Some(_)) => {
|
||||
consecutive_errors = 0;
|
||||
continue;
|
||||
}
|
||||
Ok(None) => return Err(CommunicationError::StreamClosed),
|
||||
Err(_) => return Err(CommunicationError::StreamError),
|
||||
Err(error) => {
|
||||
// A browser can reset an individual pipe stream while it
|
||||
// is stopping MediaRecorder. h3-webtransport reports that
|
||||
// through accept_uni even though the QUIC connection is
|
||||
// still healthy. Do not turn that stream-local failure
|
||||
// into a connection-wide MTP failure.
|
||||
if self.quinn.close_reason().is_some() {
|
||||
return Err(CommunicationError::StreamClosed);
|
||||
}
|
||||
|
||||
consecutive_errors += 1;
|
||||
if consecutive_errors > MAX_CONSECUTIVE_ERRORS {
|
||||
tracing::warn!(
|
||||
%error,
|
||||
consecutive_errors,
|
||||
"WebTransport receive-stream accept repeatedly failed"
|
||||
);
|
||||
return Err(CommunicationError::StreamError);
|
||||
}
|
||||
|
||||
let multiplier = 1_u32 << consecutive_errors.saturating_sub(1).min(5);
|
||||
let retry_delay = INITIAL_RETRY_DELAY * multiplier;
|
||||
tracing::debug!(
|
||||
%error,
|
||||
consecutive_errors,
|
||||
?retry_delay,
|
||||
"retrying transient WebTransport receive-stream error"
|
||||
);
|
||||
tokio::time::sleep(retry_delay).await;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -155,7 +218,8 @@ impl TransportConnection for H3TransportConnection {
|
|||
/// Shared host MTP connection instantiated with HTTP/3 stream adapters.
|
||||
pub type WebMtpSender = GenericSender<H3TransportConnection>;
|
||||
pub type WebMtpReceiver = GenericReceiver<H3TransportConnection>;
|
||||
pub type WebMTPConnection = mtp_host::MTPConnection<WebMtpSender, WebMtpReceiver>;
|
||||
pub type WebMTPConnection =
|
||||
mtp_host::MTPConnection<WebMtpSender, WebMtpReceiver, H3TransportReceiver>;
|
||||
|
||||
pub(crate) async fn accept_web_connection(
|
||||
session: Arc<Session>,
|
||||
|
|
@ -163,7 +227,33 @@ pub(crate) async fn accept_web_connection(
|
|||
quinn: quinn::Connection,
|
||||
send_pongs: bool,
|
||||
policy: Policy,
|
||||
host_config: Arc<HostConfig>,
|
||||
) -> Result<WebMTPConnection, AcceptError> {
|
||||
#[cfg(feature = "crypto")]
|
||||
{
|
||||
return tokio::time::timeout(
|
||||
host_config.auth_timeout,
|
||||
accept_web_connection_inner(session, path, quinn, send_pongs, policy, host_config),
|
||||
)
|
||||
.await
|
||||
.unwrap_or(Err(AcceptError::AuthenticationTimedOut));
|
||||
}
|
||||
|
||||
#[cfg(not(feature = "crypto"))]
|
||||
accept_web_connection_inner(session, path, quinn, send_pongs, policy, host_config).await
|
||||
}
|
||||
|
||||
async fn accept_web_connection_inner(
|
||||
session: Arc<Session>,
|
||||
path: String,
|
||||
quinn: quinn::Connection,
|
||||
send_pongs: bool,
|
||||
policy: Policy,
|
||||
_host_config: Arc<HostConfig>,
|
||||
) -> Result<WebMTPConnection, AcceptError> {
|
||||
#[cfg(feature = "crypto")]
|
||||
let auth_handshake_started = Instant::now();
|
||||
let max_message_size = policy.max_message_size;
|
||||
let transport = H3TransportConnection::new(session, quinn);
|
||||
let policy = Arc::new(policy);
|
||||
let receiver = WebMtpReceiver::new(transport.clone(), policy.clone());
|
||||
|
|
@ -187,12 +277,256 @@ pub(crate) async fn accept_web_connection(
|
|||
if send_pongs {
|
||||
receiver.respond_to_pings(sender.clone()).await;
|
||||
}
|
||||
Ok(mtp_host::MTPConnection::from_transport_parts(
|
||||
let connection = mtp_host::MTPConnection::from_transport_parts(
|
||||
negotiated,
|
||||
codec,
|
||||
sender,
|
||||
receiver,
|
||||
path,
|
||||
description,
|
||||
))
|
||||
description.clone(),
|
||||
);
|
||||
#[cfg(feature = "crypto")]
|
||||
let mut connection = connection;
|
||||
#[cfg(feature = "crypto")]
|
||||
if !matches!(
|
||||
_host_config.authentication_policy,
|
||||
mtp_host::AuthenticationPolicy::Unauthenticated
|
||||
) {
|
||||
use mtp_crypto::{
|
||||
Ed25519Signer, MlDsaSigner, PublicKeyBundle, SignatureScheme, auth, verify_ed25519,
|
||||
verify_ml_dsa,
|
||||
};
|
||||
let tm = mtp_codec::TypeMap::latest();
|
||||
let client_lookup_started = Instant::now();
|
||||
let (client_id, client_bundle, response_type) = if Some(first.get_type())
|
||||
== mtp_codec::CommunicationType::Identification.try_to_id(&tm)
|
||||
{
|
||||
let id = match first.get_data(DataType::Id) {
|
||||
DataValue::UnsignedNumber(value) => *value as u64,
|
||||
_ => {
|
||||
return Err(AcceptError::AuthenticationFailed(
|
||||
"missing client id".into(),
|
||||
));
|
||||
}
|
||||
};
|
||||
let bundle = (_host_config.get_existing_client)(id, description.clone())
|
||||
.await
|
||||
.ok_or_else(|| AcceptError::AuthenticationFailed("unknown client id".into()))?;
|
||||
(
|
||||
id,
|
||||
bundle,
|
||||
mtp_codec::CommunicationType::IdentificationResponse,
|
||||
)
|
||||
} else if Some(first.get_type()) == mtp_codec::CommunicationType::Register.try_to_id(&tm) {
|
||||
let bundle = match first.get_data(DataType::PublicKeys) {
|
||||
DataValue::Bytes(bytes) => PublicKeyBundle::from_bytes(bytes).map_err(|_| {
|
||||
AcceptError::AuthenticationFailed("invalid public key bundle".into())
|
||||
})?,
|
||||
_ => {
|
||||
return Err(AcceptError::AuthenticationFailed(
|
||||
"missing public keys".into(),
|
||||
));
|
||||
}
|
||||
};
|
||||
(0, bundle, mtp_codec::CommunicationType::RegisterResponse)
|
||||
} else {
|
||||
return Err(AcceptError::AuthenticationFailed(
|
||||
"unexpected authentication message".into(),
|
||||
));
|
||||
};
|
||||
tracing::debug!(elapsed = ?client_lookup_started.elapsed(), "web authentication handshake: identify client");
|
||||
|
||||
let signer_init_started = Instant::now();
|
||||
let host_pq_signer = if !_host_config.host_keyring.sig_pq_secret_key.as_bytes().is_empty() {
|
||||
Some(
|
||||
MlDsaSigner::new(
|
||||
&_host_config.host_keyring.sig_pq_secret_key,
|
||||
&_host_config.host_keyring.sig_pq_public_key,
|
||||
)
|
||||
.map_err(|e| AcceptError::AuthenticationFailed(e.to_string()))?,
|
||||
)
|
||||
} else {
|
||||
None
|
||||
};
|
||||
tracing::debug!(elapsed = ?signer_init_started.elapsed(), "web authentication handshake: signer initialization");
|
||||
|
||||
let server_challenge: u128 = rand::random();
|
||||
let host_sign = |payload: &[u8]| -> Result<(Vec<u8>, Vec<u8>), AcceptError> {
|
||||
let signer = Ed25519Signer::new(&_host_config.host_keyring.sig_cl_secret_key)
|
||||
.map_err(|e| AcceptError::AuthenticationFailed(e.to_string()))?;
|
||||
let sig = signer
|
||||
.sign(payload)
|
||||
.map_err(|e| AcceptError::AuthenticationFailed(e.to_string()))?;
|
||||
let pq = if let Some(pq_signer) = host_pq_signer.as_ref() {
|
||||
pq_signer
|
||||
.sign(payload)
|
||||
.map_err(|e| AcceptError::AuthenticationFailed(e.to_string()))?
|
||||
} else {
|
||||
Vec::new()
|
||||
};
|
||||
Ok((sig, pq))
|
||||
};
|
||||
let sign_challenge_started = Instant::now();
|
||||
let (sig, pq_sig) = host_sign(&auth::challenge_payload(client_id, server_challenge))?;
|
||||
tracing::debug!(elapsed = ?sign_challenge_started.elapsed(), "web authentication handshake: sign challenge");
|
||||
let mut challenge =
|
||||
mtp_codec::CommunicationValue::new(mtp_codec::CommunicationType::Challenge)
|
||||
.add_typed_default(
|
||||
DataType::ServerNonce,
|
||||
DataValue::UnsignedNumber(server_challenge),
|
||||
)
|
||||
.add_typed_default(DataType::Signature, DataValue::Bytes(sig))
|
||||
.add_typed_default(
|
||||
DataType::RequirePq,
|
||||
if _host_config.require_pq {
|
||||
DataValue::BoolTrue
|
||||
} else {
|
||||
DataValue::BoolFalse
|
||||
},
|
||||
);
|
||||
if !pq_sig.is_empty() {
|
||||
challenge =
|
||||
challenge.add_typed_default(DataType::PqSignature, DataValue::Bytes(pq_sig));
|
||||
}
|
||||
let send_challenge_started = Instant::now();
|
||||
connection
|
||||
.sender
|
||||
.send(&challenge)
|
||||
.await
|
||||
.map_err(AcceptError::Send)?;
|
||||
tracing::debug!(elapsed = ?send_challenge_started.elapsed(), "web authentication handshake: send challenge");
|
||||
let receive_proof_started = Instant::now();
|
||||
let proof = connection.receive().await.map_err(AcceptError::Receive)?;
|
||||
tracing::debug!(elapsed = ?receive_proof_started.elapsed(), "web authentication handshake: receive client proof");
|
||||
if Some(proof.get_type()) != mtp_codec::CommunicationType::ChallengeResponse.try_to_id(&tm)
|
||||
{
|
||||
return Err(AcceptError::AuthenticationFailed(
|
||||
"missing challenge response".into(),
|
||||
));
|
||||
}
|
||||
let nonce = match proof.get_data(DataType::ClientNonce) {
|
||||
DataValue::UnsignedNumber(n) => *n,
|
||||
_ => {
|
||||
return Err(AcceptError::AuthenticationFailed(
|
||||
"missing client nonce".into(),
|
||||
));
|
||||
}
|
||||
};
|
||||
let signature = match proof.get_data(DataType::Signature) {
|
||||
DataValue::Bytes(bytes) => bytes,
|
||||
_ => {
|
||||
return Err(AcceptError::AuthenticationFailed(
|
||||
"missing challenge signature".into(),
|
||||
));
|
||||
}
|
||||
};
|
||||
let pq_signature = match proof.get_data(DataType::PqSignature) {
|
||||
DataValue::Bytes(bytes) => bytes.as_slice(),
|
||||
_ => &[],
|
||||
};
|
||||
let payload = if first.get_type()
|
||||
== mtp_codec::CommunicationType::Register
|
||||
.try_to_id(&tm)
|
||||
.unwrap()
|
||||
{
|
||||
auth::register_proof_payload(
|
||||
&version.to_string(),
|
||||
&client_bundle.as_bytes(),
|
||||
server_challenge,
|
||||
nonce,
|
||||
)
|
||||
} else {
|
||||
auth::login_proof_payload(&version.to_string(), client_id, server_challenge, nonce)
|
||||
};
|
||||
let verify_proof_started = Instant::now();
|
||||
if verify_ed25519(&client_bundle.sig_cl_public_key, &payload, signature).is_err() {
|
||||
return Err(AcceptError::AuthenticationFailed(
|
||||
"client proof signature invalid".into(),
|
||||
));
|
||||
}
|
||||
let client_has_pq = !client_bundle.sig_pq_public_key.as_bytes().is_empty();
|
||||
if _host_config.require_pq
|
||||
&& (!client_has_pq
|
||||
|| pq_signature.is_empty()
|
||||
|| verify_ml_dsa(&client_bundle.sig_pq_public_key, &payload, pq_signature).is_err())
|
||||
{
|
||||
return Err(AcceptError::AuthenticationFailed(
|
||||
"client PQ proof signature invalid".into(),
|
||||
));
|
||||
}
|
||||
tracing::debug!(elapsed = ?verify_proof_started.elapsed(), "web authentication handshake: verify client proof");
|
||||
let register_started = Instant::now();
|
||||
let assigned_id = if response_type == mtp_codec::CommunicationType::RegisterResponse {
|
||||
(_host_config.complete_register)(client_bundle.clone(), description.clone()).await
|
||||
} else {
|
||||
client_id
|
||||
};
|
||||
tracing::debug!(elapsed = ?register_started.elapsed(), "web authentication handshake: registration callback");
|
||||
let sign_final_started = Instant::now();
|
||||
let (final_sig, final_pq) = host_sign(&auth::host_final_payload(
|
||||
assigned_id,
|
||||
nonce,
|
||||
server_challenge,
|
||||
))?;
|
||||
tracing::debug!(elapsed = ?sign_final_started.elapsed(), "web authentication handshake: sign final response");
|
||||
let mut response = mtp_codec::CommunicationValue::new(response_type)
|
||||
.add_typed_default(DataType::Connected, DataValue::BoolTrue)
|
||||
.add_typed_default(DataType::Id, DataValue::UnsignedNumber(assigned_id as u128))
|
||||
.add_typed_default(DataType::ClientNonce, DataValue::UnsignedNumber(nonce))
|
||||
.add_typed_default(DataType::Signature, DataValue::Bytes(final_sig))
|
||||
.add_typed_default(DataType::Version, DataValue::Str(version.to_string()));
|
||||
if !final_pq.is_empty() {
|
||||
response =
|
||||
response.add_typed_default(DataType::PqSignature, DataValue::Bytes(final_pq));
|
||||
}
|
||||
let send_final_started = Instant::now();
|
||||
connection
|
||||
.sender
|
||||
.send(&response)
|
||||
.await
|
||||
.map_err(AcceptError::Send)?;
|
||||
connection
|
||||
.sender
|
||||
.finish_stream()
|
||||
.await
|
||||
.map_err(AcceptError::Send)?;
|
||||
tracing::debug!(elapsed = ?send_final_started.elapsed(), "web authentication handshake: send final response");
|
||||
tracing::debug!(elapsed = ?auth_handshake_started.elapsed(), "web authentication handshake: complete");
|
||||
connection.receiver.set_max_message_size(max_message_size);
|
||||
connection.auth_state = mtp_host::AuthState::Authenticated;
|
||||
connection.client_id = assigned_id;
|
||||
connection.client_public_key = Some(client_bundle);
|
||||
return Ok(connection);
|
||||
}
|
||||
|
||||
// Complete the opening handshake for unauthenticated connections. Native clients
|
||||
// wait for this response before sending application messages.
|
||||
let response =
|
||||
mtp_codec::CommunicationValue::new(mtp_codec::CommunicationType::IdentificationResponse)
|
||||
.add_typed_default(
|
||||
mtp_codec::DataType::Connected,
|
||||
mtp_codec::DataValue::BoolTrue,
|
||||
)
|
||||
.add_typed_default(
|
||||
mtp_codec::DataType::Version,
|
||||
mtp_codec::DataValue::Str(connection.version.to_string()),
|
||||
)
|
||||
.add_typed_default(
|
||||
mtp_codec::DataType::Id,
|
||||
// WebTransport connections currently do not expose the host's guest
|
||||
// ID through MTPConnection; unauthenticated clients do not need it.
|
||||
mtp_codec::DataValue::UnsignedNumber(0),
|
||||
);
|
||||
connection
|
||||
.sender
|
||||
.send(&response)
|
||||
.await
|
||||
.map_err(AcceptError::Send)?;
|
||||
connection
|
||||
.sender
|
||||
.finish_stream()
|
||||
.await
|
||||
.map_err(AcceptError::Send)?;
|
||||
connection.receiver.set_max_message_size(max_message_size);
|
||||
Ok(connection)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue