]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/conf.c
2ff503612cd31575116941c9267ffc7f742408f1
[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.43 2002/12/13 17:32:33 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
31 #ifdef HAVE_CTYPE_H
32 # include <ctype.h>
33 #endif
34
35 #include "ngircd.h"
36 #include "conn.h"
37 #include "client.h"
38 #include "defines.h"
39 #include "log.h"
40 #include "resolve.h"
41 #include "tool.h"
42
43 #include "exp.h"
44 #include "conf.h"
45
46
47 LOCAL BOOLEAN Use_Log = TRUE;
48
49
50 LOCAL VOID Set_Defaults PARAMS(( VOID ));
51 LOCAL VOID Read_Config PARAMS(( VOID ));
52 LOCAL VOID Validate_Config PARAMS(( VOID ));
53
54 LOCAL VOID Handle_GLOBAL PARAMS(( INT Line, CHAR *Var, CHAR *Arg ));
55 LOCAL VOID Handle_OPERATOR PARAMS(( INT Line, CHAR *Var, CHAR *Arg ));
56 LOCAL VOID Handle_SERVER PARAMS(( INT Line, CHAR *Var, CHAR *Arg ));
57 LOCAL VOID Handle_CHANNEL PARAMS(( INT Line, CHAR *Var, CHAR *Arg ));
58
59 LOCAL VOID Config_Error PARAMS(( CONST INT Level, CONST CHAR *Format, ... ));
60
61
62 GLOBAL VOID
63 Conf_Init( VOID )
64 {
65         Set_Defaults( );
66         Read_Config( );
67         Validate_Config( );
68 } /* Config_Init */
69
70
71 GLOBAL INT
72 Conf_Test( VOID )
73 {
74         /* Read configuration, validate and output it. */
75
76         struct passwd *pwd;
77         struct group *grp;
78         INT i;
79
80         Use_Log = FALSE;
81         Set_Defaults( );
82
83         Read_Config( );
84
85         /* If stdin is a valid tty wait for a key: */
86         if( isatty( fileno( stdout )))
87         {
88                 puts( "OK, press enter to see a dump of your service configuration ..." );
89                 getchar( );
90         }
91         else puts( "Ok, dump of your server configuration follows:\n" );
92
93         puts( "[GLOBAL]" );
94         printf( "  ServerName = %s\n", Conf_ServerName );
95         printf( "  ServerInfo = %s\n", Conf_ServerInfo );
96         printf( "  ServerPwd = %s\n", Conf_ServerPwd );
97         printf( "  AdminInfo1 = %s\n", Conf_ServerAdmin1 );
98         printf( "  AdminInfo2 = %s\n", Conf_ServerAdmin2 );
99         printf( "  AdminEMail = %s\n", Conf_ServerAdminMail );
100         printf( "  MotdFile = %s\n", Conf_MotdFile );
101         printf( "  Ports = " );
102         for( i = 0; i < Conf_ListenPorts_Count; i++ )
103         {
104                 if( i != 0 ) printf( ", " );
105                 printf( "%u", Conf_ListenPorts[i] );
106         }
107         puts( "" );
108         pwd = getpwuid( Conf_UID );
109         if( pwd ) printf( "  ServerUID = %s\n", pwd->pw_name );
110         else printf( "  ServerUID = %ld\n", (LONG)Conf_UID );
111         grp = getgrgid( Conf_GID );
112         if( grp ) printf( "  ServerGID = %s\n", grp->gr_name );
113         else printf( "  ServerGID = %ld\n", (LONG)Conf_GID );
114         printf( "  PingTimeout = %d\n", Conf_PingTimeout );
115         printf( "  PongTimeout = %d\n", Conf_PongTimeout );
116         printf( "  ConnectRetry = %d\n", Conf_ConnectRetry );
117         printf( "  OperCanUseMode = %s\n", Conf_OperCanMode == TRUE ? "yes" : "no" );
118         if( Conf_MaxConnections > 0 ) printf( "  MaxConnections = %ld\n", Conf_MaxConnections );
119         else printf( "  MaxConnections = -1\n" );
120         if( Conf_MaxJoins > 0 ) printf( "  MaxJoins = %d\n", Conf_MaxJoins );
121         else printf( "  MaxJoins = -1\n" );
122         if( Conf_MaxPChannels > 0 ) printf( "  MaxPChannels = %d\n", Conf_MaxPChannels );
123         else printf( "  MaxPChannels = -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, MOTD_FILE );
182
183         Conf_ListenPorts_Count = 0;
184
185         Conf_UID = Conf_GID = 0;
186         
187         Conf_PingTimeout = 120;
188         Conf_PongTimeout = 20;
189
190         Conf_ConnectRetry = 60;
191
192         Conf_Oper_Count = 0;
193         Conf_Server_Count = 0;
194         Conf_Channel_Count = 0;
195
196         Conf_OperCanMode = FALSE;
197         
198         Conf_MaxConnections = -1;
199         Conf_MaxJoins = 10;
200         Conf_MaxPChannels = -1;
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         if( strcasecmp( Var, "MaxPChannels" ) == 0 )
498         {
499                 /* Maximum number of persistent channels in the network. Values <= 0 are equal to "no limit". */
500 #ifdef HAVE_ISDIGIT
501                 if( ! isdigit( *Arg )) Config_Error( LOG_WARNING, "%s, line %d: Value of \"MaxPChannels\" is not a number!", NGIRCd_ConfFile, Line );
502                 else
503 #endif
504                 Conf_MaxPChannels = atoi( Arg );
505                 return;
506         }
507
508         Config_Error( LOG_ERR, "%s, line %d (section \"Global\"): Unknown variable \"%s\"!", NGIRCd_ConfFile, Line, Var );
509 } /* Handle_GLOBAL */
510
511
512 LOCAL VOID
513 Handle_OPERATOR( INT Line, CHAR *Var, CHAR *Arg )
514 {
515         assert( Line > 0 );
516         assert( Var != NULL );
517         assert( Arg != NULL );
518         assert( Conf_Oper_Count > 0 );
519
520         if( strcasecmp( Var, "Name" ) == 0 )
521         {
522                 /* Name of IRC operator */
523                 strncpy( Conf_Oper[Conf_Oper_Count - 1].name, Arg, CLIENT_PASS_LEN - 1 );
524                 Conf_Oper[Conf_Oper_Count - 1].name[CLIENT_PASS_LEN - 1] = '\0';
525                 if( strlen( Arg ) > CLIENT_PASS_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"Name\" too long!", NGIRCd_ConfFile, Line );
526                 return;
527         }
528         if( strcasecmp( Var, "Password" ) == 0 )
529         {
530                 /* Password of IRC operator */
531                 strncpy( Conf_Oper[Conf_Oper_Count - 1].pwd, Arg, CLIENT_PASS_LEN - 1 );
532                 Conf_Oper[Conf_Oper_Count - 1].pwd[CLIENT_PASS_LEN - 1] = '\0';
533                 if( strlen( Arg ) > CLIENT_PASS_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"Password\" too long!", NGIRCd_ConfFile, Line );
534                 return;
535         }
536         
537         Config_Error( LOG_ERR, "%s, line %d (section \"Operator\"): Unknown variable \"%s\"!", NGIRCd_ConfFile, Line, Var );
538 } /* Handle_OPERATOR */
539
540
541 LOCAL VOID
542 Handle_SERVER( INT Line, CHAR *Var, CHAR *Arg )
543 {
544         LONG port;
545         
546         assert( Line > 0 );
547         assert( Var != NULL );
548         assert( Arg != NULL );
549
550         if( strcasecmp( Var, "Host" ) == 0 )
551         {
552                 /* Hostname of the server */
553                 strncpy( Conf_Server[Conf_Server_Count - 1].host, Arg, HOST_LEN - 1 );
554                 Conf_Server[Conf_Server_Count - 1].host[HOST_LEN - 1] = '\0';
555                 if( strlen( Arg ) > HOST_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"Host\" too long!", NGIRCd_ConfFile, Line );
556                 return;
557         }
558         if( strcasecmp( Var, "Name" ) == 0 )
559         {
560                 /* Name of the server ("Nick"/"ID") */
561                 strncpy( Conf_Server[Conf_Server_Count - 1].name, Arg, CLIENT_ID_LEN - 1 );
562                 Conf_Server[Conf_Server_Count - 1].name[CLIENT_ID_LEN - 1] = '\0';
563                 if( strlen( Arg ) > CLIENT_ID_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"Name\" too long!", NGIRCd_ConfFile, Line );
564                 return;
565         }
566         if( strcasecmp( Var, "MyPassword" ) == 0 )
567         {
568                 /* Password of this server which is sent to the peer */
569                 strncpy( Conf_Server[Conf_Server_Count - 1].pwd_in, Arg, CLIENT_PASS_LEN - 1 );
570                 Conf_Server[Conf_Server_Count - 1].pwd_in[CLIENT_PASS_LEN - 1] = '\0';
571                 if( strlen( Arg ) > CLIENT_PASS_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"MyPassword\" too long!", NGIRCd_ConfFile, Line );
572                 return;
573         }
574         if( strcasecmp( Var, "PeerPassword" ) == 0 )
575         {
576                 /* Passwort of the peer which must be received */
577                 strncpy( Conf_Server[Conf_Server_Count - 1].pwd_out, Arg, CLIENT_PASS_LEN - 1 );
578                 Conf_Server[Conf_Server_Count - 1].pwd_out[CLIENT_PASS_LEN - 1] = '\0';
579                 if( strlen( Arg ) > CLIENT_PASS_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"PeerPassword\" too long!", NGIRCd_ConfFile, Line );
580                 return;
581         }
582         if( strcasecmp( Var, "Port" ) == 0 )
583         {
584                 /* Port to which this server should connect */
585                 port = atol( Arg );
586                 if( port > 0 && port < 0xFFFF ) Conf_Server[Conf_Server_Count - 1].port = (INT)port;
587                 else Config_Error( LOG_ERR, "%s, line %d (section \"Server\"): Illegal port number %ld!", NGIRCd_ConfFile, Line, port );
588                 return;
589         }
590         if( strcasecmp( Var, "Group" ) == 0 )
591         {
592                 /* Server group */
593 #ifdef HAVE_ISDIGIT
594                 if( ! isdigit( *Arg )) Config_Error( LOG_WARNING, "%s, line %d: Value of \"Group\" is not a number!", NGIRCd_ConfFile, Line );
595                 else
596 #endif
597                 Conf_Server[Conf_Server_Count - 1].group = atoi( Arg );
598                 return;
599         }
600         
601         Config_Error( LOG_ERR, "%s, line %d (section \"Server\"): Unknown variable \"%s\"!", NGIRCd_ConfFile, Line, Var );
602 } /* Handle_SERVER */
603
604
605 LOCAL VOID
606 Handle_CHANNEL( INT Line, CHAR *Var, CHAR *Arg )
607 {
608         assert( Line > 0 );
609         assert( Var != NULL );
610         assert( Arg != NULL );
611
612         if( strcasecmp( Var, "Name" ) == 0 )
613         {
614                 /* Name of the channel */
615                 strncpy( Conf_Channel[Conf_Channel_Count - 1].name, Arg, CHANNEL_NAME_LEN - 1 );
616                 Conf_Channel[Conf_Channel_Count - 1].name[CHANNEL_NAME_LEN - 1] = '\0';
617                 if( strlen( Arg ) > CHANNEL_NAME_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"Name\" too long!", NGIRCd_ConfFile, Line );
618                 return;
619         }
620         if( strcasecmp( Var, "Modes" ) == 0 )
621         {
622                 /* Initial modes */
623                 strncpy( Conf_Channel[Conf_Channel_Count - 1].modes, Arg, CHANNEL_MODE_LEN - 1 );
624                 Conf_Channel[Conf_Channel_Count - 1].modes[CHANNEL_MODE_LEN - 1] = '\0';
625                 if( strlen( Arg ) > CHANNEL_MODE_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"Modes\" too long!", NGIRCd_ConfFile, Line );
626                 return;
627         }
628         if( strcasecmp( Var, "Topic" ) == 0 )
629         {
630                 /* Initial topic */
631                 strncpy( Conf_Channel[Conf_Channel_Count - 1].topic, Arg, CHANNEL_TOPIC_LEN - 1 );
632                 Conf_Channel[Conf_Channel_Count - 1].topic[CHANNEL_TOPIC_LEN - 1] = '\0';
633                 if( strlen( Arg ) > CHANNEL_TOPIC_LEN - 1 ) Config_Error( LOG_WARNING, "%s, line %d: Value of \"Topic\" too long!", NGIRCd_ConfFile, Line );
634                 return;
635         }
636
637         Config_Error( LOG_ERR, "%s, line %d (section \"Channel\"): Unknown variable \"%s\"!", NGIRCd_ConfFile, Line, Var );
638 } /* Handle_CHANNEL */
639
640
641 LOCAL VOID
642 Validate_Config( VOID )
643 {
644         /* Validate configuration settings. */
645         
646         if( ! Conf_ServerName[0] )
647         {
648                 /* No server name configured! */
649                 Config_Error( LOG_ALERT, "No server name configured in \"%s\" ('ServerName')!", NGIRCd_ConfFile );
650                 Config_Error( LOG_ALERT, "%s exiting due to fatal errors!", PACKAGE );
651                 exit( 1 );
652         }
653
654 #ifdef STRICT_RFC
655         if( ! Conf_ServerAdminMail[0] )
656         {
657                 /* No administrative contact configured! */
658                 Config_Error( LOG_ALERT, "No administrator email address configured in \"%s\" ('AdminEMail')!", NGIRCd_ConfFile );
659                 Config_Error( LOG_ALERT, "%s exiting due to fatal errors!", PACKAGE );
660                 exit( 1 );
661         }
662 #endif
663
664         if( ! Conf_ServerAdmin1[0] && ! Conf_ServerAdmin2[0] && ! Conf_ServerAdminMail[0] )
665         {
666                 /* No administrative information configured! */
667                 Log( LOG_WARNING, "No administrative information configured but required by RFC!" );
668         }
669 } /* Validate_Config */
670
671
672 #ifdef PROTOTYPES
673 LOCAL VOID Config_Error( CONST INT Level, CONST CHAR *Format, ... )
674 #else
675 LOCAL VOID Config_Error( Level, Format, va_alist )
676 CONST INT Level;
677 CONST CHAR *Format;
678 va_dcl
679 #endif
680 {
681         /* Error! Write to console and/or logfile. */
682
683         CHAR msg[MAX_LOG_MSG_LEN];
684         va_list ap;
685
686         assert( Format != NULL );
687
688 #ifdef PROTOTYPES
689         va_start( ap, Format );
690 #else
691         va_start( ap );
692 #endif
693         vsnprintf( msg, MAX_LOG_MSG_LEN, Format, ap );
694         va_end( ap );
695         
696         /* During "normal operations" the log functions of the daemon should
697          * be used, but during testing of the configuration file, all messages
698          * should go directly to the console: */
699         if( Use_Log ) Log( Level, "%s", msg );
700         else puts( msg );
701 } /* Config_Error */
702
703
704 /* -eof- */