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