]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/conf.c
08c4e9ae550c287344a146c1148018dc0348148d
[ngircd-alex.git] / src / ngircd / conf.c
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001,2002 Alexander Barton (alex@barton.de)
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  * Please read the file COPYING, README and AUTHORS for more information.
10  *
11  * Configuration management (reading, parsing & validation)
12  */
13
14
15 #include "portab.h"
16
17 static char UNUSED id[] = "$Id: conf.c,v 1.48 2002/12/26 13:17:56 alex Exp $";
18
19 #include "imp.h"
20 #include <assert.h>
21 #include <errno.h>
22 #include <stdarg.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <unistd.h>
27 #include <pwd.h>
28 #include <grp.h>
29 #include <sys/types.h>
30 #include <unistd.h>
31
32 #ifdef HAVE_CTYPE_H
33 # include <ctype.h>
34 #endif
35
36 #include "ngircd.h"
37 #include "conn.h"
38 #include "client.h"
39 #include "defines.h"
40 #include "log.h"
41 #include "resolve.h"
42 #include "tool.h"
43
44 #include "exp.h"
45 #include "conf.h"
46
47
48 LOCAL BOOLEAN Use_Log = TRUE;
49
50
51 LOCAL VOID Set_Defaults PARAMS(( VOID ));
52 LOCAL VOID Read_Config PARAMS(( VOID ));
53 LOCAL VOID Validate_Config PARAMS(( BOOLEAN TestOnly ));
54
55 LOCAL VOID Handle_GLOBAL PARAMS(( INT Line, CHAR *Var, CHAR *Arg ));
56 LOCAL VOID Handle_OPERATOR PARAMS(( INT Line, CHAR *Var, CHAR *Arg ));
57 LOCAL VOID Handle_SERVER PARAMS(( INT Line, CHAR *Var, CHAR *Arg ));
58 LOCAL VOID Handle_CHANNEL PARAMS(( INT Line, CHAR *Var, CHAR *Arg ));
59
60 LOCAL VOID Config_Error PARAMS(( CONST INT Level, CONST CHAR *Format, ... ));
61
62
63 GLOBAL VOID
64 Conf_Init( VOID )
65 {
66         Set_Defaults( );
67         Read_Config( );
68         Validate_Config( FALSE );
69 } /* Config_Init */
70
71
72 GLOBAL INT
73 Conf_Test( VOID )
74 {
75         /* Read configuration, validate and output it. */
76
77         struct passwd *pwd;
78         struct group *grp;
79         INT i;
80
81         Use_Log = FALSE;
82         Set_Defaults( );
83
84         Read_Config( );
85         Validate_Config( TRUE );
86
87         /* If stdin is a valid tty wait for a key: */
88         if( isatty( fileno( stdout )))
89         {
90                 puts( "OK, press enter to see a dump of your service configuration ..." );
91                 getchar( );
92         }
93         else puts( "Ok, dump of your server configuration follows:\n" );
94
95         puts( "[GLOBAL]" );
96         printf( "  ServerName = %s\n", Conf_ServerName );
97         printf( "  ServerInfo = %s\n", Conf_ServerInfo );
98         printf( "  ServerPwd = %s\n", Conf_ServerPwd );
99         printf( "  AdminInfo1 = %s\n", Conf_ServerAdmin1 );
100         printf( "  AdminInfo2 = %s\n", Conf_ServerAdmin2 );
101         printf( "  AdminEMail = %s\n", Conf_ServerAdminMail );
102         printf( "  MotdFile = %s\n", Conf_MotdFile );
103         printf( "  Ports = " );
104         for( i = 0; i < Conf_ListenPorts_Count; i++ )
105         {
106                 if( i != 0 ) printf( ", " );
107                 printf( "%u", Conf_ListenPorts[i] );
108         }
109         puts( "" );
110         pwd = getpwuid( Conf_UID );
111         if( pwd ) printf( "  ServerUID = %s\n", pwd->pw_name );
112         else printf( "  ServerUID = %ld\n", (LONG)Conf_UID );
113         grp = getgrgid( Conf_GID );
114         if( grp ) printf( "  ServerGID = %s\n", grp->gr_name );
115         else printf( "  ServerGID = %ld\n", (LONG)Conf_GID );
116         printf( "  PingTimeout = %d\n", Conf_PingTimeout );
117         printf( "  PongTimeout = %d\n", Conf_PongTimeout );
118         printf( "  ConnectRetry = %d\n", Conf_ConnectRetry );
119         printf( "  OperCanUseMode = %s\n", Conf_OperCanMode == TRUE ? "yes" : "no" );
120         if( Conf_MaxConnections > 0 ) printf( "  MaxConnections = %ld\n", Conf_MaxConnections );
121         else printf( "  MaxConnections = -1\n" );
122         if( Conf_MaxJoins > 0 ) printf( "  MaxJoins = %d\n", Conf_MaxJoins );
123         else printf( "  MaxJoins = -1\n" );
124         puts( "" );
125
126         for( i = 0; i < Conf_Oper_Count; i++ )
127         {
128                 if( ! Conf_Oper[i].name[0] ) continue;
129                 
130                 /* Valid "Operator" section */
131                 puts( "[OPERATOR]" );
132                 printf( "  Name = %s\n", Conf_Oper[i].name );
133                 printf( "  Password = %s\n", Conf_Oper[i].pwd );
134                 puts( "" );
135         }
136
137         for( i = 0; i < Conf_Server_Count; i++ )
138         {
139                 if( ! Conf_Server[i].name[0] ) continue;
140                 
141                 /* Valid "Server" section */
142                 puts( "[SERVER]" );
143                 printf( "  Name = %s\n", Conf_Server[i].name );
144                 printf( "  Host = %s\n", Conf_Server[i].host );
145                 printf( "  Port = %d\n", Conf_Server[i].port );
146                 printf( "  MyPassword = %s\n", Conf_Server[i].pwd_in );
147                 printf( "  PeerPassword = %s\n", Conf_Server[i].pwd_out );
148                 printf( "  Group = %d\n", Conf_Server[i].group );
149                 puts( "" );
150         }
151
152         for( i = 0; i < Conf_Channel_Count; i++ )
153         {
154                 if( ! Conf_Channel[i].name[0] ) continue;
155                 
156                 /* Valid "Channel" section */
157                 puts( "[CHANNEL]" );
158                 printf( "  Name = %s\n", Conf_Channel[i].name );
159                 printf( "  Modes = %s\n", Conf_Channel[i].modes );
160                 printf( "  Topic = %s\n", Conf_Channel[i].topic );
161                 puts( "" );
162         }
163         
164         return 0;
165 } /* Conf_Test */
166
167
168 LOCAL VOID
169 Set_Defaults( VOID )
170 {
171         /* Initialize configuration variables with default values. */
172
173         strcpy( Conf_ServerName, "" );
174         sprintf( Conf_ServerInfo, "%s %s", PACKAGE, VERSION );
175         strcpy( Conf_ServerPwd, "" );
176
177         strcpy( Conf_ServerAdmin1, "" );
178         strcpy( Conf_ServerAdmin2, "" );
179         strcpy( Conf_ServerAdminMail, "" );
180
181         strcpy( Conf_MotdFile, SYSCONFDIR );
182         strcat( Conf_MotdFile, MOTD_FILE );
183
184         Conf_ListenPorts_Count = 0;
185
186         Conf_UID = Conf_GID = 0;
187         
188         Conf_PingTimeout = 120;
189         Conf_PongTimeout = 20;
190
191         Conf_ConnectRetry = 60;
192
193         Conf_Oper_Count = 0;
194         Conf_Server_Count = 0;
195         Conf_Channel_Count = 0;
196
197         Conf_OperCanMode = FALSE;
198         
199         Conf_MaxConnections = -1;
200         Conf_MaxJoins = 10;
201 } /* Set_Defaults */
202
203
204 LOCAL VOID
205 Read_Config( VOID )
206 {
207         /* Read configuration file. */
208
209         CHAR section[LINE_LEN], str[LINE_LEN], *var, *arg, *ptr;
210         INT line;
211         FILE *fd;
212
213         fd = fopen( NGIRCd_ConfFile, "r" );
214         if( ! fd )
215         {
216                 /* No configuration file found! */
217                 Config_Error( LOG_ALERT, "Can't read configuration \"%s\": %s", NGIRCd_ConfFile, strerror( errno ));
218                 Config_Error( LOG_ALERT, "%s exiting due to fatal errors!", PACKAGE );
219                 exit( 1 );
220         }
221
222         Config_Error( LOG_INFO, "Reading configuration from \"%s\" ...", NGIRCd_ConfFile );
223
224         line = 0;
225         strcpy( section, "" );
226         while( TRUE )
227         {
228                 if( ! fgets( str, LINE_LEN, fd )) break;
229                 ngt_TrimStr( str );
230                 line++;
231
232                 /* Skip comments and empty lines */
233                 if( str[0] == ';' || str[0] == '#' || str[0] == '\0' ) continue;
234
235                 /* Is this the beginning of a new section? */
236                 if(( str[0] == '[' ) && ( str[strlen( str ) - 1] == ']' ))
237                 {
238                         strcpy( section, str );
239                         if( strcasecmp( section, "[GLOBAL]" ) == 0 ) continue;
240                         if( strcasecmp( section, "[OPERATOR]" ) == 0 )
241                         {
242                                 if( Conf_Oper_Count + 1 > MAX_OPERATORS ) Config_Error( LOG_ERR, "Too many operators configured." );
243                                 else
244                                 {
245                                         /* Initialize new operator structure */
246                                         strcpy( Conf_Oper[Conf_Oper_Count].name, "" );
247                                         strcpy( Conf_Oper[Conf_Oper_Count].pwd, "" );
248                                         Conf_Oper_Count++;
249                                 }
250                                 continue;
251                         }
252                         if( strcasecmp( section, "[SERVER]" ) == 0 )
253                         {
254                                 if( Conf_Server_Count + 1 > MAX_SERVERS ) Config_Error( LOG_ERR, "Too many servers configured." );
255                                 else
256                                 {
257                                         /* Initialize new server structure */
258                                         strcpy( Conf_Server[Conf_Server_Count].host, "" );
259                                         strcpy( Conf_Server[Conf_Server_Count].ip, "" );
260                                         strcpy( Conf_Server[Conf_Server_Count].name, "" );
261                                         strcpy( Conf_Server[Conf_Server_Count].pwd_in, "" );
262                                         strcpy( Conf_Server[Conf_Server_Count].pwd_out, "" );
263                                         Conf_Server[Conf_Server_Count].port = 0;
264                                         Conf_Server[Conf_Server_Count].group = -1;
265                                         Conf_Server[Conf_Server_Count].lasttry = time( NULL ) - Conf_ConnectRetry + STARTUP_DELAY;
266                                         Conf_Server[Conf_Server_Count].res_stat = NULL;
267                                         Conf_Server_Count++;
268                                 }
269                                 continue;
270                         }
271                         if( strcasecmp( section, "[CHANNEL]" ) == 0 )
272                         {
273                                 if( Conf_Channel_Count + 1 > MAX_DEFCHANNELS ) Config_Error( LOG_ERR, "Too many pre-defined channels configured." );
274                                 else
275                                 {
276                                         /* Initialize new channel structure */
277                                         strcpy( Conf_Channel[Conf_Channel_Count].name, "" );
278                                         strcpy( Conf_Channel[Conf_Channel_Count].modes, "" );
279                                         strcpy( Conf_Channel[Conf_Channel_Count].topic, "" );
280                                         Conf_Channel_Count++;
281                                 }
282                                 continue;
283                         }
284                         Config_Error( LOG_ERR, "%s, line %d: Unknown section \"%s\"!", NGIRCd_ConfFile, line, section );
285                         section[0] = 0x1;
286                 }
287                 if( section[0] == 0x1 ) continue;
288
289                 /* Split line into variable name and parameters */
290                 ptr = strchr( str, '=' );
291                 if( ! ptr )
292                 {
293                         Config_Error( LOG_ERR, "%s, line %d: Syntax error!", NGIRCd_ConfFile, line );
294                         continue;
295                 }
296                 *ptr = '\0';
297                 var = str; ngt_TrimStr( var );
298                 arg = ptr + 1; ngt_TrimStr( arg );
299
300                 if( strcasecmp( section, "[GLOBAL]" ) == 0 ) Handle_GLOBAL( line, var, arg );
301                 else if( strcasecmp( section, "[OPERATOR]" ) == 0 ) Handle_OPERATOR( line, var, arg );
302                 else if( strcasecmp( section, "[SERVER]" ) == 0 ) Handle_SERVER( line, var, arg );
303                 else if( strcasecmp( section, "[CHANNEL]" ) == 0 ) Handle_CHANNEL( line, var, arg );
304                 else Config_Error( LOG_ERR, "%s, line %d: Variable \"%s\" outside section!", NGIRCd_ConfFile, line, var );
305         }
306         
307         fclose( fd );
308         
309         /* If there are no ports configured use the default: 6667 */
310         if( Conf_ListenPorts_Count < 1 )
311         {
312                 Conf_ListenPorts_Count = 1;
313                 Conf_ListenPorts[0] = 6667;
314         }
315 } /* Read_Config */
316
317
318 LOCAL VOID
319 Handle_GLOBAL( INT Line, CHAR *Var, CHAR *Arg )
320 {
321         struct passwd *pwd;
322         struct group *grp;
323         CHAR *ptr;
324         LONG port;
325         
326         assert( Line > 0 );
327         assert( Var != NULL );
328         assert( Arg != NULL );
329         
330         if( strcasecmp( Var, "Name" ) == 0 )
331         {
332                 /* Server name */
333                 strncpy( Conf_ServerName, Arg, CLIENT_ID_LEN - 1 );
334                 Conf_ServerName[CLIENT_ID_LEN - 1] = '\0';
335                 if( strlen( Arg ) > CLIENT_ID_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"Name\" too long!", NGIRCd_ConfFile, Line );
336                 return;
337         }
338         if( strcasecmp( Var, "Info" ) == 0 )
339         {
340                 /* Info text of server */
341                 strncpy( Conf_ServerInfo, Arg, CLIENT_INFO_LEN - 1 );
342                 Conf_ServerInfo[CLIENT_INFO_LEN - 1] = '\0';
343                 if( strlen( Arg ) > CLIENT_INFO_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"Info\" too long!", NGIRCd_ConfFile, Line );
344                 return;
345         }
346         if( strcasecmp( Var, "Password" ) == 0 )
347         {
348                 /* Global server password */
349                 strncpy( Conf_ServerPwd, Arg, CLIENT_PASS_LEN - 1 );
350                 Conf_ServerPwd[CLIENT_PASS_LEN - 1] = '\0';
351                 if( strlen( Arg ) > CLIENT_PASS_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"Password\" too long!", NGIRCd_ConfFile, Line );
352                 return;
353         }
354         if( strcasecmp( Var, "AdminInfo1" ) == 0 )
355         {
356                 /* Administrative info #1 */
357                 strncpy( Conf_ServerAdmin1, Arg, CLIENT_INFO_LEN - 1 );
358                 Conf_ServerAdmin1[CLIENT_INFO_LEN - 1] = '\0';
359                 if( strlen( Arg ) > CLIENT_INFO_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"AdminInfo1\" too long!", NGIRCd_ConfFile, Line );
360                 return;
361         }
362         if( strcasecmp( Var, "AdminInfo2" ) == 0 )
363         {
364                 /* Administrative info #2 */
365                 strncpy( Conf_ServerAdmin2, Arg, CLIENT_INFO_LEN - 1 );
366                 Conf_ServerAdmin2[CLIENT_INFO_LEN - 1] = '\0';
367                 if( strlen( Arg ) > CLIENT_INFO_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"AdminInfo2\" too long!", NGIRCd_ConfFile, Line );
368                 return;
369         }
370         if( strcasecmp( Var, "AdminEMail" ) == 0 )
371         {
372                 /* Administrative email contact */
373                 strncpy( Conf_ServerAdminMail, Arg, CLIENT_INFO_LEN - 1 );
374                 Conf_ServerAdminMail[CLIENT_INFO_LEN - 1] = '\0';
375                 if( strlen( Arg ) > CLIENT_INFO_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"AdminEMail\" too long!", NGIRCd_ConfFile, Line );
376                 return;
377         }
378         if( strcasecmp( Var, "Ports" ) == 0 )
379         {
380                 /* Ports on that the server should listen. More port numbers
381                  * must be separated by "," */
382                 ptr = strtok( Arg, "," );
383                 while( ptr )
384                 {
385                         ngt_TrimStr( ptr );
386                         port = atol( ptr );
387                         if( Conf_ListenPorts_Count + 1 > MAX_LISTEN_PORTS ) Config_Error( LOG_ERR, "Too many listen ports configured. Port %ld ignored.", port );
388                         else
389                         {
390                                 if( port > 0 && port < 0xFFFF ) Conf_ListenPorts[Conf_ListenPorts_Count++] = (UINT)port;
391                                 else Config_Error( LOG_ERR, "%s, line %d (section \"Global\"): Illegal port number %ld!", NGIRCd_ConfFile, Line, port );
392                         }
393                         ptr = strtok( NULL, "," );
394                 }
395                 return;
396         }
397         if( strcasecmp( Var, "MotdFile" ) == 0 )
398         {
399                 /* "Message of the day" (MOTD) file */
400                 strncpy( Conf_MotdFile, Arg, FNAME_LEN - 1 );
401                 Conf_MotdFile[FNAME_LEN - 1] = '\0';
402                 if( strlen( Arg ) > FNAME_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"MotdFile\" too long!", NGIRCd_ConfFile, Line );
403                 return;
404         }
405         if( strcasecmp( Var, "ServerUID" ) == 0 )
406         {
407                 /* UID the daemon should switch to */
408                 pwd = getpwnam( Arg );
409                 if( pwd ) Conf_UID = pwd->pw_uid;
410                 else
411                 {
412 #ifdef HAVE_ISDIGIT
413                         if( ! isdigit( *Arg )) Config_Error( LOG_WARNING, "%s, line %d: Value of \"ServerUID\" is not a number!", NGIRCd_ConfFile, Line );
414                         else
415 #endif
416                         Conf_UID = (UINT)atoi( Arg );
417                 }
418                 return;
419         }
420         if( strcasecmp( Var, "ServerGID" ) == 0 )
421         {
422                 /* GID the daemon should use */
423                 grp = getgrnam( Arg );
424                 if( grp ) Conf_GID = grp->gr_gid;
425                 else
426                 {
427 #ifdef HAVE_ISDIGIT
428                         if( ! isdigit( *Arg )) Config_Error( LOG_WARNING, "%s, line %d: Value of \"ServerGID\" is not a number!", NGIRCd_ConfFile, Line );
429                         else
430 #endif
431                         Conf_GID = (UINT)atoi( Arg );
432                 }
433                 return;
434         }
435         if( strcasecmp( Var, "PingTimeout" ) == 0 )
436         {
437                 /* PING timeout */
438                 Conf_PingTimeout = atoi( Arg );
439                 if( Conf_PingTimeout < 5 )
440                 {
441                         Config_Error( LOG_WARNING, "%s, line %d: Value of \"PingTimeout\" too low!", NGIRCd_ConfFile, Line );
442                         Conf_PingTimeout = 5;
443                 }
444                 return;
445         }
446         if( strcasecmp( Var, "PongTimeout" ) == 0 )
447         {
448                 /* PONG timeout */
449                 Conf_PongTimeout = atoi( Arg );
450                 if( Conf_PongTimeout < 5 )
451                 {
452                         Config_Error( LOG_WARNING, "%s, line %d: Value of \"PongTimeout\" too low!", NGIRCd_ConfFile, Line );
453                         Conf_PongTimeout = 5;
454                 }
455                 return;
456         }
457         if( strcasecmp( Var, "ConnectRetry" ) == 0 )
458         {
459                 /* Seconds between connection attempts to other servers */
460                 Conf_ConnectRetry = atoi( Arg );
461                 if( Conf_ConnectRetry < 5 )
462                 {
463                         Config_Error( LOG_WARNING, "%s, line %d: Value of \"ConnectRetry\" too low!", NGIRCd_ConfFile, Line );
464                         Conf_ConnectRetry = 5;
465                 }
466                 return;
467         }
468         if( strcasecmp( Var, "OperCanUseMode" ) == 0 )
469         {
470                 /* Are IRC operators allowed to use MODE in channels they aren't Op in? */
471                 if( strcasecmp( Arg, "yes" ) == 0 ) Conf_OperCanMode = TRUE;
472                 else if( strcasecmp( Arg, "true" ) == 0 ) Conf_OperCanMode = TRUE;
473                 else if( atoi( Arg ) != 0 ) Conf_OperCanMode = TRUE;
474                 else Conf_OperCanMode = FALSE;
475                 return;
476         }
477         if( strcasecmp( Var, "MaxConnections" ) == 0 )
478         {
479                 /* Maximum number of connections. Values <= 0 are equal to "no limit". */
480 #ifdef HAVE_ISDIGIT
481                 if( ! isdigit( *Arg )) Config_Error( LOG_WARNING, "%s, line %d: Value of \"MaxConnections\" is not a number!", NGIRCd_ConfFile, Line );
482                 else
483 #endif
484                 Conf_MaxConnections = atol( Arg );
485                 return;
486         }
487         if( strcasecmp( Var, "MaxJoins" ) == 0 )
488         {
489                 /* Maximum number of channels a user can join. Values <= 0 are equal to "no limit". */
490 #ifdef HAVE_ISDIGIT
491                 if( ! isdigit( *Arg )) Config_Error( LOG_WARNING, "%s, line %d: Value of \"MaxJoins\" is not a number!", NGIRCd_ConfFile, Line );
492                 else
493 #endif
494                 Conf_MaxJoins = atoi( Arg );
495                 return;
496         }
497
498         Config_Error( LOG_ERR, "%s, line %d (section \"Global\"): Unknown variable \"%s\"!", NGIRCd_ConfFile, Line, Var );
499 } /* Handle_GLOBAL */
500
501
502 LOCAL VOID
503 Handle_OPERATOR( INT Line, CHAR *Var, CHAR *Arg )
504 {
505         assert( Line > 0 );
506         assert( Var != NULL );
507         assert( Arg != NULL );
508         assert( Conf_Oper_Count > 0 );
509
510         if( strcasecmp( Var, "Name" ) == 0 )
511         {
512                 /* Name of IRC operator */
513                 strncpy( Conf_Oper[Conf_Oper_Count - 1].name, Arg, CLIENT_PASS_LEN - 1 );
514                 Conf_Oper[Conf_Oper_Count - 1].name[CLIENT_PASS_LEN - 1] = '\0';
515                 if( strlen( Arg ) > CLIENT_PASS_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"Name\" too long!", NGIRCd_ConfFile, Line );
516                 return;
517         }
518         if( strcasecmp( Var, "Password" ) == 0 )
519         {
520                 /* Password of IRC operator */
521                 strncpy( Conf_Oper[Conf_Oper_Count - 1].pwd, Arg, CLIENT_PASS_LEN - 1 );
522                 Conf_Oper[Conf_Oper_Count - 1].pwd[CLIENT_PASS_LEN - 1] = '\0';
523                 if( strlen( Arg ) > CLIENT_PASS_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"Password\" too long!", NGIRCd_ConfFile, Line );
524                 return;
525         }
526         
527         Config_Error( LOG_ERR, "%s, line %d (section \"Operator\"): Unknown variable \"%s\"!", NGIRCd_ConfFile, Line, Var );
528 } /* Handle_OPERATOR */
529
530
531 LOCAL VOID
532 Handle_SERVER( INT Line, CHAR *Var, CHAR *Arg )
533 {
534         LONG port;
535         
536         assert( Line > 0 );
537         assert( Var != NULL );
538         assert( Arg != NULL );
539
540         if( strcasecmp( Var, "Host" ) == 0 )
541         {
542                 /* Hostname of the server */
543                 strncpy( Conf_Server[Conf_Server_Count - 1].host, Arg, HOST_LEN - 1 );
544                 Conf_Server[Conf_Server_Count - 1].host[HOST_LEN - 1] = '\0';
545                 if( strlen( Arg ) > HOST_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"Host\" too long!", NGIRCd_ConfFile, Line );
546                 return;
547         }
548         if( strcasecmp( Var, "Name" ) == 0 )
549         {
550                 /* Name of the server ("Nick"/"ID") */
551                 strncpy( Conf_Server[Conf_Server_Count - 1].name, Arg, CLIENT_ID_LEN - 1 );
552                 Conf_Server[Conf_Server_Count - 1].name[CLIENT_ID_LEN - 1] = '\0';
553                 if( strlen( Arg ) > CLIENT_ID_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"Name\" too long!", NGIRCd_ConfFile, Line );
554                 return;
555         }
556         if( strcasecmp( Var, "MyPassword" ) == 0 )
557         {
558                 /* Password of this server which is sent to the peer */
559                 strncpy( Conf_Server[Conf_Server_Count - 1].pwd_in, Arg, CLIENT_PASS_LEN - 1 );
560                 Conf_Server[Conf_Server_Count - 1].pwd_in[CLIENT_PASS_LEN - 1] = '\0';
561                 if( strlen( Arg ) > CLIENT_PASS_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"MyPassword\" too long!", NGIRCd_ConfFile, Line );
562                 return;
563         }
564         if( strcasecmp( Var, "PeerPassword" ) == 0 )
565         {
566                 /* Passwort of the peer which must be received */
567                 strncpy( Conf_Server[Conf_Server_Count - 1].pwd_out, Arg, CLIENT_PASS_LEN - 1 );
568                 Conf_Server[Conf_Server_Count - 1].pwd_out[CLIENT_PASS_LEN - 1] = '\0';
569                 if( strlen( Arg ) > CLIENT_PASS_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"PeerPassword\" too long!", NGIRCd_ConfFile, Line );
570                 return;
571         }
572         if( strcasecmp( Var, "Port" ) == 0 )
573         {
574                 /* Port to which this server should connect */
575                 port = atol( Arg );
576                 if( port > 0 && port < 0xFFFF ) Conf_Server[Conf_Server_Count - 1].port = (INT)port;
577                 else Config_Error( LOG_ERR, "%s, line %d (section \"Server\"): Illegal port number %ld!", NGIRCd_ConfFile, Line, port );
578                 return;
579         }
580         if( strcasecmp( Var, "Group" ) == 0 )
581         {
582                 /* Server group */
583 #ifdef HAVE_ISDIGIT
584                 if( ! isdigit( *Arg )) Config_Error( LOG_WARNING, "%s, line %d: Value of \"Group\" is not a number!", NGIRCd_ConfFile, Line );
585                 else
586 #endif
587                 Conf_Server[Conf_Server_Count - 1].group = atoi( Arg );
588                 return;
589         }
590         
591         Config_Error( LOG_ERR, "%s, line %d (section \"Server\"): Unknown variable \"%s\"!", NGIRCd_ConfFile, Line, Var );
592 } /* Handle_SERVER */
593
594
595 LOCAL VOID
596 Handle_CHANNEL( INT Line, CHAR *Var, CHAR *Arg )
597 {
598         assert( Line > 0 );
599         assert( Var != NULL );
600         assert( Arg != NULL );
601
602         if( strcasecmp( Var, "Name" ) == 0 )
603         {
604                 /* Name of the channel */
605                 strncpy( Conf_Channel[Conf_Channel_Count - 1].name, Arg, CHANNEL_NAME_LEN - 1 );
606                 Conf_Channel[Conf_Channel_Count - 1].name[CHANNEL_NAME_LEN - 1] = '\0';
607                 if( strlen( Arg ) > CHANNEL_NAME_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"Name\" too long!", NGIRCd_ConfFile, Line );
608                 return;
609         }
610         if( strcasecmp( Var, "Modes" ) == 0 )
611         {
612                 /* Initial modes */
613                 strncpy( Conf_Channel[Conf_Channel_Count - 1].modes, Arg, CHANNEL_MODE_LEN - 1 );
614                 Conf_Channel[Conf_Channel_Count - 1].modes[CHANNEL_MODE_LEN - 1] = '\0';
615                 if( strlen( Arg ) > CHANNEL_MODE_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"Modes\" too long!", NGIRCd_ConfFile, Line );
616                 return;
617         }
618         if( strcasecmp( Var, "Topic" ) == 0 )
619         {
620                 /* Initial topic */
621                 strncpy( Conf_Channel[Conf_Channel_Count - 1].topic, Arg, CHANNEL_TOPIC_LEN - 1 );
622                 Conf_Channel[Conf_Channel_Count - 1].topic[CHANNEL_TOPIC_LEN - 1] = '\0';
623                 if( strlen( Arg ) > CHANNEL_TOPIC_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"Topic\" too long!", NGIRCd_ConfFile, Line );
624                 return;
625         }
626
627         Config_Error( LOG_ERR, "%s, line %d (section \"Channel\"): Unknown variable \"%s\"!", NGIRCd_ConfFile, Line, Var );
628 } /* Handle_CHANNEL */
629
630
631 LOCAL VOID
632 Validate_Config( BOOLEAN Configtest )
633 {
634         /* Validate configuration settings. */
635         
636         if( ! Conf_ServerName[0] )
637         {
638                 /* No server name configured! */
639                 Config_Error( LOG_ALERT, "No server name configured in \"%s\" ('ServerName')!", NGIRCd_ConfFile );
640                 if( ! Configtest )
641                 {
642                         Config_Error( LOG_ALERT, "%s exiting due to fatal errors!", PACKAGE );
643                         exit( 1 );
644                 }
645         }
646
647 #ifdef STRICT_RFC
648         if( ! Conf_ServerAdminMail[0] )
649         {
650                 /* No administrative contact configured! */
651                 Config_Error( LOG_ALERT, "No administrator email address configured in \"%s\" ('AdminEMail')!", NGIRCd_ConfFile );
652                 if( ! Configtest )
653                 {
654                         Config_Error( LOG_ALERT, "%s exiting due to fatal errors!", PACKAGE );
655                         exit( 1 );
656                 }
657         }
658 #endif
659
660         if( ! Conf_ServerAdmin1[0] && ! Conf_ServerAdmin2[0] && ! Conf_ServerAdminMail[0] )
661         {
662                 /* No administrative information configured! */
663                 Config_Error( LOG_WARNING, "No administrative information configured but required by RFC!" );
664         }
665 #ifdef FD_SETSIZE       
666         if(( Conf_MaxConnections > (LONG)FD_SETSIZE ) || ( Conf_MaxConnections < 1 ))
667         {
668                 Conf_MaxConnections = (LONG)FD_SETSIZE;
669                 Config_Error( LOG_ERR, "Setting MaxConnections to %ld, select() can't handle more file descriptors!", Conf_MaxConnections );
670         }
671 #else
672         Config_Error( LOG_WARN, "Don't know how many file descriptors select() can handle on this system, don't set MaxConnections too high!" );
673 #endif
674 } /* Validate_Config */
675
676
677 #ifdef PROTOTYPES
678 LOCAL VOID Config_Error( CONST INT Level, CONST CHAR *Format, ... )
679 #else
680 LOCAL VOID Config_Error( Level, Format, va_alist )
681 CONST INT Level;
682 CONST CHAR *Format;
683 va_dcl
684 #endif
685 {
686         /* Error! Write to console and/or logfile. */
687
688         CHAR msg[MAX_LOG_MSG_LEN];
689         va_list ap;
690
691         assert( Format != NULL );
692
693 #ifdef PROTOTYPES
694         va_start( ap, Format );
695 #else
696         va_start( ap );
697 #endif
698         vsnprintf( msg, MAX_LOG_MSG_LEN, Format, ap );
699         va_end( ap );
700         
701         /* During "normal operations" the log functions of the daemon should
702          * be used, but during testing of the configuration file, all messages
703          * should go directly to the console: */
704         if( Use_Log ) Log( Level, "%s", msg );
705         else puts( msg );
706 } /* Config_Error */
707
708
709 /* -eof- */