2020-12-26 14:12:05 -08:00
|
|
|
// Copyright (c) FIRST and other WPILib contributors.
|
|
|
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
|
|
|
// the WPILib BSD license file in the root directory of this project.
|
2018-08-24 20:54:23 -07:00
|
|
|
|
|
|
|
|
#include "wpi/WebSocketServer.h"
|
|
|
|
|
|
|
|
|
|
#include "wpi/raw_uv_ostream.h"
|
|
|
|
|
#include "wpi/uv/Buffer.h"
|
|
|
|
|
#include "wpi/uv/Stream.h"
|
|
|
|
|
|
|
|
|
|
using namespace wpi;
|
|
|
|
|
|
|
|
|
|
WebSocketServerHelper::WebSocketServerHelper(HttpParser& req) {
|
|
|
|
|
req.header.connect([this](StringRef name, StringRef value) {
|
|
|
|
|
if (name.equals_lower("host")) {
|
|
|
|
|
m_gotHost = true;
|
|
|
|
|
} else if (name.equals_lower("upgrade")) {
|
2020-12-28 12:58:06 -08:00
|
|
|
if (value.equals_lower("websocket")) {
|
|
|
|
|
m_websocket = true;
|
|
|
|
|
}
|
2018-08-24 20:54:23 -07:00
|
|
|
} else if (name.equals_lower("sec-websocket-key")) {
|
|
|
|
|
m_key = value;
|
|
|
|
|
} else if (name.equals_lower("sec-websocket-version")) {
|
|
|
|
|
m_version = value;
|
|
|
|
|
} else if (name.equals_lower("sec-websocket-protocol")) {
|
|
|
|
|
// Protocols are comma delimited, repeated headers add to list
|
|
|
|
|
SmallVector<StringRef, 2> protocols;
|
|
|
|
|
value.split(protocols, ",", -1, false);
|
|
|
|
|
for (auto protocol : protocols) {
|
|
|
|
|
protocol = protocol.trim();
|
2020-12-28 12:58:06 -08:00
|
|
|
if (!protocol.empty()) {
|
|
|
|
|
m_protocols.emplace_back(protocol);
|
|
|
|
|
}
|
2018-08-24 20:54:23 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
req.headersComplete.connect([&req, this](bool) {
|
2020-12-28 12:58:06 -08:00
|
|
|
if (req.IsUpgrade() && IsUpgrade()) {
|
|
|
|
|
upgrade();
|
|
|
|
|
}
|
2018-08-24 20:54:23 -07:00
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::pair<bool, StringRef> WebSocketServerHelper::MatchProtocol(
|
|
|
|
|
ArrayRef<StringRef> protocols) {
|
2020-12-28 12:58:06 -08:00
|
|
|
if (protocols.empty() && m_protocols.empty()) {
|
2018-08-24 20:54:23 -07:00
|
|
|
return std::make_pair(true, StringRef{});
|
2020-12-28 12:58:06 -08:00
|
|
|
}
|
2018-08-24 20:54:23 -07:00
|
|
|
for (auto protocol : protocols) {
|
|
|
|
|
for (auto&& clientProto : m_protocols) {
|
2020-12-28 12:58:06 -08:00
|
|
|
if (protocol == clientProto) {
|
|
|
|
|
return std::make_pair(true, protocol);
|
|
|
|
|
}
|
2018-08-24 20:54:23 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return std::make_pair(false, StringRef{});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
WebSocketServer::WebSocketServer(uv::Stream& stream,
|
|
|
|
|
ArrayRef<StringRef> protocols,
|
|
|
|
|
const ServerOptions& options,
|
|
|
|
|
const private_init&)
|
|
|
|
|
: m_stream{stream},
|
|
|
|
|
m_helper{m_req},
|
|
|
|
|
m_protocols{protocols.begin(), protocols.end()},
|
|
|
|
|
m_options{options} {
|
|
|
|
|
// Header handling
|
|
|
|
|
m_req.header.connect([this](StringRef name, StringRef value) {
|
|
|
|
|
if (name.equals_lower("host")) {
|
|
|
|
|
if (m_options.checkHost) {
|
2020-12-28 12:58:06 -08:00
|
|
|
if (!m_options.checkHost(value)) {
|
|
|
|
|
Abort(401, "Unrecognized Host");
|
|
|
|
|
}
|
2018-08-24 20:54:23 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
m_req.url.connect([this](StringRef name) {
|
|
|
|
|
if (m_options.checkUrl) {
|
2020-12-28 12:58:06 -08:00
|
|
|
if (!m_options.checkUrl(name)) {
|
|
|
|
|
Abort(404, "Not Found");
|
|
|
|
|
}
|
2018-08-24 20:54:23 -07:00
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
m_req.headersComplete.connect([this](bool) {
|
|
|
|
|
// We only accept websocket connections
|
2020-12-28 12:58:06 -08:00
|
|
|
if (!m_helper.IsUpgrade() || !m_req.IsUpgrade()) {
|
2018-08-24 20:54:23 -07:00
|
|
|
Abort(426, "Upgrade Required");
|
2020-12-28 12:58:06 -08:00
|
|
|
}
|
2018-08-24 20:54:23 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Handle upgrade event
|
|
|
|
|
m_helper.upgrade.connect([this] {
|
2020-12-28 12:58:06 -08:00
|
|
|
if (m_aborted) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2018-08-24 20:54:23 -07:00
|
|
|
|
|
|
|
|
// Negotiate sub-protocol
|
|
|
|
|
SmallVector<StringRef, 2> protocols{m_protocols.begin(), m_protocols.end()};
|
|
|
|
|
StringRef protocol = m_helper.MatchProtocol(protocols).second;
|
|
|
|
|
|
|
|
|
|
// Disconnect our header reader
|
2018-12-09 01:36:36 -08:00
|
|
|
m_dataConn.disconnect();
|
2018-08-24 20:54:23 -07:00
|
|
|
|
|
|
|
|
// Accepting the stream may destroy this (as it replaces the stream user
|
|
|
|
|
// data), so grab a shared pointer first.
|
|
|
|
|
auto self = shared_from_this();
|
|
|
|
|
|
|
|
|
|
// Accept the upgrade
|
|
|
|
|
auto ws = m_helper.Accept(m_stream, protocol);
|
|
|
|
|
|
|
|
|
|
// Connect the websocket open event to our connected event.
|
2019-05-17 17:35:09 -07:00
|
|
|
ws->open.connect_extended([self, s = ws.get()](auto conn, StringRef) {
|
2018-08-24 20:54:23 -07:00
|
|
|
self->connected(self->m_req.GetUrl(), *s);
|
|
|
|
|
conn.disconnect(); // one-shot
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Set up stream
|
|
|
|
|
stream.StartRead();
|
2018-12-09 01:36:36 -08:00
|
|
|
m_dataConn =
|
2018-08-24 20:54:23 -07:00
|
|
|
stream.data.connect_connection([this](uv::Buffer& buf, size_t size) {
|
2020-12-28 12:58:06 -08:00
|
|
|
if (m_aborted) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2018-08-24 20:54:23 -07:00
|
|
|
m_req.Execute(StringRef{buf.base, size});
|
2020-12-28 12:58:06 -08:00
|
|
|
if (m_req.HasError()) {
|
|
|
|
|
Abort(400, "Bad Request");
|
|
|
|
|
}
|
2018-08-24 20:54:23 -07:00
|
|
|
});
|
2018-12-09 01:36:36 -08:00
|
|
|
m_errorConn =
|
|
|
|
|
stream.error.connect_connection([this](uv::Error) { m_stream.Close(); });
|
|
|
|
|
m_endConn = stream.end.connect_connection([this] { m_stream.Close(); });
|
2018-08-24 20:54:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<WebSocketServer> WebSocketServer::Create(
|
|
|
|
|
uv::Stream& stream, ArrayRef<StringRef> protocols,
|
|
|
|
|
const ServerOptions& options) {
|
|
|
|
|
auto server = std::make_shared<WebSocketServer>(stream, protocols, options,
|
|
|
|
|
private_init{});
|
|
|
|
|
stream.SetData(server);
|
|
|
|
|
return server;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void WebSocketServer::Abort(uint16_t code, StringRef reason) {
|
2020-12-28 12:58:06 -08:00
|
|
|
if (m_aborted) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2018-08-24 20:54:23 -07:00
|
|
|
m_aborted = true;
|
|
|
|
|
|
|
|
|
|
// Build response
|
|
|
|
|
SmallVector<uv::Buffer, 4> bufs;
|
|
|
|
|
raw_uv_ostream os{bufs, 1024};
|
|
|
|
|
|
|
|
|
|
// Handle unsupported version
|
|
|
|
|
os << "HTTP/1.1 " << code << ' ' << reason << "\r\n";
|
2020-12-28 12:58:06 -08:00
|
|
|
if (code == 426) {
|
|
|
|
|
os << "Upgrade: WebSocket\r\n";
|
|
|
|
|
}
|
2018-08-24 20:54:23 -07:00
|
|
|
os << "\r\n";
|
|
|
|
|
m_stream.Write(bufs, [this](auto bufs, uv::Error) {
|
2020-12-28 12:58:06 -08:00
|
|
|
for (auto& buf : bufs) {
|
|
|
|
|
buf.Deallocate();
|
|
|
|
|
}
|
2018-08-24 20:54:23 -07:00
|
|
|
m_stream.Shutdown([this] { m_stream.Close(); });
|
|
|
|
|
});
|
|
|
|
|
}
|