Bitcoin Core  27.99.0
P2P Digital Currency
i2p.cpp
Go to the documentation of this file.
1 // Copyright (c) 2020-2022 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #include <chainparams.h>
6 #include <common/args.h>
7 #include <compat/compat.h>
8 #include <compat/endian.h>
9 #include <crypto/sha256.h>
10 #include <i2p.h>
11 #include <logging.h>
12 #include <netaddress.h>
13 #include <netbase.h>
14 #include <random.h>
15 #include <sync.h>
16 #include <tinyformat.h>
17 #include <util/fs.h>
18 #include <util/readwritefile.h>
19 #include <util/sock.h>
20 #include <util/spanparsing.h>
21 #include <util/strencodings.h>
22 #include <util/threadinterrupt.h>
23 
24 #include <chrono>
25 #include <memory>
26 #include <stdexcept>
27 #include <string>
28 
29 namespace i2p {
30 
39 static std::string SwapBase64(const std::string& from)
40 {
41  std::string to;
42  to.resize(from.size());
43  for (size_t i = 0; i < from.size(); ++i) {
44  switch (from[i]) {
45  case '-':
46  to[i] = '+';
47  break;
48  case '~':
49  to[i] = '/';
50  break;
51  case '+':
52  to[i] = '-';
53  break;
54  case '/':
55  to[i] = '~';
56  break;
57  default:
58  to[i] = from[i];
59  break;
60  }
61  }
62  return to;
63 }
64 
71 static Binary DecodeI2PBase64(const std::string& i2p_b64)
72 {
73  const std::string& std_b64 = SwapBase64(i2p_b64);
74  auto decoded = DecodeBase64(std_b64);
75  if (!decoded) {
76  throw std::runtime_error(strprintf("Cannot decode Base64: \"%s\"", i2p_b64));
77  }
78  return std::move(*decoded);
79 }
80 
87 static CNetAddr DestBinToAddr(const Binary& dest)
88 {
89  CSHA256 hasher;
90  hasher.Write(dest.data(), dest.size());
91  unsigned char hash[CSHA256::OUTPUT_SIZE];
92  hasher.Finalize(hash);
93 
94  CNetAddr addr;
95  const std::string addr_str = EncodeBase32(hash, false) + ".b32.i2p";
96  if (!addr.SetSpecial(addr_str)) {
97  throw std::runtime_error(strprintf("Cannot parse I2P address: \"%s\"", addr_str));
98  }
99 
100  return addr;
101 }
102 
109 static CNetAddr DestB64ToAddr(const std::string& dest)
110 {
111  const Binary& decoded = DecodeI2PBase64(dest);
112  return DestBinToAddr(decoded);
113 }
114 
115 namespace sam {
116 
117 Session::Session(const fs::path& private_key_file,
118  const Proxy& control_host,
119  CThreadInterrupt* interrupt)
120  : m_private_key_file{private_key_file},
121  m_control_host{control_host},
122  m_interrupt{interrupt},
123  m_transient{false}
124 {
125 }
126 
127 Session::Session(const Proxy& control_host, CThreadInterrupt* interrupt)
128  : m_control_host{control_host},
129  m_interrupt{interrupt},
130  m_transient{true}
131 {
132 }
133 
135 {
136  LOCK(m_mutex);
137  Disconnect();
138 }
139 
141 {
142  try {
143  LOCK(m_mutex);
145  conn.me = m_my_addr;
146  conn.sock = StreamAccept();
147  return true;
148  } catch (const std::runtime_error& e) {
149  Log("Error listening: %s", e.what());
151  }
152  return false;
153 }
154 
156 {
158 
159  std::string errmsg;
160  bool disconnect{false};
161 
162  while (!*m_interrupt) {
163  Sock::Event occurred;
164  if (!conn.sock->Wait(MAX_WAIT_FOR_IO, Sock::RECV, &occurred)) {
165  errmsg = "wait on socket failed";
166  break;
167  }
168 
169  if (occurred == 0) {
170  // Timeout, no incoming connections or errors within MAX_WAIT_FOR_IO.
171  continue;
172  }
173 
174  std::string peer_dest;
175  try {
176  peer_dest = conn.sock->RecvUntilTerminator('\n', MAX_WAIT_FOR_IO, *m_interrupt, MAX_MSG_SIZE);
177  } catch (const std::runtime_error& e) {
178  errmsg = e.what();
179  break;
180  }
181 
182  CNetAddr peer_addr;
183  try {
184  peer_addr = DestB64ToAddr(peer_dest);
185  } catch (const std::runtime_error& e) {
186  // The I2P router is expected to send the Base64 of the connecting peer,
187  // but it may happen that something like this is sent instead:
188  // STREAM STATUS RESULT=I2P_ERROR MESSAGE="Session was closed"
189  // In that case consider the session damaged and close it right away,
190  // even if the control socket is alive.
191  if (peer_dest.find("RESULT=I2P_ERROR") != std::string::npos) {
192  errmsg = strprintf("unexpected reply that hints the session is unusable: %s", peer_dest);
193  disconnect = true;
194  } else {
195  errmsg = e.what();
196  }
197  break;
198  }
199 
200  conn.peer = CService(peer_addr, I2P_SAM31_PORT);
201 
202  return true;
203  }
204 
205  Log("Error accepting%s: %s", disconnect ? " (will close the session)" : "", errmsg);
206  if (disconnect) {
207  LOCK(m_mutex);
208  Disconnect();
209  } else {
211  }
212  return false;
213 }
214 
215 bool Session::Connect(const CService& to, Connection& conn, bool& proxy_error)
216 {
217  // Refuse connecting to arbitrary ports. We don't specify any destination port to the SAM proxy
218  // when connecting (SAM 3.1 does not use ports) and it forces/defaults it to I2P_SAM31_PORT.
219  if (to.GetPort() != I2P_SAM31_PORT) {
220  Log("Error connecting to %s, connection refused due to arbitrary port %s", to.ToStringAddrPort(), to.GetPort());
221  proxy_error = false;
222  return false;
223  }
224 
225  proxy_error = true;
226 
227  std::string session_id;
228  std::unique_ptr<Sock> sock;
229  conn.peer = to;
230 
231  try {
232  {
233  LOCK(m_mutex);
235  session_id = m_session_id;
236  conn.me = m_my_addr;
237  sock = Hello();
238  }
239 
240  const Reply& lookup_reply =
241  SendRequestAndGetReply(*sock, strprintf("NAMING LOOKUP NAME=%s", to.ToStringAddr()));
242 
243  const std::string& dest = lookup_reply.Get("VALUE");
244 
245  const Reply& connect_reply = SendRequestAndGetReply(
246  *sock, strprintf("STREAM CONNECT ID=%s DESTINATION=%s SILENT=false", session_id, dest),
247  false);
248 
249  const std::string& result = connect_reply.Get("RESULT");
250 
251  if (result == "OK") {
252  conn.sock = std::move(sock);
253  return true;
254  }
255 
256  if (result == "INVALID_ID") {
257  LOCK(m_mutex);
258  Disconnect();
259  throw std::runtime_error("Invalid session id");
260  }
261 
262  if (result == "CANT_REACH_PEER" || result == "TIMEOUT") {
263  proxy_error = false;
264  }
265 
266  throw std::runtime_error(strprintf("\"%s\"", connect_reply.full));
267  } catch (const std::runtime_error& e) {
268  Log("Error connecting to %s: %s", to.ToStringAddrPort(), e.what());
270  return false;
271  }
272 }
273 
274 // Private methods
275 
276 std::string Session::Reply::Get(const std::string& key) const
277 {
278  const auto& pos = keys.find(key);
279  if (pos == keys.end() || !pos->second.has_value()) {
280  throw std::runtime_error(
281  strprintf("Missing %s= in the reply to \"%s\": \"%s\"", key, request, full));
282  }
283  return pos->second.value();
284 }
285 
286 template <typename... Args>
287 void Session::Log(const std::string& fmt, const Args&... args) const
288 {
289  LogPrint(BCLog::I2P, "%s\n", tfm::format(fmt, args...));
290 }
291 
293  const std::string& request,
294  bool check_result_ok) const
295 {
296  sock.SendComplete(request + "\n", MAX_WAIT_FOR_IO, *m_interrupt);
297 
298  Reply reply;
299 
300  // Don't log the full "SESSION CREATE ..." because it contains our private key.
301  reply.request = request.substr(0, 14) == "SESSION CREATE" ? "SESSION CREATE ..." : request;
302 
303  // It could take a few minutes for the I2P router to reply as it is querying the I2P network
304  // (when doing name lookup, for example). Notice: `RecvUntilTerminator()` is checking
305  // `m_interrupt` more often, so we would not be stuck here for long if `m_interrupt` is
306  // signaled.
307  static constexpr auto recv_timeout = 3min;
308 
309  reply.full = sock.RecvUntilTerminator('\n', recv_timeout, *m_interrupt, MAX_MSG_SIZE);
310 
311  for (const auto& kv : spanparsing::Split(reply.full, ' ')) {
312  const auto& pos = std::find(kv.begin(), kv.end(), '=');
313  if (pos != kv.end()) {
314  reply.keys.emplace(std::string{kv.begin(), pos}, std::string{pos + 1, kv.end()});
315  } else {
316  reply.keys.emplace(std::string{kv.begin(), kv.end()}, std::nullopt);
317  }
318  }
319 
320  if (check_result_ok && reply.Get("RESULT") != "OK") {
321  throw std::runtime_error(
322  strprintf("Unexpected reply to \"%s\": \"%s\"", request, reply.full));
323  }
324 
325  return reply;
326 }
327 
328 std::unique_ptr<Sock> Session::Hello() const
329 {
330  auto sock = m_control_host.Connect();
331 
332  if (!sock) {
333  throw std::runtime_error(strprintf("Cannot connect to %s", m_control_host.ToString()));
334  }
335 
336  SendRequestAndGetReply(*sock, "HELLO VERSION MIN=3.1 MAX=3.1");
337 
338  return sock;
339 }
340 
342 {
343  LOCK(m_mutex);
344 
345  std::string errmsg;
346  if (m_control_sock && !m_control_sock->IsConnected(errmsg)) {
347  Log("Control socket error: %s", errmsg);
348  Disconnect();
349  }
350 }
351 
352 void Session::DestGenerate(const Sock& sock)
353 {
354  // https://geti2p.net/spec/common-structures#key-certificates
355  // "7" or "EdDSA_SHA512_Ed25519" - "Recent Router Identities and Destinations".
356  // Use "7" because i2pd <2.24.0 does not recognize the textual form.
357  // If SIGNATURE_TYPE is not specified, then the default one is DSA_SHA1.
358  const Reply& reply = SendRequestAndGetReply(sock, "DEST GENERATE SIGNATURE_TYPE=7", false);
359 
360  m_private_key = DecodeI2PBase64(reply.Get("PRIV"));
361 }
362 
364 {
365  DestGenerate(sock);
366 
367  // umask is set to 0077 in common/system.cpp, which is ok.
369  std::string(m_private_key.begin(), m_private_key.end()))) {
370  throw std::runtime_error(
371  strprintf("Cannot save I2P private key to %s", fs::quoted(fs::PathToString(m_private_key_file))));
372  }
373 }
374 
376 {
377  // From https://geti2p.net/spec/common-structures#destination:
378  // "They are 387 bytes plus the certificate length specified at bytes 385-386, which may be
379  // non-zero"
380  static constexpr size_t DEST_LEN_BASE = 387;
381  static constexpr size_t CERT_LEN_POS = 385;
382 
383  uint16_t cert_len;
384 
385  if (m_private_key.size() < CERT_LEN_POS + sizeof(cert_len)) {
386  throw std::runtime_error(strprintf("The private key is too short (%d < %d)",
387  m_private_key.size(),
388  CERT_LEN_POS + sizeof(cert_len)));
389  }
390 
391  memcpy(&cert_len, &m_private_key.at(CERT_LEN_POS), sizeof(cert_len));
392  cert_len = be16toh_internal(cert_len);
393 
394  const size_t dest_len = DEST_LEN_BASE + cert_len;
395 
396  if (dest_len > m_private_key.size()) {
397  throw std::runtime_error(strprintf("Certificate length (%d) designates that the private key should "
398  "be %d bytes, but it is only %d bytes",
399  cert_len,
400  dest_len,
401  m_private_key.size()));
402  }
403 
404  return Binary{m_private_key.begin(), m_private_key.begin() + dest_len};
405 }
406 
408 {
409  std::string errmsg;
410  if (m_control_sock && m_control_sock->IsConnected(errmsg)) {
411  return;
412  }
413 
414  const auto session_type = m_transient ? "transient" : "persistent";
415  const auto session_id = GetRandHash().GetHex().substr(0, 10); // full is overkill, too verbose in the logs
416 
417  Log("Creating %s SAM session %s with %s", session_type, session_id, m_control_host.ToString());
418 
419  auto sock = Hello();
420 
421  if (m_transient) {
422  // The destination (private key) is generated upon session creation and returned
423  // in the reply in DESTINATION=.
424  const Reply& reply = SendRequestAndGetReply(
425  *sock,
426  strprintf("SESSION CREATE STYLE=STREAM ID=%s DESTINATION=TRANSIENT SIGNATURE_TYPE=7 "
427  "i2cp.leaseSetEncType=4,0 inbound.quantity=1 outbound.quantity=1",
428  session_id));
429 
430  m_private_key = DecodeI2PBase64(reply.Get("DESTINATION"));
431  } else {
432  // Read our persistent destination (private key) from disk or generate
433  // one and save it to disk. Then use it when creating the session.
434  const auto& [read_ok, data] = ReadBinaryFile(m_private_key_file);
435  if (read_ok) {
436  m_private_key.assign(data.begin(), data.end());
437  } else {
439  }
440 
441  const std::string& private_key_b64 = SwapBase64(EncodeBase64(m_private_key));
442 
444  strprintf("SESSION CREATE STYLE=STREAM ID=%s DESTINATION=%s "
445  "i2cp.leaseSetEncType=4,0 inbound.quantity=3 outbound.quantity=3",
446  session_id,
447  private_key_b64));
448  }
449 
451  m_session_id = session_id;
452  m_control_sock = std::move(sock);
453 
454  Log("%s SAM session %s created, my address=%s",
455  Capitalize(session_type),
456  m_session_id,
457  m_my_addr.ToStringAddrPort());
458 }
459 
460 std::unique_ptr<Sock> Session::StreamAccept()
461 {
462  auto sock = Hello();
463 
464  const Reply& reply = SendRequestAndGetReply(
465  *sock, strprintf("STREAM ACCEPT ID=%s SILENT=false", m_session_id), false);
466 
467  const std::string& result = reply.Get("RESULT");
468 
469  if (result == "OK") {
470  return sock;
471  }
472 
473  if (result == "INVALID_ID") {
474  // If our session id is invalid, then force session re-creation on next usage.
475  Disconnect();
476  }
477 
478  throw std::runtime_error(strprintf("\"%s\"", reply.full));
479 }
480 
482 {
483  if (m_control_sock) {
484  if (m_session_id.empty()) {
485  Log("Destroying incomplete SAM session");
486  } else {
487  Log("Destroying SAM session %s", m_session_id);
488  }
489  m_control_sock.reset();
490  }
491  m_session_id.clear();
492 }
493 } // namespace sam
494 } // namespace i2p
ArgsManager & args
Definition: bitcoind.cpp:268
Network address.
Definition: netaddress.h:112
std::string ToStringAddr() const
Definition: netaddress.cpp:581
bool SetSpecial(const std::string &addr)
Parse a Tor or I2P address and set this object to it.
Definition: netaddress.cpp:208
A hasher class for SHA-256.
Definition: sha256.h:14
static const size_t OUTPUT_SIZE
Definition: sha256.h:21
void Finalize(unsigned char hash[OUTPUT_SIZE])
Definition: sha256.cpp:728
CSHA256 & Write(const unsigned char *data, size_t len)
Definition: sha256.cpp:702
A combination of a network address (CNetAddr) and a (TCP) port.
Definition: netaddress.h:531
uint16_t GetPort() const
Definition: netaddress.cpp:834
std::string ToStringAddrPort() const
Definition: netaddress.cpp:902
A helper class for interruptible sleeps.
Definition: netbase.h:59
std::string ToString() const
Definition: netbase.h:82
std::unique_ptr< Sock > Connect() const
Definition: netbase.cpp:633
RAII helper class that manages a socket and closes it automatically when it goes out of scope.
Definition: sock.h:27
virtual void SendComplete(Span< const unsigned char > data, std::chrono::milliseconds timeout, CThreadInterrupt &interrupt) const
Send the given data, retrying on transient errors.
Definition: sock.cpp:245
uint8_t Event
Definition: sock.h:138
static constexpr Event RECV
If passed to Wait(), then it will wait for readiness to read from the socket.
Definition: sock.h:143
virtual std::string RecvUntilTerminator(uint8_t terminator, std::chrono::milliseconds timeout, CThreadInterrupt &interrupt, size_t max_data) const
Read from socket until a terminator character is encountered.
Definition: sock.cpp:293
std::string GetHex() const
Definition: uint256.cpp:11
Path class wrapper to block calls to the fs::path(std::string) implicit constructor and the fs::path:...
Definition: fs.h:33
const fs::path m_private_key_file
The name of the file where this peer's private key is stored (in binary).
Definition: i2p.h:236
Reply SendRequestAndGetReply(const Sock &sock, const std::string &request, bool check_result_ok=true) const
Send request and get a reply from the SAM proxy.
Definition: i2p.cpp:292
Session(const fs::path &private_key_file, const Proxy &control_host, CThreadInterrupt *interrupt)
Construct a session.
Definition: i2p.cpp:117
bool Listen(Connection &conn) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Start listening for an incoming connection.
Definition: i2p.cpp:140
void CreateIfNotCreatedAlready() EXCLUSIVE_LOCKS_REQUIRED(m_mutex)
Create the session if not already created.
Definition: i2p.cpp:407
void Disconnect() EXCLUSIVE_LOCKS_REQUIRED(m_mutex)
Destroy the session, closing the internally used sockets.
Definition: i2p.cpp:481
std::unique_ptr< Sock > Hello() const EXCLUSIVE_LOCKS_REQUIRED(m_mutex)
Open a new connection to the SAM proxy.
Definition: i2p.cpp:328
void CheckControlSock() EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Check the control socket for errors and possibly disconnect.
Definition: i2p.cpp:341
std::unique_ptr< Sock > StreamAccept() EXCLUSIVE_LOCKS_REQUIRED(m_mutex)
Open a new connection to the SAM proxy and issue "STREAM ACCEPT" request using the existing session i...
Definition: i2p.cpp:460
Binary MyDestination() const EXCLUSIVE_LOCKS_REQUIRED(m_mutex)
Derive own destination from m_private_key.
Definition: i2p.cpp:375
~Session()
Destroy the session, closing the internally used sockets.
Definition: i2p.cpp:134
const bool m_transient
Whether this is a transient session (the I2P private key will not be read or written to disk).
Definition: i2p.h:285
void GenerateAndSavePrivateKey(const Sock &sock) EXCLUSIVE_LOCKS_REQUIRED(m_mutex)
Generate a new destination with the SAM proxy, set m_private_key to it and save it on disk to m_priva...
Definition: i2p.cpp:363
bool Connect(const CService &to, Connection &conn, bool &proxy_error) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Connect to an I2P peer.
Definition: i2p.cpp:215
void Log(const std::string &fmt, const Args &... args) const
Log a message in the BCLog::I2P category.
Definition: i2p.cpp:287
CThreadInterrupt *const m_interrupt
Cease network activity when this is signaled.
Definition: i2p.h:246
void DestGenerate(const Sock &sock) EXCLUSIVE_LOCKS_REQUIRED(m_mutex)
Generate a new destination with the SAM proxy and set m_private_key to it.
Definition: i2p.cpp:352
Mutex m_mutex
Mutex protecting the members that can be concurrently accessed.
Definition: i2p.h:251
bool Accept(Connection &conn) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Wait for and accept a new incoming connection.
Definition: i2p.cpp:155
const Proxy m_control_host
The SAM control service proxy.
Definition: i2p.h:241
BSWAP_CONSTEXPR uint16_t be16toh_internal(uint16_t big_endian_16bits)
Definition: endian.h:23
#define LogPrint(category,...)
Definition: logging.h:263
@ I2P
Definition: logging.h:63
static auto quoted(const std::string &s)
Definition: fs.h:95
static std::string PathToString(const path &path)
Convert path object to a byte string.
Definition: fs.h:151
static constexpr size_t MAX_MSG_SIZE
The maximum size of an incoming message from the I2P SAM proxy (in bytes).
Definition: i2p.h:51
Definition: i2p.cpp:29
static CNetAddr DestB64ToAddr(const std::string &dest)
Derive the .b32.i2p address of an I2P destination (I2P-style Base64).
Definition: i2p.cpp:109
static std::string SwapBase64(const std::string &from)
Swap Standard Base64 <-> I2P Base64.
Definition: i2p.cpp:39
static CNetAddr DestBinToAddr(const Binary &dest)
Derive the .b32.i2p address of an I2P destination (binary).
Definition: i2p.cpp:87
std::vector< uint8_t > Binary
Binary data.
Definition: i2p.h:27
static Binary DecodeI2PBase64(const std::string &i2p_b64)
Decode an I2P-style Base64 string.
Definition: i2p.cpp:71
std::vector< T > Split(const Span< const char > &sp, std::string_view separators)
Split a string on any char found in separators, returning a vector.
Definition: spanparsing.h:48
void format(std::ostream &out, const char *fmt, const Args &... args)
Format list of arguments to the stream according to given format string.
Definition: tinyformat.h:1060
static constexpr uint16_t I2P_SAM31_PORT
SAM 3.1 and earlier do not support specifying ports and force the port to 0.
Definition: netaddress.h:104
uint256 GetRandHash() noexcept
Definition: random.cpp:650
bool WriteBinaryFile(const fs::path &filename, const std::string &data)
Write contents of std::string to a file.
std::pair< bool, std::string > ReadBinaryFile(const fs::path &filename, size_t maxsize)
Read full contents of a file and return them in a std::string.
static constexpr auto MAX_WAIT_FOR_IO
Maximum time to wait for I/O readiness.
Definition: sock.h:21
An established connection with another peer.
Definition: i2p.h:32
std::unique_ptr< Sock > sock
Connected socket.
Definition: i2p.h:34
CService me
Our I2P address.
Definition: i2p.h:37
CService peer
The peer's I2P address.
Definition: i2p.h:40
A reply from the SAM proxy.
Definition: i2p.h:126
std::string Get(const std::string &key) const
Get the value of a given key.
Definition: i2p.cpp:276
std::string full
Full, unparsed reply.
Definition: i2p.h:130
std::unordered_map< std::string, std::optional< std::string > > keys
A map of keywords from the parsed reply.
Definition: i2p.h:144
std::string request
Request, used for detailed error reporting.
Definition: i2p.h:135
#define AssertLockNotHeld(cs)
Definition: sync.h:147
#define LOCK(cs)
Definition: sync.h:257
#define strprintf
Format arguments and return the string or write to given std::ostream (see tinyformat::format doc for...
Definition: tinyformat.h:1162
std::string Capitalize(std::string str)
Capitalizes the first character of the given string.
std::string EncodeBase64(Span< const unsigned char > input)
std::string EncodeBase32(Span< const unsigned char > input, bool pad)
Base32 encode.
std::optional< std::vector< unsigned char > > DecodeBase64(std::string_view str)