]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/main.cpp
Ive tidied up the mode count stuff, but i still cant duplicate negative invisible...
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / main.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 /* $ModDesc: Provides a spanning tree server link protocol */
15
16 #include "inspircd.h"
17 #include "configreader.h"
18 #include "users.h"
19 #include "channels.h"
20 #include "modules.h"
21 #include "commands/cmd_whois.h"
22 #include "commands/cmd_stats.h"
23 #include "socket.h"
24 #include "wildcard.h"
25 #include "xline.h"
26 #include "transport.h"
27
28 #include "m_spanningtree/timesynctimer.h"
29 #include "m_spanningtree/resolvers.h"
30 #include "m_spanningtree/main.h"
31 #include "m_spanningtree/utils.h"
32 #include "m_spanningtree/treeserver.h"
33 #include "m_spanningtree/link.h"
34 #include "m_spanningtree/treesocket.h"
35 #include "m_spanningtree/rconnect.h"
36 #include "m_spanningtree/rsquit.h"
37
38 /* $ModDep: m_spanningtree/timesynctimer.h m_spanningtree/resolvers.h m_spanningtree/main.h m_spanningtree/utils.h m_spanningtree/treeserver.h m_spanningtree/link.h m_spanningtree/treesocket.h m_spanningtree/rconnect.h m_spanningtree/rsquit.h */
39
40 ModuleSpanningTree::ModuleSpanningTree(InspIRCd* Me)
41         : Module(Me), max_local(0), max_global(0)
42 {
43         ServerInstance->UseInterface("InspSocketHook");
44         Utils = new SpanningTreeUtilities(Me, this);
45         command_rconnect = new cmd_rconnect(ServerInstance, this, Utils);
46         ServerInstance->AddCommand(command_rconnect);
47         command_rsquit = new cmd_rsquit(ServerInstance, this, Utils);
48         ServerInstance->AddCommand(command_rsquit);
49         if (Utils->EnableTimeSync)
50         {
51                 SyncTimer = new TimeSyncTimer(ServerInstance, this);
52                 ServerInstance->Timers->AddTimer(SyncTimer);
53         }
54         else
55                 SyncTimer = NULL;
56
57         RefreshTimer = new CacheRefreshTimer(ServerInstance, Utils);
58         ServerInstance->Timers->AddTimer(RefreshTimer);
59 }
60
61 void ModuleSpanningTree::ShowLinks(TreeServer* Current, userrec* user, int hops)
62 {
63         std::string Parent = Utils->TreeRoot->GetName();
64         if (Current->GetParent())
65         {
66                 Parent = Current->GetParent()->GetName();
67         }
68         for (unsigned int q = 0; q < Current->ChildCount(); q++)
69         {
70                 if ((Current->GetChild(q)->Hidden) || ((Utils->HideULines) && (ServerInstance->ULine(Current->GetChild(q)->GetName().c_str()))))
71                 {
72                         if (*user->oper)
73                         {
74                                  ShowLinks(Current->GetChild(q),user,hops+1);
75                         }
76                 }
77                 else
78                 {
79                         ShowLinks(Current->GetChild(q),user,hops+1);
80                 }
81         }
82         /* Don't display the line if its a uline, hide ulines is on, and the user isnt an oper */
83         if ((Utils->HideULines) && (ServerInstance->ULine(Current->GetName().c_str())) && (!IS_OPER(user)))
84                 return;
85         /* Or if the server is hidden and they're not an oper */
86         else if ((Current->Hidden) && (!IS_OPER(user)))
87                 return;
88
89         user->WriteServ("364 %s %s %s :%d %s",  user->nick,Current->GetName().c_str(),
90                         (Utils->FlatLinks && (!IS_OPER(user))) ? ServerInstance->Config->ServerName : Parent.c_str(),
91                         (Utils->FlatLinks && (!IS_OPER(user))) ? 0 : hops,
92                         Current->GetDesc().c_str());
93 }
94
95 int ModuleSpanningTree::CountLocalServs()
96 {
97         return Utils->TreeRoot->ChildCount();
98 }
99
100 int ModuleSpanningTree::CountServs()
101 {
102         return Utils->serverlist.size();
103 }
104
105 void ModuleSpanningTree::HandleLinks(const char** parameters, int pcnt, userrec* user)
106 {
107         ShowLinks(Utils->TreeRoot,user,0);
108         user->WriteServ("365 %s * :End of /LINKS list.",user->nick);
109         return;
110 }
111
112 void ModuleSpanningTree::HandleLusers(const char** parameters, int pcnt, userrec* user)
113 {
114         unsigned int n_users = ServerInstance->UserCount();
115
116         /* Only update these when someone wants to see them, more efficient */
117         if ((unsigned int)ServerInstance->LocalUserCount() > max_local)
118                 max_local = ServerInstance->LocalUserCount();
119         if (n_users > max_global)
120                 max_global = n_users;
121
122         unsigned int ulined_count = 0;
123         unsigned int ulined_local_count = 0;
124
125         /* If ulined are hidden and we're not an oper, count the number of ulined servers hidden,
126          * locally and globally (locally means directly connected to us)
127          */
128         if ((Utils->HideULines) && (!*user->oper))
129         {
130                 for (server_hash::iterator q = Utils->serverlist.begin(); q != Utils->serverlist.end(); q++)
131                 {
132                         if (ServerInstance->ULine(q->second->GetName().c_str()))
133                         {
134                                 ulined_count++;
135                                 if (q->second->GetParent() == Utils->TreeRoot)
136                                         ulined_local_count++;
137                         }
138                 }
139         }
140         user->WriteServ("251 %s :There are %d users and %d invisible on %d servers",user->nick,
141                         n_users-ServerInstance->InvisibleUserCount(),
142                         ServerInstance->InvisibleUserCount(),
143                         ulined_count ? this->CountServs() - ulined_count : this->CountServs());
144
145         if (ServerInstance->OperCount())
146                 user->WriteServ("252 %s %d :operator(s) online",user->nick,ServerInstance->OperCount());
147
148         if (ServerInstance->UnregisteredUserCount())
149                 user->WriteServ("253 %s %d :unknown connections",user->nick,ServerInstance->UnregisteredUserCount());
150         
151         if (ServerInstance->ChannelCount())
152                 user->WriteServ("254 %s %d :channels formed",user->nick,ServerInstance->ChannelCount());
153         
154         user->WriteServ("255 %s :I have %d clients and %d servers",user->nick,ServerInstance->LocalUserCount(),ulined_local_count ? this->CountLocalServs() - ulined_local_count : this->CountLocalServs());
155         user->WriteServ("265 %s :Current Local Users: %d  Max: %d",user->nick,ServerInstance->LocalUserCount(),max_local);
156         user->WriteServ("266 %s :Current Global Users: %d  Max: %d",user->nick,n_users,max_global);
157         return;
158 }
159
160 std::string ModuleSpanningTree::TimeToStr(time_t secs)
161 {
162         time_t mins_up = secs / 60;
163         time_t hours_up = mins_up / 60;
164         time_t days_up = hours_up / 24;
165         secs = secs % 60;
166         mins_up = mins_up % 60;
167         hours_up = hours_up % 24;
168         return ((days_up ? (ConvToStr(days_up) + "d") : std::string(""))
169                         + (hours_up ? (ConvToStr(hours_up) + "h") : std::string(""))
170                         + (mins_up ? (ConvToStr(mins_up) + "m") : std::string(""))
171                         + ConvToStr(secs) + "s");
172 }
173
174 const std::string ModuleSpanningTree::MapOperInfo(TreeServer* Current)
175 {
176         time_t secs_up = ServerInstance->Time() - Current->age;
177         return (" [Up: " + TimeToStr(secs_up) + " Lag: "+ConvToStr(Current->rtt)+"s]");
178 }
179
180 // WARNING: NOT THREAD SAFE - DONT GET ANY SMART IDEAS.
181 void ModuleSpanningTree::ShowMap(TreeServer* Current, userrec* user, int depth, char matrix[128][128], float &totusers, float &totservers)
182 {
183         if (line < 128)
184         {
185                 for (int t = 0; t < depth; t++)
186                 {
187                         matrix[line][t] = ' ';
188                 }
189                 // For Aligning, we need to work out exactly how deep this thing is, and produce
190                 // a 'Spacer' String to compensate.
191                 char spacer[40];
192                 memset(spacer,' ',40);
193                 if ((40 - Current->GetName().length() - depth) > 1) {
194                         spacer[40 - Current->GetName().length() - depth] = '\0';
195                 }
196                 else
197                 {
198                         spacer[5] = '\0';
199                 }
200                 float percent;
201                 char text[128];
202                 /* Neat and tidy default values, as we're dealing with a matrix not a simple string */
203                 memset(text, 0, 128);
204
205                 if (ServerInstance->clientlist->size() == 0) {
206                         // If there are no users, WHO THE HELL DID THE /MAP?!?!?!
207                         percent = 0;
208                 }
209                 else
210                 {
211                         percent = ((float)Current->GetUserCount() / (float)ServerInstance->clientlist->size()) * 100;
212                 }
213                 const std::string operdata = IS_OPER(user) ? MapOperInfo(Current) : "";
214                 snprintf(text, 126, "%s %s%5d [%5.2f%%]%s", Current->GetName().c_str(), spacer, Current->GetUserCount(), percent, operdata.c_str());
215                 totusers += Current->GetUserCount();
216                 totservers++;
217                 strlcpy(&matrix[line][depth],text,126);
218                 line++;
219                 for (unsigned int q = 0; q < Current->ChildCount(); q++)
220                 {
221                         if ((Current->GetChild(q)->Hidden) || ((Utils->HideULines) && (ServerInstance->ULine(Current->GetChild(q)->GetName().c_str()))))
222                         {
223                                 if (*user->oper)
224                                 {
225                                         ShowMap(Current->GetChild(q),user,(Utils->FlatLinks && (!*user->oper)) ? depth : depth+2,matrix,totusers,totservers);
226                                 }
227                         }
228                         else
229                         {
230                                 ShowMap(Current->GetChild(q),user,(Utils->FlatLinks && (!*user->oper)) ? depth : depth+2,matrix,totusers,totservers);
231                         }
232                 }
233         }
234 }
235
236 int ModuleSpanningTree::HandleMotd(const char** parameters, int pcnt, userrec* user)
237 {
238         if (pcnt > 0)
239         {
240                 if (match(ServerInstance->Config->ServerName, parameters[0]))
241                         return 0;
242
243                 /* Remote MOTD, the server is within the 1st parameter */
244                 std::deque<std::string> params;
245                 params.push_back(parameters[0]);
246                 /* Send it out remotely, generate no reply yet */
247                 TreeServer* s = Utils->FindServerMask(parameters[0]);
248                 if (s)
249                 {
250                         params[0] = s->GetName();
251                         Utils->DoOneToOne(user->nick, "MOTD", params, s->GetName());
252                 }
253                 else
254                         user->WriteServ( "402 %s %s :No such server", user->nick, parameters[0]);
255                 return 1;
256         }
257         return 0;
258 }
259
260 int ModuleSpanningTree::HandleAdmin(const char** parameters, int pcnt, userrec* user)
261 {
262         if (pcnt > 0)
263         {
264                 if (match(ServerInstance->Config->ServerName, parameters[0]))
265                         return 0;
266
267                 /* Remote ADMIN, the server is within the 1st parameter */
268                 std::deque<std::string> params;
269                 params.push_back(parameters[0]);
270                 /* Send it out remotely, generate no reply yet */
271                 TreeServer* s = Utils->FindServerMask(parameters[0]);
272                 if (s)
273                 {
274                         params[0] = s->GetName();
275                         Utils->DoOneToOne(user->nick, "ADMIN", params, s->GetName());
276                 }
277                 else
278                         user->WriteServ( "402 %s %s :No such server", user->nick, parameters[0]);
279                 return 1;
280         }
281         return 0;
282 }
283
284 int ModuleSpanningTree::HandleModules(const char** parameters, int pcnt, userrec* user)
285 {
286         if (pcnt > 0)
287         {
288                 if (match(ServerInstance->Config->ServerName, parameters[0]))
289                         return 0;
290
291                 std::deque<std::string> params;
292                 params.push_back(parameters[0]);
293                 TreeServer* s = Utils->FindServerMask(parameters[0]);
294                 if (s)
295                 {
296                         params[0] = s->GetName();
297                         Utils->DoOneToOne(user->nick, "MODULES", params, s->GetName());
298                 }
299                 else
300                         user->WriteServ( "402 %s %s :No such server", user->nick, parameters[0]);
301                 return 1;
302         }
303         return 0;
304 }
305
306 int ModuleSpanningTree::HandleStats(const char** parameters, int pcnt, userrec* user)
307 {
308         if (pcnt > 1)
309         {
310                 if (match(ServerInstance->Config->ServerName, parameters[1]))
311                         return 0;
312
313                 /* Remote STATS, the server is within the 2nd parameter */
314                 std::deque<std::string> params;
315                 params.push_back(parameters[0]);
316                 params.push_back(parameters[1]);
317                 /* Send it out remotely, generate no reply yet */
318
319                 TreeServer* s = Utils->FindServerMask(parameters[1]);
320                 if (s)
321                 {
322                         params[1] = s->GetName();
323                         Utils->DoOneToOne(user->nick, "STATS", params, s->GetName());
324                 }
325                 else
326                 {
327                         user->WriteServ( "402 %s %s :No such server", user->nick, parameters[1]);
328                 }
329                 return 1;
330         }
331         return 0;
332 }
333
334 // Ok, prepare to be confused.
335 // After much mulling over how to approach this, it struck me that
336 // the 'usual' way of doing a /MAP isnt the best way. Instead of
337 // keeping track of a ton of ascii characters, and line by line
338 // under recursion working out where to place them using multiplications
339 // and divisons, we instead render the map onto a backplane of characters
340 // (a character matrix), then draw the branches as a series of "L" shapes
341 // from the nodes. This is not only friendlier on CPU it uses less stack.
342 void ModuleSpanningTree::HandleMap(const char** parameters, int pcnt, userrec* user)
343 {
344         // This array represents a virtual screen which we will
345         // "scratch" draw to, as the console device of an irc
346         // client does not provide for a proper terminal.
347         float totusers = 0;
348         float totservers = 0;
349         char matrix[128][128];
350         for (unsigned int t = 0; t < 128; t++)
351         {
352                 matrix[t][0] = '\0';
353         }
354         line = 0;
355         // The only recursive bit is called here.
356         ShowMap(Utils->TreeRoot,user,0,matrix,totusers,totservers);
357         // Process each line one by one. The algorithm has a limit of
358         // 128 servers (which is far more than a spanning tree should have
359         // anyway, so we're ok). This limit can be raised simply by making
360         // the character matrix deeper, 128 rows taking 10k of memory.
361         for (int l = 1; l < line; l++)
362         {
363                 // scan across the line looking for the start of the
364                 // servername (the recursive part of the algorithm has placed
365                 // the servers at indented positions depending on what they
366                 // are related to)
367                 int first_nonspace = 0;
368                 while (matrix[l][first_nonspace] == ' ')
369                 {
370                         first_nonspace++;
371                 }
372                 first_nonspace--;
373                 // Draw the `- (corner) section: this may be overwritten by
374                 // another L shape passing along the same vertical pane, becoming
375                 // a |- (branch) section instead.
376                 matrix[l][first_nonspace] = '-';
377                 matrix[l][first_nonspace-1] = '`';
378                 int l2 = l - 1;
379                 // Draw upwards until we hit the parent server, causing possibly
380                 // other corners (`-) to become branches (|-)
381                 while ((matrix[l2][first_nonspace-1] == ' ') || (matrix[l2][first_nonspace-1] == '`'))
382                 {
383                         matrix[l2][first_nonspace-1] = '|';
384                         l2--;
385                 }
386         }
387         // dump the whole lot to the user. This is the easy bit, honest.
388         for (int t = 0; t < line; t++)
389         {
390                 user->WriteServ("006 %s :%s",user->nick,&matrix[t][0]);
391         }
392         float avg_users = totusers / totservers;
393         user->WriteServ("270 %s :%.0f server%s and %.0f user%s, average %.2f users per server",user->nick,totservers,(totservers > 1 ? "s" : ""),totusers,(totusers > 1 ? "s" : ""),avg_users);
394         user->WriteServ("007 %s :End of /MAP",user->nick);
395         return;
396 }
397
398 int ModuleSpanningTree::HandleSquit(const char** parameters, int pcnt, userrec* user)
399 {
400         TreeServer* s = Utils->FindServerMask(parameters[0]);
401         if (s)
402         {
403                 if (s == Utils->TreeRoot)
404                 {
405                         user->WriteServ("NOTICE %s :*** SQUIT: Foolish mortal, you cannot make a server SQUIT itself! (%s matches local server name)",user->nick,parameters[0]);
406                         return 1;
407                 }
408                 TreeSocket* sock = s->GetSocket();
409                 if (sock)
410                 {
411                         ServerInstance->SNO->WriteToSnoMask('l',"SQUIT: Server \002%s\002 removed from network by %s",parameters[0],user->nick);
412                         sock->Squit(s,std::string("Server quit by ") + user->GetFullRealHost());
413                         ServerInstance->SE->DelFd(sock);
414                         sock->Close();
415                 }
416                 else
417                 {
418                         if (IS_LOCAL(user))
419                                 user->WriteServ("NOTICE %s :*** WARNING: Using SQUIT to split remote servers is deprecated. Please use RSQUIT instead.",user->nick);
420                 }
421         }
422         else
423         {
424                  user->WriteServ("NOTICE %s :*** SQUIT: The server \002%s\002 does not exist on the network.",user->nick,parameters[0]);
425         }
426         return 1;
427 }
428
429 int ModuleSpanningTree::HandleTime(const char** parameters, int pcnt, userrec* user)
430 {
431         if ((IS_LOCAL(user)) && (pcnt))
432         {
433                 TreeServer* found = Utils->FindServerMask(parameters[0]);
434                 if (found)
435                 {
436                         // we dont' override for local server
437                         if (found == Utils->TreeRoot)
438                                 return 0;
439                         
440                         std::deque<std::string> params;
441                         params.push_back(found->GetName());
442                         params.push_back(user->nick);
443                         Utils->DoOneToOne(ServerInstance->Config->ServerName,"TIME",params,found->GetName());
444                 }
445                 else
446                 {
447                         user->WriteServ("402 %s %s :No such server",user->nick,parameters[0]);
448                 }
449         }
450         return 1;
451 }
452
453 int ModuleSpanningTree::HandleRemoteWhois(const char** parameters, int pcnt, userrec* user)
454 {
455         if ((IS_LOCAL(user)) && (pcnt > 1))
456         {
457                 userrec* remote = ServerInstance->FindNick(parameters[1]);
458                 if ((remote) && (remote->GetFd() < 0))
459                 {
460                         std::deque<std::string> params;
461                         params.push_back(parameters[1]);
462                         Utils->DoOneToOne(user->nick,"IDLE",params,remote->server);
463                         return 1;
464                 }
465                 else if (!remote)
466                 {
467                         user->WriteServ("401 %s %s :No such nick/channel",user->nick, parameters[1]);
468                         user->WriteServ("318 %s %s :End of /WHOIS list.",user->nick, parameters[1]);
469                         return 1;
470                 }
471         }
472         return 0;
473 }
474
475 void ModuleSpanningTree::DoPingChecks(time_t curtime)
476 {
477         for (unsigned int j = 0; j < Utils->TreeRoot->ChildCount(); j++)
478         {
479                 TreeServer* serv = Utils->TreeRoot->GetChild(j);
480                 TreeSocket* sock = serv->GetSocket();
481                 if (sock)
482                 {
483                         if (curtime >= serv->NextPingTime())
484                         {
485                                 if (serv->AnsweredLastPing())
486                                 {
487                                         sock->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" PING "+serv->GetName());
488                                         serv->SetNextPingTime(curtime + 60);
489                                         serv->LastPing = curtime;
490                                         serv->Warned = false;
491                                 }
492                                 else
493                                 {
494                                         /* they didnt answer, boot them */
495                                         sock->SendError("Ping timeout");
496                                         sock->Squit(serv,"Ping timeout");
497                                         ServerInstance->SE->DelFd(sock);
498                                         sock->Close();
499                                         return;
500                                 }
501                         }
502                         else if ((Utils->PingWarnTime) && (!serv->Warned) && (curtime >= serv->NextPingTime() - (60 - Utils->PingWarnTime)) && (!serv->AnsweredLastPing()))
503                         {
504                                 /* The server hasnt responded, send a warning to opers */
505                                 ServerInstance->SNO->WriteToSnoMask('l',"Server \002%s\002 has not responded to PING for %d seconds, high latency.", serv->GetName().c_str(), Utils->PingWarnTime);
506                                 serv->Warned = true;
507                         }
508                 }
509         }
510
511         /* Cancel remote burst mode on any servers which still have it enabled due to latency/lack of data.
512          * This prevents lost REMOTECONNECT notices
513          */
514         for (server_hash::iterator i = Utils->serverlist.begin(); i != Utils->serverlist.end(); i++)
515                 Utils->SetRemoteBursting(i->second, false);
516 }
517
518 void ModuleSpanningTree::ConnectServer(Link* x)
519 {
520         bool ipvalid = true;
521         QueryType start_type = DNS_QUERY_A;
522 #ifdef IPV6
523         start_type = DNS_QUERY_AAAA;
524         if (strchr(x->IPAddr.c_str(),':'))
525         {
526                 in6_addr n;
527                 if (inet_pton(AF_INET6, x->IPAddr.c_str(), &n) < 1)
528                         ipvalid = false;
529         }
530         else
531 #endif
532         {
533                 in_addr n;
534                 if (inet_aton(x->IPAddr.c_str(),&n) < 1)
535                         ipvalid = false;
536         }
537
538         /* Do we already have an IP? If so, no need to resolve it. */
539         if (ipvalid)
540         {
541                 /* Gave a hook, but it wasnt one we know */
542                 if ((!x->Hook.empty()) && (Utils->hooks.find(x->Hook.c_str()) == Utils->hooks.end()))
543                         return;
544                 TreeSocket* newsocket = new TreeSocket(Utils, ServerInstance, x->IPAddr,x->Port,false,x->Timeout ? x->Timeout : 10,x->Name.c_str(), x->Bind, x->Hook.empty() ? NULL : Utils->hooks[x->Hook.c_str()]);
545                 if (newsocket->GetFd() > -1)
546                 {
547                         /* Handled automatically on success */
548                 }
549                 else
550                 {
551                         ServerInstance->SNO->WriteToSnoMask('l',"CONNECT: Error connecting \002%s\002: %s.",x->Name.c_str(),strerror(errno));
552                         delete newsocket;
553                         Utils->DoFailOver(x);
554                 }
555         }
556         else
557         {
558                 try
559                 {
560                         bool cached;
561                         ServernameResolver* snr = new ServernameResolver((Module*)this, Utils, ServerInstance,x->IPAddr, *x, cached, start_type);
562                         ServerInstance->AddResolver(snr, cached);
563                 }
564                 catch (ModuleException& e)
565                 {
566                         ServerInstance->SNO->WriteToSnoMask('l',"CONNECT: Error connecting \002%s\002: %s.",x->Name.c_str(), e.GetReason());
567                         Utils->DoFailOver(x);
568                 }
569         }
570 }
571
572 void ModuleSpanningTree::AutoConnectServers(time_t curtime)
573 {
574         for (std::vector<Link>::iterator x = Utils->LinkBlocks.begin(); x < Utils->LinkBlocks.end(); x++)
575         {
576                 if ((x->AutoConnect) && (curtime >= x->NextConnectTime))
577                 {
578                         x->NextConnectTime = curtime + x->AutoConnect;
579                         TreeServer* CheckDupe = Utils->FindServer(x->Name.c_str());
580                         if (x->FailOver.length())
581                         {
582                                 TreeServer* CheckFailOver = Utils->FindServer(x->FailOver.c_str());
583                                 if (CheckFailOver)
584                                 {
585                                         /* The failover for this server is currently a member of the network.
586                                          * The failover probably succeeded, where the main link did not.
587                                          * Don't try the main link until the failover is gone again.
588                                          */
589                                         continue;
590                                 }
591                         }
592                         if (!CheckDupe)
593                         {
594                                 // an autoconnected server is not connected. Check if its time to connect it
595                                 ServerInstance->SNO->WriteToSnoMask('l',"AUTOCONNECT: Auto-connecting server \002%s\002 (%lu seconds until next attempt)",x->Name.c_str(),x->AutoConnect);
596                                 this->ConnectServer(&(*x));
597                         }
598                 }
599         }
600 }
601
602 int ModuleSpanningTree::HandleVersion(const char** parameters, int pcnt, userrec* user)
603 {
604         // we've already checked if pcnt > 0, so this is safe
605         TreeServer* found = Utils->FindServerMask(parameters[0]);
606         if (found)
607         {
608                 std::string Version = found->GetVersion();
609                 user->WriteServ("351 %s :%s",user->nick,Version.c_str());
610                 if (found == Utils->TreeRoot)
611                 {
612                         ServerInstance->Config->Send005(user);
613                 }
614         }
615         else
616         {
617                 user->WriteServ("402 %s %s :No such server",user->nick,parameters[0]);
618         }
619         return 1;
620 }
621         
622 int ModuleSpanningTree::HandleConnect(const char** parameters, int pcnt, userrec* user)
623 {
624         for (std::vector<Link>::iterator x = Utils->LinkBlocks.begin(); x < Utils->LinkBlocks.end(); x++)
625         {
626                 if (ServerInstance->MatchText(x->Name.c_str(),parameters[0]))
627                 {
628                         TreeServer* CheckDupe = Utils->FindServer(x->Name.c_str());
629                         if (!CheckDupe)
630                         {
631                                 user->WriteServ("NOTICE %s :*** CONNECT: Connecting to server: \002%s\002 (%s:%d)",user->nick,x->Name.c_str(),(x->HiddenFromStats ? "<hidden>" : x->IPAddr.c_str()),x->Port);
632                                 ConnectServer(&(*x));
633                                 return 1;
634                         }
635                         else
636                         {
637                                 user->WriteServ("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());
638                                 return 1;
639                         }
640                 }
641         }
642         user->WriteServ("NOTICE %s :*** CONNECT: No server matching \002%s\002 could be found in the config file.",user->nick,parameters[0]);
643         return 1;
644 }
645
646 void ModuleSpanningTree::BroadcastTimeSync()
647 {
648         if (Utils->MasterTime)
649         {
650                 std::deque<std::string> params;
651                 params.push_back(ConvToStr(ServerInstance->Time(false)));
652                 params.push_back("FORCE");
653                 Utils->DoOneToMany(Utils->TreeRoot->GetName(), "TIMESET", params);
654         }
655 }
656
657 int ModuleSpanningTree::OnStats(char statschar, userrec* user, string_list &results)
658 {
659         if ((statschar == 'c') || (statschar == 'n'))
660         {
661                 for (unsigned int i = 0; i < Utils->LinkBlocks.size(); i++)
662                 {
663                         results.push_back(std::string(ServerInstance->Config->ServerName)+" 213 "+user->nick+" "+statschar+" *@"+(Utils->LinkBlocks[i].HiddenFromStats ? "<hidden>" : Utils->LinkBlocks[i].IPAddr)+" * "+Utils->LinkBlocks[i].Name.c_str()+" "+ConvToStr(Utils->LinkBlocks[i].Port)+" "+(Utils->LinkBlocks[i].Hook.empty() ? "plaintext" : Utils->LinkBlocks[i].Hook)+" "+(Utils->LinkBlocks[i].AutoConnect ? 'a' : '-')+'s');
664                         if (statschar == 'c')
665                                 results.push_back(std::string(ServerInstance->Config->ServerName)+" 244 "+user->nick+" H * * "+Utils->LinkBlocks[i].Name.c_str());
666                 }
667                 results.push_back(std::string(ServerInstance->Config->ServerName)+" 219 "+user->nick+" "+statschar+" :End of /STATS report");
668                 ServerInstance->SNO->WriteToSnoMask('t',"%s '%c' requested by %s (%s@%s)",(!strcmp(user->server,ServerInstance->Config->ServerName) ? "Stats" : "Remote stats"),statschar,user->nick,user->ident,user->host);
669                 return 1;
670         }
671
672         if (statschar == 'p')
673         {
674                 /* show all server ports, after showing client ports. -- w00t */
675
676                 for (unsigned int i = 0; i < Utils->Bindings.size(); i++)
677                 {
678                         std::string ip = Utils->Bindings[i]->IP;
679                         if (ip.empty())
680                                 ip = "*";
681
682                         std::string transport("plaintext");
683                         if (Utils->Bindings[i]->GetHook())
684                                 transport = InspSocketNameRequest(this, Utils->Bindings[i]->GetHook()).Send();
685
686                         results.push_back(ConvToStr(ServerInstance->Config->ServerName) + " 249 "+user->nick+" :" + ip + ":" + ConvToStr(Utils->Bindings[i]->port)+
687                                 " (server, " + transport + ")");
688                 }
689         }
690         return 0;
691 }
692
693 int ModuleSpanningTree::OnPreCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, bool validated, const std::string &original_line)
694 {
695         /* If the command doesnt appear to be valid, we dont want to mess with it. */
696         if (!validated)
697                 return 0;
698
699         if (command == "CONNECT")
700         {
701                 return this->HandleConnect(parameters,pcnt,user);
702         }
703         else if (command == "STATS")
704         {
705                 return this->HandleStats(parameters,pcnt,user);
706         }
707         else if (command == "MOTD")
708         {
709                 return this->HandleMotd(parameters,pcnt,user);
710         }
711         else if (command == "ADMIN")
712         {
713                 return this->HandleAdmin(parameters,pcnt,user);
714         }
715         else if (command == "SQUIT")
716         {
717                 return this->HandleSquit(parameters,pcnt,user);
718         }
719         else if (command == "MAP")
720         {
721                 this->HandleMap(parameters,pcnt,user);
722                 return 1;
723         }
724         else if ((command == "TIME") && (pcnt > 0))
725         {
726                 return this->HandleTime(parameters,pcnt,user);
727         }
728         else if (command == "LUSERS")
729         {
730                 this->HandleLusers(parameters,pcnt,user);
731                 return 1;
732         }
733         else if (command == "LINKS")
734         {
735                 this->HandleLinks(parameters,pcnt,user);
736                 return 1;
737         }
738         else if (command == "WHOIS")
739         {
740                 if (pcnt > 1)
741                 {
742                         // remote whois
743                         return this->HandleRemoteWhois(parameters,pcnt,user);
744                 }
745         }
746         else if ((command == "VERSION") && (pcnt > 0))
747         {
748                 this->HandleVersion(parameters,pcnt,user);
749                 return 1;
750         }
751         else if ((command == "MODULES") && (pcnt > 0))
752         {
753                 return this->HandleModules(parameters,pcnt,user);
754         }
755         return 0;
756 }
757
758 void ModuleSpanningTree::OnPostCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, CmdResult result, const std::string &original_line)
759 {
760         if ((result == CMD_SUCCESS) && (ServerInstance->IsValidModuleCommand(command, pcnt, user)))
761         {
762                 // this bit of code cleverly routes all module commands
763                 // to all remote severs *automatically* so that modules
764                 // can just handle commands locally, without having
765                 // to have any special provision in place for remote
766                 // commands and linking protocols.
767                 std::deque<std::string> params;
768                 params.clear();
769                 for (int j = 0; j < pcnt; j++)
770                 {
771                         if (strchr(parameters[j],' '))
772                         {
773                                 params.push_back(":" + std::string(parameters[j]));
774                         }
775                         else
776                         {
777                                 params.push_back(std::string(parameters[j]));
778                         }
779                 }
780                 Utils->DoOneToMany(user->nick,command,params);
781         }
782 }
783
784 void ModuleSpanningTree::OnGetServerDescription(const std::string &servername,std::string &description)
785 {
786         TreeServer* s = Utils->FindServer(servername);
787         if (s)
788         {
789                 description = s->GetDesc();
790         }
791 }
792
793 void ModuleSpanningTree::OnUserInvite(userrec* source,userrec* dest,chanrec* channel)
794 {
795         if (IS_LOCAL(source))
796         {
797                 std::deque<std::string> params;
798                 params.push_back(dest->nick);
799                 params.push_back(channel->name);
800                 Utils->DoOneToMany(source->nick,"INVITE",params);
801         }
802 }
803
804 void ModuleSpanningTree::OnPostLocalTopicChange(userrec* user, chanrec* chan, const std::string &topic)
805 {
806         std::deque<std::string> params;
807         params.push_back(chan->name);
808         params.push_back(":"+topic);
809         Utils->DoOneToMany(user->nick,"TOPIC",params);
810 }
811
812 void ModuleSpanningTree::OnWallops(userrec* user, const std::string &text)
813 {
814         if (IS_LOCAL(user))
815         {
816                 std::deque<std::string> params;
817                 params.push_back(":"+text);
818                 Utils->DoOneToMany(user->nick,"WALLOPS",params);
819         }
820 }
821
822 void ModuleSpanningTree::OnUserNotice(userrec* user, void* dest, int target_type, const std::string &text, char status, const CUList &exempt_list)
823 {
824         if (target_type == TYPE_USER)
825         {
826                 userrec* d = (userrec*)dest;
827                 if ((d->GetFd() < 0) && (IS_LOCAL(user)))
828                 {
829                         std::deque<std::string> params;
830                         params.clear();
831                         params.push_back(d->nick);
832                         params.push_back(":"+text);
833                         Utils->DoOneToOne(user->nick,"NOTICE",params,d->server);
834                 }
835         }
836         else if (target_type == TYPE_CHANNEL)
837         {
838                 if (IS_LOCAL(user))
839                 {
840                         chanrec *c = (chanrec*)dest;
841                         if (c)
842                         {
843                                 std::string cname = c->name;
844                                 if (status)
845                                         cname = status + cname;
846                                 TreeServerList list;
847                                 Utils->GetListOfServersForChannel(c,list,status,exempt_list);
848                                 for (TreeServerList::iterator i = list.begin(); i != list.end(); i++)
849                                 {
850                                         TreeSocket* Sock = i->second->GetSocket();
851                                         if (Sock)
852                                                 Sock->WriteLine(":"+std::string(user->nick)+" NOTICE "+cname+" :"+text);
853                                 }
854                         }
855                 }
856         }
857         else if (target_type == TYPE_SERVER)
858         {
859                 if (IS_LOCAL(user))
860                 {
861                         char* target = (char*)dest;
862                         std::deque<std::string> par;
863                         par.push_back(target);
864                         par.push_back(":"+text);
865                         Utils->DoOneToMany(user->nick,"NOTICE",par);
866                 }
867         }
868 }
869
870 void ModuleSpanningTree::OnUserMessage(userrec* user, void* dest, int target_type, const std::string &text, char status, const CUList &exempt_list)
871 {
872         if (target_type == TYPE_USER)
873         {
874                 // route private messages which are targetted at clients only to the server
875                 // which needs to receive them
876                 userrec* d = (userrec*)dest;
877                 if ((d->GetFd() < 0) && (IS_LOCAL(user)))
878                 {
879                         std::deque<std::string> params;
880                         params.clear();
881                         params.push_back(d->nick);
882                         params.push_back(":"+text);
883                         Utils->DoOneToOne(user->nick,"PRIVMSG",params,d->server);
884                 }
885         }
886         else if (target_type == TYPE_CHANNEL)
887         {
888                 if (IS_LOCAL(user))
889                 {
890                         chanrec *c = (chanrec*)dest;
891                         if (c)
892                         {
893                                 std::string cname = c->name;
894                                 if (status)
895                                         cname = status + cname;
896                                 TreeServerList list;
897                                 Utils->GetListOfServersForChannel(c,list,status,exempt_list);
898                                 for (TreeServerList::iterator i = list.begin(); i != list.end(); i++)
899                                 {
900                                         TreeSocket* Sock = i->second->GetSocket();
901                                         if (Sock)
902                                                 Sock->WriteLine(":"+std::string(user->nick)+" PRIVMSG "+cname+" :"+text);
903                                 }
904                         }
905                 }
906         }
907         else if (target_type == TYPE_SERVER)
908         {
909                 if (IS_LOCAL(user))
910                 {
911                         char* target = (char*)dest;
912                         std::deque<std::string> par;
913                         par.push_back(target);
914                         par.push_back(":"+text);
915                         Utils->DoOneToMany(user->nick,"PRIVMSG",par);
916                 }
917         }
918 }
919
920 void ModuleSpanningTree::OnBackgroundTimer(time_t curtime)
921 {
922         AutoConnectServers(curtime);
923         DoPingChecks(curtime);
924 }
925
926 void ModuleSpanningTree::OnUserJoin(userrec* user, chanrec* channel, bool &silent)
927 {
928         // Only do this for local users
929         if (IS_LOCAL(user))
930         {
931                 if (channel->GetUserCounter() == 1)
932                 {
933                         std::deque<std::string> params;
934                         // set up their permissions and the channel TS with FJOIN.
935                         // All users are FJOINed now, because a module may specify
936                         // new joining permissions for the user.
937                         params.push_back(channel->name);
938                         params.push_back(ConvToStr(channel->age));
939                         params.push_back(std::string(channel->GetAllPrefixChars(user))+","+std::string(user->nick));
940                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"FJOIN",params);
941                         /* First user in, sync the modes for the channel */
942                         params.pop_back();
943                         params.push_back(channel->ChanModes(true));
944                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"FMODE",params);
945                 }
946                 else
947                 {
948                         std::deque<std::string> params;
949                         params.push_back(channel->name);
950                         params.push_back(ConvToStr(channel->age));
951                         Utils->DoOneToMany(user->nick,"JOIN",params);
952                 }
953         }
954 }
955
956 void ModuleSpanningTree::OnChangeHost(userrec* user, const std::string &newhost)
957 {
958         // only occurs for local clients
959         if (user->registered != REG_ALL)
960                 return;
961         std::deque<std::string> params;
962         params.push_back(newhost);
963         Utils->DoOneToMany(user->nick,"FHOST",params);
964 }
965
966 void ModuleSpanningTree::OnChangeName(userrec* user, const std::string &gecos)
967 {
968         // only occurs for local clients
969         if (user->registered != REG_ALL)
970                 return;
971         std::deque<std::string> params;
972         params.push_back(gecos);
973         Utils->DoOneToMany(user->nick,"FNAME",params);
974 }
975
976 void ModuleSpanningTree::OnUserPart(userrec* user, chanrec* channel, const std::string &partmessage, bool &silent)
977 {
978         if (IS_LOCAL(user))
979         {
980                 std::deque<std::string> params;
981                 params.push_back(channel->name);
982                 if (!partmessage.empty())
983                         params.push_back(":"+partmessage);
984                 Utils->DoOneToMany(user->nick,"PART",params);
985         }
986 }
987
988 void ModuleSpanningTree::OnUserConnect(userrec* user)
989 {
990         char agestr[MAXBUF];
991         if (IS_LOCAL(user))
992         {
993                 std::deque<std::string> params;
994                 snprintf(agestr,MAXBUF,"%lu",(unsigned long)user->age);
995                 params.push_back(agestr);
996                 params.push_back(user->nick);
997                 params.push_back(user->host);
998                 params.push_back(user->dhost);
999                 params.push_back(user->ident);
1000                 params.push_back("+"+std::string(user->FormatModes()));
1001                 params.push_back(user->GetIPString());
1002                 params.push_back(":"+std::string(user->fullname));
1003                 Utils->DoOneToMany(ServerInstance->Config->ServerName,"NICK",params);
1004                 // User is Local, change needs to be reflected!
1005                 TreeServer* SourceServer = Utils->FindServer(user->server);
1006                 if (SourceServer)
1007                 {
1008                         SourceServer->AddUserCount();
1009                 }
1010         }
1011 }
1012
1013 void ModuleSpanningTree::OnUserQuit(userrec* user, const std::string &reason, const std::string &oper_message)
1014 {
1015         if ((IS_LOCAL(user)) && (user->registered == REG_ALL))
1016         {
1017                 std::deque<std::string> params;
1018
1019                 if (oper_message != reason)
1020                 {
1021                         params.push_back(":"+oper_message);
1022                         Utils->DoOneToMany(user->nick,"OPERQUIT",params);
1023                 }
1024                 params.clear();
1025                 params.push_back(":"+reason);
1026                 Utils->DoOneToMany(user->nick,"QUIT",params);
1027         }
1028         // Regardless, We need to modify the user Counts..
1029         TreeServer* SourceServer = Utils->FindServer(user->server);
1030         if (SourceServer)
1031         {
1032                 SourceServer->DelUserCount();
1033         }
1034 }
1035
1036 void ModuleSpanningTree::OnUserPostNick(userrec* user, const std::string &oldnick)
1037 {
1038         if (IS_LOCAL(user))
1039         {
1040                 std::deque<std::string> params;
1041                 params.push_back(user->nick);
1042                 Utils->DoOneToMany(oldnick,"NICK",params);
1043         }
1044 }
1045
1046 void ModuleSpanningTree::OnUserKick(userrec* source, userrec* user, chanrec* chan, const std::string &reason, bool &silent)
1047 {
1048         if ((source) && (IS_LOCAL(source)))
1049         {
1050                 std::deque<std::string> params;
1051                 params.push_back(chan->name);
1052                 params.push_back(user->nick);
1053                 params.push_back(":"+reason);
1054                 Utils->DoOneToMany(source->nick,"KICK",params);
1055         }
1056         else if (!source)
1057         {
1058                 std::deque<std::string> params;
1059                 params.push_back(chan->name);
1060                 params.push_back(user->nick);
1061                 params.push_back(":"+reason);
1062                 Utils->DoOneToMany(ServerInstance->Config->ServerName,"KICK",params);
1063         }
1064 }
1065
1066 void ModuleSpanningTree::OnRemoteKill(userrec* source, userrec* dest, const std::string &reason, const std::string &operreason)
1067 {
1068         std::deque<std::string> params;
1069         params.push_back(":"+reason);
1070         Utils->DoOneToMany(dest->nick,"OPERQUIT",params);
1071         params.clear();
1072         params.push_back(dest->nick);
1073         params.push_back(":"+reason);
1074         dest->SetOperQuit(operreason);
1075         Utils->DoOneToMany(source->nick,"KILL",params);
1076 }
1077
1078 void ModuleSpanningTree::OnRehash(userrec* user, const std::string &parameter)
1079 {
1080         if (!parameter.empty())
1081         {
1082                 std::deque<std::string> params;
1083                 params.push_back(parameter);
1084                 Utils->DoOneToMany(user ? user->nick : ServerInstance->Config->ServerName, "REHASH", params);
1085                 // check for self
1086                 if (ServerInstance->MatchText(ServerInstance->Config->ServerName,parameter))
1087                 {
1088                         ServerInstance->WriteOpers("*** Remote rehash initiated locally by \002%s\002", user ? user->nick : ServerInstance->Config->ServerName);
1089                         ServerInstance->RehashServer();
1090                 }
1091         }
1092         Utils->ReadConfiguration(false);
1093         InitializeDisabledCommands(ServerInstance->Config->DisabledCommands, ServerInstance);
1094 }
1095
1096 // note: the protocol does not allow direct umode +o except
1097 // via NICK with 8 params. sending OPERTYPE infers +o modechange
1098 // locally.
1099 void ModuleSpanningTree::OnOper(userrec* user, const std::string &opertype)
1100 {
1101         if (IS_LOCAL(user))
1102         {
1103                 std::deque<std::string> params;
1104                 params.push_back(opertype);
1105                 Utils->DoOneToMany(user->nick,"OPERTYPE",params);
1106         }
1107 }
1108
1109 void ModuleSpanningTree::OnLine(userrec* source, const std::string &host, bool adding, char linetype, long duration, const std::string &reason)
1110 {
1111         if (!source)
1112         {
1113                 /* Server-set lines */
1114                 char data[MAXBUF];
1115                 snprintf(data,MAXBUF,"%c %s %s %lu %lu :%s", linetype, host.c_str(), ServerInstance->Config->ServerName, (unsigned long)ServerInstance->Time(false),
1116                                 (unsigned long)duration, reason.c_str());
1117                 std::deque<std::string> params;
1118                 params.push_back(data);
1119                 Utils->DoOneToMany(ServerInstance->Config->ServerName, "ADDLINE", params);
1120         }
1121         else
1122         {
1123                 if (IS_LOCAL(source))
1124                 {
1125                         char type[8];
1126                         snprintf(type,8,"%cLINE",linetype);
1127                         std::string stype = type;
1128                         if (adding)
1129                         {
1130                                 char sduration[MAXBUF];
1131                                 snprintf(sduration,MAXBUF,"%ld",duration);
1132                                 std::deque<std::string> params;
1133                                 params.push_back(host);
1134                                 params.push_back(sduration);
1135                                 params.push_back(":"+reason);
1136                                 Utils->DoOneToMany(source->nick,stype,params);
1137                         }
1138                         else
1139                         {
1140                                 std::deque<std::string> params;
1141                                 params.push_back(host);
1142                                 Utils->DoOneToMany(source->nick,stype,params);
1143                         }
1144                 }
1145         }
1146 }
1147
1148 void ModuleSpanningTree::OnAddGLine(long duration, userrec* source, const std::string &reason, const std::string &hostmask)
1149 {
1150         OnLine(source,hostmask,true,'G',duration,reason);
1151 }
1152         
1153 void ModuleSpanningTree::OnAddZLine(long duration, userrec* source, const std::string &reason, const std::string &ipmask)
1154 {
1155         OnLine(source,ipmask,true,'Z',duration,reason);
1156 }
1157
1158 void ModuleSpanningTree::OnAddQLine(long duration, userrec* source, const std::string &reason, const std::string &nickmask)
1159 {
1160         OnLine(source,nickmask,true,'Q',duration,reason);
1161 }
1162
1163 void ModuleSpanningTree::OnAddELine(long duration, userrec* source, const std::string &reason, const std::string &hostmask)
1164 {
1165         OnLine(source,hostmask,true,'E',duration,reason);
1166 }
1167
1168 void ModuleSpanningTree::OnDelGLine(userrec* source, const std::string &hostmask)
1169 {
1170         OnLine(source,hostmask,false,'G',0,"");
1171 }
1172
1173 void ModuleSpanningTree::OnDelZLine(userrec* source, const std::string &ipmask)
1174 {
1175         OnLine(source,ipmask,false,'Z',0,"");
1176 }
1177
1178 void ModuleSpanningTree::OnDelQLine(userrec* source, const std::string &nickmask)
1179 {
1180         OnLine(source,nickmask,false,'Q',0,"");
1181 }
1182
1183 void ModuleSpanningTree::OnDelELine(userrec* source, const std::string &hostmask)
1184 {
1185         OnLine(source,hostmask,false,'E',0,"");
1186 }
1187
1188 void ModuleSpanningTree::OnMode(userrec* user, void* dest, int target_type, const std::string &text)
1189 {
1190         if ((IS_LOCAL(user)) && (user->registered == REG_ALL))
1191         {
1192                 std::deque<std::string> params;
1193                 std::string command;
1194
1195                 if (target_type == TYPE_USER)
1196                 {
1197                         userrec* u = (userrec*)dest;
1198                         params.push_back(u->nick);
1199                         params.push_back(text);
1200                         command = "MODE";
1201                 }
1202                 else
1203                 {
1204                         chanrec* c = (chanrec*)dest;
1205                         params.push_back(c->name);
1206                         params.push_back(ConvToStr(c->age));
1207                         params.push_back(text);
1208                         command = "FMODE";
1209                 }
1210                 Utils->DoOneToMany(user->nick, command, params);
1211         }
1212 }
1213
1214 void ModuleSpanningTree::OnSetAway(userrec* user)
1215 {
1216         if (IS_LOCAL(user))
1217         {
1218                 std::deque<std::string> params;
1219                 params.push_back(":"+std::string(user->awaymsg));
1220                 Utils->DoOneToMany(user->nick,"AWAY",params);
1221         }
1222 }
1223
1224 void ModuleSpanningTree::OnCancelAway(userrec* user)
1225 {
1226         if (IS_LOCAL(user))
1227         {
1228                 std::deque<std::string> params;
1229                 params.clear();
1230                 Utils->DoOneToMany(user->nick,"AWAY",params);
1231         }
1232 }
1233
1234 void ModuleSpanningTree::ProtoSendMode(void* opaque, int target_type, void* target, const std::string &modeline)
1235 {
1236         TreeSocket* s = (TreeSocket*)opaque;
1237         if (target)
1238         {
1239                 if (target_type == TYPE_USER)
1240                 {
1241                         userrec* u = (userrec*)target;
1242                         s->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" FMODE "+u->nick+" "+ConvToStr(u->age)+" "+modeline);
1243                 }
1244                 else
1245                 {
1246                         chanrec* c = (chanrec*)target;
1247                         s->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" FMODE "+c->name+" "+ConvToStr(c->age)+" "+modeline);
1248                 }
1249         }
1250 }
1251
1252 void ModuleSpanningTree::ProtoSendMetaData(void* opaque, int target_type, void* target, const std::string &extname, const std::string &extdata)
1253 {
1254         TreeSocket* s = (TreeSocket*)opaque;
1255         if (target)
1256         {
1257                 if (target_type == TYPE_USER)
1258                 {
1259                         userrec* u = (userrec*)target;
1260                         s->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" METADATA "+u->nick+" "+extname+" :"+extdata);
1261                 }
1262                 else if (target_type == TYPE_CHANNEL)
1263                 {
1264                         chanrec* c = (chanrec*)target;
1265                         s->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" METADATA "+c->name+" "+extname+" :"+extdata);
1266                 }
1267         }
1268         if (target_type == TYPE_OTHER)
1269         {
1270                 s->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" METADATA * "+extname+" :"+extdata);
1271         }
1272 }
1273
1274 void ModuleSpanningTree::OnEvent(Event* event)
1275 {
1276         std::deque<std::string>* params = (std::deque<std::string>*)event->GetData();
1277         if (event->GetEventID() == "send_metadata")
1278         {
1279                 if (params->size() < 3)
1280                         return;
1281                 (*params)[2] = ":" + (*params)[2];
1282                 Utils->DoOneToMany(ServerInstance->Config->ServerName,"METADATA",*params);
1283         }
1284         else if (event->GetEventID() == "send_topic")
1285         {
1286                 if (params->size() < 2)
1287                         return;
1288                 (*params)[1] = ":" + (*params)[1];
1289                 params->insert(params->begin() + 1,ServerInstance->Config->ServerName);
1290                 params->insert(params->begin() + 1,ConvToStr(ServerInstance->Time(true)));
1291                 Utils->DoOneToMany(ServerInstance->Config->ServerName,"FTOPIC",*params);
1292         }
1293         else if (event->GetEventID() == "send_mode")
1294         {
1295                 if (params->size() < 2)
1296                         return;
1297                 // Insert the TS value of the object, either userrec or chanrec
1298                 time_t ourTS = 0;
1299                 userrec* a = ServerInstance->FindNick((*params)[0]);
1300                 if (a)
1301                 {
1302                         ourTS = a->age;
1303                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"MODE",*params);
1304                         return;
1305                 }
1306                 else
1307                 {
1308                         chanrec* a = ServerInstance->FindChan((*params)[0]);
1309                         if (a)
1310                         {
1311                                 ourTS = a->age;
1312                                 params->insert(params->begin() + 1,ConvToStr(ourTS));
1313                                 Utils->DoOneToMany(ServerInstance->Config->ServerName,"FMODE",*params);
1314                         }
1315                 }
1316         }
1317         else if (event->GetEventID() == "send_mode_explicit")
1318         {
1319                 if (params->size() < 2)
1320                         return;
1321                 Utils->DoOneToMany(ServerInstance->Config->ServerName,"MODE",*params);
1322         }
1323         else if (event->GetEventID() == "send_opers")
1324         {
1325                 if (params->size() < 1)
1326                         return;
1327                 (*params)[0] = ":" + (*params)[0];
1328                 Utils->DoOneToMany(ServerInstance->Config->ServerName,"OPERNOTICE",*params);
1329         }
1330         else if (event->GetEventID() == "send_modeset")
1331         {
1332                 if (params->size() < 2)
1333                         return;
1334                 (*params)[1] = ":" + (*params)[1];
1335                 Utils->DoOneToMany(ServerInstance->Config->ServerName,"MODENOTICE",*params);
1336         }
1337         else if (event->GetEventID() == "send_snoset")
1338         {
1339                 if (params->size() < 2)
1340                         return;
1341                 (*params)[1] = ":" + (*params)[1];
1342                 Utils->DoOneToMany(ServerInstance->Config->ServerName,"SNONOTICE",*params);
1343         }
1344         else if (event->GetEventID() == "send_push")
1345         {
1346                 if (params->size() < 2)
1347                         return;
1348                         
1349                 userrec *a = ServerInstance->FindNick((*params)[0]);
1350                         
1351                 if (!a)
1352                         return;
1353                         
1354                 (*params)[1] = ":" + (*params)[1];
1355                 Utils->DoOneToOne(ServerInstance->Config->ServerName, "PUSH", *params, a->server);
1356         }
1357 }
1358
1359 ModuleSpanningTree::~ModuleSpanningTree()
1360 {
1361         /* This will also free the listeners */
1362         delete Utils;
1363         if (SyncTimer)
1364                 ServerInstance->Timers->DelTimer(SyncTimer);
1365
1366         ServerInstance->Timers->DelTimer(RefreshTimer);
1367
1368         ServerInstance->DoneWithInterface("InspSocketHook");
1369 }
1370
1371 Version ModuleSpanningTree::GetVersion()
1372 {
1373         return Version(1,1,0,2,VF_VENDOR,API_VERSION);
1374 }
1375
1376 void ModuleSpanningTree::Implements(char* List)
1377 {
1378         List[I_OnPreCommand] = List[I_OnGetServerDescription] = List[I_OnUserInvite] = List[I_OnPostLocalTopicChange] = 1;
1379         List[I_OnWallops] = List[I_OnUserNotice] = List[I_OnUserMessage] = List[I_OnBackgroundTimer] = 1;
1380         List[I_OnUserJoin] = List[I_OnChangeHost] = List[I_OnChangeName] = List[I_OnUserPart] = List[I_OnUserConnect] = 1;
1381         List[I_OnUserQuit] = List[I_OnUserPostNick] = List[I_OnUserKick] = List[I_OnRemoteKill] = List[I_OnRehash] = 1;
1382         List[I_OnOper] = List[I_OnAddGLine] = List[I_OnAddZLine] = List[I_OnAddQLine] = List[I_OnAddELine] = 1;
1383         List[I_OnDelGLine] = List[I_OnDelZLine] = List[I_OnDelQLine] = List[I_OnDelELine] = List[I_ProtoSendMode] = List[I_OnMode] = 1;
1384         List[I_OnStats] = List[I_ProtoSendMetaData] = List[I_OnEvent] = List[I_OnSetAway] = List[I_OnCancelAway] = List[I_OnPostCommand] = 1;
1385 }
1386
1387 /* It is IMPORTANT that m_spanningtree is the last module in the chain
1388  * so that any activity it sees is FINAL, e.g. we arent going to send out
1389  * a NICK message before m_cloaking has finished putting the +x on the user,
1390  * etc etc.
1391  * Therefore, we return PRIORITY_LAST to make sure we end up at the END of
1392  * the module call queue.
1393  */
1394 Priority ModuleSpanningTree::Prioritize()
1395 {
1396         return PRIORITY_LAST;
1397 }
1398
1399 MODULE_INIT(ModuleSpanningTree)
1400