]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/configreader.cpp
Tons of tweaks to the config stuff for the core
[user/henk/code/inspircd.git] / src / configreader.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                     E-mail:
7  *              <brain@chatspike.net>
8  *              <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *          the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 #include "configreader.h"
18 #include <sstream>
19 #include <fstream>
20 #include "inspircd.h"
21 #include "xline.h"
22
23 std::vector<std::string> old_module_names, new_module_names, added_modules, removed_modules;
24
25 ServerConfig::ServerConfig(InspIRCd* Instance) : ServerInstance(Instance)
26 {
27         this->ClearStack();
28         *TempDir = *ServerName = *Network = *ServerDesc = *AdminName = '\0';
29         *HideWhoisServer = *AdminEmail = *AdminNick = *diepass = *restartpass = '\0';
30         *CustomVersion = *motd = *rules = *PrefixQuit = *DieValue = *DNSServer = '\0';
31         *UserStats = *ModPath = *MyExecutable = *DisabledCommands = *PID = '\0';
32         log_file = NULL;
33         NoUserDns = forcedebug = OperSpyWhois = nofork = HideBans = HideSplits = false;
34         CycleHosts = writelog = AllowHalfop = true;
35         dns_timeout = DieDelay = 5;
36         MaxTargets = 20;
37         NetBufferSize = 10240;
38         SoftLimit = MAXCLIENTS;
39         MaxConn = SOMAXCONN;
40         MaxWhoResults = 100;
41         debugging = 0;
42         LogLevel = DEFAULT;
43         maxbans.clear();
44         WhoWasGroupSize = 10;
45         WhoWasMaxGroups = WhoWasGroupSize * MAXCLIENTS;
46         WhoWasMaxKeep = 3600*24*3; // 3 days
47 }
48
49 void ServerConfig::ClearStack()
50 {
51         include_stack.clear();
52 }
53
54 Module* ServerConfig::GetIOHook(int port)
55 {
56         std::map<int,Module*>::iterator x = IOHookModule.find(port);
57         return (x != IOHookModule.end() ? x->second : NULL);
58 }
59
60 bool ServerConfig::AddIOHook(int port, Module* iomod)
61 {
62         if (!GetIOHook(port))
63         {
64                 IOHookModule[port] = iomod;
65                 return true;
66         }
67         else
68         {
69                 ModuleException err("Port already hooked by another module");
70                 throw(err);
71                 return false;
72         }
73 }
74
75 bool ServerConfig::DelIOHook(int port)
76 {
77         std::map<int,Module*>::iterator x = IOHookModule.find(port);
78         if (x != IOHookModule.end())
79         {
80                 IOHookModule.erase(x);
81                 return true;
82         }
83         return false;
84 }
85
86 bool ServerConfig::CheckOnce(char* tag, bool bail, userrec* user)
87 {
88         int count = ConfValueEnum(this->config_data, tag);
89         
90         if (count > 1)
91         {
92                 if (bail)
93                 {
94                         printf("There were errors in your configuration:\nYou have more than one <%s> tag, this is not permitted.\n",tag);
95                         InspIRCd::Exit(ERROR);
96                 }
97                 else
98                 {
99                         if (user)
100                         {
101                                 user->WriteServ("There were errors in your configuration:");
102                                 user->WriteServ("You have more than one <%s> tag, this is not permitted.\n",tag);
103                         }
104                         else
105                         {
106                                 ServerInstance->WriteOpers("There were errors in the configuration file:");
107                                 ServerInstance->WriteOpers("You have more than one <%s> tag, this is not permitted.\n",tag);
108                         }
109                 }
110                 return false;
111         }
112         if (count < 1)
113         {
114                 if (bail)
115                 {
116                         printf("There were errors in your configuration:\nYou have not defined a <%s> tag, this is required.\n",tag);
117                         InspIRCd::Exit(ERROR);
118                 }
119                 else
120                 {
121                         if (user)
122                         {
123                                 user->WriteServ("There were errors in your configuration:");
124                                 user->WriteServ("You have not defined a <%s> tag, this is required.",tag);
125                         }
126                         else
127                         {
128                                 ServerInstance->WriteOpers("There were errors in the configuration file:");
129                                 ServerInstance->WriteOpers("You have not defined a <%s> tag, this is required.",tag);
130                         }
131                 }
132                 return false;
133         }
134         return true;
135 }
136
137 bool NoValidation(ServerConfig* conf, const char* tag, const char* value, void* data)
138 {
139         conf->GetInstance()->Log(DEBUG,"No validation for <%s:%s>",tag,value);
140         return true;
141 }
142
143 bool ValidateTempDir(ServerConfig* conf, const char* tag, const char* value, void* data)
144 {
145         char* x = (char*)data;
146         if (!*x)
147                 strlcpy(x,"/tmp",1024);
148         return true;
149 }
150  
151 bool ValidateMaxTargets(ServerConfig* conf, const char* tag, const char* value, void* data)
152 {
153         int* x = (int*)data;
154         if ((*x < 0) || (*x > 31))
155         {
156                 conf->GetInstance()->Log(DEFAULT,"WARNING: <options:maxtargets> value is greater than 31 or less than 0, set to 20.");
157                 *x = 20;
158         }
159         return true;
160 }
161
162 bool ValidateSoftLimit(ServerConfig* conf, const char* tag, const char* value, void* data)
163 {
164         int* x = (int*)data;    
165         if ((*x < 1) || (*x > MAXCLIENTS))
166         {
167                 conf->GetInstance()->Log(DEFAULT,"WARNING: <options:softlimit> value is greater than %d or less than 0, set to %d.",MAXCLIENTS,MAXCLIENTS);
168                 *x = MAXCLIENTS;
169         }
170         return true;
171 }
172
173 bool ValidateMaxConn(ServerConfig* conf, const char* tag, const char* value, void* data)
174 {
175         int* x = (int*)data;    
176         if (*x > SOMAXCONN)
177                 conf->GetInstance()->Log(DEFAULT,"WARNING: <options:somaxconn> value may be higher than the system-defined SOMAXCONN value!");
178         if (!*x)
179                 *x = SOMAXCONN;
180         return true;
181 }
182
183 bool ValidateDnsTimeout(ServerConfig* conf, const char* tag, const char* value, void* data)
184 {
185         int* x = (int*)data;
186         if (!*x)
187                 *x = 5;
188         return true;
189 }
190
191 bool InitializeDisabledCommands(const char* data, InspIRCd* ServerInstance)
192 {
193         std::stringstream dcmds(data);
194         std::string thiscmd;
195
196         /* Enable everything first */
197         for (nspace::hash_map<std::string,command_t*>::iterator x = ServerInstance->Parser->cmdlist.begin(); x != ServerInstance->Parser->cmdlist.end(); x++)
198                 x->second->Disable(false);
199
200         /* Now disable all the ones which the user wants disabled */
201         while (dcmds >> thiscmd)
202         {
203                 nspace::hash_map<std::string,command_t*>::iterator cm = ServerInstance->Parser->cmdlist.find(thiscmd);
204                 if (cm != ServerInstance->Parser->cmdlist.end())
205                 {
206                         ServerInstance->Log(DEBUG,"Disabling command '%s'",cm->second->command.c_str());
207                         cm->second->Disable(true);
208                 }
209         }
210         return true;
211 }
212
213 bool ValidateDnsServer(ServerConfig* conf, const char* tag, const char* value, void* data)
214 {
215         char* x = (char*)data;
216         if (!*x)
217         {
218                 // attempt to look up their nameserver from /etc/resolv.conf
219                 conf->GetInstance()->Log(DEFAULT,"WARNING: <dns:server> not defined, attempting to find working server in /etc/resolv.conf...");
220                 ifstream resolv("/etc/resolv.conf");
221                 std::string nameserver;
222                 bool found_server = false;
223
224                 if (resolv.is_open())
225                 {
226                         while (resolv >> nameserver)
227                         {
228                                 if ((nameserver == "nameserver") && (!found_server))
229                                 {
230                                         resolv >> nameserver;
231                                         strlcpy(x,nameserver.c_str(),MAXBUF);
232                                         found_server = true;
233                                         conf->GetInstance()->Log(DEFAULT,"<dns:server> set to '%s' as first resolver in /etc/resolv.conf.",nameserver.c_str());
234                                 }
235                         }
236
237                         if (!found_server)
238                         {
239                                 conf->GetInstance()->Log(DEFAULT,"/etc/resolv.conf contains no viable nameserver entries! Defaulting to nameserver '127.0.0.1'!");
240                                 strlcpy(x,"127.0.0.1",MAXBUF);
241                         }
242                 }
243                 else
244                 {
245                         conf->GetInstance()->Log(DEFAULT,"/etc/resolv.conf can't be opened! Defaulting to nameserver '127.0.0.1'!");
246                         strlcpy(x,"127.0.0.1",MAXBUF);
247                 }
248         }
249         return true;
250 }
251
252 bool ValidateModPath(ServerConfig* conf, const char* tag, const char* value, void* data)
253 {
254         char* x = (char*)data;  
255         if (!*x)
256                 strlcpy(x,MOD_PATH,MAXBUF);
257         return true;
258 }
259
260
261 bool ValidateServerName(ServerConfig* conf, const char* tag, const char* value, void* data)
262 {
263         char* x = (char*)data;
264         if (!strchr(x,'.'))
265         {
266                 conf->GetInstance()->Log(DEFAULT,"WARNING: <server:name> '%s' is not a fully-qualified domain name. Changed to '%s%c'",x,x,'.');
267                 charlcat(x,'.',MAXBUF);
268         }
269         //strlower(x);
270         return true;
271 }
272
273 bool ValidateNetBufferSize(ServerConfig* conf, const char* tag, const char* value, void* data)
274 {
275         if ((!conf->NetBufferSize) || (conf->NetBufferSize > 65535) || (conf->NetBufferSize < 1024))
276         {
277                 conf->GetInstance()->Log(DEFAULT,"No NetBufferSize specified or size out of range, setting to default of 10240.");
278                 conf->NetBufferSize = 10240;
279         }
280         return true;
281 }
282
283 bool ValidateMaxWho(ServerConfig* conf, const char* tag, const char* value, void* data)
284 {
285         if ((!conf->MaxWhoResults) || (conf->MaxWhoResults > 65535) || (conf->MaxWhoResults < 1))
286         {
287                 conf->GetInstance()->Log(DEFAULT,"No MaxWhoResults specified or size out of range, setting to default of 128.");
288                 conf->MaxWhoResults = 128;
289         }
290         return true;
291 }
292
293 bool ValidateLogLevel(ServerConfig* conf, const char* tag, const char* value, void* data)
294 {
295         const char* dbg = (const char*)data;
296         conf->LogLevel = DEFAULT;
297         if (!strcmp(dbg,"debug"))
298         {
299                 conf->LogLevel = DEBUG;
300                 conf->debugging = 1;
301         }
302         else if (!strcmp(dbg,"verbose"))
303                 conf->LogLevel = VERBOSE;
304         else if (!strcmp(dbg,"default"))
305                 conf->LogLevel = DEFAULT;
306         else if (!strcmp(dbg,"sparse"))
307                 conf->LogLevel = SPARSE;
308         else if (!strcmp(dbg,"none"))
309                 conf->LogLevel = NONE;
310         return true;
311 }
312
313 bool ValidateMotd(ServerConfig* conf, const char* tag, const char* value, void* data)
314 {
315         conf->ReadFile(conf->MOTD,conf->motd);
316         return true;
317 }
318
319 bool ValidateRules(ServerConfig* conf, const char* tag, const char* value, void* data)
320 {
321         conf->ReadFile(conf->RULES,conf->rules);
322         return true;
323 }
324
325 bool ValidateWhoWas(ServerConfig* conf, const char* tag, const char* value, void* data)
326 {
327         char* max = (char*)data;
328         conf->WhoWasMaxKeep = conf->GetInstance()->Duration(max);
329
330         if (conf->WhoWasGroupSize < 0)
331                 conf->WhoWasGroupSize = 0;
332
333         if (conf->WhoWasMaxGroups < 0)
334                 conf->WhoWasMaxGroups = 0;
335
336         if (conf->WhoWasMaxKeep < 3600)
337         {
338                 conf->WhoWasMaxKeep = 3600;
339                 conf->GetInstance()->Log(DEFAULT,"WARNING: <whowas:maxkeep> value less than 3600, setting to default 3600");
340         }
341         conf->GetInstance()->Log(DEBUG,"whowas:groupsize:%d maxgroups:%d maxkeep:%d",conf->WhoWasGroupSize,conf->WhoWasMaxGroups,conf->WhoWasMaxKeep);
342         irc::whowas::PruneWhoWas(conf->GetInstance(), conf->GetInstance()->Time());
343         return true;
344 }
345
346 /* Callback called before processing the first <connect> tag
347  */
348 bool InitConnect(ServerConfig* conf, const char* tag)
349 {
350         conf->GetInstance()->Log(DEFAULT,"Reading connect classes...");
351         conf->Classes.clear();
352         return true;
353 }
354
355 /* Callback called to process a single <connect> tag
356  */
357 bool DoConnect(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types)
358 {
359         ConnectClass c;
360         const char* allow = values[0].GetString(); /* Yeah, there are a lot of values. Live with it. */
361         const char* deny = values[1].GetString();
362         const char* password = values[2].GetString();
363         int timeout = values[3].GetInteger();
364         int pingfreq = values[4].GetInteger();
365         int flood = values[5].GetInteger();
366         int threshold = values[6].GetInteger();
367         int sendq = values[7].GetInteger();
368         int recvq = values[8].GetInteger();
369         int localmax = values[9].GetInteger();
370         int globalmax = values[10].GetInteger();
371
372         if (*allow)
373         {
374                 c.host = allow;
375                 c.type = CC_ALLOW;
376                 c.pass = password;
377                 c.registration_timeout = timeout;
378                 c.pingtime = pingfreq;
379                 c.flood = flood;
380                 c.threshold = threshold;
381                 c.sendqmax = sendq;
382                 c.recvqmax = recvq;
383                 c.maxlocal = localmax;
384                 c.maxglobal = globalmax;
385
386
387                 if (c.maxlocal == 0)
388                         c.maxlocal = 3;
389                 if (c.maxglobal == 0)
390                         c.maxglobal = 3;
391                 if (c.threshold == 0)
392                 {
393                         c.threshold = 1;
394                         c.flood = 999;
395                         conf->GetInstance()->Log(DEFAULT,"Warning: Connect allow line '%s' has no flood/threshold settings. Setting this tag to 999 lines in 1 second.",c.host.c_str());
396                 }
397                 if (c.sendqmax == 0)
398                         c.sendqmax = 262114;
399                 if (c.recvqmax == 0)
400                         c.recvqmax = 4096;
401                 if (c.registration_timeout == 0)
402                         c.registration_timeout = 90;
403                 if (c.pingtime == 0)
404                         c.pingtime = 120;
405                 conf->Classes.push_back(c);
406         }
407         else
408         {
409                 c.host = deny;
410                 c.type = CC_DENY;
411                 conf->Classes.push_back(c);
412                 conf->GetInstance()->Log(DEBUG,"Read connect class type DENY, host=%s",deny);
413         }
414
415         return true;
416 }
417
418 /* Callback called when there are no more <connect> tags
419  */
420 bool DoneConnect(ServerConfig* conf, const char* tag)
421 {
422         conf->GetInstance()->Log(DEBUG,"DoneConnect called for tag: %s",tag);
423         return true;
424 }
425
426 /* Callback called before processing the first <uline> tag
427  */
428 bool InitULine(ServerConfig* conf, const char* tag)
429 {
430         conf->ulines.clear();
431         return true;
432 }
433
434 /* Callback called to process a single <uline> tag
435  */
436 bool DoULine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types)
437 {
438         const char* server = values[0].GetString();
439         conf->GetInstance()->Log(DEBUG,"Read ULINE '%s'",server);
440         conf->ulines.push_back(server);
441         return true;
442 }
443
444 /* Callback called when there are no more <uline> tags
445  */
446 bool DoneULine(ServerConfig* conf, const char* tag)
447 {
448         return true;
449 }
450
451 /* Callback called before processing the first <module> tag
452  */
453 bool InitModule(ServerConfig* conf, const char* tag)
454 {
455         old_module_names.clear();
456         new_module_names.clear();
457         added_modules.clear();
458         removed_modules.clear();
459         for (std::vector<std::string>::iterator t = conf->module_names.begin(); t != conf->module_names.end(); t++)
460         {
461                 old_module_names.push_back(*t);
462         }
463         return true;
464 }
465
466 /* Callback called to process a single <module> tag
467  */
468 bool DoModule(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types)
469 {
470         const char* modname = values[0].GetString();
471         new_module_names.push_back(modname);
472         return true;
473 }
474
475 /* Callback called when there are no more <module> tags
476  */
477 bool DoneModule(ServerConfig* conf, const char* tag)
478 {
479         // now create a list of new modules that are due to be loaded
480         // and a seperate list of modules which are due to be unloaded
481         for (std::vector<std::string>::iterator _new = new_module_names.begin(); _new != new_module_names.end(); _new++)
482         {
483                 bool added = true;
484
485                 for (std::vector<std::string>::iterator old = old_module_names.begin(); old != old_module_names.end(); old++)
486                 {
487                         if (*old == *_new)
488                                 added = false;
489                 }
490
491                 if (added)
492                         added_modules.push_back(*_new);
493         }
494
495         for (std::vector<std::string>::iterator oldm = old_module_names.begin(); oldm != old_module_names.end(); oldm++)
496         {
497                 bool removed = true;
498                 for (std::vector<std::string>::iterator newm = new_module_names.begin(); newm != new_module_names.end(); newm++)
499                 {
500                         if (*newm == *oldm)
501                                 removed = false;
502                 }
503
504                 if (removed)
505                         removed_modules.push_back(*oldm);
506         }
507         return true;
508 }
509
510 /* Callback called before processing the first <banlist> tag
511  */
512 bool InitMaxBans(ServerConfig* conf, const char* tag)
513 {
514         conf->maxbans.clear();
515         return true;
516 }
517
518 /* Callback called to process a single <banlist> tag
519  */
520 bool DoMaxBans(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types)
521 {
522         const char* channel = values[0].GetString();
523         int limit = values[1].GetInteger();
524         conf->maxbans[channel] = limit;
525         return true;
526 }
527
528 /* Callback called when there are no more <banlist> tags.
529  */
530 bool DoneMaxBans(ServerConfig* conf, const char* tag)
531 {
532         return true;
533 }
534
535 void ServerConfig::Read(bool bail, userrec* user)
536 {
537         static char debug[MAXBUF];      /* Temporary buffer for debugging value */
538         static char maxkeep[MAXBUF];    /* Temporary buffer for WhoWasMaxKeep value */
539         int rem = 0, add = 0;           /* Number of modules added, number of modules removed */
540         std::ostringstream errstr;      /* String stream containing the error output */
541
542         /* These tags MUST occur and must ONLY occur once in the config file */
543         static char* Once[] = { "server", "admin", "files", "power", "options", NULL };
544
545         /* These tags can occur ONCE or not at all */
546         static InitialConfig Values[] = {
547                 {"options",             "softlimit",                    &this->SoftLimit,               DT_INTEGER, ValidateSoftLimit},
548                 {"options",             "somaxconn",                    &this->MaxConn,                 DT_INTEGER, ValidateMaxConn},
549                 {"server",              "name",                         &this->ServerName,              DT_CHARPTR, ValidateServerName},
550                 {"server",              "description",                  &this->ServerDesc,              DT_CHARPTR, NoValidation},
551                 {"server",              "network",                      &this->Network,                 DT_CHARPTR, NoValidation},
552                 {"admin",               "name",                         &this->AdminName,               DT_CHARPTR, NoValidation},
553                 {"admin",               "email",                        &this->AdminEmail,              DT_CHARPTR, NoValidation},
554                 {"admin",               "nick",                         &this->AdminNick,               DT_CHARPTR, NoValidation},
555                 {"files",               "motd",                         &this->motd,                    DT_CHARPTR, ValidateMotd},
556                 {"files",               "rules",                        &this->rules,                   DT_CHARPTR, ValidateRules},
557                 {"power",               "diepass",                      &this->diepass,                 DT_CHARPTR, NoValidation},      
558                 {"power",               "pause",                        &this->DieDelay,                DT_INTEGER, NoValidation},
559                 {"power",               "restartpass",                  &this->restartpass,             DT_CHARPTR, NoValidation},
560                 {"options",             "prefixquit",                   &this->PrefixQuit,              DT_CHARPTR, NoValidation},
561                 {"die",                 "value",                        &this->DieValue,                DT_CHARPTR, NoValidation},
562                 {"options",             "loglevel",                     &debug,                         DT_CHARPTR, ValidateLogLevel},
563                 {"options",             "netbuffersize",                &this->NetBufferSize,           DT_INTEGER, ValidateNetBufferSize},
564                 {"options",             "maxwho",                       &this->MaxWhoResults,           DT_INTEGER, ValidateMaxWho},
565                 {"options",             "allowhalfop",                  &this->AllowHalfop,             DT_BOOLEAN, NoValidation},
566                 {"dns",                 "server",                       &this->DNSServer,               DT_CHARPTR, ValidateDnsServer},
567                 {"dns",                 "timeout",                      &this->dns_timeout,             DT_INTEGER, ValidateDnsTimeout},
568                 {"options",             "moduledir",                    &this->ModPath,                 DT_CHARPTR, ValidateModPath},
569                 {"disabled",            "commands",                     &this->DisabledCommands,        DT_CHARPTR, NoValidation},
570                 {"options",             "userstats",                    &this->UserStats,               DT_CHARPTR, NoValidation},
571                 {"options",             "customversion",                &this->CustomVersion,           DT_CHARPTR, NoValidation},
572                 {"options",             "hidesplits",                   &this->HideSplits,              DT_BOOLEAN, NoValidation},
573                 {"options",             "hidebans",                     &this->HideBans,                DT_BOOLEAN, NoValidation},
574                 {"options",             "hidewhois",                    &this->HideWhoisServer,         DT_CHARPTR, NoValidation},
575                 {"options",             "operspywhois",                 &this->OperSpyWhois,            DT_BOOLEAN, NoValidation},
576                 {"options",             "tempdir",                      &this->TempDir,                 DT_CHARPTR, ValidateTempDir},
577                 {"options",             "nouserdns",                    &this->NoUserDns,               DT_BOOLEAN, NoValidation},
578                 {"options",             "syntaxhints",                  &this->SyntaxHints,             DT_BOOLEAN, NoValidation},
579                 {"options",             "cyclehosts",                   &this->CycleHosts,              DT_BOOLEAN, NoValidation},
580                 {"pid",                 "file",                         &this->PID,                     DT_CHARPTR, NoValidation},
581                 {"whowas",              "groupsize",                    &this->WhoWasGroupSize,         DT_INTEGER, NoValidation},
582                 {"whowas",              "maxgroups",                    &this->WhoWasMaxGroups,         DT_INTEGER, NoValidation},
583                 {"whowas",              "maxkeep",                      &maxkeep,                       DT_CHARPTR, ValidateWhoWas},
584                 {NULL}
585         };
586
587         /* These tags can occur multiple times, and therefore they have special code to read them
588          * which is different to the code for reading the singular tags listed above.
589          */
590         static MultiConfig MultiValues[] = {
591
592                 {"connect",
593                                 {"allow",       "deny",         "password",     "timeout",      "pingfreq",     "flood",
594                                 "threshold",    "sendq",        "recvq",        "localmax",     "globalmax",    NULL},
595                                 {DT_CHARPTR,    DT_CHARPTR,     DT_CHARPTR,     DT_INTEGER,     DT_INTEGER,     DT_INTEGER,
596                                  DT_INTEGER,    DT_INTEGER,     DT_INTEGER,     DT_INTEGER,     DT_INTEGER},
597                                 InitConnect, DoConnect, DoneConnect},
598
599                 {"uline",
600                                 {"server",      NULL},
601                                 {DT_CHARPTR},
602                                 InitULine,DoULine,DoneULine},
603
604                 {"banlist",
605                                 {"chan",        "limit",        NULL},
606                                 {DT_CHARPTR,    DT_INTEGER},
607                                 InitMaxBans, DoMaxBans, DoneMaxBans},
608
609                 {"module",
610                                 {"name",        NULL},
611                                 {DT_CHARPTR},
612                                 InitModule, DoModule, DoneModule},
613
614                 {"badip",
615                                 {"reason",      "ipmask",       NULL},
616                                 {DT_CHARPTR,    DT_CHARPTR},
617                                 InitXLine, DoZLine, DoneXLine},
618
619                 {"badnick",
620                                 {"reason",      "nick",         NULL},
621                                 {DT_CHARPTR,    DT_CHARPTR},
622                                 InitXLine, DoQLine, DoneXLine},
623
624                 {"badhost",
625                                 {"reason",      "host",         NULL},
626                                 {DT_CHARPTR,    DT_CHARPTR},
627                                 InitXLine, DoKLine, DoneXLine},
628
629                 {"exception",
630                                 {"reason",      "host",         NULL},
631                                 {DT_CHARPTR,    DT_CHARPTR},
632                                 InitXLine, DoELine, DoneXLine},
633
634                 {"type",
635                                 {"name",        "classes",      NULL},
636                                 {DT_CHARPTR,    DT_CHARPTR},
637                                 InitTypes, DoType, DoneClassesAndTypes},
638
639                 {"class",
640                                 {"name",        "commands",     NULL},
641                                 {DT_CHARPTR,    DT_CHARPTR},
642                                 InitClasses, DoClass, DoneClassesAndTypes},
643
644                 {NULL}
645         };
646
647         include_stack.clear();
648
649         /* Load and parse the config file, if there are any errors then explode */
650         
651         /* Make a copy here so if it fails then we can carry on running with an unaffected config */
652         ConfigDataHash newconfig;
653         
654         if (this->LoadConf(newconfig, CONFIG_FILE, errstr))
655         {
656                 /* If we succeeded, set the ircd config to the new one */
657                 this->config_data = newconfig;  
658         }
659         else
660         {
661                 ServerInstance->Log(DEFAULT, "There were errors in your configuration:\n%s", errstr.str().c_str());
662
663                 if (bail)
664                 {
665                         /* Unneeded because of the ServerInstance->Log() aboive? */
666                         printf("There were errors in your configuration:\n%s",errstr.str().c_str());
667                         InspIRCd::Exit(ERROR);
668                 }
669                 else
670                 {
671                         std::string errors = errstr.str();
672                         std::string::size_type start;
673                         unsigned int prefixlen;
674                         
675                         start = 0;
676                         /* ":ServerInstance->Config->ServerName NOTICE user->nick :" */
677                         prefixlen = strlen(this->ServerName) + strlen(user->nick) + 11;
678         
679                         if (user)
680                         {
681                                 user->WriteServ("NOTICE %s :There were errors in the configuration file:",user->nick);
682                                 
683                                 while(start < errors.length())
684                                 {
685                                         user->WriteServ("NOTICE %s :%s",user->nick, errors.substr(start, 510 - prefixlen).c_str());
686                                         start += 510 - prefixlen;
687                                 }
688                         }
689                         else
690                         {
691                                 ServerInstance->WriteOpers("There were errors in the configuration file:");
692                                 
693                                 while(start < errors.length())
694                                 {
695                                         ServerInstance->WriteOpers(errors.substr(start, 360).c_str());
696                                         start += 360;
697                                 }
698                         }
699
700                         return;
701                 }
702         }
703
704         /* Check we dont have more than one of singular tags, or any of them missing
705          */
706         for (int Index = 0; Once[Index]; Index++)
707                 if (!CheckOnce(Once[Index],bail,user))
708                         return;
709
710         /* Read the values of all the tags which occur once or not at all, and call their callbacks.
711          */
712         for (int Index = 0; Values[Index].tag; Index++)
713         {
714                 switch (Values[Index].datatype)
715                 {
716                         case DT_CHARPTR:
717                                 /* Assuming MAXBUF here, potentially unsafe */
718                                 ConfValue(this->config_data, Values[Index].tag, Values[Index].value, 0, ((char*)Values[Index].val), MAXBUF);
719                                 ServerInstance->Log(DEBUG,"Data type DT_CHARPTR item <%s:%s> = '%s'", Values[Index].tag, Values[Index].value, ((char*)Values[Index].val));
720                         break;
721
722                         case DT_INTEGER:
723                                 ConfValueInteger(this->config_data, Values[Index].tag, Values[Index].value, 0, *((int*)Values[Index].val));
724                                 ServerInstance->Log(DEBUG,"Data type DT_INTEGER item <%s:%s> = '%d'", Values[Index].tag, Values[Index].value, *((int*)Values[Index].val));
725                         break;
726
727                         case DT_BOOLEAN:
728                                 *((bool*)(Values[Index].val)) = (ConfValueBool(this->config_data, Values[Index].tag, Values[Index].value, 0));
729                                 ServerInstance->Log(DEBUG,"Data type DT_BOOLEAN item <%s:%s> = '%d'", Values[Index].tag, Values[Index].value, *((bool*)(Values[Index].val)));
730                         break;
731
732                         case DT_NOTHING:
733                         break;
734                 }
735
736                 Values[Index].validation_function(this, Values[Index].tag, Values[Index].value, Values[Index].val);
737         }
738
739         /* Read the multiple-tag items (class tags, connect tags, etc)
740          * and call the callbacks associated with them. We have three
741          * callbacks for these, a 'start', 'item' and 'end' callback.
742          */
743         
744         /* XXX - Make this use ConfValueInteger and so on */
745         for (int Index = 0; MultiValues[Index].tag; Index++)
746         {
747                 MultiValues[Index].init_function(this, MultiValues[Index].tag);
748
749                 int number_of_tags = ConfValueEnum(this->config_data, MultiValues[Index].tag);
750
751                 for (int tagnum = 0; tagnum < number_of_tags; tagnum++)
752                 {
753                         ValueList vl;
754                         for (int valuenum = 0; MultiValues[Index].items[valuenum]; valuenum++)
755                         {
756                                 switch (MultiValues[Index].datatype[valuenum])
757                                 {
758                                         case DT_CHARPTR:
759                                                 {
760                                                         char item[MAXBUF];
761                                                         ConfValue(this->config_data, MultiValues[Index].tag, MultiValues[Index].items[valuenum], tagnum, item, MAXBUF);
762                                                         ServerInstance->Log(DEBUG,"Data type DT_CHARPTR multi-item <%s:%s>[%d] = '%s'", MultiValues[Index].tag, MultiValues[Index].items[valuenum],tagnum, item);
763                                                         vl.push_back(ValueItem(item));
764                                                 }
765                                         break;
766                                         case DT_INTEGER:
767                                                 {
768                                                         int item;
769                                                         ConfValueInteger(this->config_data, MultiValues[Index].tag, MultiValues[Index].items[valuenum], tagnum, item);
770                                                         ServerInstance->Log(DEBUG,"Data type DT_INTEGER multi-item <%s:%s>[%d] = '%d'", MultiValues[Index].tag, MultiValues[Index].items[valuenum],tagnum, item);
771                                                         vl.push_back(ValueItem(item));
772                                                 }
773                                         break;
774                                         case DT_BOOLEAN:
775                                                 {
776                                                         bool item = ConfValueBool(this->config_data, MultiValues[Index].tag, MultiValues[Index].items[valuenum], tagnum);
777                                                         ServerInstance->Log(DEBUG,"Data type DT_BOOLEAN multi-item <%s:%s>[%d] = '%d'", MultiValues[Index].tag, MultiValues[Index].items[valuenum],tagnum, item);
778                                                         vl.push_back(ValueItem(item));
779                                                 }
780                                         break;
781                                         default:
782                                         break;
783                                 }
784                         }
785                         ServerInstance->Log(DEBUG,"Call validation function for multi-value <%s>", MultiValues[Index].tag);
786                         MultiValues[Index].validation_function(this, MultiValues[Index].tag, (char**)MultiValues[Index].items, vl, MultiValues[Index].datatype);
787                 }
788
789                 MultiValues[Index].finish_function(this, MultiValues[Index].tag);
790         }
791
792         // write once here, to try it out and make sure its ok
793         ServerInstance->WritePID(this->PID);
794
795         ServerInstance->Log(DEFAULT,"Done reading configuration file.");
796
797         /* If we're rehashing, let's load any new modules, and unload old ones
798          */
799         if (!bail)
800         {
801                 int found_ports = 0;
802                 FailedPortList pl;
803                 ServerInstance->stats->BoundPortCount = ServerInstance->BindPorts(false, found_ports, pl);
804
805                 if (pl.size())
806                 {
807                         user->WriteServ("NOTICE %s :*** Not all your client ports could be bound.", user->nick);
808                         user->WriteServ("NOTICE %s :*** The following port%s failed to bind:", user->nick, found_ports - ServerInstance->stats->BoundPortCount != 1 ? "s" : "");
809                         int j = 1;
810                         for (FailedPortList::iterator i = pl.begin(); i != pl.end(); i++, j++)
811                         {
812                                 user->WriteServ("NOTICE %s :*** %d.   IP: %s     Port: %lu", user->nick, j, i->first.empty() ? "<all>" : i->first.c_str(), (unsigned long)i->second);
813                         }
814                 }
815
816                 if (!removed_modules.empty())
817                         for (std::vector<std::string>::iterator removing = removed_modules.begin(); removing != removed_modules.end(); removing++)
818                         {
819                                 if (ServerInstance->UnloadModule(removing->c_str()))
820                                 {
821                                         ServerInstance->WriteOpers("*** REHASH UNLOADED MODULE: %s",removing->c_str());
822
823                                         if (user)
824                                                 user->WriteServ("973 %s %s :Module %s successfully unloaded.",user->nick, removing->c_str(), removing->c_str());
825
826                                         rem++;
827                                 }
828                                 else
829                                 {
830                                         if (user)
831                                                 user->WriteServ("972 %s %s :Failed to unload module %s: %s",user->nick, removing->c_str(), removing->c_str(), ServerInstance->ModuleError());
832                                 }
833                         }
834
835                 if (!added_modules.empty())
836                 for (std::vector<std::string>::iterator adding = added_modules.begin(); adding != added_modules.end(); adding++)
837                 {
838                         if (ServerInstance->LoadModule(adding->c_str()))
839                         {
840                                 ServerInstance->WriteOpers("*** REHASH LOADED MODULE: %s",adding->c_str());
841
842                                 if (user)
843                                         user->WriteServ("975 %s %s :Module %s successfully loaded.",user->nick, adding->c_str(), adding->c_str());
844
845                                 add++;
846                         }
847                         else
848                         {
849                                 if (user)
850                                         user->WriteServ("974 %s %s :Failed to load module %s: %s",user->nick, adding->c_str(), adding->c_str(), ServerInstance->ModuleError());
851                         }
852                 }
853
854                 ServerInstance->Log(DEFAULT,"Successfully unloaded %lu of %lu modules and loaded %lu of %lu modules.",(unsigned long)rem,(unsigned long)removed_modules.size(),(unsigned long)add,(unsigned long)added_modules.size());
855         }
856 }
857
858 bool ServerConfig::LoadConf(ConfigDataHash &target, const char* filename, std::ostringstream &errorstream)
859 {
860         std::ifstream conf(filename);
861         std::string line;
862         char ch;
863         long linenumber;
864         bool in_tag;
865         bool in_quote;
866         bool in_comment;
867         
868         linenumber = 1;
869         in_tag = false;
870         in_quote = false;
871         in_comment = false;
872         
873         /* Check if the file open failed first */
874         if (!conf)
875         {
876                 errorstream << "LoadConf: Couldn't open config file: " << filename << std::endl;
877                 return false;
878         }
879         
880         /* Fix the chmod of the file to restrict it to the current user and group */
881         chmod(filename,0600);
882         
883         for (unsigned int t = 0; t < include_stack.size(); t++)
884         {
885                 if (std::string(filename) == include_stack[t])
886                 {
887                         errorstream << "File " << filename << " is included recursively (looped inclusion)." << std::endl;
888                         return false;
889                 }
890         }
891         
892         /* It's not already included, add it to the list of files we've loaded */
893         include_stack.push_back(filename);
894         
895         /* Start reading characters... */       
896         while(conf.get(ch))
897         {
898                 /*
899                  * Here we try and get individual tags on separate lines,
900                  * this would be so easy if we just made people format
901                  * their config files like that, but they don't so...
902                  * We check for a '<' and then know the line is over when
903                  * we get a '>' not inside quotes. If we find two '<' and
904                  * no '>' then die with an error.
905                  */
906                 
907                 if((ch == '#') && !in_quote)
908                         in_comment = true;
909                 
910                 if(((ch == '\n') || (ch == '\r')) && in_quote)
911                 {
912                         errorstream << "Got a newline within a quoted section, this is probably a typo: " << filename << ":" << linenumber << std::endl;
913                         return false;
914                 }
915                 
916                 switch(ch)
917                 {
918                         case '\n':
919                                 linenumber++;
920                         case '\r':
921                                 in_comment = false;
922                         case '\0':
923                                 continue;
924                         case '\t':
925                                 ch = ' ';
926                 }
927                 
928                 if(in_comment)
929                         continue;
930
931                 /* XXX: Added by Brain, May 1st 2006 - Escaping of characters.
932                  * Note that this WILL NOT usually allow insertion of newlines,
933                  * because a newline is two characters long. Use it primarily to
934                  * insert the " symbol.
935                  *
936                  * Note that this also involves a further check when parsing the line,
937                  * which can be found below.
938                  */
939                 if ((ch == '\\') && (in_quote) && (in_tag))
940                 {
941                         line += ch;
942                         ServerInstance->Log(DEBUG,"Escape sequence in config line.");
943                         char real_character;
944                         if (conf.get(real_character))
945                         {
946                                 ServerInstance->Log(DEBUG,"Escaping %c", real_character);
947                                 if (real_character == 'n')
948                                         real_character = '\n';
949                                 line += real_character;
950                                 continue;
951                         }
952                         else
953                         {
954                                 errorstream << "End of file after a \\, what did you want to escape?: " << filename << ":" << linenumber << std::endl;
955                                 return false;
956                         }
957                 }
958
959                 line += ch;
960                 
961                 if(ch == '<')
962                 {
963                         if(in_tag)
964                         {
965                                 if(!in_quote)
966                                 {
967                                         errorstream << "Got another opening < when the first one wasn't closed: " << filename << ":" << linenumber << std::endl;
968                                         return false;
969                                 }
970                         }
971                         else
972                         {
973                                 if(in_quote)
974                                 {
975                                         errorstream << "We're in a quote but outside a tag, interesting. " << filename << ":" << linenumber << std::endl;
976                                         return false;
977                                 }
978                                 else
979                                 {
980                                         // errorstream << "Opening new config tag on line " << linenumber << std::endl;
981                                         in_tag = true;
982                                 }
983                         }
984                 }
985                 else if(ch == '"')
986                 {
987                         if(in_tag)
988                         {
989                                 if(in_quote)
990                                 {
991                                         // errorstream << "Closing quote in config tag on line " << linenumber << std::endl;
992                                         in_quote = false;
993                                 }
994                                 else
995                                 {
996                                         // errorstream << "Opening quote in config tag on line " << linenumber << std::endl;
997                                         in_quote = true;
998                                 }
999                         }
1000                         else
1001                         {
1002                                 if(in_quote)
1003                                 {
1004                                         errorstream << "Found a (closing) \" outside a tag: " << filename << ":" << linenumber << std::endl;
1005                                 }
1006                                 else
1007                                 {
1008                                         errorstream << "Found a (opening) \" outside a tag: " << filename << ":" << linenumber << std::endl;
1009                                 }
1010                         }
1011                 }
1012                 else if(ch == '>')
1013                 {
1014                         if(!in_quote)
1015                         {
1016                                 if(in_tag)
1017                                 {
1018                                         // errorstream << "Closing config tag on line " << linenumber << std::endl;
1019                                         in_tag = false;
1020
1021                                         /*
1022                                          * If this finds an <include> then ParseLine can simply call
1023                                          * LoadConf() and load the included config into the same ConfigDataHash
1024                                          */
1025                                         
1026                                         if(!this->ParseLine(target, line, linenumber, errorstream))
1027                                                 return false;
1028                                         
1029                                         line.clear();
1030                                 }
1031                                 else
1032                                 {
1033                                         errorstream << "Got a closing > when we weren't inside a tag: " << filename << ":" << linenumber << std::endl;
1034                                         return false;
1035                                 }
1036                         }
1037                 }
1038         }
1039         
1040         return true;
1041 }
1042
1043 bool ServerConfig::LoadConf(ConfigDataHash &target, const std::string &filename, std::ostringstream &errorstream)
1044 {
1045         return this->LoadConf(target, filename.c_str(), errorstream);
1046 }
1047
1048 bool ServerConfig::ParseLine(ConfigDataHash &target, std::string &line, long linenumber, std::ostringstream &errorstream)
1049 {
1050         std::string tagname;
1051         std::string current_key;
1052         std::string current_value;
1053         KeyValList results;
1054         bool got_name;
1055         bool got_key;
1056         bool in_quote;
1057         
1058         got_name = got_key = in_quote = false;
1059         
1060         // std::cout << "ParseLine(data, '" << line << "', " << linenumber << ", stream)" << std::endl;
1061         
1062         for(std::string::iterator c = line.begin(); c != line.end(); c++)
1063         {
1064                 if(!got_name)
1065                 {
1066                         /* We don't know the tag name yet. */
1067                         
1068                         if(*c != ' ')
1069                         {
1070                                 if(*c != '<')
1071                                 {
1072                                         tagname += *c;
1073                                 }
1074                         }
1075                         else
1076                         {
1077                                 /* We got to a space, we should have the tagname now. */
1078                                 if(tagname.length())
1079                                 {
1080                                         got_name = true;
1081                                 }
1082                         }
1083                 }
1084                 else
1085                 {
1086                         /* We have the tag name */
1087                         if (!got_key)
1088                         {
1089                                 /* We're still reading the key name */
1090                                 if (*c != '=')
1091                                 {
1092                                         if (*c != ' ')
1093                                         {
1094                                                 current_key += *c;
1095                                         }
1096                                 }
1097                                 else
1098                                 {
1099                                         /* We got an '=', end of the key name. */
1100                                         got_key = true;
1101                                 }
1102                         }
1103                         else
1104                         {
1105                                 /* We have the key name, now we're looking for quotes and the value */
1106
1107                                 /* Correctly handle escaped characters here.
1108                                  * See the XXX'ed section above.
1109                                  */
1110                                 if ((*c == '\\') && (in_quote))
1111                                 {
1112                                         c++;
1113                                         if (*c == 'n')
1114                                                 current_value += '\n';
1115                                         else
1116                                                 current_value += *c;
1117                                         continue;
1118                                 }
1119                                 if (*c == '"')
1120                                 {
1121                                         if (!in_quote)
1122                                         {
1123                                                 /* We're not already in a quote. */
1124                                                 in_quote = true;
1125                                         }
1126                                         else
1127                                         {
1128                                                 /* Leaving quotes, we have the value */
1129                                                 results.push_back(KeyVal(current_key, current_value));
1130                                                 
1131                                                 // std::cout << "<" << tagname << ":" << current_key << "> " << current_value << std::endl;
1132                                                 
1133                                                 in_quote = false;
1134                                                 got_key = false;
1135                                                 
1136                                                 if((tagname == "include") && (current_key == "file"))
1137                                                 {
1138                                                         if(!this->DoInclude(target, current_value, errorstream))
1139                                                                 return false;
1140                                                 }
1141                                                 
1142                                                 current_key.clear();
1143                                                 current_value.clear();
1144                                         }
1145                                 }
1146                                 else
1147                                 {
1148                                         if(in_quote)
1149                                         {
1150                                                 current_value += *c;
1151                                         }
1152                                 }
1153                         }
1154                 }
1155         }
1156         
1157         /* Finished parsing the tag, add it to the config hash */
1158         target.insert(std::pair<std::string, KeyValList > (tagname, results));
1159         
1160         return true;
1161 }
1162
1163 bool ServerConfig::DoInclude(ConfigDataHash &target, const std::string &file, std::ostringstream &errorstream)
1164 {
1165         std::string confpath;
1166         std::string newfile;
1167         std::string::size_type pos;
1168         
1169         confpath = CONFIG_FILE;
1170         newfile = file;
1171         
1172         for (std::string::iterator c = newfile.begin(); c != newfile.end(); c++)
1173         {
1174                 if (*c == '\\')
1175                 {
1176                         *c = '/';
1177                 }
1178         }
1179
1180         if (file[0] != '/')
1181         {
1182                 if((pos = confpath.find("/inspircd.conf")) != std::string::npos)
1183                 {
1184                         /* Leaves us with just the path */
1185                         newfile = confpath.substr(0, pos) + std::string("/") + newfile;
1186                 }
1187                 else
1188                 {
1189                         errorstream << "Couldn't get config path from: " << confpath << std::endl;
1190                         return false;
1191                 }
1192         }
1193         
1194         return LoadConf(target, newfile, errorstream);
1195 }
1196
1197 bool ServerConfig::ConfValue(ConfigDataHash &target, const char* tag, const char* var, int index, char* result, int length)
1198 {
1199         std::string value;
1200         bool r = ConfValue(target, std::string(tag), std::string(var), index, value);
1201         strlcpy(result, value.c_str(), length);
1202         return r;
1203 }
1204
1205 bool ServerConfig::ConfValue(ConfigDataHash &target, const std::string &tag, const std::string &var, int index, std::string &result)
1206 {
1207         ConfigDataHash::size_type pos = index;
1208         if((pos >= 0) && (pos < target.count(tag)))
1209         {
1210                 ConfigDataHash::const_iterator iter = target.find(tag);
1211                 
1212                 for(int i = 0; i < index; i++)
1213                         iter++;
1214                 
1215                 for(KeyValList::const_iterator j = iter->second.begin(); j != iter->second.end(); j++)
1216                 {
1217                         if(j->first == var)
1218                         {
1219                                 result = j->second;
1220                                 return true;
1221                         }
1222                 }
1223         }
1224         else if(pos == 0)
1225         {
1226                 ServerInstance->Log(DEBUG, "No <%s> tags in config file.", tag.c_str());
1227         }
1228         else
1229         {
1230                 ServerInstance->Log(DEBUG, "ConfValue got an out-of-range index %d, there are only %d occurences of %s", pos, target.count(tag), tag.c_str());
1231         }
1232         
1233         return false;
1234 }
1235         
1236 bool ServerConfig::ConfValueInteger(ConfigDataHash &target, const char* tag, const char* var, int index, int &result)
1237 {
1238         return ConfValueInteger(target, std::string(tag), std::string(var), index, result);
1239 }
1240
1241 bool ServerConfig::ConfValueInteger(ConfigDataHash &target, const std::string &tag, const std::string &var, int index, int &result)
1242 {
1243         std::string value;
1244         std::istringstream stream;
1245         bool r = ConfValue(target, tag, var, index, value);
1246         stream.str(value);
1247         if(!(stream >> result))
1248                 return false;
1249         return r;
1250 }
1251         
1252 bool ServerConfig::ConfValueBool(ConfigDataHash &target, const char* tag, const char* var, int index)
1253 {
1254         return ConfValueBool(target, std::string(tag), std::string(var), index);
1255 }
1256
1257 bool ServerConfig::ConfValueBool(ConfigDataHash &target, const std::string &tag, const std::string &var, int index)
1258 {
1259         std::string result;
1260         if(!ConfValue(target, tag, var, index, result))
1261                 return false;
1262         
1263         return ((result == "yes") || (result == "true") || (result == "1"));
1264 }
1265         
1266 int ServerConfig::ConfValueEnum(ConfigDataHash &target, const char* tag)
1267 {
1268         return target.count(tag);
1269 }
1270
1271 int ServerConfig::ConfValueEnum(ConfigDataHash &target, const std::string &tag)
1272 {
1273         return target.count(tag);
1274 }
1275         
1276 int ServerConfig::ConfVarEnum(ConfigDataHash &target, const char* tag, int index)
1277 {
1278         return ConfVarEnum(target, std::string(tag), index);
1279 }
1280
1281 int ServerConfig::ConfVarEnum(ConfigDataHash &target, const std::string &tag, int index)
1282 {
1283         ConfigDataHash::size_type pos = index;
1284         
1285         if((pos >= 0) && (pos < target.count(tag)))
1286         {
1287                 ConfigDataHash::const_iterator iter = target.find(tag);
1288                 
1289                 for(int i = 0; i < index; i++)
1290                         iter++;
1291                 
1292                 return iter->second.size();
1293         }
1294         else if(pos == 0)
1295         {
1296                 ServerInstance->Log(DEBUG, "No <%s> tags in config file.", tag.c_str());
1297         }
1298         else
1299         {
1300                 ServerInstance->Log(DEBUG, "ConfVarEnum got an out-of-range index %d, there are only %d occurences of %s", pos, target.count(tag), tag.c_str());
1301         }
1302         
1303         return 0;
1304 }
1305
1306 /** Read the contents of a file located by `fname' into a file_cache pointed at by `F'.
1307  */
1308 bool ServerConfig::ReadFile(file_cache &F, const char* fname)
1309 {
1310         FILE* file;
1311         char linebuf[MAXBUF];
1312
1313         F.clear();
1314         
1315         if (*fname != '/')
1316         {
1317                 std::string::size_type pos;
1318                 std::string confpath = CONFIG_FILE;
1319                 if((pos = confpath.find("/inspircd.conf")) != std::string::npos)
1320                 {
1321                         /* Leaves us with just the path */
1322                         std::string newfile = confpath.substr(0, pos) + std::string("/") + fname;
1323                         file =  fopen(newfile.c_str(), "r");
1324                         
1325                 }
1326         }
1327         else
1328                 file =  fopen(fname, "r");
1329
1330         if (file)
1331         {
1332                 while (!feof(file))
1333                 {
1334                         fgets(linebuf, sizeof(linebuf), file);
1335                         linebuf[strlen(linebuf)-1] = 0;
1336
1337                         if (!feof(file))
1338                         {
1339                                 F.push_back(*linebuf ? linebuf : " ");
1340                         }
1341                 }
1342
1343                 fclose(file);
1344         }
1345         else
1346                 return false;
1347
1348         return true;
1349 }
1350
1351 bool ServerConfig::FileExists(const char* file)
1352 {
1353         FILE *input;
1354         if ((input = fopen (file, "r")) == NULL)
1355         {
1356                 return false;
1357         }
1358         else
1359         {
1360                 fclose(input);
1361                 return true;
1362         }
1363 }
1364
1365 char* ServerConfig::CleanFilename(char* name)
1366 {
1367         char* p = name + strlen(name);
1368         while ((p != name) && (*p != '/')) p--;
1369         return (p != name ? ++p : p);
1370 }
1371
1372
1373 bool ServerConfig::DirValid(const char* dirandfile)
1374 {
1375         char work[MAXBUF];
1376         char buffer[MAXBUF];
1377         char otherdir[MAXBUF];
1378         int p;
1379
1380         strlcpy(work, dirandfile, MAXBUF);
1381         p = strlen(work);
1382
1383         // we just want the dir
1384         while (*work)
1385         {
1386                 if (work[p] == '/')
1387                 {
1388                         work[p] = '\0';
1389                         break;
1390                 }
1391
1392                 work[p--] = '\0';
1393         }
1394
1395         // Get the current working directory
1396         if (getcwd(buffer, MAXBUF ) == NULL )
1397                 return false;
1398
1399         chdir(work);
1400
1401         if (getcwd(otherdir, MAXBUF ) == NULL )
1402                 return false;
1403
1404         chdir(buffer);
1405
1406         size_t t = strlen(work);
1407
1408         if (strlen(otherdir) >= t)
1409         {
1410                 otherdir[t] = '\0';
1411
1412                 if (!strcmp(otherdir,work))
1413                 {
1414                         return true;
1415                 }
1416
1417                 return false;
1418         }
1419         else
1420         {
1421                 return false;
1422         }
1423 }
1424
1425 std::string ServerConfig::GetFullProgDir(char** argv, int argc)
1426 {
1427         char work[MAXBUF];
1428         char buffer[MAXBUF];
1429         char otherdir[MAXBUF];
1430         int p;
1431
1432         strlcpy(work,argv[0],MAXBUF);
1433         p = strlen(work);
1434
1435         // we just want the dir
1436         while (*work)
1437         {
1438                 if (work[p] == '/')
1439                 {
1440                         work[p] = '\0';
1441                         break;
1442                 }
1443
1444                 work[p--] = '\0';
1445         }
1446
1447         // Get the current working directory
1448         if (getcwd(buffer, MAXBUF) == NULL)
1449                 return "";
1450
1451         chdir(work);
1452
1453         if (getcwd(otherdir, MAXBUF) == NULL)
1454                 return "";
1455
1456         chdir(buffer);
1457         return otherdir;
1458 }
1459
1460 InspIRCd* ServerConfig::GetInstance()
1461 {
1462         return ServerInstance;
1463 }
1464