tokio_xmpp/stanzastream/worker.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 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612
// Copyright (c) 2019 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
use core::future::Future;
use core::pin::Pin;
use core::task::{Context, Poll};
use core::time::Duration;
use std::io;
use rand::{thread_rng, Rng};
use futures::{ready, SinkExt, StreamExt};
use tokio::{
sync::{mpsc, oneshot},
time::Instant,
};
use xmpp_parsers::{
iq,
jid::Jid,
ping,
stream_error::{DefinedCondition, StreamError},
stream_features::StreamFeatures,
};
use crate::connect::AsyncReadAndWrite;
use crate::xmlstream::{ReadError, XmppStreamElement};
use crate::Stanza;
use super::connected::{ConnectedEvent, ConnectedState};
use super::negotiation::NegotiationState;
use super::queue::{QueueEntry, TransmitQueue};
use super::stream_management::SmState;
use super::{Event, StreamEvent};
/// Convenience alias for [`XmlStreams`][`crate::xmlstream::XmlStream`] which
/// may be used with [`StanzaStream`][`super::StanzaStream`].
pub type XmppStream =
crate::xmlstream::XmlStream<Box<dyn AsyncReadAndWrite + Send + 'static>, XmppStreamElement>;
/// Underlying connection for a [`StanzaStream`][`super::StanzaStream`].
pub struct Connection {
/// The stream to use to send and receive XMPP data.
pub stream: XmppStream,
/// The stream features offered by the peer.
pub features: StreamFeatures,
/// The identity to which this stream belongs.
///
/// Note that connectors must not return bound streams. However, the Jid
/// may still be a full jid in order to request a specific resource at
/// bind time. If `identity` is a bare JID, the peer will assign the
/// resource.
pub identity: Jid,
}
// Allow for up to 10s for local shutdown.
// TODO: make this configurable maybe?
pub(super) static LOCAL_SHUTDOWN_TIMEOUT: Duration = Duration::new(10, 0);
pub(super) static REMOTE_SHUTDOWN_TIMEOUT: Duration = Duration::new(5, 0);
pub(super) static PING_PROBE_ID_PREFIX: &str = "xmpp-rs-stanzastream-liveness-probe";
pub(super) enum Never {}
pub(super) enum WorkerEvent {
/// The stream was reset and can now be used for rx/tx.
Reset {
bound_jid: Jid,
features: StreamFeatures,
},
/// The stream has been resumed successfully.
Resumed,
/// Data received successfully.
Stanza(Stanza),
/// Failed to parse pieces from the stream.
ParseError(xso::error::Error),
/// Soft timeout noted by the underlying XmppStream.
SoftTimeout,
/// Stream disonnected.
Disconnected {
/// Slot for a new connection.
slot: oneshot::Sender<Connection>,
/// Set to None if the stream was cleanly closed by the remote side.
error: Option<io::Error>,
},
/// The reconnection backend dropped the connection channel.
ReconnectAborted,
}
enum WorkerStream {
/// Pending connection.
Connecting {
/// Optional contents of an [`WorkerEvent::Disconnect`] to emit.
notify: Option<(oneshot::Sender<Connection>, Option<io::Error>)>,
/// Receiver slot for the next connection.
slot: oneshot::Receiver<Connection>,
/// Straem management state from a previous connection.
sm_state: Option<SmState>,
},
/// Connection available.
Connected {
stream: XmppStream,
substate: ConnectedState,
features: StreamFeatures,
identity: Jid,
},
/// Disconnected permanently by local choice.
Terminated,
}
impl WorkerStream {
fn disconnect(&mut self, sm_state: Option<SmState>, error: Option<io::Error>) -> WorkerEvent {
let (tx, rx) = oneshot::channel();
*self = Self::Connecting {
notify: None,
slot: rx,
sm_state,
};
WorkerEvent::Disconnected { slot: tx, error }
}
fn poll_duplex(
self: Pin<&mut Self>,
transmit_queue: &mut TransmitQueue<QueueEntry>,
cx: &mut Context<'_>,
) -> Poll<Option<WorkerEvent>> {
let this = self.get_mut();
loop {
match this {
// Disconnected cleanly (terminal state), signal end of
// stream.
Self::Terminated => return Poll::Ready(None),
// In the progress of reconnecting, wait for reconnection to
// complete and then switch states.
Self::Connecting {
notify,
slot,
sm_state,
} => {
if let Some((slot, error)) = notify.take() {
return Poll::Ready(Some(WorkerEvent::Disconnected { slot, error }));
}
match ready!(Pin::new(slot).poll(cx)) {
Ok(Connection {
stream,
features,
identity,
}) => {
let substate = ConnectedState::Negotiating {
// We panic here, but that is ok-ish, because
// that will "only" crash the worker and thus
// the stream, and that is kind of exactly
// what we want.
substate: NegotiationState::new(&features, sm_state.take())
.expect("Non-negotiable stream"),
};
*this = Self::Connected {
substate,
stream,
features,
identity,
};
}
Err(_) => {
// The sender was dropped. This is fatal.
*this = Self::Terminated;
return Poll::Ready(Some(WorkerEvent::ReconnectAborted));
}
}
}
Self::Connected {
stream,
identity,
substate,
features,
} => {
match ready!(substate.poll(
Pin::new(stream),
identity,
&features,
transmit_queue,
cx
)) {
// continue looping if the substate did not produce a result.
None => (),
// produced an event to emit.
Some(ConnectedEvent::Worker(v)) => {
match v {
// Capture the JID from a stream reset to
// update our state.
WorkerEvent::Reset { ref bound_jid, .. } => {
*identity = bound_jid.clone();
}
_ => (),
}
return Poll::Ready(Some(v));
}
// stream broke or closed somehow.
Some(ConnectedEvent::Disconnect { sm_state, error }) => {
return Poll::Ready(Some(this.disconnect(sm_state, error)));
}
Some(ConnectedEvent::RemoteShutdown { sm_state }) => {
let error = io::Error::new(
io::ErrorKind::ConnectionAborted,
"peer closed the XML stream",
);
let (tx, rx) = oneshot::channel();
let mut new_state = Self::Connecting {
notify: None,
slot: rx,
sm_state,
};
core::mem::swap(this, &mut new_state);
match new_state {
Self::Connected { stream, .. } => {
tokio::spawn(shutdown_stream_by_remote_choice(
stream,
REMOTE_SHUTDOWN_TIMEOUT,
));
}
_ => unreachable!(),
}
return Poll::Ready(Some(WorkerEvent::Disconnected {
slot: tx,
error: Some(error),
}));
}
Some(ConnectedEvent::LocalShutdownRequested) => {
// We don't switch to "terminated" here, but we
// return "end of stream" nontheless.
return Poll::Ready(None);
}
}
}
}
}
}
/// Poll the stream write-only.
///
/// This never completes, not even if the `transmit_queue` is empty and
/// its sender has been dropped, unless a write error occurs.
///
/// The use case behind this is to run his in parallel to a blocking
/// operation which should only block the receive side, but not the
/// transmit side of the stream.
///
/// Calling this and `poll_duplex` from different tasks in parallel will
/// cause havoc.
///
/// Any errors are reported on the next call to `poll_duplex`.
fn poll_writes(
&mut self,
transmit_queue: &mut TransmitQueue<QueueEntry>,
cx: &mut Context,
) -> Poll<Never> {
match self {
Self::Terminated | Self::Connecting { .. } => Poll::Pending,
Self::Connected {
substate, stream, ..
} => {
ready!(substate.poll_writes(Pin::new(stream), transmit_queue, cx));
Poll::Pending
}
}
}
fn start_send_stream_error(&mut self, error: StreamError) {
match self {
// If we are not connected or still connecting, we feign success
// and enter the Terminated state.
Self::Terminated | Self::Connecting { .. } => {
*self = Self::Terminated;
}
Self::Connected { substate, .. } => substate.start_send_stream_error(error),
}
}
fn poll_close(&mut self, cx: &mut Context) -> Poll<io::Result<()>> {
match self {
Self::Terminated => Poll::Ready(Ok(())),
Self::Connecting { .. } => {
*self = Self::Terminated;
Poll::Ready(Ok(()))
}
Self::Connected {
substate, stream, ..
} => {
let result = ready!(substate.poll_close(Pin::new(stream), cx));
*self = Self::Terminated;
Poll::Ready(result)
}
}
}
fn drive_duplex<'a>(
&'a mut self,
transmit_queue: &'a mut TransmitQueue<QueueEntry>,
) -> DriveDuplex<'a> {
DriveDuplex {
stream: Pin::new(self),
queue: transmit_queue,
}
}
fn drive_writes<'a>(
&'a mut self,
transmit_queue: &'a mut TransmitQueue<QueueEntry>,
) -> DriveWrites<'a> {
DriveWrites {
stream: Pin::new(self),
queue: transmit_queue,
}
}
fn close(&mut self) -> Close {
Close {
stream: Pin::new(self),
}
}
/// Enqueue a `<sm:r/>`, if stream management is enabled.
///
/// Multiple calls to `send_sm_request` may cause only a single `<sm:r/>`
/// to be sent.
///
/// Returns true if stream management is enabled and a request could be
/// queued or deduplicated with a previous request.
fn queue_sm_request(&mut self) -> bool {
match self {
Self::Terminated | Self::Connecting { .. } => false,
Self::Connected { substate, .. } => substate.queue_sm_request(),
}
}
}
struct DriveDuplex<'x> {
stream: Pin<&'x mut WorkerStream>,
queue: &'x mut TransmitQueue<QueueEntry>,
}
impl<'x> Future for DriveDuplex<'x> {
type Output = Option<WorkerEvent>;
fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
let this = self.get_mut();
this.stream.as_mut().poll_duplex(this.queue, cx)
}
}
struct DriveWrites<'x> {
stream: Pin<&'x mut WorkerStream>,
queue: &'x mut TransmitQueue<QueueEntry>,
}
impl<'x> Future for DriveWrites<'x> {
type Output = Never;
fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
let this = self.get_mut();
this.stream.as_mut().poll_writes(this.queue, cx)
}
}
struct Close<'x> {
stream: Pin<&'x mut WorkerStream>,
}
impl<'x> Future for Close<'x> {
type Output = io::Result<()>;
fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
let this = self.get_mut();
this.stream.as_mut().poll_close(cx)
}
}
pub(super) fn parse_error_to_stream_error(e: xso::error::Error) -> StreamError {
use xso::error::Error;
let condition = match e {
Error::XmlError(_) => DefinedCondition::NotWellFormed,
Error::TextParseError(_) | Error::Other(_) => DefinedCondition::InvalidXml,
Error::TypeMismatch => DefinedCondition::UnsupportedStanzaType,
};
StreamError {
condition,
text: Some((None, e.to_string())),
application_specific: vec![],
}
}
/// Worker system for a [`StanzaStream`].
pub(super) struct StanzaStreamWorker {
reconnector: Box<dyn FnMut(Option<String>, oneshot::Sender<Connection>) + Send + 'static>,
frontend_tx: mpsc::Sender<Event>,
stream: WorkerStream,
transmit_queue: TransmitQueue<QueueEntry>,
}
macro_rules! send_or_break {
($value:expr => $permit:ident in $ch:expr, $txq:expr => $stream:expr$(,)?) => {
if let Some(permit) = $permit.take() {
log::trace!("stanza received, passing to frontend via permit");
permit.send($value);
} else {
log::trace!("no permit for received stanza available, blocking on channel send while handling writes");
tokio::select! {
// drive_writes never completes: I/O errors are reported on
// the next call to drive_duplex(), which makes it ideal for
// use in parallel to $ch.send().
result = $stream.drive_writes(&mut $txq) => { match result {} },
result = $ch.send($value) => match result {
Err(_) => break,
Ok(()) => (),
},
}
}
};
}
impl StanzaStreamWorker {
pub fn spawn(
mut reconnector: Box<
dyn FnMut(Option<String>, oneshot::Sender<Connection>) + Send + 'static,
>,
queue_depth: usize,
) -> (mpsc::Sender<QueueEntry>, mpsc::Receiver<Event>) {
let (conn_tx, conn_rx) = oneshot::channel();
reconnector(None, conn_tx);
// c2f = core to frontend
let (c2f_tx, c2f_rx) = mpsc::channel(queue_depth);
// f2c = frontend to core
let (f2c_tx, transmit_queue) = TransmitQueue::channel(queue_depth);
let mut worker = StanzaStreamWorker {
reconnector,
frontend_tx: c2f_tx,
stream: WorkerStream::Connecting {
slot: conn_rx,
sm_state: None,
notify: None,
},
transmit_queue,
};
tokio::spawn(async move { worker.run().await });
(f2c_tx, c2f_rx)
}
pub async fn run(&mut self) {
// TODO: consider moving this into SmState somehow, i.e. run a kind
// of fake stream management exploiting the sequentiality requirement
// from RFC 6120.
// NOTE: we use a random starting value here to avoid clashes with
// other application code.
let mut ping_probe_ctr: u64 = thread_rng().gen();
// We use mpsc::Sender permits (check the docs on
// [`tokio::sync::mpsc::Sender::reserve`]) as a way to avoid blocking
// on the `frontend_tx` whenever possible.
//
// We always try to have a permit available. If we have a permit
// available, any event we receive from the stream can be sent to
// the frontend tx without blocking. If we do not have a permit
// available, the code generated by the send_or_break macro will
// use the normal Sender::send coroutine function, but will also
// service stream writes in parallel (putting backpressure on the
// sender while not blocking writes on our end).
let mut permit = None;
loop {
tokio::select! {
new_permit = self.frontend_tx.reserve(), if permit.is_none() && !self.frontend_tx.is_closed() => match new_permit {
Ok(new_permit) => permit = Some(new_permit),
// Receiver side dropped… That is stream closure, so we
// shut everything down and exit.
Err(_) => break,
},
ev = self.stream.drive_duplex(&mut self.transmit_queue) => {
let Some(ev) = ev else {
// Stream terminated by local choice. Exit.
break;
};
match ev {
WorkerEvent::Reset { bound_jid, features } => send_or_break!(
Event::Stream(StreamEvent::Reset { bound_jid, features }) => permit in self.frontend_tx,
self.transmit_queue => self.stream,
),
WorkerEvent::Disconnected { slot, error } => {
send_or_break!(
Event::Stream(StreamEvent::Suspended) => permit in self.frontend_tx,
self.transmit_queue => self.stream,
);
if let Some(error) = error {
log::debug!("Backend stream got disconnected because of an I/O error: {error}. Attempting reconnect.");
} else {
log::debug!("Backend stream got disconnected for an unknown reason. Attempting reconnect.");
}
if self.frontend_tx.is_closed() || self.transmit_queue.is_closed() {
log::debug!("Immediately aborting reconnect because the frontend is gone.");
break;
}
(self.reconnector)(None, slot);
}
WorkerEvent::Resumed => send_or_break!(
Event::Stream(StreamEvent::Resumed) => permit in self.frontend_tx,
self.transmit_queue => self.stream,
),
WorkerEvent::Stanza(stanza) => send_or_break!(
Event::Stanza(stanza) => permit in self.frontend_tx,
self.transmit_queue => self.stream,
),
WorkerEvent::ParseError(e) => {
log::error!("Parse error on stream: {e}");
self.stream.start_send_stream_error(parse_error_to_stream_error(e));
// We are not break-ing here, because drive_duplex
// is sending the error.
}
WorkerEvent::SoftTimeout => {
if self.stream.queue_sm_request() {
log::debug!("SoftTimeout tripped: enqueued <sm:r/>");
} else {
log::debug!("SoftTimeout tripped. Stream Management is not enabled, enqueueing ping IQ");
ping_probe_ctr = ping_probe_ctr.wrapping_add(1);
// We can leave to/from blank because those
// are not needed to send a ping to the peer.
// (At least that holds true on c2s streams.
// On s2s, things are more complicated anyway
// due to how bidi works.)
self.transmit_queue.enqueue(QueueEntry::untracked(Box::new(iq::Iq::from_get(
format!("{}-{}", PING_PROBE_ID_PREFIX, ping_probe_ctr),
ping::Ping,
).into())));
}
}
WorkerEvent::ReconnectAborted => {
panic!("Backend was unable to handle reconnect request.");
}
}
},
}
}
match self.stream.close().await {
Ok(()) => log::debug!("Stream closed successfully"),
Err(e) => log::debug!("Stream closure failed: {e}"),
}
}
}
async fn shutdown_stream_by_remote_choice(mut stream: XmppStream, timeout: Duration) {
let deadline = Instant::now() + timeout;
match tokio::time::timeout_at(
deadline,
<XmppStream as SinkExt<&Stanza>>::close(&mut stream),
)
.await
{
// We don't really care about success or failure here.
Ok(_) => (),
// .. but if we run in a timeout, we exit here right away.
Err(_) => {
log::debug!("Giving up on clean stream shutdown after timeout elapsed.");
return;
}
}
let timeout = tokio::time::sleep_until(deadline);
tokio::pin!(timeout);
loop {
tokio::select! {
_ = &mut timeout => {
log::debug!("Giving up on clean stream shutdown after timeout elapsed.");
break;
}
ev = stream.next() => match ev {
None => break,
Some(Ok(data)) => {
log::debug!("Ignoring data on stream during shutdown: {data:?}");
break;
}
Some(Err(ReadError::HardError(e))) => {
log::debug!("Ignoring stream I/O error during shutdown: {e}");
break;
}
Some(Err(ReadError::SoftTimeout)) => (),
Some(Err(ReadError::ParseError(_))) => (),
Some(Err(ReadError::StreamFooterReceived)) => (),
}
}
}
}