]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/configreader.cpp
Always deny invite to users below halfop status, move OnUserPreInvite up to above...
[user/henk/code/inspircd.git] / src / configreader.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 /* $Core */
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: conf/inspircd.conf.example $(CONPATH) */
23 /* $CopyInstall: conf/modules.conf.example $(CONPATH) */
24
25 #include "inspircd.h"
26 #include <fstream>
27 #include "xline.h"
28 #include "exitcodes.h"
29 #include "commands/cmd_whowas.h"
30
31 std::vector<std::string> old_module_names, new_module_names, added_modules, removed_modules;
32
33 /* Needs forward declaration */
34 bool ValidateDnsServer(ServerConfig* conf, const char* tag, const char* value, ValueItem &data);
35 bool DoneELine(ServerConfig* conf, const char* tag);
36
37 ServerConfig::ServerConfig(InspIRCd* Instance) : ServerInstance(Instance)
38 {
39         this->ClearStack();
40         *sid = *ServerName = *Network = *ServerDesc = *AdminName = '\0';
41         *HideWhoisServer = *AdminEmail = *AdminNick = *diepass = *restartpass = *FixedQuit = *HideKillsServer = '\0';
42         *DefaultModes = *CustomVersion = *motd = *rules = *PrefixQuit = *DieValue = *DNSServer = '\0';
43         *UserStats = *ModPath = *MyExecutable = *DisabledCommands = *PID = *SuffixQuit = '\0';
44         WhoWasGroupSize = WhoWasMaxGroups = WhoWasMaxKeep = 0;
45         log_file = NULL;
46         NoUserDns = forcedebug = OperSpyWhois = nofork = HideBans = HideSplits = UndernetMsgPrefix = false;
47         CycleHosts = writelog = AllowHalfop = true;
48         dns_timeout = DieDelay = 5;
49         MaxTargets = 20;
50         NetBufferSize = 10240;
51         SoftLimit = Instance->SE->GetMaxFds();
52         MaxConn = SOMAXCONN;
53         MaxWhoResults = 0;
54         debugging = 0;
55         MaxChans = 20;
56         OperMaxChans = 30;
57         c_ipv4_range = 32;
58         c_ipv6_range = 128;
59         maxbans.clear();
60         DNSServerValidator = &ValidateDnsServer;
61 }
62
63 void ServerConfig::ClearStack()
64 {
65         include_stack.clear();
66 }
67
68 Module* ServerConfig::GetIOHook(BufferedSocket* is)
69 {
70         std::map<BufferedSocket*,Module*>::iterator x = SocketIOHookModule.find(is);
71         return (x != SocketIOHookModule.end() ? x->second : NULL);
72 }
73
74 bool ServerConfig::AddIOHook(Module* iomod, BufferedSocket* is)
75 {
76         if (!GetIOHook(is))
77         {
78                 SocketIOHookModule[is] = iomod;
79                 is->IsIOHooked = true;
80                 return true;
81         }
82         else
83         {
84                 throw ModuleException("BufferedSocket derived class already hooked by another module");
85         }
86 }
87
88 bool ServerConfig::DelIOHook(BufferedSocket* is)
89 {
90         std::map<BufferedSocket*,Module*>::iterator x = SocketIOHookModule.find(is);
91         if (x != SocketIOHookModule.end())
92         {
93                 SocketIOHookModule.erase(x);
94                 return true;
95         }
96         return false;
97 }
98
99 void ServerConfig::Update005()
100 {
101         std::stringstream out(data005);
102         std::string token;
103         std::string line5;
104         int token_counter = 0;
105         isupport.clear();
106         while (out >> token)
107         {
108                 line5 = line5 + token + " ";
109                 token_counter++;
110                 if (token_counter >= 13)
111                 {
112                         char buf[MAXBUF];
113                         snprintf(buf, MAXBUF, "%s:are supported by this server", line5.c_str());
114                         isupport.push_back(buf);
115                         line5.clear();
116                         token_counter = 0;
117                 }
118         }
119         if (!line5.empty())
120         {
121                 char buf[MAXBUF];
122                 snprintf(buf, MAXBUF, "%s:are supported by this server", line5.c_str());
123                 isupport.push_back(buf);
124         }
125 }
126
127 void ServerConfig::Send005(User* user)
128 {
129         for (std::vector<std::string>::iterator line = ServerInstance->Config->isupport.begin(); line != ServerInstance->Config->isupport.end(); line++)
130                 user->WriteNumeric(RPL_ISUPPORT, "%s %s", user->nick.c_str(), line->c_str());
131 }
132
133 bool ServerConfig::CheckOnce(const char* tag, ConfigDataHash &newconf)
134 {
135         int count = ConfValueEnum(newconf, tag);
136
137         if (count > 1)
138                 throw CoreException("You have more than one <"+std::string(tag)+"> tag, this is not permitted.");
139         if (count < 1)
140                 throw CoreException("You have not defined a <"+std::string(tag)+"> tag, this is required.");
141         return true;
142 }
143
144 bool NoValidation(ServerConfig*, const char*, const char*, ValueItem&)
145 {
146         return true;
147 }
148
149 bool DoneConfItem(ServerConfig* conf, const char* tag)
150 {
151         return true;
152 }
153
154 void ServerConfig::ValidateNoSpaces(const char* p, const std::string &tag, const std::string &val)
155 {
156         for (const char* ptr = p; *ptr; ++ptr)
157         {
158                 if (*ptr == ' ')
159                         throw CoreException("The value of <"+tag+":"+val+"> cannot contain spaces");
160         }
161 }
162
163 /* NOTE: Before anyone asks why we're not using inet_pton for this, it is because inet_pton and friends do not return so much detail,
164  * even in strerror(errno). They just return 'yes' or 'no' to an address without such detail as to whats WRONG with the address.
165  * Because ircd users arent as technical as they used to be (;)) we are going to give more of a useful error message.
166  */
167 void ServerConfig::ValidateIP(const char* p, const std::string &tag, const std::string &val, bool wild)
168 {
169         int num_dots = 0;
170         int num_seps = 0;
171         int not_numbers = false;
172         int not_hex = false;
173
174         if (*p)
175         {
176                 if (*p == '.')
177                         throw CoreException("The value of <"+tag+":"+val+"> is not an IP address");
178
179                 for (const char* ptr = p; *ptr; ++ptr)
180                 {
181                         if (wild && (*ptr == '*' || *ptr == '?' || *ptr == '/'))
182                                 continue;
183
184                         if (*ptr != ':' && *ptr != '.')
185                         {
186                                 if (*ptr < '0' || *ptr > '9')
187                                         not_numbers = true;
188                                 if ((*ptr < '0' || *ptr > '9') && (toupper(*ptr) < 'A' || toupper(*ptr) > 'F'))
189                                         not_hex = true;
190                         }
191                         switch (*ptr)
192                         {
193                                 case ' ':
194                                         throw CoreException("The value of <"+tag+":"+val+"> is not an IP address");
195                                 case '.':
196                                         num_dots++;
197                                 break;
198                                 case ':':
199                                         num_seps++;
200                                 break;
201                         }
202                 }
203
204                 if (num_dots > 3)
205                         throw CoreException("The value of <"+tag+":"+val+"> is an IPv4 address with too many fields!");
206
207                 if (num_seps > 8)
208                         throw CoreException("The value of <"+tag+":"+val+"> is an IPv6 address with too many fields!");
209
210                 if (num_seps == 0 && num_dots < 3 && !wild)
211                         throw CoreException("The value of <"+tag+":"+val+"> looks to be a malformed IPv4 address");
212
213                 if (num_seps == 0 && num_dots == 3 && not_numbers)
214                         throw CoreException("The value of <"+tag+":"+val+"> contains non-numeric characters in an IPv4 address");
215
216                 if (num_seps != 0 && not_hex)
217                         throw CoreException("The value of <"+tag+":"+val+"> contains non-hexdecimal characters in an IPv6 address");
218
219                 if (num_seps != 0 && num_dots != 3 && num_dots != 0 && !wild)
220                         throw CoreException("The value of <"+tag+":"+val+"> is a malformed IPv6 4in6 address");
221         }
222 }
223
224 void ServerConfig::ValidateHostname(const char* p, const std::string &tag, const std::string &val)
225 {
226         int num_dots = 0;
227         if (*p)
228         {
229                 if (*p == '.')
230                         throw CoreException("The value of <"+tag+":"+val+"> is not a valid hostname");
231                 for (const char* ptr = p; *ptr; ++ptr)
232                 {
233                         switch (*ptr)
234                         {
235                                 case ' ':
236                                         throw CoreException("The value of <"+tag+":"+val+"> is not a valid hostname");
237                                 case '.':
238                                         num_dots++;
239                                 break;
240                         }
241                 }
242                 if (num_dots == 0)
243                         throw CoreException("The value of <"+tag+":"+val+"> is not a valid hostname");
244         }
245 }
246
247 bool ValidateMaxTargets(ServerConfig* conf, const char*, const char*, ValueItem &data)
248 {
249         if ((data.GetInteger() < 0) || (data.GetInteger() > 31))
250         {
251                 conf->GetInstance()->Logs->Log("CONFIG",DEFAULT,"WARNING: <security:maxtargets> value is greater than 31 or less than 0, set to 20.");
252                 data.Set(20);
253         }
254         return true;
255 }
256
257 bool ValidateSoftLimit(ServerConfig* conf, const char*, const char*, ValueItem &data)
258 {
259         if ((data.GetInteger() < 1) || (data.GetInteger() > conf->GetInstance()->SE->GetMaxFds()))
260         {
261                 conf->GetInstance()->Logs->Log("CONFIG",DEFAULT,"WARNING: <performance:softlimit> value is greater than %d or less than 0, set to %d.",conf->GetInstance()->SE->GetMaxFds(),conf->GetInstance()->SE->GetMaxFds());
262                 data.Set(conf->GetInstance()->SE->GetMaxFds());
263         }
264         return true;
265 }
266
267 bool ValidateMaxConn(ServerConfig* conf, const char*, const char*, ValueItem &data)
268 {
269         if (data.GetInteger() > SOMAXCONN)
270                 conf->GetInstance()->Logs->Log("CONFIG",DEFAULT,"WARNING: <performance:somaxconn> value may be higher than the system-defined SOMAXCONN value!");
271         return true;
272 }
273
274 bool InitializeDisabledCommands(const char* data, InspIRCd* ServerInstance)
275 {
276         std::stringstream dcmds(data);
277         std::string thiscmd;
278
279         /* Enable everything first */
280         for (Commandtable::iterator x = ServerInstance->Parser->cmdlist.begin(); x != ServerInstance->Parser->cmdlist.end(); x++)
281                 x->second->Disable(false);
282
283         /* Now disable all the ones which the user wants disabled */
284         while (dcmds >> thiscmd)
285         {
286                 Commandtable::iterator cm = ServerInstance->Parser->cmdlist.find(thiscmd);
287                 if (cm != ServerInstance->Parser->cmdlist.end())
288                 {
289                         cm->second->Disable(true);
290                 }
291         }
292         return true;
293 }
294
295 bool ValidateDisabledUModes(ServerConfig* conf, const char*, const char*, ValueItem &data)
296 {
297         memset(conf->DisabledUModes, 0, sizeof(conf->DisabledUModes));
298         for (const unsigned char* p = (const unsigned char*)data.GetString(); *p; ++p)
299         {
300                 if (*p < 'A' || *p > ('A' + 64)) throw CoreException(std::string("Invalid usermode ")+(char)*p+" was found.");
301                 conf->DisabledUModes[*p - 'A'] = 1;
302         }
303         return true;
304 }
305
306 bool ValidateDisabledCModes(ServerConfig* conf, const char*, const char*, ValueItem &data)
307 {
308         memset(conf->DisabledCModes, 0, sizeof(conf->DisabledCModes));
309         for (const unsigned char* p = (const unsigned char*)data.GetString(); *p; ++p)
310         {
311                 if (*p < 'A' || *p > ('A' + 64)) throw CoreException(std::string("Invalid chanmode ")+(char)*p+" was found.");
312                 conf->DisabledCModes[*p - 'A'] = 1;
313         }
314         return true;
315 }
316
317 bool ValidateDnsServer(ServerConfig* conf, const char*, const char*, ValueItem &data)
318 {
319         if (!*(data.GetString()))
320         {
321                 std::string nameserver;
322                 // attempt to look up their nameserver from /etc/resolv.conf
323                 conf->GetInstance()->Logs->Log("CONFIG",DEFAULT,"WARNING: <dns:server> not defined, attempting to find working server in /etc/resolv.conf...");
324                 std::ifstream resolv("/etc/resolv.conf");
325                 bool found_server = false;
326
327                 if (resolv.is_open())
328                 {
329                         while (resolv >> nameserver)
330                         {
331                                 if ((nameserver == "nameserver") && (!found_server))
332                                 {
333                                         resolv >> nameserver;
334                                         data.Set(nameserver.c_str());
335                                         found_server = true;
336                                         conf->GetInstance()->Logs->Log("CONFIG",DEFAULT,"<dns:server> set to '%s' as first resolver in /etc/resolv.conf.",nameserver.c_str());
337                                 }
338                         }
339
340                         if (!found_server)
341                         {
342                                 conf->GetInstance()->Logs->Log("CONFIG",DEFAULT,"/etc/resolv.conf contains no viable nameserver entries! Defaulting to nameserver '127.0.0.1'!");
343                                 data.Set("127.0.0.1");
344                         }
345                 }
346                 else
347                 {
348                         conf->GetInstance()->Logs->Log("CONFIG",DEFAULT,"/etc/resolv.conf can't be opened! Defaulting to nameserver '127.0.0.1'!");
349                         data.Set("127.0.0.1");
350                 }
351         }
352         return true;
353 }
354
355 bool ValidateServerName(ServerConfig* conf, const char*, const char*, ValueItem &data)
356 {
357         conf->GetInstance()->Logs->Log("CONFIG",DEFAULT,"Validating server name");
358         /* If we already have a servername, and they changed it, we should throw an exception. */
359         if (!strchr(data.GetString(), '.'))
360         {
361                 conf->GetInstance()->Logs->Log("CONFIG",DEFAULT,"WARNING: <server:name> '%s' is not a fully-qualified domain name. Changed to '%s%c'",data.GetString(),data.GetString(),'.');
362                 std::string moo = std::string(data.GetString()).append(".");
363                 data.Set(moo.c_str());
364         }
365         conf->ValidateHostname(data.GetString(), "server", "name");
366         return true;
367 }
368
369 bool ValidateNetBufferSize(ServerConfig* conf, const char*, const char*, ValueItem &data)
370 {
371         // 65534 not 65535 because of null terminator
372         if ((!data.GetInteger()) || (data.GetInteger() > 65534) || (data.GetInteger() < 1024))
373         {
374                 conf->GetInstance()->Logs->Log("CONFIG",DEFAULT,"No NetBufferSize specified or size out of range, setting to default of 10240.");
375                 data.Set(10240);
376         }
377         return true;
378 }
379
380 bool ValidateMaxWho(ServerConfig* conf, const char*, const char*, ValueItem &data)
381 {
382         if ((data.GetInteger() > 65535) || (data.GetInteger() < 1))
383         {
384                 conf->GetInstance()->Logs->Log("CONFIG",DEFAULT,"<performance:maxwho> size out of range, setting to default of 128.");
385                 data.Set(128);
386         }
387         return true;
388 }
389
390 bool ValidateMotd(ServerConfig* conf, const char*, const char*, ValueItem &data)
391 {
392         conf->ReadFile(conf->MOTD, data.GetString());
393         return true;
394 }
395
396 bool ValidateNotEmpty(ServerConfig*, const char* tag, const char*, ValueItem &data)
397 {
398         if (!*data.GetString())
399                 throw CoreException(std::string("The value for ")+tag+" cannot be empty!");
400         return true;
401 }
402
403 bool ValidateRules(ServerConfig* conf, const char*, const char*, ValueItem &data)
404 {
405         conf->ReadFile(conf->RULES, data.GetString());
406         return true;
407 }
408
409 bool ValidateModeLists(ServerConfig* conf, const char*, const char*, ValueItem &data)
410 {
411         memset(conf->HideModeLists, 0, sizeof(conf->HideModeLists));
412         for (const unsigned char* x = (const unsigned char*)data.GetString(); *x; ++x)
413                 conf->HideModeLists[*x] = true;
414         return true;
415 }
416
417 bool ValidateExemptChanOps(ServerConfig* conf, const char*, const char*, ValueItem &data)
418 {
419         memset(conf->ExemptChanOps, 0, sizeof(conf->ExemptChanOps));
420         for (const unsigned char* x = (const unsigned char*)data.GetString(); *x; ++x)
421                 conf->ExemptChanOps[*x] = true;
422         return true;
423 }
424
425 bool ValidateInvite(ServerConfig* conf, const char*, const char*, ValueItem &data)
426 {
427         std::string v = data.GetString();
428
429         if (v == "ops")
430                 conf->AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_OPS;
431         else if (v == "all")
432                 conf->AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_ALL;
433         else if (v == "dynamic")
434                 conf->AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_DYNAMIC;
435         else
436                 conf->AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_NONE;
437
438         return true;
439 }
440
441 bool ValidateSID(ServerConfig* conf, const char*, const char*, ValueItem &data)
442 {
443         conf->GetInstance()->Logs->Log("CONFIG",DEFAULT,"Validating server id");
444
445         const char *sid = data.GetString();
446
447         if (*sid && !conf->GetInstance()->IsSID(sid))
448         {
449                 throw CoreException(std::string(sid) + " is not a valid server ID. A server ID must be 3 characters long, with the first character a digit and the next two characters a digit or letter.");
450         }
451
452         strlcpy(conf->sid, sid, 5);
453
454         return true;
455 }
456
457 bool ValidateWhoWas(ServerConfig* conf, const char*, const char*, ValueItem &data)
458 {
459         conf->WhoWasMaxKeep = conf->GetInstance()->Duration(data.GetString());
460
461         if (conf->WhoWasGroupSize < 0)
462                 conf->WhoWasGroupSize = 0;
463
464         if (conf->WhoWasMaxGroups < 0)
465                 conf->WhoWasMaxGroups = 0;
466
467         if (conf->WhoWasMaxKeep < 3600)
468         {
469                 conf->WhoWasMaxKeep = 3600;
470                 conf->GetInstance()->Logs->Log("CONFIG",DEFAULT,"WARNING: <whowas:maxkeep> value less than 3600, setting to default 3600");
471         }
472
473         Command* whowas_command = conf->GetInstance()->Parser->GetHandler("WHOWAS");
474         if (whowas_command)
475         {
476                 std::deque<classbase*> params;
477                 whowas_command->HandleInternal(WHOWAS_PRUNE, params);
478         }
479
480         return true;
481 }
482
483 /* Callback called before processing the first <connect> tag
484  */
485 bool InitConnect(ServerConfig* conf, const char*)
486 {
487         conf->GetInstance()->Logs->Log("CONFIG",DEFAULT,"Reading connect classes...");
488
489         for (ClassVector::iterator i = conf->Classes.begin(); i != conf->Classes.end() ; )
490         {
491                 ConnectClass* c = *i;
492
493                 /* only delete a class with refcount 0 */
494                 if (c->RefCount == 0)
495                 {
496                         conf->GetInstance()->Logs->Log("CONFIG",DEFAULT, "Removing connect class, refcount is 0!");
497                         
498                         /* This was causing a crash, because we'd set i to .begin() just here, but then the for loop's increment would
499                          * set it to .begin() + 1. Which if it was already the last thing in the list, wasn't good.
500                          * Now the increment is in the else { } below.
501                          */
502                         conf->Classes.erase(i);
503                         i = conf->Classes.begin(); // start over so we don't trample on a bad iterator
504                 }
505                 else
506                 {
507                         /* also mark all existing classes disabled, if they still exist in the conf, they will be reenabled. */
508                         c->SetDisabled(true);
509                         i++;
510                 }
511         }
512
513         return true;
514 }
515
516 /* Callback called to process a single <connect> tag
517  */
518 bool DoConnect(ServerConfig* conf, const char*, char**, ValueList &values, int*)
519 {
520         ConnectClass c;
521         const char* allow = values[0].GetString(); /* Yeah, there are a lot of values. Live with it. */
522         const char* deny = values[1].GetString();
523         const char* password = values[2].GetString();
524         int timeout = values[3].GetInteger();
525         int pingfreq = values[4].GetInteger();
526         int flood = values[5].GetInteger();
527         int threshold = values[6].GetInteger();
528         int sendq = values[7].GetInteger();
529         int recvq = values[8].GetInteger();
530         int localmax = values[9].GetInteger();
531         int globalmax = values[10].GetInteger();
532         int port = values[11].GetInteger();
533         const char* name = values[12].GetString();
534         const char* parent = values[13].GetString();
535         int maxchans = values[14].GetInteger();
536         unsigned long limit = values[15].GetInteger();
537         const char* hashtype = values[16].GetString();
538
539         /*
540          * duplicates check: Now we don't delete all connect classes on rehash, we need to ensure we don't add dupes.
541          * easier said than done, but for now we'll just disallow anything with a duplicate host or name. -- w00t
542          */
543         for (ClassVector::iterator item = conf->Classes.begin(); item != conf->Classes.end(); ++item)
544         {
545                 ConnectClass* cc = *item;
546                 if (
547                          ((*name && (cc->GetName() == name)) || // if the name is the same
548                          (*allow && (cc->GetHost() == allow)) || // or the allow is the same
549                          (*deny && (cc->GetHost() == deny))) && // or the deny is the same
550                          (!port || (port && (cc->GetPort() == port))) // and there is no port, or there is a port and the port is the same
551                    )
552                 {
553                         /* reenable class so users can be shoved into it :P */
554                         cc->SetDisabled(false);
555                         conf->GetInstance()->Logs->Log("CONFIG",DEFAULT, "Not adding class, it already exists!");
556                         return true;
557                 } 
558         }
559
560         conf->GetInstance()->Logs->Log("CONFIG",DEFAULT,"Adding a connect class!");
561
562         if (*parent)
563         {
564                 /* Find 'parent' and inherit a new class from it,
565                  * then overwrite any values that are set here
566                  */
567                 ClassVector::iterator item = conf->Classes.begin();
568                 for (; item != conf->Classes.end(); ++item)
569                 {
570                         ConnectClass* cc = *item;
571                         conf->GetInstance()->Logs->Log("CONFIG",DEBUG,"Class: %s", cc->GetName().c_str());
572                         if (cc->GetName() == parent)
573                         {
574                                 ConnectClass* newclass = new ConnectClass(name, cc);
575                                 newclass->Update(timeout, flood, *allow ? allow : deny, pingfreq, password, threshold, sendq, recvq, localmax, globalmax, maxchans, port, limit);
576                                 conf->Classes.push_back(newclass);
577                                 break;
578                         }
579                 }
580                 if (item == conf->Classes.end())
581                         throw CoreException("Class name '" + std::string(name) + "' is configured to inherit from class '" + std::string(parent) + "' which cannot be found.");
582         }
583         else
584         {
585                 if (*allow)
586                 {
587                         /* Find existing class by mask, the mask should be unique */
588                         for (ClassVector::iterator item = conf->Classes.begin(); item != conf->Classes.end(); ++item)
589                         {
590                                 if ((*item)->GetHost() == allow)
591                                 {
592                                         (*item)->Update(timeout, flood, allow, pingfreq, password, threshold, sendq, recvq, localmax, globalmax, maxchans, port, limit);
593                                         return true;
594                                 }
595                         }
596                         ConnectClass* cc = new ConnectClass(name, timeout, flood, allow, pingfreq, password, hashtype, threshold, sendq, recvq, localmax, globalmax, maxchans);
597                         cc->limit = limit;
598                         cc->SetPort(port);
599                         conf->Classes.push_back(cc);
600                 }
601                 else
602                 {
603                         /* Find existing class by mask, the mask should be unique */
604                         for (ClassVector::iterator item = conf->Classes.begin(); item != conf->Classes.end(); ++item)
605                         {
606                                 if ((*item)->GetHost() == deny)
607                                 {
608                                         (*item)->Update(name, deny);
609                                         (*item)->SetPort(port);
610                                         return true;
611                                 }
612                         }
613                         ConnectClass* cc = new ConnectClass(name, deny);
614                         cc->SetPort(port);
615                         conf->Classes.push_back(cc);
616                 }
617         }
618
619         return true;
620 }
621
622 /* Callback called when there are no more <connect> tags
623  */
624 bool DoneConnect(ServerConfig *conf, const char*)
625 {
626         conf->GetInstance()->Logs->Log("CONFIG",DEFAULT, "Done adding connect classes!");
627         return true;
628 }
629
630 /* Callback called before processing the first <uline> tag
631  */
632 bool InitULine(ServerConfig* conf, const char*)
633 {
634         conf->ulines.clear();
635         return true;
636 }
637
638 /* Callback called to process a single <uline> tag
639  */
640 bool DoULine(ServerConfig* conf, const char*, char**, ValueList &values, int*)
641 {
642         const char* server = values[0].GetString();
643         const bool silent = values[1].GetBool();
644         conf->ulines[server] = silent;
645         return true;
646 }
647
648 /* Callback called when there are no more <uline> tags
649  */
650 bool DoneULine(ServerConfig*, const char*)
651 {
652         return true;
653 }
654
655 /* Callback called before processing the first <module> tag
656  */
657 bool InitModule(ServerConfig* conf, const char*)
658 {
659         old_module_names = conf->GetInstance()->Modules->GetAllModuleNames(0);
660         new_module_names.clear();
661         added_modules.clear();
662         removed_modules.clear();
663         return true;
664 }
665
666 /* Callback called to process a single <module> tag
667  */
668 bool DoModule(ServerConfig*, const char*, char**, ValueList &values, int*)
669 {
670         const char* modname = values[0].GetString();
671         new_module_names.push_back(modname);
672         return true;
673 }
674
675 /* Callback called when there are no more <module> tags
676  */
677 bool DoneModule(ServerConfig*, const char*)
678 {
679         // now create a list of new modules that are due to be loaded
680         // and a seperate list of modules which are due to be unloaded
681         for (std::vector<std::string>::iterator _new = new_module_names.begin(); _new != new_module_names.end(); _new++)
682         {
683                 bool added = true;
684
685                 for (std::vector<std::string>::iterator old = old_module_names.begin(); old != old_module_names.end(); old++)
686                 {
687                         if (*old == *_new)
688                                 added = false;
689                 }
690
691                 if (added)
692                         added_modules.push_back(*_new);
693         }
694
695         for (std::vector<std::string>::iterator oldm = old_module_names.begin(); oldm != old_module_names.end(); oldm++)
696         {
697                 bool removed = true;
698                 for (std::vector<std::string>::iterator newm = new_module_names.begin(); newm != new_module_names.end(); newm++)
699                 {
700                         if (*newm == *oldm)
701                                 removed = false;
702                 }
703
704                 if (removed)
705                         removed_modules.push_back(*oldm);
706         }
707         return true;
708 }
709
710 /* Callback called before processing the first <banlist> tag
711  */
712 bool InitMaxBans(ServerConfig* conf, const char*)
713 {
714         conf->maxbans.clear();
715         return true;
716 }
717
718 /* Callback called to process a single <banlist> tag
719  */
720 bool DoMaxBans(ServerConfig* conf, const char*, char**, ValueList &values, int*)
721 {
722         const char* channel = values[0].GetString();
723         int limit = values[1].GetInteger();
724         conf->maxbans[channel] = limit;
725         return true;
726 }
727
728 /* Callback called when there are no more <banlist> tags.
729  */
730 bool DoneMaxBans(ServerConfig*, const char*)
731 {
732         return true;
733 }
734
735 void ServerConfig::ReportConfigError(const std::string &errormessage, bool bail, User* user)
736 {
737         ServerInstance->Logs->Log("CONFIG",DEFAULT, "There were errors in your configuration file: %s", errormessage.c_str());
738         if (bail)
739         {
740                 /* Unneeded because of the ServerInstance->Log() aboive? */
741                 printf("There were errors in your configuration:\n%s\n\n",errormessage.c_str());
742                 ServerInstance->Exit(EXIT_STATUS_CONFIG);
743         }
744         else
745         {
746                 std::string errors = errormessage;
747                 std::string::size_type start;
748                 unsigned int prefixlen;
749                 start = 0;
750                 /* ":ServerInstance->Config->ServerName NOTICE user->nick :" */
751                 if (user)
752                 {
753                         prefixlen = strlen(this->ServerName) + user->nick.length() + 11;
754                         user->WriteServ("NOTICE %s :There were errors in the configuration file:",user->nick.c_str());
755                         while (start < errors.length())
756                         {
757                                 user->WriteServ("NOTICE %s :%s",user->nick.c_str(), errors.substr(start, 510 - prefixlen).c_str());
758                                 start += 510 - prefixlen;
759                         }
760                 }
761                 else
762                 {
763                         ServerInstance->SNO->WriteToSnoMask('A', "There were errors in the configuration file:");
764                         while (start < errors.length())
765                         {
766                                 ServerInstance->SNO->WriteToSnoMask('A', errors.substr(start, 360));
767                                 start += 360;
768                         }
769                 }
770                 return;
771         }
772 }
773
774 void ServerConfig::Read(bool bail, User* user)
775 {
776         int rem = 0, add = 0;      /* Number of modules added, number of modules removed */
777
778         static char maxkeep[MAXBUF];    /* Temporary buffer for WhoWasMaxKeep value */
779         static char hidemodes[MAXBUF];  /* Modes to not allow listing from users below halfop */
780         static char exemptchanops[MAXBUF];      /* Exempt channel ops from these modes */
781         static char announceinvites[MAXBUF];    /* options:announceinvites setting */
782         static char disabledumodes[MAXBUF]; /* Disabled usermodes */
783         static char disabledcmodes[MAXBUF]; /* Disabled chanmodes */
784         errstr.clear();
785
786         include_stack.clear();
787
788         /* These tags MUST occur and must ONLY occur once in the config file */
789         static const char* Once[] = { "server", "admin", "files", "power", "options", NULL };
790
791         Deprecated ChangedConfig[] = {
792                 {"options",     "hidelinks",            "has been moved to <security:hidelinks> as of 1.2a3"},
793                 {"options",     "hidewhois",            "has been moved to <security:hidewhois> as of 1.2a3"},
794                 {"options",     "userstats",            "has been moved to <security:userstats> as of 1.2a3"},
795                 {"options",     "customversion",        "has been moved to <security:customversion> as of 1.2a3"},
796                 {"options",     "hidesplits",           "has been moved to <security:hidesplits> as of 1.2a3"},
797                 {"options",     "hidebans",             "has been moved to <security:hidebans> as of 1.2a3"},
798                 {"options",     "hidekills",            "has been moved to <security:hidekills> as of 1.2a3"},
799                 {"options",     "operspywhois",         "has been moved to <security:operspywhois> as of 1.2a3"},
800                 {"options",     "announceinvites",      "has been moved to <security:announceinvites> as of 1.2a3"},
801                 {"options",     "hidemodes",            "has been moved to <security:hidemodes> as of 1.2a3"},
802                 {"options",     "maxtargets",           "has been moved to <security:maxtargets> as of 1.2a3"},
803                 {"options",     "nouserdns",            "has been moved to <performance:nouserdns> as of 1.2a3"},
804                 {"options",     "maxwho",               "has been moved to <performance:maxwho> as of 1.2a3"},
805                 {"options",     "softlimit",            "has been moved to <performance:softlimit> as of 1.2a3"},
806                 {"options",     "somaxconn",            "has been moved to <performance:somaxconn> as of 1.2a3"},
807                 {"options",     "netbuffersize",        "has been moved to <performance:netbuffersize> as of 1.2a3"},
808                 {"options",     "maxwho",               "has been moved to <performance:maxwho> as of 1.2a3"},
809                 {"options",     "loglevel",             "1.2 does not use the loglevel value. Please define <log> tags instead."},
810                 {NULL,          NULL,                   NULL}
811         };
812
813         /* These tags can occur ONCE or not at all */
814         InitialConfig Values[] = {
815                 {"performance", "softlimit",    "0",                    new ValueContainerUInt (&this->SoftLimit),              DT_INTEGER,  ValidateSoftLimit},
816                 {"performance", "somaxconn",    SOMAXCONN_S,            new ValueContainerInt  (&this->MaxConn),                DT_INTEGER,  ValidateMaxConn},
817                 {"options",     "moronbanner",  "Youre banned!",        new ValueContainerChar (this->MoronBanner),             DT_CHARPTR,  NoValidation},
818                 {"server",      "name",         "",                     new ValueContainerChar (this->ServerName),              DT_HOSTNAME|DT_BOOTONLY, ValidateServerName},
819                 {"server",      "description",  "Configure Me",         new ValueContainerChar (this->ServerDesc),              DT_CHARPTR,  NoValidation},
820                 {"server",      "network",      "Network",              new ValueContainerChar (this->Network),                 DT_NOSPACES, NoValidation},
821                 {"server",      "id",           "",                     new ValueContainerChar (this->sid),                     DT_CHARPTR|DT_BOOTONLY,  ValidateSID},
822                 {"admin",       "name",         "",                     new ValueContainerChar (this->AdminName),               DT_CHARPTR,  NoValidation},
823                 {"admin",       "email",        "Mis@configu.red",      new ValueContainerChar (this->AdminEmail),              DT_CHARPTR,  NoValidation},
824                 {"admin",       "nick",         "Misconfigured",        new ValueContainerChar (this->AdminNick),               DT_CHARPTR,  NoValidation},
825                 {"files",       "motd",         "",                     new ValueContainerChar (this->motd),                    DT_CHARPTR,  ValidateMotd},
826                 {"files",       "rules",        "",                     new ValueContainerChar (this->rules),                   DT_CHARPTR,  ValidateRules},
827                 {"power",       "diepass",      "",                     new ValueContainerChar (this->diepass),                 DT_CHARPTR,  ValidateNotEmpty},
828                 {"power",       "pause",        "",                     new ValueContainerInt  (&this->DieDelay),               DT_INTEGER,  NoValidation},
829                 {"power",       "hash",         "",                     new ValueContainerChar (this->powerhash),               DT_CHARPTR,  NoValidation},
830                 {"power",       "restartpass",  "",                     new ValueContainerChar (this->restartpass),             DT_CHARPTR,  ValidateNotEmpty},
831                 {"options",     "prefixquit",   "",                     new ValueContainerChar (this->PrefixQuit),              DT_CHARPTR,  NoValidation},
832                 {"options",     "suffixquit",   "",                     new ValueContainerChar (this->SuffixQuit),              DT_CHARPTR,  NoValidation},
833                 {"options",     "fixedquit",    "",                     new ValueContainerChar (this->FixedQuit),               DT_CHARPTR,  NoValidation},
834                 {"options",     "prefixpart",   "",                     new ValueContainerChar (this->PrefixPart),              DT_CHARPTR,  NoValidation},
835                 {"options",     "suffixpart",   "",                     new ValueContainerChar (this->SuffixPart),              DT_CHARPTR,  NoValidation},
836                 {"options",     "fixedpart",    "",                     new ValueContainerChar (this->FixedPart),               DT_CHARPTR,  NoValidation},
837                 {"performance", "netbuffersize","10240",                new ValueContainerInt  (&this->NetBufferSize),          DT_INTEGER,  ValidateNetBufferSize},
838                 {"performance", "maxwho",       "128",                  new ValueContainerInt  (&this->MaxWhoResults),          DT_INTEGER,  ValidateMaxWho},
839                 {"options",     "allowhalfop",  "0",                    new ValueContainerBool (&this->AllowHalfop),            DT_BOOLEAN,  NoValidation},
840                 {"dns",         "server",       "",                     new ValueContainerChar (this->DNSServer),               DT_IPADDRESS,DNSServerValidator},
841                 {"dns",         "timeout",      "5",                    new ValueContainerInt  (&this->dns_timeout),            DT_INTEGER,  NoValidation},
842                 {"options",     "moduledir",    MOD_PATH,               new ValueContainerChar (this->ModPath),                 DT_CHARPTR,  NoValidation},
843                 {"disabled",    "commands",     "",                     new ValueContainerChar (this->DisabledCommands),        DT_CHARPTR,  NoValidation},
844                 {"disabled",    "usermodes",    "",                     new ValueContainerChar (disabledumodes),                DT_CHARPTR,  ValidateDisabledUModes},
845                 {"disabled",    "chanmodes",    "",                     new ValueContainerChar (disabledcmodes),                DT_CHARPTR,  ValidateDisabledCModes},
846                 {"security",    "userstats",    "",                     new ValueContainerChar (this->UserStats),               DT_CHARPTR,  NoValidation},
847                 {"security",    "customversion","",                     new ValueContainerChar (this->CustomVersion),           DT_CHARPTR,  NoValidation},
848                 {"security",    "hidesplits",   "0",                    new ValueContainerBool (&this->HideSplits),             DT_BOOLEAN,  NoValidation},
849                 {"security",    "hidebans",     "0",                    new ValueContainerBool (&this->HideBans),               DT_BOOLEAN,  NoValidation},
850                 {"security",    "hidewhois",    "",                     new ValueContainerChar (this->HideWhoisServer),         DT_NOSPACES, NoValidation},
851                 {"security",    "hidekills",    "",                     new ValueContainerChar (this->HideKillsServer),         DT_NOSPACES,  NoValidation},
852                 {"security",    "operspywhois", "0",                    new ValueContainerBool (&this->OperSpyWhois),           DT_BOOLEAN,  NoValidation},
853                 {"performance", "nouserdns",    "0",                    new ValueContainerBool (&this->NoUserDns),              DT_BOOLEAN,  NoValidation},
854                 {"options",     "syntaxhints",  "0",                    new ValueContainerBool (&this->SyntaxHints),            DT_BOOLEAN,  NoValidation},
855                 {"options",     "cyclehosts",   "0",                    new ValueContainerBool (&this->CycleHosts),             DT_BOOLEAN,  NoValidation},
856                 {"options",     "ircumsgprefix","0",                    new ValueContainerBool (&this->UndernetMsgPrefix),      DT_BOOLEAN,  NoValidation},
857                 {"security",    "announceinvites", "1",                 new ValueContainerChar (announceinvites),               DT_CHARPTR,  ValidateInvite},
858                 {"options",     "hostintopic",  "1",                    new ValueContainerBool (&this->FullHostInTopic),        DT_BOOLEAN,  NoValidation},
859                 {"security",    "hidemodes",    "",                     new ValueContainerChar (hidemodes),                     DT_CHARPTR,  ValidateModeLists},
860                 {"options",     "exemptchanops","",                     new ValueContainerChar (exemptchanops),                 DT_CHARPTR,  ValidateExemptChanOps},
861                 {"security",    "maxtargets",   "20",                   new ValueContainerUInt (&this->MaxTargets),             DT_INTEGER,  ValidateMaxTargets},
862                 {"options",     "defaultmodes", "nt",                   new ValueContainerChar (this->DefaultModes),            DT_CHARPTR,  NoValidation},
863                 {"pid",         "file",         "",                     new ValueContainerChar (this->PID),                     DT_CHARPTR,  NoValidation},
864                 {"whowas",      "groupsize",    "10",                   new ValueContainerInt  (&this->WhoWasGroupSize),        DT_INTEGER,  NoValidation},
865                 {"whowas",      "maxgroups",    "10240",                new ValueContainerInt  (&this->WhoWasMaxGroups),        DT_INTEGER,  NoValidation},
866                 {"whowas",      "maxkeep",      "3600",                 new ValueContainerChar (maxkeep),                       DT_CHARPTR,  ValidateWhoWas},
867                 {"die",         "value",        "",                     new ValueContainerChar (this->DieValue),                DT_CHARPTR,  NoValidation},
868                 {"channels",    "users",        "20",                   new ValueContainerUInt (&this->MaxChans),               DT_INTEGER,  NoValidation},
869                 {"channels",    "opers",        "60",                   new ValueContainerUInt (&this->OperMaxChans),           DT_INTEGER,  NoValidation},
870                 {"cidr",        "ipv4clone",    "32",                   new ValueContainerInt (&this->c_ipv4_range),            DT_INTEGER,  NoValidation},
871                 {"cidr",        "ipv6clone",    "128",                  new ValueContainerInt (&this->c_ipv6_range),            DT_INTEGER,  NoValidation},
872                 {"limits",      "maxnick",      "32",                   new ValueContainerST (&this->Limits.NickMax),           DT_INTEGER,  NoValidation},
873                 {"limits",      "maxchan",      "64",                   new ValueContainerST (&this->Limits.ChanMax),           DT_INTEGER,  NoValidation},
874                 {"limits",      "maxmodes",     "20",                   new ValueContainerST (&this->Limits.MaxModes),          DT_INTEGER,  NoValidation},
875                 {"limits",      "maxident",     "11",                   new ValueContainerST (&this->Limits.IdentMax),          DT_INTEGER,  NoValidation},
876                 {"limits",      "maxquit",      "255",                  new ValueContainerST (&this->Limits.MaxQuit),           DT_INTEGER,  NoValidation},
877                 {"limits",      "maxtopic",     "307",                  new ValueContainerST (&this->Limits.MaxTopic),          DT_INTEGER,  NoValidation},
878                 {"limits",      "maxkick",      "255",                  new ValueContainerST (&this->Limits.MaxKick),           DT_INTEGER,  NoValidation},
879                 {"limits",      "maxgecos",     "128",                  new ValueContainerST (&this->Limits.MaxGecos),          DT_INTEGER,  NoValidation},
880                 {"limits",      "maxaway",      "200",                  new ValueContainerST (&this->Limits.MaxAway),           DT_INTEGER,  NoValidation},
881                 {NULL,          NULL,           NULL,                   NULL,                                                   DT_NOTHING,  NoValidation}
882         };
883
884
885         /* These tags can occur multiple times, and therefore they have special code to read them
886          * which is different to the code for reading the singular tags listed above.
887          */
888         MultiConfig MultiValues[] = {
889
890                 {"connect",
891                                 {"allow",       "deny",         "password",     "timeout",      "pingfreq",     "flood",
892                                 "threshold",    "sendq",        "recvq",        "localmax",     "globalmax",    "port",
893                                 "name",         "parent",       "maxchans",     "limit",        "hash",
894                                 NULL},
895                                 {"",            "",             "",             "",             "120",          "",
896                                  "",            "",             "",             "3",            "3",            "0",
897                                  "",            "",             "0",        "0",        "",
898                                  NULL},
899                                 {DT_IPADDRESS|DT_ALLOW_WILD,
900                                                 DT_IPADDRESS|DT_ALLOW_WILD,
901                                                                 DT_CHARPTR,     DT_INTEGER,     DT_INTEGER,     DT_INTEGER,
902                                 DT_INTEGER,     DT_INTEGER,     DT_INTEGER,     DT_INTEGER,     DT_INTEGER,     DT_INTEGER,
903                                 DT_NOSPACES,    DT_NOSPACES,    DT_INTEGER,     DT_INTEGER,     DT_CHARPTR},
904                                 InitConnect, DoConnect, DoneConnect},
905
906                 {"uline",
907                                 {"server",      "silent",       NULL},
908                                 {"",            "0",            NULL},
909                                 {DT_HOSTNAME,   DT_BOOLEAN},
910                                 InitULine,DoULine,DoneULine},
911
912                 {"banlist",
913                                 {"chan",        "limit",        NULL},
914                                 {"",            "",             NULL},
915                                 {DT_CHARPTR,    DT_INTEGER},
916                                 InitMaxBans, DoMaxBans, DoneMaxBans},
917
918                 {"module",
919                                 {"name",        NULL},
920                                 {"",            NULL},
921                                 {DT_CHARPTR},
922                                 InitModule, DoModule, DoneModule},
923
924                 {"badip",
925                                 {"reason",      "ipmask",       NULL},
926                                 {"No reason",   "",             NULL},
927                                 {DT_CHARPTR,    DT_IPADDRESS|DT_ALLOW_WILD},
928                                 InitXLine, DoZLine, DoneConfItem},
929
930                 {"badnick",
931                                 {"reason",      "nick",         NULL},
932                                 {"No reason",   "",             NULL},
933                                 {DT_CHARPTR,    DT_CHARPTR},
934                                 InitXLine, DoQLine, DoneConfItem},
935         
936                 {"badhost",
937                                 {"reason",      "host",         NULL},
938                                 {"No reason",   "",             NULL},
939                                 {DT_CHARPTR,    DT_CHARPTR},
940                                 InitXLine, DoKLine, DoneConfItem},
941
942                 {"exception",
943                                 {"reason",      "host",         NULL},
944                                 {"No reason",   "",             NULL},
945                                 {DT_CHARPTR,    DT_CHARPTR},
946                                 InitXLine, DoELine, DoneELine},
947         
948                 {"type",
949                                 {"name",        "classes",      NULL},
950                                 {"",            "",             NULL},
951                                 {DT_NOSPACES,   DT_CHARPTR},
952                                 InitTypes, DoType, DoneClassesAndTypes},
953
954                 {"class",
955                                 {"name",        "commands",     "usermodes",    "chanmodes",    NULL},
956                                 {"",            "",             "",             "",             NULL},
957                                 {DT_NOSPACES,   DT_CHARPTR,     DT_CHARPTR,     DT_CHARPTR},
958                                 InitClasses, DoClass, DoneClassesAndTypes},
959         
960                 {NULL,
961                                 {NULL},
962                                 {NULL},
963                                 {0},
964                                 NULL, NULL, NULL}
965         };
966
967         /* Load and parse the config file, if there are any errors then explode */
968
969         /* Make a copy here so if it fails then we can carry on running with an unaffected config */
970         newconfig.clear();
971
972         if (!this->DoInclude(newconfig, ServerInstance->ConfigFileName, errstr))
973         {
974                 ReportConfigError(errstr.str(), bail, user);
975                 return;
976         }
977
978         /* The stuff in here may throw CoreException, be sure we're in a position to catch it. */
979         try
980         {
981                 /* Check we dont have more than one of singular tags, or any of them missing
982                  */
983                 for (int Index = 0; Once[Index]; Index++)
984                         if (!CheckOnce(Once[Index], newconfig))
985                                 return;
986
987                 for (int Index = 0; ChangedConfig[Index].tag; Index++)
988                 {
989                         char item[MAXBUF];
990                         *item = 0;
991                         if (ConfValue(newconfig, ChangedConfig[Index].tag, ChangedConfig[Index].value, "", 0, item, MAXBUF, true) || *item)
992                                 throw CoreException(std::string("Your configuration contains a deprecated value: <") + ChangedConfig[Index].tag + ":" + ChangedConfig[Index].value + "> - " + ChangedConfig[Index].reason);
993                         else
994                                 ServerInstance->Logs->Log("CONFIG",DEBUG,"Deprecated item <%s:%s> does not exist, good.", ChangedConfig[Index].tag, ChangedConfig[Index].value);
995                 }
996
997                 /* Read the values of all the tags which occur once or not at all, and call their callbacks.
998                  */
999                 for (int Index = 0; Values[Index].tag; ++Index)
1000                 {
1001                         char item[MAXBUF];
1002                         int dt = Values[Index].datatype;
1003                         bool allow_newlines = ((dt & DT_ALLOW_NEWLINE) > 0);
1004                         bool allow_wild = ((dt & DT_ALLOW_WILD) > 0);
1005                         bool bootonly = ((dt & DT_BOOTONLY) > 0);
1006                         dt &= ~DT_ALLOW_NEWLINE;
1007                         dt &= ~DT_ALLOW_WILD;
1008                         dt &= ~DT_BOOTONLY;
1009
1010                         /* Silently ignore boot only values */
1011                         if (bootonly && !bail)
1012                                 continue;
1013
1014                         ConfValue(newconfig, Values[Index].tag, Values[Index].value, Values[Index].default_value, 0, item, MAXBUF, allow_newlines);
1015                         ValueItem vi(item);
1016                         
1017                         if (!Values[Index].validation_function(this, Values[Index].tag, Values[Index].value, vi))
1018                                 throw CoreException("One or more values in your configuration file failed to validate. Please see your ircd.log for more information.");
1019         
1020                         ServerInstance->Threads->Mutex(true);
1021                         switch (dt)
1022                         {
1023                                 case DT_NOSPACES:
1024                                 {
1025                                         ValueContainerChar* vcc = (ValueContainerChar*)Values[Index].val;
1026                                         this->ValidateNoSpaces(vi.GetString(), Values[Index].tag, Values[Index].value);
1027                                         vcc->Set(vi.GetString(), strlen(vi.GetString()) + 1);
1028                                 }
1029                                 break;
1030                                 case DT_HOSTNAME:
1031                                 {
1032                                         ValueContainerChar* vcc = (ValueContainerChar*)Values[Index].val;
1033                                         this->ValidateHostname(vi.GetString(), Values[Index].tag, Values[Index].value);
1034                                         vcc->Set(vi.GetString(), strlen(vi.GetString()) + 1);
1035                                 }
1036                                 break;
1037                                 case DT_IPADDRESS:
1038                                 {
1039                                         ValueContainerChar* vcc = (ValueContainerChar*)Values[Index].val;
1040                                         this->ValidateIP(vi.GetString(), Values[Index].tag, Values[Index].value, allow_wild);
1041                                         vcc->Set(vi.GetString(), strlen(vi.GetString()) + 1);
1042                                 }
1043                                 break;
1044                                 case DT_CHANNEL:
1045                                 {
1046                                         ValueContainerChar* vcc = (ValueContainerChar*)Values[Index].val;
1047                                         if (*(vi.GetString()) && !ServerInstance->IsChannel(vi.GetString(), MAXBUF))
1048                                         {
1049                                                 ServerInstance->Threads->Mutex(false);
1050                                                 throw CoreException("The value of <"+std::string(Values[Index].tag)+":"+Values[Index].value+"> is not a valid channel name");
1051                                         }
1052                                         vcc->Set(vi.GetString(), strlen(vi.GetString()) + 1);
1053                                 }
1054                                 break;
1055                                 case DT_CHARPTR:
1056                                 {
1057                                         ValueContainerChar* vcc = (ValueContainerChar*)Values[Index].val;
1058                                         /* Make sure we also copy the null terminator */
1059                                         vcc->Set(vi.GetString(), strlen(vi.GetString()) + 1);
1060                                 }
1061                                 break;
1062                                 case DT_INTEGER:
1063                                 {
1064                                         int val = vi.GetInteger();
1065                                         ValueContainerInt* vci = (ValueContainerInt*)Values[Index].val;
1066                                         vci->Set(&val, sizeof(int));
1067                                 }
1068                                 break;
1069                                 case DT_BOOLEAN:
1070                                 {
1071                                         bool val = vi.GetBool();
1072                                         ValueContainerBool* vcb = (ValueContainerBool*)Values[Index].val;
1073                                         vcb->Set(&val, sizeof(bool));
1074                                 }
1075                                 break;
1076                                 default:
1077                                         /* You don't want to know what happens if someones bad code sends us here. */
1078                                 break;
1079                         }
1080                         /* We're done with this now */
1081                         delete Values[Index].val;
1082                         ServerInstance->Threads->Mutex(false);
1083                 }
1084
1085                 /* Read the multiple-tag items (class tags, connect tags, etc)
1086                  * and call the callbacks associated with them. We have three
1087                  * callbacks for these, a 'start', 'item' and 'end' callback.
1088                  */
1089                 for (int Index = 0; MultiValues[Index].tag; ++Index)
1090                 {
1091                         ServerInstance->Threads->Mutex(true);
1092                         MultiValues[Index].init_function(this, MultiValues[Index].tag);
1093                         ServerInstance->Threads->Mutex(false);
1094
1095                         int number_of_tags = ConfValueEnum(newconfig, MultiValues[Index].tag);
1096
1097                         for (int tagnum = 0; tagnum < number_of_tags; ++tagnum)
1098                         {
1099                                 ValueList vl;
1100                                 for (int valuenum = 0; (MultiValues[Index].items[valuenum]) && (valuenum < MAX_VALUES_PER_TAG); ++valuenum)
1101                                 {
1102                                         int dt = MultiValues[Index].datatype[valuenum];
1103                                         bool allow_newlines =  ((dt & DT_ALLOW_NEWLINE) > 0);
1104                                         bool allow_wild = ((dt & DT_ALLOW_WILD) > 0);
1105                                         dt &= ~DT_ALLOW_NEWLINE;
1106                                         dt &= ~DT_ALLOW_WILD;
1107
1108                                         ServerInstance->Threads->Mutex(true);
1109                                         /* We catch and rethrow any exception here just so we can free our mutex
1110                                          */
1111                                         try
1112                                         {
1113                                                 switch (dt)
1114                                                 {
1115                                                         case DT_NOSPACES:
1116                                                         {
1117                                                                 char item[MAXBUF];
1118                                                                 if (ConfValue(newconfig, MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item, MAXBUF, allow_newlines))
1119                                                                         vl.push_back(ValueItem(item));
1120                                                                 else
1121                                                                         vl.push_back(ValueItem(""));
1122                                                                 this->ValidateNoSpaces(vl[vl.size()-1].GetString(), MultiValues[Index].tag, MultiValues[Index].items[valuenum]);
1123                                                         }
1124                                                         break;
1125                                                         case DT_HOSTNAME:
1126                                                         {
1127                                                                 char item[MAXBUF];
1128                                                                 if (ConfValue(newconfig, MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item, MAXBUF, allow_newlines))
1129                                                                         vl.push_back(ValueItem(item));
1130                                                                 else
1131                                                                         vl.push_back(ValueItem(""));
1132                                                                 this->ValidateHostname(vl[vl.size()-1].GetString(), MultiValues[Index].tag, MultiValues[Index].items[valuenum]);
1133                                                         }
1134                                                         break;
1135                                                         case DT_IPADDRESS:
1136                                                         {
1137                                                                 char item[MAXBUF];
1138                                                                 if (ConfValue(newconfig, MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item, MAXBUF, allow_newlines))
1139                                                                         vl.push_back(ValueItem(item));
1140                                                                 else
1141                                                                         vl.push_back(ValueItem(""));
1142                                                                 this->ValidateIP(vl[vl.size()-1].GetString(), MultiValues[Index].tag, MultiValues[Index].items[valuenum], allow_wild);
1143                                                         }
1144                                                         break;
1145                                                         case DT_CHANNEL:
1146                                                         {
1147                                                                 char item[MAXBUF];
1148                                                                 if (ConfValue(newconfig, MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item, MAXBUF, allow_newlines))
1149                                                                         vl.push_back(ValueItem(item));
1150                                                                 else
1151                                                                         vl.push_back(ValueItem(""));
1152                                                                 if (!ServerInstance->IsChannel(vl[vl.size()-1].GetString(), MAXBUF))
1153                                                                         throw CoreException("The value of <"+std::string(MultiValues[Index].tag)+":"+MultiValues[Index].items[valuenum]+"> number "+ConvToStr(tagnum + 1)+" is not a valid channel name");
1154                                                         }
1155                                                         break;
1156                                                         case DT_CHARPTR:
1157                                                         {
1158                                                                 char item[MAXBUF];
1159                                                                 if (ConfValue(newconfig, MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item, MAXBUF, allow_newlines))
1160                                                                         vl.push_back(ValueItem(item));
1161                                                                 else
1162                                                                         vl.push_back(ValueItem(""));
1163                                                         }
1164                                                         break;
1165                                                         case DT_INTEGER:
1166                                                         {
1167                                                                 int item = 0;
1168                                                                 if (ConfValueInteger(newconfig, MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item))
1169                                                                         vl.push_back(ValueItem(item));
1170                                                                 else
1171                                                                         vl.push_back(ValueItem(0));
1172                                                         }
1173                                                         break;
1174                                                         case DT_BOOLEAN:
1175                                                         {
1176                                                                 bool item = ConfValueBool(newconfig, MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum);
1177                                                                 vl.push_back(ValueItem(item));
1178                                                         }
1179                                                         break;
1180                                                         default:
1181                                                                 /* Someone was smoking craq if we got here, and we're all gonna die. */
1182                                                         break;
1183                                                 }
1184                                         }
1185                                         catch (CoreException &e)
1186                                         {
1187                                                 ServerInstance->Threads->Mutex(false);
1188                                                 throw e;
1189                                         }
1190                                         ServerInstance->Threads->Mutex(false);
1191                                 }
1192                                 MultiValues[Index].validation_function(this, MultiValues[Index].tag, (char**)MultiValues[Index].items, vl, MultiValues[Index].datatype);
1193                         }
1194                         MultiValues[Index].finish_function(this, MultiValues[Index].tag);
1195                 }
1196
1197                 /* Finalise the limits, increment them all by one so that we can just put assign(str, 0, val)
1198                  * rather than assign(str, 0, val + 1)
1199                  */
1200                 Limits.Finalise();
1201
1202         }
1203
1204         catch (CoreException &ce)
1205         {
1206                 ReportConfigError(ce.GetReason(), bail, user);
1207                 return;
1208         }
1209
1210         ServerInstance->Threads->Mutex(true);
1211         for (int i = 0; i < ConfValueEnum(newconfig, "type"); ++i)
1212         {
1213                 char item[MAXBUF], classn[MAXBUF], classes[MAXBUF];
1214                 std::string classname;
1215                 ConfValue(newconfig, "type", "classes", "", i, classes, MAXBUF, false);
1216                 irc::spacesepstream str(classes);
1217                 ConfValue(newconfig, "type", "name", "", i, item, MAXBUF, false);
1218                 while (str.GetToken(classname))
1219                 {
1220                         std::string lost;
1221                         bool foundclass = false;
1222                         for (int j = 0; j < ConfValueEnum(newconfig, "class"); ++j)
1223                         {
1224                                 ConfValue(newconfig, "class", "name", "", j, classn, MAXBUF, false);
1225                                 if (!strcmp(classn, classname.c_str()))
1226                                 {
1227                                         foundclass = true;
1228                                         break;
1229                                 }
1230                         }
1231                         if (!foundclass)
1232                         {
1233                                 if (user)
1234                                         user->WriteServ("NOTICE %s :*** Warning: Oper type '%s' has a missing class named '%s', this does nothing!", user->nick.c_str(), item, classname.c_str());
1235                                 else
1236                                 {
1237                                         if (bail)
1238                                                 printf("Warning: Oper type '%s' has a missing class named '%s', this does nothing!\n", item, classname.c_str());
1239                                         else
1240                                                 ServerInstance->SNO->WriteToSnoMask('A', "Warning: Oper type '%s' has a missing class named '%s', this does nothing!", item, classname.c_str());
1241                                 }
1242                         }
1243                 }
1244         }
1245
1246         /* If we succeeded, set the ircd config to the new one */
1247         this->config_data = newconfig;
1248
1249         ServerInstance->Threads->Mutex(false);
1250
1251         // write once here, to try it out and make sure its ok
1252         ServerInstance->WritePID(this->PID);
1253
1254         /* Switch over logfiles */
1255         ServerInstance->Logs->CloseLogs();
1256         ServerInstance->Logs->OpenFileLogs();
1257
1258         ServerInstance->Logs->Log("CONFIG", DEFAULT, "Done reading configuration file.");
1259
1260         /* If we're rehashing, let's load any new modules, and unload old ones
1261          */
1262         if (!bail)
1263         {
1264                 int found_ports = 0;
1265                 FailedPortList pl;
1266                 ServerInstance->BindPorts(false, found_ports, pl);
1267
1268                 if (pl.size() && user)
1269                 {
1270                         ServerInstance->Threads->Mutex(true);
1271                         user->WriteServ("NOTICE %s :*** Not all your client ports could be bound.", user->nick.c_str());
1272                         user->WriteServ("NOTICE %s :*** The following port(s) failed to bind:", user->nick.c_str());
1273                         int j = 1;
1274                         for (FailedPortList::iterator i = pl.begin(); i != pl.end(); i++, j++)
1275                         {
1276                                 user->WriteServ("NOTICE %s :*** %d.   Address: %s        Reason: %s", user->nick.c_str(), j, i->first.empty() ? "<all>" : i->first.c_str(), i->second.c_str());
1277                         }
1278                         ServerInstance->Threads->Mutex(false);
1279                 }
1280
1281                 ServerInstance->Threads->Mutex(true);
1282                 if (!removed_modules.empty())
1283                 {
1284                         for (std::vector<std::string>::iterator removing = removed_modules.begin(); removing != removed_modules.end(); removing++)
1285                         {
1286                                 if (ServerInstance->Modules->Unload(removing->c_str()))
1287                                 {
1288                                         ServerInstance->SNO->WriteToSnoMask('A', "*** REHASH UNLOADED MODULE: %s",removing->c_str());
1289
1290                                         if (user)
1291                                                 user->WriteNumeric(RPL_UNLOADEDMODULE, "%s %s :Module %s successfully unloaded.",user->nick.c_str(), removing->c_str(), removing->c_str());
1292
1293                                         rem++;
1294                                 }
1295                                 else
1296                                 {
1297                                         if (user)
1298                                                 user->WriteNumeric(ERR_CANTUNLOADMODULE, "%s %s :Failed to unload module %s: %s",user->nick.c_str(), removing->c_str(), removing->c_str(), ServerInstance->Modules->LastError().c_str());
1299                                 }
1300                         }
1301                 }
1302
1303                 if (!added_modules.empty())
1304                 {
1305                         for (std::vector<std::string>::iterator adding = added_modules.begin(); adding != added_modules.end(); adding++)
1306                         {
1307                                 if (ServerInstance->Modules->Load(adding->c_str()))
1308                                 {
1309                                         ServerInstance->SNO->WriteToSnoMask('A', "*** REHASH LOADED MODULE: %s",adding->c_str());
1310
1311                                         if (user)
1312                                                 user->WriteNumeric(RPL_LOADEDMODULE, "%s %s :Module %s successfully loaded.",user->nick.c_str(), adding->c_str(), adding->c_str());
1313
1314                                         add++;
1315                                 }
1316                                 else
1317                                 {
1318                                         if (user)
1319                                                 user->WriteNumeric(ERR_CANTLOADMODULE, "%s %s :Failed to load module %s: %s",user->nick.c_str(), adding->c_str(), adding->c_str(), ServerInstance->Modules->LastError().c_str());
1320                                 }
1321                         }
1322                 }
1323
1324                 ServerInstance->Logs->Log("CONFIG", 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());
1325
1326                 ServerInstance->Threads->Mutex(false);
1327
1328         }
1329
1330         if (bail)
1331         {
1332                 /** Note: This is safe, the method checks for user == NULL */
1333                 ServerInstance->Threads->Mutex(true);
1334                 ServerInstance->Parser->SetupCommandTable(user);
1335                 ServerInstance->Threads->Mutex(false);
1336         }
1337         else
1338         {
1339                 if (user)
1340                         user->WriteServ("NOTICE %s :*** Successfully rehashed server.", user->nick.c_str());
1341                 else
1342                         ServerInstance->SNO->WriteToSnoMask('A', "*** Successfully rehashed server.");
1343         }
1344
1345 }
1346
1347
1348 bool ServerConfig::LoadConf(ConfigDataHash &target, FILE* &conf, const char* filename, std::ostringstream &errorstream)
1349 {
1350         std::string line;
1351         char ch;
1352         long linenumber = 1;
1353         long last_successful_parse = 1;
1354         bool in_tag;
1355         bool in_quote;
1356         bool in_comment;
1357         int character_count = 0;
1358
1359         in_tag = false;
1360         in_quote = false;
1361         in_comment = false;
1362
1363         ServerInstance->Logs->Log("CONFIG", DEBUG, "Reading %s", filename);
1364
1365         /* Check if the file open failed first */
1366         if (!conf)
1367         {
1368                 errorstream << "LoadConf: Couldn't open config file: " << filename << std::endl;
1369                 return false;
1370         }
1371
1372         for (unsigned int t = 0; t < include_stack.size(); t++)
1373         {
1374                 if (std::string(filename) == include_stack[t])
1375                 {
1376                         errorstream << "File " << filename << " is included recursively (looped inclusion)." << std::endl;
1377                         return false;
1378                 }
1379         }
1380
1381         /* It's not already included, add it to the list of files we've loaded */
1382         include_stack.push_back(filename);
1383
1384         /* Start reading characters... */
1385         while ((ch = fgetc(conf)) != EOF)
1386         {
1387                 /*
1388                  * Fix for moronic windows issue spotted by Adremelech.
1389                  * Some windows editors save text files as utf-16, which is
1390                  * a total pain in the ass to parse. Users should save in the
1391                  * right config format! If we ever see a file where the first
1392                  * byte is 0xFF or 0xFE, or the second is 0xFF or 0xFE, then
1393                  * this is most likely a utf-16 file. Bail out and insult user.
1394                  */
1395                 if ((character_count++ < 2) && (ch == '\xFF' || ch == '\xFE'))
1396                 {
1397                         errorstream << "File " << filename << " cannot be read, as it is encoded in braindead UTF-16. Save your file as plain ASCII!" << std::endl;
1398                         return false;
1399                 }
1400
1401                 /*
1402                  * Here we try and get individual tags on separate lines,
1403                  * this would be so easy if we just made people format
1404                  * their config files like that, but they don't so...
1405                  * We check for a '<' and then know the line is over when
1406                  * we get a '>' not inside quotes. If we find two '<' and
1407                  * no '>' then die with an error.
1408                  */
1409
1410                 if ((ch == '#') && !in_quote)
1411                         in_comment = true;
1412
1413                 switch (ch)
1414                 {
1415                         case '\n':
1416                                 if (in_quote)
1417                                         line += '\n';
1418                                 linenumber++;
1419                         case '\r':
1420                                 if (!in_quote)
1421                                         in_comment = false;
1422                         case '\0':
1423                                 continue;
1424                         case '\t':
1425                                 ch = ' ';
1426                 }
1427
1428                 if(in_comment)
1429                         continue;
1430
1431                 /* XXX: Added by Brain, May 1st 2006 - Escaping of characters.
1432                  * Note that this WILL NOT usually allow insertion of newlines,
1433                  * because a newline is two characters long. Use it primarily to
1434                  * insert the " symbol.
1435                  *
1436                  * Note that this also involves a further check when parsing the line,
1437                  * which can be found below.
1438                  */
1439                 if ((ch == '\\') && (in_quote) && (in_tag))
1440                 {
1441                         line += ch;
1442                         char real_character;
1443                         if (!feof(conf))
1444                         {
1445                                 real_character = fgetc(conf);
1446                                 if (real_character == 'n')
1447                                         real_character = '\n';
1448                                 line += real_character;
1449                                 continue;
1450                         }
1451                         else
1452                         {
1453                                 errorstream << "End of file after a \\, what did you want to escape?: " << filename << ":" << linenumber << std::endl;
1454                                 return false;
1455                         }
1456                 }
1457
1458                 if (ch != '\r')
1459                         line += ch;
1460
1461                 if ((ch != '<') && (!in_tag) && (!in_comment) && (ch > ' ') && (ch != 9))
1462                 {
1463                         errorstream << "You have stray characters beyond the tag which starts at " << filename << ":" << last_successful_parse << std::endl;
1464                         return false;
1465                 }
1466
1467                 if (ch == '<')
1468                 {
1469                         if (in_tag)
1470                         {
1471                                 if (!in_quote)
1472                                 {
1473                                         errorstream << "The tag at location " << filename << ":" << last_successful_parse << " was valid, but there is an error in the tag which comes after it. You are possibly missing a \" or >. Please check this." << std::endl;
1474                                         return false;
1475                                 }
1476                         }
1477                         else
1478                         {
1479                                 if (in_quote)
1480                                 {
1481                                         errorstream << "Parser error: Inside a quote but not within the last valid tag, which was opened at: " << filename << ":" << last_successful_parse << std::endl;
1482                                         return false;
1483                                 }
1484                                 else
1485                                 {
1486                                         // errorstream << "Opening new config tag on line " << linenumber << std::endl;
1487                                         in_tag = true;
1488                                 }
1489                         }
1490                 }
1491                 else if (ch == '"')
1492                 {
1493                         if (in_tag)
1494                         {
1495                                 if (in_quote)
1496                                 {
1497                                         // errorstream << "Closing quote in config tag on line " << linenumber << std::endl;
1498                                         in_quote = false;
1499                                 }
1500                                 else
1501                                 {
1502                                         // errorstream << "Opening quote in config tag on line " << linenumber << std::endl;
1503                                         in_quote = true;
1504                                 }
1505                         }
1506                         else
1507                         {
1508                                 if (in_quote)
1509                                 {
1510                                         errorstream << "The tag immediately after the one at " << filename << ":" << last_successful_parse << " has a missing closing \" symbol. Please check this." << std::endl;
1511                                 }
1512                                 else
1513                                 {
1514                                         errorstream << "You have opened a quote (\") beyond the tag at " << filename << ":" << last_successful_parse << " without opening a new tag. Please check this." << std::endl;
1515                                 }
1516                         }
1517                 }
1518                 else if (ch == '>')
1519                 {
1520                         if (!in_quote)
1521                         {
1522                                 if (in_tag)
1523                                 {
1524                                         // errorstream << "Closing config tag on line " << linenumber << std::endl;
1525                                         in_tag = false;
1526         
1527                                         /*
1528                                          * If this finds an <include> then ParseLine can simply call
1529                                          * LoadConf() and load the included config into the same ConfigDataHash
1530                                          */
1531                                         long bl = linenumber;
1532                                         if (!this->ParseLine(target, filename, line, linenumber, errorstream))
1533                                                 return false;
1534                                         last_successful_parse = linenumber;
1535
1536                                         linenumber = bl;
1537         
1538                                         line.clear();
1539                                 }
1540                                 else
1541                                 {
1542                                         errorstream << "You forgot to close the tag which comes immediately after the one at " << filename << ":" << last_successful_parse << std::endl;
1543                                         return false;
1544                                 }
1545                         }
1546                 }
1547         }
1548
1549         /* 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 */
1550         if (in_comment || in_quote)
1551         {
1552                 errorstream << "Reached end of file whilst still inside a quoted section or tag. This is most likely an error or there \
1553                         is a newline missing from the end of the file: " << filename << ":" << linenumber << std::endl;
1554         }
1555
1556         return true;
1557 }
1558
1559
1560 bool ServerConfig::LoadConf(ConfigDataHash &target, FILE* &conf, const std::string &filename, std::ostringstream &errorstream)
1561 {
1562         return this->LoadConf(target, conf, filename.c_str(), errorstream);
1563 }
1564
1565 bool ServerConfig::ParseLine(ConfigDataHash &target, const std::string &filename, std::string &line, long &linenumber, std::ostringstream &errorstream)
1566 {
1567         std::string tagname;
1568         std::string current_key;
1569         std::string current_value;
1570         KeyValList results;
1571         char last_char = 0;
1572         bool got_name;
1573         bool got_key;
1574         bool in_quote;
1575
1576         got_name = got_key = in_quote = false;
1577
1578         for(std::string::iterator c = line.begin(); c != line.end(); c++)
1579         {
1580                 if (!got_name)
1581                 {
1582                         /* We don't know the tag name yet. */
1583
1584                         if (*c != ' ')
1585                         {
1586                                 if (*c != '<')
1587                                 {
1588                                         if ((*c >= 'a' && *c <= 'z') || (*c >= 'A' && *c <='Z') || (*c >= '0' && *c <= '9') || *c == '_')
1589                                                 tagname += *c;
1590                                         else
1591                                         {
1592                                                 errorstream << "Invalid character in value name of tag: '" << *c << "' in value '" << tagname << "' in filename: " << filename << ":" << linenumber << std::endl;
1593                                                 return false;
1594                                         }
1595                                 }
1596                         }
1597                         else
1598                         {
1599                                 /* We got to a space, we should have the tagname now. */
1600                                 if(tagname.length())
1601                                 {
1602                                         got_name = true;
1603                                 }
1604                         }
1605                 }
1606                 else
1607                 {
1608                         /* We have the tag name */
1609                         if (!got_key)
1610                         {
1611                                 /* We're still reading the key name */
1612                                 if ((*c != '=') && (*c != '>'))
1613                                 {
1614                                         if (*c != ' ')
1615                                         {
1616                                                 if ((*c >= 'a' && *c <= 'z') || (*c >= 'A' && *c <='Z') || (*c >= '0' && *c <= '9') || *c == '_')
1617                                                         current_key += *c;
1618                                                 else
1619                                                 {
1620                                                         errorstream << "Invalid character in key: '" << *c << "' in key '" << current_key << "' in filename: " << filename << ":" << linenumber << std::endl;
1621                                                         return false;
1622                                                 }
1623                                         }
1624                                 }
1625                                 else
1626                                 {
1627                                         /* We got an '=', end of the key name. */
1628                                         got_key = true;
1629                                 }
1630                         }
1631                         else
1632                         {
1633                                 /* We have the key name, now we're looking for quotes and the value */
1634
1635                                 /* Correctly handle escaped characters here.
1636                                  * See the XXX'ed section above.
1637                                  */
1638                                 if ((*c == '\\') && (in_quote))
1639                                 {
1640                                         c++;
1641                                         if (*c == 'n')
1642                                                 current_value += '\n';
1643                                         else
1644                                                 current_value += *c;
1645                                         continue;
1646                                 }
1647                                 else if ((*c == '\\') && (!in_quote))
1648                                 {
1649                                         errorstream << "You can't have an escape sequence outside of a quoted section: " << filename << ":" << linenumber << std::endl;
1650                                         return false;
1651                                 }
1652                                 else if ((*c == '\n') && (in_quote))
1653                                 {
1654                                         /* Got a 'real' \n, treat it as part of the value */
1655                                         current_value += '\n';
1656                                         continue;
1657                                 }
1658                                 else if ((*c == '\r') && (in_quote))
1659                                 {
1660                                         /* Got a \r, drop it */
1661                                         continue;
1662                                 }
1663
1664                                 if (*c == '"')
1665                                 {
1666                                         if (!in_quote)
1667                                         {
1668                                                 /* We're not already in a quote. */
1669                                                 in_quote = true;
1670                                         }
1671                                         else
1672                                         {
1673                                                 /* Leaving the quotes, we have the current value */
1674                                                 results.push_back(KeyVal(current_key, current_value));
1675
1676                                                 // std::cout << "<" << tagname << ":" << current_key << "> " << current_value << std::endl;
1677
1678                                                 in_quote = false;
1679                                                 got_key = false;
1680
1681                                                 if ((tagname == "include") && (current_key == "file"))
1682                                                 {       
1683                                                         if (!this->DoInclude(target, current_value, errorstream))
1684                                                                 return false;
1685                                                 }
1686                                                 else if ((tagname == "include") && (current_key == "executable"))
1687                                                 {
1688                                                         /* Pipe an executable and use its stdout as config data */
1689                                                         if (!this->DoPipe(target, current_value, errorstream))
1690                                                                 return false;
1691                                                 }
1692
1693                                                 current_key.clear();
1694                                                 current_value.clear();
1695                                         }
1696                                 }
1697                                 else
1698                                 {
1699                                         if (in_quote)
1700                                         {
1701                                                 last_char = *c;
1702                                                 current_value += *c;
1703                                         }
1704                                 }
1705                         }
1706                 }
1707         }
1708
1709         /* Finished parsing the tag, add it to the config hash */
1710         target.insert(std::pair<std::string, KeyValList > (tagname, results));
1711
1712         return true;
1713 }
1714
1715 bool ServerConfig::DoPipe(ConfigDataHash &target, const std::string &file, std::ostringstream &errorstream)
1716 {
1717         FILE* conf = popen(file.c_str(), "r");
1718         bool ret = false;
1719
1720         if (conf)
1721         {
1722                 ret = LoadConf(target, conf, file.c_str(), errorstream);
1723                 pclose(conf);
1724         }
1725         else
1726                 errorstream << "Couldn't execute: " << file << std::endl;
1727
1728         return ret;
1729 }
1730
1731 bool ServerConfig::StartsWithWindowsDriveLetter(const std::string &path)
1732 {
1733         return (path.length() > 2 && isalpha(path[0]) && path[1] == ':');
1734 }
1735
1736 bool ServerConfig::DoInclude(ConfigDataHash &target, const std::string &file, std::ostringstream &errorstream)
1737 {
1738         std::string confpath;
1739         std::string newfile;
1740         std::string::size_type pos;
1741
1742         confpath = ServerInstance->ConfigFileName;
1743         newfile = file;
1744
1745         std::replace(newfile.begin(),newfile.end(),'\\','/');
1746         std::replace(confpath.begin(),confpath.end(),'\\','/');
1747
1748         if ((newfile[0] != '/') && (!StartsWithWindowsDriveLetter(newfile)))
1749         {
1750                 if((pos = confpath.rfind("/")) != std::string::npos)
1751                 {
1752                         /* Leaves us with just the path */
1753                         newfile = confpath.substr(0, pos) + std::string("/") + newfile;
1754                 }
1755                 else
1756                 {
1757                         errorstream << "Couldn't get config path from: " << ServerInstance->ConfigFileName << std::endl;
1758                         return false;
1759                 }
1760         }
1761
1762         FILE* conf = fopen(newfile.c_str(), "r");
1763         bool ret = false;
1764
1765         if (conf)
1766         {
1767                 ret = LoadConf(target, conf, newfile, errorstream);
1768                 fclose(conf);
1769         }
1770         else
1771                 errorstream << "Couldn't open config file: " << file << std::endl;
1772
1773         return ret;
1774 }
1775
1776 bool ServerConfig::ConfValue(ConfigDataHash &target, const char* tag, const char* var, int index, char* result, int length, bool allow_linefeeds)
1777 {
1778         return ConfValue(target, tag, var, "", index, result, length, allow_linefeeds);
1779 }
1780
1781 bool ServerConfig::ConfValue(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index, char* result, int length, bool allow_linefeeds)
1782 {
1783         std::string value;
1784         bool r = ConfValue(target, std::string(tag), std::string(var), std::string(default_value), index, value, allow_linefeeds);
1785         strlcpy(result, value.c_str(), length);
1786         return r;
1787 }
1788
1789 bool ServerConfig::ConfValue(ConfigDataHash &target, const std::string &tag, const std::string &var, int index, std::string &result, bool allow_linefeeds)
1790 {
1791         return ConfValue(target, tag, var, "", index, result, allow_linefeeds);
1792 }
1793
1794 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)
1795 {
1796         ConfigDataHash::size_type pos = index;
1797         if (pos < target.count(tag))
1798         {
1799                 ConfigDataHash::iterator iter = target.find(tag);
1800
1801                 for(int i = 0; i < index; i++)
1802                         iter++;
1803
1804                 for(KeyValList::iterator j = iter->second.begin(); j != iter->second.end(); j++)
1805                 {
1806                         if(j->first == var)
1807                         {
1808                                 if ((!allow_linefeeds) && (j->second.find('\n') != std::string::npos))
1809                                 {
1810                                         ServerInstance->Logs->Log("CONFIG",DEFAULT, "Value of <" + tag + ":" + var+ "> contains a linefeed, and linefeeds in this value are not permitted -- stripped to spaces.");
1811                                         for (std::string::iterator n = j->second.begin(); n != j->second.end(); n++)
1812                                                 if (*n == '\n')
1813                                                         *n = ' ';
1814                                 }
1815                                 else
1816                                 {
1817                                         result = j->second;
1818                                         return true;
1819                                 }
1820                         }
1821                 }
1822                 if (!default_value.empty())
1823                 {
1824                         result = default_value;
1825                         return true;
1826                 }
1827         }
1828         else if (pos == 0)
1829         {
1830                 if (!default_value.empty())
1831                 {
1832                         result = default_value;
1833                         return true;
1834                 }
1835         }
1836         return false;
1837 }
1838
1839 bool ServerConfig::ConfValueInteger(ConfigDataHash &target, const char* tag, const char* var, int index, int &result)
1840 {
1841         return ConfValueInteger(target, std::string(tag), std::string(var), "", index, result);
1842 }
1843
1844 bool ServerConfig::ConfValueInteger(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index, int &result)
1845 {
1846         return ConfValueInteger(target, std::string(tag), std::string(var), std::string(default_value), index, result);
1847 }
1848
1849 bool ServerConfig::ConfValueInteger(ConfigDataHash &target, const std::string &tag, const std::string &var, int index, int &result)
1850 {
1851         return ConfValueInteger(target, tag, var, "", index, result);
1852 }
1853
1854 bool ServerConfig::ConfValueInteger(ConfigDataHash &target, const std::string &tag, const std::string &var, const std::string &default_value, int index, int &result)
1855 {
1856         std::string value;
1857         std::istringstream stream;
1858         bool r = ConfValue(target, tag, var, default_value, index, value);
1859         stream.str(value);
1860         if(!(stream >> result))
1861                 return false;
1862         else
1863         {
1864                 if (!value.empty())
1865                 {
1866                         if (value.substr(0,2) == "0x")
1867                         {
1868                                 char* endptr;
1869
1870                                 value.erase(0,2);
1871                                 result = strtol(value.c_str(), &endptr, 16);
1872
1873                                 /* No digits found */
1874                                 if (endptr == value.c_str())
1875                                         return false;
1876                         }
1877                         else
1878                         {
1879                                 char denominator = *(value.end() - 1);
1880                                 switch (toupper(denominator))
1881                                 {
1882                                         case 'K':
1883                                                 /* Kilobytes -> bytes */
1884                                                 result = result * 1024;
1885                                         break;
1886                                         case 'M':
1887                                                 /* Megabytes -> bytes */
1888                                                 result = result * 1024 * 1024;
1889                                         break;
1890                                         case 'G':
1891                                                 /* Gigabytes -> bytes */
1892                                                 result = result * 1024 * 1024 * 1024;
1893                                         break;
1894                                 }
1895                         }
1896                 }
1897         }
1898         return r;
1899 }
1900
1901
1902 bool ServerConfig::ConfValueBool(ConfigDataHash &target, const char* tag, const char* var, int index)
1903 {
1904         return ConfValueBool(target, std::string(tag), std::string(var), "", index);
1905 }
1906
1907 bool ServerConfig::ConfValueBool(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index)
1908 {
1909         return ConfValueBool(target, std::string(tag), std::string(var), std::string(default_value), index);
1910 }
1911
1912 bool ServerConfig::ConfValueBool(ConfigDataHash &target, const std::string &tag, const std::string &var, int index)
1913 {
1914         return ConfValueBool(target, tag, var, "", index);
1915 }
1916
1917 bool ServerConfig::ConfValueBool(ConfigDataHash &target, const std::string &tag, const std::string &var, const std::string &default_value, int index)
1918 {
1919         std::string result;
1920         if(!ConfValue(target, tag, var, default_value, index, result))
1921                 return false;
1922
1923         return ((result == "yes") || (result == "true") || (result == "1"));
1924 }
1925
1926 int ServerConfig::ConfValueEnum(ConfigDataHash &target, const char* tag)
1927 {
1928         return target.count(tag);
1929 }
1930
1931 int ServerConfig::ConfValueEnum(ConfigDataHash &target, const std::string &tag)
1932 {
1933         return target.count(tag);
1934 }
1935
1936 int ServerConfig::ConfVarEnum(ConfigDataHash &target, const char* tag, int index)
1937 {
1938         return ConfVarEnum(target, std::string(tag), index);
1939 }
1940
1941 int ServerConfig::ConfVarEnum(ConfigDataHash &target, const std::string &tag, int index)
1942 {
1943         ConfigDataHash::size_type pos = index;
1944
1945         if (pos < target.count(tag))
1946         {
1947                 ConfigDataHash::const_iterator iter = target.find(tag);
1948
1949                 for(int i = 0; i < index; i++)
1950                         iter++;
1951
1952                 return iter->second.size();
1953         }
1954
1955         return 0;
1956 }
1957
1958 /** Read the contents of a file located by `fname' into a file_cache pointed at by `F'.
1959  */
1960 bool ServerConfig::ReadFile(file_cache &F, const char* fname)
1961 {
1962         if (!fname || !*fname)
1963                 return false;
1964
1965         FILE* file = NULL;
1966         char linebuf[MAXBUF];
1967
1968         F.clear();
1969
1970         if ((*fname != '/') && (*fname != '\\') && (!StartsWithWindowsDriveLetter(fname)))
1971         {
1972                 std::string::size_type pos;
1973                 std::string confpath = ServerInstance->ConfigFileName;
1974                 std::string newfile = fname;
1975
1976                 if (((pos = confpath.rfind("/"))) != std::string::npos)
1977                         newfile = confpath.substr(0, pos) + std::string("/") + fname;
1978                 else if (((pos = confpath.rfind("\\"))) != std::string::npos)
1979                         newfile = confpath.substr(0, pos) + std::string("\\") + fname;
1980
1981                 ServerInstance->Logs->Log("config", DEBUG, "Filename: %s", newfile.c_str());
1982
1983                 if (!FileExists(newfile.c_str()))
1984                         return false;
1985                 file =  fopen(newfile.c_str(), "r");
1986         }
1987         else
1988         {
1989                 if (!FileExists(fname))
1990                         return false;
1991                 file =  fopen(fname, "r");
1992         }
1993
1994         if (file)
1995         {
1996                 while (!feof(file))
1997                 {
1998                         if (fgets(linebuf, sizeof(linebuf), file))
1999                                 linebuf[strlen(linebuf)-1] = 0;
2000                         else
2001                                 *linebuf = 0;
2002
2003                         F.push_back(*linebuf ? linebuf : " ");
2004                 }
2005
2006                 fclose(file);
2007         }
2008         else
2009                 return false;
2010
2011         return true;
2012 }
2013
2014 bool ServerConfig::FileExists(const char* file)
2015 {
2016         struct stat sb;
2017         if (stat(file, &sb) == -1)
2018                 return false;
2019
2020         if ((sb.st_mode & S_IFDIR) > 0)
2021                 return false;
2022              
2023         FILE *input;
2024         if ((input = fopen (file, "r")) == NULL)
2025                 return false;
2026         else
2027         {
2028                 fclose(input);
2029                 return true;
2030         }
2031 }
2032
2033 char* ServerConfig::CleanFilename(char* name)
2034 {
2035         char* p = name + strlen(name);
2036         while ((p != name) && (*p != '/') && (*p != '\\')) p--;
2037         return (p != name ? ++p : p);
2038 }
2039
2040
2041 bool ServerConfig::DirValid(const char* dirandfile)
2042 {
2043 #ifdef WINDOWS
2044         return true;
2045 #else
2046
2047         char work[1024];
2048         char buffer[1024];
2049         char otherdir[1024];
2050         int p;
2051
2052         strlcpy(work, dirandfile, 1024);
2053         p = strlen(work);
2054
2055         // we just want the dir
2056         while (*work)
2057         {
2058                 if (work[p] == '/')
2059                 {
2060                         work[p] = '\0';
2061                         break;
2062                 }
2063
2064                 work[p--] = '\0';
2065         }
2066
2067         // Get the current working directory
2068         if (getcwd(buffer, 1024 ) == NULL )
2069                 return false;
2070
2071         if (chdir(work) == -1)
2072                 return false;
2073
2074         if (getcwd(otherdir, 1024 ) == NULL )
2075                 return false;
2076
2077         if (chdir(buffer) == -1)
2078                 return false;
2079
2080         size_t t = strlen(work);
2081
2082         if (strlen(otherdir) >= t)
2083         {
2084                 otherdir[t] = '\0';
2085                 if (!strcmp(otherdir,work))
2086                 {
2087                         return true;
2088                 }
2089
2090                 return false;
2091         }
2092         else
2093         {
2094                 return false;
2095         }
2096 #endif
2097 }
2098
2099 std::string ServerConfig::GetFullProgDir()
2100 {
2101         char buffer[PATH_MAX];
2102 #ifdef WINDOWS
2103         /* Windows has specific api calls to get the exe path that never fail.
2104          * For once, windows has something of use, compared to the POSIX code
2105          * for this, this is positively neato.
2106          */
2107         if (GetModuleFileName(NULL, buffer, MAX_PATH))
2108         {
2109                 std::string fullpath = buffer;
2110                 std::string::size_type n = fullpath.rfind("\\inspircd.exe");
2111                 return std::string(fullpath, 0, n);
2112         }
2113 #else
2114         // Get the current working directory
2115         if (getcwd(buffer, PATH_MAX))
2116         {
2117                 std::string remainder = this->argv[0];
2118
2119                 /* Does argv[0] start with /? its a full path, use it */
2120                 if (remainder[0] == '/')
2121                 {
2122                         std::string::size_type n = remainder.rfind("/inspircd");
2123                         return std::string(remainder, 0, n);
2124                 }
2125
2126                 std::string fullpath = std::string(buffer) + "/" + remainder;
2127                 std::string::size_type n = fullpath.rfind("/inspircd");
2128                 return std::string(fullpath, 0, n);
2129         }
2130 #endif
2131         return "/";
2132 }
2133
2134 InspIRCd* ServerConfig::GetInstance()
2135 {
2136         return ServerInstance;
2137 }
2138
2139 std::string ServerConfig::GetSID()
2140 {
2141         return sid;
2142 }
2143
2144 ValueItem::ValueItem(int value)
2145 {
2146         std::stringstream n;
2147         n << value;
2148         v = n.str();
2149 }
2150
2151 ValueItem::ValueItem(bool value)
2152 {
2153         std::stringstream n;
2154         n << value;
2155         v = n.str();
2156 }
2157
2158 ValueItem::ValueItem(const char* value)
2159 {
2160         v = value;
2161 }
2162
2163 void ValueItem::Set(const char* value)
2164 {
2165         v = value;
2166 }
2167
2168 void ValueItem::Set(int value)
2169 {
2170         std::stringstream n;
2171         n << value;
2172         v = n.str();
2173 }
2174
2175 int ValueItem::GetInteger()
2176 {
2177         if (v.empty())
2178                 return 0;
2179         return atoi(v.c_str());
2180 }
2181
2182 char* ValueItem::GetString()
2183 {
2184         return (char*)v.c_str();
2185 }
2186
2187 bool ValueItem::GetBool()
2188 {
2189         return (GetInteger() || v == "yes" || v == "true");
2190 }
2191
2192
2193
2194
2195 /*
2196  * XXX should this be in a class? -- w00t
2197  */
2198 bool InitTypes(ServerConfig* conf, const char*)
2199 {
2200         if (conf->opertypes.size())
2201         {
2202                 for (opertype_t::iterator n = conf->opertypes.begin(); n != conf->opertypes.end(); n++)
2203                 {
2204                         if (n->second)
2205                                 delete[] n->second;
2206                 }
2207         }
2208
2209         conf->opertypes.clear();
2210         return true;
2211 }
2212
2213 /*
2214  * XXX should this be in a class? -- w00t
2215  */
2216 bool InitClasses(ServerConfig* conf, const char*)
2217 {
2218         if (conf->operclass.size())
2219         {
2220                 for (operclass_t::iterator n = conf->operclass.begin(); n != conf->operclass.end(); n++)
2221                 {
2222                         if (n->second.commandlist)
2223                                 delete[] n->second.commandlist;
2224                         if (n->second.cmodelist)
2225                                 delete[] n->second.cmodelist;
2226                         if (n->second.umodelist)
2227                                 delete[] n->second.umodelist;
2228                 }
2229         }
2230
2231         conf->operclass.clear();
2232         return true;
2233 }
2234
2235 /*
2236  * XXX should this be in a class? -- w00t
2237  */
2238 bool DoType(ServerConfig* conf, const char*, char**, ValueList &values, int*)
2239 {
2240         const char* TypeName = values[0].GetString();
2241         const char* Classes = values[1].GetString();
2242
2243         conf->opertypes[TypeName] = strnewdup(Classes);
2244         return true;
2245 }
2246
2247 /*
2248  * XXX should this be in a class? -- w00t
2249  */
2250 bool DoClass(ServerConfig* conf, const char* tag, char**, ValueList &values, int*)
2251 {
2252         const char* ClassName = values[0].GetString();
2253         const char* CommandList = values[1].GetString();
2254         const char* UModeList = values[2].GetString();
2255         const char* CModeList = values[3].GetString();
2256
2257         for (const char* c = UModeList; *c; ++c)
2258         {
2259                 if ((*c < 'A' || *c > 'z') && *c != '*')
2260                 {
2261                         throw CoreException("Character " + std::string(1, *c) + " is not a valid mode in <class:usermodes>");
2262                 }
2263         }
2264         for (const char* c = CModeList; *c; ++c)
2265         {
2266                 if ((*c < 'A' || *c > 'z') && *c != '*')
2267                 {
2268                         throw CoreException("Character " + std::string(1, *c) + " is not a valid mode in <class:chanmodes>");
2269                 }
2270         }
2271
2272         conf->operclass[ClassName].commandlist = strnewdup(CommandList);
2273         conf->operclass[ClassName].umodelist = strnewdup(UModeList);
2274         conf->operclass[ClassName].cmodelist = strnewdup(CModeList);
2275         return true;
2276 }
2277
2278 /*
2279  * XXX should this be in a class? -- w00t
2280  */
2281 bool DoneClassesAndTypes(ServerConfig*, const char*)
2282 {
2283         return true;
2284 }
2285
2286
2287
2288 bool InitXLine(ServerConfig* conf, const char* tag)
2289 {
2290         return true;
2291 }
2292
2293 bool DoZLine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types)
2294 {
2295         const char* reason = values[0].GetString();
2296         const char* ipmask = values[1].GetString();
2297
2298         ZLine* zl = new ZLine(conf->GetInstance(), conf->GetInstance()->Time(), 0, "<Config>", reason, ipmask);
2299         if (!conf->GetInstance()->XLines->AddLine(zl, NULL))
2300                 delete zl;
2301
2302         return true;
2303 }
2304
2305 bool DoQLine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types)
2306 {
2307         const char* reason = values[0].GetString();
2308         const char* nick = values[1].GetString();
2309
2310         QLine* ql = new QLine(conf->GetInstance(), conf->GetInstance()->Time(), 0, "<Config>", reason, nick);
2311         if (!conf->GetInstance()->XLines->AddLine(ql, NULL))
2312                 delete ql;
2313
2314         return true;
2315 }
2316
2317 bool DoKLine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types)
2318 {
2319         const char* reason = values[0].GetString();
2320         const char* host = values[1].GetString();
2321
2322         XLineManager* xlm = conf->GetInstance()->XLines;
2323
2324         IdentHostPair ih = xlm->IdentSplit(host);
2325
2326         KLine* kl = new KLine(conf->GetInstance(), conf->GetInstance()->Time(), 0, "<Config>", reason, ih.first.c_str(), ih.second.c_str());
2327         if (!xlm->AddLine(kl, NULL))
2328                 delete kl;
2329         return true;
2330 }
2331
2332 bool DoELine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types)
2333 {
2334         const char* reason = values[0].GetString();
2335         const char* host = values[1].GetString();
2336
2337         XLineManager* xlm = conf->GetInstance()->XLines;
2338
2339         IdentHostPair ih = xlm->IdentSplit(host);
2340
2341         ELine* el = new ELine(conf->GetInstance(), conf->GetInstance()->Time(), 0, "<Config>", reason, ih.first.c_str(), ih.second.c_str());
2342         if (!xlm->AddLine(el, NULL))
2343                 delete el;
2344         return true;
2345 }
2346
2347 // this should probably be moved to configreader, but atm it relies on CheckELines above.
2348 bool DoneELine(ServerConfig* conf, const char* tag)
2349 {
2350         for (std::vector<User*>::const_iterator u2 = conf->GetInstance()->Users->local_users.begin(); u2 != conf->GetInstance()->Users->local_users.end(); u2++)
2351         {
2352                 User* u = (User*)(*u2);
2353                 u->exempt = false;
2354         }
2355
2356         conf->GetInstance()->XLines->CheckELines();
2357         return true;
2358 }
2359
2360 void ConfigReaderThread::Run()
2361 {
2362         /* TODO: TheUser may be invalid by the time we get here! Check its validity, or pass a UID would be better */
2363         ServerInstance->Config->Read(do_bail, TheUser);
2364         ServerInstance->Threads->Mutex(true);
2365         this->SetExitFlag();
2366         ServerInstance->Threads->Mutex(false);
2367 }
2368