|
|
|
//! Methods to connect to an WebSocket as a client.
|
|
|
|
|
|
|
|
use std::io::{Read, Write};
|
|
|
|
use std::net::{SocketAddr, TcpStream, ToSocketAddrs};
|
|
|
|
use std::result::Result as StdResult;
|
|
|
|
|
|
|
|
use http::{Request, Response, Uri};
|
|
|
|
use log::*;
|
|
|
|
|
|
|
|
use url::Url;
|
|
|
|
|
|
|
|
use crate::protocol::WebSocketConfig;
|
|
|
|
|
|
|
|
#[cfg(feature = "tls")]
|
|
|
|
mod encryption {
|
|
|
|
pub use native_tls::TlsStream;
|
|
|
|
use native_tls::{HandshakeError as TlsHandshakeError, TlsConnector};
|
|
|
|
use std::net::TcpStream;
|
|
|
|
|
|
|
|
pub use crate::stream::Stream as StreamSwitcher;
|
|
|
|
/// TCP stream switcher (plain/TLS).
|
|
|
|
pub type AutoStream = StreamSwitcher<TcpStream, TlsStream<TcpStream>>;
|
|
|
|
|
|
|
|
use crate::error::Result;
|
|
|
|
use crate::stream::Mode;
|
|
|
|
|
|
|
|
pub fn wrap_stream(stream: TcpStream, domain: &str, mode: Mode) -> Result<AutoStream> {
|
|
|
|
match mode {
|
|
|
|
Mode::Plain => Ok(StreamSwitcher::Plain(stream)),
|
|
|
|
Mode::Tls => {
|
|
|
|
let connector = TlsConnector::builder().build()?;
|
|
|
|
connector
|
|
|
|
.connect(domain, stream)
|
|
|
|
.map_err(|e| match e {
|
|
|
|
TlsHandshakeError::Failure(f) => f.into(),
|
|
|
|
TlsHandshakeError::WouldBlock(_) => {
|
|
|
|
panic!("Bug: TLS handshake not blocked")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.map(StreamSwitcher::Tls)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(feature = "tls"))]
|
|
|
|
mod encryption {
|
|
|
|
use std::net::TcpStream;
|
|
|
|
|
|
|
|
use crate::error::{Error, Result};
|
|
|
|
use crate::stream::Mode;
|
|
|
|
|
|
|
|
/// TLS support is nod compiled in, this is just standard `TcpStream`.
|
|
|
|
pub type AutoStream = TcpStream;
|
|
|
|
|
|
|
|
pub fn wrap_stream(stream: TcpStream, _domain: &str, mode: Mode) -> Result<AutoStream> {
|
|
|
|
match mode {
|
|
|
|
Mode::Plain => Ok(stream),
|
|
|
|
Mode::Tls => Err(Error::Url("TLS support not compiled in.".into())),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
use self::encryption::wrap_stream;
|
|
|
|
pub use self::encryption::AutoStream;
|
|
|
|
|
|
|
|
use crate::error::{Error, Result};
|
|
|
|
use crate::handshake::client::ClientHandshake;
|
|
|
|
use crate::handshake::HandshakeError;
|
|
|
|
use crate::protocol::WebSocket;
|
|
|
|
use crate::stream::{Mode, NoDelay};
|
|
|
|
|
|
|
|
/// Connect to the given WebSocket in blocking mode.
|
|
|
|
///
|
|
|
|
/// Uses a websocket configuration passed as an argument to the function. Calling it with `None` is
|
|
|
|
/// equal to calling `connect()` function.
|
|
|
|
///
|
|
|
|
/// The URL may be either ws:// or wss://.
|
|
|
|
/// To support wss:// URLs, feature "tls" must be turned on.
|
|
|
|
///
|
|
|
|
/// This function "just works" for those who wants a simple blocking solution
|
|
|
|
/// similar to `std::net::TcpStream`. If you want a non-blocking or other
|
|
|
|
/// custom stream, call `client` instead.
|
|
|
|
///
|
|
|
|
/// This function uses `native_tls` to do TLS. If you want to use other TLS libraries,
|
|
|
|
/// use `client` instead. There is no need to enable the "tls" feature if you don't call
|
|
|
|
/// `connect` since it's the only function that uses native_tls.
|
|
|
|
pub fn connect_with_config<Req: IntoClientRequest>(
|
|
|
|
request: Req,
|
|
|
|
config: Option<WebSocketConfig>,
|
|
|
|
) -> Result<(WebSocket<AutoStream>, Response<()>)> {
|
|
|
|
let request: Request<()> = request.into_client_request()?;
|
|
|
|
let uri = request.uri();
|
|
|
|
let mode = uri_mode(uri)?;
|
|
|
|
let host = request
|
|
|
|
.uri()
|
|
|
|
.host()
|
|
|
|
.ok_or_else(|| Error::Url("No host name in the URL".into()))?;
|
|
|
|
let port = uri.port_u16().unwrap_or(match mode {
|
|
|
|
Mode::Plain => 80,
|
|
|
|
Mode::Tls => 443,
|
|
|
|
});
|
|
|
|
let addrs = (host, port).to_socket_addrs()?;
|
|
|
|
let mut stream = connect_to_some(addrs.as_slice(), &request.uri(), mode)?;
|
|
|
|
NoDelay::set_nodelay(&mut stream, true)?;
|
|
|
|
client_with_config(request, stream, config).map_err(|e| match e {
|
|
|
|
HandshakeError::Failure(f) => f,
|
|
|
|
HandshakeError::Interrupted(_) => panic!("Bug: blocking handshake not blocked"),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Connect to the given WebSocket in blocking mode.
|
|
|
|
///
|
|
|
|
/// The URL may be either ws:// or wss://.
|
|
|
|
/// To support wss:// URLs, feature "tls" must be turned on.
|
|
|
|
///
|
|
|
|
/// This function "just works" for those who wants a simple blocking solution
|
|
|
|
/// similar to `std::net::TcpStream`. If you want a non-blocking or other
|
|
|
|
/// custom stream, call `client` instead.
|
|
|
|
///
|
|
|
|
/// This function uses `native_tls` to do TLS. If you want to use other TLS libraries,
|
|
|
|
/// use `client` instead. There is no need to enable the "tls" feature if you don't call
|
|
|
|
/// `connect` since it's the only function that uses native_tls.
|
|
|
|
pub fn connect<Req: IntoClientRequest>(
|
|
|
|
request: Req,
|
|
|
|
) -> Result<(WebSocket<AutoStream>, Response<()>)> {
|
|
|
|
connect_with_config(request, None)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn connect_to_some(addrs: &[SocketAddr], uri: &Uri, mode: Mode) -> Result<AutoStream> {
|
|
|
|
let domain = uri
|
|
|
|
.host()
|
|
|
|
.ok_or_else(|| Error::Url("No host name in the URL".into()))?;
|
|
|
|
for addr in addrs {
|
|
|
|
debug!("Trying to contact {} at {}...", uri, addr);
|
|
|
|
if let Ok(raw_stream) = TcpStream::connect(addr) {
|
|
|
|
if let Ok(stream) = wrap_stream(raw_stream, domain, mode) {
|
|
|
|
return Ok(stream);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(Error::Url(format!("Unable to connect to {}", uri).into()))
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the mode of the given URL.
|
|
|
|
///
|
|
|
|
/// This function may be used to ease the creation of custom TLS streams
|
|
|
|
/// in non-blocking algorithmss or for use with TLS libraries other than `native_tls`.
|
|
|
|
pub fn uri_mode(uri: &Uri) -> Result<Mode> {
|
|
|
|
match uri.scheme_str() {
|
|
|
|
Some("ws") => Ok(Mode::Plain),
|
|
|
|
Some("wss") => Ok(Mode::Tls),
|
|
|
|
_ => Err(Error::Url("URL scheme not supported".into())),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Do the client handshake over the given stream given a web socket configuration. Passing `None`
|
|
|
|
/// as configuration is equal to calling `client()` function.
|
|
|
|
///
|
|
|
|
/// Use this function if you need a nonblocking handshake support or if you
|
|
|
|
/// want to use a custom stream like `mio::tcp::TcpStream` or `openssl::ssl::SslStream`.
|
|
|
|
/// Any stream supporting `Read + Write` will do.
|
|
|
|
pub fn client_with_config<Stream, Req>(
|
|
|
|
request: Req,
|
|
|
|
stream: Stream,
|
|
|
|
config: Option<WebSocketConfig>,
|
|
|
|
) -> StdResult<(WebSocket<Stream>, Response<()>), HandshakeError<ClientHandshake<Stream>>>
|
|
|
|
where
|
|
|
|
Stream: Read + Write,
|
|
|
|
Req: IntoClientRequest,
|
|
|
|
{
|
|
|
|
ClientHandshake::start(stream, request.into_client_request()?, config)?.handshake()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Do the client handshake over the given stream.
|
|
|
|
///
|
|
|
|
/// Use this function if you need a nonblocking handshake support or if you
|
|
|
|
/// want to use a custom stream like `mio::tcp::TcpStream` or `openssl::ssl::SslStream`.
|
|
|
|
/// Any stream supporting `Read + Write` will do.
|
|
|
|
pub fn client<Stream, Req>(
|
|
|
|
request: Req,
|
|
|
|
stream: Stream,
|
|
|
|
) -> StdResult<(WebSocket<Stream>, Response<()>), HandshakeError<ClientHandshake<Stream>>>
|
|
|
|
where
|
|
|
|
Stream: Read + Write,
|
|
|
|
Req: IntoClientRequest,
|
|
|
|
{
|
|
|
|
client_with_config(request, stream, None)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Trait for converting various types into HTTP requests used for a client connection.
|
|
|
|
///
|
|
|
|
/// This trait is implemented by default for string slices, strings, `url::Url`, `http::Uri` and
|
|
|
|
/// `http::Request<()>`.
|
|
|
|
pub trait IntoClientRequest {
|
|
|
|
/// Convert into a `Request<()>` that can be used for a client connection.
|
|
|
|
fn into_client_request(self) -> Result<Request<()>>;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> IntoClientRequest for &'a str {
|
|
|
|
fn into_client_request(self) -> Result<Request<()>> {
|
|
|
|
let uri: Uri = self.parse()?;
|
|
|
|
|
|
|
|
Ok(Request::get(uri).body(())?)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> IntoClientRequest for &'a String {
|
|
|
|
fn into_client_request(self) -> Result<Request<()>> {
|
|
|
|
let uri: Uri = self.parse()?;
|
|
|
|
|
|
|
|
Ok(Request::get(uri).body(())?)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl IntoClientRequest for String {
|
|
|
|
fn into_client_request(self) -> Result<Request<()>> {
|
|
|
|
let uri: Uri = self.parse()?;
|
|
|
|
|
|
|
|
Ok(Request::get(uri).body(())?)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> IntoClientRequest for &'a Uri {
|
|
|
|
fn into_client_request(self) -> Result<Request<()>> {
|
|
|
|
Ok(Request::get(self.clone()).body(())?)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl IntoClientRequest for Uri {
|
|
|
|
fn into_client_request(self) -> Result<Request<()>> {
|
|
|
|
Ok(Request::get(self).body(())?)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> IntoClientRequest for &'a Url {
|
|
|
|
fn into_client_request(self) -> Result<Request<()>> {
|
|
|
|
let uri: Uri = self.as_str().parse()?;
|
|
|
|
|
|
|
|
Ok(Request::get(uri).body(())?)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl IntoClientRequest for Url {
|
|
|
|
fn into_client_request(self) -> Result<Request<()>> {
|
|
|
|
let uri: Uri = self.as_str().parse()?;
|
|
|
|
|
|
|
|
Ok(Request::get(uri).body(())?)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl IntoClientRequest for Request<()> {
|
|
|
|
fn into_client_request(self) -> Result<Request<()>> {
|
|
|
|
Ok(self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'h, 'b> IntoClientRequest for httparse::Request<'h, 'b> {
|
|
|
|
fn into_client_request(self) -> Result<Request<()>> {
|
|
|
|
use crate::handshake::headers::FromHttparse;
|
|
|
|
Request::<()>::from_httparse(self)
|
|
|
|
}
|
|
|
|
}
|