2017-06-04 22:42:35 +00:00
|
|
|
use std::mem::replace;
|
|
|
|
use std::io::{Error, ErrorKind};
|
|
|
|
use std::sync::Arc;
|
|
|
|
use futures::{Future, Sink, Poll, Async};
|
|
|
|
use futures::stream::Stream;
|
|
|
|
use futures::sink;
|
2017-06-04 22:45:16 +00:00
|
|
|
use tokio_io::{AsyncRead, AsyncWrite};
|
2017-06-04 22:42:35 +00:00
|
|
|
use rustls::*;
|
|
|
|
use tokio_rustls::*;
|
|
|
|
use xml;
|
|
|
|
|
|
|
|
use super::{XMPPStream, XMPPCodec, Packet};
|
|
|
|
|
|
|
|
|
|
|
|
const NS_XMPP_STREAM: &str = "http://etherx.jabber.org/streams";
|
|
|
|
const NS_XMPP_TLS: &str = "urn:ietf:params:xml:ns:xmpp-tls";
|
|
|
|
|
2017-06-04 22:45:16 +00:00
|
|
|
pub struct StartTlsClient<S: AsyncWrite> {
|
|
|
|
state: StartTlsClientState<S>,
|
2017-06-04 22:42:35 +00:00
|
|
|
arc_config: Arc<ClientConfig>,
|
|
|
|
}
|
|
|
|
|
2017-06-04 22:45:16 +00:00
|
|
|
enum StartTlsClientState<S: AsyncWrite> {
|
2017-06-04 22:42:35 +00:00
|
|
|
Invalid,
|
2017-06-04 22:45:16 +00:00
|
|
|
AwaitFeatures(XMPPStream<S>),
|
|
|
|
SendStartTls(sink::Send<XMPPStream<S>>),
|
|
|
|
AwaitProceed(XMPPStream<S>),
|
|
|
|
StartingTls(ConnectAsync<S>),
|
2017-06-04 22:42:35 +00:00
|
|
|
}
|
|
|
|
|
2017-06-04 22:45:16 +00:00
|
|
|
impl<S: AsyncWrite> StartTlsClient<S> {
|
2017-06-04 22:42:35 +00:00
|
|
|
/// Waits for <stream:features>
|
2017-06-04 22:45:16 +00:00
|
|
|
pub fn from_stream(xmpp_stream: XMPPStream<S>, arc_config: Arc<ClientConfig>) -> Self {
|
2017-06-04 22:42:35 +00:00
|
|
|
StartTlsClient {
|
|
|
|
state: StartTlsClientState::AwaitFeatures(xmpp_stream),
|
|
|
|
arc_config: arc_config,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: eval <stream:features>, check ns
|
2017-06-04 22:45:16 +00:00
|
|
|
impl<S: AsyncRead + AsyncWrite> Future for StartTlsClient<S> {
|
|
|
|
type Item = XMPPStream<TlsStream<S, ClientSession>>;
|
2017-06-04 22:42:35 +00:00
|
|
|
type Error = Error;
|
|
|
|
|
|
|
|
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
|
|
|
|
let old_state = replace(&mut self.state, StartTlsClientState::Invalid);
|
|
|
|
let mut retry = false;
|
|
|
|
|
|
|
|
let (new_state, result) = match old_state {
|
|
|
|
StartTlsClientState::AwaitFeatures(mut xmpp_stream) =>
|
|
|
|
match xmpp_stream.poll() {
|
|
|
|
Ok(Async::Ready(Some(Packet::Stanza(ref stanza))))
|
|
|
|
if stanza.name == "features"
|
|
|
|
&& stanza.ns == Some(NS_XMPP_STREAM.to_owned())
|
|
|
|
=>
|
|
|
|
{
|
|
|
|
println!("Got features: {}", stanza);
|
|
|
|
match stanza.get_child("starttls", Some(NS_XMPP_TLS)) {
|
|
|
|
None =>
|
|
|
|
(StartTlsClientState::Invalid, Err(Error::from(ErrorKind::InvalidData))),
|
|
|
|
Some(_) => {
|
|
|
|
let nonza = xml::Element::new(
|
|
|
|
"starttls".to_owned(), Some(NS_XMPP_TLS.to_owned()),
|
|
|
|
vec![]
|
|
|
|
);
|
|
|
|
println!("send {}", nonza);
|
|
|
|
let packet = Packet::Stanza(nonza);
|
|
|
|
let send = xmpp_stream.send(packet);
|
|
|
|
let new_state = StartTlsClientState::SendStartTls(send);
|
|
|
|
retry = true;
|
|
|
|
(new_state, Ok(Async::NotReady))
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Ok(Async::Ready(value)) => {
|
|
|
|
println!("StartTlsClient ignore {:?}", value);
|
|
|
|
(StartTlsClientState::AwaitFeatures(xmpp_stream), Ok(Async::NotReady))
|
|
|
|
},
|
|
|
|
Ok(_) =>
|
|
|
|
(StartTlsClientState::AwaitFeatures(xmpp_stream), Ok(Async::NotReady)),
|
|
|
|
Err(e) =>
|
|
|
|
(StartTlsClientState::AwaitFeatures(xmpp_stream), Err(e)),
|
|
|
|
},
|
|
|
|
StartTlsClientState::SendStartTls(mut send) =>
|
|
|
|
match send.poll() {
|
|
|
|
Ok(Async::Ready(xmpp_stream)) => {
|
|
|
|
println!("starttls sent");
|
|
|
|
let new_state = StartTlsClientState::AwaitProceed(xmpp_stream);
|
|
|
|
retry = true;
|
|
|
|
(new_state, Ok(Async::NotReady))
|
|
|
|
},
|
|
|
|
Ok(Async::NotReady) =>
|
|
|
|
(StartTlsClientState::SendStartTls(send), Ok(Async::NotReady)),
|
|
|
|
Err(e) =>
|
|
|
|
(StartTlsClientState::SendStartTls(send), Err(e)),
|
|
|
|
},
|
|
|
|
StartTlsClientState::AwaitProceed(mut xmpp_stream) =>
|
|
|
|
match xmpp_stream.poll() {
|
|
|
|
Ok(Async::Ready(Some(Packet::Stanza(ref stanza))))
|
|
|
|
if stanza.name == "proceed" =>
|
|
|
|
{
|
|
|
|
println!("* proceed *");
|
|
|
|
let stream = xmpp_stream.into_inner();
|
|
|
|
let connect = self.arc_config.connect_async("spaceboyz.net", stream);
|
|
|
|
let new_state = StartTlsClientState::StartingTls(connect);
|
|
|
|
retry = true;
|
|
|
|
(new_state, Ok(Async::NotReady))
|
|
|
|
},
|
|
|
|
Ok(Async::Ready(value)) => {
|
|
|
|
println!("StartTlsClient ignore {:?}", value);
|
|
|
|
(StartTlsClientState::AwaitFeatures(xmpp_stream), Ok(Async::NotReady))
|
|
|
|
},
|
|
|
|
Ok(_) =>
|
|
|
|
(StartTlsClientState::AwaitProceed(xmpp_stream), Ok(Async::NotReady)),
|
|
|
|
Err(e) =>
|
|
|
|
(StartTlsClientState::AwaitProceed(xmpp_stream), Err(e)),
|
|
|
|
},
|
|
|
|
StartTlsClientState::StartingTls(mut connect) =>
|
|
|
|
match connect.poll() {
|
|
|
|
Ok(Async::Ready(tls_stream)) => {
|
|
|
|
println!("Got a TLS stream!");
|
|
|
|
let xmpp_stream = XMPPCodec::frame_stream(tls_stream);
|
|
|
|
(StartTlsClientState::Invalid, Ok(Async::Ready(xmpp_stream)))
|
|
|
|
},
|
|
|
|
Ok(Async::NotReady) =>
|
|
|
|
(StartTlsClientState::StartingTls(connect), Ok(Async::NotReady)),
|
|
|
|
Err(e) =>
|
|
|
|
(StartTlsClientState::StartingTls(connect), Err(e)),
|
|
|
|
},
|
|
|
|
StartTlsClientState::Invalid =>
|
|
|
|
unreachable!(),
|
|
|
|
};
|
|
|
|
|
|
|
|
self.state = new_state;
|
|
|
|
if retry {
|
|
|
|
self.poll()
|
|
|
|
} else {
|
|
|
|
result
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|