]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/ngircd.c
Added some Doxygen documentation.
[ngircd-alex.git] / src / ngircd / ngircd.c
index e39229a06d97e252c61515d74fce8c3e16abeb6f..33dfdbc55600465ab9a9314e506cc05cc8250c3f 100644 (file)
@@ -7,14 +7,18 @@
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
  * Please read the file COPYING, README and AUTHORS for more information.
- *
- * Main program -- main()
  */
 
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: ngircd.c,v 1.91 2005/02/10 12:49:04 alex Exp $";
+static char UNUSED id[] = "$Id: ngircd.c,v 1.96 2005/06/01 21:52:18 alex Exp $";
+
+/**
+ * @file
+ * The main program, including the C function main() which is called
+ * by the loader of the operating system.
+ */
 
 #include "imp.h"
 #include <assert.h>
@@ -52,48 +56,57 @@ static char UNUSED id[] = "$Id: ngircd.c,v 1.91 2005/02/10 12:49:04 alex Exp $";
 #include "ngircd.h"
 
 
-LOCAL VOID Initialize_Signal_Handler PARAMS(( VOID ));
-LOCAL VOID Signal_Handler PARAMS(( INT Signal ));
+LOCAL void Initialize_Signal_Handler PARAMS(( void ));
+LOCAL void Signal_Handler PARAMS(( int Signal ));
 
-LOCAL VOID Show_Version PARAMS(( VOID ));
-LOCAL VOID Show_Help PARAMS(( VOID ));
+LOCAL void Show_Version PARAMS(( void ));
+LOCAL void Show_Help PARAMS(( void ));
 
-LOCAL VOID Pidfile_Create PARAMS(( LONG ));
-LOCAL VOID Pidfile_Delete PARAMS(( VOID ));
+LOCAL void Pidfile_Create PARAMS(( long ));
+LOCAL void Pidfile_Delete PARAMS(( void ));
 
-LOCAL VOID NGIRCd_FillVersion PARAMS(( VOID ));
+LOCAL void Fill_Version PARAMS(( void ));
 
-LOCAL VOID Setup_FDStreams PARAMS(( VOID ));
+LOCAL void Setup_FDStreams PARAMS(( void ));
 
 
+/**
+ * The main() function of ngIRCd.
+ * Here all starts: this function is called by the operating system loader,
+ * it is the first portion of code executed of ngIRCd.
+ * @param argc The number of arguments passed to ngIRCd on the command line.
+ * @param argv An array containing all the arguments passed to ngIRCd.
+ * @return Global exit code of ngIRCd, zero on success.
+ */
 GLOBAL int
 main( int argc, const char *argv[] )
 {
        struct passwd *pwd;
        struct group *grp;
-       BOOLEAN ok, configtest = FALSE;
-       LONG pid, n;
-       INT i;
+       bool ok, configtest = false;
+       long pid;
+       int i;
+       size_t n;
 
        umask( 0077 );
 
-       NGIRCd_SignalQuit = NGIRCd_SignalRestart = NGIRCd_SignalRehash = FALSE;
-       NGIRCd_NoDaemon = NGIRCd_Passive = FALSE;
+       NGIRCd_SignalQuit = NGIRCd_SignalRestart = NGIRCd_SignalRehash = false;
+       NGIRCd_NoDaemon = NGIRCd_Passive = false;
 #ifdef DEBUG
-       NGIRCd_Debug = FALSE;
+       NGIRCd_Debug = false;
 #endif
 #ifdef SNIFFER
-       NGIRCd_Sniffer = FALSE;
+       NGIRCd_Sniffer = false;
 #endif
        strlcpy( NGIRCd_ConfFile, SYSCONFDIR, sizeof( NGIRCd_ConfFile ));
        strlcat( NGIRCd_ConfFile, CONFIG_FILE, sizeof( NGIRCd_ConfFile ));
 
-       NGIRCd_FillVersion( );
+       Fill_Version( );
 
        /* Kommandozeile parsen */
        for( i = 1; i < argc; i++ )
        {
-               ok = FALSE;
+               ok = false;
                if(( argv[i][0] == '-' ) && ( argv[i][1] == '-' ))
                {
                        /* Lange Option */
@@ -106,19 +119,19 @@ main( int argc, const char *argv[] )
                                        strlcpy( NGIRCd_ConfFile, argv[i + 1], sizeof( NGIRCd_ConfFile ));
 
                                        /* next parameter */
-                                       i++; ok = TRUE;
+                                       i++; ok = true;
                                }
                        }
                        if( strcmp( argv[i], "--configtest" ) == 0 )
                        {
-                               configtest = TRUE;
-                               ok = TRUE;
+                               configtest = true;
+                               ok = true;
                        }
 #ifdef DEBUG
                        if( strcmp( argv[i], "--debug" ) == 0 )
                        {
-                               NGIRCd_Debug = TRUE;
-                               ok = TRUE;
+                               NGIRCd_Debug = true;
+                               ok = true;
                        }
 #endif
                        if( strcmp( argv[i], "--help" ) == 0 )
@@ -129,19 +142,19 @@ main( int argc, const char *argv[] )
                        }
                        if( strcmp( argv[i], "--nodaemon" ) == 0 )
                        {
-                               NGIRCd_NoDaemon = TRUE;
-                               ok = TRUE;
+                               NGIRCd_NoDaemon = true;
+                               ok = true;
                        }
                        if( strcmp( argv[i], "--passive" ) == 0 )
                        {
-                               NGIRCd_Passive = TRUE;
-                               ok = TRUE;
+                               NGIRCd_Passive = true;
+                               ok = true;
                        }
 #ifdef SNIFFER
                        if( strcmp( argv[i], "--sniffer" ) == 0 )
                        {
-                               NGIRCd_Sniffer = TRUE;
-                               ok = TRUE;
+                               NGIRCd_Sniffer = true;
+                               ok = true;
                        }
 #endif
                        if( strcmp( argv[i], "--version" ) == 0 )
@@ -153,15 +166,14 @@ main( int argc, const char *argv[] )
                else if(( argv[i][0] == '-' ) && ( argv[i][1] != '-' ))
                {
                        /* Kurze Option */
-                       
-                       for( n = 1; n < (LONG)strlen( argv[i] ); n++ )
+                       for( n = 1; n < strlen( argv[i] ); n++ )
                        {
-                               ok = FALSE;
+                               ok = false;
 #ifdef DEBUG
                                if( argv[i][n] == 'd' )
                                {
-                                       NGIRCd_Debug = TRUE;
-                                       ok = TRUE;
+                                       NGIRCd_Debug = true;
+                                       ok = true;
                                }
 #endif
                                if( argv[i][n] == 'f' )
@@ -172,31 +184,32 @@ main( int argc, const char *argv[] )
                                                strlcpy( NGIRCd_ConfFile, argv[i + 1], sizeof( NGIRCd_ConfFile ));
 
                                                /* go to the following parameter */
-                                               i++; n = (LONG)strlen( argv[i] );
-                                               ok = TRUE;
+                                               i++;
+                                               n = strlen( argv[i] );
+                                               ok = true;
                                        }
                                }
                                if( argv[i][n] == 'n' )
                                {
-                                       NGIRCd_NoDaemon = TRUE;
-                                       ok = TRUE;
+                                       NGIRCd_NoDaemon = true;
+                                       ok = true;
                                }
                                if( argv[i][n] == 'p' )
                                {
-                                       NGIRCd_Passive = TRUE;
-                                       ok = TRUE;
+                                       NGIRCd_Passive = true;
+                                       ok = true;
                                }
 #ifdef SNIFFER
                                if( argv[i][n] == 's' )
                                {
-                                       NGIRCd_Sniffer = TRUE;
-                                       ok = TRUE;
+                                       NGIRCd_Sniffer = true;
+                                       ok = true;
                                }
 #endif
                                if( argv[i][n] == 't' )
                                {
-                                       configtest = TRUE;
-                                       ok = TRUE;
+                                       configtest = true;
+                                       ok = true;
                                }
 
                                if( ! ok )
@@ -224,7 +237,7 @@ main( int argc, const char *argv[] )
 #ifdef SNIFFER
        if( NGIRCd_Sniffer )
        {
-               NGIRCd_Debug = TRUE;
+               NGIRCd_Debug = true;
                strcpy( NGIRCd_DebugLevel, "2" );
        }
 #endif
@@ -240,11 +253,11 @@ main( int argc, const char *argv[] )
        {
                /* Initialize global variables */
                NGIRCd_Start = time( NULL );
-               (VOID)strftime( NGIRCd_StartStr, 64, "%a %b %d %Y at %H:%M:%S (%Z)", localtime( &NGIRCd_Start ));
+               (void)strftime( NGIRCd_StartStr, 64, "%a %b %d %Y at %H:%M:%S (%Z)", localtime( &NGIRCd_Start ));
 
-               NGIRCd_SignalRehash = FALSE;
-               NGIRCd_SignalRestart = FALSE;
-               NGIRCd_SignalQuit = FALSE;
+               NGIRCd_SignalRehash = false;
+               NGIRCd_SignalRestart = false;
+               NGIRCd_SignalQuit = false;
 
                /* Initialize modules, part I */
                Log_Init( );
@@ -276,7 +289,7 @@ main( int argc, const char *argv[] )
                if( ! NGIRCd_NoDaemon )
                {
                        /* fork child process */
-                       pid = (LONG)fork( );
+                       pid = (long)fork( );
                        if( pid > 0 )
                        {
                                /* "Old" process: exit. */
@@ -290,20 +303,20 @@ main( int argc, const char *argv[] )
                        }
 
                        /* New child process */
-                       (VOID)setsid( );
+                       (void)setsid( );
                        chdir( "/" );
 
                        /* Detach stdin, stdout and stderr */
-                       (VOID)Setup_FDStreams( );
+                       Setup_FDStreams( );
                }
 
                /* Create PID file */
-               pid = (LONG) getpid( );
+               pid = (long) getpid( );
                Pidfile_Create( pid );
 
                /* Show user, group, and PID of the running daemon */
                pwd = getpwuid( getuid( )); grp = getgrgid( getgid( ));
-               Log( LOG_INFO, "Running as user %s(%ld), group %s(%ld), with PID %ld.", pwd ? pwd->pw_name : "unknown", (LONG)getuid( ), grp ? grp->gr_name : "unknown", (LONG)getgid( ), pid);
+               Log( LOG_INFO, "Running as user %s(%ld), group %s(%ld), with PID %ld.", pwd ? pwd->pw_name : "unknown", (long)getuid( ), grp ? grp->gr_name : "unknown", (long)getgid( ), pid);
 
                /* Change working directory to home directory of the user
                 * we are running as (when not running chroot()'ed!) */
@@ -390,8 +403,14 @@ main( int argc, const char *argv[] )
 } /* main */
 
 
-LOCAL VOID
-NGIRCd_FillVersion( VOID )
+/**
+ * Generate ngIRCd "version string".
+ * This string is generated once and then stored in NGIRCd_Version for
+ * further usage, for example by the IRC command VERSION and the --version
+ * command line switch.
+ */
+LOCAL void
+Fill_Version( void )
 {
        NGIRCd_VersionAddition[0] = '\0';
 
@@ -443,16 +462,19 @@ NGIRCd_FillVersion( VOID )
 #else
        snprintf( NGIRCd_Version, sizeof NGIRCd_Version, "%s %s-%s", PACKAGE_NAME, PACKAGE_VERSION, NGIRCd_VersionAddition);
 #endif
-} /* NGIRCd_FillVersion */
+} /* Fill_Version */
 
 
-GLOBAL VOID
-NGIRCd_Rehash( VOID )
+/**
+ * Reload the server configuration file.
+ */
+GLOBAL void
+NGIRCd_Rehash( void )
 {
-       CHAR old_name[CLIENT_ID_LEN];
+       char old_name[CLIENT_ID_LEN];
 
        Log( LOG_NOTICE|LOG_snotice, "Re-reading configuration NOW!" );
-       NGIRCd_SignalRehash = FALSE;
+       NGIRCd_SignalRehash = false;
 
        /* Close down all listening sockets */
        Conn_ExitListeners( );
@@ -483,8 +505,11 @@ NGIRCd_Rehash( VOID )
 } /* NGIRCd_Rehash */
 
 
-LOCAL VOID
-Initialize_Signal_Handler( VOID )
+/**
+ * Initialize the signal handler.
+ */
+LOCAL void
+Initialize_Signal_Handler( void )
 {
        /* Signal-Handler initialisieren: einige Signale
         * werden ignoriert, andere speziell behandelt. */
@@ -530,24 +555,26 @@ Initialize_Signal_Handler( VOID )
 } /* Initialize_Signal_Handler */
 
 
-LOCAL VOID
-Signal_Handler( INT Signal )
+/**
+ * Signal handler of ngIRCd.
+ * This function is called whenever ngIRCd catches a signal sent by the
+ * user and/or the system to it. For example SIGTERM and SIGHUP.
+ * @param Signal Number of the signal to handle.
+ */
+LOCAL void
+Signal_Handler( int Signal )
 {
-       /* Signal-Handler. Dieser wird aufgerufen, wenn eines der Signale eintrifft,
-        * fuer das wir uns registriert haben (vgl. Initialize_Signal_Handler). Die
-        * Nummer des eingetroffenen Signals wird der Funktion uebergeben. */
-
        switch( Signal )
        {
                case SIGTERM:
                case SIGINT:
                case SIGQUIT:
                        /* wir soll(t)en uns wohl beenden ... */
-                       NGIRCd_SignalQuit = TRUE;
+                       NGIRCd_SignalQuit = true;
                        break;
                case SIGHUP:
                        /* Konfiguration neu einlesen: */
-                       NGIRCd_SignalRehash = TRUE;
+                       NGIRCd_SignalRehash = true;
                        break;
                case SIGCHLD:
                        /* Child-Prozess wurde beendet. Zombies vermeiden: */
@@ -562,8 +589,11 @@ Signal_Handler( INT Signal )
 } /* Signal_Handler */
 
 
-LOCAL VOID
-Show_Version( VOID )
+/**
+ * Display copyright and version information of ngIRCd on the console.
+ */
+LOCAL void
+Show_Version( void )
 {
        puts( NGIRCd_Version );
        puts( "Copyright (c)2001-2005 by Alexander Barton (<alex@barton.de>)." );
@@ -573,15 +603,20 @@ Show_Version( VOID )
 } /* Show_Version */
 
 
-LOCAL VOID
-Show_Help( VOID )
+/**
+ * Display a short help text on the console.
+ * This help depends on the configuration of the executable and only shows
+ * options that are actually enabled.
+ */
+LOCAL void
+Show_Help( void )
 {
 #ifdef DEBUG
        puts( "  -d, --debug        log extra debug messages" );
 #endif
        puts( "  -f, --config <f>   use file <f> as configuration file" );
-        puts( "  -n, --nodaemon     don't fork and don't detach from controlling terminal" );
-        puts( "  -p, --passive      disable automatic connections to other servers" );
+       puts( "  -n, --nodaemon     don't fork and don't detach from controlling terminal" );
+       puts( "  -p, --passive      disable automatic connections to other servers" );
 #ifdef SNIFFER
        puts( "  -s, --sniffer      enable network sniffer and display all IRC traffic" );
 #endif
@@ -591,8 +626,11 @@ Show_Help( VOID )
 } /* Show_Help */
 
 
-LOCAL VOID
-Pidfile_Delete( VOID )
+/**
+ * Delete the file containing the process ID (PID).
+ */
+LOCAL void
+Pidfile_Delete( void )
 {
        /* Pidfile configured? */
        if( ! Conf_PidFile[0] ) return;
@@ -606,8 +644,12 @@ Pidfile_Delete( VOID )
 } /* Pidfile_Delete */
 
 
-LOCAL VOID
-Pidfile_Create( LONG pid )
+/**
+ * Create the file containing the process ID of ngIRCd ("PID file").
+ * @param pid The process ID to be stored in this file.
+ */
+LOCAL void
+Pidfile_Create( long pid )
 {
        FILE *pidf;
 
@@ -634,8 +676,11 @@ Pidfile_Create( LONG pid )
 } /* Pidfile_Create */
 
 
-LOCAL VOID
-Setup_FDStreams( VOID )
+/**
+ * Redirect stdin, stdout and stderr to apropriate file handles.
+ */
+LOCAL void
+Setup_FDStreams( void )
 {
        int fd;
 
@@ -646,18 +691,13 @@ Setup_FDStreams( VOID )
        if ( fd < 0 ) return;
 
        /* Close "old" stdin/out/err descriptors */
-       fclose( stdin ); fclose( stdout ); fclose( stderr );
+       close( 0 ); close( 1 ); close( 2 );
 
        /* Create new stdin(0), stdout(1) and stderr(2) descriptors */
        dup2( fd, 0 ); dup2( fd, 1 ); dup2( fd, 2 );
 
        /* Close newly opened file descriptor if not stdin/out/err */
        if( fd > 2 ) close( fd );
-
-       /* Assign FILE handles for stdin/out/err */
-       stdin = fdopen( 0, "r" );
-       stdout = fdopen( 1, "w" );
-       stderr = fdopen( 2, "w" );
 } /* Setup_FDStreams */