mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
06f74f0 Set version to 1.0.0-b26 68f535f Tidy up warnings and tests: 4ee5fa9 Set version to 1.0.0-b25 229d390 Update README.md for CppCast 2017 c3e3a55 Fix deflate setup bug 439a224 WebSocket server examples and test tidying: 29565c8 Remove unnecessary include caa3b39 Fix 32-bit arm7 warnings 0474cc5 Better handler_ptr (API Change): ca38657 Fixes for websocket echo server: 797631c Set version to 1.0.0-b24 a450968 Add permessage-deflate WebSocket extension: 67e965e Make decorator copyable 42899fc Add optional yield_to arguments 61aef03 Simplify Travis package install specification 9d0d7c9 bjam use clang on MACOSX git-subtree-dir: src/beast git-subtree-split: 06f74f05f7de51d7f791a17c2b06840183332cbe
231 lines
6.9 KiB
C++
231 lines
6.9 KiB
C++
//
|
|
// Copyright (c) 2013-2016 Vinnie Falco (vinnie dot falco at gmail dot com)
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
|
|
#ifndef BEAST_WEBSOCKET_IMPL_STREAM_IPP
|
|
#define BEAST_WEBSOCKET_IMPL_STREAM_IPP
|
|
|
|
#include <beast/websocket/teardown.hpp>
|
|
#include <beast/websocket/detail/hybi13.hpp>
|
|
#include <beast/websocket/detail/pmd_extension.hpp>
|
|
#include <beast/http/read.hpp>
|
|
#include <beast/http/write.hpp>
|
|
#include <beast/http/reason.hpp>
|
|
#include <beast/http/rfc7230.hpp>
|
|
#include <beast/core/buffer_cat.hpp>
|
|
#include <beast/core/buffer_concepts.hpp>
|
|
#include <beast/core/consuming_buffers.hpp>
|
|
#include <beast/core/prepare_buffers.hpp>
|
|
#include <beast/core/static_streambuf.hpp>
|
|
#include <beast/core/stream_concepts.hpp>
|
|
#include <beast/core/detail/type_traits.hpp>
|
|
#include <boost/assert.hpp>
|
|
#include <boost/endian/buffers.hpp>
|
|
#include <algorithm>
|
|
#include <memory>
|
|
#include <stdexcept>
|
|
#include <utility>
|
|
|
|
namespace beast {
|
|
namespace websocket {
|
|
|
|
template<class NextLayer>
|
|
template<class... Args>
|
|
stream<NextLayer>::
|
|
stream(Args&&... args)
|
|
: stream_(std::forward<Args>(args)...)
|
|
{
|
|
}
|
|
|
|
template<class NextLayer>
|
|
void
|
|
stream<NextLayer>::
|
|
set_option(permessage_deflate const& o)
|
|
{
|
|
if( o.server_max_window_bits > 15 ||
|
|
o.server_max_window_bits < 9)
|
|
throw std::invalid_argument{
|
|
"invalid server_max_window_bits"};
|
|
if( o.client_max_window_bits > 15 ||
|
|
o.client_max_window_bits < 9)
|
|
throw std::invalid_argument{
|
|
"invalid client_max_window_bits"};
|
|
if( o.compLevel < 0 ||
|
|
o.compLevel > 9)
|
|
throw std::invalid_argument{
|
|
"invalid compLevel"};
|
|
if( o.memLevel < 1 ||
|
|
o.memLevel > 9)
|
|
throw std::invalid_argument{
|
|
"invalid memLevel"};
|
|
pmd_opts_ = o;
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
template<class NextLayer>
|
|
void
|
|
stream<NextLayer>::
|
|
reset()
|
|
{
|
|
failed_ = false;
|
|
rd_.cont = false;
|
|
wr_close_ = false;
|
|
wr_.cont = false;
|
|
wr_block_ = nullptr; // should be nullptr on close anyway
|
|
pong_data_ = nullptr; // should be nullptr on close anyway
|
|
|
|
stream_.buffer().consume(
|
|
stream_.buffer().size());
|
|
}
|
|
|
|
template<class NextLayer>
|
|
http::request<http::empty_body>
|
|
stream<NextLayer>::
|
|
build_request(boost::string_ref const& host,
|
|
boost::string_ref const& resource, std::string& key)
|
|
{
|
|
http::request<http::empty_body> req;
|
|
req.url = { resource.data(), resource.size() };
|
|
req.version = 11;
|
|
req.method = "GET";
|
|
req.fields.insert("Host", host);
|
|
req.fields.insert("Upgrade", "websocket");
|
|
key = detail::make_sec_ws_key(maskgen_);
|
|
req.fields.insert("Sec-WebSocket-Key", key);
|
|
req.fields.insert("Sec-WebSocket-Version", "13");
|
|
if(pmd_opts_.client_enable)
|
|
{
|
|
detail::pmd_offer config;
|
|
config.accept = true;
|
|
config.server_max_window_bits =
|
|
pmd_opts_.server_max_window_bits;
|
|
config.client_max_window_bits =
|
|
pmd_opts_.client_max_window_bits;
|
|
config.server_no_context_takeover =
|
|
pmd_opts_.server_no_context_takeover;
|
|
config.client_no_context_takeover =
|
|
pmd_opts_.client_no_context_takeover;
|
|
detail::pmd_write(
|
|
req.fields, config);
|
|
}
|
|
d_(req);
|
|
http::prepare(req, http::connection::upgrade);
|
|
return req;
|
|
}
|
|
|
|
template<class NextLayer>
|
|
template<class Body, class Fields>
|
|
http::response<http::string_body>
|
|
stream<NextLayer>::
|
|
build_response(http::request<Body, Fields> const& req)
|
|
{
|
|
auto err =
|
|
[&](std::string const& text)
|
|
{
|
|
http::response<http::string_body> res;
|
|
res.status = 400;
|
|
res.reason = http::reason_string(res.status);
|
|
res.version = req.version;
|
|
res.body = text;
|
|
d_(res);
|
|
prepare(res,
|
|
(is_keep_alive(req) && keep_alive_) ?
|
|
http::connection::keep_alive :
|
|
http::connection::close);
|
|
return res;
|
|
};
|
|
if(req.version < 11)
|
|
return err("HTTP version 1.1 required");
|
|
if(req.method != "GET")
|
|
return err("Wrong method");
|
|
if(! is_upgrade(req))
|
|
return err("Expected Upgrade request");
|
|
if(! req.fields.exists("Host"))
|
|
return err("Missing Host");
|
|
if(! req.fields.exists("Sec-WebSocket-Key"))
|
|
return err("Missing Sec-WebSocket-Key");
|
|
if(! http::token_list{req.fields["Upgrade"]}.exists("websocket"))
|
|
return err("Missing websocket Upgrade token");
|
|
{
|
|
auto const version =
|
|
req.fields["Sec-WebSocket-Version"];
|
|
if(version.empty())
|
|
return err("Missing Sec-WebSocket-Version");
|
|
if(version != "13")
|
|
{
|
|
http::response<http::string_body> res;
|
|
res.status = 426;
|
|
res.reason = http::reason_string(res.status);
|
|
res.version = req.version;
|
|
res.fields.insert("Sec-WebSocket-Version", "13");
|
|
d_(res);
|
|
prepare(res,
|
|
(is_keep_alive(req) && keep_alive_) ?
|
|
http::connection::keep_alive :
|
|
http::connection::close);
|
|
return res;
|
|
}
|
|
}
|
|
http::response<http::string_body> res;
|
|
{
|
|
detail::pmd_offer offer;
|
|
detail::pmd_offer unused;
|
|
pmd_read(offer, req.fields);
|
|
pmd_negotiate(
|
|
res.fields, unused, offer, pmd_opts_);
|
|
}
|
|
res.status = 101;
|
|
res.reason = http::reason_string(res.status);
|
|
res.version = req.version;
|
|
res.fields.insert("Upgrade", "websocket");
|
|
{
|
|
auto const key =
|
|
req.fields["Sec-WebSocket-Key"];
|
|
res.fields.insert("Sec-WebSocket-Accept",
|
|
detail::make_sec_ws_accept(key));
|
|
}
|
|
res.fields.replace("Server", "Beast.WSProto");
|
|
d_(res);
|
|
http::prepare(res, http::connection::upgrade);
|
|
return res;
|
|
}
|
|
|
|
template<class NextLayer>
|
|
template<class Body, class Fields>
|
|
void
|
|
stream<NextLayer>::
|
|
do_response(http::response<Body, Fields> const& res,
|
|
boost::string_ref const& key, error_code& ec)
|
|
{
|
|
// VFALCO Review these error codes
|
|
auto fail = [&]{ ec = error::response_failed; };
|
|
if(res.version < 11)
|
|
return fail();
|
|
if(res.status != 101)
|
|
return fail();
|
|
if(! is_upgrade(res))
|
|
return fail();
|
|
if(! http::token_list{res.fields["Upgrade"]}.exists("websocket"))
|
|
return fail();
|
|
if(! res.fields.exists("Sec-WebSocket-Accept"))
|
|
return fail();
|
|
if(res.fields["Sec-WebSocket-Accept"] !=
|
|
detail::make_sec_ws_accept(key))
|
|
return fail();
|
|
detail::pmd_offer offer;
|
|
pmd_read(offer, res.fields);
|
|
// VFALCO see if offer satisfies pmd_config_,
|
|
// return an error if not.
|
|
pmd_config_ = offer; // overwrite for now
|
|
open(detail::role_type::client);
|
|
}
|
|
|
|
} // websocket
|
|
} // beast
|
|
|
|
#endif
|