]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/main.cpp
Merge insp20
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / main.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007-2009 Craig Edwards <craigedwards@brainbox.cc>
6  *   Copyright (C) 2007-2008 Robin Burchell <robin+git@viroteck.net>
7  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
8  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
9  *
10  * This file is part of InspIRCd.  InspIRCd is free software: you can
11  * redistribute it and/or modify it under the terms of the GNU General Public
12  * License as published by the Free Software Foundation, version 2.
13  *
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
17  * details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  */
22
23
24 #include "inspircd.h"
25 #include "socket.h"
26 #include "xline.h"
27 #include "iohook.h"
28
29 #include "resolvers.h"
30 #include "main.h"
31 #include "utils.h"
32 #include "treeserver.h"
33 #include "link.h"
34 #include "treesocket.h"
35 #include "commands.h"
36 #include "protocolinterface.h"
37
38 ModuleSpanningTree::ModuleSpanningTree()
39         : commands(NULL), DNS(this, "DNS")
40 {
41 }
42
43 SpanningTreeCommands::SpanningTreeCommands(ModuleSpanningTree* module)
44         : rconnect(module), rsquit(module), map(module),
45         svsjoin(module), svspart(module), svsnick(module), metadata(module),
46         uid(module), opertype(module), fjoin(module), ijoin(module), resync(module),
47         fmode(module), ftopic(module), fhost(module), fident(module), fname(module),
48         away(module), addline(module), delline(module), encap(module), idle(module),
49         nick(module), ping(module), pong(module), push(module), save(module),
50         server(module), squit(module), snonotice(module), version(module),
51         burst(module), endburst(module)
52 {
53 }
54
55 void ModuleSpanningTree::init()
56 {
57         ServerInstance->SNO->EnableSnomask('l', "LINK");
58
59         Utils = new SpanningTreeUtilities(this);
60         Utils->TreeRoot = new TreeServer;
61         commands = new SpanningTreeCommands(this);
62         ServerInstance->Modules->AddService(commands->rconnect);
63         ServerInstance->Modules->AddService(commands->rsquit);
64         ServerInstance->Modules->AddService(commands->map);
65
66         delete ServerInstance->PI;
67         ServerInstance->PI = new SpanningTreeProtocolInterface;
68         loopCall = false;
69
70         // update our local user count
71         Utils->TreeRoot->UserCount = ServerInstance->Users->local_users.size();
72 }
73
74 void ModuleSpanningTree::ShowLinks(TreeServer* Current, User* user, int hops)
75 {
76         std::string Parent = Utils->TreeRoot->GetName();
77         if (Current->GetParent())
78         {
79                 Parent = Current->GetParent()->GetName();
80         }
81
82         const TreeServer::ChildServers& children = Current->GetChildren();
83         for (TreeServer::ChildServers::const_iterator i = children.begin(); i != children.end(); ++i)
84         {
85                 TreeServer* server = *i;
86                 if ((server->Hidden) || ((Utils->HideULines) && (ServerInstance->ULine(server->GetName()))))
87                 {
88                         if (user->IsOper())
89                         {
90                                  ShowLinks(server, user, hops+1);
91                         }
92                 }
93                 else
94                 {
95                         ShowLinks(server, user, hops+1);
96                 }
97         }
98         /* Don't display the line if its a uline, hide ulines is on, and the user isnt an oper */
99         if ((Utils->HideULines) && (ServerInstance->ULine(Current->GetName())) && (!user->IsOper()))
100                 return;
101         /* Or if the server is hidden and they're not an oper */
102         else if ((Current->Hidden) && (!user->IsOper()))
103                 return;
104
105         user->WriteNumeric(364, "%s %s %s :%d %s",      user->nick.c_str(), Current->GetName().c_str(),
106                         (Utils->FlatLinks && (!user->IsOper())) ? ServerInstance->Config->ServerName.c_str() : Parent.c_str(),
107                         (Utils->FlatLinks && (!user->IsOper())) ? 0 : hops,
108                         Current->GetDesc().c_str());
109 }
110
111 void ModuleSpanningTree::HandleLinks(const std::vector<std::string>& parameters, User* user)
112 {
113         ShowLinks(Utils->TreeRoot,user,0);
114         user->WriteNumeric(365, "%s * :End of /LINKS list.",user->nick.c_str());
115 }
116
117 std::string ModuleSpanningTree::TimeToStr(time_t secs)
118 {
119         time_t mins_up = secs / 60;
120         time_t hours_up = mins_up / 60;
121         time_t days_up = hours_up / 24;
122         secs = secs % 60;
123         mins_up = mins_up % 60;
124         hours_up = hours_up % 24;
125         return ((days_up ? (ConvToStr(days_up) + "d") : "")
126                         + (hours_up ? (ConvToStr(hours_up) + "h") : "")
127                         + (mins_up ? (ConvToStr(mins_up) + "m") : "")
128                         + ConvToStr(secs) + "s");
129 }
130
131 void ModuleSpanningTree::DoPingChecks(time_t curtime)
132 {
133         /*
134          * Cancel remote burst mode on any servers which still have it enabled due to latency/lack of data.
135          * This prevents lost REMOTECONNECT notices
136          */
137         long ts = ServerInstance->Time() * 1000 + (ServerInstance->Time_ns() / 1000000);
138
139 restart:
140         for (server_hash::iterator i = Utils->serverlist.begin(); i != Utils->serverlist.end(); i++)
141         {
142                 TreeServer *s = i->second;
143
144                 // Skip myself
145                 if (s->IsRoot())
146                         continue;
147
148                 if (s->GetSocket()->GetLinkState() == DYING)
149                 {
150                         s->GetSocket()->Close();
151                         goto restart;
152                 }
153
154                 // Do not ping servers that are not fully connected yet!
155                 // Servers which are connected to us have IsLocal() == true and if they're fully connected
156                 // then Socket->LinkState == CONNECTED. Servers that are linked to another server are always fully connected.
157                 if (s->IsLocal() && s->GetSocket()->GetLinkState() != CONNECTED)
158                         continue;
159
160                 // Now do PING checks on all servers
161                 // Only ping if this server needs one
162                 if (curtime >= s->NextPingTime())
163                 {
164                         // And if they answered the last
165                         if (s->AnsweredLastPing())
166                         {
167                                 // They did, send a ping to them
168                                 s->SetNextPingTime(curtime + Utils->PingFreq);
169                                 s->GetSocket()->WriteLine(":" + ServerInstance->Config->GetSID() + " PING " + s->GetID());
170                                 s->LastPingMsec = ts;
171                         }
172                         else
173                         {
174                                 // They didn't answer the last ping, if they are locally connected, get rid of them.
175                                 if (s->IsLocal())
176                                 {
177                                         TreeSocket* sock = s->GetSocket();
178                                         sock->SendError("Ping timeout");
179                                         sock->Close();
180                                         goto restart;
181                                 }
182                         }
183                 }
184
185                 // If warn on ping enabled and not warned and the difference is sufficient and they didn't answer the last ping...
186                 if ((Utils->PingWarnTime) && (!s->Warned) && (curtime >= s->NextPingTime() - (Utils->PingFreq - Utils->PingWarnTime)) && (!s->AnsweredLastPing()))
187                 {
188                         /* The server hasnt responded, send a warning to opers */
189                         ServerInstance->SNO->WriteToSnoMask('l',"Server \002%s\002 has not responded to PING for %d seconds, high latency.", s->GetName().c_str(), Utils->PingWarnTime);
190                         s->Warned = true;
191                 }
192         }
193 }
194
195 void ModuleSpanningTree::ConnectServer(Autoconnect* a, bool on_timer)
196 {
197         if (!a)
198                 return;
199         for(unsigned int j=0; j < a->servers.size(); j++)
200         {
201                 if (Utils->FindServer(a->servers[j]))
202                 {
203                         // found something in this block. Should the server fail,
204                         // we want to start at the start of the list, not in the
205                         // middle where we left off
206                         a->position = -1;
207                         return;
208                 }
209         }
210         if (on_timer && a->position >= 0)
211                 return;
212         if (!on_timer && a->position < 0)
213                 return;
214
215         a->position++;
216         while (a->position < (int)a->servers.size())
217         {
218                 Link* x = Utils->FindLink(a->servers[a->position]);
219                 if (x)
220                 {
221                         ServerInstance->SNO->WriteToSnoMask('l', "AUTOCONNECT: Auto-connecting server \002%s\002", x->Name.c_str());
222                         ConnectServer(x, a);
223                         return;
224                 }
225                 a->position++;
226         }
227         // Autoconnect chain has been fully iterated; start at the beginning on the
228         // next AutoConnectServers run
229         a->position = -1;
230 }
231
232 void ModuleSpanningTree::ConnectServer(Link* x, Autoconnect* y)
233 {
234         bool ipvalid = true;
235
236         if (InspIRCd::Match(ServerInstance->Config->ServerName, assign(x->Name)))
237         {
238                 ServerInstance->SNO->WriteToSnoMask('l', "CONNECT: Not connecting to myself.");
239                 return;
240         }
241
242         DNS::QueryType start_type = DNS::QUERY_AAAA;
243         if (strchr(x->IPAddr.c_str(),':'))
244         {
245                 in6_addr n;
246                 if (inet_pton(AF_INET6, x->IPAddr.c_str(), &n) < 1)
247                         ipvalid = false;
248         }
249         else
250         {
251                 in_addr n;
252                 if (inet_aton(x->IPAddr.c_str(),&n) < 1)
253                         ipvalid = false;
254         }
255
256         /* Do we already have an IP? If so, no need to resolve it. */
257         if (ipvalid)
258         {
259                 /* Gave a hook, but it wasnt one we know */
260                 TreeSocket* newsocket = new TreeSocket(x, y, x->IPAddr);
261                 if (newsocket->GetFd() > -1)
262                 {
263                         /* Handled automatically on success */
264                 }
265                 else
266                 {
267                         ServerInstance->SNO->WriteToSnoMask('l', "CONNECT: Error connecting \002%s\002: %s.",
268                                 x->Name.c_str(), newsocket->getError().c_str());
269                         ServerInstance->GlobalCulls.AddItem(newsocket);
270                 }
271         }
272         else if (!DNS)
273         {
274                 ServerInstance->SNO->WriteToSnoMask('l', "CONNECT: Error connecting \002%s\002: Hostname given and m_dns.so is not loaded, unable to resolve.", x->Name.c_str());
275         }
276         else
277         {
278                 ServernameResolver* snr = new ServernameResolver(*DNS, x->IPAddr, x, start_type, y);
279                 try
280                 {
281                         DNS->Process(snr);
282                 }
283                 catch (DNS::Exception& e)
284                 {
285                         delete snr;
286                         ServerInstance->SNO->WriteToSnoMask('l', "CONNECT: Error connecting \002%s\002: %s.",x->Name.c_str(), e.GetReason());
287                         ConnectServer(y, false);
288                 }
289         }
290 }
291
292 void ModuleSpanningTree::AutoConnectServers(time_t curtime)
293 {
294         for (std::vector<reference<Autoconnect> >::iterator i = Utils->AutoconnectBlocks.begin(); i < Utils->AutoconnectBlocks.end(); ++i)
295         {
296                 Autoconnect* x = *i;
297                 if (curtime >= x->NextConnectTime)
298                 {
299                         x->NextConnectTime = curtime + x->Period;
300                         ConnectServer(x, true);
301                 }
302         }
303 }
304
305 void ModuleSpanningTree::DoConnectTimeout(time_t curtime)
306 {
307         std::map<TreeSocket*, std::pair<std::string, int> >::iterator i = Utils->timeoutlist.begin();
308         while (i != Utils->timeoutlist.end())
309         {
310                 TreeSocket* s = i->first;
311                 std::pair<std::string, int> p = i->second;
312                 std::map<TreeSocket*, std::pair<std::string, int> >::iterator me = i;
313                 i++;
314                 if (s->GetLinkState() == DYING)
315                 {
316                         Utils->timeoutlist.erase(me);
317                         s->Close();
318                 }
319                 else if (curtime > s->age + p.second)
320                 {
321                         ServerInstance->SNO->WriteToSnoMask('l',"CONNECT: Error connecting \002%s\002 (timeout of %d seconds)",p.first.c_str(),p.second);
322                         Utils->timeoutlist.erase(me);
323                         s->Close();
324                 }
325         }
326 }
327
328 ModResult ModuleSpanningTree::HandleVersion(const std::vector<std::string>& parameters, User* user)
329 {
330         // we've already checked if pcnt > 0, so this is safe
331         TreeServer* found = Utils->FindServerMask(parameters[0]);
332         if (found)
333         {
334                 if (found == Utils->TreeRoot)
335                 {
336                         // Pass to default VERSION handler.
337                         return MOD_RES_PASSTHRU;
338                 }
339                 std::string Version = found->GetVersion();
340                 user->WriteNumeric(351, "%s :%s",user->nick.c_str(),Version.c_str());
341         }
342         else
343         {
344                 user->WriteNumeric(402, "%s %s :No such server",user->nick.c_str(),parameters[0].c_str());
345         }
346         return MOD_RES_DENY;
347 }
348
349 /* This method will attempt to get a message to a remote user.
350  */
351 void ModuleSpanningTree::RemoteMessage(User* user, const char* format, ...)
352 {
353         std::string text;
354         VAFORMAT(text, format, format);
355
356         if (IS_LOCAL(user))
357                 user->WriteNotice(text);
358         else
359                 ServerInstance->PI->SendUserNotice(user, text);
360 }
361
362 ModResult ModuleSpanningTree::HandleConnect(const std::vector<std::string>& parameters, User* user)
363 {
364         for (std::vector<reference<Link> >::iterator i = Utils->LinkBlocks.begin(); i < Utils->LinkBlocks.end(); i++)
365         {
366                 Link* x = *i;
367                 if (InspIRCd::Match(x->Name.c_str(),parameters[0]))
368                 {
369                         if (InspIRCd::Match(ServerInstance->Config->ServerName, assign(x->Name)))
370                         {
371                                 RemoteMessage(user, "*** CONNECT: Server \002%s\002 is ME, not connecting.",x->Name.c_str());
372                                 return MOD_RES_DENY;
373                         }
374
375                         TreeServer* CheckDupe = Utils->FindServer(x->Name.c_str());
376                         if (!CheckDupe)
377                         {
378                                 RemoteMessage(user, "*** CONNECT: Connecting to server: \002%s\002 (%s:%d)",x->Name.c_str(),(x->HiddenFromStats ? "<hidden>" : x->IPAddr.c_str()),x->Port);
379                                 ConnectServer(x);
380                                 return MOD_RES_DENY;
381                         }
382                         else
383                         {
384                                 RemoteMessage(user, "*** CONNECT: Server \002%s\002 already exists on the network and is connected via \002%s\002", x->Name.c_str(), CheckDupe->GetParent()->GetName().c_str());
385                                 return MOD_RES_DENY;
386                         }
387                 }
388         }
389         RemoteMessage(user, "*** CONNECT: No server matching \002%s\002 could be found in the config file.",parameters[0].c_str());
390         return MOD_RES_DENY;
391 }
392
393 void ModuleSpanningTree::On005Numeric(std::map<std::string, std::string>& tokens)
394 {
395         tokens["MAP"];
396 }
397
398 void ModuleSpanningTree::OnGetServerDescription(const std::string &servername,std::string &description)
399 {
400         TreeServer* s = Utils->FindServer(servername);
401         if (s)
402         {
403                 description = s->GetDesc();
404         }
405 }
406
407 void ModuleSpanningTree::OnUserInvite(User* source,User* dest,Channel* channel, time_t expiry)
408 {
409         if (IS_LOCAL(source))
410         {
411                 CmdBuilder params(source, "INVITE");
412                 params.push_back(dest->uuid);
413                 params.push_back(channel->name);
414                 params.push_back(ConvToStr(expiry));
415                 params.Broadcast();
416         }
417 }
418
419 void ModuleSpanningTree::OnPostTopicChange(User* user, Channel* chan, const std::string &topic)
420 {
421         // Drop remote events on the floor.
422         if (!IS_LOCAL(user))
423                 return;
424
425         CommandFTopic::Builder(user, chan).Broadcast();
426 }
427
428 void ModuleSpanningTree::OnUserMessage(User* user, void* dest, int target_type, const std::string& text, char status, const CUList& exempt_list, MessageType msgtype)
429 {
430         if (!IS_LOCAL(user))
431                 return;
432
433         const char* message_type = (msgtype == MSG_PRIVMSG ? "PRIVMSG" : "NOTICE");
434         if (target_type == TYPE_USER)
435         {
436                 User* d = (User*) dest;
437                 if (!IS_LOCAL(d))
438                 {
439                         CmdBuilder params(user, message_type);
440                         params.push_back(d->uuid);
441                         params.push_last(text);
442                         params.Unicast(d);
443                 }
444         }
445         else if (target_type == TYPE_CHANNEL)
446         {
447                 Utils->SendChannelMessage(user->uuid, (Channel*)dest, text, status, exempt_list, message_type);
448         }
449         else if (target_type == TYPE_SERVER)
450         {
451                 char* target = (char*) dest;
452                 CmdBuilder par(user, message_type);
453                 par.push_back(target);
454                 par.push_last(text);
455                 par.Broadcast();
456         }
457 }
458
459 void ModuleSpanningTree::OnBackgroundTimer(time_t curtime)
460 {
461         AutoConnectServers(curtime);
462         DoPingChecks(curtime);
463         DoConnectTimeout(curtime);
464 }
465
466 void ModuleSpanningTree::OnUserConnect(LocalUser* user)
467 {
468         if (user->quitting)
469                 return;
470
471         CommandUID::Builder(user).Broadcast();
472
473         if (user->IsOper())
474                 CommandOpertype::Builder(user).Broadcast();
475
476         for(Extensible::ExtensibleStore::const_iterator i = user->GetExtList().begin(); i != user->GetExtList().end(); i++)
477         {
478                 ExtensionItem* item = i->first;
479                 std::string value = item->serialize(FORMAT_NETWORK, user, i->second);
480                 if (!value.empty())
481                         ServerInstance->PI->SendMetaData(user, item->name, value);
482         }
483
484         Utils->TreeRoot->UserCount++;
485 }
486
487 void ModuleSpanningTree::OnUserJoin(Membership* memb, bool sync, bool created_by_local, CUList& excepts)
488 {
489         // Only do this for local users
490         if (!IS_LOCAL(memb->user))
491                 return;
492
493         if (created_by_local)
494         {
495                 CmdBuilder params("FJOIN");
496                 params.push_back(memb->chan->name);
497                 params.push_back(ConvToStr(memb->chan->age));
498                 params.push_raw(" +").push_raw(memb->chan->ChanModes(true));
499                 params.push(memb->modes).push_raw(',').push_raw(memb->user->uuid);
500                 params.Broadcast();
501         }
502         else
503         {
504                 CmdBuilder params(memb->user, "IJOIN");
505                 params.push_back(memb->chan->name);
506                 if (!memb->modes.empty())
507                 {
508                         params.push_back(ConvToStr(memb->chan->age));
509                         params.push_back(memb->modes);
510                 }
511                 params.Broadcast();
512         }
513 }
514
515 void ModuleSpanningTree::OnChangeHost(User* user, const std::string &newhost)
516 {
517         if (user->registered != REG_ALL || !IS_LOCAL(user))
518                 return;
519
520         CmdBuilder(user, "FHOST").push(newhost).Broadcast();
521 }
522
523 void ModuleSpanningTree::OnChangeName(User* user, const std::string &gecos)
524 {
525         if (user->registered != REG_ALL || !IS_LOCAL(user))
526                 return;
527
528         CmdBuilder(user, "FNAME").push(gecos).Broadcast();
529 }
530
531 void ModuleSpanningTree::OnChangeIdent(User* user, const std::string &ident)
532 {
533         if ((user->registered != REG_ALL) || (!IS_LOCAL(user)))
534                 return;
535
536         CmdBuilder(user, "FIDENT").push(ident).Broadcast();
537 }
538
539 void ModuleSpanningTree::OnUserPart(Membership* memb, std::string &partmessage, CUList& excepts)
540 {
541         if (IS_LOCAL(memb->user))
542         {
543                 CmdBuilder params(memb->user, "PART");
544                 params.push_back(memb->chan->name);
545                 if (!partmessage.empty())
546                         params.push_last(partmessage);
547                 params.Broadcast();
548         }
549 }
550
551 void ModuleSpanningTree::OnUserQuit(User* user, const std::string &reason, const std::string &oper_message)
552 {
553         if ((IS_LOCAL(user)) && (user->registered == REG_ALL))
554         {
555                 if (oper_message != reason)
556                         ServerInstance->PI->SendMetaData(user, "operquit", oper_message);
557
558                 CmdBuilder(user, "QUIT").push_last(reason).Broadcast();
559         }
560
561         // Regardless, We need to modify the user Counts..
562         TreeServer* SourceServer = Utils->FindServer(user->server);
563         if (SourceServer)
564         {
565                 SourceServer->UserCount--;
566         }
567 }
568
569 void ModuleSpanningTree::OnUserPostNick(User* user, const std::string &oldnick)
570 {
571         if (IS_LOCAL(user))
572         {
573                 CmdBuilder params(user, "NICK");
574                 params.push_back(user->nick);
575
576                 /** IMPORTANT: We don't update the TS if the oldnick is just a case change of the newnick!
577                  */
578                 if (irc::string(user->nick.c_str()) != assign(oldnick))
579                         user->age = ServerInstance->Time();
580
581                 params.push_back(ConvToStr(user->age));
582                 params.Broadcast();
583         }
584         else if (!loopCall && user->nick == user->uuid)
585         {
586                 CmdBuilder params("SAVE");
587                 params.push_back(user->uuid);
588                 params.push_back(ConvToStr(user->age));
589                 params.Broadcast();
590         }
591 }
592
593 void ModuleSpanningTree::OnUserKick(User* source, Membership* memb, const std::string &reason, CUList& excepts)
594 {
595         if ((!IS_LOCAL(source) || source != ServerInstance->FakeClient))
596                 return;
597
598         CmdBuilder params(source, "KICK");
599         params.push_back(memb->chan->name);
600         params.push_back(memb->user->uuid);
601         params.push_last(reason);
602         params.Broadcast();
603 }
604
605 void ModuleSpanningTree::OnPreRehash(User* user, const std::string &parameter)
606 {
607         if (loopCall)
608                 return; // Don't generate a REHASH here if we're in the middle of processing a message that generated this one
609
610         ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "OnPreRehash called with param %s", parameter.c_str());
611
612         // Send out to other servers
613         if (!parameter.empty() && parameter[0] != '-')
614         {
615                 CmdBuilder params((user ? user->uuid : ServerInstance->Config->GetSID()), "REHASH");
616                 params.push_back(parameter);
617                 params.Forward(user ? Utils->BestRouteTo(user->server) : NULL);
618         }
619 }
620
621 void ModuleSpanningTree::OnRehash(User* user)
622 {
623         // Re-read config stuff
624         try
625         {
626                 Utils->ReadConfiguration();
627         }
628         catch (ModuleException& e)
629         {
630                 // Refresh the IP cache anyway, so servers read before the error will be allowed to connect
631                 Utils->RefreshIPCache();
632                 // Always warn local opers with snomask +l, also warn globally (snomask +L) if the rehash was issued by a remote user
633                 std::string msg = "Error in configuration: ";
634                 msg.append(e.GetReason());
635                 ServerInstance->SNO->WriteToSnoMask('l', msg);
636                 if (user && !IS_LOCAL(user))
637                         ServerInstance->PI->SendSNONotice("L", msg);
638         }
639 }
640
641 void ModuleSpanningTree::OnLoadModule(Module* mod)
642 {
643         std::string data;
644         data.push_back('+');
645         data.append(mod->ModuleSourceFile);
646         Version v = mod->GetVersion();
647         if (!v.link_data.empty())
648         {
649                 data.push_back('=');
650                 data.append(v.link_data);
651         }
652         ServerInstance->PI->SendMetaData(NULL, "modules", data);
653 }
654
655 void ModuleSpanningTree::OnUnloadModule(Module* mod)
656 {
657         if (!Utils)
658                 return;
659         ServerInstance->PI->SendMetaData(NULL, "modules", "-" + mod->ModuleSourceFile);
660
661         // Close all connections which use an IO hook provided by this module
662         const TreeServer::ChildServers& list = Utils->TreeRoot->GetChildren();
663         for (TreeServer::ChildServers::const_iterator i = list.begin(); i != list.end(); ++i)
664         {
665                 TreeSocket* sock = (*i)->GetSocket();
666                 if (sock && sock->GetIOHook() && sock->GetIOHook()->creator == mod)
667                 {
668                         sock->SendError("SSL module unloaded");
669                         sock->Close();
670                 }
671         }
672
673         for (SpanningTreeUtilities::TimeoutList::const_iterator i = Utils->timeoutlist.begin(); i != Utils->timeoutlist.end(); ++i)
674         {
675                 TreeSocket* sock = i->first;
676                 if (sock->GetIOHook() && sock->GetIOHook()->creator == mod)
677                         sock->Close();
678         }
679 }
680
681 // note: the protocol does not allow direct umode +o except
682 // via NICK with 8 params. sending OPERTYPE infers +o modechange
683 // locally.
684 void ModuleSpanningTree::OnOper(User* user, const std::string &opertype)
685 {
686         if (user->registered != REG_ALL || !IS_LOCAL(user))
687                 return;
688         CommandOpertype::Builder(user).Broadcast();
689 }
690
691 void ModuleSpanningTree::OnAddLine(User* user, XLine *x)
692 {
693         if (!x->IsBurstable() || loopCall || (user && !IS_LOCAL(user)))
694                 return;
695
696         if (!user)
697                 user = ServerInstance->FakeClient;
698
699         CommandAddLine::Builder(x, user).Broadcast();
700 }
701
702 void ModuleSpanningTree::OnDelLine(User* user, XLine *x)
703 {
704         if (!x->IsBurstable() || loopCall || (user && !IS_LOCAL(user)))
705                 return;
706
707         if (!user)
708                 user = ServerInstance->FakeClient;
709
710         CmdBuilder params(user, "DELLINE");
711         params.push_back(x->type);
712         params.push_back(x->Displayable());
713         params.Broadcast();
714 }
715
716 ModResult ModuleSpanningTree::OnSetAway(User* user, const std::string &awaymsg)
717 {
718         if (IS_LOCAL(user))
719                 CommandAway::Builder(user, awaymsg).Broadcast();
720
721         return MOD_RES_PASSTHRU;
722 }
723
724 void ModuleSpanningTree::ProtoSendMode(void* opaque, TargetTypeFlags target_type, void* target, const parameterlist &modeline, const std::vector<TranslateType> &translate)
725 {
726         TreeSocket* s = (TreeSocket*)opaque;
727         std::string output_text = CommandParser::TranslateUIDs(translate, modeline);
728
729         if (target)
730         {
731                 if (target_type == TYPE_USER)
732                 {
733                         User* u = (User*)target;
734                         s->WriteLine(":"+ServerInstance->Config->GetSID()+" MODE "+u->uuid+" "+output_text);
735                 }
736                 else if (target_type == TYPE_CHANNEL)
737                 {
738                         Channel* c = (Channel*)target;
739                         s->WriteLine(":"+ServerInstance->Config->GetSID()+" FMODE "+c->name+" "+ConvToStr(c->age)+" "+output_text);
740                 }
741         }
742 }
743
744 void ModuleSpanningTree::ProtoSendMetaData(void* opaque, Extensible* target, const std::string &extname, const std::string &extdata)
745 {
746         TreeSocket* s = static_cast<TreeSocket*>(opaque);
747         User* u = dynamic_cast<User*>(target);
748         Channel* c = dynamic_cast<Channel*>(target);
749         if (u)
750                 s->WriteLine(":"+ServerInstance->Config->GetSID()+" METADATA "+u->uuid+" "+extname+" :"+extdata);
751         else if (c)
752                 s->WriteLine(":"+ServerInstance->Config->GetSID()+" METADATA "+c->name+" "+ConvToStr(c->age)+" "+extname+" :"+extdata);
753         else if (!target)
754                 s->WriteLine(":"+ServerInstance->Config->GetSID()+" METADATA * "+extname+" :"+extdata);
755 }
756
757 CullResult ModuleSpanningTree::cull()
758 {
759         if (Utils)
760                 Utils->cull();
761         return this->Module::cull();
762 }
763
764 ModuleSpanningTree::~ModuleSpanningTree()
765 {
766         delete ServerInstance->PI;
767         ServerInstance->PI = new ProtocolInterface;
768
769         /* This will also free the listeners */
770         delete Utils;
771
772         delete commands;
773 }
774
775 Version ModuleSpanningTree::GetVersion()
776 {
777         return Version("Allows servers to be linked", VF_VENDOR);
778 }
779
780 /* It is IMPORTANT that m_spanningtree is the last module in the chain
781  * so that any activity it sees is FINAL, e.g. we arent going to send out
782  * a NICK message before m_cloaking has finished putting the +x on the user,
783  * etc etc.
784  * Therefore, we return PRIORITY_LAST to make sure we end up at the END of
785  * the module call queue.
786  */
787 void ModuleSpanningTree::Prioritize()
788 {
789         ServerInstance->Modules->SetPriority(this, PRIORITY_LAST);
790 }
791
792 MODULE_INIT(ModuleSpanningTree)