Client hull. More...
#include "ClientHull.hpp"


Public Member Functions | |
| ClientHull (int argc, char *argv[]) | |
| Constructor. More... | |
| virtual | ~ClientHull (void) |
| Destructor. More... | |
| virtual void | run_second_stage (void) |
| Run EPS. More... | |
| virtual void | async_find_and_connect_to_server (void) |
| Find the server and start one or more new TCP beams. More... | |
| virtual void | connection_failed (const EPS::TConnPtr &connection) |
| Callback when a connection has failed and needs to be cleaned up. More... | |
| virtual void | processComm (const EPS::TConnPtr &connection, EPS::NetBuffer *nb, const EPS::CommHeader1 *header, const EPS::ECommType type) |
| Called when a communication command is received. More... | |
| std::string | clean_hosts_file (std::string hosts="") |
| Remove all of our entries from the hosts file. More... | |
| void | update_hosts_file (void) |
| Add or remove the necessary entries into the hosts file. More... | |
| void | async_read_tun_tap (void) |
| Asynchronous read from the TUN/TAP interface. More... | |
| void | process_tun_tap_packet (EPS::NetBuffer *nb) |
| Called once a packet has been read from the TUN/TAP interface. More... | |
| void | stop_asio (void) |
| Attempt to cleanly shutdown/close all ASIO activity. More... | |
| void | start_signal_handling (void) |
| Start/initialize the signal handling for the hull. More... | |
| void | get_uuid (void) |
| Get the UUID from the configuration file, or generate a new one if necessary. More... | |
| void | save_uuid (void) |
| Save the UUID into the configuration file. More... | |
| void | write_blank_configuration_file (void) |
| Create a new blank configuration file template with helpful comments. More... | |
| void | read_configuration_file (void) |
| Read, parse, and store the configuration file. More... | |
| void | parse_options (void) |
| Parse command-line options. More... | |
| void | run_first_stage (void) |
| Called by main() to setup exception handling and calls run_second_stage(). More... | |
| void | setup_encryption_and_decryption (void) |
| Initialize what we need for OpenSSL encryption/decryption. More... | |
| void | readComm (const EPS::TConnPtr &connection) |
| Read (async) a communication command from the peer and act on it. More... | |
| virtual void | processComm (const EPS::TConnPtr &connection, EPS::NetBuffer *nb) |
| Process a communication command that has already been read by readComm(). More... | |
| void | start_connect_timer (void) |
| See if we have peers to which we want to connect. More... | |
| void | send_stats (void) |
| Send the latest statistics to the server. More... | |
| void | start_stats_timer (void) |
| Start an asynchronous wait on the stats timer. More... | |
| void | setup_listener (void) |
| Setup socket listener. More... | |
| void | start_async_accept (void) |
| Make the necessary calls to asynchronously accept a new TCP beam. More... | |
| virtual void | connection_failed (EPS::TCPConnection *connection) |
| Callback when a connection has failed and needs to be cleaned up. More... | |
| void | validate_new_connection (const EPS::TConnPtr &connection) |
| Exchange information and validate connection to peer. More... | |
| void | validate_new_connection (EPS::TCPConnection *connection) |
| Exchange information and validate connection to peer. More... | |
| void | async_write (const EPS::TConnPtr &connection, EPS::NetBuffer *nb) |
| Asynchronous write of the buffer. More... | |
| void | async_write (const EPS::TConnPtr &connection) |
| Exchange information and validate connection to peer. More... | |
Static Public Member Functions | |
| static Hull & | get (void) |
| Returns the single instance of Hull, which is at time necessary since the asio service_io is part of the hull. More... | |
Public Attributes | |
| std::string | device_name |
| TUN/TAP device name (such as "eps0") More... | |
| FILE_HANDLE_DESCRIPTOR | device_fd |
| raw file handle or descriptor for TUN/TAP device More... | |
| ASIO_STREAM | tun_tap_stream |
| TUN/TAP stream handle for ASIO read/write. More... | |
| const EPS::EMode | mode |
| client or server mode More... | |
| const std::string | mode_string |
| client or server mode string More... | |
| bool | done |
EPS will exit when this is set to TRUE More... | |
| int | signal_number |
| set by the signal handler for logging purposes if a fatal signal is raised More... | |
| int | ac |
| argc More... | |
| char ** | av |
| argv More... | |
| const std::chrono::seconds | seconds_between_retries |
| EC | ec |
| boost error code More... | |
| EPS::StrMap | configuration |
| the content of the configuration file More... | |
| UUID | uuid |
| uuid for this EPS instance More... | |
| boost::asio::io_service | io_service |
| boost::asio's link to the operating system's I/O services More... | |
| boost::asio::signal_set | signal_set |
| register (through asio) for signal handling More... | |
| boost::asio::ip::tcp::resolver | tcp_resolver |
| tcp resolver for async name resolution More... | |
| boost::asio::ip::tcp::acceptor | acceptor |
| accept incoming client connections More... | |
| EPS::IPv4 | address |
| EPS address, e.g. 192.168.43.12. More... | |
| EPS::IPv4 | network |
| EPS network, e.g. 192.168.43.0. More... | |
| EPS::IPv4 | netmask |
| EPS netmask, e.g. 255.255.255.0. More... | |
| EPS::Tracker | tracker |
| keep track of all clients, uuids, and ip addresses More... | |
| EPS::IPv4Set | local_addresses |
| set of all interesting local addresses More... | |
| boost::asio::system_timer | connect_timer |
| see if we have new connections to establish to create the mesh More... | |
| boost::asio::system_timer | stats_timer |
| statistics timer which is triggered every 60 seconds More... | |
| EPS::Stats | stats |
| statistics are updated every minute when stats_timer expires More... | |
| IPv4Vec | ipv4_pool |
| pool of available addresses to give to clients More... | |
| EPS::UUIDSet | pending_uuids |
| set of UUIDs to which we'd like to connect More... | |
| EPS::TCPConns | server_conns |
| server connections More... | |
| time_t | start_time |
| when EPS was started More... | |
| boost::asio::system_timer | upnp_renew_timer |
| UPnP information. More... | |
| EPS::IPv4 | upnp_lan_address |
| LAN ip address according to UPnP. More... | |
| EPS::IPv4 | upnp_wan_address |
| WAN ip address according to UPnP. More... | |
| uint16_t | upnp_wan_port |
| port opened up on WAN side of UPnP device More... | |
| UPNPDev * | upnp_dev |
| structure used by libminiupnpc More... | |
| UPNPUrls | upnp_urls |
| structure used by libminiupnpc More... | |
| IGDdatas | upnp_data |
| structure used by libminiupnpc More... | |
Static Public Attributes | |
| static std::string | addr = "" |
| Configuration item read from CLI or eps.conf file. More... | |
| static uint16_t | port = 0 |
| TCP/UDP port to which we'll connect. More... | |
| static std::string | network_str = "" |
| network (with optional mask) to create for the EPS conduit network More... | |
| static std::string | scorecard = "" |
| filename of the scorecard where stats are written More... | |
| static bool | sequential = false |
| should IP addresses be assigned in a sequential manner to new clients More... | |
| static std::string | conf_filename = "/etc/eps.conf" |
| name of the configuration file More... | |
| static std::string | log_filename = "" |
| name of the file to which log entries will be written More... | |
| static std::string | gv_filename = "" |
| name of the graphviz network diagram file More... | |
| static bool | upnp_enabled = false |
| whether UPnP is enabled/disabled More... | |
| static int | upnp_timeout = 1000 |
| number of seconds to wait for UPnP (or -1 to disable) More... | |
Client hull.
| EPS::ClientHull::ClientHull | ( | int | argc, |
| char * | argv[] | ||
| ) |
Constructor.
|
virtual |
Destructor.

|
virtual |
Find the server and start one or more new TCP beams.


| void EPS::ClientHull::async_read_tun_tap | ( | void | ) |
Asynchronous read from the TUN/TAP interface.


|
inherited |
|
inherited |
Exchange information and validate connection to peer.

| std::string EPS::ClientHull::clean_hosts_file | ( | std::string | hosts = "" | ) |
Remove all of our entries from the hosts file.


|
virtual |
Callback when a connection has failed and needs to be cleaned up.
Implements EPS::Hull.


|
virtualinherited |
Callback when a connection has failed and needs to be cleaned up.

|
staticinherited |
Returns the single instance of Hull, which is at time necessary since the asio service_io is part of the hull.

|
inherited |
Get the UUID from the configuration file, or generate a new one if necessary.


|
inherited |
Parse command-line options.
For historical reasons, not all of the configuration settings are read/parsed using boost::program_options. For example, see the UUID values as well as cipher_iv and cipher_key in EPS::Hull::read_configuration_file().


| void EPS::ClientHull::process_tun_tap_packet | ( | EPS::NetBuffer * | nb | ) |
Called once a packet has been read from the TUN/TAP interface.
Called once a packet/frame has been copied into the specified NetBuffer.
Note that if IFF_NO_PI is specified when the TAP interface is created (which is what EPS does since v0.0.1-549) then the flags and proto bytes aren't included, and the read starts directly at the ethernet frame:


|
virtual |
Called when a communication command is received.
Implements EPS::Hull.

|
virtualinherited |
Process a communication command that has already been read by readComm().


|
inherited |
Read, parse, and store the configuration file.


|
inherited |
Read (async) a communication command from the peer and act on it.


|
inherited |
Called by main() to setup exception handling and calls run_second_stage().


|
virtual |
|
inherited |
Save the UUID into the configuration file.

|
inherited |
Send the latest statistics to the server.


|
inherited |
Initialize what we need for OpenSSL encryption/decryption.


|
inherited |
Setup socket listener.


|
inherited |
Make the necessary calls to asynchronously accept a new TCP beam.


|
inherited |
See if we have peers to which we want to connect.


|
inherited |
Start/initialize the signal handling for the hull.

|
inherited |
Start an asynchronous wait on the stats timer.


|
inherited |
Attempt to cleanly shutdown/close all ASIO activity.


| void EPS::ClientHull::update_hosts_file | ( | void | ) |
Add or remove the necessary entries into the hosts file.


|
inherited |
Exchange information and validate connection to peer.


|
inherited |
Exchange information and validate connection to peer.

|
inherited |
Create a new blank configuration file template with helpful comments.


|
inherited |
argc
|
inherited |
accept incoming client connections
|
staticinherited |
Configuration item read from CLI or eps.conf file.
name or ip address to which the client will connect
|
inherited |
argv
|
staticinherited |
name of the configuration file
|
inherited |
the content of the configuration file
|
inherited |
see if we have new connections to establish to create the mesh
| FILE_HANDLE_DESCRIPTOR EPS::ClientHull::device_fd |
raw file handle or descriptor for TUN/TAP device
| std::string EPS::ClientHull::device_name |
TUN/TAP device name (such as "eps0")
|
inherited |
EPS will exit when this is set to TRUE
|
inherited |
boost error code
|
staticinherited |
name of the graphviz network diagram file
|
inherited |
boost::asio's link to the operating system's I/O services
|
inherited |
pool of available addresses to give to clients
|
inherited |
set of all interesting local addresses
|
staticinherited |
name of the file to which log entries will be written
|
inherited |
client or server mode
|
inherited |
client or server mode string
|
staticinherited |
network (with optional mask) to create for the EPS conduit network
|
inherited |
set of UUIDs to which we'd like to connect
|
staticinherited |
TCP/UDP port to which we'll connect.
|
staticinherited |
filename of the scorecard where stats are written
|
inherited |
|
staticinherited |
should IP addresses be assigned in a sequential manner to new clients
|
inherited |
server connections
|
inherited |
set by the signal handler for logging purposes if a fatal signal is raised
|
inherited |
register (through asio) for signal handling
|
inherited |
when EPS was started
|
inherited |
statistics are updated every minute when stats_timer expires
|
inherited |
statistics timer which is triggered every 60 seconds
|
inherited |
tcp resolver for async name resolution
|
inherited |
keep track of all clients, uuids, and ip addresses
| ASIO_STREAM EPS::ClientHull::tun_tap_stream |
TUN/TAP stream handle for ASIO read/write.
|
inherited |
structure used by libminiupnpc
|
inherited |
structure used by libminiupnpc
|
staticinherited |
whether UPnP is enabled/disabled
|
inherited |
LAN ip address according to UPnP.
|
inherited |
UPnP information.
timer used to regularly attempt to renew any UPnP port mappings
|
staticinherited |
|
inherited |
structure used by libminiupnpc
|
inherited |
WAN ip address according to UPnP.
|
inherited |
port opened up on WAN side of UPnP device
|
inherited |
uuid for this EPS instance