use core::fmt;
use alloc::{
borrow::Cow,
string::{String, ToString},
vec::Vec,
};
use bounded_static::IntoBoundedStatic;
use log::trace;
use secrecy::{ExposeSecret, SecretBox, SecretString};
use thiserror::Error;
use crate::{
coroutine::*,
rfc4954::{auth::SmtpAuthCommand, auth_data::SmtpAuthData},
rfc5321::{
ehlo::{SmtpEhlo, SmtpEhloError},
types::{ehlo_domain::EhloDomain, reply_code::ReplyCode},
},
send::*,
smtp_try,
};
pub const PLAIN: &str = "PLAIN";
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct SmtpAuthPlainOptions {
pub initial_request: bool,
pub ensure_capabilities: bool,
}
impl Default for SmtpAuthPlainOptions {
fn default() -> Self {
Self {
initial_request: true,
ensure_capabilities: true,
}
}
}
#[derive(Debug, Error)]
pub enum SmtpAuthPlainError {
#[error("SMTP AUTH PLAIN failed: rejected {code} {message}")]
Rejected { code: u16, message: String },
#[error("SMTP AUTH PLAIN failed: server sent an unexpected continuation request")]
UnexpectedContinuationRequest,
#[error("SMTP AUTH PLAIN failed: server did not send the expected continuation request")]
ExpectedContinuationRequest,
#[error("SMTP AUTH PLAIN failed: {0}")]
Send(#[from] SendSmtpCommandError),
#[error(transparent)]
Ehlo(#[from] SmtpEhloError),
}
pub struct SmtpAuthPlain {
state: State,
domain: Option<EhloDomain<'static>>,
payload: Option<Vec<u8>>,
opts: SmtpAuthPlainOptions,
}
impl SmtpAuthPlain {
pub fn new(
login: &str,
password: &SecretString,
domain: EhloDomain<'_>,
opts: SmtpAuthPlainOptions,
) -> Self {
let mut payload = Vec::new();
payload.push(0);
payload.extend_from_slice(login.as_bytes());
payload.push(0);
payload.extend_from_slice(password.expose_secret().as_bytes());
let state = if opts.initial_request {
let cmd = SmtpAuthCommand {
mechanism: Cow::Borrowed(PLAIN),
initial_response: Some(SecretBox::new(payload.clone().into_boxed_slice())),
};
State::Send(SendSmtpCommand::new(cmd))
} else {
let cmd = SmtpAuthCommand {
mechanism: Cow::Borrowed(PLAIN),
initial_response: None,
};
State::Send(SendSmtpCommand::new(cmd))
};
Self {
state,
domain: Some(domain.into_static()),
payload: Some(payload),
opts,
}
}
}
impl SmtpCoroutine for SmtpAuthPlain {
type Yield = SmtpYield;
type Return = Result<(), SmtpAuthPlainError>;
fn resume(&mut self, arg: Option<&[u8]>) -> SmtpCoroutineState<Self::Yield, Self::Return> {
loop {
trace!("auth plain: {}", self.state);
match &mut self.state {
State::Send(send) => {
let out = smtp_try!(send, arg);
if out.response.code == ReplyCode::AUTH_SUCCESSFUL {
if self.opts.initial_request {
self.advance_after_auth();
continue;
}
return SmtpCoroutineState::Complete(Err(
SmtpAuthPlainError::ExpectedContinuationRequest,
));
}
if out.response.code == ReplyCode::AUTH_CONTINUE {
if self.opts.initial_request {
return SmtpCoroutineState::Complete(Err(
SmtpAuthPlainError::UnexpectedContinuationRequest,
));
}
let payload = self.payload.take().expect("payload taken twice");
let data = SmtpAuthData::r#continue(payload.into_boxed_slice());
self.state = State::Continue(SendSmtpCommand::new(data));
continue;
}
let code = out.response.code.code();
let message = out.response.text().to_string();
return SmtpCoroutineState::Complete(Err(SmtpAuthPlainError::Rejected {
code,
message,
}));
}
State::Continue(send) => {
let out = smtp_try!(send, arg);
if out.response.code == ReplyCode::AUTH_SUCCESSFUL {
self.advance_after_auth();
continue;
}
let code = out.response.code.code();
let message = out.response.text().to_string();
return SmtpCoroutineState::Complete(Err(SmtpAuthPlainError::Rejected {
code,
message,
}));
}
State::Ehlo(ehlo) => {
let _ = smtp_try!(ehlo, arg);
return SmtpCoroutineState::Complete(Ok(()));
}
State::Done => return SmtpCoroutineState::Complete(Ok(())),
}
}
}
}
impl SmtpAuthPlain {
fn advance_after_auth(&mut self) {
let _ = self.payload.take();
if self.opts.ensure_capabilities {
let domain = self.domain.take().expect("domain taken twice");
self.state = State::Ehlo(SmtpEhlo::new(domain));
} else {
self.state = State::Done;
}
}
}
enum State {
Send(SendSmtpCommand<SmtpAuthCommand<'static>>),
Continue(SendSmtpCommand<SmtpAuthData>),
Ehlo(SmtpEhlo),
Done,
}
impl fmt::Display for State {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::Send(_) => f.write_str("send auth plain"),
Self::Continue(_) => f.write_str("send credentials"),
Self::Ehlo(_) => f.write_str("refresh capabilities"),
Self::Done => f.write_str("done"),
}
}
}
#[cfg(test)]
mod tests {
use crate::rfc5321::types::domain::Domain;
use super::*;
fn domain() -> EhloDomain<'static> {
EhloDomain::Domain(Domain(Cow::Borrowed("example.com")))
}
fn password() -> SecretString {
SecretString::from("secret".to_string())
}
#[test]
fn ir_success_then_ehlo_returns_ok() {
let opts = SmtpAuthPlainOptions::default();
let mut auth = SmtpAuthPlain::new("alice", &password(), domain(), opts);
let bytes = expect_wants_write(&mut auth, None);
let line = core::str::from_utf8(&bytes).expect("utf8 command");
assert!(line.starts_with("AUTH PLAIN "));
expect_wants_read(&mut auth);
let _ehlo = expect_wants_write(&mut auth, Some(b"235 OK\r\n"));
expect_wants_read(&mut auth);
expect_complete_ok(&mut auth, b"250-server.example.com\r\n250 AUTH PLAIN\r\n");
}
#[test]
fn ir_success_without_ehlo_returns_ok() {
let opts = SmtpAuthPlainOptions {
initial_request: true,
ensure_capabilities: false,
};
let mut auth = SmtpAuthPlain::new("alice", &password(), domain(), opts);
let _ = expect_wants_write(&mut auth, None);
expect_wants_read(&mut auth);
expect_complete_ok(&mut auth, b"235 OK\r\n");
}
#[test]
fn ir_invalid_credentials_returns_rejected_error() {
let opts = SmtpAuthPlainOptions::default();
let mut auth = SmtpAuthPlain::new("alice", &password(), domain(), opts);
let _ = expect_wants_write(&mut auth, None);
expect_wants_read(&mut auth);
let err = expect_complete_err(&mut auth, b"535 wrong password\r\n");
let SmtpAuthPlainError::Rejected { code, message } = err else {
panic!("expected SmtpAuthPlainError::Rejected, got {err:?}");
};
assert_eq!(code, 535);
assert_eq!(message, "wrong password");
}
#[test]
fn non_ir_success_returns_ok() {
let opts = SmtpAuthPlainOptions {
initial_request: false,
ensure_capabilities: false,
};
let mut auth = SmtpAuthPlain::new("alice", &password(), domain(), opts);
let bytes = expect_wants_write(&mut auth, None);
let line = core::str::from_utf8(&bytes).expect("utf8 command");
assert!(line.trim_end().ends_with("AUTH PLAIN"));
expect_wants_read(&mut auth);
let creds = expect_wants_write(&mut auth, Some(b"334 \r\n"));
assert!(creds.ends_with(b"\r\n"));
expect_wants_read(&mut auth);
expect_complete_ok(&mut auth, b"235 OK\r\n");
}
#[test]
fn eof_returns_eof_error() {
let opts = SmtpAuthPlainOptions::default();
let mut auth = SmtpAuthPlain::new("alice", &password(), domain(), opts);
let _ = expect_wants_write(&mut auth, None);
expect_wants_read(&mut auth);
let err = expect_complete_err(&mut auth, b"");
assert!(matches!(
err,
SmtpAuthPlainError::Send(SendSmtpCommandError::Eof)
));
}
fn expect_wants_write(cor: &mut SmtpAuthPlain, arg: Option<&[u8]>) -> Vec<u8> {
match cor.resume(arg) {
SmtpCoroutineState::Yielded(SmtpYield::WantsWrite(bytes)) => bytes,
state => panic!("expected WantsWrite, got {state:?}"),
}
}
fn expect_wants_read(cor: &mut SmtpAuthPlain) {
match cor.resume(None) {
SmtpCoroutineState::Yielded(SmtpYield::WantsRead) => {}
state => panic!("expected WantsRead, got {state:?}"),
}
}
fn expect_complete_ok(cor: &mut SmtpAuthPlain, reply: &[u8]) {
match cor.resume(Some(reply)) {
SmtpCoroutineState::Complete(Ok(())) => {}
state => panic!("expected Complete(Ok), got {state:?}"),
}
}
fn expect_complete_err(cor: &mut SmtpAuthPlain, reply: &[u8]) -> SmtpAuthPlainError {
match cor.resume(Some(reply)) {
SmtpCoroutineState::Complete(Err(err)) => err,
state => panic!("expected Complete(Err), got {state:?}"),
}
}
}