Monero
net_ssl.h
Go to the documentation of this file.
1 // Copyright (c) 2006-2013, Andrey N. Sabelnikov, www.sabelnikov.net
2 // All rights reserved.
3 //
4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are met:
6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above copyright
9 // notice, this list of conditions and the following disclaimer in the
10 // documentation and/or other materials provided with the distribution.
11 // * Neither the name of the Andrey N. Sabelnikov nor the
12 // names of its contributors may be used to endorse or promote products
13 // derived from this software without specific prior written permission.
14 //
15 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER BE LIABLE FOR ANY
19 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 // ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 //
26 
27 
28 
29 #ifndef _NET_SSL_H
30 #define _NET_SSL_H
31 
32 #include <chrono>
33 #include <stdint.h>
34 #include <string>
35 #include <vector>
36 #include <boost/utility/string_ref.hpp>
37 #include <boost/asio/io_context.hpp>
38 #include <boost/asio/ip/tcp.hpp>
39 #include <boost/asio/ssl.hpp>
40 #include <boost/filesystem/path.hpp>
41 #include <boost/system/error_code.hpp>
42 
43 #define SSL_FINGERPRINT_SIZE 32
44 
45 namespace epee
46 {
47 namespace net_utils
48 {
49  enum class ssl_support_t: uint8_t {
53  };
54 
56  {
57  none = 0,
58  system_ca,
60  user_ca
61  };
62 
64  {
67 
69  void use_ssl_certificate(boost::asio::ssl::context &ssl_context) const;
70  };
71 
77  {
78  // force sorted behavior in private
79  std::vector<std::vector<std::uint8_t>> fingerprints_;
80 
81  public:
86 
89  : fingerprints_(),
90  ca_path(),
91  auth(),
94  {}
95 
97  ssl_options_t(std::vector<std::vector<std::uint8_t>> fingerprints, std::string ca_path);
98 
99  ssl_options_t(const ssl_options_t&) = default;
100  ssl_options_t(ssl_options_t&&) = default;
101 
102  ssl_options_t& operator=(const ssl_options_t&) = default;
103  ssl_options_t& operator=(ssl_options_t&&) = default;
104 
106  explicit operator bool() const noexcept { return support != ssl_support_t::e_ssl_support_disabled; }
107 
109  bool has_strong_verification(boost::string_ref host) const noexcept;
110 
112  bool has_fingerprint(boost::asio::ssl::verify_context &ctx) const;
113 
115  void configure(
116  boost::asio::ssl::stream<boost::asio::ip::tcp::socket> &socket,
117  boost::asio::ssl::stream_base::handshake_type type,
118  const std::string& host = {}) const;
120 
140  bool handshake(
141  boost::asio::io_context& io_context,
142  boost::asio::ssl::stream<boost::asio::ip::tcp::socket> &socket,
143  boost::asio::ssl::stream_base::handshake_type type,
144  boost::asio::const_buffer buffer = {},
145  const std::string& host = {},
146  std::chrono::milliseconds timeout = std::chrono::seconds(15)) const;
147  };
148 
149  // https://security.stackexchange.com/questions/34780/checking-client-hello-for-https-classification
150  constexpr size_t get_ssl_magic_size() { return 9; }
151  bool is_ssl(const unsigned char *data, size_t len);
152  bool ssl_support_from_string(ssl_support_t &ssl, boost::string_ref s);
153 
154  bool create_ec_ssl_certificate(EVP_PKEY *&pkey, X509 *&cert);
155  bool create_rsa_ssl_certificate(EVP_PKEY *&pkey, X509 *&cert);
156 
158  boost::system::error_code store_ssl_keys(boost::asio::ssl::context& ssl, const boost::filesystem::path& base);
159 }
160 }
161 
162 #endif //_NET_SSL_H
std::vector< std::vector< std::uint8_t > > fingerprints_
Definition: net_ssl.h:79
Definition: net_ssl.h:76
bool ssl_support_from_string(ssl_support_t &ssl, boost::string_ref s)
Definition: net_ssl.cpp:654
constexpr size_t get_ssl_magic_size()
Definition: net_ssl.h:150
ssl_options_t(ssl_support_t support)
Verification is set to system ca unless SSL is disabled.
Definition: net_ssl.h:88
bool has_fingerprint(boost::asio::ssl::verify_context &ctx) const
Search against internal fingerprints. Always false if behavior() != user_certificate_check.
Definition: net_ssl.cpp:463
::std::string string
Definition: gtest-port.h:1097
bool create_rsa_ssl_certificate(EVP_PKEY *&pkey, X509 *&cert)
Definition: net_ssl.cpp:143
host
Definition: console.py:27
std::string data
Definition: base58.cpp:37
int type
Definition: superscalar.cpp:50
std::unique_ptr< void, close > socket
Unique ZMQ socket handle, calls zmq_close on destruction.
Definition: zmq.h:108
const char * s
Definition: minissdp.c:596
void use_ssl_certificate(boost::asio::ssl::context &ssl_context) const
Load private_key_path and certificate_path into ssl_context.
Definition: net_ssl.cpp:413
ssl_support_t
Definition: net_ssl.h:49
unsigned char uint8_t
Definition: stdint.h:124
std::string certificate_path
Certificate used for authentication to peer.
Definition: net_ssl.h:66
Verify peer via system ca only (do not inspect user certificates)
bool is_ssl(const unsigned char *data, size_t len)
Definition: net_ssl.cpp:424
const T buffer
Definition: byte_slice.cpp:83
Definition: support.py:1
Verify peer via specific (possibly chain) certificate(s) only.
ssl_authentication_t auth
Definition: net_ssl.h:83
ssl_support_t support
Definition: net_ssl.h:84
std::unique_ptr< void, terminate > context
Unique ZMQ context handle, calls zmq_term on destruction.
Definition: zmq.h:105
Verify peer via specific (non-chain) certificate(s) only.
void configure(boost::asio::ssl::stream< boost::asio::ip::tcp::socket > &socket, boost::asio::ssl::stream_base::handshake_type type, const std::string &host={}) const
configure ssl_stream handshake verification
Definition: net_ssl.cpp:501
bool create_ec_ssl_certificate(EVP_PKEY *&pkey, X509 *&cert)
boost::system::error_code store_ssl_keys(boost::asio::ssl::context &ssl, const boost::filesystem::path &base)
Store private key for ssl at base + ".key" unencrypted and certificate for ssl at base + "...
Definition: net_ssl.cpp:667
Definition: base.py:1
TODO: (mj-xmr) This will be reduced in an another PR.
Definition: byte_slice.h:39
ssl_verification_t
Definition: net_ssl.h:55
std::string ca_path
Definition: net_ssl.h:82
int bool
Definition: stdbool.h:35
ssl_verification_t verification
Definition: net_ssl.h:85
bool has_strong_verification(boost::string_ref host) const noexcept
Definition: net_ssl.cpp:444
std::string private_key_path
Private key used for authentication.
Definition: net_ssl.h:65
boost::asio::ssl::context create_context() const
Definition: net_ssl.cpp:304
ssl_options_t & operator=(const ssl_options_t &)=default
bool handshake(boost::asio::io_context &io_context, boost::asio::ssl::stream< boost::asio::ip::tcp::socket > &socket, boost::asio::ssl::stream_base::handshake_type type, boost::asio::const_buffer buffer={}, const std::string &host={}, std::chrono::milliseconds timeout=std::chrono::seconds(15)) const
Definition: net_ssl.cpp:554
#define const
Definition: ipfrdr.c:80