Blob


1 /*
2 * ngIRCd -- The Next Generation IRC Daemon
3 * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
4 *
5 * Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen
6 * der GNU General Public License (GPL), wie von der Free Software Foundation
7 * herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2
8 * der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version.
9 * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
10 * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
11 *
12 * $Id: conf.c,v 1.38 2002/11/19 12:50:20 alex Exp $
13 *
14 * conf.h: Konfiguration des ngircd
15 */
18 #include "portab.h"
20 #include "imp.h"
21 #include <assert.h>
22 #include <errno.h>
23 #include <stdarg.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <unistd.h>
28 #include <pwd.h>
29 #include <grp.h>
30 #include <sys/types.h>
32 #include "ngircd.h"
33 #include "conn.h"
34 #include "client.h"
35 #include "defines.h"
36 #include "log.h"
37 #include "resolve.h"
38 #include "tool.h"
40 #include "exp.h"
41 #include "conf.h"
44 LOCAL BOOLEAN Use_Log = TRUE;
47 LOCAL VOID Set_Defaults PARAMS(( VOID ));
48 LOCAL VOID Read_Config PARAMS(( VOID ));
49 LOCAL VOID Validate_Config PARAMS(( VOID ));
51 LOCAL VOID Handle_GLOBAL PARAMS(( INT Line, CHAR *Var, CHAR *Arg ));
52 LOCAL VOID Handle_OPERATOR PARAMS(( INT Line, CHAR *Var, CHAR *Arg ));
53 LOCAL VOID Handle_SERVER PARAMS(( INT Line, CHAR *Var, CHAR *Arg ));
54 LOCAL VOID Handle_CHANNEL PARAMS(( INT Line, CHAR *Var, CHAR *Arg ));
56 LOCAL VOID Config_Error PARAMS(( CONST INT Level, CONST CHAR *Format, ... ));
59 GLOBAL VOID
60 Conf_Init( VOID )
61 {
62 Set_Defaults( );
63 Read_Config( );
64 Validate_Config( );
65 } /* Config_Init */
68 GLOBAL INT
69 Conf_Test( VOID )
70 {
71 /* Konfiguration einlesen, ueberpruefen und ausgeben. */
73 struct passwd *pwd;
74 struct group *grp;
75 INT i;
77 Use_Log = FALSE;
78 Set_Defaults( );
80 printf( "Using \"%s\" as configuration file ...\n", NGIRCd_ConfFile );
81 Read_Config( );
83 /* Wenn stdin ein ein TTY ist: auf Taste warten */
84 if( isatty( fileno( stdout )))
85 {
86 puts( "OK, press enter to see a dump of your service configuration ..." );
87 getchar( );
88 }
89 else puts( "Ok, dump of your server configuration follows:\n" );
91 puts( "[GLOBAL]" );
92 printf( " ServerName = %s\n", Conf_ServerName );
93 printf( " ServerInfo = %s\n", Conf_ServerInfo );
94 printf( " ServerPwd = %s\n", Conf_ServerPwd );
95 printf( " AdminInfo1 = %s\n", Conf_ServerAdmin1 );
96 printf( " AdminInfo2 = %s\n", Conf_ServerAdmin2 );
97 printf( " AdminEMail = %s\n", Conf_ServerAdminMail );
98 printf( " MotdFile = %s\n", Conf_MotdFile );
99 printf( " Ports = " );
100 for( i = 0; i < Conf_ListenPorts_Count; i++ )
102 if( i != 0 ) printf( ", " );
103 printf( "%u", Conf_ListenPorts[i] );
105 puts( "" );
106 pwd = getpwuid( Conf_UID );
107 if( pwd ) printf( " ServerUID = %s\n", pwd->pw_name );
108 else printf( " ServerUID = %ld\n", (LONG)Conf_UID );
109 grp = getgrgid( Conf_GID );
110 if( grp ) printf( " ServerGID = %s\n", grp->gr_name );
111 else printf( " ServerGID = %ld\n", (LONG)Conf_GID );
112 printf( " PingTimeout = %d\n", Conf_PingTimeout );
113 printf( " PongTimeout = %d\n", Conf_PongTimeout );
114 printf( " ConnectRetry = %d\n", Conf_ConnectRetry );
115 printf( " OperCanUseMode = %s\n", Conf_OperCanMode == TRUE ? "yes" : "no" );
116 if( Conf_MaxConnections > 0 ) printf( " MaxConnections = %ld\n", Conf_MaxConnections );
117 else printf( " MaxConnections = -1\n" );
118 puts( "" );
120 for( i = 0; i < Conf_Oper_Count; i++ )
122 if( ! Conf_Oper[i].name[0] ) continue;
124 /* gueltiger Operator-Block: ausgeben */
125 puts( "[OPERATOR]" );
126 printf( " Name = %s\n", Conf_Oper[i].name );
127 printf( " Password = %s\n", Conf_Oper[i].pwd );
128 puts( "" );
131 for( i = 0; i < Conf_Server_Count; i++ )
133 if( ! Conf_Server[i].name[0] ) continue;
134 if( ! Conf_Server[i].host[0] ) continue;
136 /* gueltiger Server-Block: ausgeben */
137 puts( "[SERVER]" );
138 printf( " Name = %s\n", Conf_Server[i].name );
139 printf( " Host = %s\n", Conf_Server[i].host );
140 printf( " Port = %d\n", Conf_Server[i].port );
141 printf( " MyPassword = %s\n", Conf_Server[i].pwd_in );
142 printf( " PeerPassword = %s\n", Conf_Server[i].pwd_out );
143 printf( " Group = %d\n", Conf_Server[i].group );
144 puts( "" );
147 for( i = 0; i < Conf_Channel_Count; i++ )
149 if( ! Conf_Channel[i].name[0] ) continue;
151 /* gueltiger Channel-Block: ausgeben */
152 puts( "[CHANNEL]" );
153 printf( " Name = %s\n", Conf_Channel[i].name );
154 printf( " Modes = %s\n", Conf_Channel[i].modes );
155 printf( " Topic = %s\n", Conf_Channel[i].topic );
156 puts( "" );
159 return 0;
160 } /* Conf_Test */
163 LOCAL VOID
164 Set_Defaults( VOID )
166 /* Konfigurationsvariablen initialisieren, d.h. auf Default-Werte setzen. */
168 strcpy( Conf_ServerName, "" );
169 sprintf( Conf_ServerInfo, "%s %s", PACKAGE, VERSION );
170 strcpy( Conf_ServerPwd, "" );
172 strcpy( Conf_ServerAdmin1, "" );
173 strcpy( Conf_ServerAdmin2, "" );
174 strcpy( Conf_ServerAdminMail, "" );
176 strcpy( Conf_MotdFile, MOTD_FILE );
178 Conf_ListenPorts_Count = 0;
180 Conf_UID = Conf_GID = 0;
182 Conf_PingTimeout = 120;
183 Conf_PongTimeout = 20;
185 Conf_ConnectRetry = 60;
187 Conf_Oper_Count = 0;
188 Conf_Server_Count = 0;
189 Conf_Channel_Count = 0;
191 Conf_OperCanMode = FALSE;
193 Conf_MaxConnections = 0;
194 } /* Set_Defaults */
197 LOCAL VOID
198 Read_Config( VOID )
200 /* Konfigurationsdatei einlesen. */
202 CHAR section[LINE_LEN], str[LINE_LEN], *var, *arg, *ptr;
203 INT line;
204 FILE *fd;
206 fd = fopen( NGIRCd_ConfFile, "r" );
207 if( ! fd )
209 /* Keine Konfigurationsdatei gefunden */
210 Config_Error( LOG_ALERT, "Can't read configuration \"%s\": %s", NGIRCd_ConfFile, strerror( errno ));
211 Config_Error( LOG_ALERT, "%s exiting due to fatal errors!", PACKAGE );
212 exit( 1 );
215 line = 0;
216 strcpy( section, "" );
217 while( TRUE )
219 if( ! fgets( str, LINE_LEN, fd )) break;
220 ngt_TrimStr( str );
221 line++;
223 /* Kommentarzeilen und leere Zeilen ueberspringen */
224 if( str[0] == ';' || str[0] == '#' || str[0] == '\0' ) continue;
226 /* Anfang eines Abschnittes? */
227 if(( str[0] == '[' ) && ( str[strlen( str ) - 1] == ']' ))
229 strcpy( section, str );
230 if( strcasecmp( section, "[GLOBAL]" ) == 0 ) continue;
231 if( strcasecmp( section, "[OPERATOR]" ) == 0 )
233 if( Conf_Oper_Count + 1 > MAX_OPERATORS ) Config_Error( LOG_ERR, "Too many operators configured." );
234 else
236 /* neuen Operator initialisieren */
237 strcpy( Conf_Oper[Conf_Oper_Count].name, "" );
238 strcpy( Conf_Oper[Conf_Oper_Count].pwd, "" );
239 Conf_Oper_Count++;
241 continue;
243 if( strcasecmp( section, "[SERVER]" ) == 0 )
245 if( Conf_Server_Count + 1 > MAX_SERVERS ) Config_Error( LOG_ERR, "Too many servers configured." );
246 else
248 /* neuen Server ("Peer") initialisieren */
249 strcpy( Conf_Server[Conf_Server_Count].host, "" );
250 strcpy( Conf_Server[Conf_Server_Count].ip, "" );
251 strcpy( Conf_Server[Conf_Server_Count].name, "" );
252 strcpy( Conf_Server[Conf_Server_Count].pwd_in, "" );
253 strcpy( Conf_Server[Conf_Server_Count].pwd_out, "" );
254 Conf_Server[Conf_Server_Count].port = 0;
255 Conf_Server[Conf_Server_Count].group = -1;
256 Conf_Server[Conf_Server_Count].lasttry = time( NULL ) - Conf_ConnectRetry + STARTUP_DELAY;
257 Conf_Server[Conf_Server_Count].res_stat = NULL;
258 Conf_Server_Count++;
260 continue;
262 if( strcasecmp( section, "[CHANNEL]" ) == 0 )
264 if( Conf_Channel_Count + 1 > MAX_DEFCHANNELS ) Config_Error( LOG_ERR, "Too many pre-defined channels configured." );
265 else
267 /* neuen vordefinierten Channel initialisieren */
268 strcpy( Conf_Channel[Conf_Channel_Count].name, "" );
269 strcpy( Conf_Channel[Conf_Channel_Count].modes, "" );
270 strcpy( Conf_Channel[Conf_Channel_Count].topic, "" );
271 Conf_Channel_Count++;
273 continue;
275 Config_Error( LOG_ERR, "%s, line %d: Unknown section \"%s\"!", NGIRCd_ConfFile, line, section );
276 section[0] = 0x1;
278 if( section[0] == 0x1 ) continue;
280 /* In Variable und Argument zerlegen */
281 ptr = strchr( str, '=' );
282 if( ! ptr )
284 Config_Error( LOG_ERR, "%s, line %d: Syntax error!", NGIRCd_ConfFile, line );
285 continue;
287 *ptr = '\0';
288 var = str; ngt_TrimStr( var );
289 arg = ptr + 1; ngt_TrimStr( arg );
291 if( strcasecmp( section, "[GLOBAL]" ) == 0 ) Handle_GLOBAL( line, var, arg );
292 else if( strcasecmp( section, "[OPERATOR]" ) == 0 ) Handle_OPERATOR( line, var, arg );
293 else if( strcasecmp( section, "[SERVER]" ) == 0 ) Handle_SERVER( line, var, arg );
294 else if( strcasecmp( section, "[CHANNEL]" ) == 0 ) Handle_CHANNEL( line, var, arg );
295 else Config_Error( LOG_ERR, "%s, line %d: Variable \"%s\" outside section!", NGIRCd_ConfFile, line, var );
298 fclose( fd );
300 /* Wenn kein Port definiert wurde, Port 6667 als Default benutzen */
301 if( Conf_ListenPorts_Count < 1 )
303 Conf_ListenPorts_Count = 1;
304 Conf_ListenPorts[0] = 6667;
306 } /* Read_Config */
309 LOCAL VOID
310 Handle_GLOBAL( INT Line, CHAR *Var, CHAR *Arg )
312 struct passwd *pwd;
313 struct group *grp;
314 CHAR *ptr;
315 LONG port;
317 assert( Line > 0 );
318 assert( Var != NULL );
319 assert( Arg != NULL );
321 if( strcasecmp( Var, "Name" ) == 0 )
323 /* Der Server-Name */
324 strncpy( Conf_ServerName, Arg, CLIENT_ID_LEN - 1 );
325 Conf_ServerName[CLIENT_ID_LEN - 1] = '\0';
326 return;
328 if( strcasecmp( Var, "Info" ) == 0 )
330 /* Server-Info-Text */
331 strncpy( Conf_ServerInfo, Arg, CLIENT_INFO_LEN - 1 );
332 Conf_ServerInfo[CLIENT_INFO_LEN - 1] = '\0';
333 return;
335 if( strcasecmp( Var, "Password" ) == 0 )
337 /* Server-Passwort */
338 strncpy( Conf_ServerPwd, Arg, CLIENT_PASS_LEN - 1 );
339 Conf_ServerPwd[CLIENT_PASS_LEN - 1] = '\0';
340 return;
342 if( strcasecmp( Var, "AdminInfo1" ) == 0 )
344 /* Server-Info-Text */
345 strncpy( Conf_ServerAdmin1, Arg, CLIENT_INFO_LEN - 1 );
346 Conf_ServerAdmin1[CLIENT_INFO_LEN - 1] = '\0';
347 return;
349 if( strcasecmp( Var, "AdminInfo2" ) == 0 )
351 /* Server-Info-Text */
352 strncpy( Conf_ServerAdmin2, Arg, CLIENT_INFO_LEN - 1 );
353 Conf_ServerAdmin2[CLIENT_INFO_LEN - 1] = '\0';
354 return;
356 if( strcasecmp( Var, "AdminEMail" ) == 0 )
358 /* Server-Info-Text */
359 strncpy( Conf_ServerAdminMail, Arg, CLIENT_INFO_LEN - 1 );
360 Conf_ServerAdminMail[CLIENT_INFO_LEN - 1] = '\0';
361 return;
363 if( strcasecmp( Var, "Ports" ) == 0 )
365 /* Ports, durch "," getrennt, auf denen der Server
366 * Verbindungen annehmen soll */
367 ptr = strtok( Arg, "," );
368 while( ptr )
370 ngt_TrimStr( ptr );
371 port = atol( ptr );
372 if( Conf_ListenPorts_Count + 1 > MAX_LISTEN_PORTS ) Config_Error( LOG_ERR, "Too many listen ports configured. Port %ld ignored.", port );
373 else
375 if( port > 0 && port < 0xFFFF ) Conf_ListenPorts[Conf_ListenPorts_Count++] = (UINT)port;
376 else Config_Error( LOG_ERR, "%s, line %d (section \"Global\"): Illegal port number %ld!", NGIRCd_ConfFile, Line, port );
378 ptr = strtok( NULL, "," );
380 return;
382 if( strcasecmp( Var, "MotdFile" ) == 0 )
384 /* Datei mit der "message of the day" (MOTD) */
385 strncpy( Conf_MotdFile, Arg, FNAME_LEN - 1 );
386 Conf_MotdFile[FNAME_LEN - 1] = '\0';
387 return;
389 if( strcasecmp( Var, "ServerUID" ) == 0 )
391 /* UID, mit der der Daemon laufen soll */
392 pwd = getpwnam( Arg );
393 if( pwd ) Conf_UID = pwd->pw_uid;
394 else Conf_UID = (UINT)atoi( Arg );
395 return;
397 if( strcasecmp( Var, "ServerGID" ) == 0 )
399 /* GID, mit der der Daemon laufen soll */
400 grp = getgrnam( Arg );
401 if( grp ) Conf_GID = grp->gr_gid;
402 else Conf_GID = (UINT)atoi( Arg );
403 return;
405 if( strcasecmp( Var, "PingTimeout" ) == 0 )
407 /* PING-Timeout */
408 Conf_PingTimeout = atoi( Arg );
409 if(( Conf_PingTimeout ) < 5 ) Conf_PingTimeout = 5;
410 return;
412 if( strcasecmp( Var, "PongTimeout" ) == 0 )
414 /* PONG-Timeout */
415 Conf_PongTimeout = atoi( Arg );
416 if(( Conf_PongTimeout ) < 5 ) Conf_PongTimeout = 5;
417 return;
419 if( strcasecmp( Var, "ConnectRetry" ) == 0 )
421 /* Sekunden zwischen Verbindungsversuchen zu anderen Servern */
422 Conf_ConnectRetry = atoi( Arg );
423 if(( Conf_ConnectRetry ) < 5 ) Conf_ConnectRetry = 5;
424 return;
426 if( strcasecmp( Var, "OperCanUseMode" ) == 0 )
428 /* Koennen IRC-Operatoren immer MODE benutzen? */
429 if( strcasecmp( Arg, "yes" ) == 0 ) Conf_OperCanMode = TRUE;
430 else if( strcasecmp( Arg, "true" ) == 0 ) Conf_OperCanMode = TRUE;
431 else if( atoi( Arg ) != 0 ) Conf_OperCanMode = TRUE;
432 else Conf_OperCanMode = FALSE;
433 return;
435 if( strcasecmp( Var, "MaxConnections" ) == 0 )
437 /* Maximale Anzahl von Verbindungen. Werte <= 0 stehen
438 * fuer "kein Limit". */
439 Conf_MaxConnections = atol( Arg );
440 return;
443 Config_Error( LOG_ERR, "%s, line %d (section \"Global\"): Unknown variable \"%s\"!", NGIRCd_ConfFile, Line, Var );
444 } /* Handle_GLOBAL */
447 LOCAL VOID
448 Handle_OPERATOR( INT Line, CHAR *Var, CHAR *Arg )
450 assert( Line > 0 );
451 assert( Var != NULL );
452 assert( Arg != NULL );
453 assert( Conf_Oper_Count > 0 );
455 if( strcasecmp( Var, "Name" ) == 0 )
457 /* Name des IRC Operator */
458 strncpy( Conf_Oper[Conf_Oper_Count - 1].name, Arg, CLIENT_PASS_LEN - 1 );
459 Conf_Oper[Conf_Oper_Count - 1].name[CLIENT_PASS_LEN - 1] = '\0';
460 return;
462 if( strcasecmp( Var, "Password" ) == 0 )
464 /* Passwort des IRC Operator */
465 strncpy( Conf_Oper[Conf_Oper_Count - 1].pwd, Arg, CLIENT_PASS_LEN - 1 );
466 Conf_Oper[Conf_Oper_Count - 1].pwd[CLIENT_PASS_LEN - 1] = '\0';
467 return;
470 Config_Error( LOG_ERR, "%s, line %d (section \"Operator\"): Unknown variable \"%s\"!", NGIRCd_ConfFile, Line, Var );
471 } /* Handle_OPERATOR */
474 LOCAL VOID
475 Handle_SERVER( INT Line, CHAR *Var, CHAR *Arg )
477 LONG port;
479 assert( Line > 0 );
480 assert( Var != NULL );
481 assert( Arg != NULL );
483 if( strcasecmp( Var, "Host" ) == 0 )
485 /* Hostname des Servers */
486 strncpy( Conf_Server[Conf_Server_Count - 1].host, Arg, HOST_LEN - 1 );
487 Conf_Server[Conf_Server_Count - 1].host[HOST_LEN - 1] = '\0';
488 return;
490 if( strcasecmp( Var, "Name" ) == 0 )
492 /* Name des Servers ("Nick") */
493 strncpy( Conf_Server[Conf_Server_Count - 1].name, Arg, CLIENT_ID_LEN - 1 );
494 Conf_Server[Conf_Server_Count - 1].name[CLIENT_ID_LEN - 1] = '\0';
495 return;
497 if( strcasecmp( Var, "MyPassword" ) == 0 )
499 /* Passwort dieses Servers, welches empfangen werden muss */
500 strncpy( Conf_Server[Conf_Server_Count - 1].pwd_in, Arg, CLIENT_PASS_LEN - 1 );
501 Conf_Server[Conf_Server_Count - 1].pwd_in[CLIENT_PASS_LEN - 1] = '\0';
502 return;
504 if( strcasecmp( Var, "PeerPassword" ) == 0 )
506 /* Passwort des anderen Servers, welches gesendet werden muss */
507 strncpy( Conf_Server[Conf_Server_Count - 1].pwd_out, Arg, CLIENT_PASS_LEN - 1 );
508 Conf_Server[Conf_Server_Count - 1].pwd_out[CLIENT_PASS_LEN - 1] = '\0';
509 return;
511 if( strcasecmp( Var, "Port" ) == 0 )
513 /* Port, zu dem Verbunden werden soll */
514 port = atol( Arg );
515 if( port > 0 && port < 0xFFFF ) Conf_Server[Conf_Server_Count - 1].port = (INT)port;
516 else Config_Error( LOG_ERR, "%s, line %d (section \"Server\"): Illegal port number %ld!", NGIRCd_ConfFile, Line, port );
517 return;
519 if( strcasecmp( Var, "Group" ) == 0 )
521 /* Server-Gruppe */
522 Conf_Server[Conf_Server_Count - 1].group = atoi( Arg );
523 return;
526 Config_Error( LOG_ERR, "%s, line %d (section \"Server\"): Unknown variable \"%s\"!", NGIRCd_ConfFile, Line, Var );
527 } /* Handle_SERVER */
530 LOCAL VOID
531 Handle_CHANNEL( INT Line, CHAR *Var, CHAR *Arg )
533 assert( Line > 0 );
534 assert( Var != NULL );
535 assert( Arg != NULL );
537 if( strcasecmp( Var, "Name" ) == 0 )
539 /* Hostname des Servers */
540 strncpy( Conf_Channel[Conf_Channel_Count - 1].name, Arg, CHANNEL_NAME_LEN - 1 );
541 Conf_Channel[Conf_Channel_Count - 1].name[CHANNEL_NAME_LEN - 1] = '\0';
542 return;
544 if( strcasecmp( Var, "Modes" ) == 0 )
546 /* Name des Servers ("Nick") */
547 strncpy( Conf_Channel[Conf_Channel_Count - 1].modes, Arg, CHANNEL_MODE_LEN - 1 );
548 Conf_Channel[Conf_Channel_Count - 1].modes[CHANNEL_MODE_LEN - 1] = '\0';
549 return;
551 if( strcasecmp( Var, "Topic" ) == 0 )
553 /* Passwort des Servers */
554 strncpy( Conf_Channel[Conf_Channel_Count - 1].topic, Arg, CHANNEL_TOPIC_LEN - 1 );
555 Conf_Channel[Conf_Channel_Count - 1].topic[CHANNEL_TOPIC_LEN - 1] = '\0';
556 return;
559 Config_Error( LOG_ERR, "%s, line %d (section \"Channel\"): Unknown variable \"%s\"!", NGIRCd_ConfFile, Line, Var );
560 } /* Handle_CHANNEL */
563 LOCAL VOID
564 Validate_Config( VOID )
566 /* Konfiguration ueberpruefen */
568 if( ! Conf_ServerName[0] )
570 /* Kein Servername konfiguriert */
571 Config_Error( LOG_ALERT, "No server name configured in \"%s\" ('ServerName')!", NGIRCd_ConfFile );
572 Config_Error( LOG_ALERT, "%s exiting due to fatal errors!", PACKAGE );
573 exit( 1 );
576 #ifdef STRICT_RFC
577 if( ! Conf_ServerAdminMail[0] )
579 /* Keine Server-Information konfiguriert */
580 Config_Error( LOG_ALERT, "No administrator email address configured in \"%s\" ('AdminEMail')!", NGIRCd_ConfFile );
581 Config_Error( LOG_ALERT, "%s exiting due to fatal errors!", PACKAGE );
582 exit( 1 );
584 #endif
586 if( ! Conf_ServerAdmin1[0] && ! Conf_ServerAdmin2[0] && ! Conf_ServerAdminMail[0] )
588 /* Keine Server-Information konfiguriert */
589 Log( LOG_WARNING, "No server information configured but required by RFC!" );
591 } /* Validate_Config */
594 #ifdef PROTOTYPES
595 LOCAL VOID Config_Error( CONST INT Level, CONST CHAR *Format, ... )
596 #else
597 LOCAL VOID Config_Error( Level, Format, va_alist )
598 CONST INT Level;
599 CONST CHAR *Format;
600 va_dcl
601 #endif
603 /* Fehler! Auf Console und/oder ins Log schreiben */
605 CHAR msg[MAX_LOG_MSG_LEN];
606 va_list ap;
608 assert( Format != NULL );
610 /* String mit variablen Argumenten zusammenbauen ... */
611 #ifdef PROTOTYPES
612 va_start( ap, Format );
613 #else
614 va_start( ap );
615 #endif
616 vsnprintf( msg, MAX_LOG_MSG_LEN, Format, ap );
617 va_end( ap );
619 /* Im "normalen Betrieb" soll der Log-Mechanismus des ngIRCd verwendet
620 * werden, beim Testen der Konfiguration jedoch nicht, hier sollen alle
621 * Meldungen direkt auf die Konsole ausgegeben werden: */
622 if( Use_Log ) Log( Level, "%s", msg );
623 else puts( msg );
624 } /* Config_Error */
627 /* -eof- */