Branch data Line data Source code
# 1 : : // Copyright (c) 2015-2019 The Bitcoin Core developers
# 2 : : // Copyright (c) 2017 The Zcash developers
# 3 : : // Distributed under the MIT software license, see the accompanying
# 4 : : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
# 5 : :
# 6 : : #include <chainparams.h>
# 7 : : #include <torcontrol.h>
# 8 : : #include <util/strencodings.h>
# 9 : : #include <netbase.h>
# 10 : : #include <net.h>
# 11 : : #include <util/system.h>
# 12 : : #include <crypto/hmac_sha256.h>
# 13 : :
# 14 : : #include <vector>
# 15 : : #include <deque>
# 16 : : #include <set>
# 17 : : #include <stdlib.h>
# 18 : :
# 19 : : #include <boost/signals2/signal.hpp>
# 20 : : #include <boost/algorithm/string/split.hpp>
# 21 : : #include <boost/algorithm/string/classification.hpp>
# 22 : : #include <boost/algorithm/string/replace.hpp>
# 23 : :
# 24 : : #include <event2/bufferevent.h>
# 25 : : #include <event2/buffer.h>
# 26 : : #include <event2/util.h>
# 27 : : #include <event2/event.h>
# 28 : : #include <event2/thread.h>
# 29 : :
# 30 : : /** Default control port */
# 31 : : const std::string DEFAULT_TOR_CONTROL = "127.0.0.1:9051";
# 32 : : /** Tor cookie size (from control-spec.txt) */
# 33 : : static const int TOR_COOKIE_SIZE = 32;
# 34 : : /** Size of client/server nonce for SAFECOOKIE */
# 35 : : static const int TOR_NONCE_SIZE = 32;
# 36 : : /** For computing serverHash in SAFECOOKIE */
# 37 : : static const std::string TOR_SAFE_SERVERKEY = "Tor safe cookie authentication server-to-controller hash";
# 38 : : /** For computing clientHash in SAFECOOKIE */
# 39 : : static const std::string TOR_SAFE_CLIENTKEY = "Tor safe cookie authentication controller-to-server hash";
# 40 : : /** Exponential backoff configuration - initial timeout in seconds */
# 41 : : static const float RECONNECT_TIMEOUT_START = 1.0;
# 42 : : /** Exponential backoff configuration - growth factor */
# 43 : : static const float RECONNECT_TIMEOUT_EXP = 1.5;
# 44 : : /** Maximum length for lines received on TorControlConnection.
# 45 : : * tor-control-spec.txt mentions that there is explicitly no limit defined to line length,
# 46 : : * this is belt-and-suspenders sanity limit to prevent memory exhaustion.
# 47 : : */
# 48 : : static const int MAX_LINE_LENGTH = 100000;
# 49 : :
# 50 : : /****** Low-level TorControlConnection ********/
# 51 : :
# 52 : : /** Reply from Tor, can be single or multi-line */
# 53 : : class TorControlReply
# 54 : : {
# 55 : : public:
# 56 : 0 : TorControlReply() { Clear(); }
# 57 : :
# 58 : : int code;
# 59 : : std::vector<std::string> lines;
# 60 : :
# 61 : : void Clear()
# 62 : 0 : {
# 63 : 0 : code = 0;
# 64 : 0 : lines.clear();
# 65 : 0 : }
# 66 : : };
# 67 : :
# 68 : : /** Low-level handling for Tor control connection.
# 69 : : * Speaks the SMTP-like protocol as defined in torspec/control-spec.txt
# 70 : : */
# 71 : : class TorControlConnection
# 72 : : {
# 73 : : public:
# 74 : : typedef std::function<void(TorControlConnection&)> ConnectionCB;
# 75 : : typedef std::function<void(TorControlConnection &,const TorControlReply &)> ReplyHandlerCB;
# 76 : :
# 77 : : /** Create a new TorControlConnection.
# 78 : : */
# 79 : : explicit TorControlConnection(struct event_base *base);
# 80 : : ~TorControlConnection();
# 81 : :
# 82 : : /**
# 83 : : * Connect to a Tor control port.
# 84 : : * target is address of the form host:port.
# 85 : : * connected is the handler that is called when connection is successfully established.
# 86 : : * disconnected is a handler that is called when the connection is broken.
# 87 : : * Return true on success.
# 88 : : */
# 89 : : bool Connect(const std::string &target, const ConnectionCB& connected, const ConnectionCB& disconnected);
# 90 : :
# 91 : : /**
# 92 : : * Disconnect from Tor control port.
# 93 : : */
# 94 : : void Disconnect();
# 95 : :
# 96 : : /** Send a command, register a handler for the reply.
# 97 : : * A trailing CRLF is automatically added.
# 98 : : * Return true on success.
# 99 : : */
# 100 : : bool Command(const std::string &cmd, const ReplyHandlerCB& reply_handler);
# 101 : :
# 102 : : /** Response handlers for async replies */
# 103 : : boost::signals2::signal<void(TorControlConnection &,const TorControlReply &)> async_handler;
# 104 : : private:
# 105 : : /** Callback when ready for use */
# 106 : : std::function<void(TorControlConnection&)> connected;
# 107 : : /** Callback when connection lost */
# 108 : : std::function<void(TorControlConnection&)> disconnected;
# 109 : : /** Libevent event base */
# 110 : : struct event_base *base;
# 111 : : /** Connection to control socket */
# 112 : : struct bufferevent *b_conn;
# 113 : : /** Message being received */
# 114 : : TorControlReply message;
# 115 : : /** Response handlers */
# 116 : : std::deque<ReplyHandlerCB> reply_handlers;
# 117 : :
# 118 : : /** Libevent handlers: internal */
# 119 : : static void readcb(struct bufferevent *bev, void *ctx);
# 120 : : static void eventcb(struct bufferevent *bev, short what, void *ctx);
# 121 : : };
# 122 : :
# 123 : : TorControlConnection::TorControlConnection(struct event_base *_base):
# 124 : : base(_base), b_conn(nullptr)
# 125 : 0 : {
# 126 : 0 : }
# 127 : :
# 128 : : TorControlConnection::~TorControlConnection()
# 129 : 0 : {
# 130 : 0 : if (b_conn)
# 131 : 0 : bufferevent_free(b_conn);
# 132 : 0 : }
# 133 : :
# 134 : : void TorControlConnection::readcb(struct bufferevent *bev, void *ctx)
# 135 : 0 : {
# 136 : 0 : TorControlConnection *self = static_cast<TorControlConnection*>(ctx);
# 137 : 0 : struct evbuffer *input = bufferevent_get_input(bev);
# 138 : 0 : size_t n_read_out = 0;
# 139 : 0 : char *line;
# 140 : 0 : assert(input);
# 141 : : // If there is not a whole line to read, evbuffer_readln returns nullptr
# 142 : 0 : while((line = evbuffer_readln(input, &n_read_out, EVBUFFER_EOL_CRLF)) != nullptr)
# 143 : 0 : {
# 144 : 0 : std::string s(line, n_read_out);
# 145 : 0 : free(line);
# 146 : 0 : if (s.size() < 4) // Short line
# 147 : 0 : continue;
# 148 : : // <status>(-|+| )<data><CRLF>
# 149 : 0 : self->message.code = atoi(s.substr(0,3));
# 150 : 0 : self->message.lines.push_back(s.substr(4));
# 151 : 0 : char ch = s[3]; // '-','+' or ' '
# 152 : 0 : if (ch == ' ') {
# 153 : : // Final line, dispatch reply and clean up
# 154 : 0 : if (self->message.code >= 600) {
# 155 : : // Dispatch async notifications to async handler
# 156 : : // Synchronous and asynchronous messages are never interleaved
# 157 : 0 : self->async_handler(*self, self->message);
# 158 : 0 : } else {
# 159 : 0 : if (!self->reply_handlers.empty()) {
# 160 : : // Invoke reply handler with message
# 161 : 0 : self->reply_handlers.front()(*self, self->message);
# 162 : 0 : self->reply_handlers.pop_front();
# 163 : 0 : } else {
# 164 : 0 : LogPrint(BCLog::TOR, "tor: Received unexpected sync reply %i\n", self->message.code);
# 165 : 0 : }
# 166 : 0 : }
# 167 : 0 : self->message.Clear();
# 168 : 0 : }
# 169 : 0 : }
# 170 : : // Check for size of buffer - protect against memory exhaustion with very long lines
# 171 : : // Do this after evbuffer_readln to make sure all full lines have been
# 172 : : // removed from the buffer. Everything left is an incomplete line.
# 173 : 0 : if (evbuffer_get_length(input) > MAX_LINE_LENGTH) {
# 174 : 0 : LogPrintf("tor: Disconnecting because MAX_LINE_LENGTH exceeded\n");
# 175 : 0 : self->Disconnect();
# 176 : 0 : }
# 177 : 0 : }
# 178 : :
# 179 : : void TorControlConnection::eventcb(struct bufferevent *bev, short what, void *ctx)
# 180 : 0 : {
# 181 : 0 : TorControlConnection *self = static_cast<TorControlConnection*>(ctx);
# 182 : 0 : if (what & BEV_EVENT_CONNECTED) {
# 183 : 0 : LogPrint(BCLog::TOR, "tor: Successfully connected!\n");
# 184 : 0 : self->connected(*self);
# 185 : 0 : } else if (what & (BEV_EVENT_EOF|BEV_EVENT_ERROR)) {
# 186 : 0 : if (what & BEV_EVENT_ERROR) {
# 187 : 0 : LogPrint(BCLog::TOR, "tor: Error connecting to Tor control socket\n");
# 188 : 0 : } else {
# 189 : 0 : LogPrint(BCLog::TOR, "tor: End of stream\n");
# 190 : 0 : }
# 191 : 0 : self->Disconnect();
# 192 : 0 : self->disconnected(*self);
# 193 : 0 : }
# 194 : 0 : }
# 195 : :
# 196 : : bool TorControlConnection::Connect(const std::string &target, const ConnectionCB& _connected, const ConnectionCB& _disconnected)
# 197 : 0 : {
# 198 : 0 : if (b_conn)
# 199 : 0 : Disconnect();
# 200 : : // Parse target address:port
# 201 : 0 : struct sockaddr_storage connect_to_addr;
# 202 : 0 : int connect_to_addrlen = sizeof(connect_to_addr);
# 203 : 0 : if (evutil_parse_sockaddr_port(target.c_str(),
# 204 : 0 : (struct sockaddr*)&connect_to_addr, &connect_to_addrlen)<0) {
# 205 : 0 : LogPrintf("tor: Error parsing socket address %s\n", target);
# 206 : 0 : return false;
# 207 : 0 : }
# 208 : :
# 209 : : // Create a new socket, set up callbacks and enable notification bits
# 210 : 0 : b_conn = bufferevent_socket_new(base, -1, BEV_OPT_CLOSE_ON_FREE);
# 211 : 0 : if (!b_conn)
# 212 : 0 : return false;
# 213 : 0 : bufferevent_setcb(b_conn, TorControlConnection::readcb, nullptr, TorControlConnection::eventcb, this);
# 214 : 0 : bufferevent_enable(b_conn, EV_READ|EV_WRITE);
# 215 : 0 : this->connected = _connected;
# 216 : 0 : this->disconnected = _disconnected;
# 217 : :
# 218 : : // Finally, connect to target
# 219 : 0 : if (bufferevent_socket_connect(b_conn, (struct sockaddr*)&connect_to_addr, connect_to_addrlen) < 0) {
# 220 : 0 : LogPrintf("tor: Error connecting to address %s\n", target);
# 221 : 0 : return false;
# 222 : 0 : }
# 223 : 0 : return true;
# 224 : 0 : }
# 225 : :
# 226 : : void TorControlConnection::Disconnect()
# 227 : 0 : {
# 228 : 0 : if (b_conn)
# 229 : 0 : bufferevent_free(b_conn);
# 230 : 0 : b_conn = nullptr;
# 231 : 0 : }
# 232 : :
# 233 : : bool TorControlConnection::Command(const std::string &cmd, const ReplyHandlerCB& reply_handler)
# 234 : 0 : {
# 235 : 0 : if (!b_conn)
# 236 : 0 : return false;
# 237 : 0 : struct evbuffer *buf = bufferevent_get_output(b_conn);
# 238 : 0 : if (!buf)
# 239 : 0 : return false;
# 240 : 0 : evbuffer_add(buf, cmd.data(), cmd.size());
# 241 : 0 : evbuffer_add(buf, "\r\n", 2);
# 242 : 0 : reply_handlers.push_back(reply_handler);
# 243 : 0 : return true;
# 244 : 0 : }
# 245 : :
# 246 : : /****** General parsing utilities ********/
# 247 : :
# 248 : : /* Split reply line in the form 'AUTH METHODS=...' into a type
# 249 : : * 'AUTH' and arguments 'METHODS=...'.
# 250 : : * Grammar is implicitly defined in https://spec.torproject.org/control-spec by
# 251 : : * the server reply formats for PROTOCOLINFO (S3.21) and AUTHCHALLENGE (S3.24).
# 252 : : */
# 253 : : std::pair<std::string,std::string> SplitTorReplyLine(const std::string &s)
# 254 : 20 : {
# 255 : 20 : size_t ptr=0;
# 256 : 20 : std::string type;
# 257 : 164 : while (ptr < s.size() && s[ptr] != ' ') {
# 258 : 144 : type.push_back(s[ptr]);
# 259 : 144 : ++ptr;
# 260 : 144 : }
# 261 : 20 : if (ptr < s.size())
# 262 : 18 : ++ptr; // skip ' '
# 263 : 20 : return make_pair(type, s.substr(ptr));
# 264 : 20 : }
# 265 : :
# 266 : : /** Parse reply arguments in the form 'METHODS=COOKIE,SAFECOOKIE COOKIEFILE=".../control_auth_cookie"'.
# 267 : : * Returns a map of keys to values, or an empty map if there was an error.
# 268 : : * Grammar is implicitly defined in https://spec.torproject.org/control-spec by
# 269 : : * the server reply formats for PROTOCOLINFO (S3.21), AUTHCHALLENGE (S3.24),
# 270 : : * and ADD_ONION (S3.27). See also sections 2.1 and 2.3.
# 271 : : */
# 272 : : std::map<std::string,std::string> ParseTorReplyMapping(const std::string &s)
# 273 : 54 : {
# 274 : 54 : std::map<std::string,std::string> mapping;
# 275 : 54 : size_t ptr=0;
# 276 : 116 : while (ptr < s.size()) {
# 277 : 76 : std::string key, value;
# 278 : 492 : while (ptr < s.size() && s[ptr] != '=' && s[ptr] != ' ') {
# 279 : 416 : key.push_back(s[ptr]);
# 280 : 416 : ++ptr;
# 281 : 416 : }
# 282 : 76 : if (ptr == s.size()) // unexpected end of line
# 283 : 2 : return std::map<std::string,std::string>();
# 284 : 74 : if (s[ptr] == ' ') // The remaining string is an OptArguments
# 285 : 10 : break;
# 286 : 64 : ++ptr; // skip '='
# 287 : 64 : if (ptr < s.size() && s[ptr] == '"') { // Quoted string
# 288 : 36 : ++ptr; // skip opening '"'
# 289 : 36 : bool escape_next = false;
# 290 : 448 : while (ptr < s.size() && (escape_next || s[ptr] != '"')) {
# 291 : : // Repeated backslashes must be interpreted as pairs
# 292 : 412 : escape_next = (s[ptr] == '\\' && !escape_next);
# 293 : 412 : value.push_back(s[ptr]);
# 294 : 412 : ++ptr;
# 295 : 412 : }
# 296 : 36 : if (ptr == s.size()) // unexpected end of line
# 297 : 2 : return std::map<std::string,std::string>();
# 298 : 34 : ++ptr; // skip closing '"'
# 299 : : /**
# 300 : : * Unescape value. Per https://spec.torproject.org/control-spec section 2.1.1:
# 301 : : *
# 302 : : * For future-proofing, controller implementors MAY use the following
# 303 : : * rules to be compatible with buggy Tor implementations and with
# 304 : : * future ones that implement the spec as intended:
# 305 : : *
# 306 : : * Read \n \t \r and \0 ... \377 as C escapes.
# 307 : : * Treat a backslash followed by any other character as that character.
# 308 : : */
# 309 : 34 : std::string escaped_value;
# 310 : 366 : for (size_t i = 0; i < value.size(); ++i) {
# 311 : 332 : if (value[i] == '\\') {
# 312 : : // This will always be valid, because if the QuotedString
# 313 : : // ended in an odd number of backslashes, then the parser
# 314 : : // would already have returned above, due to a missing
# 315 : : // terminating double-quote.
# 316 : 46 : ++i;
# 317 : 46 : if (value[i] == 'n') {
# 318 : 2 : escaped_value.push_back('\n');
# 319 : 44 : } else if (value[i] == 't') {
# 320 : 2 : escaped_value.push_back('\t');
# 321 : 42 : } else if (value[i] == 'r') {
# 322 : 2 : escaped_value.push_back('\r');
# 323 : 40 : } else if ('0' <= value[i] && value[i] <= '7') {
# 324 : 22 : size_t j;
# 325 : : // Octal escape sequences have a limit of three octal digits,
# 326 : : // but terminate at the first character that is not a valid
# 327 : : // octal digit if encountered sooner.
# 328 : 42 : for (j = 1; j < 3 && (i+j) < value.size() && '0' <= value[i+j] && value[i+j] <= '7'; ++j) {}
# 329 : : // Tor restricts first digit to 0-3 for three-digit octals.
# 330 : : // A leading digit of 4-7 would therefore be interpreted as
# 331 : : // a two-digit octal.
# 332 : 22 : if (j == 3 && value[i] > '3') {
# 333 : 2 : j--;
# 334 : 2 : }
# 335 : 22 : escaped_value.push_back(strtol(value.substr(i, j).c_str(), nullptr, 8));
# 336 : : // Account for automatic incrementing at loop end
# 337 : 22 : i += j - 1;
# 338 : 18 : } else {
# 339 : 18 : escaped_value.push_back(value[i]);
# 340 : 18 : }
# 341 : 286 : } else {
# 342 : 286 : escaped_value.push_back(value[i]);
# 343 : 286 : }
# 344 : 332 : }
# 345 : 34 : value = escaped_value;
# 346 : 28 : } else { // Unquoted value. Note that values can contain '=' at will, just no spaces
# 347 : 264 : while (ptr < s.size() && s[ptr] != ' ') {
# 348 : 236 : value.push_back(s[ptr]);
# 349 : 236 : ++ptr;
# 350 : 236 : }
# 351 : 28 : }
# 352 : 62 : if (ptr < s.size() && s[ptr] == ' ')
# 353 : 22 : ++ptr; // skip ' ' after key=value
# 354 : 62 : mapping[key] = value;
# 355 : 62 : }
# 356 : 50 : return mapping;
# 357 : 54 : }
# 358 : :
# 359 : : /** Read full contents of a file and return them in a std::string.
# 360 : : * Returns a pair <status, string>.
# 361 : : * If an error occurred, status will be false, otherwise status will be true and the data will be returned in string.
# 362 : : *
# 363 : : * @param maxsize Puts a maximum size limit on the file that is read. If the file is larger than this, truncated data
# 364 : : * (with len > maxsize) will be returned.
# 365 : : */
# 366 : : static std::pair<bool,std::string> ReadBinaryFile(const fs::path &filename, size_t maxsize=std::numeric_limits<size_t>::max())
# 367 : 0 : {
# 368 : 0 : FILE *f = fsbridge::fopen(filename, "rb");
# 369 : 0 : if (f == nullptr)
# 370 : 0 : return std::make_pair(false,"");
# 371 : 0 : std::string retval;
# 372 : 0 : char buffer[128];
# 373 : 0 : size_t n;
# 374 : 0 : while ((n=fread(buffer, 1, sizeof(buffer), f)) > 0) {
# 375 : : // Check for reading errors so we don't return any data if we couldn't
# 376 : : // read the entire file (or up to maxsize)
# 377 : 0 : if (ferror(f)) {
# 378 : 0 : fclose(f);
# 379 : 0 : return std::make_pair(false,"");
# 380 : 0 : }
# 381 : 0 : retval.append(buffer, buffer+n);
# 382 : 0 : if (retval.size() > maxsize)
# 383 : 0 : break;
# 384 : 0 : }
# 385 : 0 : fclose(f);
# 386 : 0 : return std::make_pair(true,retval);
# 387 : 0 : }
# 388 : :
# 389 : : /** Write contents of std::string to a file.
# 390 : : * @return true on success.
# 391 : : */
# 392 : : static bool WriteBinaryFile(const fs::path &filename, const std::string &data)
# 393 : 0 : {
# 394 : 0 : FILE *f = fsbridge::fopen(filename, "wb");
# 395 : 0 : if (f == nullptr)
# 396 : 0 : return false;
# 397 : 0 : if (fwrite(data.data(), 1, data.size(), f) != data.size()) {
# 398 : 0 : fclose(f);
# 399 : 0 : return false;
# 400 : 0 : }
# 401 : 0 : fclose(f);
# 402 : 0 : return true;
# 403 : 0 : }
# 404 : :
# 405 : : /****** Bitcoin specific TorController implementation ********/
# 406 : :
# 407 : : /** Controller that connects to Tor control socket, authenticate, then create
# 408 : : * and maintain an ephemeral onion service.
# 409 : : */
# 410 : : class TorController
# 411 : : {
# 412 : : public:
# 413 : : TorController(struct event_base* base, const std::string& target);
# 414 : : ~TorController();
# 415 : :
# 416 : : /** Get name of file to store private key in */
# 417 : : fs::path GetPrivateKeyFile();
# 418 : :
# 419 : : /** Reconnect, after getting disconnected */
# 420 : : void Reconnect();
# 421 : : private:
# 422 : : struct event_base* base;
# 423 : : std::string target;
# 424 : : TorControlConnection conn;
# 425 : : std::string private_key;
# 426 : : std::string service_id;
# 427 : : bool reconnect;
# 428 : : struct event *reconnect_ev;
# 429 : : float reconnect_timeout;
# 430 : : CService service;
# 431 : : /** Cookie for SAFECOOKIE auth */
# 432 : : std::vector<uint8_t> cookie;
# 433 : : /** ClientNonce for SAFECOOKIE auth */
# 434 : : std::vector<uint8_t> clientNonce;
# 435 : :
# 436 : : /** Callback for ADD_ONION result */
# 437 : : void add_onion_cb(TorControlConnection& conn, const TorControlReply& reply);
# 438 : : /** Callback for AUTHENTICATE result */
# 439 : : void auth_cb(TorControlConnection& conn, const TorControlReply& reply);
# 440 : : /** Callback for AUTHCHALLENGE result */
# 441 : : void authchallenge_cb(TorControlConnection& conn, const TorControlReply& reply);
# 442 : : /** Callback for PROTOCOLINFO result */
# 443 : : void protocolinfo_cb(TorControlConnection& conn, const TorControlReply& reply);
# 444 : : /** Callback after successful connection */
# 445 : : void connected_cb(TorControlConnection& conn);
# 446 : : /** Callback after connection lost or failed connection attempt */
# 447 : : void disconnected_cb(TorControlConnection& conn);
# 448 : :
# 449 : : /** Callback for reconnect timer */
# 450 : : static void reconnect_cb(evutil_socket_t fd, short what, void *arg);
# 451 : : };
# 452 : :
# 453 : : TorController::TorController(struct event_base* _base, const std::string& _target):
# 454 : : base(_base),
# 455 : : target(_target), conn(base), reconnect(true), reconnect_ev(0),
# 456 : : reconnect_timeout(RECONNECT_TIMEOUT_START)
# 457 : 0 : {
# 458 : 0 : reconnect_ev = event_new(base, -1, 0, reconnect_cb, this);
# 459 : 0 : if (!reconnect_ev)
# 460 : 0 : LogPrintf("tor: Failed to create event for reconnection: out of memory?\n");
# 461 : : // Start connection attempts immediately
# 462 : 0 : if (!conn.Connect(_target, std::bind(&TorController::connected_cb, this, std::placeholders::_1),
# 463 : 0 : std::bind(&TorController::disconnected_cb, this, std::placeholders::_1) )) {
# 464 : 0 : LogPrintf("tor: Initiating connection to Tor control port %s failed\n", _target);
# 465 : 0 : }
# 466 : : // Read service private key if cached
# 467 : 0 : std::pair<bool,std::string> pkf = ReadBinaryFile(GetPrivateKeyFile());
# 468 : 0 : if (pkf.first) {
# 469 : 0 : LogPrint(BCLog::TOR, "tor: Reading cached private key from %s\n", GetPrivateKeyFile().string());
# 470 : 0 : private_key = pkf.second;
# 471 : 0 : }
# 472 : 0 : }
# 473 : :
# 474 : : TorController::~TorController()
# 475 : 0 : {
# 476 : 0 : if (reconnect_ev) {
# 477 : 0 : event_free(reconnect_ev);
# 478 : 0 : reconnect_ev = nullptr;
# 479 : 0 : }
# 480 : 0 : if (service.IsValid()) {
# 481 : 0 : RemoveLocal(service);
# 482 : 0 : }
# 483 : 0 : }
# 484 : :
# 485 : : void TorController::add_onion_cb(TorControlConnection& _conn, const TorControlReply& reply)
# 486 : 0 : {
# 487 : 0 : if (reply.code == 250) {
# 488 : 0 : LogPrint(BCLog::TOR, "tor: ADD_ONION successful\n");
# 489 : 0 : for (const std::string &s : reply.lines) {
# 490 : 0 : std::map<std::string,std::string> m = ParseTorReplyMapping(s);
# 491 : 0 : std::map<std::string,std::string>::iterator i;
# 492 : 0 : if ((i = m.find("ServiceID")) != m.end())
# 493 : 0 : service_id = i->second;
# 494 : 0 : if ((i = m.find("PrivateKey")) != m.end())
# 495 : 0 : private_key = i->second;
# 496 : 0 : }
# 497 : 0 : if (service_id.empty()) {
# 498 : 0 : LogPrintf("tor: Error parsing ADD_ONION parameters:\n");
# 499 : 0 : for (const std::string &s : reply.lines) {
# 500 : 0 : LogPrintf(" %s\n", SanitizeString(s));
# 501 : 0 : }
# 502 : 0 : return;
# 503 : 0 : }
# 504 : 0 : service = LookupNumeric(std::string(service_id+".onion"), Params().GetDefaultPort());
# 505 : 0 : LogPrintf("tor: Got service ID %s, advertising service %s\n", service_id, service.ToString());
# 506 : 0 : if (WriteBinaryFile(GetPrivateKeyFile(), private_key)) {
# 507 : 0 : LogPrint(BCLog::TOR, "tor: Cached service private key to %s\n", GetPrivateKeyFile().string());
# 508 : 0 : } else {
# 509 : 0 : LogPrintf("tor: Error writing service private key to %s\n", GetPrivateKeyFile().string());
# 510 : 0 : }
# 511 : 0 : AddLocal(service, LOCAL_MANUAL);
# 512 : : // ... onion requested - keep connection open
# 513 : 0 : } else if (reply.code == 510) { // 510 Unrecognized command
# 514 : 0 : LogPrintf("tor: Add onion failed with unrecognized command (You probably need to upgrade Tor)\n");
# 515 : 0 : } else {
# 516 : 0 : LogPrintf("tor: Add onion failed; error code %d\n", reply.code);
# 517 : 0 : }
# 518 : 0 : }
# 519 : :
# 520 : : void TorController::auth_cb(TorControlConnection& _conn, const TorControlReply& reply)
# 521 : 0 : {
# 522 : 0 : if (reply.code == 250) {
# 523 : 0 : LogPrint(BCLog::TOR, "tor: Authentication successful\n");
# 524 : :
# 525 : : // Now that we know Tor is running setup the proxy for onion addresses
# 526 : : // if -onion isn't set to something else.
# 527 : 0 : if (gArgs.GetArg("-onion", "") == "") {
# 528 : 0 : CService resolved(LookupNumeric("127.0.0.1", 9050));
# 529 : 0 : proxyType addrOnion = proxyType(resolved, true);
# 530 : 0 : SetProxy(NET_ONION, addrOnion);
# 531 : 0 : SetReachable(NET_ONION, true);
# 532 : 0 : }
# 533 : :
# 534 : : // Finally - now create the service
# 535 : 0 : if (private_key.empty()) { // No private key, generate one
# 536 : 0 : private_key = "NEW:ED25519-V3"; // Explicitly request key type - see issue #9214
# 537 : 0 : }
# 538 : : // Request onion service, redirect port.
# 539 : : // Note that the 'virtual' port is always the default port to avoid decloaking nodes using other ports.
# 540 : 0 : _conn.Command(strprintf("ADD_ONION %s Port=%i,127.0.0.1:%i", private_key, Params().GetDefaultPort(), GetListenPort()),
# 541 : 0 : std::bind(&TorController::add_onion_cb, this, std::placeholders::_1, std::placeholders::_2));
# 542 : 0 : } else {
# 543 : 0 : LogPrintf("tor: Authentication failed\n");
# 544 : 0 : }
# 545 : 0 : }
# 546 : :
# 547 : : /** Compute Tor SAFECOOKIE response.
# 548 : : *
# 549 : : * ServerHash is computed as:
# 550 : : * HMAC-SHA256("Tor safe cookie authentication server-to-controller hash",
# 551 : : * CookieString | ClientNonce | ServerNonce)
# 552 : : * (with the HMAC key as its first argument)
# 553 : : *
# 554 : : * After a controller sends a successful AUTHCHALLENGE command, the
# 555 : : * next command sent on the connection must be an AUTHENTICATE command,
# 556 : : * and the only authentication string which that AUTHENTICATE command
# 557 : : * will accept is:
# 558 : : *
# 559 : : * HMAC-SHA256("Tor safe cookie authentication controller-to-server hash",
# 560 : : * CookieString | ClientNonce | ServerNonce)
# 561 : : *
# 562 : : */
# 563 : : static std::vector<uint8_t> ComputeResponse(const std::string &key, const std::vector<uint8_t> &cookie, const std::vector<uint8_t> &clientNonce, const std::vector<uint8_t> &serverNonce)
# 564 : 0 : {
# 565 : 0 : CHMAC_SHA256 computeHash((const uint8_t*)key.data(), key.size());
# 566 : 0 : std::vector<uint8_t> computedHash(CHMAC_SHA256::OUTPUT_SIZE, 0);
# 567 : 0 : computeHash.Write(cookie.data(), cookie.size());
# 568 : 0 : computeHash.Write(clientNonce.data(), clientNonce.size());
# 569 : 0 : computeHash.Write(serverNonce.data(), serverNonce.size());
# 570 : 0 : computeHash.Finalize(computedHash.data());
# 571 : 0 : return computedHash;
# 572 : 0 : }
# 573 : :
# 574 : : void TorController::authchallenge_cb(TorControlConnection& _conn, const TorControlReply& reply)
# 575 : 0 : {
# 576 : 0 : if (reply.code == 250) {
# 577 : 0 : LogPrint(BCLog::TOR, "tor: SAFECOOKIE authentication challenge successful\n");
# 578 : 0 : std::pair<std::string,std::string> l = SplitTorReplyLine(reply.lines[0]);
# 579 : 0 : if (l.first == "AUTHCHALLENGE") {
# 580 : 0 : std::map<std::string,std::string> m = ParseTorReplyMapping(l.second);
# 581 : 0 : if (m.empty()) {
# 582 : 0 : LogPrintf("tor: Error parsing AUTHCHALLENGE parameters: %s\n", SanitizeString(l.second));
# 583 : 0 : return;
# 584 : 0 : }
# 585 : 0 : std::vector<uint8_t> serverHash = ParseHex(m["SERVERHASH"]);
# 586 : 0 : std::vector<uint8_t> serverNonce = ParseHex(m["SERVERNONCE"]);
# 587 : 0 : LogPrint(BCLog::TOR, "tor: AUTHCHALLENGE ServerHash %s ServerNonce %s\n", HexStr(serverHash), HexStr(serverNonce));
# 588 : 0 : if (serverNonce.size() != 32) {
# 589 : 0 : LogPrintf("tor: ServerNonce is not 32 bytes, as required by spec\n");
# 590 : 0 : return;
# 591 : 0 : }
# 592 : :
# 593 : 0 : std::vector<uint8_t> computedServerHash = ComputeResponse(TOR_SAFE_SERVERKEY, cookie, clientNonce, serverNonce);
# 594 : 0 : if (computedServerHash != serverHash) {
# 595 : 0 : LogPrintf("tor: ServerHash %s does not match expected ServerHash %s\n", HexStr(serverHash), HexStr(computedServerHash));
# 596 : 0 : return;
# 597 : 0 : }
# 598 : :
# 599 : 0 : std::vector<uint8_t> computedClientHash = ComputeResponse(TOR_SAFE_CLIENTKEY, cookie, clientNonce, serverNonce);
# 600 : 0 : _conn.Command("AUTHENTICATE " + HexStr(computedClientHash), std::bind(&TorController::auth_cb, this, std::placeholders::_1, std::placeholders::_2));
# 601 : 0 : } else {
# 602 : 0 : LogPrintf("tor: Invalid reply to AUTHCHALLENGE\n");
# 603 : 0 : }
# 604 : 0 : } else {
# 605 : 0 : LogPrintf("tor: SAFECOOKIE authentication challenge failed\n");
# 606 : 0 : }
# 607 : 0 : }
# 608 : :
# 609 : : void TorController::protocolinfo_cb(TorControlConnection& _conn, const TorControlReply& reply)
# 610 : 0 : {
# 611 : 0 : if (reply.code == 250) {
# 612 : 0 : std::set<std::string> methods;
# 613 : 0 : std::string cookiefile;
# 614 : : /*
# 615 : : * 250-AUTH METHODS=COOKIE,SAFECOOKIE COOKIEFILE="/home/x/.tor/control_auth_cookie"
# 616 : : * 250-AUTH METHODS=NULL
# 617 : : * 250-AUTH METHODS=HASHEDPASSWORD
# 618 : : */
# 619 : 0 : for (const std::string &s : reply.lines) {
# 620 : 0 : std::pair<std::string,std::string> l = SplitTorReplyLine(s);
# 621 : 0 : if (l.first == "AUTH") {
# 622 : 0 : std::map<std::string,std::string> m = ParseTorReplyMapping(l.second);
# 623 : 0 : std::map<std::string,std::string>::iterator i;
# 624 : 0 : if ((i = m.find("METHODS")) != m.end())
# 625 : 0 : boost::split(methods, i->second, boost::is_any_of(","));
# 626 : 0 : if ((i = m.find("COOKIEFILE")) != m.end())
# 627 : 0 : cookiefile = i->second;
# 628 : 0 : } else if (l.first == "VERSION") {
# 629 : 0 : std::map<std::string,std::string> m = ParseTorReplyMapping(l.second);
# 630 : 0 : std::map<std::string,std::string>::iterator i;
# 631 : 0 : if ((i = m.find("Tor")) != m.end()) {
# 632 : 0 : LogPrint(BCLog::TOR, "tor: Connected to Tor version %s\n", i->second);
# 633 : 0 : }
# 634 : 0 : }
# 635 : 0 : }
# 636 : 0 : for (const std::string &s : methods) {
# 637 : 0 : LogPrint(BCLog::TOR, "tor: Supported authentication method: %s\n", s);
# 638 : 0 : }
# 639 : : // Prefer NULL, otherwise SAFECOOKIE. If a password is provided, use HASHEDPASSWORD
# 640 : : /* Authentication:
# 641 : : * cookie: hex-encoded ~/.tor/control_auth_cookie
# 642 : : * password: "password"
# 643 : : */
# 644 : 0 : std::string torpassword = gArgs.GetArg("-torpassword", "");
# 645 : 0 : if (!torpassword.empty()) {
# 646 : 0 : if (methods.count("HASHEDPASSWORD")) {
# 647 : 0 : LogPrint(BCLog::TOR, "tor: Using HASHEDPASSWORD authentication\n");
# 648 : 0 : boost::replace_all(torpassword, "\"", "\\\"");
# 649 : 0 : _conn.Command("AUTHENTICATE \"" + torpassword + "\"", std::bind(&TorController::auth_cb, this, std::placeholders::_1, std::placeholders::_2));
# 650 : 0 : } else {
# 651 : 0 : LogPrintf("tor: Password provided with -torpassword, but HASHEDPASSWORD authentication is not available\n");
# 652 : 0 : }
# 653 : 0 : } else if (methods.count("NULL")) {
# 654 : 0 : LogPrint(BCLog::TOR, "tor: Using NULL authentication\n");
# 655 : 0 : _conn.Command("AUTHENTICATE", std::bind(&TorController::auth_cb, this, std::placeholders::_1, std::placeholders::_2));
# 656 : 0 : } else if (methods.count("SAFECOOKIE")) {
# 657 : : // Cookie: hexdump -e '32/1 "%02x""\n"' ~/.tor/control_auth_cookie
# 658 : 0 : LogPrint(BCLog::TOR, "tor: Using SAFECOOKIE authentication, reading cookie authentication from %s\n", cookiefile);
# 659 : 0 : std::pair<bool,std::string> status_cookie = ReadBinaryFile(cookiefile, TOR_COOKIE_SIZE);
# 660 : 0 : if (status_cookie.first && status_cookie.second.size() == TOR_COOKIE_SIZE) {
# 661 : : // _conn.Command("AUTHENTICATE " + HexStr(status_cookie.second), std::bind(&TorController::auth_cb, this, std::placeholders::_1, std::placeholders::_2));
# 662 : 0 : cookie = std::vector<uint8_t>(status_cookie.second.begin(), status_cookie.second.end());
# 663 : 0 : clientNonce = std::vector<uint8_t>(TOR_NONCE_SIZE, 0);
# 664 : 0 : GetRandBytes(clientNonce.data(), TOR_NONCE_SIZE);
# 665 : 0 : _conn.Command("AUTHCHALLENGE SAFECOOKIE " + HexStr(clientNonce), std::bind(&TorController::authchallenge_cb, this, std::placeholders::_1, std::placeholders::_2));
# 666 : 0 : } else {
# 667 : 0 : if (status_cookie.first) {
# 668 : 0 : LogPrintf("tor: Authentication cookie %s is not exactly %i bytes, as is required by the spec\n", cookiefile, TOR_COOKIE_SIZE);
# 669 : 0 : } else {
# 670 : 0 : LogPrintf("tor: Authentication cookie %s could not be opened (check permissions)\n", cookiefile);
# 671 : 0 : }
# 672 : 0 : }
# 673 : 0 : } else if (methods.count("HASHEDPASSWORD")) {
# 674 : 0 : LogPrintf("tor: The only supported authentication mechanism left is password, but no password provided with -torpassword\n");
# 675 : 0 : } else {
# 676 : 0 : LogPrintf("tor: No supported authentication method\n");
# 677 : 0 : }
# 678 : 0 : } else {
# 679 : 0 : LogPrintf("tor: Requesting protocol info failed\n");
# 680 : 0 : }
# 681 : 0 : }
# 682 : :
# 683 : : void TorController::connected_cb(TorControlConnection& _conn)
# 684 : 0 : {
# 685 : 0 : reconnect_timeout = RECONNECT_TIMEOUT_START;
# 686 : : // First send a PROTOCOLINFO command to figure out what authentication is expected
# 687 : 0 : if (!_conn.Command("PROTOCOLINFO 1", std::bind(&TorController::protocolinfo_cb, this, std::placeholders::_1, std::placeholders::_2)))
# 688 : 0 : LogPrintf("tor: Error sending initial protocolinfo command\n");
# 689 : 0 : }
# 690 : :
# 691 : : void TorController::disconnected_cb(TorControlConnection& _conn)
# 692 : 0 : {
# 693 : : // Stop advertising service when disconnected
# 694 : 0 : if (service.IsValid())
# 695 : 0 : RemoveLocal(service);
# 696 : 0 : service = CService();
# 697 : 0 : if (!reconnect)
# 698 : 0 : return;
# 699 : :
# 700 : 0 : LogPrint(BCLog::TOR, "tor: Not connected to Tor control port %s, trying to reconnect\n", target);
# 701 : :
# 702 : : // Single-shot timer for reconnect. Use exponential backoff.
# 703 : 0 : struct timeval time = MillisToTimeval(int64_t(reconnect_timeout * 1000.0));
# 704 : 0 : if (reconnect_ev)
# 705 : 0 : event_add(reconnect_ev, &time);
# 706 : 0 : reconnect_timeout *= RECONNECT_TIMEOUT_EXP;
# 707 : 0 : }
# 708 : :
# 709 : : void TorController::Reconnect()
# 710 : 0 : {
# 711 : : /* Try to reconnect and reestablish if we get booted - for example, Tor
# 712 : : * may be restarting.
# 713 : : */
# 714 : 0 : if (!conn.Connect(target, std::bind(&TorController::connected_cb, this, std::placeholders::_1),
# 715 : 0 : std::bind(&TorController::disconnected_cb, this, std::placeholders::_1) )) {
# 716 : 0 : LogPrintf("tor: Re-initiating connection to Tor control port %s failed\n", target);
# 717 : 0 : }
# 718 : 0 : }
# 719 : :
# 720 : : fs::path TorController::GetPrivateKeyFile()
# 721 : 0 : {
# 722 : 0 : return GetDataDir() / "onion_v3_private_key";
# 723 : 0 : }
# 724 : :
# 725 : : void TorController::reconnect_cb(evutil_socket_t fd, short what, void *arg)
# 726 : 0 : {
# 727 : 0 : TorController *self = static_cast<TorController*>(arg);
# 728 : 0 : self->Reconnect();
# 729 : 0 : }
# 730 : :
# 731 : : /****** Thread ********/
# 732 : : static struct event_base *gBase;
# 733 : : static std::thread torControlThread;
# 734 : :
# 735 : : static void TorControlThread()
# 736 : 0 : {
# 737 : 0 : TorController ctrl(gBase, gArgs.GetArg("-torcontrol", DEFAULT_TOR_CONTROL));
# 738 : :
# 739 : 0 : event_base_dispatch(gBase);
# 740 : 0 : }
# 741 : :
# 742 : : void StartTorControl()
# 743 : 0 : {
# 744 : 0 : assert(!gBase);
# 745 : : #ifdef WIN32
# 746 : : evthread_use_windows_threads();
# 747 : : #else
# 748 : 0 : evthread_use_pthreads();
# 749 : 0 : #endif
# 750 : 0 : gBase = event_base_new();
# 751 : 0 : if (!gBase) {
# 752 : 0 : LogPrintf("tor: Unable to create event_base\n");
# 753 : 0 : return;
# 754 : 0 : }
# 755 : :
# 756 : 0 : torControlThread = std::thread(std::bind(&TraceThread<void (*)()>, "torcontrol", &TorControlThread));
# 757 : 0 : }
# 758 : :
# 759 : : void InterruptTorControl()
# 760 : 533 : {
# 761 : 533 : if (gBase) {
# 762 : 0 : LogPrintf("tor: Thread interrupt\n");
# 763 : 0 : event_base_once(gBase, -1, EV_TIMEOUT, [](evutil_socket_t, short, void*) {
# 764 : 0 : event_base_loopbreak(gBase);
# 765 : 0 : }, nullptr, nullptr);
# 766 : 0 : }
# 767 : 533 : }
# 768 : :
# 769 : : void StopTorControl()
# 770 : 533 : {
# 771 : 533 : if (gBase) {
# 772 : 0 : torControlThread.join();
# 773 : 0 : event_base_free(gBase);
# 774 : 0 : gBase = nullptr;
# 775 : 0 : }
# 776 : 533 : }
|