xmpp-rs/tokio-xmpp/src/client/auth.rs

116 lines
4.9 KiB
Rust
Raw Normal View History

2018-12-20 20:39:01 +01:00
use std::str::FromStr;
2018-12-20 21:17:56 +01:00
use std::collections::HashSet;
2019-09-08 21:28:44 +02:00
use std::convert::TryFrom;
2018-12-20 21:20:46 +01:00
use futures::{Future, Poll, Stream, future::{ok, err, IntoFuture}};
2018-12-18 19:04:31 +01:00
use sasl::client::mechanisms::{Anonymous, Plain, Scram};
use sasl::client::Mechanism;
use sasl::common::scram::{Sha1, Sha256};
use sasl::common::Credentials;
2017-06-06 01:29:20 +02:00
use tokio_io::{AsyncRead, AsyncWrite};
2018-12-18 19:04:31 +01:00
use xmpp_parsers::sasl::{Auth, Challenge, Failure, Mechanism as XMPPMechanism, Response, Success};
2017-06-06 01:29:20 +02:00
2018-12-18 18:29:31 +01:00
use crate::xmpp_codec::Packet;
use crate::xmpp_stream::XMPPStream;
2018-12-18 19:04:31 +01:00
use crate::{AuthError, Error, ProtocolError};
2017-06-06 01:29:20 +02:00
const NS_XMPP_SASL: &str = "urn:ietf:params:xml:ns:xmpp-sasl";
2018-12-20 20:39:01 +01:00
pub struct ClientAuth<S: AsyncRead + AsyncWrite> {
future: Box<dyn Future<Item = XMPPStream<S>, Error = Error>>,
2017-06-06 01:29:20 +02:00
}
2018-12-20 20:39:01 +01:00
impl<S: AsyncRead + AsyncWrite + 'static> ClientAuth<S> {
2018-09-06 17:46:06 +02:00
pub fn new(stream: XMPPStream<S>, creds: Credentials) -> Result<Self, Error> {
let local_mechs: Vec<Box<dyn Fn() -> Box<dyn Mechanism>>> = vec![
2018-12-20 21:17:56 +01:00
Box::new(|| Box::new(Scram::<Sha256>::from_credentials(creds.clone()).unwrap())),
Box::new(|| Box::new(Scram::<Sha1>::from_credentials(creds.clone()).unwrap())),
Box::new(|| Box::new(Plain::from_credentials(creds.clone()).unwrap())),
Box::new(|| Box::new(Anonymous::new())),
2017-06-06 01:29:20 +02:00
];
2018-12-20 21:17:56 +01:00
let remote_mechs: HashSet<String> = stream
2018-12-18 19:04:31 +01:00
.stream_features
.get_child("mechanisms", NS_XMPP_SASL)
2018-09-06 23:57:42 +02:00
.ok_or(AuthError::NoMechanism)?
.children()
.filter(|child| child.is("mechanism", NS_XMPP_SASL))
.map(|mech_el| mech_el.text())
.collect();
2017-06-06 01:29:20 +02:00
2018-12-20 21:17:56 +01:00
for local_mech in local_mechs {
let mut mechanism = local_mech();
if remote_mechs.contains(mechanism.name()) {
2018-12-20 20:39:01 +01:00
let initial = mechanism.initial().map_err(AuthError::Sasl)?;
2018-12-20 21:17:56 +01:00
let mechanism_name = XMPPMechanism::from_str(mechanism.name()).map_err(ProtocolError::Parsers)?;
2018-12-20 20:39:01 +01:00
let send_initial = Box::new(stream.send_stanza(Auth {
mechanism: mechanism_name,
data: initial,
}))
.map_err(Error::Io);
let future = Box::new(send_initial.and_then(
|stream| Self::handle_challenge(stream, mechanism)
).and_then(
|stream| stream.restart()
));
return Ok(ClientAuth {
future,
});
2017-06-06 01:29:20 +02:00
}
}
2018-09-06 23:57:42 +02:00
Err(AuthError::NoMechanism)?
2017-06-06 01:29:20 +02:00
}
fn handle_challenge(stream: XMPPStream<S>, mut mechanism: Box<dyn Mechanism>) -> Box<dyn Future<Item = XMPPStream<S>, Error = Error>> {
2018-12-20 20:39:01 +01:00
Box::new(
stream.into_future()
.map_err(|(e, _stream)| e.into())
.and_then(|(stanza, stream)| {
match stanza {
Some(Packet::Stanza(stanza)) => {
if let Ok(challenge) = Challenge::try_from(stanza.clone()) {
let response = mechanism
.response(&challenge.data);
Box::new(
response
.map_err(|e| AuthError::Sasl(e).into())
.into_future()
.and_then(|response| {
// Send response and loop
stream.send_stanza(Response { data: response })
.map_err(Error::Io)
.and_then(|stream| Self::handle_challenge(stream, mechanism))
})
)
} else if let Ok(_) = Success::try_from(stanza.clone()) {
Box::new(ok(stream))
} else if let Ok(failure) = Failure::try_from(stanza.clone()) {
Box::new(err(Error::Auth(AuthError::Fail(failure.defined_condition))))
} else if stanza.name() == "failure" {
// Workaround for https://gitlab.com/xmpp-rs/xmpp-parsers/merge_requests/1
Box::new(err(Error::Auth(AuthError::Sasl("failure".to_string()))))
2018-12-20 20:39:01 +01:00
} else {
// ignore and loop
Self::handle_challenge(stream, mechanism)
}
}
Some(_) => {
// ignore and loop
Self::handle_challenge(stream, mechanism)
}
None => Box::new(err(Error::Disconnected))
}
})
)
2017-06-06 01:29:20 +02:00
}
}
impl<S: AsyncRead + AsyncWrite> Future for ClientAuth<S> {
type Item = XMPPStream<S>;
2018-09-06 17:46:06 +02:00
type Error = Error;
2017-06-06 01:29:20 +02:00
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
2018-12-20 20:39:01 +01:00
self.future.poll()
2017-06-06 01:29:20 +02:00
}
}