mirror of
https://github.com/BlackLight/Snort_AIPreproc.git
synced 2024-11-24 04:35:11 +01:00
Fixing some thread join bugs and a bug in db escape
This commit is contained in:
parent
44c805e829
commit
cbee4cb9fa
4 changed files with 39 additions and 0 deletions
|
@ -96,9 +96,16 @@ AI_alerts_pool_thread ( void *arg )
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if ( pthread_create ( &serializer_thread, NULL, AI_serializer_thread, NULL ) != 0 )
|
if ( pthread_create ( &serializer_thread, NULL, AI_serializer_thread, NULL ) != 0 )
|
||||||
|
{
|
||||||
AI_fatal_err ( "Failed to create the alerts' serializer thread", __FILE__, __LINE__ );
|
AI_fatal_err ( "Failed to create the alerts' serializer thread", __FILE__, __LINE__ );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* if ( pthread_join ( serializer_thread, NULL ) != 0 ) */
|
||||||
|
/* { */
|
||||||
|
/* AI_fatal_err ( "Could not join the alerts' serializer thread", __FILE__, __LINE__ ); */
|
||||||
|
/* } */
|
||||||
|
}
|
||||||
|
|
||||||
pthread_exit ((void*) 0);
|
pthread_exit ((void*) 0);
|
||||||
return (void*) 0;
|
return (void*) 0;
|
||||||
} /* ----- end of function AI_alerts_pool_thread ----- */
|
} /* ----- end of function AI_alerts_pool_thread ----- */
|
||||||
|
@ -163,7 +170,9 @@ AI_file_alertparser_thread ( void* arg )
|
||||||
|
|
||||||
/* Initialize the thread for managing the serialization of alerts' pool */
|
/* Initialize the thread for managing the serialization of alerts' pool */
|
||||||
if ( pthread_create ( &alerts_pool_thread, NULL, AI_alerts_pool_thread, NULL ) != 0 )
|
if ( pthread_create ( &alerts_pool_thread, NULL, AI_alerts_pool_thread, NULL ) != 0 )
|
||||||
|
{
|
||||||
AI_fatal_err ( "Failed to create the alerts' pool management thread", __FILE__, __LINE__ );
|
AI_fatal_err ( "Failed to create the alerts' pool management thread", __FILE__, __LINE__ );
|
||||||
|
}
|
||||||
|
|
||||||
while ( 1 )
|
while ( 1 )
|
||||||
{
|
{
|
||||||
|
@ -285,13 +294,22 @@ AI_file_alertparser_thread ( void* arg )
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( pthread_create ( &serializer_thread, NULL, AI_serializer_thread, alert ) != 0 )
|
if ( pthread_create ( &serializer_thread, NULL, AI_serializer_thread, alert ) != 0 )
|
||||||
|
{
|
||||||
AI_fatal_err ( "Failed to create the alerts' serializer thread", __FILE__, __LINE__ );
|
AI_fatal_err ( "Failed to create the alerts' serializer thread", __FILE__, __LINE__ );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( pthread_join ( serializer_thread, NULL ) != 0 )
|
||||||
|
{
|
||||||
|
AI_fatal_err ( "Failed to join the alerts' serializer thread", __FILE__, __LINE__ );
|
||||||
|
}
|
||||||
|
|
||||||
if ( config->outdbtype != outdb_none )
|
if ( config->outdbtype != outdb_none )
|
||||||
{
|
{
|
||||||
if ( pthread_create ( &db_thread, NULL, AI_store_alert_to_db_thread, alert ) != 0 )
|
if ( pthread_create ( &db_thread, NULL, AI_store_alert_to_db_thread, alert ) != 0 )
|
||||||
|
{
|
||||||
AI_fatal_err ( "Failed to create the alert to db storing thread", __FILE__, __LINE__ );
|
AI_fatal_err ( "Failed to create the alert to db storing thread", __FILE__, __LINE__ );
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
in_alert = false;
|
in_alert = false;
|
||||||
alert = NULL;
|
alert = NULL;
|
||||||
|
|
4
db.c
4
db.c
|
@ -71,7 +71,9 @@ AI_db_alertparser_thread ( void *arg )
|
||||||
|
|
||||||
/* Initialize the thread for managing the serialization of alerts' pool */
|
/* Initialize the thread for managing the serialization of alerts' pool */
|
||||||
if ( pthread_create ( &alerts_pool_thread, NULL, AI_alerts_pool_thread, NULL ) != 0 )
|
if ( pthread_create ( &alerts_pool_thread, NULL, AI_alerts_pool_thread, NULL ) != 0 )
|
||||||
|
{
|
||||||
AI_fatal_err ( "Failed to create the alerts' pool management thread", __FILE__, __LINE__ );
|
AI_fatal_err ( "Failed to create the alerts' pool management thread", __FILE__, __LINE__ );
|
||||||
|
}
|
||||||
|
|
||||||
while ( 1 )
|
while ( 1 )
|
||||||
{
|
{
|
||||||
|
@ -221,8 +223,10 @@ AI_db_alertparser_thread ( void *arg )
|
||||||
latest_time = time ( NULL );
|
latest_time = time ( NULL );
|
||||||
|
|
||||||
if ( pthread_create ( &serializer_thread, NULL, AI_serializer_thread, alert ) != 0 )
|
if ( pthread_create ( &serializer_thread, NULL, AI_serializer_thread, alert ) != 0 )
|
||||||
|
{
|
||||||
AI_fatal_err ( "Failed to create the alerts' serializer thread", __FILE__, __LINE__ );
|
AI_fatal_err ( "Failed to create the alerts' serializer thread", __FILE__, __LINE__ );
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
DB_close();
|
DB_close();
|
||||||
pthread_exit ((void*) 0 );
|
pthread_exit ((void*) 0 );
|
||||||
|
|
12
mysql.c
12
mysql.c
|
@ -130,6 +130,12 @@ mysql_do_query ( const char *query )
|
||||||
unsigned long
|
unsigned long
|
||||||
mysql_do_escape_string ( char **to, const char *from, unsigned long length )
|
mysql_do_escape_string ( char **to, const char *from, unsigned long length )
|
||||||
{
|
{
|
||||||
|
if ( !from )
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
if ( strlen ( from ) == 0 )
|
||||||
|
return 0;
|
||||||
|
|
||||||
return mysql_real_escape_string ( db, *to, from, length );
|
return mysql_real_escape_string ( db, *to, from, length );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -174,6 +180,12 @@ mysql_do_out_query ( const char *query )
|
||||||
unsigned long
|
unsigned long
|
||||||
mysql_do_out_escape_string ( char **to, const char *from, unsigned long length )
|
mysql_do_out_escape_string ( char **to, const char *from, unsigned long length )
|
||||||
{
|
{
|
||||||
|
if ( !from )
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
if ( strlen ( from ) == 0 )
|
||||||
|
return 0;
|
||||||
|
|
||||||
return mysql_real_escape_string ( outdb, *to, from, length );
|
return mysql_real_escape_string ( outdb, *to, from, length );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
5
outdb.c
5
outdb.c
|
@ -117,6 +117,7 @@ AI_store_alert_to_db_thread ( void *arg )
|
||||||
{
|
{
|
||||||
pthread_mutex_unlock ( &outdb_mutex );
|
pthread_mutex_unlock ( &outdb_mutex );
|
||||||
pthread_exit ((void*) 0);
|
pthread_exit ((void*) 0);
|
||||||
|
return (void*) 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
latest_ip_hdr_id = strtoul ( row[0], NULL, 10 );
|
latest_ip_hdr_id = strtoul ( row[0], NULL, 10 );
|
||||||
|
@ -147,12 +148,14 @@ AI_store_alert_to_db_thread ( void *arg )
|
||||||
_dpd.logMsg ( "AIPreproc: Warning: error in executing query: '%s'\n", query );
|
_dpd.logMsg ( "AIPreproc: Warning: error in executing query: '%s'\n", query );
|
||||||
pthread_mutex_unlock ( &outdb_mutex );
|
pthread_mutex_unlock ( &outdb_mutex );
|
||||||
pthread_exit ((void*) 0);
|
pthread_exit ((void*) 0);
|
||||||
|
return (void*) 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( !( row = (DB_row) DB_fetch_row ( res )))
|
if ( !( row = (DB_row) DB_fetch_row ( res )))
|
||||||
{
|
{
|
||||||
pthread_mutex_unlock ( &outdb_mutex );
|
pthread_mutex_unlock ( &outdb_mutex );
|
||||||
pthread_exit ((void*) 0);
|
pthread_exit ((void*) 0);
|
||||||
|
return (void*) 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
latest_tcp_hdr_id = strtoul ( row[0], NULL, 10 );
|
latest_tcp_hdr_id = strtoul ( row[0], NULL, 10 );
|
||||||
|
@ -213,12 +216,14 @@ AI_store_alert_to_db_thread ( void *arg )
|
||||||
_dpd.logMsg ( "AIPreproc: Warning: error in executing query: '%s'\n", query );
|
_dpd.logMsg ( "AIPreproc: Warning: error in executing query: '%s'\n", query );
|
||||||
pthread_mutex_unlock ( &outdb_mutex );
|
pthread_mutex_unlock ( &outdb_mutex );
|
||||||
pthread_exit ((void*) 0);
|
pthread_exit ((void*) 0);
|
||||||
|
return (void*) 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( !( row = (DB_row) DB_fetch_row ( res )))
|
if ( !( row = (DB_row) DB_fetch_row ( res )))
|
||||||
{
|
{
|
||||||
pthread_mutex_unlock ( &outdb_mutex );
|
pthread_mutex_unlock ( &outdb_mutex );
|
||||||
pthread_exit ((void*) 0);
|
pthread_exit ((void*) 0);
|
||||||
|
return (void*) 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
latest_alert_id = strtoul ( row[0], NULL, 10 );
|
latest_alert_id = strtoul ( row[0], NULL, 10 );
|
||||||
|
|
Loading…
Reference in a new issue