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