]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules.cpp
Removed OnRawMode - this hasn't been called at all for awhile now, so it was complete...
[user/henk/code/inspircd.git] / src / modules.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 #include "configreader.h"
18 #include "users.h"
19 #include "modules.h"
20 #include "wildcard.h"
21 #include "mode.h"
22 #include "xline.h"
23 #include "socket.h"
24 #include "socketengine.h"
25 #include "command_parse.h"
26 #include "dns.h"
27 #include "inspircd.h"
28
29 // version is a simple class for holding a modules version number
30 Version::Version(int major, int minor, int revision, int build, int flags, int api_ver)
31 : Major(major), Minor(minor), Revision(revision), Build(build), Flags(flags), API(api_ver)
32 {
33 }
34
35 Request::Request(char* anydata, Module* src, Module* dst)
36 : data(anydata), source(src), dest(dst)
37 {
38         /* Ensure that because this module doesnt support ID strings, it doesnt break modules that do
39          * by passing them uninitialized pointers (could happen)
40          */
41         id = '\0';
42 }
43
44 Request::Request(Module* src, Module* dst, const char* idstr)
45 : id(idstr), source(src), dest(dst)
46 {
47 };
48
49 char* Request::GetData()
50 {
51         return this->data;
52 }
53
54 const char* Request::GetId()
55 {
56         return this->id;
57 }
58
59 Module* Request::GetSource()
60 {
61         return this->source;
62 }
63
64 Module* Request::GetDest()
65 {
66         return this->dest;
67 }
68
69 char* Request::Send()
70 {
71         if (this->dest)
72         {
73                 return dest->OnRequest(this);
74         }
75         else
76         {
77                 return NULL;
78         }
79 }
80
81 Event::Event(char* anydata, Module* src, const std::string &eventid) : data(anydata), source(src), id(eventid) { };
82
83 char* Event::GetData()
84 {
85         return (char*)this->data;
86 }
87
88 Module* Event::GetSource()
89 {
90         return this->source;
91 }
92
93 char* Event::Send(InspIRCd* ServerInstance)
94 {
95         FOREACH_MOD(I_OnEvent,OnEvent(this));
96         return NULL;
97 }
98
99 std::string Event::GetEventID()
100 {
101         return this->id;
102 }
103
104
105 // These declarations define the behavours of the base class Module (which does nothing at all)
106
107                 Module::Module(InspIRCd* Me) : ServerInstance(Me) { }
108                 Module::~Module() { }
109 void            Module::OnUserConnect(userrec* user) { }
110 void            Module::OnUserQuit(userrec* user, const std::string& message) { }
111 void            Module::OnUserDisconnect(userrec* user) { }
112 void            Module::OnUserJoin(userrec* user, chanrec* channel) { }
113 void            Module::OnPostJoin(userrec* user, chanrec* channel) { }
114 void            Module::OnUserPart(userrec* user, chanrec* channel, const std::string &partmessage) { }
115 void            Module::OnRehash(const std::string &parameter) { }
116 void            Module::OnServerRaw(std::string &raw, bool inbound, userrec* user) { }
117 int             Module::OnUserPreJoin(userrec* user, chanrec* chan, const char* cname, std::string &privs) { return 0; }
118 void            Module::OnMode(userrec* user, void* dest, int target_type, const std::string &text) { };
119 Version         Module::GetVersion() { return Version(1,0,0,0,VF_VENDOR,-1); }
120 void            Module::OnOper(userrec* user, const std::string &opertype) { };
121 void            Module::OnPostOper(userrec* user, const std::string &opertype) { };
122 void            Module::OnInfo(userrec* user) { };
123 void            Module::OnWhois(userrec* source, userrec* dest) { };
124 int             Module::OnUserPreInvite(userrec* source,userrec* dest,chanrec* channel) { return 0; };
125 int             Module::OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text,char status) { return 0; };
126 int             Module::OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text,char status) { return 0; };
127 int             Module::OnUserPreNick(userrec* user, const std::string &newnick) { return 0; };
128 void            Module::OnUserPostNick(userrec* user, const std::string &oldnick) { };
129 int             Module::OnAccessCheck(userrec* source,userrec* dest,chanrec* channel,int access_type) { return ACR_DEFAULT; };
130 void            Module::On005Numeric(std::string &output) { };
131 int             Module::OnKill(userrec* source, userrec* dest, const std::string &reason) { return 0; };
132 void            Module::OnLoadModule(Module* mod,const std::string &name) { };
133 void            Module::OnUnloadModule(Module* mod,const std::string &name) { };
134 void            Module::OnBackgroundTimer(time_t curtime) { };
135 int             Module::OnPreCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, bool validated, const std::string &original_line) { return 0; };
136 void            Module::OnPostCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, CmdResult result, const std::string &original_line) { };
137 bool            Module::OnCheckReady(userrec* user) { return true; };
138 void            Module::OnUserRegister(userrec* user) { };
139 int             Module::OnUserPreKick(userrec* source, userrec* user, chanrec* chan, const std::string &reason) { return 0; };
140 void            Module::OnUserKick(userrec* source, userrec* user, chanrec* chan, const std::string &reason) { };
141 int             Module::OnCheckInvite(userrec* user, chanrec* chan) { return 0; };
142 int             Module::OnCheckKey(userrec* user, chanrec* chan, const std::string &keygiven) { return 0; };
143 int             Module::OnCheckLimit(userrec* user, chanrec* chan) { return 0; };
144 int             Module::OnCheckBan(userrec* user, chanrec* chan) { return 0; };
145 int             Module::OnStats(char symbol, userrec* user, string_list &results) { return 0; };
146 int             Module::OnChangeLocalUserHost(userrec* user, const std::string &newhost) { return 0; };
147 int             Module::OnChangeLocalUserGECOS(userrec* user, const std::string &newhost) { return 0; };
148 int             Module::OnLocalTopicChange(userrec* user, chanrec* chan, const std::string &topic) { return 0; };
149 void            Module::OnEvent(Event* event) { return; };
150 char*           Module::OnRequest(Request* request) { return NULL; };
151 int             Module::OnOperCompare(const std::string &password, const std::string &input) { return 0; };
152 void            Module::OnGlobalOper(userrec* user) { };
153 void            Module::OnPostConnect(userrec* user) { };
154 int             Module::OnAddBan(userrec* source, chanrec* channel,const std::string &banmask) { return 0; };
155 int             Module::OnDelBan(userrec* source, chanrec* channel,const std::string &banmask) { return 0; };
156 void            Module::OnRawSocketAccept(int fd, const std::string &ip, int localport) { };
157 int             Module::OnRawSocketWrite(int fd, const char* buffer, int count) { return 0; };
158 void            Module::OnRawSocketClose(int fd) { };
159 int             Module::OnRawSocketRead(int fd, char* buffer, unsigned int count, int &readresult) { return 0; };
160 void            Module::OnUserMessage(userrec* user, void* dest, int target_type, const std::string &text, char status) { };
161 void            Module::OnUserNotice(userrec* user, void* dest, int target_type, const std::string &text, char status) { };
162 void            Module::OnRemoteKill(userrec* source, userrec* dest, const std::string &reason) { };
163 void            Module::OnUserInvite(userrec* source,userrec* dest,chanrec* channel) { };
164 void            Module::OnPostLocalTopicChange(userrec* user, chanrec* chan, const std::string &topic) { };
165 void            Module::OnGetServerDescription(const std::string &servername,std::string &description) { };
166 void            Module::OnSyncUser(userrec* user, Module* proto, void* opaque) { };
167 void            Module::OnSyncChannel(chanrec* chan, Module* proto, void* opaque) { };
168 void            Module::ProtoSendMode(void* opaque, int target_type, void* target, const std::string &modeline) { };
169 void            Module::OnSyncChannelMetaData(chanrec* chan, Module* proto,void* opaque, const std::string &extname) { };
170 void            Module::OnSyncUserMetaData(userrec* user, Module* proto,void* opaque, const std::string &extname) { };
171 void            Module::OnSyncOtherMetaData(Module* proto, void* opaque) { };
172 void            Module::OnDecodeMetaData(int target_type, void* target, const std::string &extname, const std::string &extdata) { };
173 void            Module::ProtoSendMetaData(void* opaque, int target_type, void* target, const std::string &extname, const std::string &extdata) { };
174 void            Module::OnWallops(userrec* user, const std::string &text) { };
175 void            Module::OnChangeHost(userrec* user, const std::string &newhost) { };
176 void            Module::OnChangeName(userrec* user, const std::string &gecos) { };
177 void            Module::OnAddGLine(long duration, userrec* source, const std::string &reason, const std::string &hostmask) { };
178 void            Module::OnAddZLine(long duration, userrec* source, const std::string &reason, const std::string &ipmask) { };
179 void            Module::OnAddKLine(long duration, userrec* source, const std::string &reason, const std::string &hostmask) { };
180 void            Module::OnAddQLine(long duration, userrec* source, const std::string &reason, const std::string &nickmask) { };
181 void            Module::OnAddELine(long duration, userrec* source, const std::string &reason, const std::string &hostmask) { };
182 void            Module::OnDelGLine(userrec* source, const std::string &hostmask) { };
183 void            Module::OnDelZLine(userrec* source, const std::string &ipmask) { };
184 void            Module::OnDelKLine(userrec* source, const std::string &hostmask) { };
185 void            Module::OnDelQLine(userrec* source, const std::string &nickmask) { };
186 void            Module::OnDelELine(userrec* source, const std::string &hostmask) { };
187 void            Module::OnCleanup(int target_type, void* item) { };
188 void            Module::Implements(char* Implements) { for (int j = 0; j < 255; j++) Implements[j] = 0; };
189 void            Module::OnChannelDelete(chanrec* chan) { };
190 Priority        Module::Prioritize() { return PRIORITY_DONTCARE; }
191 void            Module::OnSetAway(userrec* user) { };
192 void            Module::OnCancelAway(userrec* user) { };
193 int             Module::OnUserList(userrec* user, chanrec* Ptr) { return 0; };
194 int             Module::OnWhoisLine(userrec* user, userrec* dest, int &numeric, std::string &text) { return 0; };
195
196 long InspIRCd::PriorityAfter(const std::string &modulename)
197 {
198         for (unsigned int j = 0; j < this->Config->module_names.size(); j++)
199         {
200                 if (this->Config->module_names[j] == modulename)
201                 {
202                         return ((j << 8) | PRIORITY_AFTER);
203                 }
204         }
205         return PRIORITY_DONTCARE;
206 }
207
208 long InspIRCd::PriorityBefore(const std::string &modulename)
209 {
210         for (unsigned int j = 0; j < this->Config->module_names.size(); j++)
211         {
212                 if (this->Config->module_names[j] == modulename)
213                 {
214                         return ((j << 8) | PRIORITY_BEFORE);
215                 }
216         }
217         return PRIORITY_DONTCARE;
218 }
219
220 bool InspIRCd::PublishFeature(const std::string &FeatureName, Module* Mod)
221 {
222         if (Features.find(FeatureName) == Features.end())
223         {
224                 Features[FeatureName] = Mod;
225                 return true;
226         }
227         return false;
228 }
229
230 bool InspIRCd::UnpublishFeature(const std::string &FeatureName)
231 {
232         featurelist::iterator iter = Features.find(FeatureName);
233         
234         if (iter == Features.end())
235                 return false;
236
237         Features.erase(iter);
238         return true;
239 }
240
241 Module* InspIRCd::FindFeature(const std::string &FeatureName)
242 {
243         featurelist::iterator iter = Features.find(FeatureName);
244
245         if (iter == Features.end())
246                 return NULL;
247
248         return iter->second;
249 }
250
251 const std::string& InspIRCd::GetModuleName(Module* m)
252 {
253         static std::string nothing = ""; /* Prevent compiler warning */
254         for (int i = 0; i <= this->GetModuleCount(); i++)
255         {
256                 if (this->modules[i] == m)
257                 {
258                         return this->Config->module_names[i];
259                 }
260         }
261         return nothing; /* As above */
262 }
263
264 void InspIRCd::RehashServer()
265 {
266         this->WriteOpers("*** Rehashing config file");
267         this->Config->Read(false,NULL);
268 }
269
270 /* This is ugly, yes, but hash_map's arent designed to be
271  * addressed in this manner, and this is a bit of a kludge.
272  * Luckily its a specialist function and rarely used by
273  * many modules (in fact, it was specially created to make
274  * m_safelist possible, initially).
275  */
276
277 chanrec* InspIRCd::GetChannelIndex(long index)
278 {
279         int target = 0;
280         for (chan_hash::iterator n = this->chanlist.begin(); n != this->chanlist.end(); n++, target++)
281         {
282                 if (index == target)
283                         return n->second;
284         }
285         return NULL;
286 }
287
288 bool InspIRCd::MatchText(const std::string &sliteral, const std::string &spattern)
289 {
290         return match(sliteral.c_str(),spattern.c_str());
291 }
292
293 bool InspIRCd::CallCommandHandler(const std::string &commandname, const char** parameters, int pcnt, userrec* user)
294 {
295         return this->Parser->CallHandler(commandname,parameters,pcnt,user);
296 }
297
298 bool InspIRCd::IsValidModuleCommand(const std::string &commandname, int pcnt, userrec* user)
299 {
300         return this->Parser->IsValidCommand(commandname, pcnt, user);
301 }
302
303 void InspIRCd::AddCommand(command_t *f)
304 {
305         if (!this->Parser->CreateCommand(f))
306         {
307                 ModuleException err("Command "+std::string(f->command)+" already exists.");
308                 throw (err);
309         }
310 }
311
312 void InspIRCd::SendMode(const char** parameters, int pcnt, userrec *user)
313 {
314         this->Modes->Process(parameters,pcnt,user,true);
315 }
316
317 void InspIRCd::DumpText(userrec* User, const std::string &LinePrefix, stringstream &TextStream)
318 {
319         std::string CompleteLine = LinePrefix;
320         std::string Word = "";
321         while (TextStream >> Word)
322         {
323                 if (CompleteLine.length() + Word.length() + 3 > 500)
324                 {
325                         User->WriteServ(CompleteLine);
326                         CompleteLine = LinePrefix;
327                 }
328                 CompleteLine = CompleteLine + Word + " ";
329         }
330         User->WriteServ(CompleteLine);
331 }
332
333 userrec* InspIRCd::FindDescriptor(int socket)
334 {
335         return reinterpret_cast<userrec*>(this->SE->GetRef(socket));
336 }
337
338 bool InspIRCd::AddMode(ModeHandler* mh, const unsigned char mode)
339 {
340         return this->Modes->AddMode(mh,mode);
341 }
342
343 bool InspIRCd::AddModeWatcher(ModeWatcher* mw)
344 {
345         return this->Modes->AddModeWatcher(mw);
346 }
347
348 bool InspIRCd::DelModeWatcher(ModeWatcher* mw)
349 {
350         return this->Modes->DelModeWatcher(mw);
351 }
352
353 bool InspIRCd::AddResolver(Resolver* r)
354 {
355         return this->Res->AddResolverClass(r);
356 }
357
358 bool InspIRCd::UserToPseudo(userrec* user, const std::string &message)
359 {
360         unsigned int old_fd = user->GetFd();
361         user->Write("ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,message.c_str());
362         user->FlushWriteBuf();
363         user->ClearBuffer();
364         user->SetFd(FD_MAGIC_NUMBER);
365
366         if (find(local_users.begin(),local_users.end(),user) != local_users.end())
367         {
368                 local_users.erase(find(local_users.begin(),local_users.end(),user));
369         }
370
371         this->SE->DelFd(user);
372         shutdown(old_fd,2);
373         close(old_fd);
374         return true;
375 }
376
377 bool InspIRCd::PseudoToUser(userrec* alive, userrec* zombie, const std::string &message)
378 {
379         zombie->SetFd(alive->GetFd());
380         FOREACH_MOD_I(this,I_OnUserQuit,OnUserQuit(alive,message));
381         alive->SetFd(FD_MAGIC_NUMBER);
382         alive->FlushWriteBuf();
383         alive->ClearBuffer();
384         // save these for later
385         std::string oldnick = alive->nick;
386         std::string oldhost = alive->host;
387         std::string oldident = alive->ident;
388         userrec::QuitUser(this,alive,message.c_str());
389         if (find(local_users.begin(),local_users.end(),alive) != local_users.end())
390         {
391                 local_users.erase(find(local_users.begin(),local_users.end(),alive));
392         }
393         // Fix by brain - cant write the user until their fd table entry is updated
394         zombie->Write(":%s!%s@%s NICK %s",oldnick.c_str(),oldident.c_str(),oldhost.c_str(),zombie->nick);
395         for (std::vector<ucrec*>::const_iterator i = zombie->chans.begin(); i != zombie->chans.end(); i++)
396         {
397                 if (((ucrec*)(*i))->channel != NULL)
398                 {
399                                 chanrec* Ptr = ((ucrec*)(*i))->channel;
400                                 zombie->WriteFrom(zombie,"JOIN %s",Ptr->name);
401                                 if (Ptr->topicset)
402                                 {
403                                         zombie->WriteServ("332 %s %s :%s", zombie->nick, Ptr->name, Ptr->topic);
404                                         zombie->WriteServ("333 %s %s %s %d", zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset);
405                                 }
406                                 Ptr->UserList(zombie);
407                                 zombie->WriteServ("366 %s %s :End of /NAMES list.", zombie->nick, Ptr->name);
408                 }
409         }
410         if ((find(local_users.begin(),local_users.end(),zombie) == local_users.end()) && (zombie->GetFd() != FD_MAGIC_NUMBER))
411                 local_users.push_back(zombie);
412         return true;
413 }
414
415 void InspIRCd::AddGLine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask)
416 {
417         XLines->add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
418         XLines->apply_lines(APPLY_GLINES);
419 }
420
421 void InspIRCd::AddQLine(long duration, const std::string &source, const std::string &reason, const std::string &nickname)
422 {
423         XLines->add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str());
424         XLines->apply_lines(APPLY_QLINES);
425 }
426
427 void InspIRCd::AddZLine(long duration, const std::string &source, const std::string &reason, const std::string &ipaddr)
428 {
429         XLines->add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str());
430         XLines->apply_lines(APPLY_ZLINES);
431 }
432
433 void InspIRCd::AddKLine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask)
434 {
435         XLines->add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
436         XLines->apply_lines(APPLY_KLINES);
437 }
438
439 void InspIRCd::AddELine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask)
440 {
441         XLines->add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
442 }
443
444 bool InspIRCd::DelGLine(const std::string &hostmask)
445 {
446         return XLines->del_gline(hostmask.c_str());
447 }
448
449 bool InspIRCd::DelQLine(const std::string &nickname)
450 {
451         return XLines->del_qline(nickname.c_str());
452 }
453
454 bool InspIRCd::DelZLine(const std::string &ipaddr)
455 {
456         return XLines->del_zline(ipaddr.c_str());
457 }
458
459 bool InspIRCd::DelKLine(const std::string &hostmask)
460 {
461         return XLines->del_kline(hostmask.c_str());
462 }
463
464 bool InspIRCd::DelELine(const std::string &hostmask)
465 {
466         return XLines->del_eline(hostmask.c_str());
467 }
468
469 /*
470  * XXX why on *earth* is this in modules.cpp...? I think
471  * perhaps we need a server.cpp for InspIRCd:: stuff where possible. -- w00t
472  */
473 bool InspIRCd::IsValidMask(const std::string &mask)
474 {
475         char* dest = (char*)mask.c_str();
476         if (strchr(dest,'!')==0)
477                 return false;
478         if (strchr(dest,'@')==0)
479                 return false;
480         for (char* i = dest; *i; i++)
481                 if (*i < 32)
482                         return false;
483         for (char* i = dest; *i; i++)
484                 if (*i > 126)
485                         return false;
486         unsigned int c = 0;
487         for (char* i = dest; *i; i++)
488                 if (*i == '!')
489                         c++;
490         if (c>1)
491                 return false;
492         c = 0;
493         for (char* i = dest; *i; i++)
494                 if (*i == '@')
495                         c++;
496         if (c>1)
497                 return false;
498
499         return true;
500 }
501
502 Module* InspIRCd::FindModule(const std::string &name)
503 {
504         for (int i = 0; i <= this->GetModuleCount(); i++)
505         {
506                 if (this->Config->module_names[i] == name)
507                 {
508                         return this->modules[i];
509                 }
510         }
511         return NULL;
512 }
513
514 ConfigReader::ConfigReader(InspIRCd* Instance) : ServerInstance(Instance)
515 {
516         /* Is there any reason to load the entire config file again here?
517          * it's needed if they specify another config file, but using the
518          * default one we can just use the global config data - pre-parsed!
519          */
520         this->errorlog = new std::ostringstream(std::stringstream::in | std::stringstream::out);
521         
522         this->data = &ServerInstance->Config->config_data;
523         this->privatehash = false;
524 }
525
526
527 ConfigReader::~ConfigReader()
528 {
529         if (this->errorlog)
530                 DELETE(this->errorlog);
531         if(this->privatehash)
532                 DELETE(this->data);
533 }
534
535
536 ConfigReader::ConfigReader(InspIRCd* Instance, const std::string &filename) : ServerInstance(Instance)
537 {
538         ServerInstance->Config->ClearStack();
539
540         this->data = new ConfigDataHash;
541         this->privatehash = true;
542         this->errorlog = new std::ostringstream(std::stringstream::in | std::stringstream::out);
543         this->readerror = ServerInstance->Config->LoadConf(*this->data, filename, *this->errorlog);
544         if (!this->readerror)
545                 this->error = CONF_FILE_NOT_FOUND;
546 };
547
548 std::string ConfigReader::ReadValue(const std::string &tag, const std::string &name, int index)
549 {
550         /* Don't need to strlcpy() tag and name anymore, ReadConf() takes const char* */ 
551         std::string result;
552         
553         if (!ServerInstance->Config->ConfValue(*this->data, tag, name, index, result))
554         {
555                 this->error = CONF_VALUE_NOT_FOUND;
556                 return "";
557         }
558         
559         return result;
560 }
561
562 bool ConfigReader::ReadFlag(const std::string &tag, const std::string &name, int index)
563 {
564         return ServerInstance->Config->ConfValueBool(*this->data, tag, name, index);
565 }
566
567 long ConfigReader::ReadInteger(const std::string &tag, const std::string &name, int index, bool needs_unsigned)
568 {
569         int result;
570         
571         if(!ServerInstance->Config->ConfValueInteger(*this->data, tag, name, index, result))
572         {
573                 this->error = CONF_VALUE_NOT_FOUND;
574                 return 0;
575         }
576         
577         if ((needs_unsigned) && (result < 0))
578         {
579                 this->error = CONF_NOT_UNSIGNED;
580                 return 0;
581         }
582         
583         return result;
584 }
585
586 long ConfigReader::GetError()
587 {
588         long olderr = this->error;
589         this->error = 0;
590         return olderr;
591 }
592
593 void ConfigReader::DumpErrors(bool bail, userrec* user)
594 {
595         /* XXX - Duplicated code */
596         
597         if (bail)
598         {
599                 printf("There were errors in your configuration:\n%s", this->errorlog->str().c_str());
600                 InspIRCd::Exit(ERROR);
601         }
602         else
603         {
604                 std::string errors = this->errorlog->str();
605                 std::string::size_type start;
606                 unsigned int prefixlen;
607                 
608                 start = 0;
609                 /* ":ServerInstance->Config->ServerName NOTICE user->nick :" */
610                 prefixlen = strlen(ServerInstance->Config->ServerName) + strlen(user->nick) + 11;
611         
612                 if (user)
613                 {
614                         user->WriteServ("NOTICE %s :There were errors in the configuration file:",user->nick);
615                         
616                         while(start < errors.length())
617                         {
618                                 user->WriteServ("NOTICE %s :%s",user->nick, errors.substr(start, 510 - prefixlen).c_str());
619                                 start += 510 - prefixlen;
620                         }
621                 }
622                 else
623                 {
624                         ServerInstance->WriteOpers("There were errors in the configuration file:");
625                         
626                         while(start < errors.length())
627                         {
628                                 ServerInstance->WriteOpers(errors.substr(start, 360).c_str());
629                                 start += 360;
630                         }
631                 }
632
633                 return;
634         }
635 }
636
637
638 int ConfigReader::Enumerate(const std::string &tag)
639 {
640         return ServerInstance->Config->ConfValueEnum(*this->data, tag);
641 }
642
643 int ConfigReader::EnumerateValues(const std::string &tag, int index)
644 {
645         return ServerInstance->Config->ConfVarEnum(*this->data, tag, index);
646 }
647
648 bool ConfigReader::Verify()
649 {
650         return this->readerror;
651 }
652
653
654 FileReader::FileReader(InspIRCd* Instance, const std::string &filename) : ServerInstance(Instance)
655 {
656         file_cache c;
657         ServerInstance->Config->ReadFile(c,filename.c_str());
658         this->fc = c;
659         this->CalcSize();
660 }
661
662 FileReader::FileReader(InspIRCd* Instance) : ServerInstance(Instance)
663 {
664 }
665
666 std::string FileReader::Contents()
667 {
668         std::string x = "";
669         for (file_cache::iterator a = this->fc.begin(); a != this->fc.end(); a++)
670         {
671                 x.append(*a);
672                 x.append("\r\n");
673         }
674         return x;
675 }
676
677 unsigned long FileReader::ContentSize()
678 {
679         return this->contentsize;
680 }
681
682 void FileReader::CalcSize()
683 {
684         unsigned long n = 0;
685         for (file_cache::iterator a = this->fc.begin(); a != this->fc.end(); a++)
686                 n += (a->length() + 2);
687         this->contentsize = n;
688 }
689
690 void FileReader::LoadFile(const std::string &filename)
691 {
692         file_cache c;
693         ServerInstance->Config->ReadFile(c,filename.c_str());
694         this->fc = c;
695         this->CalcSize();
696 }
697
698
699 FileReader::~FileReader()
700 {
701 }
702
703 bool FileReader::Exists()
704 {
705         return (!(fc.size() == 0));
706 }
707
708 std::string FileReader::GetLine(int x)
709 {
710         if ((x<0) || ((unsigned)x>fc.size()))
711                 return "";
712         return fc[x];
713 }
714
715 int FileReader::FileSize()
716 {
717         return fc.size();
718 }
719
720