Bitcoin ABC  0.29.2
P2P Digital Currency
Public Member Functions | Private Member Functions | Static Private Member Functions | Private Attributes | List of all members
TorController Class Reference

Controller that connects to Tor control socket, authenticate, then create and maintain an ephemeral onion service. More...

Collaboration diagram for TorController:
[legend]

Public Member Functions

 TorController (struct event_base *base, const std::string &tor_control_center, const CService &target)
 
 ~TorController ()
 
fs::path GetPrivateKeyFile ()
 Get name fo file to store private key in. More...
 
void Reconnect ()
 Reconnect, after getting disconnected. More...
 

Private Member Functions

void add_onion_cb (TorControlConnection &conn, const TorControlReply &reply)
 Callback for ADD_ONION result. More...
 
void auth_cb (TorControlConnection &conn, const TorControlReply &reply)
 Callback for AUTHENTICATE result. More...
 
void authchallenge_cb (TorControlConnection &conn, const TorControlReply &reply)
 Callback for AUTHCHALLENGE result. More...
 
void protocolinfo_cb (TorControlConnection &conn, const TorControlReply &reply)
 Callback for PROTOCOLINFO result. More...
 
void connected_cb (TorControlConnection &conn)
 Callback after successful connection. More...
 
void disconnected_cb (TorControlConnection &conn)
 Callback after connection lost or failed connection attempt. More...
 

Static Private Member Functions

static void reconnect_cb (evutil_socket_t fd, short what, void *arg)
 Callback for reconnect timer. More...
 

Private Attributes

struct event_base * base
 
const std::string m_tor_control_center
 
TorControlConnection conn
 
std::string private_key
 
std::string service_id
 
bool reconnect
 
struct event * reconnect_ev
 
float reconnect_timeout
 
CService service
 
const CService m_target
 
std::vector< uint8_t > cookie
 Cookie for SAFECOOKIE auth. More...
 
std::vector< uint8_t > clientNonce
 ClientNonce for SAFECOOKIE auth. More...
 

Detailed Description

Controller that connects to Tor control socket, authenticate, then create and maintain an ephemeral onion service.

Definition at line 415 of file torcontrol.cpp.

Constructor & Destructor Documentation

◆ TorController()

TorController::TorController ( struct event_base *  base,
const std::string &  tor_control_center,
const CService target 
)

Definition at line 463 of file torcontrol.cpp.

Here is the call graph for this function:

◆ ~TorController()

TorController::~TorController ( )

Definition at line 492 of file torcontrol.cpp.

Here is the call graph for this function:

Member Function Documentation

◆ add_onion_cb()

void TorController::add_onion_cb ( TorControlConnection conn,
const TorControlReply reply 
)
private

Callback for ADD_ONION result.

Definition at line 502 of file torcontrol.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ auth_cb()

void TorController::auth_cb ( TorControlConnection conn,
const TorControlReply reply 
)
private

Callback for AUTHENTICATE result.

Definition at line 544 of file torcontrol.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ authchallenge_cb()

void TorController::authchallenge_cb ( TorControlConnection conn,
const TorControlReply reply 
)
private

Callback for AUTHCHALLENGE result.

Definition at line 607 of file torcontrol.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ connected_cb()

void TorController::connected_cb ( TorControlConnection conn)
private

Callback after successful connection.

Definition at line 764 of file torcontrol.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ disconnected_cb()

void TorController::disconnected_cb ( TorControlConnection conn)
private

Callback after connection lost or failed connection attempt.

Definition at line 776 of file torcontrol.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ GetPrivateKeyFile()

fs::path TorController::GetPrivateKeyFile ( )

Get name fo file to store private key in.

Definition at line 813 of file torcontrol.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ protocolinfo_cb()

void TorController::protocolinfo_cb ( TorControlConnection conn,
const TorControlReply reply 
)
private

Callback for PROTOCOLINFO result.

Definition at line 656 of file torcontrol.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ Reconnect()

void TorController::Reconnect ( )

Reconnect, after getting disconnected.

Definition at line 798 of file torcontrol.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ reconnect_cb()

void TorController::reconnect_cb ( evutil_socket_t  fd,
short  what,
void *  arg 
)
staticprivate

Callback for reconnect timer.

Definition at line 817 of file torcontrol.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

Member Data Documentation

◆ base

struct event_base* TorController::base
private

Definition at line 429 of file torcontrol.cpp.

◆ clientNonce

std::vector<uint8_t> TorController::clientNonce
private

ClientNonce for SAFECOOKIE auth.

Definition at line 442 of file torcontrol.cpp.

◆ conn

TorControlConnection TorController::conn
private

Definition at line 431 of file torcontrol.cpp.

◆ cookie

std::vector<uint8_t> TorController::cookie
private

Cookie for SAFECOOKIE auth.

Definition at line 440 of file torcontrol.cpp.

◆ m_target

const CService TorController::m_target
private

Definition at line 438 of file torcontrol.cpp.

◆ m_tor_control_center

const std::string TorController::m_tor_control_center
private

Definition at line 430 of file torcontrol.cpp.

◆ private_key

std::string TorController::private_key
private

Definition at line 432 of file torcontrol.cpp.

◆ reconnect

bool TorController::reconnect
private

Definition at line 434 of file torcontrol.cpp.

◆ reconnect_ev

struct event* TorController::reconnect_ev
private

Definition at line 435 of file torcontrol.cpp.

◆ reconnect_timeout

float TorController::reconnect_timeout
private

Definition at line 436 of file torcontrol.cpp.

◆ service

CService TorController::service
private

Definition at line 437 of file torcontrol.cpp.

◆ service_id

std::string TorController::service_id
private

Definition at line 433 of file torcontrol.cpp.


The documentation for this class was generated from the following file: