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