mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
90 lines
3.2 KiB
C++
90 lines
3.2 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of rippled: https://github.com/ripple/rippled
|
|
Copyright (c) 2012, 2013 Ripple Labs Inc.
|
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#ifndef RIPPLE_OVERLAY_TMHELLO_H_INCLUDED
|
|
#define RIPPLE_OVERLAY_TMHELLO_H_INCLUDED
|
|
|
|
#include "ripple.pb.h"
|
|
#include <ripple/app/main/Application.h>
|
|
#include <ripple/beast/utility/Journal.h>
|
|
#include <ripple/protocol/BuildInfo.h>
|
|
|
|
#include <beast/http/message.hpp>
|
|
#include <boost/asio/ssl.hpp>
|
|
#include <boost/optional.hpp>
|
|
#include <utility>
|
|
|
|
namespace ripple {
|
|
|
|
enum
|
|
{
|
|
// The clock drift we allow a remote peer to have
|
|
clockToleranceDeltaSeconds = 20
|
|
};
|
|
|
|
/** Computes a shared value based on the SSL connection state.
|
|
When there is no man in the middle, both sides will compute the same
|
|
value. In the presence of an attacker, the computed values will be
|
|
different.
|
|
If the shared value generation fails, the link MUST be dropped.
|
|
@return A pair. Second will be false if shared value generation failed.
|
|
*/
|
|
boost::optional<uint256>
|
|
makeSharedValue (SSL* ssl, beast::Journal journal);
|
|
|
|
/** Build a TMHello protocol message. */
|
|
protocol::TMHello
|
|
buildHello (uint256 const& sharedValue,
|
|
beast::IP::Address public_ip,
|
|
beast::IP::Endpoint remote, Application& app);
|
|
|
|
/** Insert HTTP headers based on the TMHello protocol message. */
|
|
void
|
|
appendHello (beast::http::fields& h, protocol::TMHello const& hello);
|
|
|
|
/** Parse HTTP headers into TMHello protocol message.
|
|
@return A protocol message on success; an empty optional
|
|
if the parsing failed.
|
|
*/
|
|
boost::optional<protocol::TMHello>
|
|
parseHello (bool request, beast::http::fields const& h, beast::Journal journal);
|
|
|
|
/** Validate and store the public key in the TMHello.
|
|
This includes signature verification on the shared value.
|
|
@return The remote end public key on success; an empty
|
|
optional if the check failed.
|
|
*/
|
|
boost::optional<PublicKey>
|
|
verifyHello (protocol::TMHello const& h, uint256 const& sharedValue,
|
|
beast::IP::Address public_ip,
|
|
beast::IP::Endpoint remote,
|
|
beast::Journal journal, Application& app);
|
|
|
|
/** Parse a set of protocol versions.
|
|
The returned list contains no duplicates and is sorted ascending.
|
|
Any strings that are not parseable as RTXP protocol strings are
|
|
excluded from the result set.
|
|
*/
|
|
std::vector<ProtocolVersion>
|
|
parse_ProtocolVersions(beast::string_view const& s);
|
|
|
|
}
|
|
|
|
#endif
|