]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/conf.c
config: deprecate NoXX-Options
[ngircd-alex.git] / src / ngircd / conf.c
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001-2010 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 #include "imp.h"
18 #include <assert.h>
19 #include <errno.h>
20 #ifdef PROTOTYPES
21 #       include <stdarg.h>
22 #else
23 #       include <varargs.h>
24 #endif
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <strings.h>
29 #include <unistd.h>
30 #include <pwd.h>
31 #include <grp.h>
32 #include <sys/types.h>
33 #include <unistd.h>
34
35 #ifdef HAVE_CTYPE_H
36 # include <ctype.h>
37 #endif
38
39 #include "array.h"
40 #include "ngircd.h"
41 #include "conn.h"
42 #include "channel.h"
43 #include "defines.h"
44 #include "log.h"
45 #include "match.h"
46 #include "tool.h"
47
48 #include "exp.h"
49 #include "conf.h"
50
51
52 static bool Use_Log = true, Using_MotdFile = true;
53 static CONF_SERVER New_Server;
54 static int New_Server_Idx;
55
56 static size_t Conf_Oper_Count;
57 static size_t Conf_Channel_Count;
58 static char Conf_MotdFile[FNAME_LEN];
59
60 static void Set_Defaults PARAMS(( bool InitServers ));
61 static bool Read_Config PARAMS(( bool ngircd_starting ));
62 static bool Validate_Config PARAMS(( bool TestOnly, bool Rehash ));
63
64 static void Handle_GLOBAL PARAMS(( int Line, char *Var, char *Arg ));
65 static void Handle_OPERATOR PARAMS(( int Line, char *Var, char *Arg ));
66 static void Handle_SERVER PARAMS(( int Line, char *Var, char *Arg ));
67 static void Handle_CHANNEL PARAMS(( int Line, char *Var, char *Arg ));
68
69 static void Config_Error PARAMS(( const int Level, const char *Format, ... ));
70
71 static void Config_Error_NaN PARAMS(( const int LINE, const char *Value ));
72 static void Config_Error_TooLong PARAMS(( const int LINE, const char *Value ));
73
74 static void Init_Server_Struct PARAMS(( CONF_SERVER *Server ));
75
76 #ifdef WANT_IPV6
77 #define DEFAULT_LISTEN_ADDRSTR "::,0.0.0.0"
78 #else
79 #define DEFAULT_LISTEN_ADDRSTR "0.0.0.0"
80 #endif
81
82 #ifdef SSL_SUPPORT
83 struct SSLOptions Conf_SSLOptions;
84
85 static void
86 ConfSSL_Init(void)
87 {
88         free(Conf_SSLOptions.KeyFile);
89         Conf_SSLOptions.KeyFile = NULL;
90
91         free(Conf_SSLOptions.CertFile);
92         Conf_SSLOptions.CertFile = NULL;
93
94         free(Conf_SSLOptions.DHFile);
95         Conf_SSLOptions.DHFile = NULL;
96         array_free_wipe(&Conf_SSLOptions.KeyFilePassword);
97 }
98
99 static bool
100 ssl_print_configvar(const char *name, const char *file)
101 {
102         FILE *fp;
103
104         if (!file) {
105                 printf("  %s =\n", name);
106                 return true;
107         }
108
109         fp = fopen(file, "r");
110         if (fp)
111                 fclose(fp);
112         else
113                 fprintf(stderr, "ERROR: %s \"%s\": %s\n",
114                         name, file, strerror(errno));
115
116         printf("  %s = %s\n", name, file);
117         return fp != NULL;
118 }
119
120 static bool
121 ConfSSL_Puts(void)
122 {
123         bool ret;
124
125         ret = ssl_print_configvar("SSLKeyFile", Conf_SSLOptions.KeyFile);
126
127         if (!ssl_print_configvar("SSLCertFile", Conf_SSLOptions.CertFile))
128                 ret = false;
129
130         if (!ssl_print_configvar("SSLDHFile", Conf_SSLOptions.DHFile))
131                 ret = false;
132
133         if (array_bytes(&Conf_SSLOptions.KeyFilePassword))
134                 puts("  SSLKeyFilePassword = <secret>");
135
136         array_free_wipe(&Conf_SSLOptions.KeyFilePassword);
137
138         return ret;
139 }
140 #endif
141
142 static char *
143 strdup_warn(const char *str)
144 {
145         char *ptr = strdup(str);
146         if (!ptr)
147                 Config_Error(LOG_ERR, "Could not allocate mem for string: %s", str);
148         return ptr;
149 }
150
151
152 static void
153 ports_puts(array *a)
154 {
155         size_t len;
156         UINT16 *ports;
157         len = array_length(a, sizeof(UINT16));
158         if (len--) {
159                 ports = (UINT16*) array_start(a);
160                 printf("%u", (unsigned int) *ports);
161                 while (len--) {
162                         ports++;
163                         printf(", %u", (unsigned int) *ports);
164                 }
165         }
166         putc('\n', stdout);
167 }
168
169
170 static void
171 ports_parse(array *a, int Line, char *Arg)
172 {
173         char *ptr;
174         int port;
175         UINT16 port16;
176
177         array_trunc(a);
178
179         /* Ports on that the server should listen. More port numbers
180          * must be separated by "," */
181         ptr = strtok( Arg, "," );
182         while (ptr) {
183                 ngt_TrimStr(ptr);
184                 port = atoi(ptr);
185                 if (port > 0 && port < 0xFFFF) {
186                         port16 = (UINT16) port;
187                         if (!array_catb(a, (char*)&port16, sizeof port16))
188                                 Config_Error(LOG_ERR, "%s, line %d Could not add port number %ld: %s",
189                                                         NGIRCd_ConfFile, Line, port, strerror(errno));
190                 } else {
191                         Config_Error( LOG_ERR, "%s, line %d (section \"Global\"): Illegal port number %ld!",
192                                                                         NGIRCd_ConfFile, Line, port );
193                 }
194
195                 ptr = strtok( NULL, "," );
196         }
197 }
198
199
200 GLOBAL void
201 Conf_Init( void )
202 {
203         Read_Config( true );
204         Validate_Config(false, false);
205 } /* Config_Init */
206
207
208 GLOBAL bool
209 Conf_Rehash( void )
210 {
211         if (!Read_Config(false))
212                 return false;
213         Validate_Config(false, true);
214
215         /* Update CLIENT structure of local server */
216         Client_SetInfo(Client_ThisServer(), Conf_ServerInfo);
217         return true;
218 } /* Config_Rehash */
219
220
221 static const char*
222 yesno_to_str(int boolean_value)
223 {
224         if (boolean_value)
225                 return "yes";
226         return "no";
227 }
228
229
230 static void
231 opers_free(void)
232 {
233         struct Conf_Oper *op;
234         size_t len;
235         
236         len = array_length(&Conf_Opers, sizeof(*op));
237         op = array_start(&Conf_Opers);
238         while (len--) {
239                 free(op->mask);
240                 op++;
241         }
242         array_free(&Conf_Opers);
243 }
244
245 static void
246 opers_puts(void)
247 {
248         struct Conf_Oper *op;
249         size_t len;
250         
251         len = array_length(&Conf_Opers, sizeof(*op));
252         op = array_start(&Conf_Opers);
253         while (len--) {
254                 assert(op->name[0]);
255
256                 puts("[OPERATOR]");
257                 printf("  Name = %s\n", op->name);
258                 printf("  Password = %s\n", op->pwd);
259                 printf("  Mask = %s\n\n", op->mask ? op->mask : "");
260                 op++;
261         }
262 }
263
264
265 GLOBAL int
266 Conf_Test( void )
267 {
268         /* Read configuration, validate and output it. */
269
270         struct passwd *pwd;
271         struct group *grp;
272         unsigned int i;
273         bool config_valid;
274         size_t predef_channel_count;
275         struct Conf_Channel *predef_chan;
276
277         Use_Log = false;
278
279         if (! Read_Config(true))
280                 return 1;
281
282         config_valid = Validate_Config(true, false);
283
284         /* If stdin and stdout ("you can read our nice message and we can
285          * read in your keypress") are valid tty's, wait for a key: */
286         if( isatty( fileno( stdin )) && isatty( fileno( stdout ))) {
287                 puts( "OK, press enter to see a dump of your service configuration ..." );
288                 getchar( );
289         } else {
290                 puts( "Ok, dump of your server configuration follows:\n" );
291         }
292
293         puts( "[GLOBAL]" );
294         printf("  Name = %s\n", Conf_ServerName);
295         printf("  Info = %s\n", Conf_ServerInfo);
296 #ifndef PAM
297         printf("  Password = %s\n", Conf_ServerPwd);
298 #endif
299         printf("  WebircPassword = %s\n", Conf_WebircPwd);
300         printf("  AdminInfo1 = %s\n", Conf_ServerAdmin1);
301         printf("  AdminInfo2 = %s\n", Conf_ServerAdmin2);
302         printf("  AdminEMail = %s\n", Conf_ServerAdminMail);
303         if (Using_MotdFile) {
304                 printf("  MotdFile = %s\n", Conf_MotdFile);
305                 printf("  MotdPhrase =\n");
306         } else {
307                 printf("  MotdFile = \n");
308                 printf("  MotdPhrase = %s\n", array_bytes(&Conf_Motd)
309                        ? (const char*) array_start(&Conf_Motd) : "");
310         }
311         printf("  ChrootDir = %s\n", Conf_Chroot);
312         printf("  PidFile = %s\n", Conf_PidFile);
313         printf("  Listen = %s\n", Conf_ListenAddress);
314         fputs("  Ports = ", stdout);
315         ports_puts(&Conf_ListenPorts);
316 #ifdef SSL_SUPPORT
317         fputs("  SSLPorts = ", stdout);
318         ports_puts(&Conf_SSLOptions.ListenPorts);
319         if (!ConfSSL_Puts())
320                 config_valid = false;
321 #endif
322
323         pwd = getpwuid(Conf_UID);
324         if (pwd)
325                 printf("  ServerUID = %s\n", pwd->pw_name);
326         else
327                 printf("  ServerUID = %ld\n", (long)Conf_UID);
328         grp = getgrgid(Conf_GID);
329         if (grp)
330                 printf("  ServerGID = %s\n", grp->gr_name);
331         else
332                 printf("  ServerGID = %ld\n", (long)Conf_GID);
333 #ifdef SYSLOG
334         printf("  SyslogFacility = %s\n",
335                ngt_SyslogFacilityName(Conf_SyslogFacility));
336 #endif
337         printf("  PingTimeout = %d\n", Conf_PingTimeout);
338         printf("  PongTimeout = %d\n", Conf_PongTimeout);
339         printf("  ConnectRetry = %d\n", Conf_ConnectRetry);
340         printf("  OperCanUseMode = %s\n", yesno_to_str(Conf_OperCanMode));
341         printf("  OperServerMode = %s\n", yesno_to_str(Conf_OperServerMode));
342         printf("  AllowRemoteOper = %s\n", yesno_to_str(Conf_AllowRemoteOper));
343         printf("  PredefChannelsOnly = %s\n", yesno_to_str(Conf_PredefChannelsOnly));
344         printf("  DNS = %s\n", yesno_to_str(Conf_DNS));
345         printf("  Ident = %s\n", yesno_to_str(Conf_Ident));
346         printf("  PAM = %s\n", yesno_to_str(Conf_PAM));
347         printf("  ZeroConf = %s\n", yesno_to_str(Conf_ZeroConf));
348
349 #ifdef WANT_IPV6
350         printf("  ConnectIPv4 = %s\n", yesno_to_str(Conf_ConnectIPv6));
351         printf("  ConnectIPv6 = %s\n", yesno_to_str(Conf_ConnectIPv4));
352 #endif
353         printf("  MaxConnections = %ld\n", Conf_MaxConnections);
354         printf("  MaxConnectionsIP = %d\n", Conf_MaxConnectionsIP);
355         printf("  MaxJoins = %d\n", Conf_MaxJoins > 0 ? Conf_MaxJoins : -1);
356         printf("  MaxNickLength = %u\n\n", Conf_MaxNickLength - 1);
357
358         opers_puts();
359
360         for( i = 0; i < MAX_SERVERS; i++ ) {
361                 if( ! Conf_Server[i].name[0] ) continue;
362
363                 /* Valid "Server" section */
364                 puts( "[SERVER]" );
365                 printf( "  Name = %s\n", Conf_Server[i].name );
366                 printf( "  Host = %s\n", Conf_Server[i].host );
367                 printf( "  Port = %u\n", (unsigned int)Conf_Server[i].port );
368 #ifdef SSL_SUPPORT
369                 printf( "  SSLConnect = %s\n", Conf_Server[i].SSLConnect?"yes":"no");
370 #endif
371                 printf( "  MyPassword = %s\n", Conf_Server[i].pwd_in );
372                 printf( "  PeerPassword = %s\n", Conf_Server[i].pwd_out );
373                 printf( "  ServiceMask = %s\n", Conf_Server[i].svs_mask);
374                 printf( "  Group = %d\n", Conf_Server[i].group );
375                 printf( "  Passive = %s\n\n", Conf_Server[i].flags & CONF_SFLAG_DISABLED ? "yes" : "no");
376         }
377
378         predef_channel_count = array_length(&Conf_Channels, sizeof(*predef_chan));
379         predef_chan = array_start(&Conf_Channels);
380
381         for (i = 0; i < predef_channel_count; i++, predef_chan++) {
382                 if (!predef_chan->name[0])
383                         continue;
384
385                 /* Valid "Channel" section */
386                 puts( "[CHANNEL]" );
387                 printf("  Name = %s\n", predef_chan->name);
388                 printf("  Modes = %s\n", predef_chan->modes);
389                 printf("  Key = %s\n", predef_chan->key);
390                 printf("  MaxUsers = %lu\n", predef_chan->maxusers);
391                 printf("  Topic = %s\n", predef_chan->topic);
392                 printf("  KeyFile = %s\n\n", predef_chan->keyfile);
393         }
394
395         return (config_valid ? 0 : 1);
396 } /* Conf_Test */
397
398
399 GLOBAL void
400 Conf_UnsetServer( CONN_ID Idx )
401 {
402         /* Set next time for next connection attempt, if this is a server
403          * link that is (still) configured here. If the server is set as
404          * "once", delete it from our configuration.
405          * Non-Server-Connections will be silently ignored. */
406
407         int i;
408         time_t t;
409
410         /* Check all our configured servers */
411         for( i = 0; i < MAX_SERVERS; i++ ) {
412                 if( Conf_Server[i].conn_id != Idx ) continue;
413
414                 /* Gotcha! Mark server configuration as "unused": */
415                 Conf_Server[i].conn_id = NONE;
416
417                 if( Conf_Server[i].flags & CONF_SFLAG_ONCE ) {
418                         /* Delete configuration here */
419                         Init_Server_Struct( &Conf_Server[i] );
420                 } else {
421                         /* Set time for next connect attempt */
422                         t = time(NULL);
423                         if (Conf_Server[i].lasttry < t - Conf_ConnectRetry) {
424                                 /* The connection has been "long", so we don't
425                                  * require the next attempt to be delayed. */
426                                 Conf_Server[i].lasttry =
427                                         t - Conf_ConnectRetry + RECONNECT_DELAY;
428                         } else
429                                 Conf_Server[i].lasttry = t;
430                 }
431         }
432 } /* Conf_UnsetServer */
433
434
435 GLOBAL void
436 Conf_SetServer( int ConfServer, CONN_ID Idx )
437 {
438         /* Set connection for specified configured server */
439
440         assert( ConfServer > NONE );
441         assert( Idx > NONE );
442
443         Conf_Server[ConfServer].conn_id = Idx;
444 } /* Conf_SetServer */
445
446
447 GLOBAL int
448 Conf_GetServer( CONN_ID Idx )
449 {
450         /* Get index of server in configuration structure */
451
452         int i = 0;
453
454         assert( Idx > NONE );
455
456         for( i = 0; i < MAX_SERVERS; i++ ) {
457                 if( Conf_Server[i].conn_id == Idx ) return i;
458         }
459         return NONE;
460 } /* Conf_GetServer */
461
462
463 GLOBAL bool
464 Conf_EnableServer( const char *Name, UINT16 Port )
465 {
466         /* Enable specified server and adjust port */
467
468         int i;
469
470         assert( Name != NULL );
471
472         for( i = 0; i < MAX_SERVERS; i++ ) {
473                 if( strcasecmp( Conf_Server[i].name, Name ) == 0 ) {
474                         /* Gotcha! Set port and enable server: */
475                         Conf_Server[i].port = Port;
476                         Conf_Server[i].flags &= ~CONF_SFLAG_DISABLED;
477                         return (Conf_Server[i].port && Conf_Server[i].host[0]);
478                 }
479         }
480         return false;
481 } /* Conf_EnableServer */
482
483
484 GLOBAL bool
485 Conf_EnablePassiveServer(const char *Name)
486 {
487         /* Enable specified server */
488         int i;
489
490         assert( Name != NULL );
491         for (i = 0; i < MAX_SERVERS; i++) {
492                 if ((strcasecmp( Conf_Server[i].name, Name ) == 0) && (Conf_Server[i].port > 0)) {
493                         /* BINGO! Enable server */
494                         Conf_Server[i].flags &= ~CONF_SFLAG_DISABLED;
495                         return true;
496                 }
497         }
498         return false;
499 } /* Conf_EnablePassiveServer */
500
501
502 GLOBAL bool
503 Conf_DisableServer( const char *Name )
504 {
505         /* Enable specified server and adjust port */
506
507         int i;
508
509         assert( Name != NULL );
510
511         for( i = 0; i < MAX_SERVERS; i++ ) {
512                 if( strcasecmp( Conf_Server[i].name, Name ) == 0 ) {
513                         /* Gotcha! Disable and disconnect server: */
514                         Conf_Server[i].flags |= CONF_SFLAG_DISABLED;
515                         if( Conf_Server[i].conn_id > NONE ) Conn_Close( Conf_Server[i].conn_id, NULL, "Server link terminated on operator request", true);
516                         return true;
517                 }
518         }
519         return false;
520 } /* Conf_DisableServer */
521
522
523 GLOBAL bool
524 Conf_AddServer( const char *Name, UINT16 Port, const char *Host, const char *MyPwd, const char *PeerPwd )
525 {
526         /* Add new server to configuration */
527
528         int i;
529
530         assert( Name != NULL );
531         assert( Host != NULL );
532         assert( MyPwd != NULL );
533         assert( PeerPwd != NULL );
534
535         /* Search unused item in server configuration structure */
536         for( i = 0; i < MAX_SERVERS; i++ ) {
537                 /* Is this item used? */
538                 if( ! Conf_Server[i].name[0] ) break;
539         }
540         if( i >= MAX_SERVERS ) return false;
541
542         Init_Server_Struct( &Conf_Server[i] );
543         strlcpy( Conf_Server[i].name, Name, sizeof( Conf_Server[i].name ));
544         strlcpy( Conf_Server[i].host, Host, sizeof( Conf_Server[i].host ));
545         strlcpy( Conf_Server[i].pwd_out, MyPwd, sizeof( Conf_Server[i].pwd_out ));
546         strlcpy( Conf_Server[i].pwd_in, PeerPwd, sizeof( Conf_Server[i].pwd_in ));
547         Conf_Server[i].port = Port;
548         Conf_Server[i].flags = CONF_SFLAG_ONCE;
549
550         return true;
551 } /* Conf_AddServer */
552
553
554 /**
555  * Check if the given nick name is an service
556  */
557 GLOBAL bool
558 Conf_IsService(int ConfServer, const char *Nick)
559 {
560         return MatchCaseInsensitive(Conf_Server[ConfServer].svs_mask, Nick);
561 } /* Conf_IsService */
562
563
564 static void
565 Set_Defaults_Optional(void)
566 {
567 #ifdef IDENTAUTH
568         Conf_Ident = true;
569 #else
570         Conf_Ident = false;
571 #endif
572 #ifdef PAM
573         Conf_PAM = true;
574 #else
575         Conf_PAM = false;
576 #endif
577 #ifdef ZEROCONF
578         Conf_ZeroConf = true;
579 #else
580         Conf_ZeroConf = false;
581 #endif
582 }
583
584
585 /**
586  * Initialize configuration settings with their default values.
587  */
588 static void
589 Set_Defaults(bool InitServers)
590 {
591         int i;
592
593         strcpy(Conf_ServerName, "");
594         snprintf(Conf_ServerInfo, sizeof Conf_ServerInfo, "%s %s",
595                  PACKAGE_NAME, PACKAGE_VERSION);
596         strcpy(Conf_ServerPwd, "");
597
598         strcpy(Conf_ServerAdmin1, "");
599         strcpy(Conf_ServerAdmin2, "");
600         strcpy(Conf_ServerAdminMail, "");
601
602         strlcpy(Conf_MotdFile, SYSCONFDIR, sizeof(Conf_MotdFile));
603         strlcat(Conf_MotdFile, MOTD_FILE, sizeof(Conf_MotdFile));
604
605         Conf_UID = Conf_GID = 0;
606         strlcpy(Conf_Chroot, CHROOT_DIR, sizeof(Conf_Chroot));
607         strlcpy(Conf_PidFile, PID_FILE, sizeof(Conf_PidFile));
608
609         free(Conf_ListenAddress);
610         Conf_ListenAddress = NULL;
611
612         Conf_PingTimeout = 120;
613         Conf_PongTimeout = 20;
614         Conf_ConnectRetry = 60;
615         Conf_DNS = true;
616
617         Conf_Oper_Count = 0;
618         Conf_Channel_Count = 0;
619
620         Conf_OperCanMode = false;
621         Conf_OperServerMode = false;
622         Conf_AllowRemoteOper = false;
623         Conf_PredefChannelsOnly = false;
624
625         Conf_ConnectIPv4 = true;
626         Conf_ConnectIPv6 = true;
627
628         Conf_MaxConnections = 0;
629         Conf_MaxConnectionsIP = 5;
630         Conf_MaxJoins = 10;
631         Conf_MaxNickLength = CLIENT_NICK_LEN_DEFAULT;
632
633 #ifdef SYSLOG
634 #ifdef LOG_LOCAL5
635         Conf_SyslogFacility = LOG_LOCAL5;
636 #else
637         Conf_SyslogFacility = 0;
638 #endif
639 #endif
640         Set_Defaults_Optional();
641
642         /* Initialize server configuration structures */
643         if (InitServers) {
644                 for (i = 0; i < MAX_SERVERS;
645                      Init_Server_Struct(&Conf_Server[i++]));
646         }
647 } /* Set_Defaults */
648
649
650 static bool
651 no_listenports(void)
652 {
653         size_t cnt = array_bytes(&Conf_ListenPorts);
654 #ifdef SSL_SUPPORT
655         cnt += array_bytes(&Conf_SSLOptions.ListenPorts);
656 #endif
657         return cnt == 0;
658 }
659
660 static void
661 Read_Motd(const char *filename)
662 {
663         char line[127];
664         FILE *fp;
665
666         if (*filename == '\0')
667                 return;
668
669         fp = fopen(filename, "r");
670         if (!fp) {
671                 Log(LOG_WARNING, "Can't read MOTD file \"%s\": %s",
672                                         filename, strerror(errno));
673                 return;
674         }
675
676         array_free(&Conf_Motd);
677         Using_MotdFile = true;
678
679         while (fgets(line, (int)sizeof line, fp)) {
680                 ngt_TrimLastChr( line, '\n');
681
682                 /* add text including \0 */
683                 if (!array_catb(&Conf_Motd, line, strlen(line) + 1)) {
684                         Log(LOG_WARNING, "Cannot add MOTD text: %s", strerror(errno));
685                         break;
686                 }
687         }
688         fclose(fp);
689 }
690
691 static bool
692 Read_Config( bool ngircd_starting )
693 {
694         /* Read configuration file. */
695
696         char section[LINE_LEN], str[LINE_LEN], *var, *arg, *ptr;
697         const UINT16 defaultport = 6667;
698         int line, i, n;
699         FILE *fd;
700
701         /* Open configuration file */
702         fd = fopen( NGIRCd_ConfFile, "r" );
703         if( ! fd ) {
704                 /* No configuration file found! */
705                 Config_Error( LOG_ALERT, "Can't read configuration \"%s\": %s",
706                                         NGIRCd_ConfFile, strerror( errno ));
707                 if (!ngircd_starting)
708                         return false;
709                 Config_Error( LOG_ALERT, "%s exiting due to fatal errors!", PACKAGE_NAME );
710                 exit( 1 );
711         }
712
713         opers_free();
714         Set_Defaults( ngircd_starting );
715
716         Config_Error( LOG_INFO, "Reading configuration from \"%s\" ...", NGIRCd_ConfFile );
717
718         /* Clean up server configuration structure: mark all already
719          * configured servers as "once" so that they are deleted
720          * after the next disconnect and delete all unused servers.
721          * And delete all servers which are "duplicates" of servers
722          * that are already marked as "once" (such servers have been
723          * created by the last rehash but are now useless). */
724         for( i = 0; i < MAX_SERVERS; i++ ) {
725                 if( Conf_Server[i].conn_id == NONE ) Init_Server_Struct( &Conf_Server[i] );
726                 else {
727                         /* This structure is in use ... */
728                         if( Conf_Server[i].flags & CONF_SFLAG_ONCE ) {
729                                 /* Check for duplicates */
730                                 for( n = 0; n < MAX_SERVERS; n++ ) {
731                                         if( n == i ) continue;
732
733                                         if( Conf_Server[i].conn_id == Conf_Server[n].conn_id ) {
734                                                 Init_Server_Struct( &Conf_Server[n] );
735 #ifdef DEBUG
736                                                 Log(LOG_DEBUG,"Deleted unused duplicate server %d (kept %d).",
737                                                                                                 n, i );
738 #endif
739                                         }
740                                 }
741                         } else {
742                                 /* Mark server as "once" */
743                                 Conf_Server[i].flags |= CONF_SFLAG_ONCE;
744                                 Log( LOG_DEBUG, "Marked server %d as \"once\"", i );
745                         }
746                 }
747         }
748
749         /* Initialize variables */
750         line = 0;
751         strcpy( section, "" );
752         Init_Server_Struct( &New_Server );
753         New_Server_Idx = NONE;
754 #ifdef SSL_SUPPORT
755         ConfSSL_Init();
756 #endif
757         /* Read configuration file */
758         while( true ) {
759                 if( ! fgets( str, LINE_LEN, fd )) break;
760                 ngt_TrimStr( str );
761                 line++;
762
763                 /* Skip comments and empty lines */
764                 if( str[0] == ';' || str[0] == '#' || str[0] == '\0' ) continue;
765
766                 /* Is this the beginning of a new section? */
767                 if(( str[0] == '[' ) && ( str[strlen( str ) - 1] == ']' )) {
768                         strlcpy( section, str, sizeof( section ));
769                         if( strcasecmp( section, "[GLOBAL]" ) == 0 )
770                                 continue;
771
772                         if( strcasecmp( section, "[SERVER]" ) == 0 ) {
773                                 /* Check if there is already a server to add */
774                                 if( New_Server.name[0] ) {
775                                         /* Copy data to "real" server structure */
776                                         assert( New_Server_Idx > NONE );
777                                         Conf_Server[New_Server_Idx] = New_Server;
778                                 }
779
780                                 /* Re-init structure for new server */
781                                 Init_Server_Struct( &New_Server );
782
783                                 /* Search unused item in server configuration structure */
784                                 for( i = 0; i < MAX_SERVERS; i++ ) {
785                                         /* Is this item used? */
786                                         if( ! Conf_Server[i].name[0] ) break;
787                                 }
788                                 if( i >= MAX_SERVERS ) {
789                                         /* Oops, no free item found! */
790                                         Config_Error( LOG_ERR, "Too many servers configured." );
791                                         New_Server_Idx = NONE;
792                                 }
793                                 else New_Server_Idx = i;
794                                 continue;
795                         }
796                         if (strcasecmp(section, "[CHANNEL]") == 0) {
797                                 Conf_Channel_Count++;
798                                 continue;
799                         }
800                         if (strcasecmp(section, "[OPERATOR]") == 0) {
801                                 Conf_Oper_Count++;
802                                 continue;
803                         }
804
805                         Config_Error( LOG_ERR, "%s, line %d: Unknown section \"%s\"!", NGIRCd_ConfFile, line, section );
806                         section[0] = 0x1;
807                 }
808                 if( section[0] == 0x1 ) continue;
809
810                 /* Split line into variable name and parameters */
811                 ptr = strchr( str, '=' );
812                 if( ! ptr ) {
813                         Config_Error( LOG_ERR, "%s, line %d: Syntax error!", NGIRCd_ConfFile, line );
814                         continue;
815                 }
816                 *ptr = '\0';
817                 var = str; ngt_TrimStr( var );
818                 arg = ptr + 1; ngt_TrimStr( arg );
819
820                 if( strcasecmp( section, "[GLOBAL]" ) == 0 ) Handle_GLOBAL( line, var, arg );
821                 else if( strcasecmp( section, "[OPERATOR]" ) == 0 ) Handle_OPERATOR( line, var, arg );
822                 else if( strcasecmp( section, "[SERVER]" ) == 0 ) Handle_SERVER( line, var, arg );
823                 else if( strcasecmp( section, "[CHANNEL]" ) == 0 ) Handle_CHANNEL( line, var, arg );
824                 else Config_Error( LOG_ERR, "%s, line %d: Variable \"%s\" outside section!", NGIRCd_ConfFile, line, var );
825         }
826
827         /* Close configuration file */
828         fclose( fd );
829
830         /* Check if there is still a server to add */
831         if( New_Server.name[0] ) {
832                 /* Copy data to "real" server structure */
833                 assert( New_Server_Idx > NONE );
834                 Conf_Server[New_Server_Idx] = New_Server;
835         }
836
837         /* not a single listening port? Add default. */
838         if (no_listenports() &&
839                 !array_copyb(&Conf_ListenPorts, (char*) &defaultport, sizeof defaultport))
840         {
841                 Config_Error(LOG_ALERT, "Could not add default listening Port %u: %s",
842                                         (unsigned int) defaultport, strerror(errno));
843
844                 exit(1);
845         }
846
847         if (!Conf_ListenAddress)
848                 Conf_ListenAddress = strdup_warn(DEFAULT_LISTEN_ADDRSTR);
849
850         if (!Conf_ListenAddress) {
851                 Config_Error(LOG_ALERT, "%s exiting due to fatal errors!", PACKAGE_NAME);
852                 exit(1);
853         }
854
855         /* No MOTD phrase configured? (re)try motd file. */
856         if (array_bytes(&Conf_Motd) == 0)
857                 Read_Motd(Conf_MotdFile);
858         return true;
859 } /* Read_Config */
860
861
862 static bool
863 Check_ArgIsTrue( const char *Arg )
864 {
865         if( strcasecmp( Arg, "yes" ) == 0 ) return true;
866         if( strcasecmp( Arg, "true" ) == 0 ) return true;
867         if( atoi( Arg ) != 0 ) return true;
868
869         return false;
870 } /* Check_ArgIsTrue */
871
872
873 static unsigned int
874 Handle_MaxNickLength(int Line, const char *Arg)
875 {
876         unsigned new;
877
878         new = (unsigned) atoi(Arg) + 1;
879         if (new > CLIENT_NICK_LEN) {
880                 Config_Error(LOG_WARNING,
881                              "%s, line %d: Value of \"MaxNickLength\" exceeds %u!",
882                              NGIRCd_ConfFile, Line, CLIENT_NICK_LEN - 1);
883                 return CLIENT_NICK_LEN;
884         }
885         if (new < 2) {
886                 Config_Error(LOG_WARNING,
887                              "%s, line %d: Value of \"MaxNickLength\" must be at least 1!",
888                              NGIRCd_ConfFile, Line);
889                 return 2;
890         }
891         return new;
892 } /* Handle_MaxNickLength */
893
894
895 static void
896 WarnIdent(int Line)
897 {
898 #ifndef IDENTAUTH
899         if (Conf_Ident) {
900                 /* user has enabled ident lookups explicitly, but ... */
901                 Config_Error(LOG_WARNING,
902                         "%s: line %d: Ident=True, but ngircd was built without IDENT support",
903                         NGIRCd_ConfFile, Line);
904         }
905 #endif
906 }
907
908 static bool
909 CheckLegacyNoOption(const char *Var, const char *Arg)
910 {
911         if( strcasecmp( Var, "NoDNS" ) == 0 ) {
912                 Conf_DNS = !Check_ArgIsTrue( Arg );
913                 return true;
914         }
915         if (strcasecmp(Var, "NoIdent") == 0) {
916                 Conf_Ident = !Check_ArgIsTrue(Arg);
917                 return true;
918         }
919         if(strcasecmp(Var, "NoPAM") == 0) {
920                 Conf_PAM = !Check_ArgIsTrue(Arg);
921                 return true;
922         }
923         if(strcasecmp(Var, "NoZeroConf") == 0) {
924                 Conf_ZeroConf = !Check_ArgIsTrue(Arg);
925                 return true;
926         }
927         return false;
928 }
929
930 const char *
931 NoNo(const char *str)
932 {
933         assert(strncasecmp("no", str, 2) == 0 && str[2]);
934         return str + 2;
935 }
936
937 static const char *
938 InvertArg(const char *arg)
939 {
940         return yesno_to_str(!Check_ArgIsTrue(arg));
941 }
942
943 static void
944 Handle_GLOBAL( int Line, char *Var, char *Arg )
945 {
946         struct passwd *pwd;
947         struct group *grp;
948         size_t len;
949         
950         assert( Line > 0 );
951         assert( Var != NULL );
952         assert( Arg != NULL );
953         
954         if( strcasecmp( Var, "Name" ) == 0 ) {
955                 /* Server name */
956                 len = strlcpy( Conf_ServerName, Arg, sizeof( Conf_ServerName ));
957                 if (len >= sizeof( Conf_ServerName ))
958                         Config_Error_TooLong( Line, Var );
959                 return;
960         }
961         if( strcasecmp( Var, "Info" ) == 0 ) {
962                 /* Info text of server */
963                 len = strlcpy( Conf_ServerInfo, Arg, sizeof( Conf_ServerInfo ));
964                 if (len >= sizeof( Conf_ServerInfo ))
965                         Config_Error_TooLong ( Line, Var );
966                 return;
967         }
968         if( strcasecmp( Var, "Password" ) == 0 ) {
969                 /* Global server password */
970                 len = strlcpy( Conf_ServerPwd, Arg, sizeof( Conf_ServerPwd ));
971                 if (len >= sizeof( Conf_ServerPwd ))
972                         Config_Error_TooLong( Line, Var );
973                 return;
974         }
975         if (strcasecmp(Var, "WebircPassword") == 0) {
976                 /* Password required for WEBIRC command */
977                 len = strlcpy(Conf_WebircPwd, Arg, sizeof(Conf_WebircPwd));
978                 if (len >= sizeof(Conf_WebircPwd))
979                         Config_Error_TooLong(Line, Var);
980                 return;
981         }
982         if( strcasecmp( Var, "AdminInfo1" ) == 0 ) {
983                 /* Administrative info #1 */
984                 len = strlcpy( Conf_ServerAdmin1, Arg, sizeof( Conf_ServerAdmin1 ));
985                 if (len >= sizeof( Conf_ServerAdmin1 ))
986                         Config_Error_TooLong ( Line, Var );
987                 return;
988         }
989         if( strcasecmp( Var, "AdminInfo2" ) == 0 ) {
990                 /* Administrative info #2 */
991                 len = strlcpy( Conf_ServerAdmin2, Arg, sizeof( Conf_ServerAdmin2 ));
992                 if (len >= sizeof( Conf_ServerAdmin2 ))
993                         Config_Error_TooLong ( Line, Var );
994                 return;
995         }
996         if( strcasecmp( Var, "AdminEMail" ) == 0 ) {
997                 /* Administrative email contact */
998                 len = strlcpy( Conf_ServerAdminMail, Arg, sizeof( Conf_ServerAdminMail ));
999                 if (len >= sizeof( Conf_ServerAdminMail ))
1000                         Config_Error_TooLong( Line, Var );
1001                 return;
1002         }
1003
1004         if( strcasecmp( Var, "Ports" ) == 0 ) {
1005                 ports_parse(&Conf_ListenPorts, Line, Arg);
1006                 return;
1007         }
1008         if( strcasecmp( Var, "MotdFile" ) == 0 ) {
1009                 len = strlcpy( Conf_MotdFile, Arg, sizeof( Conf_MotdFile ));
1010                 if (len >= sizeof( Conf_MotdFile ))
1011                         Config_Error_TooLong( Line, Var );
1012                 Read_Motd(Arg);
1013                 return;
1014         }
1015         if( strcasecmp( Var, "MotdPhrase" ) == 0 ) {
1016                 /* "Message of the day" phrase (instead of file) */
1017                 len = strlen(Arg);
1018                 if (len == 0)
1019                         return;
1020                 if (len >= LINE_LEN) {
1021                         Config_Error_TooLong( Line, Var );
1022                         return;
1023                 }
1024                 if (!array_copyb(&Conf_Motd, Arg, len + 1))
1025                         Config_Error(LOG_WARNING, "%s, line %d: Could not append MotdPhrase: %s",
1026                                                         NGIRCd_ConfFile, Line, strerror(errno));
1027                 Using_MotdFile = false;
1028                 return;
1029         }
1030         if( strcasecmp( Var, "ChrootDir" ) == 0 ) {
1031                 /* directory for chroot() */
1032                 len = strlcpy( Conf_Chroot, Arg, sizeof( Conf_Chroot ));
1033                 if (len >= sizeof( Conf_Chroot ))
1034                         Config_Error_TooLong( Line, Var );
1035                 return;
1036         }
1037         if ( strcasecmp( Var, "PidFile" ) == 0 ) {
1038                 /* name of pidfile */
1039                 len = strlcpy( Conf_PidFile, Arg, sizeof( Conf_PidFile ));
1040                 if (len >= sizeof( Conf_PidFile ))
1041                         Config_Error_TooLong( Line, Var );
1042                 return;
1043         }
1044         if( strcasecmp( Var, "ServerUID" ) == 0 ) {
1045                 /* UID the daemon should switch to */
1046                 pwd = getpwnam( Arg );
1047                 if( pwd ) Conf_UID = pwd->pw_uid;
1048                 else {
1049 #ifdef HAVE_ISDIGIT
1050                         if( ! isdigit( (int)*Arg )) Config_Error_NaN( Line, Var );
1051                         else
1052 #endif
1053                         Conf_UID = (unsigned int)atoi( Arg );
1054                 }
1055                 return;
1056         }
1057         if( strcasecmp( Var, "ServerGID" ) == 0 ) {
1058                 /* GID the daemon should use */
1059                 grp = getgrnam( Arg );
1060                 if( grp ) Conf_GID = grp->gr_gid;
1061                 else {
1062 #ifdef HAVE_ISDIGIT
1063                         if( ! isdigit( (int)*Arg )) Config_Error_NaN( Line, Var );
1064                         else
1065 #endif
1066                         Conf_GID = (unsigned int)atoi( Arg );
1067                 }
1068                 return;
1069         }
1070         if( strcasecmp( Var, "PingTimeout" ) == 0 ) {
1071                 /* PING timeout */
1072                 Conf_PingTimeout = atoi( Arg );
1073                 if( Conf_PingTimeout < 5 ) {
1074                         Config_Error( LOG_WARNING, "%s, line %d: Value of \"PingTimeout\" too low!",
1075                                                                         NGIRCd_ConfFile, Line );
1076                         Conf_PingTimeout = 5;
1077                 }
1078                 return;
1079         }
1080         if( strcasecmp( Var, "PongTimeout" ) == 0 ) {
1081                 /* PONG timeout */
1082                 Conf_PongTimeout = atoi( Arg );
1083                 if( Conf_PongTimeout < 5 ) {
1084                         Config_Error( LOG_WARNING, "%s, line %d: Value of \"PongTimeout\" too low!",
1085                                                                         NGIRCd_ConfFile, Line );
1086                         Conf_PongTimeout = 5;
1087                 }
1088                 return;
1089         }
1090         if( strcasecmp( Var, "ConnectRetry" ) == 0 ) {
1091                 /* Seconds between connection attempts to other servers */
1092                 Conf_ConnectRetry = atoi( Arg );
1093                 if( Conf_ConnectRetry < 5 ) {
1094                         Config_Error( LOG_WARNING, "%s, line %d: Value of \"ConnectRetry\" too low!",
1095                                                                         NGIRCd_ConfFile, Line );
1096                         Conf_ConnectRetry = 5;
1097                 }
1098                 return;
1099         }
1100         if( strcasecmp( Var, "PredefChannelsOnly" ) == 0 ) {
1101                 /* Should we only allow pre-defined-channels? (i.e. users cannot create their own channels) */
1102                 Conf_PredefChannelsOnly = Check_ArgIsTrue( Arg );
1103                 return;
1104         }
1105
1106         if (CheckLegacyNoOption(Var, Arg)) {
1107                 Config_Error(LOG_WARNING, "%s, line %d: \"No\"-Prefix has been removed, use "
1108                                 "\"%s = %s\" instead",
1109                                         NGIRCd_ConfFile, Line, NoNo(Var), InvertArg(Arg));
1110                 if (strcasecmp(Var, "NoIdent") == 0)
1111                         WarnIdent(Line);
1112                 return;
1113         }
1114         if( strcasecmp( Var, "DNS" ) == 0 ) {
1115                 /* do reverse dns lookups when clients connect? */
1116                 Conf_DNS = Check_ArgIsTrue( Arg );
1117                 return;
1118         }
1119         if (strcasecmp(Var, "Ident") == 0) {
1120                 /* do IDENT lookups when clients connect? */
1121                 Conf_Ident = Check_ArgIsTrue(Arg);
1122                 WarnIdent(Line);
1123                 return;
1124         }
1125         if(strcasecmp(Var, "PAM") == 0) {
1126                 /* use PAM library to authenticate users */
1127                 Conf_PAM = Check_ArgIsTrue(Arg);
1128                 return;
1129         }
1130         if(strcasecmp(Var, "ZeroConf") == 0) {
1131                 /* register services using ZeroConf */
1132                 Conf_ZeroConf = Check_ArgIsTrue(Arg);
1133                 return;
1134         }
1135 #ifdef WANT_IPV6
1136         /* the default setting for all the WANT_IPV6 special options is 'true' */
1137         if( strcasecmp( Var, "ConnectIPv6" ) == 0 ) {
1138                 /* connect to other hosts using ipv6, if they have an AAAA record? */
1139                 Conf_ConnectIPv6 = Check_ArgIsTrue( Arg );
1140                 return;
1141         }
1142         if( strcasecmp( Var, "ConnectIPv4" ) == 0 ) {
1143                 /* connect to other hosts using ipv4.
1144                  * again, this can be used for ipv6-only setups */
1145                 Conf_ConnectIPv4 = Check_ArgIsTrue( Arg );
1146                 return;
1147         }
1148 #endif
1149         if( strcasecmp( Var, "OperCanUseMode" ) == 0 ) {
1150                 /* Are IRC operators allowed to use MODE in channels they aren't Op in? */
1151                 Conf_OperCanMode = Check_ArgIsTrue( Arg );
1152                 return;
1153         }
1154         if( strcasecmp( Var, "OperServerMode" ) == 0 ) {
1155                 /* Mask IRC operator as if coming from the server? (ircd-irc2 compat hack) */
1156                 Conf_OperServerMode = Check_ArgIsTrue( Arg );
1157                 return;
1158         }
1159         if(strcasecmp(Var, "AllowRemoteOper") == 0) {
1160                 /* Are remote IRC operators allowed to control this server? */
1161                 Conf_AllowRemoteOper = Check_ArgIsTrue(Arg);
1162                 return;
1163         }
1164         if( strcasecmp( Var, "MaxConnections" ) == 0 ) {
1165                 /* Maximum number of connections. 0 -> "no limit". */
1166 #ifdef HAVE_ISDIGIT
1167                 if( ! isdigit( (int)*Arg )) Config_Error_NaN( Line, Var);
1168                 else
1169 #endif
1170                 Conf_MaxConnections = atol( Arg );
1171                 return;
1172         }
1173         if( strcasecmp( Var, "MaxConnectionsIP" ) == 0 ) {
1174                 /* Maximum number of simultaneous connections from one IP. 0 -> "no limit" */
1175 #ifdef HAVE_ISDIGIT
1176                 if( ! isdigit( (int)*Arg )) Config_Error_NaN( Line, Var );
1177                 else
1178 #endif
1179                 Conf_MaxConnectionsIP = atoi( Arg );
1180                 return;
1181         }
1182         if( strcasecmp( Var, "MaxJoins" ) == 0 ) {
1183                 /* Maximum number of channels a user can join. 0 -> "no limit". */
1184 #ifdef HAVE_ISDIGIT
1185                 if( ! isdigit( (int)*Arg )) Config_Error_NaN( Line, Var );
1186                 else
1187 #endif
1188                 Conf_MaxJoins = atoi( Arg );
1189                 return;
1190         }
1191         if( strcasecmp( Var, "MaxNickLength" ) == 0 ) {
1192                 /* Maximum length of a nick name; must be same on all servers
1193                  * within the IRC network! */
1194                 Conf_MaxNickLength = Handle_MaxNickLength(Line, Arg);
1195                 return;
1196         }
1197
1198         if( strcasecmp( Var, "Listen" ) == 0 ) {
1199                 /* IP-Address to bind sockets */
1200                 if (Conf_ListenAddress) {
1201                         Config_Error(LOG_ERR, "Multiple Listen= options, ignoring: %s", Arg);
1202                         return;
1203                 }
1204                 Conf_ListenAddress = strdup_warn(Arg);
1205                 /*
1206                  * if allocation fails, we're in trouble:
1207                  * we cannot ignore the error -- otherwise ngircd
1208                  * would listen on all interfaces.
1209                  */
1210                 if (!Conf_ListenAddress) {
1211                         Config_Error(LOG_ALERT, "%s exiting due to fatal errors!", PACKAGE_NAME);
1212                         exit(1);
1213                 }
1214                 return;
1215         }
1216
1217 #ifdef SSL_SUPPORT
1218         if( strcasecmp( Var, "SSLPorts" ) == 0 ) {
1219                 ports_parse(&Conf_SSLOptions.ListenPorts, Line, Arg);
1220                 return;
1221         }
1222
1223         if( strcasecmp( Var, "SSLKeyFile" ) == 0 ) {
1224                 assert(Conf_SSLOptions.KeyFile == NULL );
1225                 Conf_SSLOptions.KeyFile = strdup_warn(Arg);
1226                 return;
1227         }
1228         if( strcasecmp( Var, "SSLCertFile" ) == 0 ) {
1229                 assert(Conf_SSLOptions.CertFile == NULL );
1230                 Conf_SSLOptions.CertFile = strdup_warn(Arg);
1231                 return;
1232         }
1233
1234         if( strcasecmp( Var, "SSLKeyFilePassword" ) == 0 ) {
1235                 assert(array_bytes(&Conf_SSLOptions.KeyFilePassword) == 0);
1236                 if (!array_copys(&Conf_SSLOptions.KeyFilePassword, Arg))
1237                         Config_Error( LOG_ERR, "%s, line %d (section \"Global\"): Could not copy %s: %s!",
1238                                                                 NGIRCd_ConfFile, Line, Var, strerror(errno));
1239                 return;
1240         }
1241         if( strcasecmp( Var, "SSLDHFile" ) == 0 ) {
1242                 assert(Conf_SSLOptions.DHFile == NULL);
1243                 Conf_SSLOptions.DHFile = strdup_warn( Arg );
1244                 return;
1245         }
1246 #endif
1247 #ifdef SYSLOG
1248         if (strcasecmp(Var, "SyslogFacility") == 0) {
1249                 Conf_SyslogFacility = ngt_SyslogFacilityID(Arg,
1250                                                            Conf_SyslogFacility);
1251                 return;
1252         }
1253 #endif
1254         Config_Error(LOG_ERR, "%s, line %d (section \"Global\"): Unknown variable \"%s\"!",
1255                                                                 NGIRCd_ConfFile, Line, Var);
1256 } /* Handle_GLOBAL */
1257
1258
1259 static void
1260 Handle_OPERATOR( int Line, char *Var, char *Arg )
1261 {
1262         size_t len;
1263         struct Conf_Oper *op;
1264
1265         assert( Line > 0 );
1266         assert( Var != NULL );
1267         assert( Arg != NULL );
1268         assert( Conf_Oper_Count > 0 );
1269
1270         op = array_alloc(&Conf_Opers, sizeof(*op), Conf_Oper_Count - 1);
1271         if (!op) {
1272                 Config_Error(LOG_ERR, "Could not allocate memory for operator (%d:%s = %s)", Line, Var, Arg);
1273                 return;
1274         }
1275
1276         if (strcasecmp(Var, "Name") == 0) {
1277                 /* Name of IRC operator */
1278                 len = strlcpy(op->name, Arg, sizeof(op->name));
1279                 if (len >= sizeof(op->name))
1280                                 Config_Error_TooLong(Line, Var);
1281                 return;
1282         }
1283         if (strcasecmp(Var, "Password") == 0) {
1284                 /* Password of IRC operator */
1285                 len = strlcpy(op->pwd, Arg, sizeof(op->pwd));
1286                 if (len >= sizeof(op->pwd))
1287                                 Config_Error_TooLong(Line, Var);
1288                 return;
1289         }
1290         if (strcasecmp(Var, "Mask") == 0) {
1291                 if (op->mask)
1292                         return; /* Hostname already configured */
1293                 op->mask = strdup_warn( Arg );
1294                 return;
1295         }
1296         Config_Error( LOG_ERR, "%s, line %d (section \"Operator\"): Unknown variable \"%s\"!",
1297                                                                 NGIRCd_ConfFile, Line, Var );
1298 } /* Handle_OPERATOR */
1299
1300
1301 static void
1302 Handle_SERVER( int Line, char *Var, char *Arg )
1303 {
1304         long port;
1305         size_t len;
1306         
1307         assert( Line > 0 );
1308         assert( Var != NULL );
1309         assert( Arg != NULL );
1310
1311         /* Ignore server block if no space is left in server configuration structure */
1312         if( New_Server_Idx <= NONE ) return;
1313
1314         if( strcasecmp( Var, "Host" ) == 0 ) {
1315                 /* Hostname of the server */
1316                 len = strlcpy( New_Server.host, Arg, sizeof( New_Server.host ));
1317                 if (len >= sizeof( New_Server.host ))
1318                         Config_Error_TooLong ( Line, Var );
1319                 return;
1320         }
1321         if( strcasecmp( Var, "Name" ) == 0 ) {
1322                 /* Name of the server ("Nick"/"ID") */
1323                 len = strlcpy( New_Server.name, Arg, sizeof( New_Server.name ));
1324                 if (len >= sizeof( New_Server.name ))
1325                         Config_Error_TooLong( Line, Var );
1326                 return;
1327         }
1328         if (strcasecmp(Var, "Bind") == 0) {
1329                 if (ng_ipaddr_init(&New_Server.bind_addr, Arg, 0))
1330                         return;
1331
1332                 Config_Error(LOG_ERR, "%s, line %d (section \"Server\"): Can't parse IP address \"%s\"",
1333                                 NGIRCd_ConfFile, Line, Arg);
1334                 return;
1335         }
1336         if( strcasecmp( Var, "MyPassword" ) == 0 ) {
1337                 /* Password of this server which is sent to the peer */
1338                 if (*Arg == ':') {
1339                         Config_Error(LOG_ERR,
1340                                 "%s, line %d (section \"Server\"): MyPassword must not start with ':'!",
1341                                                                                 NGIRCd_ConfFile, Line);
1342                 }
1343                 len = strlcpy( New_Server.pwd_in, Arg, sizeof( New_Server.pwd_in ));
1344                 if (len >= sizeof( New_Server.pwd_in ))
1345                         Config_Error_TooLong( Line, Var );
1346                 return;
1347         }
1348         if( strcasecmp( Var, "PeerPassword" ) == 0 ) {
1349                 /* Passwort of the peer which must be received */
1350                 len = strlcpy( New_Server.pwd_out, Arg, sizeof( New_Server.pwd_out ));
1351                 if (len >= sizeof( New_Server.pwd_out ))
1352                         Config_Error_TooLong( Line, Var );
1353                 return;
1354         }
1355         if( strcasecmp( Var, "Port" ) == 0 ) {
1356                 /* Port to which this server should connect */
1357                 port = atol( Arg );
1358                 if( port > 0 && port < 0xFFFF )
1359                         New_Server.port = (UINT16)port;
1360                 else
1361                         Config_Error( LOG_ERR, "%s, line %d (section \"Server\"): Illegal port number %ld!",
1362                                                                                 NGIRCd_ConfFile, Line, port );
1363                 return;
1364         }
1365 #ifdef SSL_SUPPORT
1366         if( strcasecmp( Var, "SSLConnect" ) == 0 ) {
1367                 New_Server.SSLConnect = Check_ArgIsTrue(Arg);
1368                 return;
1369         }
1370 #endif
1371         if( strcasecmp( Var, "Group" ) == 0 ) {
1372                 /* Server group */
1373 #ifdef HAVE_ISDIGIT
1374                 if( ! isdigit( (int)*Arg ))
1375                         Config_Error_NaN( Line, Var );
1376                 else
1377 #endif
1378                 New_Server.group = atoi( Arg );
1379                 return;
1380         }
1381         if( strcasecmp( Var, "Passive" ) == 0 ) {
1382                 if (Check_ArgIsTrue(Arg))
1383                         New_Server.flags |= CONF_SFLAG_DISABLED;
1384                 return;
1385         }
1386         if (strcasecmp(Var, "ServiceMask") == 0) {
1387                 len = strlcpy(New_Server.svs_mask, ngt_LowerStr(Arg),
1388                               sizeof(New_Server.svs_mask));
1389                 if (len >= sizeof(New_Server.svs_mask))
1390                         Config_Error_TooLong(Line, Var);
1391                 return;
1392         }
1393
1394         Config_Error( LOG_ERR, "%s, line %d (section \"Server\"): Unknown variable \"%s\"!",
1395                                                                 NGIRCd_ConfFile, Line, Var );
1396 } /* Handle_SERVER */
1397
1398
1399 static bool
1400 Handle_Channelname(struct Conf_Channel *new_chan, const char *name)
1401 {
1402         size_t size = sizeof(new_chan->name);
1403         char *dest = new_chan->name;
1404
1405         if (!Channel_IsValidName(name)) {
1406                 /*
1407                  * maybe user forgot to add a '#'.
1408                  * This is only here for user convenience.
1409                  */
1410                 *dest = '#';
1411                 --size;
1412                 ++dest;
1413         }
1414         return size > strlcpy(dest, name, size);
1415 }
1416
1417
1418 static void
1419 Handle_CHANNEL(int Line, char *Var, char *Arg)
1420 {
1421         size_t len;
1422         size_t chancount;
1423         struct Conf_Channel *chan;
1424
1425         assert( Line > 0 );
1426         assert( Var != NULL );
1427         assert( Arg != NULL );
1428         assert(Conf_Channel_Count > 0);
1429
1430         chancount = Conf_Channel_Count - 1;
1431
1432         chan = array_alloc(&Conf_Channels, sizeof(*chan), chancount);
1433         if (!chan) {
1434                 Config_Error(LOG_ERR, "Could not allocate memory for predefined channel (%d:%s = %s)", Line, Var, Arg);
1435                 return;
1436         }
1437         if (strcasecmp(Var, "Name") == 0) {
1438                 if (!Handle_Channelname(chan, Arg))
1439                         Config_Error_TooLong(Line, Var);
1440                 return;
1441         }
1442         if (strcasecmp(Var, "Modes") == 0) {
1443                 /* Initial modes */
1444                 len = strlcpy(chan->modes, Arg, sizeof(chan->modes));
1445                 if (len >= sizeof(chan->modes))
1446                         Config_Error_TooLong( Line, Var );
1447                 return;
1448         }
1449         if( strcasecmp( Var, "Topic" ) == 0 ) {
1450                 /* Initial topic */
1451                 len = strlcpy(chan->topic, Arg, sizeof(chan->topic));
1452                 if (len >= sizeof(chan->topic))
1453                         Config_Error_TooLong( Line, Var );
1454                 return;
1455         }
1456         if( strcasecmp( Var, "Key" ) == 0 ) {
1457                 /* Initial Channel Key (mode k) */
1458                 len = strlcpy(chan->key, Arg, sizeof(chan->key));
1459                 if (len >= sizeof(chan->key))
1460                         Config_Error_TooLong(Line, Var);
1461                 return;
1462         }
1463         if( strcasecmp( Var, "MaxUsers" ) == 0 ) {
1464                 /* maximum user limit, mode l */
1465                 chan->maxusers = (unsigned long) atol(Arg);
1466                 if (chan->maxusers == 0)
1467                         Config_Error_NaN(Line, Var);
1468                 return;
1469         }
1470         if (strcasecmp(Var, "KeyFile") == 0) {
1471                 /* channel keys */
1472                 len = strlcpy(chan->keyfile, Arg, sizeof(chan->keyfile));
1473                 if (len >= sizeof(chan->keyfile))
1474                         Config_Error_TooLong(Line, Var);
1475                 return;
1476         }
1477
1478         Config_Error( LOG_ERR, "%s, line %d (section \"Channel\"): Unknown variable \"%s\"!",
1479                                                                 NGIRCd_ConfFile, Line, Var );
1480 } /* Handle_CHANNEL */
1481
1482
1483 static bool
1484 Validate_Config(bool Configtest, bool Rehash)
1485 {
1486         /* Validate configuration settings. */
1487
1488 #ifdef DEBUG
1489         int i, servers, servers_once;
1490 #endif
1491         bool config_valid = true;
1492         char *ptr;
1493
1494         /* Validate configured server name, see RFC 2812 section 2.3.1 */
1495         ptr = Conf_ServerName;
1496         do {
1497                 if (*ptr >= 'a' && *ptr <= 'z') continue;
1498                 if (*ptr >= 'A' && *ptr <= 'Z') continue;
1499                 if (*ptr >= '0' && *ptr <= '9') continue;
1500                 if (ptr > Conf_ServerName) {
1501                         if (*ptr == '.' || *ptr == '-')
1502                                 continue;
1503                 }
1504                 Conf_ServerName[0] = '\0';
1505                 break;
1506         } while (*(++ptr));
1507
1508         if (!Conf_ServerName[0]) {
1509                 /* No server name configured! */
1510                 config_valid = false;
1511                 Config_Error(LOG_ALERT,
1512                              "No (valid) server name configured in \"%s\" (section 'Global': 'Name')!",
1513                              NGIRCd_ConfFile);
1514                 if (!Configtest && !Rehash) {
1515                         Config_Error(LOG_ALERT,
1516                                      "%s exiting due to fatal errors!",
1517                                      PACKAGE_NAME);
1518                         exit(1);
1519                 }
1520         }
1521
1522         if (Conf_ServerName[0] && !strchr(Conf_ServerName, '.')) {
1523                 /* No dot in server name! */
1524                 config_valid = false;
1525                 Config_Error(LOG_ALERT,
1526                              "Invalid server name configured in \"%s\" (section 'Global': 'Name'): Dot missing!",
1527                              NGIRCd_ConfFile);
1528                 if (!Configtest) {
1529                         Config_Error(LOG_ALERT,
1530                                      "%s exiting due to fatal errors!",
1531                                      PACKAGE_NAME);
1532                         exit(1);
1533                 }
1534         }
1535
1536 #ifdef STRICT_RFC
1537         if (!Conf_ServerAdminMail[0]) {
1538                 /* No administrative contact configured! */
1539                 config_valid = false;
1540                 Config_Error(LOG_ALERT,
1541                              "No administrator email address configured in \"%s\" ('AdminEMail')!",
1542                              NGIRCd_ConfFile);
1543                 if (!Configtest) {
1544                         Config_Error(LOG_ALERT,
1545                                      "%s exiting due to fatal errors!",
1546                                      PACKAGE_NAME);
1547                         exit(1);
1548                 }
1549         }
1550 #endif
1551
1552         if (!Conf_ServerAdmin1[0] && !Conf_ServerAdmin2[0]
1553             && !Conf_ServerAdminMail[0]) {
1554                 /* No administrative information configured! */
1555                 Config_Error(LOG_WARNING,
1556                              "No administrative information configured but required by RFC!");
1557         }
1558
1559 #ifdef PAM
1560         if (Conf_ServerPwd[0])
1561                 Config_Error(LOG_ERR,
1562                              "This server uses PAM, \"Password\" will be ignored!");
1563 #endif
1564
1565 #ifdef DEBUG
1566         servers = servers_once = 0;
1567         for (i = 0; i < MAX_SERVERS; i++) {
1568                 if (Conf_Server[i].name[0]) {
1569                         servers++;
1570                         if (Conf_Server[i].flags & CONF_SFLAG_ONCE)
1571                                 servers_once++;
1572                 }
1573         }
1574         Log(LOG_DEBUG,
1575             "Configuration: Operators=%d, Servers=%d[%d], Channels=%d",
1576             Conf_Oper_Count, servers, servers_once, Conf_Channel_Count);
1577 #endif
1578
1579         return config_valid;
1580 } /* Validate_Config */
1581
1582
1583 static void
1584 Config_Error_TooLong ( const int Line, const char *Item )
1585 {
1586         Config_Error( LOG_WARNING, "%s, line %d: Value of \"%s\" too long!", NGIRCd_ConfFile, Line, Item );
1587 }
1588
1589
1590 static void
1591 Config_Error_NaN( const int Line, const char *Item )
1592 {
1593         Config_Error( LOG_WARNING, "%s, line %d: Value of \"%s\" is not a number!",
1594                                                 NGIRCd_ConfFile, Line, Item );
1595 }
1596
1597
1598 #ifdef PROTOTYPES
1599 static void Config_Error( const int Level, const char *Format, ... )
1600 #else
1601 static void Config_Error( Level, Format, va_alist )
1602 const int Level;
1603 const char *Format;
1604 va_dcl
1605 #endif
1606 {
1607         /* Error! Write to console and/or logfile. */
1608
1609         char msg[MAX_LOG_MSG_LEN];
1610         va_list ap;
1611
1612         assert( Format != NULL );
1613
1614 #ifdef PROTOTYPES
1615         va_start( ap, Format );
1616 #else
1617         va_start( ap );
1618 #endif
1619         vsnprintf( msg, MAX_LOG_MSG_LEN, Format, ap );
1620         va_end( ap );
1621         
1622         /* During "normal operations" the log functions of the daemon should
1623          * be used, but during testing of the configuration file, all messages
1624          * should go directly to the console: */
1625         if (Use_Log) Log( Level, "%s", msg );
1626         else puts( msg );
1627 } /* Config_Error */
1628
1629
1630 #ifdef DEBUG
1631
1632 GLOBAL void
1633 Conf_DebugDump(void)
1634 {
1635         int i;
1636
1637         Log(LOG_DEBUG, "Configured servers:");
1638         for (i = 0; i < MAX_SERVERS; i++) {
1639                 if (! Conf_Server[i].name[0])
1640                         continue;
1641                 Log(LOG_DEBUG,
1642                     " - %s: %s:%d, last=%ld, group=%d, flags=%d, conn=%d",
1643                     Conf_Server[i].name, Conf_Server[i].host,
1644                     Conf_Server[i].port, Conf_Server[i].lasttry,
1645                     Conf_Server[i].group, Conf_Server[i].flags,
1646                     Conf_Server[i].conn_id);
1647         }
1648 } /* Conf_DebugDump */
1649
1650 #endif
1651
1652
1653 static void
1654 Init_Server_Struct( CONF_SERVER *Server )
1655 {
1656         /* Initialize server configuration structur to default values */
1657
1658         assert( Server != NULL );
1659
1660         memset( Server, 0, sizeof (CONF_SERVER) );
1661
1662         Server->group = NONE;
1663         Server->lasttry = time( NULL ) - Conf_ConnectRetry + STARTUP_DELAY;
1664
1665         if( NGIRCd_Passive ) Server->flags = CONF_SFLAG_DISABLED;
1666
1667         Proc_InitStruct(&Server->res_stat);
1668         Server->conn_id = NONE;
1669         memset(&Server->bind_addr, 0, sizeof(&Server->bind_addr));
1670 } /* Init_Server_Struct */
1671
1672
1673 /* -eof- */