]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/main.cpp
Include explicit parameter list in ProtocolInterface::SendMode
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / main.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 /* $ModDesc: Provides a spanning tree server link protocol */
15
16 #include "inspircd.h"
17 #include "commands/cmd_whois.h"
18 #include "commands/cmd_stats.h"
19 #include "socket.h"
20 #include "xline.h"
21 #include "transport.h"
22
23 #include "m_spanningtree/cachetimer.h"
24 #include "m_spanningtree/resolvers.h"
25 #include "m_spanningtree/main.h"
26 #include "m_spanningtree/utils.h"
27 #include "m_spanningtree/treeserver.h"
28 #include "m_spanningtree/link.h"
29 #include "m_spanningtree/treesocket.h"
30 #include "m_spanningtree/rconnect.h"
31 #include "m_spanningtree/rsquit.h"
32 #include "m_spanningtree/protocolinterface.h"
33
34 /* $ModDep: m_spanningtree/cachetimer.h m_spanningtree/resolvers.h m_spanningtree/main.h m_spanningtree/utils.h m_spanningtree/treeserver.h m_spanningtree/link.h m_spanningtree/treesocket.h m_spanningtree/rconnect.h m_spanningtree/rsquit.h m_spanningtree/protocolinterface.h */
35
36 ModuleSpanningTree::ModuleSpanningTree(InspIRCd* Me)
37         : Module(Me), max_local(0), max_global(0)
38 {
39         ServerInstance->Modules->UseInterface("BufferedSocketHook");
40         Utils = new SpanningTreeUtilities(ServerInstance, this);
41         command_rconnect = new CommandRConnect(ServerInstance, this, Utils);
42         ServerInstance->AddCommand(command_rconnect);
43         command_rsquit = new CommandRSQuit(ServerInstance, this, Utils);
44         ServerInstance->AddCommand(command_rsquit);
45         RefreshTimer = new CacheRefreshTimer(ServerInstance, Utils);
46         ServerInstance->Timers->AddTimer(RefreshTimer);
47
48         Implementation eventlist[] =
49         {
50                 I_OnPreCommand, I_OnGetServerDescription, I_OnUserInvite, I_OnPostLocalTopicChange,
51                 I_OnWallops, I_OnUserNotice, I_OnUserMessage, I_OnBackgroundTimer,
52                 I_OnUserJoin, I_OnChangeLocalUserHost, I_OnChangeName, I_OnUserPart, I_OnUnloadModule,
53                 I_OnUserQuit, I_OnUserPostNick, I_OnUserKick, I_OnRemoteKill, I_OnRehash,
54                 I_OnOper, I_OnAddLine, I_OnDelLine, I_ProtoSendMode, I_OnMode, I_OnLoadModule,
55                 I_OnStats, I_ProtoSendMetaData, I_OnEvent, I_OnSetAway, I_OnPostCommand
56         };
57         ServerInstance->Modules->Attach(eventlist, this, 29);
58
59         delete ServerInstance->PI;
60         ServerInstance->PI = new SpanningTreeProtocolInterface(this, Utils, ServerInstance);
61
62         for (std::vector<User*>::const_iterator i = ServerInstance->Users->local_users.begin(); i != ServerInstance->Users->local_users.end(); i++)
63         {
64                 ServerInstance->PI->Introduce(*i);
65         }
66 }
67
68 void ModuleSpanningTree::ShowLinks(TreeServer* Current, User* user, int hops)
69 {
70         std::string Parent = Utils->TreeRoot->GetName();
71         if (Current->GetParent())
72         {
73                 Parent = Current->GetParent()->GetName();
74         }
75         for (unsigned int q = 0; q < Current->ChildCount(); q++)
76         {
77                 if ((Current->GetChild(q)->Hidden) || ((Utils->HideULines) && (ServerInstance->ULine(Current->GetChild(q)->GetName().c_str()))))
78                 {
79                         if (IS_OPER(user))
80                         {
81                                  ShowLinks(Current->GetChild(q),user,hops+1);
82                         }
83                 }
84                 else
85                 {
86                         ShowLinks(Current->GetChild(q),user,hops+1);
87                 }
88         }
89         /* Don't display the line if its a uline, hide ulines is on, and the user isnt an oper */
90         if ((Utils->HideULines) && (ServerInstance->ULine(Current->GetName().c_str())) && (!IS_OPER(user)))
91                 return;
92         /* Or if the server is hidden and they're not an oper */
93         else if ((Current->Hidden) && (!IS_OPER(user)))
94                 return;
95
96         user->WriteNumeric(364, "%s %s %s :%d %s",      user->nick.c_str(),Current->GetName().c_str(),
97                         (Utils->FlatLinks && (!IS_OPER(user))) ? ServerInstance->Config->ServerName : Parent.c_str(),
98                         (Utils->FlatLinks && (!IS_OPER(user))) ? 0 : hops,
99                         Current->GetDesc().c_str());
100 }
101
102 int ModuleSpanningTree::CountLocalServs()
103 {
104         return Utils->TreeRoot->ChildCount();
105 }
106
107 int ModuleSpanningTree::CountServs()
108 {
109         return Utils->serverlist.size();
110 }
111
112 void ModuleSpanningTree::HandleLinks(const std::vector<std::string>& parameters, User* user)
113 {
114         ShowLinks(Utils->TreeRoot,user,0);
115         user->WriteNumeric(365, "%s * :End of /LINKS list.",user->nick.c_str());
116         return;
117 }
118
119 void ModuleSpanningTree::HandleLusers(const std::vector<std::string>& parameters, User* user)
120 {
121         unsigned int n_users = ServerInstance->Users->UserCount();
122
123         /* Only update these when someone wants to see them, more efficient */
124         if ((unsigned int)ServerInstance->Users->LocalUserCount() > max_local)
125                 max_local = ServerInstance->Users->LocalUserCount();
126         if (n_users > max_global)
127                 max_global = n_users;
128
129         unsigned int ulined_count = 0;
130         unsigned int ulined_local_count = 0;
131
132         /* If ulined are hidden and we're not an oper, count the number of ulined servers hidden,
133          * locally and globally (locally means directly connected to us)
134          */
135         if ((Utils->HideULines) && (!IS_OPER(user)))
136         {
137                 for (server_hash::iterator q = Utils->serverlist.begin(); q != Utils->serverlist.end(); q++)
138                 {
139                         if (ServerInstance->ULine(q->second->GetName().c_str()))
140                         {
141                                 ulined_count++;
142                                 if (q->second->GetParent() == Utils->TreeRoot)
143                                         ulined_local_count++;
144                         }
145                 }
146         }
147         user->WriteNumeric(251, "%s :There are %d users and %d invisible on %d servers",user->nick.c_str(),
148                         n_users-ServerInstance->Users->ModeCount('i'),
149                         ServerInstance->Users->ModeCount('i'),
150                         ulined_count ? this->CountServs() - ulined_count : this->CountServs());
151
152         if (ServerInstance->Users->OperCount())
153                 user->WriteNumeric(252, "%s %d :operator(s) online",user->nick.c_str(),ServerInstance->Users->OperCount());
154
155         if (ServerInstance->Users->UnregisteredUserCount())
156                 user->WriteNumeric(253, "%s %d :unknown connections",user->nick.c_str(),ServerInstance->Users->UnregisteredUserCount());
157
158         if (ServerInstance->ChannelCount())
159                 user->WriteNumeric(254, "%s %ld :channels formed",user->nick.c_str(),ServerInstance->ChannelCount());
160
161         user->WriteNumeric(255, "%s :I have %d clients and %d servers",user->nick.c_str(),ServerInstance->Users->LocalUserCount(),ulined_local_count ? this->CountLocalServs() - ulined_local_count : this->CountLocalServs());
162         user->WriteNumeric(265, "%s :Current Local Users: %d  Max: %d",user->nick.c_str(),ServerInstance->Users->LocalUserCount(),max_local);
163         user->WriteNumeric(266, "%s :Current Global Users: %d  Max: %d",user->nick.c_str(),n_users,max_global);
164         return;
165 }
166
167 std::string ModuleSpanningTree::TimeToStr(time_t secs)
168 {
169         time_t mins_up = secs / 60;
170         time_t hours_up = mins_up / 60;
171         time_t days_up = hours_up / 24;
172         secs = secs % 60;
173         mins_up = mins_up % 60;
174         hours_up = hours_up % 24;
175         return ((days_up ? (ConvToStr(days_up) + "d") : std::string(""))
176                         + (hours_up ? (ConvToStr(hours_up) + "h") : std::string(""))
177                         + (mins_up ? (ConvToStr(mins_up) + "m") : std::string(""))
178                         + ConvToStr(secs) + "s");
179 }
180
181 void ModuleSpanningTree::DoPingChecks(time_t curtime)
182 {
183         /*
184          * Cancel remote burst mode on any servers which still have it enabled due to latency/lack of data.
185          * This prevents lost REMOTECONNECT notices
186          */
187         timeval t;
188         gettimeofday(&t, NULL);
189         long ts = (t.tv_sec * 1000) + (t.tv_usec / 1000);
190
191         for (server_hash::iterator i = Utils->serverlist.begin(); i != Utils->serverlist.end(); i++)
192         {
193                 TreeServer *s = i->second;
194
195                 // Now do PING checks on all servers
196                 TreeServer *mts = Utils->BestRouteTo(s->GetID());
197
198                 if (mts)
199                 {
200                         // Only ping if this server needs one
201                         if (curtime >= s->NextPingTime())
202                         {
203                                 // And if they answered the last
204                                 if (s->AnsweredLastPing())
205                                 {
206                                         // They did, send a ping to them
207                                         s->SetNextPingTime(curtime + Utils->PingFreq);
208                                         TreeSocket *tsock = mts->GetSocket();
209
210                                         // ... if we can find a proper route to them
211                                         if (tsock)
212                                         {
213                                                 tsock->WriteLine(std::string(":") + ServerInstance->Config->GetSID() + " PING " +
214                                                                 ServerInstance->Config->GetSID() + " " + s->GetID());
215                                                 s->LastPingMsec = ts;
216                                         }
217                                 }
218                                 else
219                                 {
220                                         // They didn't answer the last ping, if they are locally connected, get rid of them.
221                                         TreeSocket *sock = s->GetSocket();
222                                         if (sock)
223                                         {
224                                                 sock->SendError("Ping timeout");
225                                                 sock->Squit(s,"Ping timeout");
226                                                 ServerInstance->SE->DelFd(sock);
227                                                 sock->Close();
228                                                 return;
229                                         }
230                                 }
231                         }
232
233                         // If warn on ping enabled and not warned and the difference is sufficient and they didn't answer the last ping...
234                         if ((Utils->PingWarnTime) && (!s->Warned) && (curtime >= s->NextPingTime() - (Utils->PingFreq - Utils->PingWarnTime)) && (!s->AnsweredLastPing()))
235                         {
236                                 /* The server hasnt responded, send a warning to opers */
237                                 ServerInstance->SNO->WriteToSnoMask('l',"Server \002%s\002 has not responded to PING for %d seconds, high latency.", s->GetName().c_str(), Utils->PingWarnTime);
238                                 s->Warned = true;
239                         }
240                 }
241         }
242 }
243
244 void ModuleSpanningTree::ConnectServer(Link* x)
245 {
246         bool ipvalid = true;
247
248         if (InspIRCd::Match(ServerInstance->Config->ServerName, assign(x->Name)))
249         {
250                 this->ServerInstance->SNO->WriteToSnoMask('l', "CONNECT: Not connecting to myself.");
251                 return;
252         }
253
254         QueryType start_type = DNS_QUERY_A;
255 #ifdef IPV6
256         start_type = DNS_QUERY_AAAA;
257         if (strchr(x->IPAddr.c_str(),':'))
258         {
259                 in6_addr n;
260                 if (inet_pton(AF_INET6, x->IPAddr.c_str(), &n) < 1)
261                         ipvalid = false;
262         }
263         else
264 #endif
265         {
266                 in_addr n;
267                 if (inet_aton(x->IPAddr.c_str(),&n) < 1)
268                         ipvalid = false;
269         }
270
271         /* Do we already have an IP? If so, no need to resolve it. */
272         if (ipvalid)
273         {
274                 /* Gave a hook, but it wasnt one we know */
275                 if ((!x->Hook.empty()) && (Utils->hooks.find(x->Hook.c_str()) == Utils->hooks.end()))
276                         return;
277                 TreeSocket* newsocket = new TreeSocket(Utils, ServerInstance, x->IPAddr,x->Port, x->Timeout ? x->Timeout : 10,x->Name.c_str(), x->Bind, x->Hook.empty() ? NULL : Utils->hooks[x->Hook.c_str()]);
278                 if (newsocket->GetFd() > -1)
279                 {
280                         /* Handled automatically on success */
281                 }
282                 else
283                 {
284                         this->ServerInstance->SNO->WriteToSnoMask('l', "CONNECT: Error connecting \002%s\002: %s.",x->Name.c_str(),strerror(errno));
285                         if (ServerInstance->SocketCull.find(newsocket) == ServerInstance->SocketCull.end())
286                                 ServerInstance->SocketCull[newsocket] = newsocket;
287                         Utils->DoFailOver(x);
288                 }
289         }
290         else
291         {
292                 try
293                 {
294                         bool cached;
295                         ServernameResolver* snr = new ServernameResolver((Module*)this, Utils, ServerInstance,x->IPAddr, *x, cached, start_type);
296                         ServerInstance->AddResolver(snr, cached);
297                 }
298                 catch (ModuleException& e)
299                 {
300                         this->ServerInstance->SNO->WriteToSnoMask('l', "CONNECT: Error connecting \002%s\002: %s.",x->Name.c_str(), e.GetReason());
301                         Utils->DoFailOver(x);
302                 }
303         }
304 }
305
306 void ModuleSpanningTree::AutoConnectServers(time_t curtime)
307 {
308         for (std::vector<Link>::iterator x = Utils->LinkBlocks.begin(); x < Utils->LinkBlocks.end(); x++)
309         {
310                 if ((x->AutoConnect) && (curtime >= x->NextConnectTime))
311                 {
312                         x->NextConnectTime = curtime + x->AutoConnect;
313                         TreeServer* CheckDupe = Utils->FindServer(x->Name.c_str());
314                         if (x->FailOver.length())
315                         {
316                                 TreeServer* CheckFailOver = Utils->FindServer(x->FailOver.c_str());
317                                 if (CheckFailOver)
318                                 {
319                                         /* The failover for this server is currently a member of the network.
320                                          * The failover probably succeeded, where the main link did not.
321                                          * Don't try the main link until the failover is gone again.
322                                          */
323                                         continue;
324                                 }
325                         }
326                         if (!CheckDupe)
327                         {
328                                 // an autoconnected server is not connected. Check if its time to connect it
329                                 ServerInstance->SNO->WriteToSnoMask('l',"AUTOCONNECT: Auto-connecting server \002%s\002 (%lu seconds until next attempt)",x->Name.c_str(),x->AutoConnect);
330                                 this->ConnectServer(&(*x));
331                         }
332                 }
333         }
334 }
335
336 void ModuleSpanningTree::DoConnectTimeout(time_t curtime)
337 {
338         std::vector<Link*> failovers;
339         for (std::map<TreeSocket*, std::pair<std::string, int> >::iterator i = Utils->timeoutlist.begin(); i != Utils->timeoutlist.end(); i++)
340         {
341                 TreeSocket* s = i->first;
342                 std::pair<std::string, int> p = i->second;
343                 if (curtime > s->age + p.second)
344                 {
345                         ServerInstance->SNO->WriteToSnoMask('l',"CONNECT: Error connecting \002%s\002 (timeout of %d seconds)",p.first.c_str(),p.second);
346                         ServerInstance->SE->DelFd(s);
347                         s->Close();
348                         Link* MyLink = Utils->FindLink(p.first);
349                         if (MyLink)
350                                 failovers.push_back(MyLink);
351                 }
352         }
353         /* Trigger failover for each timed out socket */
354         for (std::vector<Link*>::const_iterator n = failovers.begin(); n != failovers.end(); ++n)
355         {
356                 Utils->DoFailOver(*n);
357         }
358 }
359
360 int ModuleSpanningTree::HandleVersion(const std::vector<std::string>& parameters, User* user)
361 {
362         // we've already checked if pcnt > 0, so this is safe
363         TreeServer* found = Utils->FindServerMask(parameters[0]);
364         if (found)
365         {
366                 std::string Version = found->GetVersion();
367                 user->WriteNumeric(351, "%s :%s",user->nick.c_str(),Version.c_str());
368                 if (found == Utils->TreeRoot)
369                 {
370                         ServerInstance->Config->Send005(user);
371                 }
372         }
373         else
374         {
375                 user->WriteNumeric(402, "%s %s :No such server",user->nick.c_str(),parameters[0].c_str());
376         }
377         return 1;
378 }
379
380 /* This method will attempt to get a message to a remote user.
381  */
382 void ModuleSpanningTree::RemoteMessage(User* user, const char* format, ...)
383 {
384         char text[MAXBUF];
385         va_list argsPtr;
386
387         va_start(argsPtr, format);
388         vsnprintf(text, MAXBUF, format, argsPtr);
389         va_end(argsPtr);
390
391         if (IS_LOCAL(user))
392                 user->WriteServ("NOTICE %s :%s", user->nick.c_str(), text);
393         else
394                 ServerInstance->PI->SendUserNotice(user, text);
395 }
396
397 int ModuleSpanningTree::HandleConnect(const std::vector<std::string>& parameters, User* user)
398 {
399         for (std::vector<Link>::iterator x = Utils->LinkBlocks.begin(); x < Utils->LinkBlocks.end(); x++)
400         {
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 1;
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 1;
415                         }
416                         else
417                         {
418                                 RemoteMessage(user, "*** CONNECT: Server \002%s\002 already exists on the network and is connected via \002%s\002",x->Name.c_str(),CheckDupe->GetParent()->GetName().c_str());
419                                 return 1;
420                         }
421                 }
422         }
423         RemoteMessage(user, "*** CONNECT: No server matching \002%s\002 could be found in the config file.",parameters[0].c_str());
424         return 1;
425 }
426
427 void ModuleSpanningTree::OnGetServerDescription(const std::string &servername,std::string &description)
428 {
429         TreeServer* s = Utils->FindServer(servername);
430         if (s)
431         {
432                 description = s->GetDesc();
433         }
434 }
435
436 void ModuleSpanningTree::OnUserInvite(User* source,User* dest,Channel* channel, time_t expiry)
437 {
438         if (IS_LOCAL(source))
439         {
440                 std::deque<std::string> params;
441                 params.push_back(dest->uuid);
442                 params.push_back(channel->name);
443                 params.push_back(ConvToStr(expiry));
444                 Utils->DoOneToMany(source->uuid,"INVITE",params);
445         }
446 }
447
448 void ModuleSpanningTree::OnPostLocalTopicChange(User* user, Channel* chan, const std::string &topic)
449 {
450         std::deque<std::string> params;
451         params.push_back(chan->name);
452         params.push_back(":"+topic);
453         Utils->DoOneToMany(user->uuid,"TOPIC",params);
454 }
455
456 void ModuleSpanningTree::OnWallops(User* user, const std::string &text)
457 {
458         if (IS_LOCAL(user))
459         {
460                 std::deque<std::string> params;
461                 params.push_back(":"+text);
462                 Utils->DoOneToMany(user->uuid,"WALLOPS",params);
463         }
464 }
465
466 void ModuleSpanningTree::OnUserNotice(User* user, void* dest, int target_type, const std::string &text, char status, const CUList &exempt_list)
467 {
468         /* Server origin */
469         if (user == NULL)
470                 return;
471
472         if (target_type == TYPE_USER)
473         {
474                 User* d = (User*)dest;
475                 if ((d->GetFd() < 0) && (IS_LOCAL(user)))
476                 {
477                         std::deque<std::string> params;
478                         params.clear();
479                         params.push_back(d->uuid);
480                         params.push_back(":"+text);
481                         Utils->DoOneToOne(user->uuid,"NOTICE",params,d->server);
482                 }
483         }
484         else if (target_type == TYPE_CHANNEL)
485         {
486                 if (IS_LOCAL(user))
487                 {
488                         Channel *c = (Channel*)dest;
489                         if (c)
490                         {
491                                 std::string cname = c->name;
492                                 if (status)
493                                         cname = status + cname;
494                                 TreeServerList list;
495                                 Utils->GetListOfServersForChannel(c,list,status,exempt_list);
496                                 for (TreeServerList::iterator i = list.begin(); i != list.end(); i++)
497                                 {
498                                         TreeSocket* Sock = i->second->GetSocket();
499                                         if (Sock)
500                                                 Sock->WriteLine(":"+std::string(user->uuid)+" NOTICE "+cname+" :"+text);
501                                 }
502                         }
503                 }
504         }
505         else if (target_type == TYPE_SERVER)
506         {
507                 if (IS_LOCAL(user))
508                 {
509                         char* target = (char*)dest;
510                         std::deque<std::string> par;
511                         par.push_back(target);
512                         par.push_back(":"+text);
513                         Utils->DoOneToMany(user->uuid,"NOTICE",par);
514                 }
515         }
516 }
517
518 void ModuleSpanningTree::OnUserMessage(User* user, void* dest, int target_type, const std::string &text, char status, const CUList &exempt_list)
519 {
520         /* Server origin */
521         if (user == NULL)
522                 return;
523
524         if (target_type == TYPE_USER)
525         {
526                 // route private messages which are targetted at clients only to the server
527                 // which needs to receive them
528                 User* d = (User*)dest;
529                 if ((d->GetFd() < 0) && (IS_LOCAL(user)))
530                 {
531                         std::deque<std::string> params;
532                         params.clear();
533                         params.push_back(d->uuid);
534                         params.push_back(":"+text);
535                         Utils->DoOneToOne(user->uuid,"PRIVMSG",params,d->server);
536                 }
537         }
538         else if (target_type == TYPE_CHANNEL)
539         {
540                 if (IS_LOCAL(user))
541                 {
542                         Channel *c = (Channel*)dest;
543                         if (c)
544                         {
545                                 std::string cname = c->name;
546                                 if (status)
547                                         cname = status + cname;
548                                 TreeServerList list;
549                                 Utils->GetListOfServersForChannel(c,list,status,exempt_list);
550                                 for (TreeServerList::iterator i = list.begin(); i != list.end(); i++)
551                                 {
552                                         TreeSocket* Sock = i->second->GetSocket();
553                                         if (Sock)
554                                                 Sock->WriteLine(":"+std::string(user->uuid)+" PRIVMSG "+cname+" :"+text);
555                                 }
556                         }
557                 }
558         }
559         else if (target_type == TYPE_SERVER)
560         {
561                 if (IS_LOCAL(user))
562                 {
563                         char* target = (char*)dest;
564                         std::deque<std::string> par;
565                         par.push_back(target);
566                         par.push_back(":"+text);
567                         Utils->DoOneToMany(user->uuid,"PRIVMSG",par);
568                 }
569         }
570 }
571
572 void ModuleSpanningTree::OnBackgroundTimer(time_t curtime)
573 {
574         AutoConnectServers(curtime);
575         DoPingChecks(curtime);
576         DoConnectTimeout(curtime);
577 }
578
579 void ModuleSpanningTree::OnUserJoin(User* user, Channel* channel, bool sync, bool &silent)
580 {
581         // Only do this for local users
582         if (IS_LOCAL(user))
583         {
584                 std::deque<std::string> params;
585                 // set up their permissions and the channel TS with FJOIN.
586                 // All users are FJOINed now, because a module may specify
587                 // new joining permissions for the user.
588                 params.push_back(channel->name);
589                 params.push_back(ConvToStr(channel->age));
590                 params.push_back(std::string("+") + channel->ChanModes(true));
591                 params.push_back(ServerInstance->Modes->ModeString(user, channel, false)+","+std::string(user->uuid));
592                 Utils->DoOneToMany(ServerInstance->Config->GetSID(),"FJOIN",params);
593         }
594 }
595
596 int ModuleSpanningTree::OnChangeLocalUserHost(User* user, const std::string &newhost)
597 {
598         std::deque<std::string> params;
599         params.push_back(newhost);
600         Utils->DoOneToMany(user->uuid,"FHOST",params);
601         return 0;
602 }
603
604 void ModuleSpanningTree::OnChangeName(User* user, const std::string &gecos)
605 {
606         // only occurs for local clients
607         if (user->registered != REG_ALL)
608                 return;
609         std::deque<std::string> params;
610         params.push_back(gecos);
611         Utils->DoOneToMany(user->uuid,"FNAME",params);
612 }
613
614 void ModuleSpanningTree::OnUserPart(User* user, Channel* channel,  std::string &partmessage, bool &silent)
615 {
616         if (IS_LOCAL(user))
617         {
618                 std::deque<std::string> params;
619                 params.push_back(channel->name);
620                 if (!partmessage.empty())
621                         params.push_back(":"+partmessage);
622                 Utils->DoOneToMany(user->uuid,"PART",params);
623         }
624 }
625
626 void ModuleSpanningTree::OnUserQuit(User* user, const std::string &reason, const std::string &oper_message)
627 {
628         if ((IS_LOCAL(user)) && (user->registered == REG_ALL))
629         {
630                 std::deque<std::string> params;
631
632                 if (oper_message != reason)
633                 {
634                         params.push_back(":"+oper_message);
635                         Utils->DoOneToMany(user->uuid,"OPERQUIT",params);
636                 }
637                 params.clear();
638                 params.push_back(":"+reason);
639                 Utils->DoOneToMany(user->uuid,"QUIT",params);
640         }
641
642         // Regardless, We need to modify the user Counts..
643         TreeServer* SourceServer = Utils->FindServer(user->server);
644         if (SourceServer)
645         {
646                 SourceServer->SetUserCount(-1); // decrement by 1
647         }
648 }
649
650 void ModuleSpanningTree::OnUserPostNick(User* user, const std::string &oldnick)
651 {
652         if (IS_LOCAL(user))
653         {
654                 std::deque<std::string> params;
655                 params.push_back(user->nick);
656
657                 /** IMPORTANT: We don't update the TS if the oldnick is just a case change of the newnick!
658                  */
659                 if (irc::string(user->nick.c_str()) != assign(oldnick))
660                         user->age = ServerInstance->Time();
661
662                 params.push_back(ConvToStr(user->age));
663                 Utils->DoOneToMany(user->uuid,"NICK",params);
664         }
665 }
666
667 void ModuleSpanningTree::OnUserKick(User* source, User* user, Channel* chan, const std::string &reason, bool &silent)
668 {
669         if ((source) && (IS_LOCAL(source)))
670         {
671                 std::deque<std::string> params;
672                 params.push_back(chan->name);
673                 params.push_back(user->uuid);
674                 params.push_back(":"+reason);
675                 Utils->DoOneToMany(source->uuid,"KICK",params);
676         }
677         else if (!source)
678         {
679                 std::deque<std::string> params;
680                 params.push_back(chan->name);
681                 params.push_back(user->uuid);
682                 params.push_back(":"+reason);
683                 Utils->DoOneToMany(ServerInstance->Config->GetSID(),"KICK",params);
684         }
685 }
686
687 void ModuleSpanningTree::OnRemoteKill(User* source, User* dest, const std::string &reason, const std::string &operreason)
688 {
689         if (!IS_LOCAL(source)) return; // Only start routing if we're origin.
690         std::deque<std::string> params;
691         params.push_back(":"+reason);
692         Utils->DoOneToMany(dest->uuid,"OPERQUIT",params);
693         params.clear();
694         params.push_back(dest->uuid);
695         params.push_back(":"+reason);
696         dest->SetOperQuit(operreason);
697         Utils->DoOneToMany(source->uuid,"KILL",params);
698 }
699
700 void ModuleSpanningTree::OnRehash(User* user, const std::string &parameter)
701 {
702         ServerInstance->Logs->Log("remoterehash", DEBUG, "called with param %s", parameter.c_str());
703
704         // Send out to other servers
705         if (!parameter.empty() && parameter[0] != '-')
706         {
707                 ServerInstance->Logs->Log("remoterehash", DEBUG, "sending out lol");
708                 std::deque<std::string> params;
709                 params.push_back(parameter);
710                 Utils->DoOneToAllButSender(user ? user->uuid : ServerInstance->Config->GetSID(), "REHASH", params, user ? user->server : ServerInstance->Config->ServerName);
711         }
712
713         // Re-read config stuff
714         Utils->ReadConfiguration(true);
715 }
716
717 void ModuleSpanningTree::OnLoadModule(Module* mod, const std::string &name)
718 {
719         this->RedoConfig(mod, name);
720 }
721
722 void ModuleSpanningTree::OnUnloadModule(Module* mod, const std::string &name)
723 {
724         this->RedoConfig(mod, name);
725 }
726
727 void ModuleSpanningTree::RedoConfig(Module* mod, const std::string &name)
728 {
729         /* If m_sha256.so is loaded (we use this for HMAC) or any module implementing a BufferedSocket interface is loaded,
730          * then we need to re-read our config again taking this into account.
731          */
732         modulelist* ml = ServerInstance->Modules->FindInterface("BufferedSocketHook");
733         bool IsBufferSocketModule = false;
734
735         /* Did we find any modules? */
736         if (ml && std::find(ml->begin(), ml->end(), mod) != ml->end())
737                 IsBufferSocketModule = true;
738
739         if (name == "m_sha256.so" || IsBufferSocketModule)
740         {
741                 Utils->ReadConfiguration(true);
742         }
743 }
744
745 // note: the protocol does not allow direct umode +o except
746 // via NICK with 8 params. sending OPERTYPE infers +o modechange
747 // locally.
748 void ModuleSpanningTree::OnOper(User* user, const std::string &opertype)
749 {
750         if (IS_LOCAL(user))
751         {
752                 std::deque<std::string> params;
753                 params.push_back(opertype);
754                 Utils->DoOneToMany(user->uuid,"OPERTYPE",params);
755         }
756 }
757
758 void ModuleSpanningTree::OnAddLine(User* user, XLine *x)
759 {
760         if (!x->IsBurstable())
761                 return;
762
763         char data[MAXBUF];
764         snprintf(data,MAXBUF,"%s %s %s %lu %lu :%s", x->type.c_str(), x->Displayable(),
765         ServerInstance->Config->ServerName, (unsigned long)x->set_time, (unsigned long)x->duration, x->reason);
766         std::deque<std::string> params;
767         params.push_back(data);
768
769         if (!user)
770         {
771                 /* Server-set lines */
772                 Utils->DoOneToMany(ServerInstance->Config->GetSID(), "ADDLINE", params);
773         }
774         else if (IS_LOCAL(user))
775         {
776                 /* User-set lines */
777                 Utils->DoOneToMany(user->uuid, "ADDLINE", params);
778         }
779 }
780
781 void ModuleSpanningTree::OnDelLine(User* user, XLine *x)
782 {
783         if (x->type == "K")
784                 return;
785
786         char data[MAXBUF];
787         snprintf(data,MAXBUF,"%s %s", x->type.c_str(), x->Displayable());
788         std::deque<std::string> params;
789         params.push_back(data);
790
791         if (!user)
792         {
793                 /* Server-unset lines */
794                 Utils->DoOneToMany(ServerInstance->Config->GetSID(), "DELLINE", params);
795         }
796         else if (IS_LOCAL(user))
797         {
798                 /* User-unset lines */
799                 Utils->DoOneToMany(user->uuid, "DELLINE", params);
800         }
801 }
802
803 void ModuleSpanningTree::OnMode(User* user, void* dest, int target_type, const std::deque<std::string> &text, const std::deque<TranslateType> &translate)
804 {
805         if ((IS_LOCAL(user)) && (user->registered == REG_ALL))
806         {
807                 std::deque<std::string> params;
808                 std::string command;
809                 std::string output_text;
810
811                 ServerInstance->Parser->TranslateUIDs(translate, text, output_text);
812
813                 if (target_type == TYPE_USER)
814                 {
815                         User* u = (User*)dest;
816                         params.push_back(u->uuid);
817                         params.push_back(output_text);
818                         command = "MODE";
819                 }
820                 else
821                 {
822                         Channel* c = (Channel*)dest;
823                         params.push_back(c->name);
824                         params.push_back(ConvToStr(c->age));
825                         params.push_back(output_text);
826                         command = "FMODE";
827                 }
828
829                 Utils->DoOneToMany(user->uuid, command, params);
830         }
831 }
832
833 int ModuleSpanningTree::OnSetAway(User* user, const std::string &awaymsg)
834 {
835         if (IS_LOCAL(user))
836         {
837                 if (awaymsg.empty())
838                 {
839                         std::deque<std::string> params;
840                         params.clear();
841                         Utils->DoOneToMany(user->uuid,"AWAY",params);
842                 }
843                 else
844                 {
845                         std::deque<std::string> params;
846                         params.push_back(":" + awaymsg);
847                         Utils->DoOneToMany(user->uuid,"AWAY",params);
848                 }
849         }
850
851         return 0;
852 }
853
854 void ModuleSpanningTree::ProtoSendMode(void* opaque, TargetTypeFlags target_type, void* target, const std::deque<std::string> &modeline, const std::deque<TranslateType> &translate)
855 {
856         TreeSocket* s = (TreeSocket*)opaque;
857         std::string output_text;
858
859         ServerInstance->Parser->TranslateUIDs(translate, modeline, output_text);
860
861         if (target)
862         {
863                 if (target_type == TYPE_USER)
864                 {
865                         User* u = (User*)target;
866                         s->WriteLine(std::string(":")+ServerInstance->Config->GetSID()+" MODE "+u->uuid+" "+output_text);
867                 }
868                 else if (target_type == TYPE_CHANNEL)
869                 {
870                         Channel* c = (Channel*)target;
871                         s->WriteLine(std::string(":")+ServerInstance->Config->GetSID()+" FMODE "+c->name+" "+ConvToStr(c->age)+" "+output_text);
872                 }
873         }
874 }
875
876 void ModuleSpanningTree::ProtoSendMetaData(void* opaque, TargetTypeFlags target_type, void* target, const std::string &extname, const std::string &extdata)
877 {
878         TreeSocket* s = (TreeSocket*)opaque;
879         if (target)
880         {
881                 if (target_type == TYPE_USER)
882                 {
883                         User* u = (User*)target;
884                         s->WriteLine(std::string(":")+ServerInstance->Config->GetSID()+" METADATA "+u->uuid+" "+extname+" :"+extdata);
885                 }
886                 else if (target_type == TYPE_CHANNEL)
887                 {
888                         Channel* c = (Channel*)target;
889                         s->WriteLine(std::string(":")+ServerInstance->Config->GetSID()+" METADATA "+c->name+" "+extname+" :"+extdata);
890                 }
891         }
892         if (target_type == TYPE_OTHER)
893         {
894                 s->WriteLine(std::string(":")+ServerInstance->Config->GetSID()+" METADATA * "+extname+" :"+extdata);
895         }
896 }
897
898 void ModuleSpanningTree::OnEvent(Event* event)
899 {
900         if ((event->GetEventID() == "send_encap") || (event->GetEventID() == "send_metadata") || (event->GetEventID() == "send_topic") || (event->GetEventID() == "send_mode") || (event->GetEventID() == "send_mode_explicit") || (event->GetEventID() == "send_opers")
901                 || (event->GetEventID() == "send_modeset") || (event->GetEventID() == "send_snoset") || (event->GetEventID() == "send_push"))
902         {
903                 ServerInstance->Logs->Log("m_spanningtree", DEBUG, "WARNING: Deprecated use of old 1.1 style m_spanningtree event ignored, type '"+event->GetEventID()+"'!");
904         }
905 }
906
907 ModuleSpanningTree::~ModuleSpanningTree()
908 {
909         delete ServerInstance->PI;
910         ServerInstance->PI = new ProtocolInterface(ServerInstance);
911
912         /* This will also free the listeners */
913         delete Utils;
914
915         ServerInstance->Timers->DelTimer(RefreshTimer);
916
917         ServerInstance->Modules->DoneWithInterface("BufferedSocketHook");
918 }
919
920 Version ModuleSpanningTree::GetVersion()
921 {
922         return Version("$Id$", VF_VENDOR, API_VERSION);
923 }
924
925 /* It is IMPORTANT that m_spanningtree is the last module in the chain
926  * so that any activity it sees is FINAL, e.g. we arent going to send out
927  * a NICK message before m_cloaking has finished putting the +x on the user,
928  * etc etc.
929  * Therefore, we return PRIORITY_LAST to make sure we end up at the END of
930  * the module call queue.
931  */
932 void ModuleSpanningTree::Prioritize()
933 {
934         ServerInstance->Modules->SetPriority(this, PRIORITY_LAST);
935 }
936
937 MODULE_INIT(ModuleSpanningTree)