2001-12-11 22:53:04 +01:00
|
|
|
/*
|
|
|
|
* ngIRCd -- The Next Generation IRC Daemon
|
2005-01-26 23:03:15 +01:00
|
|
|
* Copyright (c)2001-2005 by Alexander Barton (alex@barton.de)
|
2001-12-11 22:53:04 +01:00
|
|
|
*
|
2002-12-12 12:30:23 +01:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* 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.
|
2001-12-11 22:53:04 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2002-03-12 15:37:51 +01:00
|
|
|
#include "portab.h"
|
2001-12-11 23:04:21 +01:00
|
|
|
|
2005-07-31 22:13:07 +02:00
|
|
|
static char UNUSED id[] = "$Id: ngircd.c,v 1.108 2005/07/31 20:13:08 alex Exp $";
|
2005-06-01 23:52:18 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* The main program, including the C function main() which is called
|
|
|
|
* by the loader of the operating system.
|
|
|
|
*/
|
2002-12-12 12:30:23 +01:00
|
|
|
|
2002-03-12 15:37:51 +01:00
|
|
|
#include "imp.h"
|
2001-12-11 22:53:04 +01:00
|
|
|
#include <assert.h>
|
2002-01-12 01:17:28 +01:00
|
|
|
#include <errno.h>
|
2001-12-11 22:53:04 +01:00
|
|
|
#include <stdio.h>
|
2002-04-04 15:03:55 +02:00
|
|
|
#include <stdlib.h>
|
2001-12-12 18:21:21 +01:00
|
|
|
#include <signal.h>
|
2002-01-11 15:45:18 +01:00
|
|
|
#include <string.h>
|
2002-01-12 01:17:28 +01:00
|
|
|
#include <unistd.h>
|
2004-01-17 04:15:45 +01:00
|
|
|
#include <time.h>
|
2002-01-02 03:44:36 +01:00
|
|
|
#include <sys/types.h>
|
2002-06-02 19:01:21 +02:00
|
|
|
#include <sys/stat.h>
|
2002-01-02 03:44:36 +01:00
|
|
|
#include <sys/wait.h>
|
2005-02-10 13:49:04 +01:00
|
|
|
#include <fcntl.h>
|
2002-11-10 14:38:41 +01:00
|
|
|
#include <pwd.h>
|
|
|
|
#include <grp.h>
|
2001-12-12 18:21:21 +01:00
|
|
|
|
2004-05-11 02:01:11 +02:00
|
|
|
#include "defines.h"
|
2002-05-27 15:00:50 +02:00
|
|
|
#include "resolve.h"
|
|
|
|
#include "conn.h"
|
2001-12-14 09:15:26 +01:00
|
|
|
#include "client.h"
|
2002-05-27 15:00:50 +02:00
|
|
|
#include "channel.h"
|
2001-12-12 18:21:21 +01:00
|
|
|
#include "conf.h"
|
2002-10-07 23:16:12 +02:00
|
|
|
#include "cvs-version.h"
|
2002-05-27 15:00:50 +02:00
|
|
|
#include "lists.h"
|
2001-12-11 22:53:04 +01:00
|
|
|
#include "log.h"
|
2001-12-21 23:24:50 +01:00
|
|
|
#include "parse.h"
|
2002-05-27 15:00:50 +02:00
|
|
|
#include "irc.h"
|
2001-12-11 22:53:04 +01:00
|
|
|
|
2005-07-08 18:18:38 +02:00
|
|
|
#ifdef ZEROCONF
|
2003-02-23 13:04:05 +01:00
|
|
|
#include "rendezvous.h"
|
|
|
|
#endif
|
|
|
|
|
2002-03-12 15:37:51 +01:00
|
|
|
#include "exp.h"
|
2001-12-11 22:53:04 +01:00
|
|
|
#include "ngircd.h"
|
|
|
|
|
|
|
|
|
2005-07-31 22:13:07 +02:00
|
|
|
static void Initialize_Signal_Handler PARAMS(( void ));
|
|
|
|
static void Signal_Handler PARAMS(( int Signal ));
|
2001-12-11 22:53:04 +01:00
|
|
|
|
2005-07-31 22:13:07 +02:00
|
|
|
static void Show_Version PARAMS(( void ));
|
|
|
|
static void Show_Help PARAMS(( void ));
|
2002-01-11 15:45:18 +01:00
|
|
|
|
2005-07-31 22:13:07 +02:00
|
|
|
static void Pidfile_Create PARAMS(( long ));
|
|
|
|
static void Pidfile_Delete PARAMS(( void ));
|
2005-02-04 15:24:20 +01:00
|
|
|
|
2005-07-31 22:13:07 +02:00
|
|
|
static void Fill_Version PARAMS(( void ));
|
2005-02-09 10:52:58 +01:00
|
|
|
|
2005-07-31 22:13:07 +02:00
|
|
|
static void Setup_FDStreams PARAMS(( void ));
|
2005-02-10 13:49:04 +01:00
|
|
|
|
2005-07-31 22:13:07 +02:00
|
|
|
static bool NGIRCd_Init PARAMS(( bool ));
|
2001-12-11 22:53:04 +01:00
|
|
|
|
2005-06-01 23:52:18 +02:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2002-05-27 15:00:50 +02:00
|
|
|
GLOBAL int
|
|
|
|
main( int argc, const char *argv[] )
|
2001-12-11 22:53:04 +01:00
|
|
|
{
|
2005-03-19 19:43:48 +01:00
|
|
|
bool ok, configtest = false;
|
2005-06-24 21:20:56 +02:00
|
|
|
bool NGIRCd_NoDaemon = false;
|
2005-03-19 19:43:48 +01:00
|
|
|
int i;
|
|
|
|
size_t n;
|
2002-01-11 15:45:18 +01:00
|
|
|
|
2002-06-02 19:01:21 +02:00
|
|
|
umask( 0077 );
|
|
|
|
|
2005-03-19 19:43:48 +01:00
|
|
|
NGIRCd_SignalQuit = NGIRCd_SignalRestart = NGIRCd_SignalRehash = false;
|
2005-06-24 21:20:56 +02:00
|
|
|
NGIRCd_Passive = false;
|
2002-01-11 15:45:18 +01:00
|
|
|
#ifdef DEBUG
|
2005-03-19 19:43:48 +01:00
|
|
|
NGIRCd_Debug = false;
|
2002-01-11 15:45:18 +01:00
|
|
|
#endif
|
2002-01-18 12:12:11 +01:00
|
|
|
#ifdef SNIFFER
|
2005-03-19 19:43:48 +01:00
|
|
|
NGIRCd_Sniffer = false;
|
2002-01-18 12:12:11 +01:00
|
|
|
#endif
|
2002-12-26 17:48:14 +01:00
|
|
|
strlcpy( NGIRCd_ConfFile, SYSCONFDIR, sizeof( NGIRCd_ConfFile ));
|
|
|
|
strlcat( NGIRCd_ConfFile, CONFIG_FILE, sizeof( NGIRCd_ConfFile ));
|
2002-01-11 15:45:18 +01:00
|
|
|
|
2005-02-10 14:09:11 +01:00
|
|
|
Fill_Version( );
|
2005-02-09 10:52:58 +01:00
|
|
|
|
2002-01-11 15:45:18 +01:00
|
|
|
/* Kommandozeile parsen */
|
|
|
|
for( i = 1; i < argc; i++ )
|
|
|
|
{
|
2005-03-19 19:43:48 +01:00
|
|
|
ok = false;
|
2002-01-11 15:45:18 +01:00
|
|
|
if(( argv[i][0] == '-' ) && ( argv[i][1] == '-' ))
|
|
|
|
{
|
|
|
|
/* Lange Option */
|
|
|
|
|
2002-03-28 15:15:33 +01:00
|
|
|
if( strcmp( argv[i], "--config" ) == 0 )
|
|
|
|
{
|
|
|
|
if( i + 1 < argc )
|
|
|
|
{
|
2002-12-26 17:25:43 +01:00
|
|
|
/* Ok, there's an parameter left */
|
|
|
|
strlcpy( NGIRCd_ConfFile, argv[i + 1], sizeof( NGIRCd_ConfFile ));
|
2002-03-28 15:15:33 +01:00
|
|
|
|
2002-12-26 17:25:43 +01:00
|
|
|
/* next parameter */
|
2005-03-19 19:43:48 +01:00
|
|
|
i++; ok = true;
|
2002-03-28 15:15:33 +01:00
|
|
|
}
|
|
|
|
}
|
2002-03-27 17:41:25 +01:00
|
|
|
if( strcmp( argv[i], "--configtest" ) == 0 )
|
|
|
|
{
|
2005-03-19 19:43:48 +01:00
|
|
|
configtest = true;
|
|
|
|
ok = true;
|
2002-03-27 17:41:25 +01:00
|
|
|
}
|
2002-02-19 21:08:24 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
if( strcmp( argv[i], "--debug" ) == 0 )
|
|
|
|
{
|
2005-03-19 19:43:48 +01:00
|
|
|
NGIRCd_Debug = true;
|
|
|
|
ok = true;
|
2002-02-19 21:08:24 +01:00
|
|
|
}
|
|
|
|
#endif
|
2002-01-11 15:45:18 +01:00
|
|
|
if( strcmp( argv[i], "--help" ) == 0 )
|
|
|
|
{
|
2002-03-27 17:41:25 +01:00
|
|
|
Show_Version( );
|
|
|
|
puts( "" ); Show_Help( ); puts( "" );
|
2002-01-11 15:45:18 +01:00
|
|
|
exit( 1 );
|
|
|
|
}
|
2002-02-19 21:08:24 +01:00
|
|
|
if( strcmp( argv[i], "--nodaemon" ) == 0 )
|
2002-01-11 15:45:18 +01:00
|
|
|
{
|
2005-03-19 19:43:48 +01:00
|
|
|
NGIRCd_NoDaemon = true;
|
|
|
|
ok = true;
|
2002-01-11 15:45:18 +01:00
|
|
|
}
|
2002-02-19 21:08:24 +01:00
|
|
|
if( strcmp( argv[i], "--passive" ) == 0 )
|
2002-01-11 15:45:18 +01:00
|
|
|
{
|
2005-03-19 19:43:48 +01:00
|
|
|
NGIRCd_Passive = true;
|
|
|
|
ok = true;
|
2002-01-11 15:45:18 +01:00
|
|
|
}
|
2002-01-18 12:12:11 +01:00
|
|
|
#ifdef SNIFFER
|
|
|
|
if( strcmp( argv[i], "--sniffer" ) == 0 )
|
|
|
|
{
|
2005-03-19 19:43:48 +01:00
|
|
|
NGIRCd_Sniffer = true;
|
|
|
|
ok = true;
|
2002-01-18 12:12:11 +01:00
|
|
|
}
|
2002-01-11 15:45:18 +01:00
|
|
|
#endif
|
2002-02-19 21:08:24 +01:00
|
|
|
if( strcmp( argv[i], "--version" ) == 0 )
|
2002-01-11 15:45:18 +01:00
|
|
|
{
|
2002-03-10 18:50:48 +01:00
|
|
|
Show_Version( );
|
2002-02-19 21:08:24 +01:00
|
|
|
exit( 1 );
|
2002-01-11 15:45:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(( argv[i][0] == '-' ) && ( argv[i][1] != '-' ))
|
|
|
|
{
|
|
|
|
/* Kurze Option */
|
2005-03-19 19:43:48 +01:00
|
|
|
for( n = 1; n < strlen( argv[i] ); n++ )
|
2002-01-11 15:45:18 +01:00
|
|
|
{
|
2005-03-19 19:43:48 +01:00
|
|
|
ok = false;
|
2002-01-11 15:45:18 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
if( argv[i][n] == 'd' )
|
|
|
|
{
|
2005-03-19 19:43:48 +01:00
|
|
|
NGIRCd_Debug = true;
|
|
|
|
ok = true;
|
2002-01-11 15:45:18 +01:00
|
|
|
}
|
2002-01-18 12:12:11 +01:00
|
|
|
#endif
|
2002-03-28 15:15:33 +01:00
|
|
|
if( argv[i][n] == 'f' )
|
|
|
|
{
|
2002-03-31 15:20:42 +02:00
|
|
|
if(( ! argv[i][n + 1] ) && ( i + 1 < argc ))
|
2002-03-28 15:15:33 +01:00
|
|
|
{
|
2002-12-26 17:25:43 +01:00
|
|
|
/* Ok, next character is a blank */
|
|
|
|
strlcpy( NGIRCd_ConfFile, argv[i + 1], sizeof( NGIRCd_ConfFile ));
|
2002-03-28 15:15:33 +01:00
|
|
|
|
2002-12-26 17:25:43 +01:00
|
|
|
/* go to the following parameter */
|
2005-03-19 19:43:48 +01:00
|
|
|
i++;
|
|
|
|
n = strlen( argv[i] );
|
|
|
|
ok = true;
|
2002-03-28 15:15:33 +01:00
|
|
|
}
|
|
|
|
}
|
2002-02-19 21:08:24 +01:00
|
|
|
if( argv[i][n] == 'n' )
|
|
|
|
{
|
2005-03-19 19:43:48 +01:00
|
|
|
NGIRCd_NoDaemon = true;
|
|
|
|
ok = true;
|
2002-02-19 21:08:24 +01:00
|
|
|
}
|
|
|
|
if( argv[i][n] == 'p' )
|
|
|
|
{
|
2005-03-19 19:43:48 +01:00
|
|
|
NGIRCd_Passive = true;
|
|
|
|
ok = true;
|
2002-02-19 21:08:24 +01:00
|
|
|
}
|
2002-01-18 12:12:11 +01:00
|
|
|
#ifdef SNIFFER
|
|
|
|
if( argv[i][n] == 's' )
|
|
|
|
{
|
2005-03-19 19:43:48 +01:00
|
|
|
NGIRCd_Sniffer = true;
|
|
|
|
ok = true;
|
2002-01-18 12:12:11 +01:00
|
|
|
}
|
2002-01-11 15:45:18 +01:00
|
|
|
#endif
|
2003-12-29 15:53:26 +01:00
|
|
|
if( argv[i][n] == 't' )
|
|
|
|
{
|
2005-03-19 19:43:48 +01:00
|
|
|
configtest = true;
|
|
|
|
ok = true;
|
2003-12-29 15:53:26 +01:00
|
|
|
}
|
2002-01-11 15:45:18 +01:00
|
|
|
|
|
|
|
if( ! ok )
|
|
|
|
{
|
2003-03-31 17:54:21 +02:00
|
|
|
printf( "%s: invalid option \"-%c\"!\n", PACKAGE_NAME, argv[i][n] );
|
|
|
|
printf( "Try \"%s --help\" for more information.\n", PACKAGE_NAME );
|
2002-01-11 15:45:18 +01:00
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
if( ! ok )
|
|
|
|
{
|
2003-03-31 17:54:21 +02:00
|
|
|
printf( "%s: invalid option \"%s\"!\n", PACKAGE_NAME, argv[i] );
|
|
|
|
printf( "Try \"%s --help\" for more information.\n", PACKAGE_NAME );
|
2002-01-11 15:45:18 +01:00
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-02-19 21:08:24 +01:00
|
|
|
/* Debug-Level (fuer IRC-Befehl "VERSION") ermitteln */
|
2005-02-09 10:52:58 +01:00
|
|
|
NGIRCd_DebugLevel[0] = '\0';
|
2002-02-19 21:08:24 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
if( NGIRCd_Debug ) strcpy( NGIRCd_DebugLevel, "1" );
|
|
|
|
#endif
|
|
|
|
#ifdef SNIFFER
|
2002-05-18 14:20:02 +02:00
|
|
|
if( NGIRCd_Sniffer )
|
|
|
|
{
|
2005-03-19 19:43:48 +01:00
|
|
|
NGIRCd_Debug = true;
|
2002-05-18 14:20:02 +02:00
|
|
|
strcpy( NGIRCd_DebugLevel, "2" );
|
|
|
|
}
|
2002-02-19 21:08:24 +01:00
|
|
|
#endif
|
2002-03-27 17:41:25 +01:00
|
|
|
|
|
|
|
/* Soll nur die Konfigurations ueberprueft und ausgegeben werden? */
|
|
|
|
if( configtest )
|
|
|
|
{
|
|
|
|
Show_Version( ); puts( "" );
|
|
|
|
exit( Conf_Test( ));
|
|
|
|
}
|
2002-02-19 21:08:24 +01:00
|
|
|
|
2002-12-19 05:29:59 +01:00
|
|
|
while( ! NGIRCd_SignalQuit )
|
2001-12-11 22:53:04 +01:00
|
|
|
{
|
2004-05-07 13:19:20 +02:00
|
|
|
/* Initialize global variables */
|
|
|
|
NGIRCd_Start = time( NULL );
|
2005-03-19 19:43:48 +01:00
|
|
|
(void)strftime( NGIRCd_StartStr, 64, "%a %b %d %Y at %H:%M:%S (%Z)", localtime( &NGIRCd_Start ));
|
2004-05-07 13:19:20 +02:00
|
|
|
|
2005-03-19 19:43:48 +01:00
|
|
|
NGIRCd_SignalRehash = false;
|
|
|
|
NGIRCd_SignalRestart = false;
|
|
|
|
NGIRCd_SignalQuit = false;
|
2004-05-07 13:19:20 +02:00
|
|
|
|
|
|
|
/* Initialize modules, part I */
|
2005-06-24 21:55:10 +02:00
|
|
|
Log_Init( ! NGIRCd_NoDaemon );
|
2004-05-07 13:19:20 +02:00
|
|
|
Conf_Init( );
|
|
|
|
|
2005-06-17 20:22:45 +02:00
|
|
|
if (!NGIRCd_Init( NGIRCd_NoDaemon )) {
|
|
|
|
Log(LOG_WARNING, "Fatal: Initialization failed");
|
|
|
|
exit(1);
|
2004-09-04 22:28:51 +02:00
|
|
|
}
|
|
|
|
|
2004-05-07 13:19:20 +02:00
|
|
|
/* Initialize modules, part II: these functions are eventually
|
|
|
|
* called with already dropped privileges ... */
|
2002-05-27 15:00:50 +02:00
|
|
|
Lists_Init( );
|
2001-12-31 03:18:51 +01:00
|
|
|
Channel_Init( );
|
|
|
|
Client_Init( );
|
2005-07-08 18:18:38 +02:00
|
|
|
#ifdef ZEROCONF
|
2003-02-23 13:04:05 +01:00
|
|
|
Rendezvous_Init( );
|
|
|
|
#endif
|
2001-12-31 03:18:51 +01:00
|
|
|
Conn_Init( );
|
|
|
|
|
2005-02-10 13:49:04 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
/* Redirect stderr handle to "error file" for debugging
|
|
|
|
* when not running in "no daemon" mode: */
|
|
|
|
if( ! NGIRCd_NoDaemon ) Log_InitErrorfile( );
|
|
|
|
#endif
|
2002-03-30 00:34:18 +01:00
|
|
|
|
2001-12-31 03:18:51 +01:00
|
|
|
/* Signal-Handler initialisieren */
|
|
|
|
Initialize_Signal_Handler( );
|
|
|
|
|
2002-09-02 23:06:11 +02:00
|
|
|
/* Protokoll- und Server-Identifikation erzeugen. Die vom ngIRCd
|
|
|
|
* beim PASS-Befehl verwendete Syntax sowie die erweiterten Flags
|
|
|
|
* sind in doc/Protocol.txt beschrieben. */
|
2002-09-07 19:57:17 +02:00
|
|
|
#ifdef IRCPLUS
|
2005-06-17 20:22:45 +02:00
|
|
|
snprintf( NGIRCd_ProtoID, sizeof NGIRCd_ProtoID, "%s%s %s|%s:%s", PROTOVER, PROTOIRCPLUS, PACKAGE_NAME, PACKAGE_VERSION, IRCPLUSFLAGS );
|
2003-12-26 16:55:07 +01:00
|
|
|
#ifdef ZLIB
|
2002-11-27 00:07:24 +01:00
|
|
|
strcat( NGIRCd_ProtoID, "Z" );
|
|
|
|
#endif
|
2002-09-02 23:06:11 +02:00
|
|
|
if( Conf_OperCanMode ) strcat( NGIRCd_ProtoID, "o" );
|
2002-09-07 19:57:17 +02:00
|
|
|
#else
|
2005-06-17 20:22:45 +02:00
|
|
|
snprintf( NGIRCd_ProtoID, sizeof NGIRCd_ProtoID, "%s%s %s|%s", PROTOVER, PROTOIRC, PACKAGE_NAME, PACKAGE_VERSION );
|
2002-09-07 19:57:17 +02:00
|
|
|
#endif
|
2005-06-17 20:22:45 +02:00
|
|
|
strlcat( NGIRCd_ProtoID, " P", sizeof NGIRCd_ProtoID );
|
2003-12-26 16:55:07 +01:00
|
|
|
#ifdef ZLIB
|
2005-06-17 20:22:45 +02:00
|
|
|
strlcat( NGIRCd_ProtoID, "Z", sizeof NGIRCd_ProtoID );
|
2002-11-27 00:07:24 +01:00
|
|
|
#endif
|
2002-09-02 21:00:25 +02:00
|
|
|
Log( LOG_DEBUG, "Protocol and server ID is \"%s\".", NGIRCd_ProtoID );
|
|
|
|
|
2002-06-02 19:13:33 +02:00
|
|
|
/* Vordefinierte Channels anlegen */
|
|
|
|
Channel_InitPredefined( );
|
|
|
|
|
2001-12-31 03:18:51 +01:00
|
|
|
/* Listen-Ports initialisieren */
|
2002-11-22 18:59:43 +01:00
|
|
|
if( Conn_InitListeners( ) < 1 )
|
|
|
|
{
|
|
|
|
Log( LOG_ALERT, "Server isn't listening on a single port!" );
|
2003-03-31 17:54:21 +02:00
|
|
|
Log( LOG_ALERT, "%s exiting due to fatal errors!", PACKAGE_NAME );
|
2005-02-04 15:24:20 +01:00
|
|
|
Pidfile_Delete( );
|
2002-11-22 18:59:43 +01:00
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
|
2001-12-31 03:18:51 +01:00
|
|
|
/* Hauptschleife */
|
2002-06-02 19:01:21 +02:00
|
|
|
Conn_Handler( );
|
2001-12-31 03:18:51 +01:00
|
|
|
|
|
|
|
/* Alles abmelden */
|
|
|
|
Conn_Exit( );
|
2005-07-08 18:18:38 +02:00
|
|
|
#ifdef ZEROCONF
|
2003-02-23 13:04:05 +01:00
|
|
|
Rendezvous_Exit( );
|
|
|
|
#endif
|
2001-12-31 03:18:51 +01:00
|
|
|
Client_Exit( );
|
|
|
|
Channel_Exit( );
|
2002-05-27 15:00:50 +02:00
|
|
|
Lists_Exit( );
|
2001-12-31 03:18:51 +01:00
|
|
|
Log_Exit( );
|
|
|
|
}
|
2005-06-17 20:22:45 +02:00
|
|
|
Pidfile_Delete( );
|
2002-03-06 16:36:04 +01:00
|
|
|
|
2001-12-11 22:53:04 +01:00
|
|
|
return 0;
|
|
|
|
} /* main */
|
|
|
|
|
|
|
|
|
2005-06-01 23:52:18 +02:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2005-07-31 22:13:07 +02:00
|
|
|
static void
|
2005-03-19 19:43:48 +01:00
|
|
|
Fill_Version( void )
|
2002-02-18 00:40:21 +01:00
|
|
|
{
|
2005-02-09 10:52:58 +01:00
|
|
|
NGIRCd_VersionAddition[0] = '\0';
|
2002-01-11 15:45:18 +01:00
|
|
|
|
2003-12-26 16:55:07 +01:00
|
|
|
#ifdef SYSLOG
|
2005-06-17 20:22:45 +02:00
|
|
|
strlcpy( NGIRCd_VersionAddition, "SYSLOG", sizeof NGIRCd_VersionAddition );
|
2002-01-11 15:45:18 +01:00
|
|
|
#endif
|
2003-12-26 16:55:07 +01:00
|
|
|
#ifdef ZLIB
|
2005-06-17 20:22:45 +02:00
|
|
|
if( NGIRCd_VersionAddition[0] )
|
|
|
|
strlcat( NGIRCd_VersionAddition, "+", sizeof NGIRCd_VersionAddition );
|
|
|
|
|
|
|
|
strlcat( NGIRCd_VersionAddition, "ZLIB", sizeof NGIRCd_VersionAddition );
|
2002-11-27 00:07:24 +01:00
|
|
|
#endif
|
2003-12-26 16:55:07 +01:00
|
|
|
#ifdef TCPWRAP
|
2005-06-17 20:22:45 +02:00
|
|
|
if( NGIRCd_VersionAddition[0] )
|
|
|
|
strlcat( NGIRCd_VersionAddition, "+", sizeof NGIRCd_VersionAddition );
|
|
|
|
|
|
|
|
strlcat( NGIRCd_VersionAddition, "TCPWRAP", sizeof NGIRCd_VersionAddition );
|
2003-03-07 15:35:52 +01:00
|
|
|
#endif
|
2005-07-08 18:18:38 +02:00
|
|
|
#ifdef ZEROCONF
|
2005-06-17 20:22:45 +02:00
|
|
|
if( NGIRCd_VersionAddition[0] )
|
|
|
|
strlcat( NGIRCd_VersionAddition, "+", sizeof NGIRCd_VersionAddition );
|
|
|
|
|
2005-07-08 18:18:38 +02:00
|
|
|
strlcat( NGIRCd_VersionAddition, "ZEROCONF", sizeof NGIRCd_VersionAddition );
|
2003-03-07 15:35:52 +01:00
|
|
|
#endif
|
2003-12-27 14:09:24 +01:00
|
|
|
#ifdef IDENTAUTH
|
2005-06-17 20:22:45 +02:00
|
|
|
if( NGIRCd_VersionAddition[0] )
|
|
|
|
strlcat( NGIRCd_VersionAddition, "+", sizeof NGIRCd_VersionAddition );
|
|
|
|
|
|
|
|
strlcat( NGIRCd_VersionAddition, "IDENT", sizeof NGIRCd_VersionAddition );
|
2003-12-27 14:09:24 +01:00
|
|
|
#endif
|
2002-01-11 15:45:18 +01:00
|
|
|
#ifdef DEBUG
|
2005-06-17 20:22:45 +02:00
|
|
|
if( NGIRCd_VersionAddition[0] )
|
|
|
|
strlcat( NGIRCd_VersionAddition, "+", sizeof NGIRCd_VersionAddition );
|
|
|
|
|
|
|
|
strlcat( NGIRCd_VersionAddition, "DEBUG", sizeof NGIRCd_VersionAddition );
|
2002-01-11 15:45:18 +01:00
|
|
|
#endif
|
|
|
|
#ifdef SNIFFER
|
2005-06-17 20:22:45 +02:00
|
|
|
if( NGIRCd_VersionAddition[0] )
|
|
|
|
strlcat( NGIRCd_VersionAddition, "+", sizeof NGIRCd_VersionAddition );
|
|
|
|
|
|
|
|
strlcat( NGIRCd_VersionAddition, "SNIFFER", sizeof NGIRCd_VersionAddition );
|
2002-01-11 15:45:18 +01:00
|
|
|
#endif
|
2002-09-07 19:57:17 +02:00
|
|
|
#ifdef STRICT_RFC
|
2005-06-17 20:22:45 +02:00
|
|
|
if( NGIRCd_VersionAddition[0] )
|
|
|
|
strlcat( NGIRCd_VersionAddition, "+", sizeof NGIRCd_VersionAddition );
|
|
|
|
|
|
|
|
strlcat( NGIRCd_VersionAddition, "RFC", sizeof NGIRCd_VersionAddition );
|
2002-09-07 19:57:17 +02:00
|
|
|
#endif
|
|
|
|
#ifdef IRCPLUS
|
2005-06-17 20:22:45 +02:00
|
|
|
if( NGIRCd_VersionAddition[0] )
|
|
|
|
strlcat( NGIRCd_VersionAddition, "+", sizeof NGIRCd_VersionAddition );
|
|
|
|
|
|
|
|
strlcat( NGIRCd_VersionAddition, "IRCPLUS", sizeof NGIRCd_VersionAddition );
|
2002-09-07 19:57:17 +02:00
|
|
|
#endif
|
2002-02-18 00:40:21 +01:00
|
|
|
|
2005-06-17 20:22:45 +02:00
|
|
|
if( NGIRCd_VersionAddition[0] )
|
|
|
|
strlcat( NGIRCd_VersionAddition, "-", sizeof( NGIRCd_VersionAddition ));
|
|
|
|
|
2005-02-09 10:52:58 +01:00
|
|
|
strlcat( NGIRCd_VersionAddition, TARGET_CPU, sizeof( NGIRCd_VersionAddition ));
|
|
|
|
strlcat( NGIRCd_VersionAddition, "/", sizeof( NGIRCd_VersionAddition ));
|
|
|
|
strlcat( NGIRCd_VersionAddition, TARGET_VENDOR, sizeof( NGIRCd_VersionAddition ));
|
|
|
|
strlcat( NGIRCd_VersionAddition, "/", sizeof( NGIRCd_VersionAddition ));
|
|
|
|
strlcat( NGIRCd_VersionAddition, TARGET_OS, sizeof( NGIRCd_VersionAddition ));
|
|
|
|
|
|
|
|
#ifdef CVSDATE
|
|
|
|
snprintf( NGIRCd_Version, sizeof NGIRCd_Version,"%s %s(%s)-%s", PACKAGE_NAME, PACKAGE_VERSION, CVSDATE, NGIRCd_VersionAddition);
|
|
|
|
#else
|
|
|
|
snprintf( NGIRCd_Version, sizeof NGIRCd_Version, "%s %s-%s", PACKAGE_NAME, PACKAGE_VERSION, NGIRCd_VersionAddition);
|
|
|
|
#endif
|
2005-02-10 14:09:11 +01:00
|
|
|
} /* Fill_Version */
|
2002-01-11 15:45:18 +01:00
|
|
|
|
|
|
|
|
2005-06-01 23:52:18 +02:00
|
|
|
/**
|
|
|
|
* Reload the server configuration file.
|
|
|
|
*/
|
2005-03-19 19:43:48 +01:00
|
|
|
GLOBAL void
|
|
|
|
NGIRCd_Rehash( void )
|
2002-11-22 18:59:43 +01:00
|
|
|
{
|
2005-03-19 19:43:48 +01:00
|
|
|
char old_name[CLIENT_ID_LEN];
|
2002-12-19 05:29:59 +01:00
|
|
|
|
|
|
|
Log( LOG_NOTICE|LOG_snotice, "Re-reading configuration NOW!" );
|
2005-03-19 19:43:48 +01:00
|
|
|
NGIRCd_SignalRehash = false;
|
2002-12-19 05:29:59 +01:00
|
|
|
|
2004-01-19 22:54:59 +01:00
|
|
|
/* Close down all listening sockets */
|
2002-11-22 18:59:43 +01:00
|
|
|
Conn_ExitListeners( );
|
|
|
|
|
2004-01-19 22:54:59 +01:00
|
|
|
/* Remember old server name */
|
2005-06-17 20:22:45 +02:00
|
|
|
strlcpy( old_name, Conf_ServerName, sizeof old_name );
|
2002-11-22 18:59:43 +01:00
|
|
|
|
2004-01-19 22:54:59 +01:00
|
|
|
/* Re-read configuration ... */
|
2002-12-30 01:01:42 +01:00
|
|
|
Conf_Rehash( );
|
2002-11-22 18:59:43 +01:00
|
|
|
|
2004-01-19 22:54:59 +01:00
|
|
|
/* Recover old server name: it can't be changed during run-time */
|
2002-11-22 18:59:43 +01:00
|
|
|
if( strcmp( old_name, Conf_ServerName ) != 0 )
|
|
|
|
{
|
2005-07-10 23:07:22 +02:00
|
|
|
strlcpy( Conf_ServerName, old_name, sizeof Conf_ServerName );
|
2002-11-22 18:59:43 +01:00
|
|
|
Log( LOG_ERR, "Can't change \"ServerName\" on runtime! Ignored new name." );
|
|
|
|
}
|
|
|
|
|
2004-01-19 22:54:59 +01:00
|
|
|
/* Create new pre-defined channels */
|
2002-11-22 18:59:43 +01:00
|
|
|
Channel_InitPredefined( );
|
|
|
|
|
2004-01-19 22:54:59 +01:00
|
|
|
/* Start listening on sockets */
|
2002-11-22 18:59:43 +01:00
|
|
|
Conn_InitListeners( );
|
|
|
|
|
2003-03-27 02:22:44 +01:00
|
|
|
/* Sync configuration with established connections */
|
|
|
|
Conn_SyncServerStruct( );
|
|
|
|
|
2002-12-19 05:29:59 +01:00
|
|
|
Log( LOG_NOTICE|LOG_snotice, "Re-reading of configuration done." );
|
2002-11-23 00:31:23 +01:00
|
|
|
} /* NGIRCd_Rehash */
|
2002-11-22 18:59:43 +01:00
|
|
|
|
|
|
|
|
2005-06-01 23:52:18 +02:00
|
|
|
/**
|
|
|
|
* Initialize the signal handler.
|
|
|
|
*/
|
2005-07-31 22:13:07 +02:00
|
|
|
static void
|
2005-03-19 19:43:48 +01:00
|
|
|
Initialize_Signal_Handler( void )
|
2001-12-12 18:21:21 +01:00
|
|
|
{
|
2001-12-26 15:45:37 +01:00
|
|
|
/* Signal-Handler initialisieren: einige Signale
|
|
|
|
* werden ignoriert, andere speziell behandelt. */
|
2001-12-12 18:21:21 +01:00
|
|
|
|
2002-02-25 12:42:47 +01:00
|
|
|
#ifdef HAVE_SIGACTION
|
|
|
|
/* sigaction() ist vorhanden */
|
|
|
|
|
2001-12-12 18:21:21 +01:00
|
|
|
struct sigaction saction;
|
|
|
|
|
|
|
|
/* Signal-Struktur initialisieren */
|
|
|
|
memset( &saction, 0, sizeof( saction ));
|
2002-01-22 18:15:39 +01:00
|
|
|
saction.sa_handler = Signal_Handler;
|
2002-02-19 21:30:47 +01:00
|
|
|
#ifdef SA_RESTART
|
2002-02-23 20:06:47 +01:00
|
|
|
saction.sa_flags |= SA_RESTART;
|
|
|
|
#endif
|
|
|
|
#ifdef SA_NOCLDWAIT
|
|
|
|
saction.sa_flags |= SA_NOCLDWAIT;
|
2002-02-19 21:30:47 +01:00
|
|
|
#endif
|
2001-12-12 18:21:21 +01:00
|
|
|
|
|
|
|
/* Signal-Handler einhaengen */
|
|
|
|
sigaction( SIGINT, &saction, NULL );
|
|
|
|
sigaction( SIGQUIT, &saction, NULL );
|
|
|
|
sigaction( SIGTERM, &saction, NULL);
|
2002-02-18 00:40:21 +01:00
|
|
|
sigaction( SIGHUP, &saction, NULL);
|
2002-01-02 03:44:36 +01:00
|
|
|
sigaction( SIGCHLD, &saction, NULL);
|
2001-12-24 02:34:38 +01:00
|
|
|
|
|
|
|
/* einige Signale ignorieren */
|
|
|
|
saction.sa_handler = SIG_IGN;
|
|
|
|
sigaction( SIGPIPE, &saction, NULL );
|
2002-02-25 12:42:47 +01:00
|
|
|
#else
|
|
|
|
/* kein sigaction() vorhanden */
|
|
|
|
|
|
|
|
/* Signal-Handler einhaengen */
|
|
|
|
signal( SIGINT, Signal_Handler );
|
|
|
|
signal( SIGQUIT, Signal_Handler );
|
|
|
|
signal( SIGTERM, Signal_Handler );
|
|
|
|
signal( SIGHUP, Signal_Handler );
|
|
|
|
signal( SIGCHLD, Signal_Handler );
|
|
|
|
|
|
|
|
/* einige Signale ignorieren */
|
|
|
|
signal( SIGPIPE, SIG_IGN );
|
|
|
|
#endif
|
2001-12-12 18:21:21 +01:00
|
|
|
} /* Initialize_Signal_Handler */
|
|
|
|
|
|
|
|
|
2005-06-01 23:52:18 +02:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2005-07-31 22:13:07 +02:00
|
|
|
static void
|
2005-03-19 19:43:48 +01:00
|
|
|
Signal_Handler( int Signal )
|
2001-12-11 22:53:04 +01:00
|
|
|
{
|
|
|
|
switch( Signal )
|
|
|
|
{
|
|
|
|
case SIGTERM:
|
2001-12-12 02:40:39 +01:00
|
|
|
case SIGINT:
|
|
|
|
case SIGQUIT:
|
2001-12-12 18:21:21 +01:00
|
|
|
/* wir soll(t)en uns wohl beenden ... */
|
2005-03-19 19:43:48 +01:00
|
|
|
NGIRCd_SignalQuit = true;
|
2001-12-11 22:53:04 +01:00
|
|
|
break;
|
2002-02-18 00:40:21 +01:00
|
|
|
case SIGHUP:
|
2002-11-22 18:59:43 +01:00
|
|
|
/* Konfiguration neu einlesen: */
|
2005-03-19 19:43:48 +01:00
|
|
|
NGIRCd_SignalRehash = true;
|
2002-02-18 00:40:21 +01:00
|
|
|
break;
|
2002-01-02 03:44:36 +01:00
|
|
|
case SIGCHLD:
|
|
|
|
/* Child-Prozess wurde beendet. Zombies vermeiden: */
|
|
|
|
while( waitpid( -1, NULL, WNOHANG ) > 0);
|
|
|
|
break;
|
2002-12-19 05:29:59 +01:00
|
|
|
#ifdef DEBUG
|
2001-12-11 22:53:04 +01:00
|
|
|
default:
|
2001-12-12 18:21:21 +01:00
|
|
|
/* unbekanntes bzw. unbehandeltes Signal */
|
2002-12-19 05:29:59 +01:00
|
|
|
Log( LOG_DEBUG, "Got signal %d! Ignored.", Signal );
|
|
|
|
#endif
|
2001-12-11 22:53:04 +01:00
|
|
|
}
|
|
|
|
} /* Signal_Handler */
|
|
|
|
|
|
|
|
|
2005-06-01 23:52:18 +02:00
|
|
|
/**
|
|
|
|
* Display copyright and version information of ngIRCd on the console.
|
|
|
|
*/
|
2005-07-31 22:13:07 +02:00
|
|
|
static void
|
2005-03-19 19:43:48 +01:00
|
|
|
Show_Version( void )
|
2002-01-11 15:45:18 +01:00
|
|
|
{
|
2005-02-09 10:52:58 +01:00
|
|
|
puts( NGIRCd_Version );
|
2005-01-26 23:03:15 +01:00
|
|
|
puts( "Copyright (c)2001-2005 by Alexander Barton (<alex@barton.de>)." );
|
2002-04-01 19:05:48 +02:00
|
|
|
puts( "Homepage: <http://arthur.ath.cx/~alex/ngircd/>\n" );
|
2002-01-11 15:45:18 +01:00
|
|
|
puts( "This is free software; see the source for copying conditions. There is NO" );
|
|
|
|
puts( "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." );
|
|
|
|
} /* Show_Version */
|
|
|
|
|
|
|
|
|
2005-06-01 23:52:18 +02:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2005-07-31 22:13:07 +02:00
|
|
|
static void
|
2005-03-19 19:43:48 +01:00
|
|
|
Show_Help( void )
|
2002-01-11 15:45:18 +01:00
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
2002-03-28 15:15:33 +01:00
|
|
|
puts( " -d, --debug log extra debug messages" );
|
2002-01-11 15:45:18 +01:00
|
|
|
#endif
|
2002-03-28 15:15:33 +01:00
|
|
|
puts( " -f, --config <f> use file <f> as configuration file" );
|
2005-02-11 14:52:37 +01:00
|
|
|
puts( " -n, --nodaemon don't fork and don't detach from controlling terminal" );
|
|
|
|
puts( " -p, --passive disable automatic connections to other servers" );
|
2002-01-21 01:02:11 +01:00
|
|
|
#ifdef SNIFFER
|
2002-03-28 15:15:33 +01:00
|
|
|
puts( " -s, --sniffer enable network sniffer and display all IRC traffic" );
|
2002-01-21 01:02:11 +01:00
|
|
|
#endif
|
2003-12-29 15:53:26 +01:00
|
|
|
puts( " -t, --configtest read, validate and display configuration; then exit" );
|
2002-03-28 15:15:33 +01:00
|
|
|
puts( " --version output version information and exit" );
|
|
|
|
puts( " --help display this help and exit" );
|
2002-01-11 15:45:18 +01:00
|
|
|
} /* Show_Help */
|
|
|
|
|
|
|
|
|
2005-06-01 23:52:18 +02:00
|
|
|
/**
|
|
|
|
* Delete the file containing the process ID (PID).
|
|
|
|
*/
|
2005-07-31 22:13:07 +02:00
|
|
|
static void
|
2005-03-19 19:43:48 +01:00
|
|
|
Pidfile_Delete( void )
|
2005-02-04 15:24:20 +01:00
|
|
|
{
|
|
|
|
/* Pidfile configured? */
|
|
|
|
if( ! Conf_PidFile[0] ) return;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
Log( LOG_DEBUG, "Removing PID file (%s) ...", Conf_PidFile );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if( unlink( Conf_PidFile ))
|
|
|
|
Log( LOG_ERR, "Error unlinking PID file (%s): %s", Conf_PidFile, strerror( errno ));
|
|
|
|
} /* Pidfile_Delete */
|
|
|
|
|
|
|
|
|
2005-06-01 23:52:18 +02:00
|
|
|
/**
|
|
|
|
* Create the file containing the process ID of ngIRCd ("PID file").
|
|
|
|
* @param pid The process ID to be stored in this file.
|
|
|
|
*/
|
2005-07-31 22:13:07 +02:00
|
|
|
static void
|
2005-03-19 19:43:48 +01:00
|
|
|
Pidfile_Create( long pid )
|
2005-02-04 15:24:20 +01:00
|
|
|
{
|
2005-06-17 20:22:45 +02:00
|
|
|
int pidfd;
|
|
|
|
char pidbuf[64];
|
|
|
|
int len;
|
2005-02-04 15:24:20 +01:00
|
|
|
|
|
|
|
/* Pidfile configured? */
|
|
|
|
if( ! Conf_PidFile[0] ) return;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
Log( LOG_DEBUG, "Creating PID file (%s) ...", Conf_PidFile );
|
|
|
|
#endif
|
|
|
|
|
2005-06-17 20:22:45 +02:00
|
|
|
pidfd = open( Conf_PidFile, O_RDWR|O_CREAT|O_EXCL, S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH);
|
|
|
|
if ( pidfd < 0 ) {
|
2005-02-04 15:24:20 +01:00
|
|
|
Log( LOG_ERR, "Error writing PID file (%s): %s", Conf_PidFile, strerror( errno ));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-06-17 20:22:45 +02:00
|
|
|
len = snprintf( pidbuf, sizeof pidbuf, "%ld\n", pid );
|
|
|
|
if (len < 0|| len < (int)sizeof pid) {
|
|
|
|
Log( LOG_ERR, "Error converting pid");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( write( pidfd, pidbuf, len) != len)
|
2005-02-04 15:24:20 +01:00
|
|
|
Log( LOG_ERR, "Can't write PID file (%s): %s", Conf_PidFile, strerror( errno ));
|
|
|
|
|
2005-06-17 20:22:45 +02:00
|
|
|
if( close(pidfd) != 0 )
|
2005-02-04 15:24:20 +01:00
|
|
|
Log( LOG_ERR, "Error closing PID file (%s): %s", Conf_PidFile, strerror( errno ));
|
|
|
|
} /* Pidfile_Create */
|
|
|
|
|
|
|
|
|
2005-06-01 23:52:18 +02:00
|
|
|
/**
|
|
|
|
* Redirect stdin, stdout and stderr to apropriate file handles.
|
|
|
|
*/
|
2005-07-31 22:13:07 +02:00
|
|
|
static void
|
2005-03-19 19:43:48 +01:00
|
|
|
Setup_FDStreams( void )
|
2005-02-10 13:49:04 +01:00
|
|
|
{
|
2005-03-19 19:43:48 +01:00
|
|
|
int fd;
|
2005-02-10 13:49:04 +01:00
|
|
|
|
|
|
|
/* Test if we can open /dev/null for reading and writing. If not
|
|
|
|
* we are most probably chrooted already and the server has been
|
|
|
|
* restarted. So we simply don't try to redirect stdXXX ... */
|
|
|
|
fd = open( "/dev/null", O_RDWR );
|
2005-06-17 20:22:45 +02:00
|
|
|
if ( fd < 0 ) {
|
|
|
|
Log(LOG_WARNING, "Could not open /dev/null: %s", strerror(errno));
|
|
|
|
return;
|
|
|
|
}
|
2005-02-10 13:49:04 +01:00
|
|
|
|
2005-06-17 20:22:45 +02:00
|
|
|
fflush(stdout);
|
|
|
|
fflush(stderr);
|
2005-02-10 13:49:04 +01:00
|
|
|
|
|
|
|
/* 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 );
|
|
|
|
} /* Setup_FDStreams */
|
|
|
|
|
|
|
|
|
2005-07-31 22:13:07 +02:00
|
|
|
static bool
|
2005-06-17 20:22:45 +02:00
|
|
|
NGIRCd_getNobodyID(unsigned int *uid, unsigned int *gid )
|
|
|
|
{
|
|
|
|
struct passwd *pwd;
|
|
|
|
|
|
|
|
pwd = getpwnam("nobody");
|
|
|
|
if (!pwd) return false;
|
|
|
|
|
|
|
|
if ( !pwd->pw_uid || !pwd->pw_gid)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
*uid = pwd->pw_uid;
|
|
|
|
*gid = pwd->pw_gid;
|
|
|
|
endpwent();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-31 22:13:07 +02:00
|
|
|
static bool
|
2005-06-17 20:22:45 +02:00
|
|
|
NGIRCd_Init( bool NGIRCd_NoDaemon )
|
|
|
|
{
|
|
|
|
static bool initialized;
|
|
|
|
bool chrooted = false;
|
|
|
|
struct passwd *pwd;
|
|
|
|
struct group *grp;
|
|
|
|
int real_errno;
|
|
|
|
long pid;
|
|
|
|
|
|
|
|
if (initialized)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if( Conf_Chroot[0] ) {
|
|
|
|
if( chdir( Conf_Chroot ) != 0 ) {
|
|
|
|
Log( LOG_ERR, "Can't chdir() in ChrootDir (%s): %s", Conf_Chroot, strerror( errno ));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( chroot( Conf_Chroot ) != 0 ) {
|
|
|
|
if (errno != EPERM) {
|
|
|
|
Log( LOG_ERR, "Can't change root directory to \"%s\": %s",
|
|
|
|
Conf_Chroot, strerror( errno ));
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
chrooted = true;
|
|
|
|
Log( LOG_INFO, "Changed root and working directory to \"%s\".", Conf_Chroot );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-09 01:19:20 +02:00
|
|
|
if (Conf_UID == 0) {
|
|
|
|
Log(LOG_INFO, "ServerUID must not be 0, using \"nobody\" instead.", Conf_UID);
|
2005-06-17 20:22:45 +02:00
|
|
|
|
2005-07-09 01:19:20 +02:00
|
|
|
if (! NGIRCd_getNobodyID(&Conf_UID, &Conf_GID)) {
|
|
|
|
Log(LOG_WARNING, "Could not get user/group ID of user \"nobody\": %s",
|
2005-06-17 20:22:45 +02:00
|
|
|
errno ? strerror(errno) : "not found" );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-09 01:19:20 +02:00
|
|
|
if (getgid() != Conf_GID) {
|
|
|
|
/* Change group ID */
|
|
|
|
if (setgid(Conf_GID) != 0) {
|
|
|
|
real_errno = errno;
|
|
|
|
Log( LOG_ERR, "Can't change group ID to %u: %s", Conf_GID, strerror( errno ));
|
|
|
|
if (real_errno != EPERM)
|
|
|
|
return false;
|
|
|
|
}
|
2005-06-17 20:22:45 +02:00
|
|
|
}
|
|
|
|
|
2005-07-09 01:19:20 +02:00
|
|
|
if (getuid() != Conf_UID) {
|
|
|
|
/* Change user ID */
|
|
|
|
if (setuid(Conf_UID) != 0) {
|
|
|
|
real_errno = errno;
|
|
|
|
Log(LOG_ERR, "Can't change user ID to %u: %s", Conf_UID, strerror(errno));
|
|
|
|
if (real_errno != EPERM)
|
|
|
|
return false;
|
|
|
|
}
|
2005-06-17 20:22:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
initialized = true;
|
|
|
|
|
|
|
|
/* Normally a child process is forked which isn't any longer
|
|
|
|
* connected to ther controlling terminal. Use "--nodaemon"
|
|
|
|
* to disable this "daemon mode" (useful for debugging). */
|
|
|
|
if ( ! NGIRCd_NoDaemon ) {
|
|
|
|
pid = (long)fork( );
|
|
|
|
if( pid > 0 ) {
|
|
|
|
/* "Old" process: exit. */
|
|
|
|
exit( 0 );
|
|
|
|
}
|
|
|
|
if( pid < 0 ) {
|
|
|
|
/* Error!? */
|
|
|
|
fprintf( stderr, "%s: Can't fork: %s!\nFatal error, exiting now ...\n",
|
|
|
|
PACKAGE_NAME, strerror( errno ));
|
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* New child process */
|
|
|
|
(void)setsid( );
|
|
|
|
chdir( "/" );
|
|
|
|
|
|
|
|
/* Detach stdin, stdout and stderr */
|
|
|
|
Setup_FDStreams( );
|
|
|
|
}
|
|
|
|
pid = getpid();
|
|
|
|
|
|
|
|
Pidfile_Create( pid );
|
|
|
|
|
2005-07-09 01:19:20 +02:00
|
|
|
/* Check UID/GID we are running as, can be different from values
|
|
|
|
* configured (e. g. if we were already started with a UID>0. */
|
2005-06-17 20:22:45 +02:00
|
|
|
Conf_UID = getuid();
|
|
|
|
Conf_GID = getgid();
|
|
|
|
|
|
|
|
pwd = getpwuid( Conf_UID );
|
|
|
|
grp = getgrgid( Conf_GID );
|
2005-07-09 01:19:20 +02:00
|
|
|
|
2005-06-17 20:22:45 +02:00
|
|
|
Log( LOG_INFO, "Running as user %s(%ld), group %s(%ld), with PID %ld.",
|
|
|
|
pwd ? pwd->pw_name : "unknown", Conf_UID,
|
|
|
|
grp ? grp->gr_name : "unknown", Conf_GID, pid);
|
|
|
|
|
|
|
|
if ( chrooted ) {
|
|
|
|
Log( LOG_INFO, "Running chrooted, chrootdir \"%s\".", Conf_Chroot );
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
Log( LOG_INFO, "Not running chrooted." );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Change working directory to home directory of the user
|
2005-06-17 22:35:45 +02:00
|
|
|
* we are running as (only when running in daemon mode and not in chroot) */
|
2005-06-17 20:22:45 +02:00
|
|
|
|
2005-06-18 01:13:41 +02:00
|
|
|
if ( pwd ) {
|
|
|
|
if (!NGIRCd_NoDaemon ) {
|
|
|
|
if( chdir( pwd->pw_dir ) == 0 )
|
|
|
|
Log( LOG_DEBUG, "Changed working directory to \"%s\" ...", pwd->pw_dir );
|
|
|
|
else
|
|
|
|
Log( LOG_ERR, "Can't change working directory to \"%s\": %s",
|
|
|
|
pwd->pw_dir, strerror( errno ));
|
2005-06-18 01:17:09 +02:00
|
|
|
}
|
2005-06-17 20:22:45 +02:00
|
|
|
} else {
|
|
|
|
Log( LOG_ERR, "Can't get user informaton for UID %d!?", Conf_UID );
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2001-12-11 22:53:04 +01:00
|
|
|
/* -eof- */
|