]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/inspsocket.cpp
Fix for parameters which contain a colon (which is not the first char in the string)
[user/henk/code/inspircd.git] / src / inspsocket.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 #include "socket.h"
18 #include "configreader.h"
19 #include "inspstring.h"
20 #include "socketengine.h"
21 #include "inspircd.h"
22
23 using irc::sockets::OpenTCPSocket;
24 using irc::sockets::insp_inaddr;
25 using irc::sockets::insp_sockaddr;
26
27 bool InspSocket::Readable()
28 {
29         return ((this->state != I_CONNECTING) && (this->WaitingForWriteEvent == false));
30 }
31
32 InspSocket::InspSocket(InspIRCd* SI)
33 {
34         this->state = I_DISCONNECTED;
35         this->fd = -1;
36         this->WaitingForWriteEvent = false;
37         this->Instance = SI;
38 }
39
40 InspSocket::InspSocket(InspIRCd* SI, int newfd, const char* ip)
41 {
42         this->fd = newfd;
43         this->state = I_CONNECTED;
44         strlcpy(this->IP,ip,MAXBUF);
45         this->WaitingForWriteEvent = false;
46         this->Instance = SI;
47         if (this->fd > -1)
48                 this->Instance->SE->AddFd(this);
49 }
50
51 InspSocket::InspSocket(InspIRCd* SI, const std::string &ipaddr, int aport, bool listening, unsigned long maxtime)
52 {
53         this->fd = -1;
54         this->Instance = SI;
55         strlcpy(host,ipaddr.c_str(),MAXBUF);
56         this->WaitingForWriteEvent = false;
57         if (listening)
58         {
59                 if ((this->fd = OpenTCPSocket()) == ERROR)
60                 {
61                         this->fd = -1;
62                         this->state = I_ERROR;
63                         this->OnError(I_ERR_SOCKET);
64                         this->Instance->Log(DEBUG,"OpenTCPSocket() error");
65                         return;
66                 }
67                 else
68                 {
69                         if (!SI->BindSocket(this->fd,this->client,this->server,aport,(char*)ipaddr.c_str()))
70                         {
71                                 this->Instance->Log(DEBUG,"BindSocket() error %s",strerror(errno));
72                                 this->Close();
73                                 this->fd = -1;
74                                 this->state = I_ERROR;
75                                 this->OnError(I_ERR_BIND);
76                                 this->ClosePending = true;
77                                 return;
78                         }
79                         else
80                         {
81                                 this->state = I_LISTENING;
82                                 if (this->fd > -1)
83                                 {
84                                         if (!this->Instance->SE->AddFd(this))
85                                         {
86                                                 this->Close();
87                                                 this->state = I_ERROR;
88                                                 this->OnError(I_ERR_NOMOREFDS);
89                                         }
90                                 }
91                                 this->Instance->Log(DEBUG,"New socket now in I_LISTENING state");
92                                 return;
93                         }
94                 }                       
95         }
96         else
97         {
98                 strlcpy(this->host,ipaddr.c_str(),MAXBUF);
99                 this->port = aport;
100
101                 if (insp_aton(host,&addy) < 1)
102                 {
103                         this->Instance->Log(DEBUG,"You cannot pass hostnames to InspSocket, resolve them first with Resolver!");
104                         this->Close();
105                         this->fd = -1;
106                         this->state = I_ERROR;
107                         this->OnError(I_ERR_RESOLVE);
108                         return;
109                 }
110                 else
111                 {
112                         this->Instance->Log(DEBUG,"No need to resolve %s",this->host);
113                         strlcpy(this->IP,host,MAXBUF);
114                         timeout_val = maxtime;
115                         this->DoConnect();
116                 }
117         }
118 }
119
120 void InspSocket::WantWrite()
121 {
122         /** XXX:
123          * The socket engine may only have each FD in the list ONCE.
124          * This means we cant watch for write AND read at the same
125          * time. We have to remove the READ fd, to insert the WRITE
126          * fd. Once we receive our WRITE event (which WILL ARRIVE,
127          * pretty much gauranteed) we switch back to watching for
128          * READ events again.
129          *
130          * This behaviour may be fixed in a later version.
131          */
132         this->Instance->SE->DelFd(this);
133         this->WaitingForWriteEvent = true;
134         if (!this->Instance->SE->AddFd(this))
135         {
136                 this->Close();
137                 this->fd = -1;
138                 this->state = I_ERROR;
139                 this->OnError(I_ERR_NOMOREFDS);
140         }
141 }
142
143 void InspSocket::SetQueues(int nfd)
144 {
145         // attempt to increase socket sendq and recvq as high as its possible
146         int sendbuf = 32768;
147         int recvbuf = 32768;
148         setsockopt(nfd,SOL_SOCKET,SO_SNDBUF,(const void *)&sendbuf,sizeof(sendbuf));
149         setsockopt(nfd,SOL_SOCKET,SO_RCVBUF,(const void *)&recvbuf,sizeof(sendbuf));
150 }
151
152 /* Most irc servers require you to specify the ip you want to bind to.
153  * If you dont specify an IP, they rather dumbly bind to the first IP
154  * of the box (e.g. INADDR_ANY). In InspIRCd, we scan thought the IP
155  * addresses we've bound server ports to, and we try and bind our outbound
156  * connections to the first usable non-loopback and non-any IP we find.
157  * This is easier to configure when you have a lot of links and a lot
158  * of servers to configure.
159  */
160 bool InspSocket::BindAddr()
161 {
162         insp_inaddr n;
163         ConfigReader Conf(this->Instance);
164
165         this->Instance->Log(DEBUG,"In InspSocket::BindAddr()");
166         for (int j =0; j < Conf.Enumerate("bind"); j++)
167         {
168                 std::string Type = Conf.ReadValue("bind","type",j);
169                 std::string IP = Conf.ReadValue("bind","address",j);
170                 if (Type == "servers")
171                 {
172                         if ((IP != "*") && (IP != "127.0.0.1") && (IP != ""))
173                         {
174                                 insp_sockaddr s;
175
176                                 if (insp_aton(IP.c_str(),&n) > 0)
177                                 {
178                                         this->Instance->Log(DEBUG,"Found an IP to bind to: %s",IP.c_str());
179 #ifdef IPV6
180                                         s.sin6_addr = n;
181                                         s.sin6_family = AF_FAMILY;
182 #else
183                                         s.sin_addr = n;
184                                         s.sin_family = AF_FAMILY;
185 #endif
186                                         if (bind(this->fd,(struct sockaddr*)&s,sizeof(s)) < 0)
187                                         {
188                                                 this->Instance->Log(DEBUG,"Cant bind()");
189                                                 this->state = I_ERROR;
190                                                 this->OnError(I_ERR_BIND);
191                                                 this->fd = -1;
192                                                 return false;
193                                         }
194                                         this->Instance->Log(DEBUG,"bind() reports outbound fd bound to ip %s",IP.c_str());
195                                         return true;
196                                 }
197                                 else
198                                 {
199                                         this->Instance->Log(DEBUG,"Address '%s' was not an IP address",IP.c_str());
200                                 }
201                         }
202                 }
203         }
204         this->Instance->Log(DEBUG,"Found no suitable IPs to bind, binding INADDR_ANY");
205         return true;
206 }
207
208 bool InspSocket::DoConnect()
209 {
210         this->Instance->Log(DEBUG,"In DoConnect()");
211         if ((this->fd = socket(AF_FAMILY, SOCK_STREAM, 0)) == -1)
212         {
213                 this->Instance->Log(DEBUG,"Cant socket()");
214                 this->state = I_ERROR;
215                 this->OnError(I_ERR_SOCKET);
216                 return false;
217         }
218
219         if ((strstr(this->IP,"::ffff:") != (char*)&this->IP) && (strstr(this->IP,"::FFFF:") != (char*)&this->IP))
220         {
221                 if (!this->BindAddr())
222                         return false;
223         }
224
225         this->Instance->Log(DEBUG,"Part 2 DoConnect() %s",this->IP);
226         insp_aton(this->IP,&addy);
227 #ifdef IPV6
228         addr.sin6_family = AF_FAMILY;
229         memcpy(&addr.sin6_addr, &addy, sizeof(insp_inaddr));
230         addr.sin6_port = htons(this->port);
231 #else
232         addr.sin_family = AF_FAMILY;
233         addr.sin_addr = addy;
234         addr.sin_port = htons(this->port);
235 #endif
236
237         int flags;
238         flags = fcntl(this->fd, F_GETFL, 0);
239         fcntl(this->fd, F_SETFL, flags | O_NONBLOCK);
240
241         if (connect(this->fd, (sockaddr*)&this->addr,sizeof(this->addr)) == -1)
242         {
243                 if (errno != EINPROGRESS)
244                 {
245                         this->Instance->Log(DEBUG,"Error connect() %d: %s",this->fd,strerror(errno));
246                         this->OnError(I_ERR_CONNECT);
247                         this->Close();
248                         this->state = I_ERROR;
249                         return false;
250                 }
251
252                 this->Timeout = new SocketTimeout(this->GetFd(), this->Instance, this, timeout_val, this->Instance->Time());
253                 this->Instance->Timers->AddTimer(this->Timeout);
254         }
255         this->state = I_CONNECTING;
256         if (this->fd > -1)
257         {
258                 if (!this->Instance->SE->AddFd(this))
259                 {
260                         this->OnError(I_ERR_NOMOREFDS);
261                         this->Close();
262                         this->state = I_ERROR;
263                         return false;
264                 }
265                 this->SetQueues(this->fd);
266         }
267         this->Instance->Log(DEBUG,"Returning true from InspSocket::DoConnect");
268         return true;
269 }
270
271
272 void InspSocket::Close()
273 {
274         if (this->fd > -1)
275         {
276                 this->OnClose();
277                 shutdown(this->fd,2);
278                 close(this->fd);
279         }
280 }
281
282 std::string InspSocket::GetIP()
283 {
284         return this->IP;
285 }
286
287 char* InspSocket::Read()
288 {
289         if ((fd < 0) || (fd > MAX_DESCRIPTORS))
290                 return NULL;
291         int n = recv(this->fd,this->ibuf,sizeof(this->ibuf),0);
292         if ((n > 0) && (n <= (int)sizeof(this->ibuf)))
293         {
294                 ibuf[n] = 0;
295                 return ibuf;
296         }
297         else
298         {
299                 int err = errno;
300                 if (err == EAGAIN)
301                 {
302                         return "";
303                 }
304                 else
305                 {
306                         if (!n)
307                                 this->Instance->Log(DEBUG,"EOF or error on socket: EOF");
308                         else
309                                 this->Instance->Log(DEBUG,"EOF or error on socket: %s",strerror(err));
310                         return NULL;
311                 }
312         }
313 }
314
315 void InspSocket::MarkAsClosed()
316 {
317         this->Instance->Log(DEBUG,"Marked as closed");
318 }
319
320 // There are two possible outcomes to this function.
321 // It will either write all of the data, or an undefined amount.
322 // If an undefined amount is written the connection has failed
323 // and should be aborted.
324 int InspSocket::Write(const std::string &data)
325 {
326         /* Try and append the data to the back of the queue, and send it on its way
327          */
328         outbuffer.push_back(data);
329         return (!this->FlushWriteBuffer());
330 }
331
332 bool InspSocket::FlushWriteBuffer()
333 {
334         if ((this->fd > -1) && (this->state == I_CONNECTED))
335         {
336                 if (outbuffer.size())
337                 {
338                         int result = write(this->fd,outbuffer[0].c_str(),outbuffer[0].length());
339                         if (result > 0)
340                         {
341                                 if ((unsigned int)result == outbuffer[0].length())
342                                 {
343                                         /* The whole block was written (usually a line)
344                                          * Pop the block off the front of the queue
345                                          */
346                                         outbuffer.pop_front();
347                                 }
348                                 else
349                                 {
350                                         std::string temp = outbuffer[0].substr(result);
351                                         outbuffer[0] = temp;
352                                 }
353                         }
354                         else if ((result == -1) && (errno != EAGAIN))
355                         {
356                                 this->Instance->Log(DEBUG,"Write error on socket: %s",strerror(errno));
357                                 this->OnError(I_ERR_WRITE);
358                                 this->state = I_ERROR;
359                                 return true;
360                         }
361                 }
362         }
363         return (fd < 0);
364 }
365
366 void SocketTimeout::Tick(time_t now)
367 {
368         if (ServerInstance->SE->GetRef(this->sfd) != this->sock)
369         {
370                 ServerInstance->Log(DEBUG,"No FD or socket ref");
371                 return;
372         }
373
374         if (this->sock->state == I_CONNECTING)
375         {
376                 ServerInstance->Log(DEBUG,"Timed out, current=%lu",now);
377                 // for non-listening sockets, the timeout can occur
378                 // which causes termination of the connection after
379                 // the given number of seconds without a successful
380                 // connection.
381                 this->sock->OnTimeout();
382                 this->sock->OnError(I_ERR_TIMEOUT);
383                 this->sock->timeout = true;
384                 this->sock->state = I_ERROR;
385                 ServerInstance->SE->DelFd(this->sock);
386                 this->sock->Close();
387                 delete this->sock;
388                 return;
389         }
390         this->sock->FlushWriteBuffer();
391 }
392
393 bool InspSocket::Poll()
394 {
395         if (this->Instance->SE->GetRef(this->fd) != this)
396                 return false;
397
398         int incoming = -1;
399         bool n = true;
400
401         if ((fd < 0) || (fd > MAX_DESCRIPTORS))
402                 return false;
403
404         switch (this->state)
405         {
406                 case I_CONNECTING:
407                         this->Instance->Log(DEBUG,"State = I_CONNECTING");
408                         /* Our socket was in write-state, so delete it and re-add it
409                          * in read-state.
410                          */
411                         if (this->fd > -1)
412                         {
413                                 this->Instance->SE->DelFd(this);
414                                 this->SetState(I_CONNECTED);
415                                 if (!this->Instance->SE->AddFd(this))
416                                         return false;
417                         }
418                         return this->OnConnected();
419                 break;
420                 case I_LISTENING:
421                         length = sizeof (client);
422                         incoming = accept (this->fd, (sockaddr*)&client,&length);
423                         this->SetQueues(incoming);
424 #ifdef IPV6
425                         this->OnIncomingConnection(incoming,(char*)insp_ntoa(client.sin6_addr));
426 #else
427                         this->OnIncomingConnection(incoming,(char*)insp_ntoa(client.sin_addr));
428 #endif
429                         return true;
430                 break;
431                 case I_CONNECTED:
432
433                         if (this->WaitingForWriteEvent)
434                         {
435                                 /* Switch back to read events */
436                                 this->Instance->SE->DelFd(this);
437                                 this->WaitingForWriteEvent = false;
438                                 if (!this->Instance->SE->AddFd(this))
439                                         return false;
440
441                                 /* Trigger the write event */
442                                 n = this->OnWriteReady();
443                         }
444                         else
445                         {
446                                 /* Process the read event */
447                                 n = this->OnDataReady();
448                         }
449                         /* Flush any pending, but not till after theyre done with the event
450                          * so there are less write calls involved.
451                          * Both FlushWriteBuffer AND the return result of OnDataReady must
452                          * return true for this to be ok.
453                          */
454                         if (this->FlushWriteBuffer())
455                                 return false;
456                         return n;
457                 break;
458                 default:
459                 break;
460         }
461         return true;
462 }
463
464 void InspSocket::SetState(InspSocketState s)
465 {
466         this->Instance->Log(DEBUG,"Socket state change");
467         this->state = s;
468 }
469
470 InspSocketState InspSocket::GetState()
471 {
472         return this->state;
473 }
474
475 int InspSocket::GetFd()
476 {
477         return this->fd;
478 }
479
480 bool InspSocket::OnConnected() { return true; }
481 void InspSocket::OnError(InspSocketError e) { return; }
482 int InspSocket::OnDisconnect() { return 0; }
483 int InspSocket::OnIncomingConnection(int newfd, char* ip) { return 0; }
484 bool InspSocket::OnDataReady() { return true; }
485 bool InspSocket::OnWriteReady() { return true; }
486 void InspSocket::OnTimeout() { return; }
487 void InspSocket::OnClose() { return; }
488
489 InspSocket::~InspSocket()
490 {
491         this->Close();
492 }
493
494 void InspSocket::HandleEvent(EventType et)
495 {
496         if (!this->Poll())
497         {
498                 this->Instance->SE->DelFd(this);
499                 this->Close();
500                 delete this;
501         }
502 }
503