1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd: (C) 2002-2007 InspIRCd Development Team
6 * See: http://www.inspircd.org/wiki/index.php/Credits
8 * This program is free but copyrighted software; see
9 * the file COPYING for details.
11 * ---------------------------------------------------
14 /* $Core: libIRCDconfigreader */
15 /* $CopyInstall: conf/inspircd.quotes.example $(CONPATH) */
16 /* $CopyInstall: conf/inspircd.rules.example $(CONPATH) */
17 /* $CopyInstall: conf/inspircd.motd.example $(CONPATH) */
18 /* $CopyInstall: conf/inspircd.helpop-full.example $(CONPATH) */
19 /* $CopyInstall: conf/inspircd.helpop.example $(CONPATH) */
20 /* $CopyInstall: conf/inspircd.censor.example $(CONPATH) */
21 /* $CopyInstall: conf/inspircd.filter.example $(CONPATH) */
22 /* $CopyInstall: docs/inspircd.conf.example $(CONPATH) */
27 #include "exitcodes.h"
28 #include "commands/cmd_whowas.h"
30 std::vector<std::string> old_module_names, new_module_names, added_modules, removed_modules;
32 /* Needs forward declaration */
33 bool ValidateDnsServer(ServerConfig* conf, const char* tag, const char* value, ValueItem &data);
34 bool DoneELine(ServerConfig* conf, const char* tag);
36 ServerConfig::ServerConfig(InspIRCd* Instance) : ServerInstance(Instance)
39 *ServerName = *Network = *ServerDesc = *AdminName = '\0';
40 *HideWhoisServer = *AdminEmail = *AdminNick = *diepass = *restartpass = *FixedQuit = *HideKillsServer = '\0';
41 *DefaultModes = *CustomVersion = *motd = *rules = *PrefixQuit = *DieValue = *DNSServer = '\0';
42 *UserStats = *ModPath = *MyExecutable = *DisabledCommands = *PID = *SuffixQuit = '\0';
43 WhoWasGroupSize = WhoWasMaxGroups = WhoWasMaxKeep = 0;
45 NoUserDns = forcedebug = OperSpyWhois = nofork = HideBans = HideSplits = UndernetMsgPrefix = false;
46 CycleHosts = writelog = AllowHalfop = true;
47 dns_timeout = DieDelay = 5;
49 NetBufferSize = 10240;
50 SoftLimit = MAXCLIENTS;
58 DNSServerValidator = &ValidateDnsServer;
61 void ServerConfig::ClearStack()
63 include_stack.clear();
66 Module* ServerConfig::GetIOHook(int port)
68 std::map<int,Module*>::iterator x = IOHookModule.find(port);
69 return (x != IOHookModule.end() ? x->second : NULL);
72 Module* ServerConfig::GetIOHook(BufferedSocket* is)
74 std::map<BufferedSocket*,Module*>::iterator x = SocketIOHookModule.find(is);
75 return (x != SocketIOHookModule.end() ? x->second : NULL);
78 bool ServerConfig::AddIOHook(int port, Module* iomod)
82 IOHookModule[port] = iomod;
87 throw ModuleException("Port already hooked by another module");
92 bool ServerConfig::AddIOHook(Module* iomod, BufferedSocket* is)
96 SocketIOHookModule[is] = iomod;
97 is->IsIOHooked = true;
102 throw ModuleException("BufferedSocket derived class already hooked by another module");
107 bool ServerConfig::DelIOHook(int port)
109 std::map<int,Module*>::iterator x = IOHookModule.find(port);
110 if (x != IOHookModule.end())
112 IOHookModule.erase(x);
118 bool ServerConfig::DelIOHook(BufferedSocket* is)
120 std::map<BufferedSocket*,Module*>::iterator x = SocketIOHookModule.find(is);
121 if (x != SocketIOHookModule.end())
123 SocketIOHookModule.erase(x);
129 void ServerConfig::Update005()
131 std::stringstream out(data005);
134 int token_counter = 0;
138 line5 = line5 + token + " ";
140 if (token_counter >= 13)
143 snprintf(buf, MAXBUF, "%s:are supported by this server", line5.c_str());
144 isupport.push_back(buf);
152 snprintf(buf, MAXBUF, "%s:are supported by this server", line5.c_str());
153 isupport.push_back(buf);
157 void ServerConfig::Send005(User* user)
159 for (std::vector<std::string>::iterator line = ServerInstance->Config->isupport.begin(); line != ServerInstance->Config->isupport.end(); line++)
160 user->WriteServ("005 %s %s", user->nick, line->c_str());
163 bool ServerConfig::CheckOnce(char* tag)
165 int count = ConfValueEnum(this->config_data, tag);
169 throw CoreException("You have more than one <"+std::string(tag)+"> tag, this is not permitted.");
174 throw CoreException("You have not defined a <"+std::string(tag)+"> tag, this is required.");
180 bool NoValidation(ServerConfig*, const char*, const char*, ValueItem&)
185 bool DoneConfItem(ServerConfig* conf, const char* tag)
190 bool ValidateMaxTargets(ServerConfig* conf, const char*, const char*, ValueItem &data)
192 if ((data.GetInteger() < 0) || (data.GetInteger() > 31))
194 conf->GetInstance()->Log(DEFAULT,"WARNING: <options:maxtargets> value is greater than 31 or less than 0, set to 20.");
200 bool ValidateSoftLimit(ServerConfig* conf, const char*, const char*, ValueItem &data)
202 if ((data.GetInteger() < 1) || (data.GetInteger() > MAXCLIENTS))
204 conf->GetInstance()->Log(DEFAULT,"WARNING: <options:softlimit> value is greater than %d or less than 0, set to %d.",MAXCLIENTS,MAXCLIENTS);
205 data.Set(MAXCLIENTS);
210 bool ValidateMaxConn(ServerConfig* conf, const char*, const char*, ValueItem &data)
212 if (data.GetInteger() > SOMAXCONN)
213 conf->GetInstance()->Log(DEFAULT,"WARNING: <options:somaxconn> value may be higher than the system-defined SOMAXCONN value!");
217 bool InitializeDisabledCommands(const char* data, InspIRCd* ServerInstance)
219 std::stringstream dcmds(data);
222 /* Enable everything first */
223 for (Commandable::iterator x = ServerInstance->Parser->cmdlist.begin(); x != ServerInstance->Parser->cmdlist.end(); x++)
224 x->second->Disable(false);
226 /* Now disable all the ones which the user wants disabled */
227 while (dcmds >> thiscmd)
229 Commandable::iterator cm = ServerInstance->Parser->cmdlist.find(thiscmd);
230 if (cm != ServerInstance->Parser->cmdlist.end())
232 cm->second->Disable(true);
238 bool ValidateDnsServer(ServerConfig* conf, const char*, const char*, ValueItem &data)
240 if (!*(data.GetString()))
242 std::string nameserver;
243 // attempt to look up their nameserver from /etc/resolv.conf
244 conf->GetInstance()->Log(DEFAULT,"WARNING: <dns:server> not defined, attempting to find working server in /etc/resolv.conf...");
245 ifstream resolv("/etc/resolv.conf");
246 bool found_server = false;
248 if (resolv.is_open())
250 while (resolv >> nameserver)
252 if ((nameserver == "nameserver") && (!found_server))
254 resolv >> nameserver;
255 data.Set(nameserver.c_str());
257 conf->GetInstance()->Log(DEFAULT,"<dns:server> set to '%s' as first resolver in /etc/resolv.conf.",nameserver.c_str());
263 conf->GetInstance()->Log(DEFAULT,"/etc/resolv.conf contains no viable nameserver entries! Defaulting to nameserver '127.0.0.1'!");
264 data.Set("127.0.0.1");
269 conf->GetInstance()->Log(DEFAULT,"/etc/resolv.conf can't be opened! Defaulting to nameserver '127.0.0.1'!");
270 data.Set("127.0.0.1");
276 bool ValidateServerName(ServerConfig* conf, const char*, const char*, ValueItem &data)
278 /* If we already have a servername, and they changed it, we should throw an exception. */
279 if ((strcasecmp(conf->ServerName, data.GetString())) && (*conf->ServerName))
281 throw CoreException("Configuration error: You cannot change your servername at runtime! Please restart your server for this change to be applied.");
282 /* We don't actually reach this return of course... */
285 if (!strchr(data.GetString(),'.'))
287 conf->GetInstance()->Log(DEFAULT,"WARNING: <server:name> '%s' is not a fully-qualified domain name. Changed to '%s%c'",data.GetString(),data.GetString(),'.');
288 std::string moo = std::string(data.GetString()).append(".");
289 data.Set(moo.c_str());
294 bool ValidateNetBufferSize(ServerConfig* conf, const char*, const char*, ValueItem &data)
296 if ((!data.GetInteger()) || (data.GetInteger() > 65535) || (data.GetInteger() < 1024))
298 conf->GetInstance()->Log(DEFAULT,"No NetBufferSize specified or size out of range, setting to default of 10240.");
304 bool ValidateMaxWho(ServerConfig* conf, const char*, const char*, ValueItem &data)
306 if ((data.GetInteger() > 65535) || (data.GetInteger() < 1))
308 conf->GetInstance()->Log(DEFAULT,"<options:maxwhoresults> size out of range, setting to default of 128.");
314 bool ValidateLogLevel(ServerConfig* conf, const char*, const char*, ValueItem &data)
316 std::string dbg = data.GetString();
317 conf->LogLevel = DEFAULT;
320 conf->LogLevel = DEBUG;
321 else if (dbg == "verbose")
322 conf->LogLevel = VERBOSE;
323 else if (dbg == "default")
324 conf->LogLevel = DEFAULT;
325 else if (dbg == "sparse")
326 conf->LogLevel = SPARSE;
327 else if (dbg == "none")
328 conf->LogLevel = NONE;
330 conf->debugging = (conf->LogLevel == DEBUG);
335 bool ValidateMotd(ServerConfig* conf, const char*, const char*, ValueItem &data)
337 conf->ReadFile(conf->MOTD, data.GetString());
341 bool ValidateNotEmpty(ServerConfig*, const char* tag, const char*, ValueItem &data)
343 if (!*data.GetString())
344 throw CoreException(std::string("The value for ")+tag+" cannot be empty!");
348 bool ValidateRules(ServerConfig* conf, const char*, const char*, ValueItem &data)
350 conf->ReadFile(conf->RULES, data.GetString());
354 bool ValidateModeLists(ServerConfig* conf, const char*, const char*, ValueItem &data)
356 memset(conf->HideModeLists, 0, 256);
357 for (const unsigned char* x = (const unsigned char*)data.GetString(); *x; ++x)
358 conf->HideModeLists[*x] = true;
362 bool ValidateExemptChanOps(ServerConfig* conf, const char*, const char*, ValueItem &data)
364 memset(conf->ExemptChanOps, 0, 256);
365 for (const unsigned char* x = (const unsigned char*)data.GetString(); *x; ++x)
366 conf->ExemptChanOps[*x] = true;
370 bool ValidateInvite(ServerConfig* conf, const char*, const char*, ValueItem &data)
372 std::string v = data.GetString();
375 conf->AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_OPS;
377 conf->AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_ALL;
378 else if (v == "dynamic")
379 conf->AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_DYNAMIC;
381 conf->AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_NONE;
386 bool ValidateSID(ServerConfig* conf, const char*, const char*, ValueItem &data)
388 int sid = data.GetInteger();
389 if ((sid > 999) || (sid < 0))
393 conf->GetInstance()->Log(DEFAULT,"WARNING: Server ID is less than 0 or greater than 999. Set to %d", sid);
398 bool ValidateWhoWas(ServerConfig* conf, const char*, const char*, ValueItem &data)
400 conf->WhoWasMaxKeep = conf->GetInstance()->Duration(data.GetString());
402 if (conf->WhoWasGroupSize < 0)
403 conf->WhoWasGroupSize = 0;
405 if (conf->WhoWasMaxGroups < 0)
406 conf->WhoWasMaxGroups = 0;
408 if (conf->WhoWasMaxKeep < 3600)
410 conf->WhoWasMaxKeep = 3600;
411 conf->GetInstance()->Log(DEFAULT,"WARNING: <whowas:maxkeep> value less than 3600, setting to default 3600");
414 Command* whowas_command = conf->GetInstance()->Parser->GetHandler("WHOWAS");
417 std::deque<classbase*> params;
418 whowas_command->HandleInternal(WHOWAS_PRUNE, params);
424 /* Callback called before processing the first <connect> tag
426 bool InitConnect(ServerConfig* conf, const char*)
428 conf->GetInstance()->Log(DEFAULT,"Reading connect classes...");
430 for (ClassVector::iterator i = conf->Classes.begin(); i != conf->Classes.end(); i++)
432 ConnectClass *c = *i;
434 conf->GetInstance()->Log(DEBUG, "Address of class is %p", c);
437 for (ClassVector::iterator i = conf->Classes.begin(); i != conf->Classes.end(); i++)
439 ConnectClass *c = *i;
441 /* only delete a class with refcount 0 */
442 if (c->RefCount == 0)
444 conf->GetInstance()->Log(DEFAULT, "Removing connect class, refcount is 0!");
445 conf->Classes.erase(i);
446 i = conf->Classes.begin(); // start over so we don't trample on a bad iterator
449 /* also mark all existing classes disabled, if they still exist in the conf, they will be reenabled. */
450 c->SetDisabled(true);
456 /* Callback called to process a single <connect> tag
458 bool DoConnect(ServerConfig* conf, const char*, char**, ValueList &values, int*)
461 const char* allow = values[0].GetString(); /* Yeah, there are a lot of values. Live with it. */
462 const char* deny = values[1].GetString();
463 const char* password = values[2].GetString();
464 int timeout = values[3].GetInteger();
465 int pingfreq = values[4].GetInteger();
466 int flood = values[5].GetInteger();
467 int threshold = values[6].GetInteger();
468 int sendq = values[7].GetInteger();
469 int recvq = values[8].GetInteger();
470 int localmax = values[9].GetInteger();
471 int globalmax = values[10].GetInteger();
472 int port = values[11].GetInteger();
473 const char* name = values[12].GetString();
474 const char* parent = values[13].GetString();
475 int maxchans = values[14].GetInteger();
476 unsigned long limit = values[15].GetInteger();
479 * duplicates check: Now we don't delete all connect classes on rehash, we need to ensure we don't add dupes.
480 * easier said than done, but for now we'll just disallow anything with a duplicate host or name. -- w00t
482 for (ClassVector::iterator item = conf->Classes.begin(); item != conf->Classes.end(); ++item)
484 ConnectClass* c = *item;
485 if ((*name && (c->GetName() == name)) || (*allow && (c->GetHost() == allow)) || (*deny && (c->GetHost() == deny)))
487 /* reenable class so users can be shoved into it :P */
488 c->SetDisabled(false);
489 conf->GetInstance()->Log(DEFAULT, "Not adding class, it already exists!");
494 conf->GetInstance()->Log(DEFAULT,"Adding a connect class!");
498 /* Find 'parent' and inherit a new class from it,
499 * then overwrite any values that are set here
501 ClassVector::iterator item = conf->Classes.begin();
502 for (; item != conf->Classes.end(); ++item)
504 ConnectClass* c = *item;
505 conf->GetInstance()->Log(DEBUG,"Class: %s", c->GetName().c_str());
506 if (c->GetName() == parent)
508 ConnectClass* newclass = new ConnectClass(name, c);
509 newclass->Update(timeout, flood, *allow ? allow : deny, pingfreq, password, threshold, sendq, recvq, localmax, globalmax, maxchans, port, limit);
510 conf->Classes.push_back(newclass);
514 if (item == conf->Classes.end())
515 throw CoreException("Class name '" + std::string(name) + "' is configured to inherit from class '" + std::string(parent) + "' which cannot be found.");
521 ConnectClass* c = new ConnectClass(name, timeout, flood, allow, pingfreq, password, threshold, sendq, recvq, localmax, globalmax, maxchans);
524 conf->Classes.push_back(c);
528 ConnectClass* c = new ConnectClass(name, deny);
530 conf->Classes.push_back(c);
537 /* Callback called when there are no more <connect> tags
539 bool DoneConnect(ServerConfig *conf, const char*)
541 conf->GetInstance()->Log(DEFAULT, "Done adding connect classes!");
545 /* Callback called before processing the first <uline> tag
547 bool InitULine(ServerConfig* conf, const char*)
549 conf->ulines.clear();
553 /* Callback called to process a single <uline> tag
555 bool DoULine(ServerConfig* conf, const char*, char**, ValueList &values, int*)
557 const char* server = values[0].GetString();
558 const bool silent = values[1].GetBool();
559 conf->ulines[server] = silent;
563 /* Callback called when there are no more <uline> tags
565 bool DoneULine(ServerConfig*, const char*)
570 /* Callback called before processing the first <module> tag
572 bool InitModule(ServerConfig* conf, const char*)
574 old_module_names.clear();
575 new_module_names.clear();
576 added_modules.clear();
577 removed_modules.clear();
578 for (std::vector<std::string>::iterator t = conf->module_names.begin(); t != conf->module_names.end(); t++)
580 old_module_names.push_back(*t);
585 /* Callback called to process a single <module> tag
587 bool DoModule(ServerConfig*, const char*, char**, ValueList &values, int*)
589 const char* modname = values[0].GetString();
590 new_module_names.push_back(modname);
594 /* Callback called when there are no more <module> tags
596 bool DoneModule(ServerConfig*, const char*)
598 // now create a list of new modules that are due to be loaded
599 // and a seperate list of modules which are due to be unloaded
600 for (std::vector<std::string>::iterator _new = new_module_names.begin(); _new != new_module_names.end(); _new++)
604 for (std::vector<std::string>::iterator old = old_module_names.begin(); old != old_module_names.end(); old++)
611 added_modules.push_back(*_new);
614 for (std::vector<std::string>::iterator oldm = old_module_names.begin(); oldm != old_module_names.end(); oldm++)
617 for (std::vector<std::string>::iterator newm = new_module_names.begin(); newm != new_module_names.end(); newm++)
624 removed_modules.push_back(*oldm);
629 /* Callback called before processing the first <banlist> tag
631 bool InitMaxBans(ServerConfig* conf, const char*)
633 conf->maxbans.clear();
637 /* Callback called to process a single <banlist> tag
639 bool DoMaxBans(ServerConfig* conf, const char*, char**, ValueList &values, int*)
641 const char* channel = values[0].GetString();
642 int limit = values[1].GetInteger();
643 conf->maxbans[channel] = limit;
647 /* Callback called when there are no more <banlist> tags.
649 bool DoneMaxBans(ServerConfig*, const char*)
654 void ServerConfig::ReportConfigError(const std::string &errormessage, bool bail, User* user)
656 ServerInstance->Log(DEFAULT, "There were errors in your configuration file: %s", errormessage.c_str());
659 /* Unneeded because of the ServerInstance->Log() aboive? */
660 printf("There were errors in your configuration:\n%s\n\n",errormessage.c_str());
661 ServerInstance->Exit(EXIT_STATUS_CONFIG);
665 std::string errors = errormessage;
666 std::string::size_type start;
667 unsigned int prefixlen;
669 /* ":ServerInstance->Config->ServerName NOTICE user->nick :" */
672 prefixlen = strlen(this->ServerName) + strlen(user->nick) + 11;
673 user->WriteServ("NOTICE %s :There were errors in the configuration file:",user->nick);
674 while (start < errors.length())
676 user->WriteServ("NOTICE %s :%s",user->nick, errors.substr(start, 510 - prefixlen).c_str());
677 start += 510 - prefixlen;
682 ServerInstance->WriteOpers("There were errors in the configuration file:");
683 while (start < errors.length())
685 ServerInstance->WriteOpers(errors.substr(start, 360).c_str());
693 void ServerConfig::Read(bool bail, User* user)
695 static char debug[MAXBUF]; /* Temporary buffer for debugging value */
696 static char maxkeep[MAXBUF]; /* Temporary buffer for WhoWasMaxKeep value */
697 static char hidemodes[MAXBUF]; /* Modes to not allow listing from users below halfop */
698 static char exemptchanops[MAXBUF]; /* Exempt channel ops from these modes */
699 static char announceinvites[MAXBUF]; /* options:announceinvites setting */
700 int rem = 0, add = 0; /* Number of modules added, number of modules removed */
701 std::ostringstream errstr; /* String stream containing the error output */
703 /* These tags MUST occur and must ONLY occur once in the config file */
704 static char* Once[] = { "server", "admin", "files", "power", "options", NULL };
706 /* These tags can occur ONCE or not at all */
707 InitialConfig Values[] = {
708 {"options", "softlimit", MAXCLIENTS_S, new ValueContainerUInt (&this->SoftLimit), DT_INTEGER, ValidateSoftLimit},
709 {"options", "somaxconn", SOMAXCONN_S, new ValueContainerInt (&this->MaxConn), DT_INTEGER, ValidateMaxConn},
710 {"options", "moronbanner", "Youre banned!", new ValueContainerChar (this->MoronBanner), DT_CHARPTR, NoValidation},
711 {"server", "name", "", new ValueContainerChar (this->ServerName), DT_CHARPTR, ValidateServerName},
712 {"server", "description", "Configure Me", new ValueContainerChar (this->ServerDesc), DT_CHARPTR, NoValidation},
713 {"server", "network", "Network", new ValueContainerChar (this->Network), DT_CHARPTR, NoValidation},
714 {"server", "id", "0", new ValueContainerInt (&this->sid), DT_INTEGER, ValidateSID},
715 {"admin", "name", "", new ValueContainerChar (this->AdminName), DT_CHARPTR, NoValidation},
716 {"admin", "email", "Mis@configu.red", new ValueContainerChar (this->AdminEmail), DT_CHARPTR, NoValidation},
717 {"admin", "nick", "Misconfigured", new ValueContainerChar (this->AdminNick), DT_CHARPTR, NoValidation},
718 {"files", "motd", "", new ValueContainerChar (this->motd), DT_CHARPTR, ValidateMotd},
719 {"files", "rules", "", new ValueContainerChar (this->rules), DT_CHARPTR, ValidateRules},
720 {"power", "diepass", "", new ValueContainerChar (this->diepass), DT_CHARPTR, ValidateNotEmpty},
721 {"power", "pause", "", new ValueContainerInt (&this->DieDelay), DT_INTEGER, NoValidation},
722 {"power", "restartpass", "", new ValueContainerChar (this->restartpass), DT_CHARPTR, ValidateNotEmpty},
723 {"options", "prefixquit", "", new ValueContainerChar (this->PrefixQuit), DT_CHARPTR, NoValidation},
724 {"options", "suffixquit", "", new ValueContainerChar (this->SuffixQuit), DT_CHARPTR, NoValidation},
725 {"options", "fixedquit", "", new ValueContainerChar (this->FixedQuit), DT_CHARPTR, NoValidation},
726 {"options", "loglevel", "default", new ValueContainerChar (debug), DT_CHARPTR, ValidateLogLevel},
727 {"options", "netbuffersize","10240", new ValueContainerInt (&this->NetBufferSize), DT_INTEGER, ValidateNetBufferSize},
728 {"options", "maxwho", "128", new ValueContainerInt (&this->MaxWhoResults), DT_INTEGER, ValidateMaxWho},
729 {"options", "allowhalfop", "0", new ValueContainerBool (&this->AllowHalfop), DT_BOOLEAN, NoValidation},
730 {"dns", "server", "", new ValueContainerChar (this->DNSServer), DT_CHARPTR, DNSServerValidator},
731 {"dns", "timeout", "5", new ValueContainerInt (&this->dns_timeout), DT_INTEGER, NoValidation},
732 {"options", "moduledir", MOD_PATH, new ValueContainerChar (this->ModPath), DT_CHARPTR, NoValidation},
733 {"disabled", "commands", "", new ValueContainerChar (this->DisabledCommands), DT_CHARPTR, NoValidation},
734 {"options", "userstats", "", new ValueContainerChar (this->UserStats), DT_CHARPTR, NoValidation},
735 {"options", "customversion","", new ValueContainerChar (this->CustomVersion), DT_CHARPTR, NoValidation},
736 {"options", "hidesplits", "0", new ValueContainerBool (&this->HideSplits), DT_BOOLEAN, NoValidation},
737 {"options", "hidebans", "0", new ValueContainerBool (&this->HideBans), DT_BOOLEAN, NoValidation},
738 {"options", "hidewhois", "", new ValueContainerChar (this->HideWhoisServer), DT_CHARPTR, NoValidation},
739 {"options", "hidekills", "", new ValueContainerChar (this->HideKillsServer), DT_CHARPTR, NoValidation},
740 {"options", "operspywhois", "0", new ValueContainerBool (&this->OperSpyWhois), DT_BOOLEAN, NoValidation},
741 {"options", "nouserdns", "0", new ValueContainerBool (&this->NoUserDns), DT_BOOLEAN, NoValidation},
742 {"options", "syntaxhints", "0", new ValueContainerBool (&this->SyntaxHints), DT_BOOLEAN, NoValidation},
743 {"options", "cyclehosts", "0", new ValueContainerBool (&this->CycleHosts), DT_BOOLEAN, NoValidation},
744 {"options", "ircumsgprefix","0", new ValueContainerBool (&this->UndernetMsgPrefix), DT_BOOLEAN, NoValidation},
745 {"options", "announceinvites", "1", new ValueContainerChar (announceinvites), DT_CHARPTR, ValidateInvite},
746 {"options", "hostintopic", "1", new ValueContainerBool (&this->FullHostInTopic), DT_BOOLEAN, NoValidation},
747 {"options", "hidemodes", "", new ValueContainerChar (hidemodes), DT_CHARPTR, ValidateModeLists},
748 {"options", "exemptchanops","", new ValueContainerChar (exemptchanops), DT_CHARPTR, ValidateExemptChanOps},
749 {"options", "maxtargets", "20", new ValueContainerUInt (&this->MaxTargets), DT_INTEGER, ValidateMaxTargets},
750 {"options", "defaultmodes", "nt", new ValueContainerChar (this->DefaultModes), DT_CHARPTR, NoValidation},
751 {"pid", "file", "", new ValueContainerChar (this->PID), DT_CHARPTR, NoValidation},
752 {"whowas", "groupsize", "10", new ValueContainerInt (&this->WhoWasGroupSize), DT_INTEGER, NoValidation},
753 {"whowas", "maxgroups", "10240", new ValueContainerInt (&this->WhoWasMaxGroups), DT_INTEGER, NoValidation},
754 {"whowas", "maxkeep", "3600", new ValueContainerChar (maxkeep), DT_CHARPTR, ValidateWhoWas},
755 {"die", "value", "", new ValueContainerChar (this->DieValue), DT_CHARPTR, NoValidation},
756 {"channels", "users", "20", new ValueContainerUInt (&this->MaxChans), DT_INTEGER, NoValidation},
757 {"channels", "opers", "60", new ValueContainerUInt (&this->OperMaxChans), DT_INTEGER, NoValidation},
758 {NULL, NULL, NULL, NULL, DT_NOTHING, NoValidation}
761 /* These tags can occur multiple times, and therefore they have special code to read them
762 * which is different to the code for reading the singular tags listed above.
764 MultiConfig MultiValues[] = {
767 {"allow", "deny", "password", "timeout", "pingfreq", "flood",
768 "threshold", "sendq", "recvq", "localmax", "globalmax", "port",
769 "name", "parent", "maxchans", "limit",
771 {"", "", "", "", "120", "",
772 "", "", "", "3", "3", "0",
775 {DT_CHARPTR, DT_CHARPTR, DT_CHARPTR, DT_INTEGER, DT_INTEGER, DT_INTEGER,
776 DT_INTEGER, DT_INTEGER, DT_INTEGER, DT_INTEGER, DT_INTEGER, DT_INTEGER,
777 DT_CHARPTR, DT_CHARPTR, DT_INTEGER, DT_INTEGER},
778 InitConnect, DoConnect, DoneConnect},
781 {"server", "silent", NULL},
783 {DT_CHARPTR, DT_BOOLEAN},
784 InitULine,DoULine,DoneULine},
787 {"chan", "limit", NULL},
789 {DT_CHARPTR, DT_INTEGER},
790 InitMaxBans, DoMaxBans, DoneMaxBans},
796 InitModule, DoModule, DoneModule},
799 {"reason", "ipmask", NULL},
800 {"No reason", "", NULL},
801 {DT_CHARPTR, DT_CHARPTR},
802 InitXLine, DoZLine, DoneConfItem},
805 {"reason", "nick", NULL},
806 {"No reason", "", NULL},
807 {DT_CHARPTR, DT_CHARPTR},
808 InitXLine, DoQLine, DoneConfItem},
811 {"reason", "host", NULL},
812 {"No reason", "", NULL},
813 {DT_CHARPTR, DT_CHARPTR},
814 InitXLine, DoKLine, DoneConfItem},
817 {"reason", "host", NULL},
818 {"No reason", "", NULL},
819 {DT_CHARPTR, DT_CHARPTR},
820 InitXLine, DoELine, DoneELine},
823 {"name", "classes", NULL},
825 {DT_CHARPTR, DT_CHARPTR},
826 InitTypes, DoType, DoneClassesAndTypes},
829 {"name", "commands", NULL},
831 {DT_CHARPTR, DT_CHARPTR},
832 InitClasses, DoClass, DoneClassesAndTypes},
841 include_stack.clear();
843 /* Load and parse the config file, if there are any errors then explode */
845 /* Make a copy here so if it fails then we can carry on running with an unaffected config */
846 ConfigDataHash newconfig;
848 if (this->LoadConf(newconfig, ServerInstance->ConfigFileName, errstr))
850 /* If we succeeded, set the ircd config to the new one */
851 this->config_data = newconfig;
855 ReportConfigError(errstr.str(), bail, user);
859 /* The stuff in here may throw CoreException, be sure we're in a position to catch it. */
862 /* Check we dont have more than one of singular tags, or any of them missing
864 for (int Index = 0; Once[Index]; Index++)
865 if (!CheckOnce(Once[Index]))
868 /* Read the values of all the tags which occur once or not at all, and call their callbacks.
870 for (int Index = 0; Values[Index].tag; Index++)
873 int dt = Values[Index].datatype;
874 bool allow_newlines = ((dt & DT_ALLOW_NEWLINE) > 0);
875 dt &= ~DT_ALLOW_NEWLINE;
877 ConfValue(this->config_data, Values[Index].tag, Values[Index].value, Values[Index].default_value, 0, item, MAXBUF, allow_newlines);
880 if (!Values[Index].validation_function(this, Values[Index].tag, Values[Index].value, vi))
881 throw CoreException("One or more values in your configuration file failed to validate. Please see your ircd.log for more information.");
883 switch (Values[Index].datatype)
887 ValueContainerChar* vcc = (ValueContainerChar*)Values[Index].val;
888 /* Make sure we also copy the null terminator */
889 vcc->Set(vi.GetString(), strlen(vi.GetString()) + 1);
894 int val = vi.GetInteger();
895 ValueContainerInt* vci = (ValueContainerInt*)Values[Index].val;
896 vci->Set(&val, sizeof(int));
901 bool val = vi.GetBool();
902 ValueContainerBool* vcb = (ValueContainerBool*)Values[Index].val;
903 vcb->Set(&val, sizeof(bool));
907 /* You don't want to know what happens if someones bad code sends us here. */
911 /* We're done with this now */
912 delete Values[Index].val;
915 /* Read the multiple-tag items (class tags, connect tags, etc)
916 * and call the callbacks associated with them. We have three
917 * callbacks for these, a 'start', 'item' and 'end' callback.
919 for (int Index = 0; MultiValues[Index].tag; Index++)
921 MultiValues[Index].init_function(this, MultiValues[Index].tag);
923 int number_of_tags = ConfValueEnum(this->config_data, MultiValues[Index].tag);
925 for (int tagnum = 0; tagnum < number_of_tags; tagnum++)
928 for (int valuenum = 0; MultiValues[Index].items[valuenum]; valuenum++)
930 int dt = MultiValues[Index].datatype[valuenum];
931 bool allow_newlines = ((dt & DT_ALLOW_NEWLINE) > 0);
932 dt &= ~DT_ALLOW_NEWLINE;
939 if (ConfValue(this->config_data, MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item, MAXBUF, allow_newlines))
940 vl.push_back(ValueItem(item));
942 vl.push_back(ValueItem(""));
948 if (ConfValueInteger(this->config_data, MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item))
949 vl.push_back(ValueItem(item));
951 vl.push_back(ValueItem(0));
956 bool item = ConfValueBool(this->config_data, MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum);
957 vl.push_back(ValueItem(item));
961 /* Someone was smoking craq if we got here, and we're all gonna die. */
966 MultiValues[Index].validation_function(this, MultiValues[Index].tag, (char**)MultiValues[Index].items, vl, MultiValues[Index].datatype);
969 MultiValues[Index].finish_function(this, MultiValues[Index].tag);
974 catch (CoreException &ce)
976 ReportConfigError(ce.GetReason(), bail, user);
980 // write once here, to try it out and make sure its ok
981 ServerInstance->WritePID(this->PID);
983 ServerInstance->Log(DEFAULT,"Done reading configuration file.");
985 /* If we're rehashing, let's load any new modules, and unload old ones
991 ServerInstance->BindPorts(false, found_ports, pl);
993 if (pl.size() && user)
995 user->WriteServ("NOTICE %s :*** Not all your client ports could be bound.", user->nick);
996 user->WriteServ("NOTICE %s :*** The following port(s) failed to bind:", user->nick);
998 for (FailedPortList::iterator i = pl.begin(); i != pl.end(); i++, j++)
1000 user->WriteServ("NOTICE %s :*** %d. IP: %s Port: %lu", user->nick, j, i->first.empty() ? "<all>" : i->first.c_str(), (unsigned long)i->second);
1004 if (!removed_modules.empty())
1006 for (std::vector<std::string>::iterator removing = removed_modules.begin(); removing != removed_modules.end(); removing++)
1008 if (ServerInstance->Modules->Unload(removing->c_str()))
1010 ServerInstance->WriteOpers("*** REHASH UNLOADED MODULE: %s",removing->c_str());
1013 user->WriteServ("973 %s %s :Module %s successfully unloaded.",user->nick, removing->c_str(), removing->c_str());
1020 user->WriteServ("972 %s %s :Failed to unload module %s: %s",user->nick, removing->c_str(), removing->c_str(), ServerInstance->Modules->LastError());
1025 if (!added_modules.empty())
1027 for (std::vector<std::string>::iterator adding = added_modules.begin(); adding != added_modules.end(); adding++)
1029 if (ServerInstance->Modules->Load(adding->c_str()))
1031 ServerInstance->WriteOpers("*** REHASH LOADED MODULE: %s",adding->c_str());
1034 user->WriteServ("975 %s %s :Module %s successfully loaded.",user->nick, adding->c_str(), adding->c_str());
1041 user->WriteServ("974 %s %s :Failed to load module %s: %s",user->nick, adding->c_str(), adding->c_str(), ServerInstance->Modules->LastError());
1046 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());
1049 /** Note: This is safe, the method checks for user == NULL */
1050 ServerInstance->Parser->SetupCommandTable(user);
1053 user->WriteServ("NOTICE %s :*** Successfully rehashed server.", user->nick);
1055 ServerInstance->WriteOpers("*** Successfully rehashed server.");
1058 bool ServerConfig::LoadConf(ConfigDataHash &target, const char* filename, std::ostringstream &errorstream)
1060 std::ifstream conf(filename);
1067 int character_count = 0;
1074 /* Check if the file open failed first */
1077 errorstream << "LoadConf: Couldn't open config file: " << filename << std::endl;
1081 /* Fix the chmod of the file to restrict it to the current user and group */
1082 chmod(filename,0600);
1084 for (unsigned int t = 0; t < include_stack.size(); t++)
1086 if (std::string(filename) == include_stack[t])
1088 errorstream << "File " << filename << " is included recursively (looped inclusion)." << std::endl;
1093 /* It's not already included, add it to the list of files we've loaded */
1094 include_stack.push_back(filename);
1096 /* Start reading characters... */
1097 while (conf.get(ch))
1101 * Fix for moronic windows issue spotted by Adremelech.
1102 * Some windows editors save text files as utf-16, which is
1103 * a total pain in the ass to parse. Users should save in the
1104 * right config format! If we ever see a file where the first
1105 * byte is 0xFF or 0xFE, or the second is 0xFF or 0xFE, then
1106 * this is most likely a utf-16 file. Bail out and insult user.
1108 if ((character_count++ < 2) && (ch == '\xFF' || ch == '\xFE'))
1110 errorstream << "File " << filename << " cannot be read, as it is encoded in braindead UTF-16. Save your file as plain ASCII!" << std::endl;
1115 * Here we try and get individual tags on separate lines,
1116 * this would be so easy if we just made people format
1117 * their config files like that, but they don't so...
1118 * We check for a '<' and then know the line is over when
1119 * we get a '>' not inside quotes. If we find two '<' and
1120 * no '>' then die with an error.
1123 if ((ch == '#') && !in_quote)
1144 /* XXX: Added by Brain, May 1st 2006 - Escaping of characters.
1145 * Note that this WILL NOT usually allow insertion of newlines,
1146 * because a newline is two characters long. Use it primarily to
1147 * insert the " symbol.
1149 * Note that this also involves a further check when parsing the line,
1150 * which can be found below.
1152 if ((ch == '\\') && (in_quote) && (in_tag))
1155 char real_character;
1156 if (conf.get(real_character))
1158 if (real_character == 'n')
1159 real_character = '\n';
1160 line += real_character;
1165 errorstream << "End of file after a \\, what did you want to escape?: " << filename << ":" << linenumber << std::endl;
1179 errorstream << "Got another opening < when the first one wasn't closed: " << filename << ":" << linenumber << std::endl;
1187 errorstream << "We're in a quote but outside a tag, interesting. " << filename << ":" << linenumber << std::endl;
1192 // errorstream << "Opening new config tag on line " << linenumber << std::endl;
1203 // errorstream << "Closing quote in config tag on line " << linenumber << std::endl;
1208 // errorstream << "Opening quote in config tag on line " << linenumber << std::endl;
1216 errorstream << "Found a (closing) \" outside a tag: " << filename << ":" << linenumber << std::endl;
1220 errorstream << "Found a (opening) \" outside a tag: " << filename << ":" << linenumber << std::endl;
1230 // errorstream << "Closing config tag on line " << linenumber << std::endl;
1234 * If this finds an <include> then ParseLine can simply call
1235 * LoadConf() and load the included config into the same ConfigDataHash
1238 if (!this->ParseLine(target, line, linenumber, errorstream))
1245 errorstream << "Got a closing > when we weren't inside a tag: " << filename << ":" << linenumber << std::endl;
1252 /* Fix for bug #392 - if we reach the end of a file and we are still in a quote or comment, most likely the user fucked up */
1253 if (in_comment || in_quote)
1255 errorstream << "Reached end of file whilst still inside a quoted section or tag. This is most likely an error or there \
1256 is a newline missing from the end of the file: " << filename << ":" << linenumber << std::endl;
1262 bool ServerConfig::LoadConf(ConfigDataHash &target, const std::string &filename, std::ostringstream &errorstream)
1264 return this->LoadConf(target, filename.c_str(), errorstream);
1267 bool ServerConfig::ParseLine(ConfigDataHash &target, std::string &line, long &linenumber, std::ostringstream &errorstream)
1269 std::string tagname;
1270 std::string current_key;
1271 std::string current_value;
1277 got_name = got_key = in_quote = false;
1279 for(std::string::iterator c = line.begin(); c != line.end(); c++)
1283 /* We don't know the tag name yet. */
1294 /* We got to a space, we should have the tagname now. */
1295 if(tagname.length())
1303 /* We have the tag name */
1306 /* We're still reading the key name */
1316 /* We got an '=', end of the key name. */
1322 /* We have the key name, now we're looking for quotes and the value */
1324 /* Correctly handle escaped characters here.
1325 * See the XXX'ed section above.
1327 if ((*c == '\\') && (in_quote))
1331 current_value += '\n';
1333 current_value += *c;
1336 else if ((*c == '\n') && (in_quote))
1338 /* Got a 'real' \n, treat it as part of the value */
1339 current_value += '\n';
1343 else if ((*c == '\r') && (in_quote))
1344 /* Got a \r, drop it */
1351 /* We're not already in a quote. */
1356 /* Leaving quotes, we have the value */
1357 results.push_back(KeyVal(current_key, current_value));
1359 // std::cout << "<" << tagname << ":" << current_key << "> " << current_value << std::endl;
1364 if ((tagname == "include") && (current_key == "file"))
1366 if (!this->DoInclude(target, current_value, errorstream))
1370 current_key.clear();
1371 current_value.clear();
1378 current_value += *c;
1385 /* Finished parsing the tag, add it to the config hash */
1386 target.insert(std::pair<std::string, KeyValList > (tagname, results));
1391 bool ServerConfig::DoInclude(ConfigDataHash &target, const std::string &file, std::ostringstream &errorstream)
1393 std::string confpath;
1394 std::string newfile;
1395 std::string::size_type pos;
1397 confpath = ServerInstance->ConfigFileName;
1400 std::replace(newfile.begin(),newfile.end(),'\\','/');
1401 std::replace(confpath.begin(),confpath.end(),'\\','/');
1403 if (newfile[0] != '/')
1405 if((pos = confpath.rfind("/")) != std::string::npos)
1407 /* Leaves us with just the path */
1408 newfile = confpath.substr(0, pos) + std::string("/") + newfile;
1412 errorstream << "Couldn't get config path from: " << ServerInstance->ConfigFileName << std::endl;
1417 return LoadConf(target, newfile, errorstream);
1420 bool ServerConfig::ConfValue(ConfigDataHash &target, const char* tag, const char* var, int index, char* result, int length, bool allow_linefeeds)
1422 return ConfValue(target, tag, var, "", index, result, length, allow_linefeeds);
1425 bool ServerConfig::ConfValue(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index, char* result, int length, bool allow_linefeeds)
1428 bool r = ConfValue(target, std::string(tag), std::string(var), std::string(default_value), index, value, allow_linefeeds);
1429 strlcpy(result, value.c_str(), length);
1433 bool ServerConfig::ConfValue(ConfigDataHash &target, const std::string &tag, const std::string &var, int index, std::string &result, bool allow_linefeeds)
1435 return ConfValue(target, tag, var, "", index, result, allow_linefeeds);
1438 bool ServerConfig::ConfValue(ConfigDataHash &target, const std::string &tag, const std::string &var, const std::string &default_value, int index, std::string &result, bool allow_linefeeds)
1440 ConfigDataHash::size_type pos = index;
1441 if (pos < target.count(tag))
1443 ConfigDataHash::iterator iter = target.find(tag);
1445 for(int i = 0; i < index; i++)
1448 for(KeyValList::iterator j = iter->second.begin(); j != iter->second.end(); j++)
1452 if ((!allow_linefeeds) && (j->second.find('\n') != std::string::npos))
1454 ServerInstance->Log(DEFAULT, "Value of <" + tag + ":" + var+ "> contains a linefeed, and linefeeds in this value are not permitted -- stripped to spaces.");
1455 for (std::string::iterator n = j->second.begin(); n != j->second.end(); n++)
1466 if (!default_value.empty())
1468 result = default_value;
1474 if (!default_value.empty())
1476 result = default_value;
1483 bool ServerConfig::ConfValueInteger(ConfigDataHash &target, const char* tag, const char* var, int index, int &result)
1485 return ConfValueInteger(target, std::string(tag), std::string(var), "", index, result);
1488 bool ServerConfig::ConfValueInteger(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index, int &result)
1490 return ConfValueInteger(target, std::string(tag), std::string(var), std::string(default_value), index, result);
1493 bool ServerConfig::ConfValueInteger(ConfigDataHash &target, const std::string &tag, const std::string &var, int index, int &result)
1495 return ConfValueInteger(target, tag, var, "", index, result);
1498 bool ServerConfig::ConfValueInteger(ConfigDataHash &target, const std::string &tag, const std::string &var, const std::string &default_value, int index, int &result)
1501 std::istringstream stream;
1502 bool r = ConfValue(target, tag, var, default_value, index, value);
1504 if(!(stream >> result))
1510 if (value.substr(0,2) == "0x")
1515 result = strtol(value.c_str(), &endptr, 16);
1517 /* No digits found */
1518 if (endptr == value.c_str())
1523 char denominator = *(value.end() - 1);
1524 switch (toupper(denominator))
1527 /* Kilobytes -> bytes */
1528 result = result * 1024;
1531 /* Megabytes -> bytes */
1532 result = result * 1024 * 1024;
1535 /* Gigabytes -> bytes */
1536 result = result * 1024 * 1024 * 1024;
1546 bool ServerConfig::ConfValueBool(ConfigDataHash &target, const char* tag, const char* var, int index)
1548 return ConfValueBool(target, std::string(tag), std::string(var), "", index);
1551 bool ServerConfig::ConfValueBool(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index)
1553 return ConfValueBool(target, std::string(tag), std::string(var), std::string(default_value), index);
1556 bool ServerConfig::ConfValueBool(ConfigDataHash &target, const std::string &tag, const std::string &var, int index)
1558 return ConfValueBool(target, tag, var, "", index);
1561 bool ServerConfig::ConfValueBool(ConfigDataHash &target, const std::string &tag, const std::string &var, const std::string &default_value, int index)
1564 if(!ConfValue(target, tag, var, default_value, index, result))
1567 return ((result == "yes") || (result == "true") || (result == "1"));
1570 int ServerConfig::ConfValueEnum(ConfigDataHash &target, const char* tag)
1572 return target.count(tag);
1575 int ServerConfig::ConfValueEnum(ConfigDataHash &target, const std::string &tag)
1577 return target.count(tag);
1580 int ServerConfig::ConfVarEnum(ConfigDataHash &target, const char* tag, int index)
1582 return ConfVarEnum(target, std::string(tag), index);
1585 int ServerConfig::ConfVarEnum(ConfigDataHash &target, const std::string &tag, int index)
1587 ConfigDataHash::size_type pos = index;
1589 if (pos < target.count(tag))
1591 ConfigDataHash::const_iterator iter = target.find(tag);
1593 for(int i = 0; i < index; i++)
1596 return iter->second.size();
1602 /** Read the contents of a file located by `fname' into a file_cache pointed at by `F'.
1604 bool ServerConfig::ReadFile(file_cache &F, const char* fname)
1606 if (!fname || !*fname)
1610 char linebuf[MAXBUF];
1614 if ((*fname != '/') && (*fname != '\\'))
1616 std::string::size_type pos;
1617 std::string confpath = ServerInstance->ConfigFileName;
1618 std::string newfile = fname;
1620 if ((pos = confpath.rfind("/")) != std::string::npos)
1621 newfile = confpath.substr(0, pos) + std::string("/") + fname;
1622 else if ((pos = confpath.rfind("\\")) != std::string::npos)
1623 newfile = confpath.substr(0, pos) + std::string("\\") + fname;
1625 if (!FileExists(newfile.c_str()))
1627 file = fopen(newfile.c_str(), "r");
1631 if (!FileExists(fname))
1633 file = fopen(fname, "r");
1640 if (fgets(linebuf, sizeof(linebuf), file))
1641 linebuf[strlen(linebuf)-1] = 0;
1647 F.push_back(*linebuf ? linebuf : " ");
1659 bool ServerConfig::FileExists(const char* file)
1662 if (stat(file, &sb) == -1)
1665 if ((sb.st_mode & S_IFDIR) > 0)
1669 if ((input = fopen (file, "r")) == NULL)
1678 char* ServerConfig::CleanFilename(char* name)
1680 char* p = name + strlen(name);
1681 while ((p != name) && (*p != '/') && (*p != '\\')) p--;
1682 return (p != name ? ++p : p);
1686 bool ServerConfig::DirValid(const char* dirandfile)
1694 char otherdir[1024];
1697 strlcpy(work, dirandfile, 1024);
1700 // we just want the dir
1712 // Get the current working directory
1713 if (getcwd(buffer, 1024 ) == NULL )
1716 if (chdir(work) == -1)
1719 if (getcwd(otherdir, 1024 ) == NULL )
1722 if (chdir(buffer) == -1)
1725 size_t t = strlen(work);
1727 if (strlen(otherdir) >= t)
1730 if (!strcmp(otherdir,work))
1743 std::string ServerConfig::GetFullProgDir()
1745 char buffer[PATH_MAX+1];
1747 /* Windows has specific api calls to get the exe path that never fail.
1748 * For once, windows has something of use, compared to the POSIX code
1749 * for this, this is positively neato.
1751 if (GetModuleFileName(NULL, buffer, MAX_PATH))
1753 std::string fullpath = buffer;
1754 std::string::size_type n = fullpath.rfind("\\inspircd.exe");
1755 return std::string(fullpath, 0, n);
1758 // Get the current working directory
1759 if (getcwd(buffer, PATH_MAX))
1761 std::string remainder = this->argv[0];
1763 /* Does argv[0] start with /? its a full path, use it */
1764 if (remainder[0] == '/')
1766 std::string::size_type n = remainder.rfind("/inspircd");
1767 return std::string(remainder, 0, n);
1770 std::string fullpath = std::string(buffer) + "/" + remainder;
1771 std::string::size_type n = fullpath.rfind("/inspircd");
1772 return std::string(fullpath, 0, n);
1778 InspIRCd* ServerConfig::GetInstance()
1780 return ServerInstance;
1783 std::string ServerConfig::GetSID()
1786 OurSID += (char)((sid / 100) + 48);
1787 OurSID += (char)((sid / 10) % 10 + 48);
1788 OurSID += (char)(sid % 10 + 48);
1792 ValueItem::ValueItem(int value)
1794 std::stringstream n;
1799 ValueItem::ValueItem(bool value)
1801 std::stringstream n;
1806 ValueItem::ValueItem(char* value)
1811 void ValueItem::Set(char* value)
1816 void ValueItem::Set(const char* value)
1821 void ValueItem::Set(int value)
1823 std::stringstream n;
1828 int ValueItem::GetInteger()
1832 return atoi(v.c_str());
1835 char* ValueItem::GetString()
1837 return (char*)v.c_str();
1840 bool ValueItem::GetBool()
1842 return (GetInteger() || v == "yes" || v == "true");
1849 * XXX should this be in a class? -- w00t
1851 bool InitTypes(ServerConfig* conf, const char*)
1853 if (conf->opertypes.size())
1855 for (opertype_t::iterator n = conf->opertypes.begin(); n != conf->opertypes.end(); n++)
1862 conf->opertypes.clear();
1867 * XXX should this be in a class? -- w00t
1869 bool InitClasses(ServerConfig* conf, const char*)
1871 if (conf->operclass.size())
1873 for (operclass_t::iterator n = conf->operclass.begin(); n != conf->operclass.end(); n++)
1880 conf->operclass.clear();
1885 * XXX should this be in a class? -- w00t
1887 bool DoType(ServerConfig* conf, const char*, char**, ValueList &values, int*)
1889 const char* TypeName = values[0].GetString();
1890 const char* Classes = values[1].GetString();
1892 conf->opertypes[TypeName] = strnewdup(Classes);
1897 * XXX should this be in a class? -- w00t
1899 bool DoClass(ServerConfig* conf, const char*, char**, ValueList &values, int*)
1901 const char* ClassName = values[0].GetString();
1902 const char* CommandList = values[1].GetString();
1904 conf->operclass[ClassName] = strnewdup(CommandList);
1909 * XXX should this be in a class? -- w00t
1911 bool DoneClassesAndTypes(ServerConfig*, const char*)
1918 bool InitXLine(ServerConfig* conf, const char* tag)
1923 bool DoZLine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types)
1925 const char* reason = values[0].GetString();
1926 const char* ipmask = values[1].GetString();
1928 ZLine* zl = new ZLine(conf->GetInstance(), conf->GetInstance()->Time(), 0, "<Config>", reason, ipmask);
1929 if (!conf->GetInstance()->XLines->AddLine(zl, NULL))
1935 bool DoQLine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types)
1937 const char* reason = values[0].GetString();
1938 const char* nick = values[1].GetString();
1940 QLine* ql = new QLine(conf->GetInstance(), conf->GetInstance()->Time(), 0, "<Config>", reason, nick);
1941 if (!conf->GetInstance()->XLines->AddLine(ql, NULL))
1947 bool DoKLine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types)
1949 const char* reason = values[0].GetString();
1950 const char* host = values[1].GetString();
1952 XLineManager* xlm = conf->GetInstance()->XLines;
1954 IdentHostPair ih = xlm->IdentSplit(host);
1956 KLine* kl = new KLine(conf->GetInstance(), conf->GetInstance()->Time(), 0, "<Config>", reason, ih.first.c_str(), ih.second.c_str());
1957 if (!xlm->AddLine(kl, NULL))
1962 bool DoELine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types)
1964 const char* reason = values[0].GetString();
1965 const char* host = values[1].GetString();
1967 XLineManager* xlm = conf->GetInstance()->XLines;
1969 IdentHostPair ih = xlm->IdentSplit(host);
1971 ELine* el = new ELine(conf->GetInstance(), conf->GetInstance()->Time(), 0, "<Config>", reason, ih.first.c_str(), ih.second.c_str());
1972 if (!xlm->AddLine(el, NULL))
1977 // this should probably be moved to configreader, but atm it relies on CheckELines above.
1978 bool DoneELine(ServerConfig* conf, const char* tag)
1980 for (std::vector<User*>::const_iterator u2 = conf->GetInstance()->local_users.begin(); u2 != conf->GetInstance()->local_users.end(); u2++)
1982 User* u = (User*)(*u2);
1986 conf->GetInstance()->XLines->CheckELines();