2017-11-04 20:33:14 +01:00
|
|
|
use std::{io, net};
|
2017-10-07 06:48:14 +02:00
|
|
|
use std::rc::Rc;
|
2017-10-16 22:13:32 +02:00
|
|
|
use std::marker::PhantomData;
|
2017-10-07 06:48:14 +02:00
|
|
|
|
|
|
|
use actix::dev::*;
|
2017-11-04 20:33:14 +01:00
|
|
|
use futures::Stream;
|
2017-10-16 22:13:32 +02:00
|
|
|
use tokio_io::{AsyncRead, AsyncWrite};
|
2017-11-04 20:33:14 +01:00
|
|
|
use tokio_core::net::{TcpListener, TcpStream};
|
2017-10-07 06:48:14 +02:00
|
|
|
|
2017-11-02 00:34:58 +01:00
|
|
|
#[cfg(feature="tls")]
|
|
|
|
use native_tls::TlsAcceptor;
|
|
|
|
#[cfg(feature="tls")]
|
|
|
|
use tokio_tls::{TlsStream, TlsAcceptorExt};
|
|
|
|
|
2017-11-04 21:24:57 +01:00
|
|
|
#[cfg(feature="alpn")]
|
|
|
|
use futures::Future;
|
2017-11-04 20:33:14 +01:00
|
|
|
#[cfg(feature="alpn")]
|
|
|
|
use openssl::ssl::{SslMethod, SslAcceptorBuilder};
|
|
|
|
#[cfg(feature="alpn")]
|
|
|
|
use openssl::pkcs12::ParsedPkcs12;
|
|
|
|
#[cfg(feature="alpn")]
|
|
|
|
use tokio_openssl::{SslStream, SslAcceptorExt};
|
|
|
|
|
|
|
|
use channel::{HttpChannel, HttpHandler};
|
2017-10-22 03:54:24 +02:00
|
|
|
|
2017-10-07 06:48:14 +02:00
|
|
|
|
2017-10-08 23:56:51 +02:00
|
|
|
/// An HTTP Server
|
2017-10-16 22:13:32 +02:00
|
|
|
///
|
|
|
|
/// `T` - async stream, anything that implements `AsyncRead` + `AsyncWrite`.
|
|
|
|
///
|
|
|
|
/// `A` - peer address
|
2017-10-22 03:54:24 +02:00
|
|
|
///
|
|
|
|
/// `H` - request handler
|
|
|
|
pub struct HttpServer<T, A, H> {
|
|
|
|
h: Rc<Vec<H>>,
|
2017-10-16 22:13:32 +02:00
|
|
|
io: PhantomData<T>,
|
|
|
|
addr: PhantomData<A>,
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
|
|
|
|
2017-10-22 03:54:24 +02:00
|
|
|
impl<T: 'static, A: 'static, H: 'static> Actor for HttpServer<T, A, H> {
|
2017-10-07 06:48:14 +02:00
|
|
|
type Context = Context<Self>;
|
|
|
|
}
|
|
|
|
|
2017-10-22 03:54:24 +02:00
|
|
|
impl<T, A, H> HttpServer<T, A, H> where H: HttpHandler
|
|
|
|
{
|
|
|
|
/// Create new http server with vec of http handlers
|
|
|
|
pub fn new<U: IntoIterator<Item=H>>(handler: U) -> Self {
|
2017-10-23 02:33:24 +02:00
|
|
|
let apps: Vec<_> = handler.into_iter().collect();
|
2017-10-22 03:54:24 +02:00
|
|
|
|
|
|
|
HttpServer {h: Rc::new(apps),
|
|
|
|
io: PhantomData,
|
|
|
|
addr: PhantomData}
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
2017-10-16 22:13:32 +02:00
|
|
|
}
|
|
|
|
|
2017-10-22 03:54:24 +02:00
|
|
|
impl<T, A, H> HttpServer<T, A, H>
|
2017-10-16 22:13:32 +02:00
|
|
|
where T: AsyncRead + AsyncWrite + 'static,
|
2017-10-22 03:54:24 +02:00
|
|
|
A: 'static,
|
|
|
|
H: HttpHandler,
|
2017-10-16 22:13:32 +02:00
|
|
|
{
|
|
|
|
/// Start listening for incomming connections from stream.
|
|
|
|
pub fn serve_incoming<S, Addr>(self, stream: S) -> io::Result<Addr>
|
|
|
|
where Self: ActorAddress<Self, Addr>,
|
|
|
|
S: Stream<Item=(T, A), Error=io::Error> + 'static
|
|
|
|
{
|
|
|
|
Ok(HttpServer::create(move |ctx| {
|
2017-11-04 20:33:14 +01:00
|
|
|
ctx.add_stream(stream.map(|(t, a)| IoStream(t, a, false)));
|
2017-10-16 22:13:32 +02:00
|
|
|
self
|
|
|
|
}))
|
|
|
|
}
|
2017-10-07 06:48:14 +02:00
|
|
|
|
2017-11-02 00:34:58 +01:00
|
|
|
fn bind<S: net::ToSocketAddrs>(&self, addr: S)
|
|
|
|
-> io::Result<Vec<(net::SocketAddr, TcpListener)>>
|
2017-10-07 06:48:14 +02:00
|
|
|
{
|
2017-10-15 23:53:03 +02:00
|
|
|
let mut err = None;
|
|
|
|
let mut addrs = Vec::new();
|
2017-10-16 10:19:23 +02:00
|
|
|
if let Ok(iter) = addr.to_socket_addrs() {
|
2017-10-15 23:53:03 +02:00
|
|
|
for addr in iter {
|
|
|
|
match TcpListener::bind(&addr, Arbiter::handle()) {
|
2017-10-27 08:14:33 +02:00
|
|
|
Ok(tcp) => addrs.push((addr, tcp)),
|
2017-10-15 23:53:03 +02:00
|
|
|
Err(e) => err = Some(e),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if addrs.is_empty() {
|
|
|
|
if let Some(e) = err.take() {
|
|
|
|
Err(e)
|
|
|
|
} else {
|
|
|
|
Err(io::Error::new(io::ErrorKind::Other, "Can not bind to address."))
|
|
|
|
}
|
|
|
|
} else {
|
2017-11-02 00:34:58 +01:00
|
|
|
Ok(addrs)
|
2017-10-15 23:53:03 +02:00
|
|
|
}
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-02 00:34:58 +01:00
|
|
|
impl<H: HttpHandler> HttpServer<TcpStream, net::SocketAddr, H> {
|
|
|
|
|
|
|
|
/// Start listening for incomming connections.
|
|
|
|
///
|
|
|
|
/// This methods converts address to list of `SocketAddr`
|
|
|
|
/// then binds to all available addresses.
|
|
|
|
pub fn serve<S, Addr>(self, addr: S) -> io::Result<Addr>
|
|
|
|
where Self: ActorAddress<Self, Addr>,
|
|
|
|
S: net::ToSocketAddrs,
|
|
|
|
{
|
|
|
|
let addrs = self.bind(addr)?;
|
|
|
|
|
|
|
|
Ok(HttpServer::create(move |ctx| {
|
|
|
|
for (addr, tcp) in addrs {
|
|
|
|
info!("Starting http server on {}", addr);
|
2017-11-04 20:33:14 +01:00
|
|
|
ctx.add_stream(tcp.incoming().map(|(t, a)| IoStream(t, a, false)));
|
2017-11-02 00:34:58 +01:00
|
|
|
}
|
|
|
|
self
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature="tls")]
|
|
|
|
impl<H: HttpHandler> HttpServer<TlsStream<TcpStream>, net::SocketAddr, H> {
|
|
|
|
|
|
|
|
/// Start listening for incomming tls connections.
|
|
|
|
///
|
|
|
|
/// This methods converts address to list of `SocketAddr`
|
|
|
|
/// then binds to all available addresses.
|
|
|
|
pub fn serve_tls<S, Addr>(self, addr: S, pkcs12: ::Pkcs12) -> io::Result<Addr>
|
|
|
|
where Self: ActorAddress<Self, Addr>,
|
|
|
|
S: net::ToSocketAddrs,
|
|
|
|
{
|
|
|
|
let addrs = self.bind(addr)?;
|
|
|
|
let acceptor = match TlsAcceptor::builder(pkcs12) {
|
|
|
|
Ok(builder) => {
|
|
|
|
match builder.build() {
|
|
|
|
Ok(acceptor) => Rc::new(acceptor),
|
|
|
|
Err(err) => return Err(io::Error::new(io::ErrorKind::Other, err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(err) => return Err(io::Error::new(io::ErrorKind::Other, err))
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(HttpServer::create(move |ctx| {
|
|
|
|
for (addr, tcp) in addrs {
|
|
|
|
info!("Starting tls http server on {}", addr);
|
|
|
|
|
|
|
|
let acc = acceptor.clone();
|
|
|
|
ctx.add_stream(tcp.incoming().and_then(move |(stream, addr)| {
|
|
|
|
TlsAcceptorExt::accept_async(acc.as_ref(), stream)
|
2017-11-02 20:54:09 +01:00
|
|
|
.map(move |t| {
|
|
|
|
IoStream(t, addr)
|
|
|
|
})
|
|
|
|
.map_err(|err| {
|
2017-11-03 19:29:44 +01:00
|
|
|
trace!("Error during handling tls connection: {}", err);
|
2017-11-02 20:54:09 +01:00
|
|
|
io::Error::new(io::ErrorKind::Other, err)
|
|
|
|
})
|
2017-11-02 00:34:58 +01:00
|
|
|
}));
|
|
|
|
}
|
|
|
|
self
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-04 20:33:14 +01:00
|
|
|
#[cfg(feature="alpn")]
|
|
|
|
impl<H: HttpHandler> HttpServer<SslStream<TcpStream>, net::SocketAddr, H> {
|
|
|
|
|
|
|
|
/// Start listening for incomming tls connections.
|
|
|
|
///
|
|
|
|
/// This methods converts address to list of `SocketAddr`
|
|
|
|
/// then binds to all available addresses.
|
|
|
|
pub fn serve_tls<S, Addr>(self, addr: S, identity: ParsedPkcs12) -> io::Result<Addr>
|
|
|
|
where Self: ActorAddress<Self, Addr>,
|
|
|
|
S: net::ToSocketAddrs,
|
|
|
|
{
|
|
|
|
let addrs = self.bind(addr)?;
|
|
|
|
let acceptor = match SslAcceptorBuilder::mozilla_intermediate(SslMethod::tls(),
|
|
|
|
&identity.pkey,
|
|
|
|
&identity.cert,
|
|
|
|
&identity.chain)
|
|
|
|
{
|
|
|
|
Ok(mut builder) => {
|
|
|
|
match builder.builder_mut().set_alpn_protocols(&[b"h2", b"http/1.1"]) {
|
|
|
|
Ok(_) => builder.build(),
|
|
|
|
Err(err) => return Err(io::Error::new(io::ErrorKind::Other, err)),
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Err(err) => return Err(io::Error::new(io::ErrorKind::Other, err))
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(HttpServer::create(move |ctx| {
|
|
|
|
for (addr, tcp) in addrs {
|
|
|
|
info!("Starting tls http server on {}", addr);
|
|
|
|
|
|
|
|
let acc = acceptor.clone();
|
|
|
|
ctx.add_stream(tcp.incoming().and_then(move |(stream, addr)| {
|
|
|
|
SslAcceptorExt::accept_async(&acc, stream)
|
|
|
|
.map(move |stream| {
|
|
|
|
let http2 = if let Some(p) =
|
|
|
|
stream.get_ref().ssl().selected_alpn_protocol()
|
|
|
|
{
|
|
|
|
p.len() == 2 && &p == b"h2"
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
};
|
|
|
|
IoStream(stream, addr, http2)
|
|
|
|
})
|
|
|
|
.map_err(|err| {
|
|
|
|
trace!("Error during handling tls connection: {}", err);
|
|
|
|
io::Error::new(io::ErrorKind::Other, err)
|
|
|
|
})
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
self
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct IoStream<T, A>(T, A, bool);
|
2017-10-22 00:21:16 +02:00
|
|
|
|
|
|
|
impl<T, A> ResponseType for IoStream<T, A>
|
2017-10-16 22:13:32 +02:00
|
|
|
where T: AsyncRead + AsyncWrite + 'static,
|
|
|
|
A: 'static
|
|
|
|
{
|
2017-10-07 06:48:14 +02:00
|
|
|
type Item = ();
|
|
|
|
type Error = ();
|
|
|
|
}
|
|
|
|
|
2017-10-22 03:54:24 +02:00
|
|
|
impl<T, A, H> StreamHandler<IoStream<T, A>, io::Error> for HttpServer<T, A, H>
|
|
|
|
where T: AsyncRead + AsyncWrite + 'static,
|
|
|
|
A: 'static,
|
|
|
|
H: HttpHandler + 'static {}
|
2017-10-07 06:48:14 +02:00
|
|
|
|
2017-10-22 03:54:24 +02:00
|
|
|
impl<T, A, H> Handler<IoStream<T, A>, io::Error> for HttpServer<T, A, H>
|
2017-10-16 22:13:32 +02:00
|
|
|
where T: AsyncRead + AsyncWrite + 'static,
|
2017-10-22 03:54:24 +02:00
|
|
|
A: 'static,
|
|
|
|
H: HttpHandler + 'static,
|
2017-10-16 22:13:32 +02:00
|
|
|
{
|
2017-11-02 00:34:58 +01:00
|
|
|
fn error(&mut self, err: io::Error, _: &mut Context<Self>) {
|
2017-11-04 17:07:44 +01:00
|
|
|
debug!("Error handling request: {}", err)
|
2017-11-02 00:34:58 +01:00
|
|
|
}
|
|
|
|
|
2017-10-22 00:21:16 +02:00
|
|
|
fn handle(&mut self, msg: IoStream<T, A>, _: &mut Context<Self>)
|
|
|
|
-> Response<Self, IoStream<T, A>>
|
2017-10-07 06:48:14 +02:00
|
|
|
{
|
|
|
|
Arbiter::handle().spawn(
|
2017-11-04 20:33:14 +01:00
|
|
|
HttpChannel::new(msg.0, msg.1, Rc::clone(&self.h), msg.2));
|
2017-10-07 09:22:09 +02:00
|
|
|
Self::empty()
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
|
|
|
}
|