1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-19 16:58:14 +00:00
actix-web/actix-http/src/ws/mod.rs

352 lines
11 KiB
Rust
Raw Normal View History

2021-02-28 19:55:34 +00:00
//! WebSocket protocol implementation.
2017-10-08 05:41:02 +00:00
//!
2021-02-12 00:27:20 +00:00
//! To setup a WebSocket, first perform the WebSocket handshake then on success convert `Payload` into a
//! `WsStream` stream and then use `WsWriter` to communicate with the peer.
2018-10-05 19:47:22 +00:00
use std::io;
2017-10-08 04:48:00 +00:00
use derive_more::{Display, Error, From};
2018-10-05 19:47:22 +00:00
use http::{header, Method, StatusCode};
2018-12-06 22:32:52 +00:00
2023-07-17 01:38:12 +00:00
use crate::{body::BoxBody, header::HeaderValue, RequestHead, Response, ResponseBuilder};
2017-10-08 04:48:00 +00:00
2018-10-05 19:47:22 +00:00
mod codec;
2019-12-11 13:20:20 +00:00
mod dispatcher;
2018-04-13 23:02:01 +00:00
mod frame;
mod mask;
2018-04-13 23:02:01 +00:00
mod proto;
2018-01-10 19:13:29 +00:00
2023-07-17 01:38:12 +00:00
pub use self::{
codec::{Codec, Frame, Item, Message},
dispatcher::Dispatcher,
frame::Parser,
proto::{hash_key, CloseCode, CloseReason, OpCode},
};
/// WebSocket protocol errors.
2021-06-17 16:57:58 +00:00
#[derive(Debug, Display, Error, From)]
pub enum ProtocolError {
/// Received an unmasked frame from client.
#[display(fmt = "received an unmasked frame from client")]
2018-02-27 18:09:24 +00:00
UnmaskedFrame,
/// Received a masked frame from server.
#[display(fmt = "received a masked frame from server")]
2018-02-27 18:09:24 +00:00
MaskedFrame,
/// Encountered invalid opcode.
#[display(fmt = "invalid opcode ({})", _0)]
InvalidOpcode(#[error(not(source))] u8),
2018-02-27 18:09:24 +00:00
/// Invalid control frame length
#[display(fmt = "invalid control frame length ({})", _0)]
InvalidLength(#[error(not(source))] usize),
/// Bad opcode.
#[display(fmt = "bad opcode")]
2018-02-27 18:09:24 +00:00
BadOpCode,
2018-02-27 18:09:24 +00:00
/// A payload reached size limit.
#[display(fmt = "payload reached size limit")]
2018-02-27 18:09:24 +00:00
Overflow,
/// Continuation has not started.
#[display(fmt = "continuation has not started")]
ContinuationNotStarted,
/// Received new continuation but it is already started.
#[display(fmt = "received new continuation but it has already started")]
ContinuationStarted,
/// Unknown continuation fragment.
#[display(fmt = "unknown continuation fragment: {}", _0)]
ContinuationFragment(#[error(not(source))] OpCode),
/// I/O error.
#[display(fmt = "I/O error: {}", _0)]
2018-12-20 02:34:56 +00:00
Io(io::Error),
2018-02-27 18:09:24 +00:00
}
/// WebSocket handshake errors
#[derive(Debug, Clone, Copy, PartialEq, Eq, Display, Error)]
pub enum HandshakeError {
/// Only get method is allowed.
#[display(fmt = "method not allowed")]
2018-02-27 18:09:24 +00:00
GetMethodRequired,
2021-02-12 00:27:20 +00:00
/// Upgrade header if not set to WebSocket.
#[display(fmt = "WebSocket upgrade is expected")]
2018-02-27 18:09:24 +00:00
NoWebsocketUpgrade,
/// Connection header is not set to upgrade.
#[display(fmt = "connection upgrade is expected")]
2018-02-27 18:09:24 +00:00
NoConnectionUpgrade,
/// WebSocket version header is not set.
#[display(fmt = "WebSocket version header is required")]
2018-02-27 18:09:24 +00:00
NoVersionHeader,
2021-02-12 00:27:20 +00:00
/// Unsupported WebSocket version.
#[display(fmt = "unsupported WebSocket version")]
2018-02-27 18:09:24 +00:00
UnsupportedVersion,
/// WebSocket key is not set or wrong.
#[display(fmt = "unknown WebSocket key")]
2018-02-27 18:09:24 +00:00
BadWebsocketKey,
}
2021-12-04 19:40:47 +00:00
impl From<HandshakeError> for Response<BoxBody> {
fn from(err: HandshakeError) -> Self {
2021-06-17 16:57:58 +00:00
match err {
HandshakeError::GetMethodRequired => {
2021-06-17 16:57:58 +00:00
let mut res = Response::new(StatusCode::METHOD_NOT_ALLOWED);
2021-12-27 16:15:20 +00:00
#[allow(clippy::declare_interior_mutable_const)]
const HV_GET: HeaderValue = HeaderValue::from_static("GET");
res.headers_mut().insert(header::ALLOW, HV_GET);
2021-06-17 16:57:58 +00:00
res
}
HandshakeError::NoWebsocketUpgrade => {
2021-06-17 16:57:58 +00:00
let mut res = Response::bad_request();
res.head_mut().reason = Some("No WebSocket Upgrade header found");
res
}
HandshakeError::NoConnectionUpgrade => {
2021-06-17 16:57:58 +00:00
let mut res = Response::bad_request();
res.head_mut().reason = Some("No Connection upgrade");
res
}
2021-06-17 16:57:58 +00:00
HandshakeError::NoVersionHeader => {
let mut res = Response::bad_request();
res.head_mut().reason = Some("WebSocket version header is required");
res
}
HandshakeError::UnsupportedVersion => {
2021-06-17 16:57:58 +00:00
let mut res = Response::bad_request();
res.head_mut().reason = Some("Unsupported WebSocket version");
res
2018-10-05 18:04:59 +00:00
}
2021-06-17 16:57:58 +00:00
HandshakeError::BadWebsocketKey => {
let mut res = Response::bad_request();
res.head_mut().reason = Some("Handshake error");
res
}
2018-02-27 18:09:24 +00:00
}
}
}
2021-12-04 19:40:47 +00:00
impl From<&HandshakeError> for Response<BoxBody> {
fn from(err: &HandshakeError) -> Self {
(*err).into()
2021-06-17 16:57:58 +00:00
}
}
2021-02-12 00:27:20 +00:00
/// Verify WebSocket handshake request and create handshake response.
pub fn handshake(req: &RequestHead) -> Result<ResponseBuilder, HandshakeError> {
2018-10-22 16:59:20 +00:00
verify_handshake(req)?;
Ok(handshake_response(req))
}
2021-02-12 00:27:20 +00:00
/// Verify WebSocket handshake request.
pub fn verify_handshake(req: &RequestHead) -> Result<(), HandshakeError> {
2017-10-08 04:48:00 +00:00
// WebSocket accepts only GET
if req.method != Method::GET {
2018-04-13 23:02:01 +00:00
return Err(HandshakeError::GetMethodRequired);
2017-10-08 04:48:00 +00:00
}
2021-02-12 00:27:20 +00:00
// Check for "UPGRADE" to WebSocket header
2017-10-10 06:07:32 +00:00
let has_hdr = if let Some(hdr) = req.headers().get(header::UPGRADE) {
if let Ok(s) = hdr.to_str() {
2019-03-18 05:56:13 +00:00
s.to_ascii_lowercase().contains("websocket")
2017-10-10 06:07:32 +00:00
} else {
false
}
2017-10-08 04:48:00 +00:00
} else {
false
};
if !has_hdr {
2018-04-13 23:02:01 +00:00
return Err(HandshakeError::NoWebsocketUpgrade);
2017-10-08 04:48:00 +00:00
}
// Upgrade connection
2017-10-14 07:11:12 +00:00
if !req.upgrade() {
2018-04-13 23:02:01 +00:00
return Err(HandshakeError::NoConnectionUpgrade);
2017-10-08 04:48:00 +00:00
}
// check supported version
2018-05-17 19:20:20 +00:00
if !req.headers().contains_key(header::SEC_WEBSOCKET_VERSION) {
2018-04-13 23:02:01 +00:00
return Err(HandshakeError::NoVersionHeader);
2017-10-08 04:48:00 +00:00
}
let supported_ver = {
2018-02-28 22:16:55 +00:00
if let Some(hdr) = req.headers().get(header::SEC_WEBSOCKET_VERSION) {
2017-10-10 06:07:32 +00:00
hdr == "13" || hdr == "8" || hdr == "7"
} else {
false
2017-10-08 04:48:00 +00:00
}
};
if !supported_ver {
2018-04-13 23:02:01 +00:00
return Err(HandshakeError::UnsupportedVersion);
2017-10-08 04:48:00 +00:00
}
// check client handshake for validity
2018-02-28 22:16:55 +00:00
if !req.headers().contains_key(header::SEC_WEBSOCKET_KEY) {
2018-04-13 23:02:01 +00:00
return Err(HandshakeError::BadWebsocketKey);
2017-10-10 06:07:32 +00:00
}
2018-10-22 16:59:20 +00:00
Ok(())
}
2021-02-12 00:27:20 +00:00
/// Create WebSocket handshake response.
2018-10-22 16:59:20 +00:00
///
/// This function returns handshake `Response`, ready to send to peer.
pub fn handshake_response(req: &RequestHead) -> ResponseBuilder {
2017-10-10 06:07:32 +00:00
let key = {
2018-02-28 22:16:55 +00:00
let key = req.headers().get(header::SEC_WEBSOCKET_KEY).unwrap();
2018-03-09 21:03:15 +00:00
proto::hash_key(key.as_ref())
2017-10-08 04:48:00 +00:00
};
2018-10-22 16:59:20 +00:00
Response::build(StatusCode::SWITCHING_PROTOCOLS)
2018-11-19 22:57:12 +00:00
.upgrade("websocket")
2021-02-28 19:55:34 +00:00
.insert_header((
header::SEC_WEBSOCKET_ACCEPT,
// key is known to be header value safe ascii
HeaderValue::from_bytes(&key).unwrap(),
))
2018-10-22 16:59:20 +00:00
.take()
2017-10-08 04:48:00 +00:00
}
2017-10-23 00:33:24 +00:00
#[cfg(test)]
mod tests {
2017-11-16 06:06:28 +00:00
use super::*;
use crate::{header, test::TestRequest};
2017-10-23 00:33:24 +00:00
#[test]
fn test_handshake() {
2018-06-25 04:58:04 +00:00
let req = TestRequest::default().method(Method::POST).finish();
2018-04-29 16:09:08 +00:00
assert_eq!(
HandshakeError::GetMethodRequired,
2020-12-23 01:28:17 +00:00
verify_handshake(req.head()).unwrap_err(),
2018-04-29 16:09:08 +00:00
);
2018-04-13 23:02:01 +00:00
2018-06-25 04:58:04 +00:00
let req = TestRequest::default().finish();
2018-04-29 16:09:08 +00:00
assert_eq!(
HandshakeError::NoWebsocketUpgrade,
2020-12-23 01:28:17 +00:00
verify_handshake(req.head()).unwrap_err(),
2018-04-29 16:09:08 +00:00
);
2017-10-23 00:33:24 +00:00
2018-06-25 04:58:04 +00:00
let req = TestRequest::default()
2021-01-15 02:11:10 +00:00
.insert_header((header::UPGRADE, header::HeaderValue::from_static("test")))
2018-06-25 04:58:04 +00:00
.finish();
2018-04-29 16:09:08 +00:00
assert_eq!(
HandshakeError::NoWebsocketUpgrade,
2020-12-23 01:28:17 +00:00
verify_handshake(req.head()).unwrap_err(),
2018-04-29 16:09:08 +00:00
);
2017-10-23 00:33:24 +00:00
2018-06-25 04:58:04 +00:00
let req = TestRequest::default()
2021-01-15 02:11:10 +00:00
.insert_header((
2018-06-25 04:58:04 +00:00
header::UPGRADE,
header::HeaderValue::from_static("websocket"),
2021-01-15 02:11:10 +00:00
))
2018-12-06 22:32:52 +00:00
.finish();
2018-04-29 16:09:08 +00:00
assert_eq!(
HandshakeError::NoConnectionUpgrade,
2020-12-23 01:28:17 +00:00
verify_handshake(req.head()).unwrap_err(),
2018-04-29 16:09:08 +00:00
);
2017-10-23 00:33:24 +00:00
2018-06-25 04:58:04 +00:00
let req = TestRequest::default()
2021-01-15 02:11:10 +00:00
.insert_header((
2018-06-25 04:58:04 +00:00
header::UPGRADE,
header::HeaderValue::from_static("websocket"),
2021-01-15 02:11:10 +00:00
))
.insert_header((
2018-06-25 04:58:04 +00:00
header::CONNECTION,
header::HeaderValue::from_static("upgrade"),
2021-01-15 02:11:10 +00:00
))
2018-12-06 22:32:52 +00:00
.finish();
2018-04-29 16:09:08 +00:00
assert_eq!(
HandshakeError::NoVersionHeader,
2020-12-23 01:28:17 +00:00
verify_handshake(req.head()).unwrap_err(),
2018-04-29 16:09:08 +00:00
);
2017-10-23 00:33:24 +00:00
2018-06-25 04:58:04 +00:00
let req = TestRequest::default()
2021-01-15 02:11:10 +00:00
.insert_header((
2018-06-25 04:58:04 +00:00
header::UPGRADE,
header::HeaderValue::from_static("websocket"),
2021-01-15 02:11:10 +00:00
))
.insert_header((
2018-06-25 04:58:04 +00:00
header::CONNECTION,
header::HeaderValue::from_static("upgrade"),
2021-01-15 02:11:10 +00:00
))
.insert_header((
2018-06-25 04:58:04 +00:00
header::SEC_WEBSOCKET_VERSION,
header::HeaderValue::from_static("5"),
2021-01-15 02:11:10 +00:00
))
2018-12-06 22:32:52 +00:00
.finish();
2018-04-29 16:09:08 +00:00
assert_eq!(
HandshakeError::UnsupportedVersion,
2020-12-23 01:28:17 +00:00
verify_handshake(req.head()).unwrap_err(),
2018-04-29 16:09:08 +00:00
);
2017-10-23 00:33:24 +00:00
2018-06-25 04:58:04 +00:00
let req = TestRequest::default()
2021-01-15 02:11:10 +00:00
.insert_header((
2018-06-25 04:58:04 +00:00
header::UPGRADE,
header::HeaderValue::from_static("websocket"),
2021-01-15 02:11:10 +00:00
))
.insert_header((
2018-06-25 04:58:04 +00:00
header::CONNECTION,
header::HeaderValue::from_static("upgrade"),
2021-01-15 02:11:10 +00:00
))
.insert_header((
2018-06-25 04:58:04 +00:00
header::SEC_WEBSOCKET_VERSION,
header::HeaderValue::from_static("13"),
2021-01-15 02:11:10 +00:00
))
2018-12-06 22:32:52 +00:00
.finish();
2018-04-29 16:09:08 +00:00
assert_eq!(
HandshakeError::BadWebsocketKey,
2020-12-23 01:28:17 +00:00
verify_handshake(req.head()).unwrap_err(),
2018-04-29 16:09:08 +00:00
);
2017-10-23 00:33:24 +00:00
2018-06-25 04:58:04 +00:00
let req = TestRequest::default()
2021-01-15 02:11:10 +00:00
.insert_header((
2018-06-25 04:58:04 +00:00
header::UPGRADE,
header::HeaderValue::from_static("websocket"),
2021-01-15 02:11:10 +00:00
))
.insert_header((
2018-06-25 04:58:04 +00:00
header::CONNECTION,
header::HeaderValue::from_static("upgrade"),
2021-01-15 02:11:10 +00:00
))
.insert_header((
2018-06-25 04:58:04 +00:00
header::SEC_WEBSOCKET_VERSION,
header::HeaderValue::from_static("13"),
2021-01-15 02:11:10 +00:00
))
.insert_header((
2018-06-25 04:58:04 +00:00
header::SEC_WEBSOCKET_KEY,
header::HeaderValue::from_static("13"),
2021-01-15 02:11:10 +00:00
))
2018-12-06 22:32:52 +00:00
.finish();
2018-04-13 23:02:01 +00:00
assert_eq!(
StatusCode::SWITCHING_PROTOCOLS,
handshake_response(req.head()).finish().status()
2018-04-13 23:02:01 +00:00
);
2017-10-23 00:33:24 +00:00
}
2018-02-27 18:09:24 +00:00
#[test]
2021-06-17 16:57:58 +00:00
fn test_ws_error_http_response() {
2021-12-04 19:40:47 +00:00
let resp: Response<BoxBody> = HandshakeError::GetMethodRequired.into();
2018-02-27 18:09:24 +00:00
assert_eq!(resp.status(), StatusCode::METHOD_NOT_ALLOWED);
2021-12-04 19:40:47 +00:00
let resp: Response<BoxBody> = HandshakeError::NoWebsocketUpgrade.into();
2018-02-27 18:09:24 +00:00
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
2021-12-04 19:40:47 +00:00
let resp: Response<BoxBody> = HandshakeError::NoConnectionUpgrade.into();
2018-02-27 18:09:24 +00:00
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
2021-12-04 19:40:47 +00:00
let resp: Response<BoxBody> = HandshakeError::NoVersionHeader.into();
2018-02-27 18:09:24 +00:00
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
2021-12-04 19:40:47 +00:00
let resp: Response<BoxBody> = HandshakeError::UnsupportedVersion.into();
2018-02-27 18:09:24 +00:00
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
2021-12-04 19:40:47 +00:00
let resp: Response<BoxBody> = HandshakeError::BadWebsocketKey.into();
2018-02-27 18:09:24 +00:00
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
}
2017-10-23 00:33:24 +00:00
}