]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree.cpp
Wrong number of params to one of the functions
[user/henk/code/inspircd.git] / src / modules / m_spanningtree.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  Inspire is copyright (C) 2002-2005 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 using namespace std;
18
19 #include <stdio.h>
20 #include <vector>
21 #include <deque>
22 #include "globals.h"
23 #include "inspircd_config.h"
24 #ifdef GCC3
25 #include <ext/hash_map>
26 #else
27 #include <hash_map>
28 #endif
29 #include "users.h"
30 #include "channels.h"
31 #include "modules.h"
32 #include "socket.h"
33 #include "helperfuncs.h"
34 #include "inspircd.h"
35 #include "inspstring.h"
36 #include "hashcomp.h"
37 #include "message.h"
38
39 #ifdef GCC3
40 #define nspace __gnu_cxx
41 #else
42 #define nspace std
43 #endif
44
45 class ModuleSpanningTree;
46 static ModuleSpanningTree* TreeProtocolModule;
47
48 extern std::vector<Module*> modules;
49 extern std::vector<ircd_module*> factory;
50 extern int MODCOUNT;
51
52 enum ServerState { LISTENER, CONNECTING, WAIT_AUTH_1, WAIT_AUTH_2, CONNECTED };
53
54 typedef nspace::hash_map<std::string, userrec*, nspace::hash<string>, irc::StrHashComp> user_hash;
55 typedef nspace::hash_map<std::string, chanrec*, nspace::hash<string>, irc::StrHashComp> chan_hash;
56
57 extern user_hash clientlist;
58 extern chan_hash chanlist;
59
60 class TreeServer;
61 class TreeSocket;
62
63 bool DoOneToOne(std::string prefix, std::string command, std::deque<std::string> params, std::string target);
64 bool DoOneToAllButSender(std::string prefix, std::string command, std::deque<std::string> params, std::string omit);
65 bool DoOneToMany(std::string prefix, std::string command, std::deque<std::string> params);
66 bool DoOneToAllButSenderRaw(std::string data,std::string omit, std::string prefix,std::string command,std::deque<std::string> params);
67 void ReadConfiguration(bool rebind);
68
69 class TreeServer
70 {
71         TreeServer* Parent;
72         std::vector<TreeServer*> Children;
73         std::string ServerName;
74         std::string ServerDesc;
75         std::string VersionString;
76         int UserCount;
77         int OperCount;
78         TreeSocket* Socket;     // for directly connected servers this points at the socket object
79         time_t NextPing;
80         bool LastPingWasGood;
81         
82  public:
83
84         TreeServer()
85         {
86                 Parent = NULL;
87                 ServerName = "";
88                 ServerDesc = "";
89                 VersionString = "";
90                 UserCount = OperCount = 0;
91                 VersionString = GetVersionString();
92         }
93
94         TreeServer(std::string Name, std::string Desc) : ServerName(Name), ServerDesc(Desc)
95         {
96                 Parent = NULL;
97                 VersionString = "";
98                 UserCount = OperCount = 0;
99                 VersionString = GetVersionString();
100         }
101
102         TreeServer(std::string Name, std::string Desc, TreeServer* Above, TreeSocket* Sock) : Parent(Above), ServerName(Name), ServerDesc(Desc), Socket(Sock)
103         {
104                 VersionString = "";
105                 UserCount = OperCount = 0;
106                 this->SetNextPingTime(time(NULL) + 60);
107                 this->SetPingFlag();
108         }
109
110         std::string GetName()
111         {
112                 return this->ServerName;
113         }
114
115         std::string GetDesc()
116         {
117                 return this->ServerDesc;
118         }
119
120         std::string GetVersion()
121         {
122                 return this->VersionString;
123         }
124
125         void SetNextPingTime(time_t t)
126         {
127                 this->NextPing = t;
128                 LastPingWasGood = false;
129         }
130
131         time_t NextPingTime()
132         {
133                 return this->NextPing;
134         }
135
136         bool AnsweredLastPing()
137         {
138                 return LastPingWasGood;
139         }
140
141         void SetPingFlag()
142         {
143                 LastPingWasGood = true;
144         }
145
146         int GetUserCount()
147         {
148                 return this->UserCount;
149         }
150
151         int GetOperCount()
152         {
153                 return this->OperCount;
154         }
155
156         TreeSocket* GetSocket()
157         {
158                 return this->Socket;
159         }
160
161         TreeServer* GetParent()
162         {
163                 return this->Parent;
164         }
165
166         void SetVersion(std::string Version)
167         {
168                 VersionString = Version;
169         }
170
171         unsigned int ChildCount()
172         {
173                 return Children.size();
174         }
175
176         TreeServer* GetChild(unsigned int n)
177         {
178                 if (n < Children.size())
179                 {
180                         return Children[n];
181                 }
182                 else
183                 {
184                         return NULL;
185                 }
186         }
187
188         void AddChild(TreeServer* Child)
189         {
190                 Children.push_back(Child);
191         }
192
193         bool DelChild(TreeServer* Child)
194         {
195                 for (std::vector<TreeServer*>::iterator a = Children.begin(); a < Children.end(); a++)
196                 {
197                         if (*a == Child)
198                         {
199                                 Children.erase(a);
200                                 return true;
201                         }
202                 }
203                 return false;
204         }
205
206         // removes child nodes of this node, and of that node, etc etc
207         bool Tidy()
208         {
209                 bool stillchildren = true;
210                 while (stillchildren)
211                 {
212                         stillchildren = false;
213                         for (std::vector<TreeServer*>::iterator a = Children.begin(); a < Children.end(); a++)
214                         {
215                                 TreeServer* s = (TreeServer*)*a;
216                                 s->Tidy();
217                                 Children.erase(a);
218                                 delete s;
219                                 stillchildren = true;
220                                 break;
221                         }
222                 }
223                 return true;
224         }
225 };
226
227 class Link
228 {
229  public:
230          std::string Name;
231          std::string IPAddr;
232          int Port;
233          std::string SendPass;
234          std::string RecvPass;
235          unsigned long AutoConnect;
236          time_t NextConnectTime;
237 };
238
239 /* $ModDesc: Povides a spanning tree server link protocol */
240
241 Server *Srv;
242 ConfigReader *Conf;
243 TreeServer *TreeRoot;
244 std::vector<Link> LinkBlocks;
245
246 TreeServer* RouteEnumerate(TreeServer* Current, std::string ServerName)
247 {
248         if (Current->GetName() == ServerName)
249                 return Current;
250         for (unsigned int q = 0; q < Current->ChildCount(); q++)
251         {
252                 TreeServer* found = RouteEnumerate(Current->GetChild(q),ServerName);
253                 if (found)
254                 {
255                         return found;
256                 }
257         }
258         return NULL;
259 }
260
261 // Returns the locally connected server we must route a
262 // message through to reach server 'ServerName'. This
263 // only applies to one-to-one and not one-to-many routing.
264 TreeServer* BestRouteTo(std::string ServerName)
265 {
266         if (ServerName.c_str() == TreeRoot->GetName())
267         {
268                 return NULL;
269         }
270         // first, find the server by recursively walking the tree
271         TreeServer* Found = RouteEnumerate(TreeRoot,ServerName);
272         // did we find it? If not, they did something wrong, abort.
273         if (!Found)
274         {
275                 return NULL;
276         }
277         else
278         {
279                 // The server exists, follow its parent nodes until
280                 // the parent of the current is 'TreeRoot', we know
281                 // then that this is a directly-connected server.
282                 while ((Found) && (Found->GetParent() != TreeRoot))
283                 {
284                         Found = Found->GetParent();
285                 }
286                 return Found;
287         }
288 }
289
290 bool LookForServer(TreeServer* Current, std::string ServerName)
291 {
292         if (ServerName == Current->GetName())
293                 return true;
294         for (unsigned int q = 0; q < Current->ChildCount(); q++)
295         {
296                 if (LookForServer(Current->GetChild(q),ServerName))
297                         return true;
298         }
299         return false;
300 }
301
302 TreeServer* Found;
303
304 void RFindServer(TreeServer* Current, std::string ServerName)
305 {
306         if ((ServerName == Current->GetName()) && (!Found))
307         {
308                 Found = Current;
309                 return;
310         }
311         if (!Found)
312         {
313                 for (unsigned int q = 0; q < Current->ChildCount(); q++)
314                 {
315                         if (!Found)
316                                 RFindServer(Current->GetChild(q),ServerName);
317                 }
318         }
319         return;
320 }
321
322 void RFindServerMask(TreeServer* Current, std::string ServerName)
323 {
324         if (Srv->MatchText(Current->GetName(),ServerName) && (!Found))
325         {
326                 Found = Current;
327                 return;
328         }
329         if (!Found)
330         {
331                 for (unsigned int q = 0; q < Current->ChildCount(); q++)
332                 {
333                         if (!Found)
334                                 RFindServerMask(Current->GetChild(q),ServerName);
335                 }
336         }
337 }
338
339 TreeServer* FindServer(std::string ServerName)
340 {
341         Found = NULL;
342         RFindServer(TreeRoot,ServerName);
343         return Found;
344 }
345
346 TreeServer* FindServerMask(std::string ServerName)
347 {
348         Found = NULL;
349         RFindServerMask(TreeRoot,ServerName);
350         return Found;
351 }
352
353 bool IsServer(std::string ServerName)
354 {
355         return LookForServer(TreeRoot,ServerName);
356 }
357
358 class TreeSocket : public InspSocket
359 {
360         std::string myhost;
361         std::string in_buffer;
362         ServerState LinkState;
363         std::string InboundServerName;
364         std::string InboundDescription;
365         int num_lost_users;
366         int num_lost_servers;
367         time_t NextPing;
368         bool LastPingWasGood;
369         
370  public:
371
372         TreeSocket(std::string host, int port, bool listening, unsigned long maxtime)
373                 : InspSocket(host, port, listening, maxtime)
374         {
375                 myhost = host;
376                 this->LinkState = LISTENER;
377         }
378
379         TreeSocket(std::string host, int port, bool listening, unsigned long maxtime, std::string ServerName)
380                 : InspSocket(host, port, listening, maxtime)
381         {
382                 myhost = ServerName;
383                 this->LinkState = CONNECTING;
384         }
385
386         TreeSocket(int newfd, char* ip)
387                 : InspSocket(newfd, ip)
388         {
389                 this->LinkState = WAIT_AUTH_1;
390         }
391         
392         virtual bool OnConnected()
393         {
394                 if (this->LinkState == CONNECTING)
395                 {
396                         Srv->SendOpers("*** Connection to "+myhost+"["+this->GetIP()+"] established.");
397                         // we should send our details here.
398                         // if the other side is satisfied, they send theirs.
399                         // we do not need to change state here.
400                         for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
401                         {
402                                 if (x->Name == this->myhost)
403                                 {
404                                         // found who we're supposed to be connecting to, send the neccessary gubbins.
405                                         this->WriteLine("SERVER "+Srv->GetServerName()+" "+x->SendPass+" 0 :"+Srv->GetServerDescription());
406                                         return true;
407                                 }
408                         }
409                 }
410                 return true;
411         }
412         
413         virtual void OnError(InspSocketError e)
414         {
415         }
416
417         virtual int OnDisconnect()
418         {
419                 return true;
420         }
421
422         // recursively send the server tree with distances as hops
423         void SendServers(TreeServer* Current, TreeServer* s, int hops)
424         {
425                 char command[1024];
426                 for (unsigned int q = 0; q < Current->ChildCount(); q++)
427                 {
428                         TreeServer* recursive_server = Current->GetChild(q);
429                         if (recursive_server != s)
430                         {
431                                 // :source.server SERVER server.name hops :Description
432                                 snprintf(command,1024,":%s SERVER %s * %d :%s",Current->GetName().c_str(),recursive_server->GetName().c_str(),hops,recursive_server->GetDesc().c_str());
433                                 this->WriteLine(command);
434                                 this->WriteLine(":"+recursive_server->GetName()+" VERSION :"+recursive_server->GetVersion());
435                                 // down to next level
436                                 this->SendServers(recursive_server, s, hops+1);
437                         }
438                 }
439         }
440
441         void SquitServer(TreeServer* Current)
442         {
443                 // recursively squit the servers attached to 'Current'
444                 for (unsigned int q = 0; q < Current->ChildCount(); q++)
445                 {
446                         TreeServer* recursive_server = Current->GetChild(q);
447                         this->SquitServer(recursive_server);
448                 }
449                 // Now we've whacked the kids, whack self
450                 num_lost_servers++;
451                 bool quittingpeople = true;
452                 while (quittingpeople)
453                 {
454                         quittingpeople = false;
455                         for (user_hash::iterator u = clientlist.begin(); u != clientlist.end(); u++)
456                         {
457                                 if (!strcasecmp(u->second->server,Current->GetName().c_str()))
458                                 {
459                                         Srv->QuitUser(u->second,Current->GetName()+" "+std::string(Srv->GetServerName()));
460                                         num_lost_users++;
461                                         quittingpeople = true;
462                                         break;
463                                 }
464                         }
465                 }
466         }
467
468         void Squit(TreeServer* Current,std::string reason)
469         {
470                 if (Current)
471                 {
472                         std::deque<std::string> params;
473                         params.push_back(Current->GetName());
474                         params.push_back(":"+reason);
475                         DoOneToAllButSender(Current->GetParent()->GetName(),"SQUIT",params,Current->GetName());
476                         if (Current->GetParent() == TreeRoot)
477                         {
478                                 Srv->SendOpers("Server \002"+Current->GetName()+"\002 split: "+reason);
479                         }
480                         else
481                         {
482                                 Srv->SendOpers("Server \002"+Current->GetName()+"\002 split from server \002"+Current->GetParent()->GetName()+"\002 with reason: "+reason);
483                         }
484                         num_lost_servers = 0;
485                         num_lost_users = 0;
486                         SquitServer(Current);
487                         Current->Tidy();
488                         Current->GetParent()->DelChild(Current);
489                         delete Current;
490                         WriteOpers("Netsplit complete, lost \002%d\002 users on \002%d\002 servers.", num_lost_users, num_lost_servers);
491                 }
492                 else
493                 {
494                         log(DEFAULT,"Squit from unknown server");
495                 }
496         }
497
498         bool ForceMode(std::string source, std::deque<std::string> params)
499         {
500                 userrec* who = new userrec;
501                 who->fd = FD_MAGIC_NUMBER;
502                 if (params.size() < 2)
503                         return true;
504                 char* modelist[255];
505                 for (unsigned int q = 0; q < params.size(); q++)
506                 {
507                         modelist[q] = (char*)params[q].c_str();
508                 }
509                 Srv->SendMode(modelist,params.size(),who);
510                 DoOneToAllButSender(source,"FMODE",params,source);
511                 delete who;
512                 return true;
513         }
514
515         bool ForceTopic(std::string source, std::deque<std::string> params)
516         {
517                 // FTOPIC %s %lu %s :%s
518                 if (params.size() != 4)
519                         return true;
520                 std::string channel = params[0];
521                 time_t ts = atoi(params[1].c_str());
522                 std::string setby = params[2];
523                 std::string topic = params[3];
524
525                 chanrec* c = Srv->FindChannel(channel);
526                 if (c)
527                 {
528                         if ((ts >= c->topicset) || (!*c->topic))
529                         {
530                                 strlcpy(c->topic,topic.c_str(),MAXTOPIC);
531                                 strlcpy(c->setby,setby.c_str(),NICKMAX);
532                                 c->topicset = ts;
533                                 WriteChannelWithServ((char*)source.c_str(), c, "TOPIC %s :%s", c->name, c->topic);
534                         }
535                         
536                 }
537                 
538                 // all done, send it on its way
539                 params[3] = ":" + params[3];
540                 DoOneToAllButSender(source,"FTOPIC",params,source);
541
542                 return true;
543         }
544
545         bool ForceJoin(std::string source, std::deque<std::string> params)
546         {
547                 if (params.size() < 3)
548                         return true;
549
550                 char first[MAXBUF];
551                 char modestring[MAXBUF];
552                 char* mode_users[127];
553                 mode_users[0] = first;
554                 mode_users[1] = modestring;
555                 strcpy(mode_users[1],"+");
556                 unsigned int modectr = 2;
557                 
558                 userrec* who = NULL;
559                 std::string channel = params[0];
560                 time_t TS = atoi(params[1].c_str());
561                 char* key = "";
562                 
563                 chanrec* chan = Srv->FindChannel(channel);
564                 if (chan)
565                 {
566                         key = chan->key;
567                 }
568                 strlcpy(mode_users[0],channel.c_str(),MAXBUF);
569
570                 // default is a high value, which if we dont have this
571                 // channel will let the other side apply their modes.
572                 time_t ourTS = time(NULL)+20;
573                 chanrec* us = Srv->FindChannel(channel);
574                 if (us)
575                 {
576                         ourTS = us->age;
577                 }
578
579                 log(DEBUG,"FJOIN detected, our TS=%lu, their TS=%lu",ourTS,TS);
580
581                 // do this first, so our mode reversals are correctly received by other servers
582                 // if there is a TS collision.
583                 DoOneToAllButSender(source,"FJOIN",params,source);
584                 
585                 for (unsigned int usernum = 2; usernum < params.size(); usernum++)
586                 {
587                         // process one channel at a time, applying modes.
588                         char* usr = (char*)params[usernum].c_str();
589                         char permissions = *usr;
590                         switch (permissions)
591                         {
592                                 case '@':
593                                         usr++;
594                                         mode_users[modectr++] = usr;
595                                         strlcat(modestring,"o",MAXBUF);
596                                 break;
597                                 case '%':
598                                         usr++;
599                                         mode_users[modectr++] = usr;
600                                         strlcat(modestring,"h",MAXBUF);
601                                 break;
602                                 case '+':
603                                         usr++;
604                                         mode_users[modectr++] = usr;
605                                         strlcat(modestring,"v",MAXBUF);
606                                 break;
607                         }
608                         who = Srv->FindNick(usr);
609                         if (who)
610                         {
611                                 Srv->JoinUserToChannel(who,channel,key);
612                                 if (modectr >= (MAXMODES-1))
613                                 {
614                                         // theres a mode for this user. push them onto the mode queue, and flush it
615                                         // if there are more than MAXMODES to go.
616                                         if (ourTS >= TS)
617                                         {
618                                                 log(DEBUG,"Our our channel newer than theirs, accepting their modes");
619                                                 Srv->SendMode(mode_users,modectr,who);
620                                         }
621                                         else
622                                         {
623                                                 log(DEBUG,"Their channel newer than ours, bouncing their modes");
624                                                 // bouncy bouncy!
625                                                 std::deque<std::string> params;
626                                                 // modes are now being UNSET...
627                                                 *mode_users[1] = '-';
628                                                 for (unsigned int x = 0; x < modectr; x++)
629                                                 {
630                                                         params.push_back(mode_users[x]);
631                                                 }
632                                                 // tell everyone to bounce the modes. bad modes, bad!
633                                                 DoOneToMany(Srv->GetServerName(),"FMODE",params);
634                                         }
635                                         strcpy(mode_users[1],"+");
636                                         modectr = 2;
637                                 }
638                         }
639                 }
640                 // there werent enough modes built up to flush it during FJOIN,
641                 // or, there are a number left over. flush them out.
642                 if ((modectr > 2) && (who))
643                 {
644                         if (ourTS >= TS)
645                         {
646                                 log(DEBUG,"Our our channel newer than theirs, accepting their modes");
647                                 Srv->SendMode(mode_users,modectr,who);
648                         }
649                         else
650                         {
651                                 log(DEBUG,"Their channel newer than ours, bouncing their modes");
652                                 std::deque<std::string> params;
653                                 *mode_users[1] = '-';
654                                 for (unsigned int x = 0; x < modectr; x++)
655                                 {
656                                         params.push_back(mode_users[x]);
657                                 }
658                                 DoOneToMany(Srv->GetServerName(),"FMODE",params);
659                         }
660                 }
661                 return true;
662         }
663
664         bool IntroduceClient(std::string source, std::deque<std::string> params)
665         {
666                 if (params.size() < 8)
667                         return true;
668                 // NICK age nick host dhost ident +modes ip :gecos
669                 //       0   1    2    3      4     5    6   7
670                 std::string nick = params[1];
671                 std::string host = params[2];
672                 std::string dhost = params[3];
673                 std::string ident = params[4];
674                 time_t age = atoi(params[0].c_str());
675                 std::string modes = params[5];
676                 while (*(modes.c_str()) == '+')
677                 {
678                         char* m = (char*)modes.c_str();
679                         m++;
680                         modes = m;
681                 }
682                 std::string ip = params[6];
683                 std::string gecos = params[7];
684                 char* tempnick = (char*)nick.c_str();
685                 log(DEBUG,"Introduce client %s!%s@%s",tempnick,ident.c_str(),host.c_str());
686                 
687                 user_hash::iterator iter;
688                 iter = clientlist.find(tempnick);
689                 if (iter != clientlist.end())
690                 {
691                         // nick collision
692                         log(DEBUG,"Nick collision on %s!%s@%s: %lu %lu",tempnick,ident.c_str(),host.c_str(),(unsigned long)age,(unsigned long)iter->second->age);
693                         this->WriteLine(":"+Srv->GetServerName()+" KILL "+tempnick+" :Nickname collision");
694                         return true;
695                 }
696
697                 clientlist[tempnick] = new userrec();
698                 clientlist[tempnick]->fd = FD_MAGIC_NUMBER;
699                 strlcpy(clientlist[tempnick]->nick, tempnick,NICKMAX);
700                 strlcpy(clientlist[tempnick]->host, host.c_str(),160);
701                 strlcpy(clientlist[tempnick]->dhost, dhost.c_str(),160);
702                 clientlist[tempnick]->server = (char*)FindServerNamePtr(source.c_str());
703                 strlcpy(clientlist[tempnick]->ident, ident.c_str(),IDENTMAX);
704                 strlcpy(clientlist[tempnick]->fullname, gecos.c_str(),MAXGECOS);
705                 clientlist[tempnick]->registered = 7;
706                 clientlist[tempnick]->signon = age;
707                 strlcpy(clientlist[tempnick]->modes, modes.c_str(),53);
708                 strlcpy(clientlist[tempnick]->ip,ip.c_str(),16);
709                 for (int i = 0; i < MAXCHANS; i++)
710                 {
711                         clientlist[tempnick]->chans[i].channel = NULL;
712                         clientlist[tempnick]->chans[i].uc_modes = 0;
713                 }
714                 params[7] = ":" + params[7];
715                 DoOneToAllButSender(source,"NICK",params,source);
716                 return true;
717         }
718
719         void SendFJoins(TreeServer* Current, chanrec* c)
720         {
721                 char list[MAXBUF];
722                 snprintf(list,MAXBUF,":%s FJOIN %s %lu",Srv->GetServerName().c_str(),c->name,(unsigned long)c->age);
723                 std::vector<char*> *ulist = c->GetUsers();
724                 for (unsigned int i = 0; i < ulist->size(); i++)
725                 {
726                         char* o = (*ulist)[i];
727                         userrec* otheruser = (userrec*)o;
728                         strlcat(list," ",MAXBUF);
729                         strlcat(list,cmode(otheruser,c),MAXBUF);
730                         strlcat(list,otheruser->nick,MAXBUF);
731                         if (strlen(list)>(480-NICKMAX))
732                         {
733                                 this->WriteLine(list);
734                                 snprintf(list,MAXBUF,":%s FJOIN %s %lu",Srv->GetServerName().c_str(),c->name,(unsigned long)c->age);
735                         }
736                 }
737                 if (list[strlen(list)-1] != ':')
738                 {
739                         this->WriteLine(list);
740                 }
741         }
742
743         void SendChannelModes(TreeServer* Current)
744         {
745                 char data[MAXBUF];
746                 for (chan_hash::iterator c = chanlist.begin(); c != chanlist.end(); c++)
747                 {
748                         SendFJoins(Current, c->second);
749                         snprintf(data,MAXBUF,":%s FMODE %s +%s",Srv->GetServerName().c_str(),c->second->name,chanmodes(c->second));
750                         this->WriteLine(data);
751                         if (*c->second->topic)
752                         {
753                                 snprintf(data,MAXBUF,":%s FTOPIC %s %lu %s :%s",Srv->GetServerName().c_str(),c->second->name,(unsigned long)c->second->topicset,c->second->setby,c->second->topic);
754                                 this->WriteLine(data);
755                         }
756                         for (BanList::iterator b = c->second->bans.begin(); b != c->second->bans.end(); b++)
757                         {
758                                 snprintf(data,MAXBUF,":%s FMODE %s +b %s",Srv->GetServerName().c_str(),c->second->name,b->data);
759                                 this->WriteLine(data);
760                         }
761                         FOREACH_MOD OnSyncChannel(c->second,(Module*)TreeProtocolModule,(void*)this);
762                 }
763         }
764
765         // send all users and their channels
766         void SendUsers(TreeServer* Current)
767         {
768                 char data[MAXBUF];
769                 for (user_hash::iterator u = clientlist.begin(); u != clientlist.end(); u++)
770                 {
771                         if (u->second->registered == 7)
772                         {
773                                 snprintf(data,MAXBUF,":%s NICK %lu %s %s %s %s +%s %s :%s",u->second->server,(unsigned long)u->second->age,u->second->nick,u->second->host,u->second->dhost,u->second->ident,u->second->modes,u->second->ip,u->second->fullname);
774                                 this->WriteLine(data);
775                                 if (strchr(u->second->modes,'o'))
776                                 {
777                                         this->WriteLine(":"+std::string(u->second->nick)+" OPERTYPE "+std::string(u->second->oper));
778                                 }
779                                 //char* chl = chlist(u->second,u->second);
780                                 //if (*chl)
781                                 //{
782                                 //      this->WriteLine(":"+std::string(u->second->nick)+" FJOIN "+std::string(chl));
783                                 //}
784                                 FOREACH_MOD OnSyncUser(u->second,(Module*)TreeProtocolModule,(void*)this);
785                         }
786                 }
787         }
788
789         void DoBurst(TreeServer* s)
790         {
791                 Srv->SendOpers("*** Bursting to "+s->GetName()+".");
792                 this->WriteLine("BURST");
793                 // send our version string
794                 this->WriteLine(":"+s->GetName()+" VERSION :"+GetVersionString());
795                 // Send server tree
796                 this->SendServers(TreeRoot,s,1);
797                 // Send users and their channels
798                 this->SendUsers(s);
799                 // Send everything else (channel modes etc)
800                 this->SendChannelModes(s);
801                 this->WriteLine("ENDBURST");
802         }
803
804         virtual bool OnDataReady()
805         {
806                 char* data = this->Read();
807                 if (data)
808                 {
809                         this->in_buffer += data;
810                         while (in_buffer.find("\n") != std::string::npos)
811                         {
812                                 char* line = (char*)in_buffer.c_str();
813                                 std::string ret = "";
814                                 while ((*line != '\n') && (strlen(line)))
815                                 {
816                                         ret = ret + *line;
817                                         line++;
818                                 }
819                                 if ((*line == '\n') || (*line == '\r'))
820                                         line++;
821                                 in_buffer = line;
822                                 if (!this->ProcessLine(ret))
823                                 {
824                                         return false;
825                                 }
826                         }
827                 }
828                 return (data != NULL);
829         }
830
831         int WriteLine(std::string line)
832         {
833                 return this->Write(line + "\r\n");
834         }
835
836         bool Error(std::deque<std::string> params)
837         {
838                 if (params.size() < 1)
839                         return false;
840                 std::string Errmsg = params[0];
841                 std::string SName = myhost;
842                 if (InboundServerName != "")
843                 {
844                         SName = InboundServerName;
845                 }
846                 Srv->SendOpers("*** ERROR from "+SName+": "+Errmsg);
847                 // we will return false to cause the socket to close.
848                 return false;
849         }
850
851         bool OperType(std::string prefix, std::deque<std::string> params)
852         {
853                 if (params.size() != 1)
854                         return true;
855                 std::string opertype = params[0];
856                 userrec* u = Srv->FindNick(prefix);
857                 if (u)
858                 {
859                         strlcpy(u->oper,opertype.c_str(),NICKMAX);
860                         if (!strchr(u->modes,'o'))
861                         {
862                                 strcat(u->modes,"o");
863                         }
864                         DoOneToAllButSender(u->server,"OPERTYPE",params,u->server);
865                 }
866                 return true;
867         }
868
869         bool RemoteRehash(std::string prefix, std::deque<std::string> params)
870         {
871                 if (params.size() < 1)
872                         return true;
873                 std::string servermask = params[0];
874                 if (Srv->MatchText(Srv->GetServerName(),servermask))
875                 {
876                         Srv->SendOpers("*** Remote rehash initiated from server \002"+prefix+"\002.");
877                         Srv->RehashServer();
878                         ReadConfiguration(false);
879                 }
880                 DoOneToAllButSender(prefix,"REHASH",params,prefix);
881                 return true;
882         }
883
884         bool RemoteKill(std::string prefix, std::deque<std::string> params)
885         {
886                 if (params.size() != 2)
887                         return true;
888                 std::string nick = params[0];
889                 std::string reason = params[1];
890                 userrec* u = Srv->FindNick(prefix);
891                 userrec* who = Srv->FindNick(nick);
892                 if (who)
893                 {
894                         std::string sourceserv = prefix;
895                         if (u)
896                         {
897                                 sourceserv = u->server;
898                         }
899                         params[1] = ":" + params[1];
900                         DoOneToAllButSender(prefix,"KILL",params,sourceserv);
901                         Srv->QuitUser(who,reason);
902                 }
903                 return true;
904         }
905
906         bool LocalPong(std::string prefix, std::deque<std::string> params)
907         {
908                 if (params.size() < 1)
909                         return true;
910                 TreeServer* ServerSource = FindServer(prefix);
911                 if (ServerSource)
912                 {
913                         ServerSource->SetPingFlag();
914                 }
915                 return true;
916         }
917
918         bool ServerVersion(std::string prefix, std::deque<std::string> params)
919         {
920                 if (params.size() < 1)
921                         return true;
922                 TreeServer* ServerSource = FindServer(prefix);
923                 if (ServerSource)
924                 {
925                         ServerSource->SetVersion(params[0]);
926                 }
927                 DoOneToAllButSender(prefix,"VERSION",params,prefix);
928                 return true;
929         }
930         
931         bool LocalPing(std::string prefix, std::deque<std::string> params)
932         {
933                 if (params.size() < 1)
934                         return true;
935                 std::string stufftobounce = params[0];
936                 this->WriteLine(":"+Srv->GetServerName()+" PONG "+stufftobounce);
937                 return true;
938         }
939
940         bool RemoteServer(std::string prefix, std::deque<std::string> params)
941         {
942                 if (params.size() < 4)
943                         return false;
944                 std::string servername = params[0];
945                 std::string password = params[1];
946                 // hopcount is not used for a remote server, we calculate this ourselves
947                 std::string description = params[3];
948                 TreeServer* ParentOfThis = FindServer(prefix);
949                 if (!ParentOfThis)
950                 {
951                         this->WriteLine("ERROR :Protocol error - Introduced remote server from unknown server "+prefix);
952                         return false;
953                 }
954                 TreeServer* CheckDupe = FindServer(servername);
955                 if (CheckDupe)
956                 {
957                         this->WriteLine("ERROR :Server "+servername+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
958                         return false;
959                 }
960                 TreeServer* Node = new TreeServer(servername,description,ParentOfThis,NULL);
961                 ParentOfThis->AddChild(Node);
962                 params[3] = ":" + params[3];
963                 DoOneToAllButSender(prefix,"SERVER",params,prefix);
964                 Srv->SendOpers("*** Server \002"+prefix+"\002 introduced server \002"+servername+"\002 ("+description+")");
965                 return true;
966         }
967
968         bool Outbound_Reply_Server(std::deque<std::string> params)
969         {
970                 if (params.size() < 4)
971                         return false;
972                 std::string servername = params[0];
973                 std::string password = params[1];
974                 int hops = atoi(params[2].c_str());
975                 if (hops)
976                 {
977                         this->WriteLine("ERROR :Server too far away for authentication");
978                         return false;
979                 }
980                 std::string description = params[3];
981                 for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
982                 {
983                         if ((x->Name == servername) && (x->RecvPass == password))
984                         {
985                                 TreeServer* CheckDupe = FindServer(servername);
986                                 if (CheckDupe)
987                                 {
988                                         this->WriteLine("ERROR :Server "+servername+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
989                                         return false;
990                                 }
991                                 // Begin the sync here. this kickstarts the
992                                 // other side, waiting in WAIT_AUTH_2 state,
993                                 // into starting their burst, as it shows
994                                 // that we're happy.
995                                 this->LinkState = CONNECTED;
996                                 // we should add the details of this server now
997                                 // to the servers tree, as a child of the root
998                                 // node.
999                                 TreeServer* Node = new TreeServer(servername,description,TreeRoot,this);
1000                                 TreeRoot->AddChild(Node);
1001                                 params[3] = ":" + params[3];
1002                                 DoOneToAllButSender(TreeRoot->GetName(),"SERVER",params,servername);
1003                                 this->DoBurst(Node);
1004                                 return true;
1005                         }
1006                 }
1007                 this->WriteLine("ERROR :Invalid credentials");
1008                 return false;
1009         }
1010
1011         bool Inbound_Server(std::deque<std::string> params)
1012         {
1013                 if (params.size() < 4)
1014                         return false;
1015                 std::string servername = params[0];
1016                 std::string password = params[1];
1017                 int hops = atoi(params[2].c_str());
1018                 if (hops)
1019                 {
1020                         this->WriteLine("ERROR :Server too far away for authentication");
1021                         return false;
1022                 }
1023                 std::string description = params[3];
1024                 for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
1025                 {
1026                         if ((x->Name == servername) && (x->RecvPass == password))
1027                         {
1028                                 TreeServer* CheckDupe = FindServer(servername);
1029                                 if (CheckDupe)
1030                                 {
1031                                         this->WriteLine("ERROR :Server "+servername+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
1032                                         return false;
1033                                 }
1034                                 Srv->SendOpers("*** Verified incoming server connection from \002"+servername+"\002["+this->GetIP()+"] ("+description+")");
1035                                 this->InboundServerName = servername;
1036                                 this->InboundDescription = description;
1037                                 // this is good. Send our details: Our server name and description and hopcount of 0,
1038                                 // along with the sendpass from this block.
1039                                 this->WriteLine("SERVER "+Srv->GetServerName()+" "+x->SendPass+" 0 :"+Srv->GetServerDescription());
1040                                 // move to the next state, we are now waiting for THEM.
1041                                 this->LinkState = WAIT_AUTH_2;
1042                                 return true;
1043                         }
1044                 }
1045                 this->WriteLine("ERROR :Invalid credentials");
1046                 return false;
1047         }
1048
1049         std::deque<std::string> Split(std::string line, bool stripcolon)
1050         {
1051                 std::deque<std::string> n;
1052                 if (!strchr(line.c_str(),' '))
1053                 {
1054                         n.push_back(line);
1055                         return n;
1056                 }
1057                 std::stringstream s(line);
1058                 std::string param = "";
1059                 n.clear();
1060                 int item = 0;
1061                 while (!s.eof())
1062                 {
1063                         char c;
1064                         s.get(c);
1065                         if (c == ' ')
1066                         {
1067                                 n.push_back(param);
1068                                 param = "";
1069                                 item++;
1070                         }
1071                         else
1072                         {
1073                                 if (!s.eof())
1074                                 {
1075                                         param = param + c;
1076                                 }
1077                                 if ((param == ":") && (item > 0))
1078                                 {
1079                                         param = "";
1080                                         while (!s.eof())
1081                                         {
1082                                                 s.get(c);
1083                                                 if (!s.eof())
1084                                                 {
1085                                                         param = param + c;
1086                                                 }
1087                                         }
1088                                         n.push_back(param);
1089                                         param = "";
1090                                 }
1091                         }
1092                 }
1093                 if (param != "")
1094                 {
1095                         n.push_back(param);
1096                 }
1097                 return n;
1098         }
1099
1100         bool ProcessLine(std::string line)
1101         {
1102                 char* l = (char*)line.c_str();
1103                 while ((strlen(l)) && (l[strlen(l)-1] == '\r') || (l[strlen(l)-1] == '\n'))
1104                         l[strlen(l)-1] = '\0';
1105                 line = l;
1106                 if (line == "")
1107                         return true;
1108                 Srv->Log(DEBUG,"IN: '"+line+"'");
1109                 std::deque<std::string> params = this->Split(line,true);
1110                 std::string command = "";
1111                 std::string prefix = "";
1112                 if (((params[0].c_str())[0] == ':') && (params.size() > 1))
1113                 {
1114                         prefix = params[0];
1115                         command = params[1];
1116                         char* pref = (char*)prefix.c_str();
1117                         prefix = ++pref;
1118                         params.pop_front();
1119                         params.pop_front();
1120                 }
1121                 else
1122                 {
1123                         prefix = "";
1124                         command = params[0];
1125                         params.pop_front();
1126                 }
1127                 
1128                 switch (this->LinkState)
1129                 {
1130                         TreeServer* Node;
1131                         
1132                         case WAIT_AUTH_1:
1133                                 // Waiting for SERVER command from remote server. Server initiating
1134                                 // the connection sends the first SERVER command, listening server
1135                                 // replies with theirs if its happy, then if the initiator is happy,
1136                                 // it starts to send its net sync, which starts the merge, otherwise
1137                                 // it sends an ERROR.
1138                                 if (command == "SERVER")
1139                                 {
1140                                         return this->Inbound_Server(params);
1141                                 }
1142                                 else if (command == "ERROR")
1143                                 {
1144                                         return this->Error(params);
1145                                 }
1146                         break;
1147                         case WAIT_AUTH_2:
1148                                 // Waiting for start of other side's netmerge to say they liked our
1149                                 // password.
1150                                 if (command == "SERVER")
1151                                 {
1152                                         // cant do this, they sent it to us in the WAIT_AUTH_1 state!
1153                                         // silently ignore.
1154                                         return true;
1155                                 }
1156                                 else if (command == "BURST")
1157                                 {
1158                                         this->LinkState = CONNECTED;
1159                                         Node = new TreeServer(InboundServerName,InboundDescription,TreeRoot,this);
1160                                         TreeRoot->AddChild(Node);
1161                                         params.clear();
1162                                         params.push_back(InboundServerName);
1163                                         params.push_back("*");
1164                                         params.push_back("1");
1165                                         params.push_back(":"+InboundDescription);
1166                                         DoOneToAllButSender(TreeRoot->GetName(),"SERVER",params,InboundServerName);
1167                                         this->DoBurst(Node);
1168                                 }
1169                                 else if (command == "ERROR")
1170                                 {
1171                                         return this->Error(params);
1172                                 }
1173                                 
1174                         break;
1175                         case LISTENER:
1176                                 this->WriteLine("ERROR :Internal error -- listening socket accepted its own descriptor!!!");
1177                                 return false;
1178                         break;
1179                         case CONNECTING:
1180                                 if (command == "SERVER")
1181                                 {
1182                                         // another server we connected to, which was in WAIT_AUTH_1 state,
1183                                         // has just sent us their credentials. If we get this far, theyre
1184                                         // happy with OUR credentials, and they are now in WAIT_AUTH_2 state.
1185                                         // if we're happy with this, we should send our netburst which
1186                                         // kickstarts the merge.
1187                                         return this->Outbound_Reply_Server(params);
1188                                 }
1189                                 else if (command == "ERROR")
1190                                 {
1191                                         return this->Error(params);
1192                                 }
1193                         break;
1194                         case CONNECTED:
1195                                 // This is the 'authenticated' state, when all passwords
1196                                 // have been exchanged and anything past this point is taken
1197                                 // as gospel.
1198                                 std::string target = "";
1199                                 if ((command == "NICK") && (params.size() > 1))
1200                                 {
1201                                         return this->IntroduceClient(prefix,params);
1202                                 }
1203                                 else if (command == "FJOIN")
1204                                 {
1205                                         return this->ForceJoin(prefix,params);
1206                                 }
1207                                 else if (command == "SERVER")
1208                                 {
1209                                         return this->RemoteServer(prefix,params);
1210                                 }
1211                                 else if (command == "ERROR")
1212                                 {
1213                                         return this->Error(params);
1214                                 }
1215                                 else if (command == "OPERTYPE")
1216                                 {
1217                                         return this->OperType(prefix,params);
1218                                 }
1219                                 else if (command == "FMODE")
1220                                 {
1221                                         return this->ForceMode(prefix,params);
1222                                 }
1223                                 else if (command == "KILL")
1224                                 {
1225                                         return this->RemoteKill(prefix,params);
1226                                 }
1227                                 else if (command == "FTOPIC")
1228                                 {
1229                                         return this->ForceTopic(prefix,params);
1230                                 }
1231                                 else if (command == "REHASH")
1232                                 {
1233                                         return this->RemoteRehash(prefix,params);
1234                                 }
1235                                 else if (command == "PING")
1236                                 {
1237                                         return this->LocalPing(prefix,params);
1238                                 }
1239                                 else if (command == "PONG")
1240                                 {
1241                                         return this->LocalPong(prefix,params);
1242                                 }
1243                                 else if (command == "VERSION")
1244                                 {
1245                                         return this->ServerVersion(prefix,params);
1246                                 }
1247                                 else if (command == "SQUIT")
1248                                 {
1249                                         if (params.size() == 2)
1250                                         {
1251                                                 this->Squit(FindServer(params[0]),params[1]);
1252                                         }
1253                                         return true;
1254                                 }
1255                                 else
1256                                 {
1257                                         // not a special inter-server command.
1258                                         // Emulate the actual user doing the command,
1259                                         // this saves us having a huge ugly parser.
1260                                         userrec* who = Srv->FindNick(prefix);
1261                                         std::string sourceserv = this->myhost;
1262                                         if (this->InboundServerName != "")
1263                                         {
1264                                                 sourceserv = this->InboundServerName;
1265                                         }
1266                                         if (who)
1267                                         {
1268                                                 // its a user
1269                                                 target = who->server;
1270                                                 char* strparams[127];
1271                                                 for (unsigned int q = 0; q < params.size(); q++)
1272                                                 {
1273                                                         strparams[q] = (char*)params[q].c_str();
1274                                                 }
1275                                                 Srv->CallCommandHandler(command, strparams, params.size(), who);
1276                                         }
1277                                         else
1278                                         {
1279                                                 // its not a user. Its either a server, or somethings screwed up.
1280                                                 if (IsServer(prefix))
1281                                                 {
1282                                                         target = Srv->GetServerName();
1283                                                 }
1284                                                 else
1285                                                 {
1286                                                         log(DEBUG,"Command with unknown origin '%s'",prefix.c_str());
1287                                                         return true;
1288                                                 }
1289                                         }
1290                                         return DoOneToAllButSenderRaw(line,sourceserv,prefix,command,params);
1291
1292                                 }
1293                                 return true;
1294                         break;
1295                 }
1296                 return true;
1297         }
1298
1299         virtual std::string GetName()
1300         {
1301                 std::string sourceserv = this->myhost;
1302                 if (this->InboundServerName != "")
1303                 {
1304                         sourceserv = this->InboundServerName;
1305                 }
1306                 return sourceserv;
1307         }
1308
1309         virtual void OnTimeout()
1310         {
1311                 if (this->LinkState == CONNECTING)
1312                 {
1313                         Srv->SendOpers("*** CONNECT: Connection to \002"+myhost+"\002 timed out.");
1314                 }
1315         }
1316
1317         virtual void OnClose()
1318         {
1319                 // Connection closed.
1320                 // If the connection is fully up (state CONNECTED)
1321                 // then propogate a netsplit to all peers.
1322                 std::string quitserver = this->myhost;
1323                 if (this->InboundServerName != "")
1324                 {
1325                         quitserver = this->InboundServerName;
1326                 }
1327                 TreeServer* s = FindServer(quitserver);
1328                 if (s)
1329                 {
1330                         Squit(s,"Remote host closed the connection");
1331                 }
1332         }
1333
1334         virtual int OnIncomingConnection(int newsock, char* ip)
1335         {
1336                 TreeSocket* s = new TreeSocket(newsock, ip);
1337                 Srv->AddSocket(s);
1338                 return true;
1339         }
1340 };
1341
1342 void AddThisServer(TreeServer* server, std::deque<TreeServer*> &list)
1343 {
1344         for (unsigned int c = 0; c < list.size(); c++)
1345         {
1346                 if (list[c] == server)
1347                 {
1348                         return;
1349                 }
1350         }
1351         list.push_back(server);
1352 }
1353
1354 // returns a list of DIRECT servernames for a specific channel
1355 std::deque<TreeServer*> GetListOfServersForChannel(chanrec* c)
1356 {
1357         std::deque<TreeServer*> list;
1358         std::vector<char*> *ulist = c->GetUsers();
1359         for (unsigned int i = 0; i < ulist->size(); i++)
1360         {
1361                 char* o = (*ulist)[i];
1362                 userrec* otheruser = (userrec*)o;
1363                 if (std::string(otheruser->server) != Srv->GetServerName())
1364                 {
1365                         TreeServer* best = BestRouteTo(otheruser->server);
1366                         if (best)
1367                                 AddThisServer(best,list);
1368                 }
1369         }
1370         return list;
1371 }
1372
1373 bool DoOneToAllButSenderRaw(std::string data,std::string omit,std::string prefix,std::string command,std::deque<std::string> params)
1374 {
1375         TreeServer* omitroute = BestRouteTo(omit);
1376         if ((command == "NOTICE") || (command == "PRIVMSG"))
1377         {
1378                 if ((params.size() >= 2) && (*(params[0].c_str()) != '$'))
1379                 {
1380                         if (*(params[0].c_str()) != '#')
1381                         {
1382                                 // special routing for private messages/notices
1383                                 userrec* d = Srv->FindNick(params[0]);
1384                                 if (d)
1385                                 {
1386                                         std::deque<std::string> par;
1387                                         par.clear();
1388                                         par.push_back(params[0]);
1389                                         par.push_back(":"+params[1]);
1390                                         DoOneToOne(prefix,command,par,d->server);
1391                                         return true;
1392                                 }
1393                         }
1394                         else
1395                         {
1396                                 log(DEBUG,"Channel privmsg going to chan %s",params[0].c_str());
1397                                 chanrec* c = Srv->FindChannel(params[0]);
1398                                 if (c)
1399                                 {
1400                                         std::deque<TreeServer*> list = GetListOfServersForChannel(c);
1401                                         log(DEBUG,"Got a list of %d servers",list.size());
1402                                         for (unsigned int i = 0; i < list.size(); i++)
1403                                         {
1404                                                 TreeSocket* Sock = list[i]->GetSocket();
1405                                                 if ((Sock) && (list[i]->GetName() != omit) && (omitroute != list[i]))
1406                                                 {
1407                                                         log(DEBUG,"Writing privmsg to server %s",list[i]->GetName().c_str());
1408                                                         Sock->WriteLine(data);
1409                                                 }
1410                                         }
1411                                         return true;
1412                                 }
1413                         }
1414                 }
1415         }
1416         for (unsigned int x = 0; x < TreeRoot->ChildCount(); x++)
1417         {
1418                 TreeServer* Route = TreeRoot->GetChild(x);
1419                 if ((Route->GetSocket()) && (Route->GetName() != omit) && (omitroute != Route))
1420                 {
1421                         TreeSocket* Sock = Route->GetSocket();
1422                         Sock->WriteLine(data);
1423                 }
1424         }
1425         return true;
1426 }
1427
1428 bool DoOneToAllButSender(std::string prefix, std::string command, std::deque<std::string> params, std::string omit)
1429 {
1430         TreeServer* omitroute = BestRouteTo(omit);
1431         std::string FullLine = ":" + prefix + " " + command;
1432         for (unsigned int x = 0; x < params.size(); x++)
1433         {
1434                 FullLine = FullLine + " " + params[x];
1435         }
1436         for (unsigned int x = 0; x < TreeRoot->ChildCount(); x++)
1437         {
1438                 TreeServer* Route = TreeRoot->GetChild(x);
1439                 // Send the line IF:
1440                 // The route has a socket (its a direct connection)
1441                 // The route isnt the one to be omitted
1442                 // The route isnt the path to the one to be omitted
1443                 if ((Route->GetSocket()) && (Route->GetName() != omit) && (omitroute != Route))
1444                 {
1445                         TreeSocket* Sock = Route->GetSocket();
1446                         Sock->WriteLine(FullLine);
1447                 }
1448         }
1449         return true;
1450 }
1451
1452 bool DoOneToMany(std::string prefix, std::string command, std::deque<std::string> params)
1453 {
1454         std::string FullLine = ":" + prefix + " " + command;
1455         for (unsigned int x = 0; x < params.size(); x++)
1456         {
1457                 FullLine = FullLine + " " + params[x];
1458         }
1459         for (unsigned int x = 0; x < TreeRoot->ChildCount(); x++)
1460         {
1461                 TreeServer* Route = TreeRoot->GetChild(x);
1462                 if (Route->GetSocket())
1463                 {
1464                         TreeSocket* Sock = Route->GetSocket();
1465                         Sock->WriteLine(FullLine);
1466                 }
1467         }
1468         return true;
1469 }
1470
1471 bool DoOneToOne(std::string prefix, std::string command, std::deque<std::string> params, std::string target)
1472 {
1473         TreeServer* Route = BestRouteTo(target);
1474         if (Route)
1475         {
1476                 std::string FullLine = ":" + prefix + " " + command;
1477                 for (unsigned int x = 0; x < params.size(); x++)
1478                 {
1479                         FullLine = FullLine + " " + params[x];
1480                 }
1481                 if (Route->GetSocket())
1482                 {
1483                         TreeSocket* Sock = Route->GetSocket();
1484                         Sock->WriteLine(FullLine);
1485                 }
1486                 return true;
1487         }
1488         else
1489         {
1490                 return true;
1491         }
1492 }
1493
1494 std::vector<TreeSocket*> Bindings;
1495
1496 void ReadConfiguration(bool rebind)
1497 {
1498         if (rebind)
1499         {
1500                 for (int j =0; j < Conf->Enumerate("bind"); j++)
1501                 {
1502                         std::string Type = Conf->ReadValue("bind","type",j);
1503                         std::string IP = Conf->ReadValue("bind","address",j);
1504                         long Port = Conf->ReadInteger("bind","port",j,true);
1505                         if (Type == "servers")
1506                         {
1507                                 if (IP == "*")
1508                                 {
1509                                         IP = "";
1510                                 }
1511                                 TreeSocket* listener = new TreeSocket(IP.c_str(),Port,true,10);
1512                                 if (listener->GetState() == I_LISTENING)
1513                                 {
1514                                         Srv->AddSocket(listener);
1515                                         Bindings.push_back(listener);
1516                                 }
1517                                 else
1518                                 {
1519                                         log(DEFAULT,"m_spanningtree: Warning: Failed to bind server port %d",Port);
1520                                         listener->Close();
1521                                         delete listener;
1522                                 }
1523                         }
1524                 }
1525         }
1526         LinkBlocks.clear();
1527         for (int j =0; j < Conf->Enumerate("link"); j++)
1528         {
1529                 Link L;
1530                 L.Name = Conf->ReadValue("link","name",j);
1531                 L.IPAddr = Conf->ReadValue("link","ipaddr",j);
1532                 L.Port = Conf->ReadInteger("link","port",j,true);
1533                 L.SendPass = Conf->ReadValue("link","sendpass",j);
1534                 L.RecvPass = Conf->ReadValue("link","recvpass",j);
1535                 L.AutoConnect = Conf->ReadInteger("link","autoconnect",j,true);
1536                 L.NextConnectTime = time(NULL) + L.AutoConnect;
1537                 LinkBlocks.push_back(L);
1538                 log(DEBUG,"m_spanningtree: Read server %s with host %s:%d",L.Name.c_str(),L.IPAddr.c_str(),L.Port);
1539         }
1540 }
1541
1542
1543 class ModuleSpanningTree : public Module
1544 {
1545         std::vector<TreeSocket*> Bindings;
1546         int line;
1547         int NumServers;
1548
1549  public:
1550
1551         ModuleSpanningTree()
1552         {
1553                 Srv = new Server;
1554                 Conf = new ConfigReader;
1555                 Bindings.clear();
1556
1557                 // Create the root of the tree
1558                 TreeRoot = new TreeServer(Srv->GetServerName(),Srv->GetServerDescription());
1559
1560                 ReadConfiguration(true);
1561         }
1562
1563         void ShowLinks(TreeServer* Current, userrec* user, int hops)
1564         {
1565                 std::string Parent = TreeRoot->GetName();
1566                 if (Current->GetParent())
1567                 {
1568                         Parent = Current->GetParent()->GetName();
1569                 }
1570                 for (unsigned int q = 0; q < Current->ChildCount(); q++)
1571                 {
1572                         ShowLinks(Current->GetChild(q),user,hops+1);
1573                 }
1574                 WriteServ(user->fd,"364 %s %s %s :%d %s",user->nick,Current->GetName().c_str(),Parent.c_str(),hops,Current->GetDesc().c_str());
1575         }
1576
1577         int CountLocalServs()
1578         {
1579                 return TreeRoot->ChildCount();
1580         }
1581
1582         void CountServsRecursive(TreeServer* Current)
1583         {
1584                 NumServers++;
1585                 for (unsigned int q = 0; q < Current->ChildCount(); q++)
1586                 {
1587                         CountServsRecursive(Current->GetChild(q));
1588                 }
1589         }
1590         
1591         int CountServs()
1592         {
1593                 NumServers = 0;
1594                 CountServsRecursive(TreeRoot);
1595                 return NumServers;
1596         }
1597
1598         void HandleLinks(char** parameters, int pcnt, userrec* user)
1599         {
1600                 ShowLinks(TreeRoot,user,0);
1601                 WriteServ(user->fd,"365 %s * :End of /LINKS list.",user->nick);
1602                 return;
1603         }
1604
1605         void HandleLusers(char** parameters, int pcnt, userrec* user)
1606         {
1607                 WriteServ(user->fd,"251 %s :There are %d users and %d invisible on %d servers",user->nick,usercnt()-usercount_invisible(),usercount_invisible(),this->CountServs());
1608                 WriteServ(user->fd,"252 %s %d :operator(s) online",user->nick,usercount_opers());
1609                 WriteServ(user->fd,"253 %s %d :unknown connections",user->nick,usercount_unknown());
1610                 WriteServ(user->fd,"254 %s %d :channels formed",user->nick,chancount());
1611                 WriteServ(user->fd,"254 %s :I have %d clients and %d servers",user->nick,local_count(),this->CountLocalServs());
1612                 return;
1613         }
1614
1615         // WARNING: NOT THREAD SAFE - DONT GET ANY SMART IDEAS.
1616
1617         void ShowMap(TreeServer* Current, userrec* user, int depth, char matrix[128][80])
1618         {
1619                 if (line < 128)
1620                 {
1621                         for (int t = 0; t < depth; t++)
1622                         {
1623                                 matrix[line][t] = ' ';
1624                         }
1625                         strlcpy(&matrix[line][depth],Current->GetName().c_str(),80);
1626                         line++;
1627                         for (unsigned int q = 0; q < Current->ChildCount(); q++)
1628                         {
1629                                 ShowMap(Current->GetChild(q),user,depth+2,matrix);
1630                         }
1631                 }
1632         }
1633
1634         // Ok, prepare to be confused.
1635         // After much mulling over how to approach this, it struck me that
1636         // the 'usual' way of doing a /MAP isnt the best way. Instead of
1637         // keeping track of a ton of ascii characters, and line by line
1638         // under recursion working out where to place them using multiplications
1639         // and divisons, we instead render the map onto a backplane of characters
1640         // (a character matrix), then draw the branches as a series of "L" shapes
1641         // from the nodes. This is not only friendlier on CPU it uses less stack.
1642
1643         void HandleMap(char** parameters, int pcnt, userrec* user)
1644         {
1645                 // This array represents a virtual screen which we will
1646                 // "scratch" draw to, as the console device of an irc
1647                 // client does not provide for a proper terminal.
1648                 char matrix[128][80];
1649                 for (unsigned int t = 0; t < 128; t++)
1650                 {
1651                         matrix[t][0] = '\0';
1652                 }
1653                 line = 0;
1654                 // The only recursive bit is called here.
1655                 ShowMap(TreeRoot,user,0,matrix);
1656                 // Process each line one by one. The algorithm has a limit of
1657                 // 128 servers (which is far more than a spanning tree should have
1658                 // anyway, so we're ok). This limit can be raised simply by making
1659                 // the character matrix deeper, 128 rows taking 10k of memory.
1660                 for (int l = 1; l < line; l++)
1661                 {
1662                         // scan across the line looking for the start of the
1663                         // servername (the recursive part of the algorithm has placed
1664                         // the servers at indented positions depending on what they
1665                         // are related to)
1666                         int first_nonspace = 0;
1667                         while (matrix[l][first_nonspace] == ' ')
1668                         {
1669                                 first_nonspace++;
1670                         }
1671                         first_nonspace--;
1672                         // Draw the `- (corner) section: this may be overwritten by
1673                         // another L shape passing along the same vertical pane, becoming
1674                         // a |- (branch) section instead.
1675                         matrix[l][first_nonspace] = '-';
1676                         matrix[l][first_nonspace-1] = '`';
1677                         int l2 = l - 1;
1678                         // Draw upwards until we hit the parent server, causing possibly
1679                         // other corners (`-) to become branches (|-)
1680                         while ((matrix[l2][first_nonspace-1] == ' ') || (matrix[l2][first_nonspace-1] == '`'))
1681                         {
1682                                 matrix[l2][first_nonspace-1] = '|';
1683                                 l2--;
1684                         }
1685                 }
1686                 // dump the whole lot to the user. This is the easy bit, honest.
1687                 for (int t = 0; t < line; t++)
1688                 {
1689                         WriteServ(user->fd,"006 %s :%s",user->nick,&matrix[t][0]);
1690                 }
1691                 WriteServ(user->fd,"007 %s :End of /MAP",user->nick);
1692                 return;
1693         }
1694
1695         int HandleSquit(char** parameters, int pcnt, userrec* user)
1696         {
1697                 TreeServer* s = FindServerMask(parameters[0]);
1698                 if (s)
1699                 {
1700                         TreeSocket* sock = s->GetSocket();
1701                         if (sock)
1702                         {
1703                                 WriteOpers("*** SQUIT: Server \002%s\002 removed from network by %s",parameters[0],user->nick);
1704                                 sock->Squit(s,"Server quit by "+std::string(user->nick)+"!"+std::string(user->ident)+"@"+std::string(user->host));
1705                                 sock->Close();
1706                         }
1707                         else
1708                         {
1709                                 WriteServ(user->fd,"NOTICE %s :*** SQUIT: The server \002%s\002 is not directly connected.",user->nick,parameters[0]);
1710                         }
1711                 }
1712                 else
1713                 {
1714                          WriteServ(user->fd,"NOTICE %s :*** SQUIT: The server \002%s\002 does not exist on the network.",user->nick,parameters[0]);
1715                 }
1716                 return 1;
1717         }
1718
1719         void DoPingChecks(time_t curtime)
1720         {
1721                 for (unsigned int j = 0; j < TreeRoot->ChildCount(); j++)
1722                 {
1723                         TreeServer* serv = TreeRoot->GetChild(j);
1724                         TreeSocket* sock = serv->GetSocket();
1725                         if (sock)
1726                         {
1727                                 if (curtime >= serv->NextPingTime())
1728                                 {
1729                                         if (serv->AnsweredLastPing())
1730                                         {
1731                                                 sock->WriteLine(":"+Srv->GetServerName()+" PING "+serv->GetName());
1732                                                 serv->SetNextPingTime(curtime + 60);
1733                                         }
1734                                         else
1735                                         {
1736                                                 // they didnt answer, boot them
1737                                                 WriteOpers("*** Server \002%s\002 pinged out",serv->GetName().c_str());
1738                                                 sock->Squit(serv,"Ping timeout");
1739                                                 sock->Close();
1740                                                 return;
1741                                         }
1742                                 }
1743                         }
1744                 }
1745         }
1746
1747         void AutoConnectServers(time_t curtime)
1748         {
1749                 for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
1750                 {
1751                         if ((x->AutoConnect) && (curtime >= x->NextConnectTime))
1752                         {
1753                                 log(DEBUG,"Auto-Connecting %s",x->Name.c_str());
1754                                 x->NextConnectTime = curtime + x->AutoConnect;
1755                                 TreeServer* CheckDupe = FindServer(x->Name);
1756                                 if (!CheckDupe)
1757                                 {
1758                                         // an autoconnected server is not connected. Check if its time to connect it
1759                                         WriteOpers("*** AUTOCONNECT: Auto-connecting server \002%s\002 (%lu seconds until next attempt)",x->Name.c_str(),x->AutoConnect);
1760                                         TreeSocket* newsocket = new TreeSocket(x->IPAddr,x->Port,false,10,x->Name);
1761                                         Srv->AddSocket(newsocket);
1762                                 }
1763                         }
1764                 }
1765         }
1766
1767         int HandleVersion(char** parameters, int pcnt, userrec* user)
1768         {
1769                 // we've already checked if pcnt > 0, so this is safe
1770                 TreeServer* found = FindServerMask(parameters[0]);
1771                 if (found)
1772                 {
1773                         std::string Version = found->GetVersion();
1774                         WriteServ(user->fd,"351 %s :%s",user->nick,Version.c_str());
1775                 }
1776                 else
1777                 {
1778                         WriteServ(user->fd,"402 %s :No such server",parameters[0]);
1779                 }
1780         }
1781         
1782         int HandleConnect(char** parameters, int pcnt, userrec* user)
1783         {
1784                 for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
1785                 {
1786                         if (Srv->MatchText(x->Name.c_str(),parameters[0]))
1787                         {
1788                                 TreeServer* CheckDupe = FindServer(x->Name);
1789                                 if (!CheckDupe)
1790                                 {
1791                                         WriteServ(user->fd,"NOTICE %s :*** CONNECT: Connecting to server: \002%s\002 (%s:%d)",user->nick,x->Name.c_str(),x->IPAddr.c_str(),x->Port);
1792                                         TreeSocket* newsocket = new TreeSocket(x->IPAddr,x->Port,false,10,x->Name);
1793                                         Srv->AddSocket(newsocket);
1794                                         return 1;
1795                                 }
1796                                 else
1797                                 {
1798                                         WriteServ(user->fd,"NOTICE %s :*** CONNECT: Server \002%s\002 already exists on the network and is connected via \002%s\002",user->nick,x->Name.c_str(),CheckDupe->GetParent()->GetName().c_str());
1799                                         return 1;
1800                                 }
1801                         }
1802                 }
1803                 WriteServ(user->fd,"NOTICE %s :*** CONNECT: No server matching \002%s\002 could be found in the config file.",user->nick,parameters[0]);
1804                 return 1;
1805         }
1806
1807         virtual int OnPreCommand(std::string command, char **parameters, int pcnt, userrec *user)
1808         {
1809                 if (command == "CONNECT")
1810                 {
1811                         return this->HandleConnect(parameters,pcnt,user);
1812                 }
1813                 else if (command == "SQUIT")
1814                 {
1815                         return this->HandleSquit(parameters,pcnt,user);
1816                 }
1817                 else if (command == "MAP")
1818                 {
1819                         this->HandleMap(parameters,pcnt,user);
1820                         return 1;
1821                 }
1822                 else if (command == "LUSERS")
1823                 {
1824                         this->HandleLusers(parameters,pcnt,user);
1825                         return 1;
1826                 }
1827                 else if (command == "LINKS")
1828                 {
1829                         this->HandleLinks(parameters,pcnt,user);
1830                         return 1;
1831                 }
1832                 else if ((command == "VERSION") && (pcnt > 0))
1833                 {
1834                         this->HandleVersion(parameters,pcnt,user);
1835                         return 1;
1836                 }
1837                 else if (Srv->IsValidModuleCommand(command, pcnt, user))
1838                 {
1839                         // this bit of code cleverly routes all module commands
1840                         // to all remote severs *automatically* so that modules
1841                         // can just handle commands locally, without having
1842                         // to have any special provision in place for remote
1843                         // commands and linking protocols.
1844                         std::deque<std::string> params;
1845                         params.clear();
1846                         for (int j = 0; j < pcnt; j++)
1847                         {
1848                                 if (strchr(parameters[j],' '))
1849                                 {
1850                                         params.push_back(":" + std::string(parameters[j]));
1851                                 }
1852                                 else
1853                                 {
1854                                         params.push_back(std::string(parameters[j]));
1855                                 }
1856                         }
1857                         DoOneToMany(user->nick,command,params);
1858                 }
1859                 return 0;
1860         }
1861
1862         virtual void OnGetServerDescription(std::string servername,std::string &description)
1863         {
1864                 TreeServer* s = FindServer(servername);
1865                 if (s)
1866                 {
1867                         description = s->GetDesc();
1868                 }
1869         }
1870
1871         virtual void OnUserInvite(userrec* source,userrec* dest,chanrec* channel)
1872         {
1873                 if (std::string(source->server) == Srv->GetServerName())
1874                 {
1875                         std::deque<std::string> params;
1876                         params.push_back(dest->nick);
1877                         params.push_back(channel->name);
1878                         DoOneToMany(source->nick,"INVITE",params);
1879                 }
1880         }
1881
1882         virtual void OnPostLocalTopicChange(userrec* user, chanrec* chan, std::string topic)
1883         {
1884                 std::deque<std::string> params;
1885                 params.push_back(chan->name);
1886                 params.push_back(":"+topic);
1887                 DoOneToMany(user->nick,"TOPIC",params);
1888         }
1889
1890         virtual void OnWallops(userrec* user, std::string text)
1891         {
1892                 if (std::string(user->server) == Srv->GetServerName())
1893                 {
1894                         std::deque<std::string> params;
1895                         params.push_back(":"+text);
1896                         DoOneToMany(user->nick,"WALLOPS",params);
1897                 }
1898         }
1899
1900         virtual void OnUserNotice(userrec* user, void* dest, int target_type, std::string text)
1901         {
1902                 if (target_type == TYPE_USER)
1903                 {
1904                         userrec* d = (userrec*)dest;
1905                         if ((std::string(d->server) != Srv->GetServerName()) && (std::string(user->server) == Srv->GetServerName()))
1906                         {
1907                                 std::deque<std::string> params;
1908                                 params.clear();
1909                                 params.push_back(d->nick);
1910                                 params.push_back(":"+text);
1911                                 DoOneToOne(user->nick,"NOTICE",params,d->server);
1912                         }
1913                 }
1914                 else
1915                 {
1916                         if (std::string(user->server) == Srv->GetServerName())
1917                         {
1918                                 chanrec *c = (chanrec*)dest;
1919                                 std::deque<TreeServer*> list = GetListOfServersForChannel(c);
1920                                 for (unsigned int i = 0; i < list.size(); i++)
1921                                 {
1922                                         TreeSocket* Sock = list[i]->GetSocket();
1923                                         if (Sock)
1924                                                 Sock->WriteLine(":"+std::string(user->nick)+" NOTICE "+std::string(c->name)+" :"+text);
1925                                 }
1926                         }
1927                 }
1928         }
1929
1930         virtual void OnUserMessage(userrec* user, void* dest, int target_type, std::string text)
1931         {
1932                 if (target_type == TYPE_USER)
1933                 {
1934                         // route private messages which are targetted at clients only to the server
1935                         // which needs to receive them
1936                         userrec* d = (userrec*)dest;
1937                         if ((std::string(d->server) != Srv->GetServerName()) && (std::string(user->server) == Srv->GetServerName()))
1938                         {
1939                                 std::deque<std::string> params;
1940                                 params.clear();
1941                                 params.push_back(d->nick);
1942                                 params.push_back(":"+text);
1943                                 DoOneToOne(user->nick,"PRIVMSG",params,d->server);
1944                         }
1945                 }
1946                 else
1947                 {
1948                         if (std::string(user->server) == Srv->GetServerName())
1949                         {
1950                                 chanrec *c = (chanrec*)dest;
1951                                 std::deque<TreeServer*> list = GetListOfServersForChannel(c);
1952                                 for (unsigned int i = 0; i < list.size(); i++)
1953                                 {
1954                                         TreeSocket* Sock = list[i]->GetSocket();
1955                                         if (Sock)
1956                                                 Sock->WriteLine(":"+std::string(user->nick)+" PRIVMSG "+std::string(c->name)+" :"+text);
1957                                 }
1958                         }
1959                 }
1960         }
1961
1962         virtual void OnBackgroundTimer(time_t curtime)
1963         {
1964                 AutoConnectServers(curtime);
1965                 DoPingChecks(curtime);
1966         }
1967
1968         virtual void OnUserJoin(userrec* user, chanrec* channel)
1969         {
1970                 // Only do this for local users
1971                 if (std::string(user->server) == Srv->GetServerName())
1972                 {
1973                         std::deque<std::string> params;
1974                         params.clear();
1975                         params.push_back(channel->name);
1976                         if (*channel->key)
1977                         {
1978                                 // if the channel has a key, force the join by emulating the key.
1979                                 params.push_back(channel->key);
1980                         }
1981                         if (channel->GetUserCounter() > 1)
1982                         {
1983                                 // not the first in the channel
1984                                 DoOneToMany(user->nick,"JOIN",params);
1985                         }
1986                         else
1987                         {
1988                                 // first in the channel, set up their permissions
1989                                 // and the channel TS with FJOIN.
1990                                 char ts[24];
1991                                 snprintf(ts,24,"%lu",(unsigned long)channel->age);
1992                                 params.clear();
1993                                 params.push_back(channel->name);
1994                                 params.push_back(ts);
1995                                 params.push_back("@"+std::string(user->nick));
1996                                 DoOneToMany(Srv->GetServerName(),"FJOIN",params);
1997                         }
1998                 }
1999         }
2000
2001         virtual void OnUserPart(userrec* user, chanrec* channel)
2002         {
2003                 if (std::string(user->server) == Srv->GetServerName())
2004                 {
2005                         std::deque<std::string> params;
2006                         params.clear();
2007                         params.push_back(channel->name);
2008                         DoOneToMany(user->nick,"PART",params);
2009                 }
2010         }
2011
2012         virtual void OnUserConnect(userrec* user)
2013         {
2014                 char agestr[MAXBUF];
2015                 if (std::string(user->server) == Srv->GetServerName())
2016                 {
2017                         std::deque<std::string> params;
2018                         snprintf(agestr,MAXBUF,"%lu",(unsigned long)user->age);
2019                         params.clear();
2020                         params.push_back(agestr);
2021                         params.push_back(user->nick);
2022                         params.push_back(user->host);
2023                         params.push_back(user->dhost);
2024                         params.push_back(user->ident);
2025                         params.push_back("+"+std::string(user->modes));
2026                         params.push_back(user->ip);
2027                         params.push_back(":"+std::string(user->fullname));
2028                         DoOneToMany(Srv->GetServerName(),"NICK",params);
2029                 }
2030         }
2031
2032         virtual void OnUserQuit(userrec* user, std::string reason)
2033         {
2034                 if (std::string(user->server) == Srv->GetServerName())
2035                 {
2036                         std::deque<std::string> params;
2037                         params.push_back(":"+reason);
2038                         DoOneToMany(user->nick,"QUIT",params);
2039                 }
2040         }
2041
2042         virtual void OnUserPostNick(userrec* user, std::string oldnick)
2043         {
2044                 if (std::string(user->server) == Srv->GetServerName())
2045                 {
2046                         std::deque<std::string> params;
2047                         params.push_back(user->nick);
2048                         DoOneToMany(oldnick,"NICK",params);
2049                 }
2050         }
2051
2052         virtual void OnUserKick(userrec* source, userrec* user, chanrec* chan, std::string reason)
2053         {
2054                 if (std::string(source->server) == Srv->GetServerName())
2055                 {
2056                         std::deque<std::string> params;
2057                         params.push_back(chan->name);
2058                         params.push_back(user->nick);
2059                         params.push_back(":"+reason);
2060                         DoOneToMany(source->nick,"KICK",params);
2061                 }
2062         }
2063
2064         virtual void OnRemoteKill(userrec* source, userrec* dest, std::string reason)
2065         {
2066                 std::deque<std::string> params;
2067                 params.push_back(dest->nick);
2068                 params.push_back(":"+reason);
2069                 DoOneToMany(source->nick,"KILL",params);
2070         }
2071
2072         virtual void OnRehash(std::string parameter)
2073         {
2074                 if (parameter != "")
2075                 {
2076                         std::deque<std::string> params;
2077                         params.push_back(parameter);
2078                         DoOneToMany(Srv->GetServerName(),"REHASH",params);
2079                         // check for self
2080                         if (Srv->MatchText(Srv->GetServerName(),parameter))
2081                         {
2082                                 Srv->SendOpers("*** Remote rehash initiated from server \002"+Srv->GetServerName()+"\002.");
2083                                 Srv->RehashServer();
2084                         }
2085                 }
2086                 ReadConfiguration(false);
2087         }
2088
2089         // note: the protocol does not allow direct umode +o except
2090         // via NICK with 8 params. sending OPERTYPE infers +o modechange
2091         // locally.
2092         virtual void OnOper(userrec* user, std::string opertype)
2093         {
2094                 if (std::string(user->server) == Srv->GetServerName())
2095                 {
2096                         std::deque<std::string> params;
2097                         params.push_back(opertype);
2098                         DoOneToMany(user->nick,"OPERTYPE",params);
2099                 }
2100         }
2101
2102         virtual void OnMode(userrec* user, void* dest, int target_type, std::string text)
2103         {
2104                 if (std::string(user->server) == Srv->GetServerName())
2105                 {
2106                         if (target_type == TYPE_USER)
2107                         {
2108                                 userrec* u = (userrec*)dest;
2109                                 std::deque<std::string> params;
2110                                 params.push_back(u->nick);
2111                                 params.push_back(text);
2112                                 DoOneToMany(user->nick,"MODE",params);
2113                         }
2114                         else
2115                         {
2116                                 chanrec* c = (chanrec*)dest;
2117                                 std::deque<std::string> params;
2118                                 params.push_back(c->name);
2119                                 params.push_back(text);
2120                                 DoOneToMany(user->nick,"MODE",params);
2121                         }
2122                 }
2123         }
2124
2125         virtual void ProtoSendMode(void* opaque, int target_type, void* target, std::string modeline)
2126         {
2127                 TreeSocket* s = (TreeSocket*)opaque;
2128                 if (target)
2129                 {
2130                         if (target_type == TYPE_USER)
2131                         {
2132                                 userrec* u = (userrec*)target;
2133                                 s->WriteLine(":"+Srv->GetServerName()+" FMODE "+u->nick+" "+modeline);
2134                         }
2135                         else
2136                         {
2137                                 chanrec* c = (chanrec*)target;
2138                                 s->WriteLine(":"+Srv->GetServerName()+" FMODE "+c->name+" "+modeline);
2139                         }
2140                 }
2141         }
2142
2143         virtual ~ModuleSpanningTree()
2144         {
2145                 delete Srv;
2146         }
2147
2148         virtual Version GetVersion()
2149         {
2150                 return Version(1,0,0,0,VF_STATIC|VF_VENDOR);
2151         }
2152 };
2153
2154
2155 class ModuleSpanningTreeFactory : public ModuleFactory
2156 {
2157  public:
2158         ModuleSpanningTreeFactory()
2159         {
2160         }
2161         
2162         ~ModuleSpanningTreeFactory()
2163         {
2164         }
2165         
2166         virtual Module * CreateModule()
2167         {
2168                 TreeProtocolModule = new ModuleSpanningTree;
2169                 return TreeProtocolModule;
2170         }
2171         
2172 };
2173
2174
2175 extern "C" void * init_module( void )
2176 {
2177         return new ModuleSpanningTreeFactory;
2178 }