73 lines
3 KiB
C++
73 lines
3 KiB
C++
/*
|
|
* Copyright (c) 2015, Cryptonomex, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is provided for evaluation in private test networks only, until September 8, 2015. After this date, this license expires and
|
|
* the code may not be used, modified or distributed for any purpose. Redistribution and use in source and binary forms, with or without modification,
|
|
* are permitted until September 8, 2015, provided that the following conditions are met:
|
|
*
|
|
* 1. The code and/or derivative works are used only for private test networks consisting of no more than 10 P2P nodes.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
|
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
#pragma once
|
|
#include <fc/network/tcp_socket.hpp>
|
|
#include <fc/crypto/aes.hpp>
|
|
#include <fc/crypto/elliptic.hpp>
|
|
|
|
namespace graphene { namespace net {
|
|
|
|
/**
|
|
* Uses ECDH to negotiate a aes key for communicating
|
|
* with other nodes on the network.
|
|
*/
|
|
class stcp_socket : public virtual fc::iostream
|
|
{
|
|
public:
|
|
stcp_socket();
|
|
~stcp_socket();
|
|
fc::tcp_socket& get_socket() { return _sock; }
|
|
void accept();
|
|
|
|
void connect_to( const fc::ip::endpoint& remote_endpoint );
|
|
void bind( const fc::ip::endpoint& local_endpoint );
|
|
|
|
virtual size_t readsome( char* buffer, size_t max );
|
|
virtual size_t readsome( const std::shared_ptr<char>& buf, size_t len, size_t offset );
|
|
virtual bool eof()const;
|
|
|
|
virtual size_t writesome( const char* buffer, size_t len );
|
|
virtual size_t writesome( const std::shared_ptr<const char>& buf, size_t len, size_t offset );
|
|
|
|
virtual void flush();
|
|
virtual void close();
|
|
|
|
using istream::get;
|
|
void get( char& c ) { read( &c, 1 ); }
|
|
fc::sha512 get_shared_secret() const { return _shared_secret; }
|
|
private:
|
|
void do_key_exchange();
|
|
|
|
fc::sha512 _shared_secret;
|
|
fc::ecc::private_key _priv_key;
|
|
fc::array<char,8> _buf;
|
|
//uint32_t _buf_len;
|
|
fc::tcp_socket _sock;
|
|
fc::aes_encoder _send_aes;
|
|
fc::aes_decoder _recv_aes;
|
|
std::shared_ptr<char> _read_buffer;
|
|
std::shared_ptr<char> _write_buffer;
|
|
#ifndef NDEBUG
|
|
bool _read_buffer_in_use;
|
|
bool _write_buffer_in_use;
|
|
#endif
|
|
};
|
|
|
|
typedef std::shared_ptr<stcp_socket> stcp_socket_ptr;
|
|
|
|
} } // graphene::net
|