add better error checks for io_ routines
This commit is contained in:
parent
ca130e6db6
commit
c92e57fec3
@ -17,7 +17,7 @@
|
|||||||
#include "portab.h"
|
#include "portab.h"
|
||||||
#include "io.h"
|
#include "io.h"
|
||||||
|
|
||||||
static char UNUSED id[] = "$Id: conn.c,v 1.162 2005/07/11 20:58:05 fw Exp $";
|
static char UNUSED id[] = "$Id: conn.c,v 1.163 2005/07/12 20:44:46 fw Exp $";
|
||||||
|
|
||||||
#include "imp.h"
|
#include "imp.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
@ -333,6 +333,7 @@ Conn_ExitListeners( void )
|
|||||||
} /* Conn_ExitListeners */
|
} /* Conn_ExitListeners */
|
||||||
|
|
||||||
|
|
||||||
|
/* return new listening port file descriptor or -1 on failure */
|
||||||
LOCAL int
|
LOCAL int
|
||||||
NewListener( const UINT16 Port )
|
NewListener( const UINT16 Port )
|
||||||
{
|
{
|
||||||
@ -436,16 +437,11 @@ NewListener( const UINT16 Port )
|
|||||||
GLOBAL void
|
GLOBAL void
|
||||||
Conn_Handler( void )
|
Conn_Handler( void )
|
||||||
{
|
{
|
||||||
/* "Hauptschleife": Aktive Verbindungen ueberwachen. Folgende Aktionen
|
/* "Main Loop.": Loop until a signal (for shutdown or restart) arrives.
|
||||||
* werden dabei durchgefuehrt, bis der Server terminieren oder neu
|
* Call io_dispatch() to check for read/writeable sockets every second
|
||||||
* starten soll:
|
* Wait for status change on pending connections (e.g: when the hostname has been resolved)
|
||||||
*
|
* check for penalty/timeouts
|
||||||
* - neue Verbindungen annehmen,
|
* handle input buffers
|
||||||
* - Server-Verbindungen aufbauen,
|
|
||||||
* - geschlossene Verbindungen loeschen,
|
|
||||||
* - volle Schreibpuffer versuchen zu schreiben,
|
|
||||||
* - volle Lesepuffer versuchen zu verarbeiten,
|
|
||||||
* - Antworten von Resolver Sub-Prozessen annehmen.
|
|
||||||
*/
|
*/
|
||||||
int i;
|
int i;
|
||||||
unsigned int wdatalen;
|
unsigned int wdatalen;
|
||||||
@ -961,8 +957,7 @@ New_Connection( int Sock )
|
|||||||
}
|
}
|
||||||
|
|
||||||
ptr = (POINTER *)realloc( My_Connections, sizeof( CONNECTION ) * new_size );
|
ptr = (POINTER *)realloc( My_Connections, sizeof( CONNECTION ) * new_size );
|
||||||
if( ! ptr )
|
if( ! ptr ) {
|
||||||
{
|
|
||||||
Log( LOG_EMERG, "Can't allocate memory! [New_Connection]" );
|
Log( LOG_EMERG, "Can't allocate memory! [New_Connection]" );
|
||||||
Simple_Message( new_sock, "ERROR: Internal error" );
|
Simple_Message( new_sock, "ERROR: Internal error" );
|
||||||
close( new_sock );
|
close( new_sock );
|
||||||
@ -986,8 +981,7 @@ New_Connection( int Sock )
|
|||||||
|
|
||||||
/* Client-Struktur initialisieren */
|
/* Client-Struktur initialisieren */
|
||||||
c = Client_NewLocal( idx, inet_ntoa( new_addr.sin_addr ), CLIENT_UNKNOWN, false );
|
c = Client_NewLocal( idx, inet_ntoa( new_addr.sin_addr ), CLIENT_UNKNOWN, false );
|
||||||
if( ! c )
|
if( ! c ) {
|
||||||
{
|
|
||||||
Log( LOG_ALERT, "Can't accept connection: can't create client structure!" );
|
Log( LOG_ALERT, "Can't accept connection: can't create client structure!" );
|
||||||
Simple_Message( new_sock, "ERROR :Internal error" );
|
Simple_Message( new_sock, "ERROR :Internal error" );
|
||||||
close( new_sock );
|
close( new_sock );
|
||||||
@ -1000,7 +994,11 @@ New_Connection( int Sock )
|
|||||||
My_Connections[idx].addr = new_addr;
|
My_Connections[idx].addr = new_addr;
|
||||||
|
|
||||||
/* Neuen Socket registrieren */
|
/* Neuen Socket registrieren */
|
||||||
io_event_create( new_sock, IO_WANTREAD, cb_clientserver);
|
if (!io_event_create( new_sock, IO_WANTREAD, cb_clientserver)) {
|
||||||
|
Simple_Message( new_sock, "ERROR :Internal error" );
|
||||||
|
Conn_Close( idx, "io_event_create() failed", NULL, false );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
Log( LOG_INFO, "Accepted connection %d from %s:%d on socket %d.", idx, inet_ntoa( new_addr.sin_addr ), ntohs( new_addr.sin_port), Sock );
|
Log( LOG_INFO, "Accepted connection %d from %s:%d on socket %d.", idx, inet_ntoa( new_addr.sin_addr ), ntohs( new_addr.sin_port), Sock );
|
||||||
|
|
||||||
@ -1091,6 +1089,7 @@ Read_Request( CONN_ID Idx )
|
|||||||
Conn_Close( Idx, "Socket closed!", "Client closed connection", false );
|
Conn_Close( Idx, "Socket closed!", "Client closed connection", false );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if( len < 0 ) {
|
if( len < 0 ) {
|
||||||
if( errno == EAGAIN ) return;
|
if( errno == EAGAIN ) return;
|
||||||
Log( LOG_ERR, "Read error on connection %d (socket %d): %s!", Idx,
|
Log( LOG_ERR, "Read error on connection %d (socket %d): %s!", Idx,
|
||||||
@ -1373,13 +1372,10 @@ New_Server( int Server, CONN_ID Idx )
|
|||||||
assert( Idx > NONE );
|
assert( Idx > NONE );
|
||||||
|
|
||||||
/* Did we get a valid IP address? */
|
/* Did we get a valid IP address? */
|
||||||
if( ! Conf_Server[Server].ip[0] )
|
if( ! Conf_Server[Server].ip[0] ) {
|
||||||
{
|
|
||||||
/* No. Free connection structure and abort: */
|
/* No. Free connection structure and abort: */
|
||||||
Init_Conn_Struct( Idx );
|
|
||||||
Conf_Server[Server].conn_id = NONE;
|
|
||||||
Log( LOG_ERR, "Can't connect to \"%s\" (connection %d): ip address unknown!", Conf_Server[Server].host, Idx );
|
Log( LOG_ERR, "Can't connect to \"%s\" (connection %d): ip address unknown!", Conf_Server[Server].host, Idx );
|
||||||
return;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
Log( LOG_INFO, "Establishing connection to \"%s\", %s, port %d (connection %d) ... ", Conf_Server[Server].host, Conf_Server[Server].ip, Conf_Server[Server].port, Idx );
|
Log( LOG_INFO, "Establishing connection to \"%s\", %s, port %d (connection %d) ... ", Conf_Server[Server].host, Conf_Server[Server].ip, Conf_Server[Server].port, Idx );
|
||||||
@ -1393,10 +1389,8 @@ New_Server( int Server, CONN_ID Idx )
|
|||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
/* Can't convert IP address */
|
/* Can't convert IP address */
|
||||||
Init_Conn_Struct( Idx );
|
|
||||||
Conf_Server[Server].conn_id = NONE;
|
|
||||||
Log( LOG_ERR, "Can't connect to \"%s\" (connection %d): can't convert ip address %s!", Conf_Server[Server].host, Idx, Conf_Server[Server].ip );
|
Log( LOG_ERR, "Can't connect to \"%s\" (connection %d): can't convert ip address %s!", Conf_Server[Server].host, Idx, Conf_Server[Server].ip );
|
||||||
return;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
memset( &new_addr, 0, sizeof( new_addr ));
|
memset( &new_addr, 0, sizeof( new_addr ));
|
||||||
@ -1407,10 +1401,8 @@ New_Server( int Server, CONN_ID Idx )
|
|||||||
new_sock = socket( PF_INET, SOCK_STREAM, 0 );
|
new_sock = socket( PF_INET, SOCK_STREAM, 0 );
|
||||||
if ( new_sock < 0 ) {
|
if ( new_sock < 0 ) {
|
||||||
/* Can't create socket */
|
/* Can't create socket */
|
||||||
Init_Conn_Struct( Idx );
|
|
||||||
Conf_Server[Server].conn_id = NONE;
|
|
||||||
Log( LOG_CRIT, "Can't create socket: %s!", strerror( errno ));
|
Log( LOG_CRIT, "Can't create socket: %s!", strerror( errno ));
|
||||||
return;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
if( ! Init_Socket( new_sock )) return;
|
if( ! Init_Socket( new_sock )) return;
|
||||||
@ -1420,21 +1412,18 @@ New_Server( int Server, CONN_ID Idx )
|
|||||||
/* Can't connect socket */
|
/* Can't connect socket */
|
||||||
Log( LOG_CRIT, "Can't connect socket: %s!", strerror( errno ));
|
Log( LOG_CRIT, "Can't connect socket: %s!", strerror( errno ));
|
||||||
close( new_sock );
|
close( new_sock );
|
||||||
Init_Conn_Struct( Idx );
|
goto out;
|
||||||
Conf_Server[Server].conn_id = NONE;
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Client-Struktur initialisieren */
|
/* Client-Struktur initialisieren */
|
||||||
c = Client_NewLocal( Idx, inet_ntoa( new_addr.sin_addr ), CLIENT_UNKNOWNSERVER, false );
|
c = Client_NewLocal( Idx, inet_ntoa( new_addr.sin_addr ), CLIENT_UNKNOWNSERVER, false );
|
||||||
if( ! c ) {
|
if( ! c ) {
|
||||||
/* Can't create new client structure */
|
/* Can't create new client structure */
|
||||||
close( new_sock );
|
|
||||||
Init_Conn_Struct( Idx );
|
|
||||||
Conf_Server[Server].conn_id = NONE;
|
|
||||||
Log( LOG_ALERT, "Can't establish connection: can't create client structure!" );
|
Log( LOG_ALERT, "Can't establish connection: can't create client structure!" );
|
||||||
return;
|
close( new_sock );
|
||||||
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
Client_SetIntroducer( c, c );
|
Client_SetIntroducer( c, c );
|
||||||
Client_SetToken( c, TOKEN_OUTBOUND );
|
Client_SetToken( c, TOKEN_OUTBOUND );
|
||||||
|
|
||||||
@ -1444,12 +1433,20 @@ New_Server( int Server, CONN_ID Idx )
|
|||||||
strlcpy( My_Connections[Idx].host, Conf_Server[Server].host, sizeof( My_Connections[Idx].host ));
|
strlcpy( My_Connections[Idx].host, Conf_Server[Server].host, sizeof( My_Connections[Idx].host ));
|
||||||
|
|
||||||
/* Register new socket */
|
/* Register new socket */
|
||||||
io_event_create( new_sock, IO_WANTWRITE, cb_connserver);
|
if (!io_event_create( new_sock, IO_WANTWRITE, cb_connserver)) {
|
||||||
Conn_OPTION_ADD( &My_Connections[Idx], CONN_ISCONNECTING );
|
Log( LOG_ALERT, "io_event_create(): could not add fd %d", strerror(errno));
|
||||||
|
Conn_Close( Idx, "io_event_create() failed", NULL, false );
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
Log( LOG_DEBUG, "Registered new connection %d on socket %d.", Idx, My_Connections[Idx].sock );
|
Log( LOG_DEBUG, "Registered new connection %d on socket %d.", Idx, My_Connections[Idx].sock );
|
||||||
#endif
|
#endif
|
||||||
|
Conn_OPTION_ADD( &My_Connections[Idx], CONN_ISCONNECTING );
|
||||||
|
return;
|
||||||
|
out:
|
||||||
|
Init_Conn_Struct( Idx );
|
||||||
|
Conf_Server[Server].conn_id = NONE;
|
||||||
} /* New_Server */
|
} /* New_Server */
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user