]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/main.cpp
db526534425ec398e84aa3a69aa529828183473c
[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 #include "modules/server.h"
29
30 #include "resolvers.h"
31 #include "main.h"
32 #include "utils.h"
33 #include "treeserver.h"
34 #include "link.h"
35 #include "treesocket.h"
36 #include "commands.h"
37 #include "translate.h"
38
39 ModuleSpanningTree::ModuleSpanningTree()
40         : Away::EventListener(this)
41         , Stats::EventListener(this)
42         , CTCTags::EventListener(this)
43         , rconnect(this)
44         , rsquit(this)
45         , map(this)
46         , commands(this)
47         , currmembid(0)
48         , eventprov(this, "event/server")
49         , sslapi(this)
50         , DNS(this, "DNS")
51         , tagevprov(this, "event/messagetag")
52         , loopCall(false)
53 {
54 }
55
56 SpanningTreeCommands::SpanningTreeCommands(ModuleSpanningTree* module)
57         : svsjoin(module), svspart(module), svsnick(module), metadata(module),
58         uid(module), opertype(module), fjoin(module), ijoin(module), resync(module),
59         fmode(module), ftopic(module), fhost(module), fident(module), fname(module),
60         away(module), addline(module), delline(module), encap(module), idle(module),
61         nick(module), ping(module), pong(module), save(module),
62         server(module), squit(module), snonotice(module),
63         endburst(module), sinfo(module), num(module)
64 {
65 }
66
67 namespace
68 {
69         void SetLocalUsersServer(Server* newserver)
70         {
71                 // Does not change the server of quitting users because those are not in the list
72
73                 ServerInstance->FakeClient->server = newserver;
74                 const UserManager::LocalList& list = ServerInstance->Users.GetLocalUsers();
75                 for (UserManager::LocalList::const_iterator i = list.begin(); i != list.end(); ++i)
76                         (*i)->server = newserver;
77         }
78
79         void ResetMembershipIds()
80         {
81                 // Set all membership ids to 0
82                 const UserManager::LocalList& list = ServerInstance->Users.GetLocalUsers();
83                 for (UserManager::LocalList::iterator i = list.begin(); i != list.end(); ++i)
84                 {
85                         LocalUser* user = *i;
86                         for (User::ChanList::iterator j = user->chans.begin(); j != user->chans.end(); ++j)
87                                 (*j)->id = 0;
88                 }
89         }
90 }
91
92 void ModuleSpanningTree::init()
93 {
94         ServerInstance->SNO->EnableSnomask('l', "LINK");
95
96         ResetMembershipIds();
97
98         Utils = new SpanningTreeUtilities(this);
99         Utils->TreeRoot = new TreeServer;
100
101         ServerInstance->PI = &protocolinterface;
102
103         delete ServerInstance->FakeClient->server;
104         SetLocalUsersServer(Utils->TreeRoot);
105 }
106
107 void ModuleSpanningTree::ShowLinks(TreeServer* Current, User* user, int hops)
108 {
109         std::string Parent = Utils->TreeRoot->GetName();
110         if (Current->GetParent())
111         {
112                 Parent = Current->GetParent()->GetName();
113         }
114
115         const TreeServer::ChildServers& children = Current->GetChildren();
116         for (TreeServer::ChildServers::const_iterator i = children.begin(); i != children.end(); ++i)
117         {
118                 TreeServer* server = *i;
119                 if ((server->Hidden) || ((Utils->HideULines) && (server->IsULine())))
120                 {
121                         if (user->IsOper())
122                         {
123                                  ShowLinks(server, user, hops+1);
124                         }
125                 }
126                 else
127                 {
128                         ShowLinks(server, user, hops+1);
129                 }
130         }
131         /* Don't display the line if its a uline, hide ulines is on, and the user isnt an oper */
132         if ((Utils->HideULines) && (Current->IsULine()) && (!user->IsOper()))
133                 return;
134         /* Or if the server is hidden and they're not an oper */
135         else if ((Current->Hidden) && (!user->IsOper()))
136                 return;
137
138         user->WriteNumeric(RPL_LINKS, Current->GetName(),
139                         (((Utils->FlatLinks) && (!user->IsOper())) ? ServerInstance->Config->ServerName : Parent),
140                         InspIRCd::Format("%d %s", (((Utils->FlatLinks) && (!user->IsOper())) ? 0 : hops), Current->GetDesc().c_str()));
141 }
142
143 void ModuleSpanningTree::HandleLinks(const CommandBase::Params& parameters, User* user)
144 {
145         ShowLinks(Utils->TreeRoot,user,0);
146         user->WriteNumeric(RPL_ENDOFLINKS, '*', "End of /LINKS list.");
147 }
148
149 void ModuleSpanningTree::ConnectServer(Autoconnect* a, bool on_timer)
150 {
151         if (!a)
152                 return;
153         for(unsigned int j=0; j < a->servers.size(); j++)
154         {
155                 if (Utils->FindServer(a->servers[j]))
156                 {
157                         // found something in this block. Should the server fail,
158                         // we want to start at the start of the list, not in the
159                         // middle where we left off
160                         a->position = -1;
161                         return;
162                 }
163         }
164         if (on_timer && a->position >= 0)
165                 return;
166         if (!on_timer && a->position < 0)
167                 return;
168
169         a->position++;
170         while (a->position < (int)a->servers.size())
171         {
172                 Link* x = Utils->FindLink(a->servers[a->position]);
173                 if (x)
174                 {
175                         ServerInstance->SNO->WriteToSnoMask('l', "AUTOCONNECT: Auto-connecting server \002%s\002", x->Name.c_str());
176                         ConnectServer(x, a);
177                         return;
178                 }
179                 a->position++;
180         }
181         // Autoconnect chain has been fully iterated; start at the beginning on the
182         // next AutoConnectServers run
183         a->position = -1;
184 }
185
186 void ModuleSpanningTree::ConnectServer(Link* x, Autoconnect* y)
187 {
188         if (InspIRCd::Match(ServerInstance->Config->ServerName, x->Name, ascii_case_insensitive_map))
189         {
190                 ServerInstance->SNO->WriteToSnoMask('l', "CONNECT: Not connecting to myself.");
191                 return;
192         }
193
194         irc::sockets::sockaddrs sa;
195         if (x->IPAddr.find('/') != std::string::npos)
196         {
197                 if (!irc::sockets::isunix(x->IPAddr) || !irc::sockets::untosa(x->IPAddr, sa))
198                 {
199                         // We don't use the family() != AF_UNSPEC check below for UNIX sockets as
200                         // that results in a DNS lookup.
201                         ServerInstance->SNO->WriteToSnoMask('l', "CONNECT: Error connecting \002%s\002: %s is not a UNIX socket!",
202                                 x->Name.c_str(), x->IPAddr.c_str());
203                         return;
204                 }
205         }
206         else
207         {
208                 // If this fails then the IP sa will be AF_UNSPEC.
209                 irc::sockets::aptosa(x->IPAddr, x->Port, sa);
210         }
211         
212         /* Do we already have an IP? If so, no need to resolve it. */
213         if (sa.family() != AF_UNSPEC)
214         {
215                 // Create a TreeServer object that will start connecting immediately in the background
216                 TreeSocket* newsocket = new TreeSocket(x, y, sa);
217                 if (newsocket->GetFd() > -1)
218                 {
219                         /* Handled automatically on success */
220                 }
221                 else
222                 {
223                         ServerInstance->SNO->WriteToSnoMask('l', "CONNECT: Error connecting \002%s\002: %s.",
224                                 x->Name.c_str(), newsocket->getError().c_str());
225                         ServerInstance->GlobalCulls.AddItem(newsocket);
226                 }
227         }
228         else if (!DNS)
229         {
230                 ServerInstance->SNO->WriteToSnoMask('l', "CONNECT: Error connecting \002%s\002: Hostname given and core_dns is not loaded, unable to resolve.", x->Name.c_str());
231         }
232         else
233         {
234                 // Guess start_type from bindip aftype
235                 DNS::QueryType start_type = DNS::QUERY_AAAA;
236                 irc::sockets::sockaddrs bind;
237                 if ((!x->Bind.empty()) && (irc::sockets::aptosa(x->Bind, 0, bind)))
238                 {
239                         if (bind.family() == AF_INET)
240                                 start_type = DNS::QUERY_A;
241                 }
242
243                 ServernameResolver* snr = new ServernameResolver(*DNS, x->IPAddr, x, start_type, y);
244                 try
245                 {
246                         DNS->Process(snr);
247                 }
248                 catch (DNS::Exception& e)
249                 {
250                         delete snr;
251                         ServerInstance->SNO->WriteToSnoMask('l', "CONNECT: Error connecting \002%s\002: %s.",x->Name.c_str(), e.GetReason().c_str());
252                         ConnectServer(y, false);
253                 }
254         }
255 }
256
257 void ModuleSpanningTree::AutoConnectServers(time_t curtime)
258 {
259         for (std::vector<reference<Autoconnect> >::iterator i = Utils->AutoconnectBlocks.begin(); i < Utils->AutoconnectBlocks.end(); ++i)
260         {
261                 Autoconnect* x = *i;
262                 if (curtime >= x->NextConnectTime)
263                 {
264                         x->NextConnectTime = curtime + x->Period;
265                         ConnectServer(x, true);
266                 }
267         }
268 }
269
270 void ModuleSpanningTree::DoConnectTimeout(time_t curtime)
271 {
272         SpanningTreeUtilities::TimeoutList::iterator i = Utils->timeoutlist.begin();
273         while (i != Utils->timeoutlist.end())
274         {
275                 TreeSocket* s = i->first;
276                 std::pair<std::string, unsigned int> p = i->second;
277                 SpanningTreeUtilities::TimeoutList::iterator me = i;
278                 i++;
279                 if (s->GetLinkState() == DYING)
280                 {
281                         Utils->timeoutlist.erase(me);
282                         s->Close();
283                 }
284                 else if (curtime > s->age + p.second)
285                 {
286                         ServerInstance->SNO->WriteToSnoMask('l',"CONNECT: Error connecting \002%s\002 (timeout of %u seconds)",p.first.c_str(),p.second);
287                         Utils->timeoutlist.erase(me);
288                         s->Close();
289                 }
290         }
291 }
292
293 ModResult ModuleSpanningTree::HandleVersion(const CommandBase::Params& parameters, User* user)
294 {
295         // We've already confirmed that !parameters.empty(), so this is safe
296         TreeServer* found = Utils->FindServerMask(parameters[0]);
297         if (found)
298         {
299                 if (found == Utils->TreeRoot)
300                 {
301                         // Pass to default VERSION handler.
302                         return MOD_RES_PASSTHRU;
303                 }
304
305                 // If an oper wants to see the version then show the full version string instead of the normal,
306                 // but only if it is non-empty.
307                 // If it's empty it might be that the server is still syncing (full version hasn't arrived yet)
308                 // or the server is a 2.0 server and does not send a full version.
309                 bool showfull = ((user->IsOper()) && (!found->GetFullVersion().empty()));
310
311                 Numeric::Numeric numeric(RPL_VERSION);
312                 irc::tokenstream tokens(showfull ? found->GetFullVersion() : found->GetVersion());
313                 for (std::string token; tokens.GetTrailing(token); )
314                         numeric.push(token);
315                 user->WriteNumeric(numeric);
316         }
317         else
318         {
319                 user->WriteNumeric(ERR_NOSUCHSERVER, parameters[0], "No such server");
320         }
321         return MOD_RES_DENY;
322 }
323
324 ModResult ModuleSpanningTree::HandleConnect(const CommandBase::Params& parameters, User* user)
325 {
326         for (std::vector<reference<Link> >::iterator i = Utils->LinkBlocks.begin(); i < Utils->LinkBlocks.end(); i++)
327         {
328                 Link* x = *i;
329                 if (InspIRCd::Match(x->Name, parameters[0], ascii_case_insensitive_map))
330                 {
331                         if (InspIRCd::Match(ServerInstance->Config->ServerName, x->Name, ascii_case_insensitive_map))
332                         {
333                                 user->WriteRemoteNotice(InspIRCd::Format("*** CONNECT: Server \002%s\002 is ME, not connecting.", x->Name.c_str()));
334                                 return MOD_RES_DENY;
335                         }
336
337                         TreeServer* CheckDupe = Utils->FindServer(x->Name);
338                         if (!CheckDupe)
339                         {
340                                 user->WriteRemoteNotice(InspIRCd::Format("*** CONNECT: Connecting to server: \002%s\002 (%s:%d)", x->Name.c_str(), (x->HiddenFromStats ? "<hidden>" : x->IPAddr.c_str()), x->Port));
341                                 ConnectServer(x);
342                                 return MOD_RES_DENY;
343                         }
344                         else
345                         {
346                                 user->WriteRemoteNotice(InspIRCd::Format("*** 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()));
347                                 return MOD_RES_DENY;
348                         }
349                 }
350         }
351         user->WriteRemoteNotice(InspIRCd::Format("*** CONNECT: No server matching \002%s\002 could be found in the config file.", parameters[0].c_str()));
352         return MOD_RES_DENY;
353 }
354
355 void ModuleSpanningTree::OnUserInvite(User* source, User* dest, Channel* channel, time_t expiry, unsigned int notifyrank, CUList& notifyexcepts)
356 {
357         if (IS_LOCAL(source))
358         {
359                 CmdBuilder params(source, "INVITE");
360                 params.push_back(dest->uuid);
361                 params.push_back(channel->name);
362                 params.push_int(channel->age);
363                 params.push_back(ConvToStr(expiry));
364                 params.Broadcast();
365         }
366 }
367
368 ModResult ModuleSpanningTree::OnPreTopicChange(User* user, Channel* chan, const std::string& topic)
369 {
370         // XXX: Deny topic changes if the current topic set time is the current time or is in the future because
371         // other servers will drop our FTOPIC. This restriction will be removed when the protocol is updated.
372         if ((chan->topicset >= ServerInstance->Time()) && (Utils->serverlist.size() > 1))
373         {
374                 user->WriteNumeric(ERR_CHANOPRIVSNEEDED, chan->name, "Retry topic change later");
375                 return MOD_RES_DENY;
376         }
377         return MOD_RES_PASSTHRU;
378 }
379
380 void ModuleSpanningTree::OnPostTopicChange(User* user, Channel* chan, const std::string &topic)
381 {
382         // Drop remote events on the floor.
383         if (!IS_LOCAL(user))
384                 return;
385
386         CommandFTopic::Builder(user, chan).Broadcast();
387 }
388
389 void ModuleSpanningTree::OnUserPostMessage(User* user, const MessageTarget& target, const MessageDetails& details)
390 {
391         if (!IS_LOCAL(user))
392                 return;
393
394         const char* message_type = (details.type == MSG_PRIVMSG ? "PRIVMSG" : "NOTICE");
395         if (target.type == MessageTarget::TYPE_USER)
396         {
397                 User* d = target.Get<User>();
398                 if (!IS_LOCAL(d))
399                 {
400                         CmdBuilder params(user, message_type);
401                         params.push_tags(details.tags_out);
402                         params.push_back(d->uuid);
403                         params.push_last(details.text);
404                         params.Unicast(d);
405                 }
406         }
407         else if (target.type == MessageTarget::TYPE_CHANNEL)
408         {
409                 Utils->SendChannelMessage(user->uuid, target.Get<Channel>(), details.text, target.status, details.tags_out, details.exemptions, message_type);
410         }
411         else if (target.type == MessageTarget::TYPE_SERVER)
412         {
413                 const std::string* serverglob = target.Get<std::string>();
414                 CmdBuilder par(user, message_type);
415                 par.push_tags(details.tags_out);
416                 par.push_back(*serverglob);
417                 par.push_last(details.text);
418                 par.Broadcast();
419         }
420 }
421
422 void ModuleSpanningTree::OnUserPostTagMessage(User* user, const MessageTarget& target, const CTCTags::TagMessageDetails& details)
423 {
424         if (!IS_LOCAL(user))
425                 return;
426
427         switch (target.type)
428         {
429                 case MessageTarget::TYPE_USER:
430                 {
431                         User* d = target.Get<User>();
432                         if (!IS_LOCAL(d))
433                         {
434                                 CmdBuilder params(user, "TAGMSG");
435                                 params.push_tags(details.tags_out);
436                                 params.push_back(d->uuid);
437                                 params.Unicast(d);
438                         }
439                         break;
440                 }
441                 case MessageTarget::TYPE_CHANNEL:
442                 {
443                         Utils->SendChannelMessage(user->uuid, target.Get<Channel>(), "", target.status, details.tags_out, details.exemptions, "TAGMSG");
444                         break;
445                 }
446                 case MessageTarget::TYPE_SERVER:
447                 {
448                         const std::string* serverglob = target.Get<std::string>();
449                         CmdBuilder par(user, "TAGMSG");
450                         par.push_tags(details.tags_out);
451                         par.push_back(*serverglob);
452                         par.Broadcast();
453                         break;
454                 }
455         }
456 }
457
458 void ModuleSpanningTree::OnBackgroundTimer(time_t curtime)
459 {
460         AutoConnectServers(curtime);
461         DoConnectTimeout(curtime);
462 }
463
464 void ModuleSpanningTree::OnUserConnect(LocalUser* user)
465 {
466         if (user->quitting)
467                 return;
468
469         // Create the lazy ssl_cert metadata for this user if not already created.
470         if (sslapi)
471                 sslapi->GetCertificate(user);
472
473         CommandUID::Builder(user).Broadcast();
474
475         if (user->IsOper())
476                 CommandOpertype::Builder(user).Broadcast();
477
478         for(Extensible::ExtensibleStore::const_iterator i = user->GetExtList().begin(); i != user->GetExtList().end(); i++)
479         {
480                 ExtensionItem* item = i->first;
481                 std::string value = item->serialize(FORMAT_NETWORK, user, i->second);
482                 if (!value.empty())
483                         ServerInstance->PI->SendMetaData(user, item->name, value);
484         }
485
486         Utils->TreeRoot->UserCount++;
487 }
488
489 void ModuleSpanningTree::OnUserJoin(Membership* memb, bool sync, bool created_by_local, CUList& excepts)
490 {
491         // Only do this for local users
492         if (!IS_LOCAL(memb->user))
493                 return;
494
495         // Assign the current membership id to the new Membership and increase it
496         memb->id = currmembid++;
497
498         if (created_by_local)
499         {
500                 CommandFJoin::Builder params(memb->chan);
501                 params.add(memb);
502                 params.finalize();
503                 params.Broadcast();
504         }
505         else
506         {
507                 CmdBuilder params(memb->user, "IJOIN");
508                 params.push_back(memb->chan->name);
509                 params.push_int(memb->id);
510                 if (!memb->modes.empty())
511                 {
512                         params.push_back(ConvToStr(memb->chan->age));
513                         params.push_back(memb->modes);
514                 }
515                 params.Broadcast();
516         }
517 }
518
519 void ModuleSpanningTree::OnChangeHost(User* user, const std::string &newhost)
520 {
521         if (user->registered != REG_ALL || !IS_LOCAL(user))
522                 return;
523
524         CmdBuilder(user, "FHOST").push(newhost).Broadcast();
525 }
526
527 void ModuleSpanningTree::OnChangeRealName(User* user, const std::string& real)
528 {
529         if (user->registered != REG_ALL || !IS_LOCAL(user))
530                 return;
531
532         CmdBuilder(user, "FNAME").push_last(real).Broadcast();
533 }
534
535 void ModuleSpanningTree::OnChangeIdent(User* user, const std::string &ident)
536 {
537         if ((user->registered != REG_ALL) || (!IS_LOCAL(user)))
538                 return;
539
540         CmdBuilder(user, "FIDENT").push(ident).Broadcast();
541 }
542
543 void ModuleSpanningTree::OnUserPart(Membership* memb, std::string &partmessage, CUList& excepts)
544 {
545         if (IS_LOCAL(memb->user))
546         {
547                 CmdBuilder params(memb->user, "PART");
548                 params.push_back(memb->chan->name);
549                 if (!partmessage.empty())
550                         params.push_last(partmessage);
551                 params.Broadcast();
552         }
553 }
554
555 void ModuleSpanningTree::OnUserQuit(User* user, const std::string &reason, const std::string &oper_message)
556 {
557         if (IS_LOCAL(user))
558         {
559                 if (oper_message != reason)
560                         ServerInstance->PI->SendMetaData(user, "operquit", oper_message);
561
562                 CmdBuilder(user, "QUIT").push_last(reason).Broadcast();
563         }
564         else
565         {
566                 // Hide the message if one of the following is true:
567                 // - User is being quit due to a netsplit and quietbursts is on
568                 // - Server is a silent uline
569                 TreeServer* server = TreeServer::Get(user);
570                 bool hide = (((server->IsDead()) && (Utils->quiet_bursts)) || (server->IsSilentULine()));
571                 if (!hide)
572                 {
573                         ServerInstance->SNO->WriteToSnoMask('Q', "Client exiting on server %s: %s (%s) [%s]",
574                                 user->server->GetName().c_str(), user->GetFullRealHost().c_str(), user->GetIPString().c_str(), oper_message.c_str());
575                 }
576         }
577
578         // Regardless, update the UserCount
579         TreeServer::Get(user)->UserCount--;
580 }
581
582 void ModuleSpanningTree::OnUserPostNick(User* user, const std::string &oldnick)
583 {
584         if (IS_LOCAL(user))
585         {
586                 // The nick TS is updated by the core, we don't do it
587                 CmdBuilder params(user, "NICK");
588                 params.push_back(user->nick);
589                 params.push_back(ConvToStr(user->age));
590                 params.Broadcast();
591         }
592         else if (!loopCall)
593         {
594                 ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "WARNING: Changed nick of remote user %s from %s to %s TS %lu by ourselves!", user->uuid.c_str(), oldnick.c_str(), user->nick.c_str(), (unsigned long) user->age);
595         }
596 }
597
598 void ModuleSpanningTree::OnUserKick(User* source, Membership* memb, const std::string &reason, CUList& excepts)
599 {
600         if ((!IS_LOCAL(source)) && (source != ServerInstance->FakeClient))
601                 return;
602
603         CmdBuilder params(source, "KICK");
604         params.push_back(memb->chan->name);
605         params.push_back(memb->user->uuid);
606         // If a remote user is being kicked by us then send the membership id in the kick too
607         if (!IS_LOCAL(memb->user))
608                 params.push_int(memb->id);
609         params.push_last(reason);
610         params.Broadcast();
611 }
612
613 void ModuleSpanningTree::OnPreRehash(User* user, const std::string &parameter)
614 {
615         ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "OnPreRehash called with param %s", parameter.c_str());
616
617         // Send out to other servers
618         if (!parameter.empty() && parameter[0] != '-')
619         {
620                 CmdBuilder params((user ? user->uuid : ServerInstance->Config->GetSID()), "REHASH");
621                 params.push_back(parameter);
622                 params.Forward(user ? TreeServer::Get(user)->GetRoute() : NULL);
623         }
624 }
625
626 void ModuleSpanningTree::ReadConfig(ConfigStatus& status)
627 {
628         // Did this rehash change the description of this server?
629         const std::string& newdesc = ServerInstance->Config->ServerDesc;
630         if (newdesc != Utils->TreeRoot->GetDesc())
631         {
632                 // Broadcast a SINFO desc message to let the network know about the new description. This is the description
633                 // string that is sent in the SERVER message initially and shown for example in WHOIS.
634                 // We don't need to update the field itself in the Server object - the core does that.
635                 CommandSInfo::Builder(Utils->TreeRoot, "desc", newdesc).Broadcast();
636         }
637
638         // Re-read config stuff
639         try
640         {
641                 Utils->ReadConfiguration();
642         }
643         catch (ModuleException& e)
644         {
645                 // Refresh the IP cache anyway, so servers read before the error will be allowed to connect
646                 Utils->RefreshIPCache();
647                 // Always warn local opers with snomask +l, also warn globally (snomask +L) if the rehash was issued by a remote user
648                 std::string msg = "Error in configuration: ";
649                 msg.append(e.GetReason());
650                 ServerInstance->SNO->WriteToSnoMask('l', msg);
651                 if (status.srcuser && !IS_LOCAL(status.srcuser))
652                         ServerInstance->PI->SendSNONotice('L', msg);
653         }
654 }
655
656 void ModuleSpanningTree::OnLoadModule(Module* mod)
657 {
658         std::string data;
659         data.push_back('+');
660         data.append(mod->ModuleSourceFile);
661         Version v = mod->GetVersion();
662         if (!v.link_data.empty())
663         {
664                 data.push_back('=');
665                 data.append(v.link_data);
666         }
667         ServerInstance->PI->SendMetaData("modules", data);
668 }
669
670 void ModuleSpanningTree::OnUnloadModule(Module* mod)
671 {
672         if (!Utils)
673                 return;
674         ServerInstance->PI->SendMetaData("modules", "-" + mod->ModuleSourceFile);
675
676         if (mod == this)
677         {
678                 // We are being unloaded, inform modules about all servers splitting which cannot be done later when the servers are actually disconnected
679                 const server_hash& servers = Utils->serverlist;
680                 for (server_hash::const_iterator i = servers.begin(); i != servers.end(); ++i)
681                 {
682                         TreeServer* server = i->second;
683                         if (!server->IsRoot())
684                                 FOREACH_MOD_CUSTOM(GetEventProvider(), ServerEventListener, OnServerSplit, (server));
685                 }
686                 return;
687         }
688
689         // Some other module is being unloaded. If it provides an IOHook we use, we must close that server connection now.
690
691 restart:
692         // Close all connections which use an IO hook provided by this module
693         const TreeServer::ChildServers& list = Utils->TreeRoot->GetChildren();
694         for (TreeServer::ChildServers::const_iterator i = list.begin(); i != list.end(); ++i)
695         {
696                 TreeSocket* sock = (*i)->GetSocket();
697                 if (sock->GetModHook(mod))
698                 {
699                         sock->SendError("SSL module unloaded");
700                         sock->Close();
701                         // XXX: The list we're iterating is modified by TreeServer::SQuit() which is called by Close()
702                         goto restart;
703                 }
704         }
705
706         for (SpanningTreeUtilities::TimeoutList::const_iterator i = Utils->timeoutlist.begin(); i != Utils->timeoutlist.end(); ++i)
707         {
708                 TreeSocket* sock = i->first;
709                 if (sock->GetModHook(mod))
710                         sock->Close();
711         }
712 }
713
714 void ModuleSpanningTree::OnOper(User* user, const std::string &opertype)
715 {
716         if (user->registered != REG_ALL || !IS_LOCAL(user))
717                 return;
718
719         // Note: The protocol does not allow direct umode +o;
720         // sending OPERTYPE infers +o modechange locally.
721         CommandOpertype::Builder(user).Broadcast();
722 }
723
724 void ModuleSpanningTree::OnAddLine(User* user, XLine *x)
725 {
726         if (!x->IsBurstable() || loopCall || (user && !IS_LOCAL(user)))
727                 return;
728
729         if (!user)
730                 user = ServerInstance->FakeClient;
731
732         CommandAddLine::Builder(x, user).Broadcast();
733 }
734
735 void ModuleSpanningTree::OnDelLine(User* user, XLine *x)
736 {
737         if (!x->IsBurstable() || loopCall || (user && !IS_LOCAL(user)))
738                 return;
739
740         if (!user)
741                 user = ServerInstance->FakeClient;
742
743         CmdBuilder params(user, "DELLINE");
744         params.push_back(x->type);
745         params.push_back(x->Displayable());
746         params.Broadcast();
747 }
748
749 void ModuleSpanningTree::OnUserAway(User* user)
750 {
751         if (IS_LOCAL(user))
752                 CommandAway::Builder(user).Broadcast();
753 }
754
755 void ModuleSpanningTree::OnUserBack(User* user)
756 {
757         if (IS_LOCAL(user))
758                 CommandAway::Builder(user).Broadcast();
759 }
760
761 void ModuleSpanningTree::OnMode(User* source, User* u, Channel* c, const Modes::ChangeList& modes, ModeParser::ModeProcessFlag processflags)
762 {
763         if (processflags & ModeParser::MODE_LOCALONLY)
764                 return;
765
766         if (u)
767         {
768                 if (u->registered != REG_ALL)
769                         return;
770
771                 CmdBuilder params(source, "MODE");
772                 params.push(u->uuid);
773                 params.push(ClientProtocol::Messages::Mode::ToModeLetters(modes));
774                 params.push_raw(Translate::ModeChangeListToParams(modes.getlist()));
775                 params.Broadcast();
776         }
777         else
778         {
779                 CmdBuilder params(source, "FMODE");
780                 params.push(c->name);
781                 params.push_int(c->age);
782                 params.push(ClientProtocol::Messages::Mode::ToModeLetters(modes));
783                 params.push_raw(Translate::ModeChangeListToParams(modes.getlist()));
784                 params.Broadcast();
785         }
786 }
787
788 CullResult ModuleSpanningTree::cull()
789 {
790         if (Utils)
791                 Utils->cull();
792         return this->Module::cull();
793 }
794
795 ModuleSpanningTree::~ModuleSpanningTree()
796 {
797         ServerInstance->PI = &ServerInstance->DefaultProtocolInterface;
798
799         Server* newsrv = new Server(ServerInstance->Config->ServerName, ServerInstance->Config->ServerDesc);
800         SetLocalUsersServer(newsrv);
801
802         delete Utils;
803 }
804
805 Version ModuleSpanningTree::GetVersion()
806 {
807         return Version("Allows servers to be linked", VF_VENDOR);
808 }
809
810 /* It is IMPORTANT that m_spanningtree is the last module in the chain
811  * so that any activity it sees is FINAL, e.g. we arent going to send out
812  * a NICK message before m_cloaking has finished putting the +x on the user,
813  * etc etc.
814  * Therefore, we set our priority to PRIORITY_LAST to make sure we end up at the END of
815  * the module call queue.
816  */
817 void ModuleSpanningTree::Prioritize()
818 {
819         ServerInstance->Modules->SetPriority(this, PRIORITY_LAST);
820         ServerInstance->Modules.SetPriority(this, I_OnPreTopicChange, PRIORITY_FIRST);
821 }
822
823 MODULE_INIT(ModuleSpanningTree)