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