aerogramme/src/session.rs

146 lines
4.8 KiB
Rust
Raw Normal View History

2022-06-13 09:44:02 +00:00
use std::sync::Arc;
use boitalettres::errors::Error as BalError;
2022-06-14 08:19:24 +00:00
use boitalettres::proto::{Request, Response};
2022-06-13 09:44:02 +00:00
use futures::future::BoxFuture;
use futures::future::FutureExt;
2022-06-14 08:19:24 +00:00
use imap_codec::types::command::CommandBody;
use tokio::sync::mpsc::error::TrySendError;
use tokio::sync::{mpsc, oneshot};
2022-06-13 09:44:02 +00:00
use crate::command;
use crate::login::Credentials;
use crate::mailbox::Mailbox;
2022-06-15 16:40:39 +00:00
use crate::LoginProvider;
2022-06-13 09:44:02 +00:00
/* This constant configures backpressure in the system,
* or more specifically, how many pipelined messages are allowed
2022-06-14 08:19:24 +00:00
* before refusing them
2022-06-13 09:44:02 +00:00
*/
const MAX_PIPELINED_COMMANDS: usize = 10;
struct Message {
req: Request,
2022-06-13 09:58:33 +00:00
tx: oneshot::Sender<Result<Response, BalError>>,
2022-06-13 09:44:02 +00:00
}
pub struct Manager {
tx: mpsc::Sender<Message>,
}
//@FIXME we should garbage collect the Instance when the Manager is destroyed.
impl Manager {
2022-06-15 16:40:39 +00:00
pub fn new(login_provider: Arc<dyn LoginProvider + Send + Sync>) -> Self {
2022-06-14 08:19:24 +00:00
let (tx, rx) = mpsc::channel(MAX_PIPELINED_COMMANDS);
tokio::spawn(async move {
2022-06-15 16:40:39 +00:00
let mut instance = Instance::new(login_provider, rx);
2022-06-13 09:44:02 +00:00
instance.start().await;
});
Self { tx }
}
pub fn process(&self, req: Request) -> BoxFuture<'static, Result<Response, BalError>> {
let (tx, rx) = oneshot::channel();
let msg = Message { req, tx };
// We use try_send on a bounded channel to protect the daemons from DoS.
// Pipelining requests in IMAP are a special case: they should not occure often
// and in a limited number (like 3 requests). Someone filling the channel
// will probably be malicious so we "rate limit" them.
match self.tx.try_send(msg) {
Ok(()) => (),
2022-06-14 08:19:24 +00:00
Err(TrySendError::Full(_)) => {
return async { Response::bad("Too fast! Send less pipelined requests!") }.boxed()
}
Err(TrySendError::Closed(_)) => {
return async { Response::bad("The session task has exited") }.boxed()
}
2022-06-13 09:44:02 +00:00
};
// @FIXME add a timeout, handle a session that fails.
async {
2022-06-13 09:58:33 +00:00
match rx.await {
Ok(r) => r,
Err(e) => {
tracing::warn!("Got error {:#?}", e);
Response::bad("No response from the session handler")
2022-06-14 08:19:24 +00:00
}
2022-06-13 09:58:33 +00:00
}
2022-06-14 08:19:24 +00:00
}
.boxed()
2022-06-13 09:44:02 +00:00
}
}
2022-06-13 16:01:07 +00:00
pub struct User {
pub name: String,
pub creds: Credentials,
}
2022-06-13 09:44:02 +00:00
pub struct Instance {
rx: mpsc::Receiver<Message>,
2022-06-15 16:40:39 +00:00
pub login_provider: Arc<dyn LoginProvider + Send + Sync>,
2022-06-13 09:44:02 +00:00
pub selected: Option<Mailbox>,
2022-06-13 16:01:07 +00:00
pub user: Option<User>,
2022-06-13 09:44:02 +00:00
}
impl Instance {
2022-06-15 16:40:39 +00:00
fn new(login_provider: Arc<dyn LoginProvider + Send + Sync>, rx: mpsc::Receiver<Message>) -> Self {
2022-06-14 08:19:24 +00:00
Self {
2022-06-15 16:40:39 +00:00
login_provider,
2022-06-14 08:19:24 +00:00
rx,
selected: None,
user: None,
}
2022-06-13 09:44:02 +00:00
}
//@FIXME add a function that compute the runner's name from its local info
// to ease debug
// fn name(&self) -> String { }
async fn start(&mut self) {
//@FIXME add more info about the runner
tracing::debug!("starting runner");
while let Some(msg) = self.rx.recv().await {
let mut cmd = command::Command::new(msg.req.tag, self);
2022-06-13 09:58:33 +00:00
let res = match msg.req.body {
2022-06-13 09:44:02 +00:00
CommandBody::Capability => cmd.capability().await,
CommandBody::Login { username, password } => cmd.login(username, password).await,
2022-06-14 08:19:24 +00:00
CommandBody::Lsub {
reference,
mailbox_wildcard,
} => cmd.lsub(reference, mailbox_wildcard).await,
CommandBody::List {
reference,
mailbox_wildcard,
} => cmd.list(reference, mailbox_wildcard).await,
2022-06-13 09:44:02 +00:00
CommandBody::Select { mailbox } => cmd.select(mailbox).await,
2022-06-14 08:19:24 +00:00
CommandBody::Fetch {
sequence_set,
attributes,
uid,
} => cmd.fetch(sequence_set, attributes, uid).await,
_ => Response::bad("Error in IMAP command received by server.")
.map_err(anyhow::Error::new),
2022-06-13 09:44:02 +00:00
};
2022-06-13 09:58:33 +00:00
2022-06-13 16:01:07 +00:00
let wrapped_res = res.or_else(|e| match e.downcast::<BalError>() {
Ok(be) => Err(be),
Err(ae) => {
tracing::warn!(error=%ae, "internal.error");
Response::bad("Internal error")
}
});
2022-06-13 09:58:33 +00:00
//@FIXME I think we should quit this thread on error and having our manager watch it,
// and then abort the session as it is corrupted.
2022-06-14 08:19:24 +00:00
msg.tx.send(wrapped_res).unwrap_or_else(|e| {
tracing::warn!("failed to send imap response to manager: {:#?}", e)
});
2022-06-13 09:44:02 +00:00
}
//@FIXME add more info about the runner
tracing::debug!("exiting runner");
}
}