]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules.cpp
4eed4d781a010f3e7d641c7eed84d8dd14471eab
[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 "inspircd_config.h"
18 #include "inspircd.h"
19 #include "configreader.h"
20 #include <unistd.h>
21 #include <sys/errno.h>
22 #include <time.h>
23 #include <string>
24 #include <map>
25 #include <sstream>
26 #include <vector>
27 #include <deque>
28 #include "users.h"
29 #include "ctables.h"
30 #include "globals.h"
31 #include "modules.h"
32 #include "dynamic.h"
33 #include "wildcard.h"
34 #include "message.h"
35 #include "mode.h"
36 #include "xline.h"
37 #include "commands.h"
38 #include "inspstring.h"
39 #include "helperfuncs.h"
40 #include "hashcomp.h"
41 #include "socket.h"
42 #include "socketengine.h"
43 #include "typedefs.h"
44 #include "modules.h"
45 #include "command_parse.h"
46 #include "dns.h"
47
48 extern InspIRCd* ServerInstance;
49 extern int MODCOUNT;
50 extern ModuleList modules;
51 extern FactoryList factory;
52 extern std::vector<userrec*> local_users;
53 extern time_t TIME;
54 extern user_hash clientlist;
55 extern chan_hash chanlist;
56 extern command_table cmdlist;
57
58 class Server;
59
60 featurelist Features;
61
62 // version is a simple class for holding a modules version number
63
64 Version::Version(int major, int minor, int revision, int build, int flags)
65 : Major(major), Minor(minor), Revision(revision), Build(build), Flags(flags)
66 {
67 }
68
69 // admin is a simple class for holding a server's administrative info
70
71 Admin::Admin(std::string name, std::string email, std::string nick)
72 : Name(name), Email(email), Nick(nick)
73 {
74 }
75
76 Request::Request(char* anydata, Module* src, Module* dst)
77 : data(anydata), source(src), dest(dst)
78 {
79         /* Ensure that because this module doesnt support ID strings, it doesnt break modules that do
80          * by passing them uninitialized pointers (could happen)
81          */
82         id = '\0';
83 }
84
85 Request::Request(Module* src, Module* dst, const char* idstr)
86 : id(idstr), source(src), dest(dst)
87 {
88 };
89
90 char* Request::GetData()
91 {
92         return this->data;
93 }
94
95 const char* Request::GetId()
96 {
97         return this->id;
98 }
99
100 Module* Request::GetSource()
101 {
102         return this->source;
103 }
104
105 Module* Request::GetDest()
106 {
107         return this->dest;
108 }
109
110 char* Request::Send()
111 {
112         if (this->dest)
113         {
114                 return dest->OnRequest(this);
115         }
116         else
117         {
118                 return NULL;
119         }
120 }
121
122 Event::Event(char* anydata, Module* src, const std::string &eventid) : data(anydata), source(src), id(eventid) { };
123
124 char* Event::GetData()
125 {
126         return (char*)this->data;
127 }
128
129 Module* Event::GetSource()
130 {
131         return this->source;
132 }
133
134 char* Event::Send()
135 {
136         FOREACH_MOD(I_OnEvent,OnEvent(this));
137         return NULL;
138 }
139
140 std::string Event::GetEventID()
141 {
142         return this->id;
143 }
144
145
146 // These declarations define the behavours of the base class Module (which does nothing at all)
147
148                 Module::Module(Server* Me) { }
149                 Module::~Module() { }
150 void            Module::OnUserConnect(userrec* user) { }
151 void            Module::OnUserQuit(userrec* user, const std::string& message) { }
152 void            Module::OnUserDisconnect(userrec* user) { }
153 void            Module::OnUserJoin(userrec* user, chanrec* channel) { }
154 void            Module::OnUserPart(userrec* user, chanrec* channel, const std::string &partmessage) { }
155 void            Module::OnRehash(const std::string &parameter) { }
156 void            Module::OnServerRaw(std::string &raw, bool inbound, userrec* user) { }
157 int             Module::OnUserPreJoin(userrec* user, chanrec* chan, const char* cname) { return 0; }
158 void            Module::OnMode(userrec* user, void* dest, int target_type, const std::string &text) { };
159 Version         Module::GetVersion() { return Version(1,0,0,0,VF_VENDOR); }
160 void            Module::OnOper(userrec* user, const std::string &opertype) { };
161 void            Module::OnPostOper(userrec* user, const std::string &opertype) { };
162 void            Module::OnInfo(userrec* user) { };
163 void            Module::OnWhois(userrec* source, userrec* dest) { };
164 int             Module::OnUserPreInvite(userrec* source,userrec* dest,chanrec* channel) { return 0; };
165 int             Module::OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text,char status) { return 0; };
166 int             Module::OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text,char status) { return 0; };
167 int             Module::OnUserPreNick(userrec* user, const std::string &newnick) { return 0; };
168 void            Module::OnUserPostNick(userrec* user, const std::string &oldnick) { };
169 int             Module::OnAccessCheck(userrec* source,userrec* dest,chanrec* channel,int access_type) { return ACR_DEFAULT; };
170 void            Module::On005Numeric(std::string &output) { };
171 int             Module::OnKill(userrec* source, userrec* dest, const std::string &reason) { return 0; };
172 void            Module::OnLoadModule(Module* mod,const std::string &name) { };
173 void            Module::OnUnloadModule(Module* mod,const std::string &name) { };
174 void            Module::OnBackgroundTimer(time_t curtime) { };
175 int             Module::OnPreCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, bool validated) { return 0; };
176 bool            Module::OnCheckReady(userrec* user) { return true; };
177 void            Module::OnUserRegister(userrec* user) { };
178 int             Module::OnUserPreKick(userrec* source, userrec* user, chanrec* chan, const std::string &reason) { return 0; };
179 void            Module::OnUserKick(userrec* source, userrec* user, chanrec* chan, const std::string &reason) { };
180 int             Module::OnRawMode(userrec* user, chanrec* chan, char mode, const std::string &param, bool adding, int pcnt) { return 0; };
181 int             Module::OnCheckInvite(userrec* user, chanrec* chan) { return 0; };
182 int             Module::OnCheckKey(userrec* user, chanrec* chan, const std::string &keygiven) { return 0; };
183 int             Module::OnCheckLimit(userrec* user, chanrec* chan) { return 0; };
184 int             Module::OnCheckBan(userrec* user, chanrec* chan) { return 0; };
185 int             Module::OnStats(char symbol, userrec* user, string_list &results) { return 0; };
186 int             Module::OnChangeLocalUserHost(userrec* user, const std::string &newhost) { return 0; };
187 int             Module::OnChangeLocalUserGECOS(userrec* user, const std::string &newhost) { return 0; };
188 int             Module::OnLocalTopicChange(userrec* user, chanrec* chan, const std::string &topic) { return 0; };
189 void            Module::OnEvent(Event* event) { return; };
190 char*           Module::OnRequest(Request* request) { return NULL; };
191 int             Module::OnOperCompare(const std::string &password, const std::string &input) { return 0; };
192 void            Module::OnGlobalOper(userrec* user) { };
193 void            Module::OnGlobalConnect(userrec* user) { };
194 int             Module::OnAddBan(userrec* source, chanrec* channel,const std::string &banmask) { return 0; };
195 int             Module::OnDelBan(userrec* source, chanrec* channel,const std::string &banmask) { return 0; };
196 void            Module::OnRawSocketAccept(int fd, const std::string &ip, int localport) { };
197 int             Module::OnRawSocketWrite(int fd, const char* buffer, int count) { return 0; };
198 void            Module::OnRawSocketClose(int fd) { };
199 int             Module::OnRawSocketRead(int fd, char* buffer, unsigned int count, int &readresult) { return 0; };
200 void            Module::OnUserMessage(userrec* user, void* dest, int target_type, const std::string &text, char status) { };
201 void            Module::OnUserNotice(userrec* user, void* dest, int target_type, const std::string &text, char status) { };
202 void            Module::OnRemoteKill(userrec* source, userrec* dest, const std::string &reason) { };
203 void            Module::OnUserInvite(userrec* source,userrec* dest,chanrec* channel) { };
204 void            Module::OnPostLocalTopicChange(userrec* user, chanrec* chan, const std::string &topic) { };
205 void            Module::OnGetServerDescription(const std::string &servername,std::string &description) { };
206 void            Module::OnSyncUser(userrec* user, Module* proto, void* opaque) { };
207 void            Module::OnSyncChannel(chanrec* chan, Module* proto, void* opaque) { };
208 void            Module::ProtoSendMode(void* opaque, int target_type, void* target, const std::string &modeline) { };
209 void            Module::OnSyncChannelMetaData(chanrec* chan, Module* proto,void* opaque, const std::string &extname) { };
210 void            Module::OnSyncUserMetaData(userrec* user, Module* proto,void* opaque, const std::string &extname) { };
211 void            Module::OnSyncOtherMetaData(Module* proto, void* opaque) { };
212 void            Module::OnDecodeMetaData(int target_type, void* target, const std::string &extname, const std::string &extdata) { };
213 void            Module::ProtoSendMetaData(void* opaque, int target_type, void* target, const std::string &extname, const std::string &extdata) { };
214 void            Module::OnWallops(userrec* user, const std::string &text) { };
215 void            Module::OnChangeHost(userrec* user, const std::string &newhost) { };
216 void            Module::OnChangeName(userrec* user, const std::string &gecos) { };
217 void            Module::OnAddGLine(long duration, userrec* source, const std::string &reason, const std::string &hostmask) { };
218 void            Module::OnAddZLine(long duration, userrec* source, const std::string &reason, const std::string &ipmask) { };
219 void            Module::OnAddKLine(long duration, userrec* source, const std::string &reason, const std::string &hostmask) { };
220 void            Module::OnAddQLine(long duration, userrec* source, const std::string &reason, const std::string &nickmask) { };
221 void            Module::OnAddELine(long duration, userrec* source, const std::string &reason, const std::string &hostmask) { };
222 void            Module::OnDelGLine(userrec* source, const std::string &hostmask) { };
223 void            Module::OnDelZLine(userrec* source, const std::string &ipmask) { };
224 void            Module::OnDelKLine(userrec* source, const std::string &hostmask) { };
225 void            Module::OnDelQLine(userrec* source, const std::string &nickmask) { };
226 void            Module::OnDelELine(userrec* source, const std::string &hostmask) { };
227 void            Module::OnCleanup(int target_type, void* item) { };
228 void            Module::Implements(char* Implements) { for (int j = 0; j < 255; j++) Implements[j] = 0; };
229 void            Module::OnChannelDelete(chanrec* chan) { };
230 Priority        Module::Prioritize() { return PRIORITY_DONTCARE; }
231 void            Module::OnSetAway(userrec* user) { };
232 void            Module::OnCancelAway(userrec* user) { };
233
234 /* server is a wrapper class that provides methods to all of the C-style
235  * exports in the core
236  */
237
238 Server::Server()
239 {
240 }
241
242 Server::~Server()
243 {
244 }
245
246 void Server::AddSocket(InspSocket* sock)
247 {
248         ServerInstance->module_sockets.push_back(sock);
249 }
250
251 void Server::RemoveSocket(InspSocket* sock)
252 {
253         for (std::vector<InspSocket*>::iterator a = ServerInstance->module_sockets.begin(); a < ServerInstance->module_sockets.end(); a++)
254         {
255                 InspSocket* s = (InspSocket*)*a;
256                 if (s == sock)
257                         s->MarkAsClosed();
258         }
259 }
260
261 long Server::PriorityAfter(const std::string &modulename)
262 {
263         for (unsigned int j = 0; j < ServerInstance->Config->module_names.size(); j++)
264         {
265                 if (ServerInstance->Config->module_names[j] == modulename)
266                 {
267                         return ((j << 8) | PRIORITY_AFTER);
268                 }
269         }
270         return PRIORITY_DONTCARE;
271 }
272
273 long Server::PriorityBefore(const std::string &modulename)
274 {
275         for (unsigned int j = 0; j < ServerInstance->Config->module_names.size(); j++)
276         {
277                 if (ServerInstance->Config->module_names[j] == modulename)
278                 {
279                         return ((j << 8) | PRIORITY_BEFORE);
280                 }
281         }
282         return PRIORITY_DONTCARE;
283 }
284
285 bool Server::PublishFeature(const std::string &FeatureName, Module* Mod)
286 {
287         if (Features.find(FeatureName) == Features.end())
288         {
289                 Features[FeatureName] = Mod;
290                 return true;
291         }
292         return false;
293 }
294
295 bool Server::UnpublishFeature(const std::string &FeatureName)
296 {
297         featurelist::iterator iter = Features.find(FeatureName);
298         
299         if (iter == Features.end())
300                 return false;
301
302         Features.erase(iter);
303         return true;
304 }
305
306 Module* Server::FindFeature(const std::string &FeatureName)
307 {
308         featurelist::iterator iter = Features.find(FeatureName);
309
310         if (iter == Features.end())
311                 return NULL;
312
313         return iter->second;
314 }
315
316 const std::string& Server::GetModuleName(Module* m)
317 {
318         static std::string nothing = ""; /* Prevent compiler warning */
319         for (int i = 0; i <= MODCOUNT; i++)
320         {
321                 if (modules[i] == m)
322                 {
323                         return ServerInstance->Config->module_names[i];
324                 }
325         }
326         return nothing; /* As above */
327 }
328
329 void Server::RehashServer()
330 {
331         WriteOpers("*** Rehashing config file");
332         ServerInstance->Config->Read(false,NULL);
333 }
334
335 ServerConfig* Server::GetConfig()
336 {
337         return ServerInstance->Config;
338 }
339
340 std::string Server::GetVersion()
341 {
342         return ServerInstance->GetVersionString();
343 }
344
345 void Server::DelSocket(InspSocket* sock)
346 {
347         for (std::vector<InspSocket*>::iterator a = ServerInstance->module_sockets.begin(); a < ServerInstance->module_sockets.end(); a++)
348         {
349                 if (*a == sock)
350                 {
351                         ServerInstance->module_sockets.erase(a);
352                         return;
353                 }
354         }
355 }
356
357 long Server::GetChannelCount()
358 {
359         return (long)chanlist.size();
360 }
361
362 /* This is ugly, yes, but hash_map's arent designed to be
363  * addressed in this manner, and this is a bit of a kludge.
364  * Luckily its a specialist function and rarely used by
365  * many modules (in fact, it was specially created to make
366  * m_safelist possible, initially).
367  */
368
369 chanrec* Server::GetChannelIndex(long index)
370 {
371         int target = 0;
372         for (chan_hash::iterator n = chanlist.begin(); n != chanlist.end(); n++, target++)
373         {
374                 if (index == target)
375                         return n->second;
376         }
377         return NULL;
378 }
379
380 void Server::AddTimer(InspTimer* T)
381 {
382         ::AddTimer(T);
383 }
384
385 void Server::SendOpers(const std::string &s)
386 {
387         WriteOpers("%s",s.c_str());
388 }
389
390 bool Server::MatchText(const std::string &sliteral, const std::string &spattern)
391 {
392         return match(sliteral.c_str(),spattern.c_str());
393 }
394
395 void Server::SendToModeMask(const std::string &modes, int flags, const std::string &text)
396 {
397         WriteMode(modes.c_str(),flags,"%s",text.c_str());
398 }
399
400 bool Server::IsUlined(const std::string &server)
401 {
402         return is_uline(server.c_str());
403 }
404
405 bool Server::CallCommandHandler(const std::string &commandname, const char** parameters, int pcnt, userrec* user)
406 {
407         return ServerInstance->Parser->CallHandler(commandname,parameters,pcnt,user);
408 }
409
410 bool Server::IsValidModuleCommand(const std::string &commandname, int pcnt, userrec* user)
411 {
412         return ServerInstance->Parser->IsValidCommand(commandname, pcnt, user);
413 }
414
415 void Server::Log(int level, const std::string &s)
416 {
417         log(level,"%s",s.c_str());
418 }
419
420 void Server::AddCommand(command_t *f)
421 {
422         if (!ServerInstance->Parser->CreateCommand(f))
423         {
424                 ModuleException err("Command "+std::string(f->command)+" already exists.");
425                 throw (err);
426         }
427 }
428
429 void Server::SendMode(const char** parameters, int pcnt, userrec *user)
430 {
431         ServerInstance->ModeGrok->Process(parameters,pcnt,user,true);
432 }
433
434 void Server::DumpText(userrec* User, const std::string &LinePrefix, stringstream &TextStream)
435 {
436         std::string CompleteLine = LinePrefix;
437         std::string Word = "";
438         while (TextStream >> Word)
439         {
440                 if (CompleteLine.length() + Word.length() + 3 > 500)
441                 {
442                         User->WriteServ(CompleteLine);
443                         CompleteLine = LinePrefix;
444                 }
445                 CompleteLine = CompleteLine + Word + " ";
446         }
447         User->WriteServ(CompleteLine);
448 }
449
450 bool Server::IsNick(const std::string &nick)
451 {
452         return (isnick(nick.c_str()) != 0);
453 }
454
455 userrec* Server::FindNick(const std::string &nick)
456 {
457         return Find(nick);
458 }
459
460 userrec* Server::FindDescriptor(int socket)
461 {
462         return (socket < 65536 ? ServerInstance->fd_ref_table[socket] : NULL);
463 }
464
465 chanrec* Server::FindChannel(const std::string &channel)
466 {
467         return FindChan(channel.c_str());
468 }
469
470 std::string Server::ChanMode(userrec* User, chanrec* Chan)
471 {
472         return cmode(User,Chan);
473 }
474
475 std::string Server::GetServerName()
476 {
477         return ServerInstance->Config->ServerName;
478 }
479
480 std::string Server::GetNetworkName()
481 {
482         return ServerInstance->Config->Network;
483 }
484
485 std::string Server::GetServerDescription()
486 {
487         return ServerInstance->Config->ServerDesc;
488 }
489
490 Admin Server::GetAdmin()
491 {
492         return Admin(ServerInstance->Config->AdminName,ServerInstance->Config->AdminEmail,ServerInstance->Config->AdminNick);
493 }
494
495
496 bool Server::AddMode(ModeHandler* mh, const unsigned char mode)
497 {
498         return ServerInstance->ModeGrok->AddMode(mh,mode);
499 }
500
501 bool Server::AddModeWatcher(ModeWatcher* mw)
502 {
503         return ServerInstance->ModeGrok->AddModeWatcher(mw);
504 }
505
506 bool Server::DelModeWatcher(ModeWatcher* mw)
507 {
508         return ServerInstance->ModeGrok->DelModeWatcher(mw);
509 }
510
511 bool Server::AddResolver(Resolver* r)
512 {
513         return ServerInstance->Res->AddResolverClass(r);
514 }
515
516 int Server::CountUsers(chanrec* c)
517 {
518         return usercount(c);
519 }
520
521 bool Server::UserToPseudo(userrec* user, const std::string &message)
522 {
523         unsigned int old_fd = user->fd;
524         user->Write("ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,message.c_str());
525         user->FlushWriteBuf();
526         user->ClearBuffer();
527         user->fd = FD_MAGIC_NUMBER;
528
529         if (find(local_users.begin(),local_users.end(),user) != local_users.end())
530         {
531                 local_users.erase(find(local_users.begin(),local_users.end(),user));
532                 log(DEBUG,"Delete local user");
533         }
534
535         ServerInstance->SE->DelFd(old_fd);
536         shutdown(old_fd,2);
537         close(old_fd);
538         return true;
539 }
540
541 bool Server::PseudoToUser(userrec* alive, userrec* zombie, const std::string &message)
542 {
543         log(DEBUG,"PseudoToUser");
544         zombie->fd = alive->fd;
545         FOREACH_MOD(I_OnUserQuit,OnUserQuit(alive,message));
546         alive->fd = FD_MAGIC_NUMBER;
547         alive->FlushWriteBuf();
548         alive->ClearBuffer();
549         // save these for later
550         std::string oldnick = alive->nick;
551         std::string oldhost = alive->host;
552         std::string oldident = alive->ident;
553         userrec::QuitUser(alive,message.c_str());
554         if (find(local_users.begin(),local_users.end(),alive) != local_users.end())
555         {
556                 local_users.erase(find(local_users.begin(),local_users.end(),alive));
557                 log(DEBUG,"Delete local user");
558         }
559         // Fix by brain - cant write the user until their fd table entry is updated
560         ServerInstance->fd_ref_table[zombie->fd] = zombie;
561         zombie->Write(":%s!%s@%s NICK %s",oldnick.c_str(),oldident.c_str(),oldhost.c_str(),zombie->nick);
562         for (std::vector<ucrec*>::const_iterator i = zombie->chans.begin(); i != zombie->chans.end(); i++)
563         {
564                 if (((ucrec*)(*i))->channel != NULL)
565                 {
566                                 chanrec* Ptr = ((ucrec*)(*i))->channel;
567                                 zombie->WriteFrom(zombie,"JOIN %s",Ptr->name);
568                                 if (Ptr->topicset)
569                                 {
570                                         zombie->WriteServ("332 %s %s :%s", zombie->nick, Ptr->name, Ptr->topic);
571                                         zombie->WriteServ("333 %s %s %s %d", zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset);
572                                 }
573                                 userlist(zombie,Ptr);
574                                 zombie->WriteServ("366 %s %s :End of /NAMES list.", zombie->nick, Ptr->name);
575                 }
576         }
577         if ((find(local_users.begin(),local_users.end(),zombie) == local_users.end()) && (zombie->fd != FD_MAGIC_NUMBER))
578                 local_users.push_back(zombie);
579
580         return true;
581 }
582
583 void Server::AddGLine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask)
584 {
585         add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
586         apply_lines(APPLY_GLINES);
587 }
588
589 void Server::AddQLine(long duration, const std::string &source, const std::string &reason, const std::string &nickname)
590 {
591         add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str());
592         apply_lines(APPLY_QLINES);
593 }
594
595 void Server::AddZLine(long duration, const std::string &source, const std::string &reason, const std::string &ipaddr)
596 {
597         add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str());
598         apply_lines(APPLY_ZLINES);
599 }
600
601 void Server::AddKLine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask)
602 {
603         add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
604         apply_lines(APPLY_KLINES);
605 }
606
607 void Server::AddELine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask)
608 {
609         add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
610 }
611
612 bool Server::DelGLine(const std::string &hostmask)
613 {
614         return del_gline(hostmask.c_str());
615 }
616
617 bool Server::DelQLine(const std::string &nickname)
618 {
619         return del_qline(nickname.c_str());
620 }
621
622 bool Server::DelZLine(const std::string &ipaddr)
623 {
624         return del_zline(ipaddr.c_str());
625 }
626
627 bool Server::DelKLine(const std::string &hostmask)
628 {
629         return del_kline(hostmask.c_str());
630 }
631
632 bool Server::DelELine(const std::string &hostmask)
633 {
634         return del_eline(hostmask.c_str());
635 }
636
637 long Server::CalcDuration(const std::string &delta)
638 {
639         return duration(delta.c_str());
640 }
641
642 /*
643  * XXX why on *earth* is this in modules.cpp...? I think
644  * perhaps we need a server.cpp for Server:: stuff where possible. -- w00t
645  */
646 bool Server::IsValidMask(const std::string &mask)
647 {
648         char* dest = (char*)mask.c_str();
649         if (strchr(dest,'!')==0)
650                 return false;
651         if (strchr(dest,'@')==0)
652                 return false;
653         for (char* i = dest; *i; i++)
654                 if (*i < 32)
655                         return false;
656         for (char* i = dest; *i; i++)
657                 if (*i > 126)
658                         return false;
659         unsigned int c = 0;
660         for (char* i = dest; *i; i++)
661                 if (*i == '!')
662                         c++;
663         if (c>1)
664                 return false;
665         c = 0;
666         for (char* i = dest; *i; i++)
667                 if (*i == '@')
668                         c++;
669         if (c>1)
670                 return false;
671
672         return true;
673 }
674
675 Module* Server::FindModule(const std::string &name)
676 {
677         for (int i = 0; i <= MODCOUNT; i++)
678         {
679                 if (ServerInstance->Config->module_names[i] == name)
680                 {
681                         return modules[i];
682                 }
683         }
684         return NULL;
685 }
686
687 ConfigReader::ConfigReader()
688 {
689         // ServerInstance->Config->ClearStack();
690         
691         /* Is there any reason to load the entire config file again here?
692          * it's needed if they specify another config file, but using the
693          * default one we can just use the global config data - pre-parsed!
694          */
695         //~ this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
696         this->errorlog = new std::ostringstream(std::stringstream::in | std::stringstream::out);
697         
698         //~ this->readerror = ServerInstance->Config->LoadConf(CONFIG_FILE, this->cache,this->errorlog);
699         //~ if (!this->readerror)
700                 //~ this->error = CONF_FILE_NOT_FOUND;
701         
702         this->data = &ServerInstance->Config->config_data;
703         this->privatehash = false;
704 }
705
706
707 ConfigReader::~ConfigReader()
708 {
709         //~ if (this->cache)
710                 //~ delete this->cache;
711         if (this->errorlog)
712                 DELETE(this->errorlog);
713         if(this->privatehash)
714                 DELETE(this->data);
715 }
716
717
718 ConfigReader::ConfigReader(const std::string &filename)
719 {
720         ServerInstance->Config->ClearStack();
721         
722         this->data = new ConfigDataHash;
723         this->privatehash = true;
724         this->errorlog = new std::ostringstream(std::stringstream::in | std::stringstream::out);
725         this->readerror = ServerInstance->Config->LoadConf(*this->data, filename, *this->errorlog);
726         if (!this->readerror)
727                 this->error = CONF_FILE_NOT_FOUND;
728 };
729
730 std::string ConfigReader::ReadValue(const std::string &tag, const std::string &name, int index)
731 {
732         /* Don't need to strlcpy() tag and name anymore, ReadConf() takes const char* */ 
733         std::string result;
734         
735         if (!ServerInstance->Config->ConfValue(*this->data, tag, name, index, result))
736         {
737                 this->error = CONF_VALUE_NOT_FOUND;
738                 return "";
739         }
740         
741         return result;
742 }
743
744 bool ConfigReader::ReadFlag(const std::string &tag, const std::string &name, int index)
745 {
746         return ServerInstance->Config->ConfValueBool(*this->data, tag, name, index);
747 }
748
749 long ConfigReader::ReadInteger(const std::string &tag, const std::string &name, int index, bool needs_unsigned)
750 {
751         int result;
752         
753         if(!ServerInstance->Config->ConfValueInteger(*this->data, tag, name, index, result))
754         {
755                 this->error = CONF_VALUE_NOT_FOUND;
756                 return 0;
757         }
758         
759         if ((needs_unsigned) && (result < 0))
760         {
761                 this->error = CONF_NOT_UNSIGNED;
762                 return 0;
763         }
764         
765         return result;
766 }
767
768 long ConfigReader::GetError()
769 {
770         long olderr = this->error;
771         this->error = 0;
772         return olderr;
773 }
774
775 void ConfigReader::DumpErrors(bool bail, userrec* user)
776 {
777         /* XXX - Duplicated code */
778         
779         if (bail)
780         {
781                 printf("There were errors in your configuration:\n%s", this->errorlog->str().c_str());
782                 Exit(0);
783         }
784         else
785         {
786                 std::string errors = this->errorlog->str();
787                 std::string::size_type start;
788                 unsigned int prefixlen;
789                 
790                 start = 0;
791                 /* ":ServerInstance->Config->ServerName NOTICE user->nick :" */
792                 prefixlen = strlen(ServerInstance->Config->ServerName) + strlen(user->nick) + 11;
793         
794                 if (user)
795                 {
796                         user->WriteServ("NOTICE %s :There were errors in the configuration file:",user->nick);
797                         
798                         while(start < errors.length())
799                         {
800                                 user->WriteServ("NOTICE %s :%s",user->nick, errors.substr(start, 510 - prefixlen).c_str());
801                                 start += 510 - prefixlen;
802                         }
803                 }
804                 else
805                 {
806                         WriteOpers("There were errors in the configuration file:");
807                         
808                         while(start < errors.length())
809                         {
810                                 WriteOpers(errors.substr(start, 360).c_str());
811                                 start += 360;
812                         }
813                 }
814
815                 return;
816         }
817 }
818
819
820 int ConfigReader::Enumerate(const std::string &tag)
821 {
822         return ServerInstance->Config->ConfValueEnum(*this->data, tag);
823 }
824
825 int ConfigReader::EnumerateValues(const std::string &tag, int index)
826 {
827         return ServerInstance->Config->ConfVarEnum(*this->data, tag, index);
828 }
829
830 bool ConfigReader::Verify()
831 {
832         return this->readerror;
833 }
834
835
836 FileReader::FileReader(const std::string &filename)
837 {
838         file_cache c;
839         ServerInstance->Config->ReadFile(c,filename.c_str());
840         this->fc = c;
841         this->CalcSize();
842 }
843
844 FileReader::FileReader()
845 {
846 }
847
848 std::string FileReader::Contents()
849 {
850         std::string x = "";
851         for (file_cache::iterator a = this->fc.begin(); a != this->fc.end(); a++)
852         {
853                 x.append(*a);
854                 x.append("\r\n");
855         }
856         return x;
857 }
858
859 unsigned long FileReader::ContentSize()
860 {
861         return this->contentsize;
862 }
863
864 void FileReader::CalcSize()
865 {
866         unsigned long n = 0;
867         for (file_cache::iterator a = this->fc.begin(); a != this->fc.end(); a++)
868                 n += (a->length() + 2);
869         this->contentsize = n;
870 }
871
872 void FileReader::LoadFile(const std::string &filename)
873 {
874         file_cache c;
875         ServerInstance->Config->ReadFile(c,filename.c_str());
876         this->fc = c;
877         this->CalcSize();
878 }
879
880
881 FileReader::~FileReader()
882 {
883 }
884
885 bool FileReader::Exists()
886 {
887         return (!(fc.size() == 0));
888 }
889
890 std::string FileReader::GetLine(int x)
891 {
892         if ((x<0) || ((unsigned)x>fc.size()))
893                 return "";
894         return fc[x];
895 }
896
897 int FileReader::FileSize()
898 {
899         return fc.size();
900 }
901
902
903 std::vector<Module*> modules(255);
904 std::vector<ircd_module*> factory(255);
905
906 int MODCOUNT  = -1;