135 lines
3.3 KiB
Rust
135 lines
3.3 KiB
Rust
use super::*;
|
|
use rustls::Session;
|
|
|
|
|
|
/// A wrapper around an underlying raw stream which implements the TLS or SSL
|
|
/// protocol.
|
|
#[derive(Debug)]
|
|
pub struct TlsStream<IO> {
|
|
pub(crate) io: IO,
|
|
pub(crate) session: ServerSession,
|
|
pub(crate) state: TlsState
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
pub(crate) enum TlsState {
|
|
Stream,
|
|
Eof,
|
|
Shutdown
|
|
}
|
|
|
|
pub(crate) enum MidHandshake<IO> {
|
|
Handshaking(TlsStream<IO>),
|
|
End
|
|
}
|
|
|
|
impl<IO> TlsStream<IO> {
|
|
#[inline]
|
|
pub fn get_ref(&self) -> (&IO, &ServerSession) {
|
|
(&self.io, &self.session)
|
|
}
|
|
|
|
#[inline]
|
|
pub fn get_mut(&mut self) -> (&mut IO, &mut ServerSession) {
|
|
(&mut self.io, &mut self.session)
|
|
}
|
|
|
|
#[inline]
|
|
pub fn into_inner(self) -> (IO, ServerSession) {
|
|
(self.io, self.session)
|
|
}
|
|
}
|
|
|
|
impl<IO> Future for MidHandshake<IO>
|
|
where IO: AsyncRead + AsyncWrite,
|
|
{
|
|
type Item = TlsStream<IO>;
|
|
type Error = io::Error;
|
|
|
|
#[inline]
|
|
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
|
|
if let MidHandshake::Handshaking(stream) = self {
|
|
let (io, session) = stream.get_mut();
|
|
let mut stream = Stream::new(io, session);
|
|
|
|
if stream.session.is_handshaking() {
|
|
try_nb!(stream.complete_io());
|
|
}
|
|
|
|
if stream.session.wants_write() {
|
|
try_nb!(stream.complete_io());
|
|
}
|
|
}
|
|
|
|
match mem::replace(self, MidHandshake::End) {
|
|
MidHandshake::Handshaking(stream) => Ok(Async::Ready(stream)),
|
|
MidHandshake::End => panic!()
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<IO> io::Read for TlsStream<IO>
|
|
where IO: AsyncRead + AsyncWrite
|
|
{
|
|
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
|
|
let mut stream = Stream::new(&mut self.io, &mut self.session);
|
|
|
|
match self.state {
|
|
TlsState::Stream => match stream.read(buf) {
|
|
Ok(0) => {
|
|
self.state = TlsState::Eof;
|
|
Ok(0)
|
|
},
|
|
Ok(n) => Ok(n),
|
|
Err(ref e) if e.kind() == io::ErrorKind::ConnectionAborted => {
|
|
self.state = TlsState::Shutdown;
|
|
stream.session.send_close_notify();
|
|
Ok(0)
|
|
},
|
|
Err(e) => Err(e)
|
|
},
|
|
TlsState::Eof | TlsState::Shutdown => Ok(0)
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<IO> io::Write for TlsStream<IO>
|
|
where IO: AsyncRead + AsyncWrite
|
|
{
|
|
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
|
|
let mut stream = Stream::new(&mut self.io, &mut self.session);
|
|
stream.write(buf)
|
|
}
|
|
|
|
fn flush(&mut self) -> io::Result<()> {
|
|
Stream::new(&mut self.io, &mut self.session).flush()?;
|
|
self.io.flush()
|
|
}
|
|
}
|
|
|
|
impl<IO> AsyncRead for TlsStream<IO>
|
|
where IO: AsyncRead + AsyncWrite
|
|
{
|
|
unsafe fn prepare_uninitialized_buffer(&self, _: &mut [u8]) -> bool {
|
|
false
|
|
}
|
|
}
|
|
|
|
impl<IO> AsyncWrite for TlsStream<IO>
|
|
where IO: AsyncRead + AsyncWrite,
|
|
{
|
|
fn shutdown(&mut self) -> Poll<(), io::Error> {
|
|
match self.state {
|
|
TlsState::Shutdown => (),
|
|
_ => {
|
|
self.session.send_close_notify();
|
|
self.state = TlsState::Shutdown;
|
|
}
|
|
}
|
|
|
|
let mut stream = Stream::new(&mut self.io, &mut self.session);
|
|
try_nb!(stream.complete_io());
|
|
stream.io.shutdown()
|
|
}
|
|
}
|