2017-02-10 01:10:21 +00:00
# include <stdio.h>
# include <stdlib.h>
# include <stdint.h>
2017-02-10 02:53:58 +00:00
# include <string.h>
2017-02-10 01:10:21 +00:00
# include <unistd.h>
# include <pthread.h>
2017-04-04 01:54:03 +00:00
# include <netinet/in.h>
# include <arpa/inet.h>
2017-07-27 19:33:19 +00:00
# include "libp2p/conn/session.h"
# include "libp2p/net/multistream.h"
2017-02-10 01:10:21 +00:00
# include "libp2p/net/p2pnet.h"
2017-08-09 13:04:17 +00:00
# include "libp2p/net/protocol.h"
2017-07-27 19:33:19 +00:00
# include "libp2p/nodeio/nodeio.h"
2017-08-28 11:56:22 +00:00
# include "libp2p/os/utils.h"
2017-02-23 16:16:23 +00:00
# include "libp2p/record/message.h"
2017-07-27 19:33:19 +00:00
# include "libp2p/routing/dht_protocol.h"
# include "libp2p/secio/secio.h"
2017-04-03 18:20:35 +00:00
# include "libp2p/utils/logger.h"
2017-02-10 01:10:21 +00:00
# include "ipfs/core/daemon.h"
2017-02-23 20:15:33 +00:00
# include "ipfs/core/ipfs_node.h"
2017-08-28 11:56:22 +00:00
# include "ipfs/exchange/bitswap/network.h"
# include "ipfs/journal/journal.h"
2017-03-19 19:40:16 +00:00
# include "ipfs/merkledag/merkledag.h"
# include "ipfs/merkledag/node.h"
2017-08-28 11:56:22 +00:00
# include "ipfs/routing/routing.h"
2017-04-17 19:02:33 +00:00
# include "ipfs/util/thread_pool.h"
2017-02-10 01:10:21 +00:00
2017-02-10 02:53:58 +00:00
# define BUF_SIZE 4096
2017-05-11 18:53:52 +00:00
// this should be set to 5 for normal operation, perhaps higher for debugging purposes
# define DEFAULT_NETWORK_TIMEOUT 5
2017-04-17 16:58:47 +00:00
static int null_shutting_down = 0 ;
2017-02-23 20:15:33 +00:00
/**
2017-07-27 19:33:19 +00:00
* We ' ve received a connection . Find out what they want .
*
* @ param ptr a pointer to a null_connection_params struct
2017-02-23 20:15:33 +00:00
*/
2017-08-03 16:16:58 +00:00
void ipfs_null_connection ( void * ptr ) {
2017-07-27 19:33:19 +00:00
struct null_connection_params * connection_param = ( struct null_connection_params * ) ptr ;
2017-08-03 16:16:58 +00:00
int retVal = 0 ;
2017-02-23 20:15:33 +00:00
2017-07-27 19:33:19 +00:00
struct SessionContext * session = libp2p_session_context_new ( ) ;
if ( session = = NULL ) {
2017-08-03 16:16:58 +00:00
libp2p_logger_error ( " null " , " Unable to allocate SessionContext. Out of memory? \n " ) ;
return ;
2017-07-27 19:33:19 +00:00
}
session - > insecure_stream = libp2p_net_multistream_stream_new ( connection_param - > file_descriptor , connection_param - > ip , connection_param - > port ) ;
session - > default_stream = session - > insecure_stream ;
session - > datastore = connection_param - > local_node - > repo - > config - > datastore ;
session - > filestore = connection_param - > local_node - > repo - > config - > filestore ;
2017-02-23 20:15:33 +00:00
2017-08-03 16:16:58 +00:00
libp2p_logger_info ( " null " , " Connection %d, count %d \n " , connection_param - > file_descriptor , * ( connection_param - > count ) ) ;
2017-02-10 01:10:21 +00:00
2017-09-04 16:02:48 +00:00
// try to read from the network
uint8_t * results = 0 ;
size_t bytes_read = 0 ;
// handle the call
for ( ; ; ) {
// immediately attempt to negotiate multistream
if ( ! libp2p_net_multistream_send_protocol ( session ) )
break ;
if ( ! session - > default_stream - > read ( session , & results , & bytes_read , DEFAULT_NETWORK_TIMEOUT ) ) {
// problem reading;
break ;
}
retVal = libp2p_protocol_marshal ( results , bytes_read , session , connection_param - > local_node - > protocol_handlers ) ;
if ( results ! = NULL )
free ( results ) ;
// exit the loop on error (or if they ask us to no longer loop by returning 0)
if ( retVal < = 0 )
break ;
2017-02-23 20:15:33 +00:00
}
2017-08-03 16:16:58 +00:00
( * ( connection_param - > count ) ) - - ; // update counter.
if ( connection_param - > ip ! = NULL )
free ( connection_param - > ip ) ;
free ( connection_param ) ;
2017-04-17 19:02:33 +00:00
return ;
2017-02-10 01:10:21 +00:00
}
2017-08-28 11:56:22 +00:00
int ipfs_null_do_maintenance ( struct IpfsNode * local_node , struct Libp2pPeer * peer ) {
2017-08-30 16:10:14 +00:00
if ( peer = = NULL ) {
2017-08-28 11:56:22 +00:00
return 0 ;
2017-08-30 16:10:14 +00:00
}
if ( peer - > is_local ) {
2017-08-28 11:56:22 +00:00
return 1 ;
2017-08-30 16:10:14 +00:00
}
2017-08-28 11:56:22 +00:00
// Is this peer one of our backup partners?
struct ReplicationPeer * replication_peer = repo_config_get_replication_peer ( local_node - > repo - > config - > replication , peer ) ;
long long announce_secs = local_node - > repo - > config - > replication - > announce_minutes * 60 ;
// If so, has there been enough time since the last attempt a backup?
if ( replication_peer ! = NULL ) {
2017-08-30 16:10:14 +00:00
announce_secs - = os_utils_gmtime ( ) - replication_peer - > lastConnect ;
2017-08-31 11:41:54 +00:00
libp2p_logger_debug ( " null " , " Checking to see if we should send backup notification to peer %s. Time since last backup: %lld. \n " , libp2p_peer_id_to_string ( replication_peer - > peer ) , announce_secs ) ;
2017-08-28 11:56:22 +00:00
}
// should we attempt to connect if we're not already?
2017-08-31 11:41:54 +00:00
if ( replication_peer ! = NULL & & local_node - > repo - > config - > replication - > announce & & announce_secs < 0 ) {
2017-08-28 11:56:22 +00:00
// try to connect if we aren't already
if ( peer - > connection_type ! = CONNECTION_TYPE_CONNECTED ) {
2017-09-04 16:02:48 +00:00
if ( ! libp2p_peer_connect ( & local_node - > identity - > private_key , peer , local_node - > peerstore , local_node - > repo - > config - > datastore , 2 ) ) {
2017-08-28 11:56:22 +00:00
return 0 ;
}
}
// attempt a backup, don't forget to reset timer
2017-08-31 11:41:54 +00:00
libp2p_logger_debug ( " null " , " Attempting a sync of node %s. \n " , libp2p_peer_id_to_string ( peer ) ) ;
2017-08-28 11:56:22 +00:00
ipfs_journal_sync ( local_node , replication_peer ) ;
2017-08-31 11:41:54 +00:00
libp2p_logger_debug ( " null " , " Sync message sent. Maintenance complete for node %s. \n " , libp2p_peer_id_to_string ( peer ) ) ;
2017-08-28 11:56:22 +00:00
} else {
2017-08-31 11:41:54 +00:00
if ( peer - > sessionContext ! = NULL & & os_utils_gmtime ( ) - peer - > sessionContext - > last_comm_epoch > 180 ) {
// try a ping, but only if we're connected
2017-08-31 21:41:10 +00:00
libp2p_logger_debug ( " null " , " Attempting ping of %s. \n " , libp2p_peer_id_to_string ( peer ) ) ;
2017-08-31 11:41:54 +00:00
if ( peer - > connection_type = = CONNECTION_TYPE_CONNECTED & & ! local_node - > routing - > Ping ( local_node - > routing , peer ) ) {
libp2p_logger_debug ( " null " , " Attempted ping of %s failed. \n " , peer - > id ) ;
peer - > connection_type = CONNECTION_TYPE_NOT_CONNECTED ;
}
2017-08-28 11:56:22 +00:00
}
}
return 1 ;
}
2017-07-27 19:33:19 +00:00
/***
* Called by the daemon to listen for connections
* @ param ptr a pointer to an IpfsNodeListenParams struct
* @ returns nothing useful .
*/
2017-07-17 18:05:56 +00:00
void * ipfs_null_listen ( void * ptr )
2017-02-10 01:10:21 +00:00
{
int socketfd , s , count = 0 ;
2017-04-17 19:02:33 +00:00
threadpool thpool = thpool_init ( 25 ) ;
2017-02-22 15:56:11 +00:00
struct IpfsNodeListenParams * listen_param ;
2017-02-10 01:10:21 +00:00
struct null_connection_params * connection_param ;
2017-02-22 15:56:11 +00:00
listen_param = ( struct IpfsNodeListenParams * ) ptr ;
2017-02-10 01:10:21 +00:00
if ( ( socketfd = socket_listen ( socket_tcp4 ( ) , & ( listen_param - > ipv4 ) , & ( listen_param - > port ) ) ) < = 0 ) {
2017-04-27 20:52:20 +00:00
libp2p_logger_error ( " null " , " Failed to init null router. Address: %d, Port: %d \n " , listen_param - > ipv4 , listen_param - > port ) ;
2017-05-11 18:53:52 +00:00
return ( void * ) 2 ;
2017-02-10 01:10:21 +00:00
}
2017-05-11 18:53:52 +00:00
libp2p_logger_error ( " null " , " Ipfs listening on %d \n " , listen_param - > port ) ;
2017-02-10 01:10:21 +00:00
2017-08-16 13:15:06 +00:00
// when we have nothing to do, check on the connections to see if we're still connected
struct Libp2pLinkedList * current_peer_entry = NULL ;
if ( listen_param - > local_node - > peerstore - > head_entry ! = NULL )
current_peer_entry = listen_param - > local_node - > peerstore - > head_entry ;
2017-08-03 16:16:58 +00:00
// the main loop, listening for new connections
2017-02-10 01:10:21 +00:00
for ( ; ; ) {
2017-08-03 16:16:58 +00:00
//libp2p_logger_debug("null", "%s Attempting socket read with fd %d.\n", listen_param->local_node->identity->peer->id, socketfd);
int numDescriptors = socket_read_select4 ( socketfd , 2 ) ;
if ( null_shutting_down ) {
libp2p_logger_debug ( " null " , " %s null_listen shutting down. \n " , listen_param - > local_node - > identity - > peer - > id ) ;
break ;
}
if ( numDescriptors > 0 ) {
2017-04-17 16:58:47 +00:00
s = socket_accept4 ( socketfd , & ( listen_param - > ipv4 ) , & ( listen_param - > port ) ) ;
if ( count > = CONNECTIONS ) { // limit reached.
close ( s ) ;
continue ;
}
count + + ;
connection_param = malloc ( sizeof ( struct null_connection_params ) ) ;
if ( connection_param ) {
connection_param - > file_descriptor = s ;
connection_param - > count = & count ;
connection_param - > local_node = listen_param - > local_node ;
connection_param - > port = listen_param - > port ;
connection_param - > ip = malloc ( INET_ADDRSTRLEN ) ;
if ( inet_ntop ( AF_INET , & ( listen_param - > ipv4 ) , connection_param - > ip , INET_ADDRSTRLEN ) = = NULL ) {
free ( connection_param - > ip ) ;
connection_param - > ip = NULL ;
connection_param - > port = 0 ;
}
// Create pthread for ipfs_null_connection.
2017-04-17 19:02:33 +00:00
thpool_add_work ( thpool , ipfs_null_connection , connection_param ) ;
2017-04-17 16:58:47 +00:00
}
2017-08-16 13:15:06 +00:00
} else {
// timeout... do maintenance
struct PeerEntry * entry = current_peer_entry - > item ;
2017-08-28 11:56:22 +00:00
ipfs_null_do_maintenance ( listen_param - > local_node , entry - > peer ) ;
2017-08-16 13:15:06 +00:00
if ( current_peer_entry ! = NULL )
current_peer_entry = current_peer_entry - > next ;
if ( current_peer_entry = = NULL )
current_peer_entry = listen_param - > local_node - > peerstore - > head_entry ;
2017-08-03 16:16:58 +00:00
}
2017-02-10 01:10:21 +00:00
}
2017-04-17 19:02:33 +00:00
thpool_destroy ( thpool ) ;
2017-05-11 19:30:52 +00:00
close ( socketfd ) ;
2017-02-10 01:10:21 +00:00
return ( void * ) 2 ;
}
2017-04-17 16:58:47 +00:00
int ipfs_null_shutdown ( ) {
null_shutting_down = 1 ;
return 1 ;
}