]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/treesocket1.cpp
Fix memory leaks on reloadmodule and spanningtree unload while connecting servers
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / treesocket1.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 #include "inspircd.h"
15 #include "socket.h"
16 #include "xline.h"
17 #include "../m_hash.h"
18 #include "socketengine.h"
19
20 #include "main.h"
21 #include "../spanningtree.h"
22 #include "utils.h"
23 #include "treeserver.h"
24 #include "link.h"
25 #include "treesocket.h"
26 #include "resolvers.h"
27
28 /** Because most of the I/O gubbins are encapsulated within
29  * BufferedSocket, we just call the superclass constructor for
30  * most of the action, and append a few of our own values
31  * to it.
32  */
33 TreeSocket::TreeSocket(SpanningTreeUtilities* Util, const std::string& shost, int iport, unsigned long maxtime, const std::string &ServerName, const std::string &bindto, Autoconnect* myac, const std::string& hook)
34         : Utils(Util), IP(shost), myautoconnect(myac)
35 {
36         age = ServerInstance->Time();
37         myhost = ServerName;
38         capab_phase = 0;
39         proto_version = 0;
40         LinkState = CONNECTING;
41         if (!hook.empty())
42         {
43                 modulelist* ml = ServerInstance->Modules->FindInterface("BufferedSocketHook");
44                 if (ml)
45                 {
46                         for(modulelist::iterator i = ml->begin(); i != ml->end(); ++i)
47                         {
48                                 std::string name = (**i).ModuleSourceFile;
49                                 int a = name.rfind('_');
50                                 int b = name.rfind('.');
51                                 name = name.substr(a+1, b-a-1);
52                                 if (name == hook)
53                                 {
54                                         AddIOHook(*i);
55                                         goto found;
56                                 }
57                         }
58                 }
59                 SetError("Could not find hook '" + hook + "' for connection to " + ServerName);
60                 return;
61         }
62 found:
63         DoConnect(shost, iport, maxtime, bindto);
64         Utils->timeoutlist[this] = std::pair<std::string, int>(ServerName, maxtime);
65         SendCapabilities(1);
66 }
67
68 /** When a listening socket gives us a new file descriptor,
69  * we must associate it with a socket without creating a new
70  * connection. This constructor is used for this purpose.
71  */
72 TreeSocket::TreeSocket(SpanningTreeUtilities* Util, int newfd, ListenSocket* via, irc::sockets::sockaddrs* client, irc::sockets::sockaddrs* server)
73         : BufferedSocket(newfd), Utils(Util)
74 {
75         int dummy;
76         irc::sockets::satoap(*client, IP, dummy);
77         age = ServerInstance->Time();
78         LinkState = WAIT_AUTH_1;
79         capab_phase = 0;
80         proto_version = 0;
81
82         FOREACH_MOD(I_OnHookIO, OnHookIO(this, via));
83         if (GetIOHook())
84                 GetIOHook()->OnStreamSocketAccept(this, client, server);
85         SendCapabilities(1);
86
87         Utils->timeoutlist[this] = std::pair<std::string, int>("inbound from " + IP, 30);
88 }
89
90 ServerState TreeSocket::GetLinkState()
91 {
92         return this->LinkState;
93 }
94
95 void TreeSocket::CleanNegotiationInfo()
96 {
97         ModuleList.clear();
98         OptModuleList.clear();
99         CapKeys.clear();
100         ourchallenge.clear();
101         theirchallenge.clear();
102         OutboundPass.clear();
103 }
104
105 CullResult TreeSocket::cull()
106 {
107         Utils->timeoutlist.erase(this);
108         if (myautoconnect)
109                 Utils->Creator->ConnectServer(myautoconnect, false);
110         return this->BufferedSocket::cull();
111 }
112
113 TreeSocket::~TreeSocket()
114 {
115 }
116
117 /** When an outbound connection finishes connecting, we receive
118  * this event, and must send our SERVER string to the other
119  * side. If the other side is happy, as outlined in the server
120  * to server docs on the inspircd.org site, the other side
121  * will then send back its own server string.
122  */
123 void TreeSocket::OnConnected()
124 {
125         if (this->LinkState == CONNECTING)
126         {
127                 /* we do not need to change state here. */
128                 for (std::vector<reference<Link> >::iterator i = Utils->LinkBlocks.begin(); i < Utils->LinkBlocks.end(); ++i)
129                 {
130                         Link* x = *i;
131                         if (x->Name == this->myhost)
132                         {
133                                 ServerInstance->SNO->WriteGlobalSno('l', "Connection to \2%s\2[%s] started.", myhost.c_str(), (x->HiddenFromStats ? "<hidden>" : this->IP.c_str()));
134                                 this->OutboundPass = x->SendPass;
135                                 this->SendCapabilities(1);
136                                 return;
137                         }
138                 }
139         }
140         /* There is a (remote) chance that between the /CONNECT and the connection
141          * being accepted, some muppet has removed the <link> block and rehashed.
142          * If that happens the connection hangs here until it's closed. Unlikely
143          * and rather harmless.
144          */
145         ServerInstance->SNO->WriteGlobalSno('l', "Connection to \2%s\2 lost link tag(!)", myhost.c_str());
146 }
147
148 void TreeSocket::OnError(BufferedSocketError e)
149 {
150         ServerInstance->SNO->WriteGlobalSno('l', "Connection to \002%s\002 failed with error: %s",
151                 myhost.c_str(), getError().c_str());
152 }
153
154 void TreeSocket::SendError(const std::string &errormessage)
155 {
156         WriteLine("ERROR :"+errormessage);
157         SetError(errormessage);
158         /* Display the error locally as well as sending it remotely */
159         ServerInstance->SNO->WriteGlobalSno('l', "Sent \2ERROR\2 to %s: %s", (this->InboundServerName.empty() ? this->IP.c_str() : this->InboundServerName.c_str()), errormessage.c_str());
160 }
161
162 /** This function forces this server to quit, removing this server
163  * and any users on it (and servers and users below that, etc etc).
164  * It's very slow and pretty clunky, but luckily unless your network
165  * is having a REAL bad hair day, this function shouldnt be called
166  * too many times a month ;-)
167  */
168 void TreeSocket::SquitServer(std::string &from, TreeServer* Current)
169 {
170         ServerInstance->Logs->Log("m_spanningtree",DEBUG,"SquitServer for %s from %s",
171                 Current->GetName().c_str(), from.c_str());
172         /* recursively squit the servers attached to 'Current'.
173          * We're going backwards so we don't remove users
174          * while we still need them ;)
175          */
176         for (unsigned int q = 0; q < Current->ChildCount(); q++)
177         {
178                 TreeServer* recursive_server = Current->GetChild(q);
179                 this->SquitServer(from,recursive_server);
180         }
181         /* Now we've whacked the kids, whack self */
182         num_lost_servers++;
183         num_lost_users += Current->QuitUsers(from);
184 }
185
186 /** This is a wrapper function for SquitServer above, which
187  * does some validation first and passes on the SQUIT to all
188  * other remaining servers.
189  */
190 void TreeSocket::Squit(TreeServer* Current, const std::string &reason)
191 {
192         bool LocalSquit = false;
193
194         if ((Current) && (Current != Utils->TreeRoot))
195         {
196                 DelServerEvent(Utils->Creator, Current->GetName());
197
198                 parameterlist params;
199                 params.push_back(Current->GetName());
200                 params.push_back(":"+reason);
201                 Utils->DoOneToAllButSender(Current->GetParent()->GetName(),"SQUIT",params,Current->GetName());
202                 if (Current->GetParent() == Utils->TreeRoot)
203                 {
204                         ServerInstance->SNO->WriteGlobalSno('l', "Server \002"+Current->GetName()+"\002 split: "+reason);
205                         LocalSquit = true;
206                 }
207                 else
208                 {
209                         ServerInstance->SNO->WriteGlobalSno('L', "Server \002"+Current->GetName()+"\002 split from server \002"+Current->GetParent()->GetName()+"\002 with reason: "+reason);
210                 }
211                 num_lost_servers = 0;
212                 num_lost_users = 0;
213                 std::string from = Current->GetParent()->GetName()+" "+Current->GetName();
214                 SquitServer(from, Current);
215                 Current->Tidy();
216                 Current->GetParent()->DelChild(Current);
217                 delete Current;
218                 if (LocalSquit)
219                         ServerInstance->SNO->WriteGlobalSno('l', "Netsplit complete, lost \002%d\002 users on \002%d\002 servers.", num_lost_users, num_lost_servers);
220                 else
221                         ServerInstance->SNO->WriteGlobalSno('L', "Netsplit complete, lost \002%d\002 users on \002%d\002 servers.", num_lost_users, num_lost_servers);
222         }
223         else
224                 ServerInstance->Logs->Log("m_spanningtree",DEFAULT,"Squit from unknown server");
225 }
226
227 /** This function is called when we receive data from a remote
228  * server.
229  */
230 void TreeSocket::OnDataReady()
231 {
232         Utils->Creator->loopCall = true;
233         /* While there is at least one new line in the buffer,
234          * do something useful (we hope!) with it.
235          */
236         while (recvq.find("\n") != std::string::npos)
237         {
238                 std::string ret = recvq.substr(0,recvq.find("\n")-1);
239                 recvq = recvq.substr(recvq.find("\n")+1,recvq.length()-recvq.find("\n"));
240                 /* Use rfind here not find, as theres more
241                  * chance of the \r being near the end of the
242                  * string, not the start.
243                  */
244                 if (ret.find("\r") != std::string::npos)
245                         ret = recvq.substr(0,recvq.find("\r")-1);
246                 ProcessLine(ret);
247         }
248         Utils->Creator->loopCall = false;
249 }