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