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