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