]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/inspsocket.cpp
23d89a71f054164adc48a2701775bc1405ecfbfa
[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         this->IsIOHooked = false;
39 }
40
41 InspSocket::InspSocket(InspIRCd* SI, int newfd, const char* ip)
42 {
43         this->fd = newfd;
44         this->state = I_CONNECTED;
45         strlcpy(this->IP,ip,MAXBUF);
46         this->WaitingForWriteEvent = false;
47         this->Instance = SI;
48         this->IsIOHooked = false;
49         if (this->fd > -1)
50                 this->Instance->SE->AddFd(this);
51 }
52
53 InspSocket::InspSocket(InspIRCd* SI, const std::string &ipaddr, int aport, bool listening, unsigned long maxtime)
54 {
55         this->fd = -1;
56         this->Instance = SI;
57         strlcpy(host,ipaddr.c_str(),MAXBUF);
58         this->WaitingForWriteEvent = false;
59         this->IsIOHooked = false;
60         if (listening)
61         {
62                 if ((this->fd = OpenTCPSocket()) == ERROR)
63                 {
64                         this->fd = -1;
65                         this->state = I_ERROR;
66                         this->OnError(I_ERR_SOCKET);
67                         this->Instance->Log(DEBUG,"OpenTCPSocket() error");
68                         return;
69                 }
70                 else
71                 {
72                         if (!SI->BindSocket(this->fd,this->client,this->server,aport,(char*)ipaddr.c_str()))
73                         {
74                                 this->Instance->Log(DEBUG,"BindSocket() error %s",strerror(errno));
75                                 this->Close();
76                                 this->fd = -1;
77                                 this->state = I_ERROR;
78                                 this->OnError(I_ERR_BIND);
79                                 this->ClosePending = true;
80                                 return;
81                         }
82                         else
83                         {
84                                 this->state = I_LISTENING;
85                                 if (this->fd > -1)
86                                 {
87                                         if (!this->Instance->SE->AddFd(this))
88                                         {
89                                                 this->Close();
90                                                 this->state = I_ERROR;
91                                                 this->OnError(I_ERR_NOMOREFDS);
92                                         }
93                                 }
94                                 this->Instance->Log(DEBUG,"New socket now in I_LISTENING state");
95                                 return;
96                         }
97                 }                       
98         }
99         else
100         {
101                 strlcpy(this->host,ipaddr.c_str(),MAXBUF);
102                 this->port = aport;
103
104                 if (insp_aton(host,&addy) < 1)
105                 {
106                         this->Instance->Log(DEBUG,"You cannot pass hostnames to InspSocket, resolve them first with Resolver!");
107                         this->Close();
108                         this->fd = -1;
109                         this->state = I_ERROR;
110                         this->OnError(I_ERR_RESOLVE);
111                         return;
112                 }
113                 else
114                 {
115                         this->Instance->Log(DEBUG,"No need to resolve %s",this->host);
116                         strlcpy(this->IP,host,MAXBUF);
117                         timeout_val = maxtime;
118                         this->DoConnect();
119                 }
120         }
121 }
122
123 void InspSocket::WantWrite()
124 {
125         this->Instance->SE->WantWrite(this);
126         this->WaitingForWriteEvent = true;
127 }
128
129 void InspSocket::SetQueues(int nfd)
130 {
131         // attempt to increase socket sendq and recvq as high as its possible
132         int sendbuf = 32768;
133         int recvbuf = 32768;
134         setsockopt(nfd,SOL_SOCKET,SO_SNDBUF,(const void *)&sendbuf,sizeof(sendbuf));
135         setsockopt(nfd,SOL_SOCKET,SO_RCVBUF,(const void *)&recvbuf,sizeof(sendbuf));
136 }
137
138 /* Most irc servers require you to specify the ip you want to bind to.
139  * If you dont specify an IP, they rather dumbly bind to the first IP
140  * of the box (e.g. INADDR_ANY). In InspIRCd, we scan thought the IP
141  * addresses we've bound server ports to, and we try and bind our outbound
142  * connections to the first usable non-loopback and non-any IP we find.
143  * This is easier to configure when you have a lot of links and a lot
144  * of servers to configure.
145  */
146 bool InspSocket::BindAddr()
147 {
148         insp_inaddr n;
149         ConfigReader Conf(this->Instance);
150
151         this->Instance->Log(DEBUG,"In InspSocket::BindAddr()");
152         for (int j =0; j < Conf.Enumerate("bind"); j++)
153         {
154                 std::string Type = Conf.ReadValue("bind","type",j);
155                 std::string IP = Conf.ReadValue("bind","address",j);
156                 if (Type == "servers")
157                 {
158                         if ((IP != "*") && (IP != "127.0.0.1") && (IP != ""))
159                         {
160                                 insp_sockaddr s;
161
162                                 if (insp_aton(IP.c_str(),&n) > 0)
163                                 {
164                                         this->Instance->Log(DEBUG,"Found an IP to bind to: %s",IP.c_str());
165 #ifdef IPV6
166                                         s.sin6_addr = n;
167                                         s.sin6_family = AF_FAMILY;
168 #else
169                                         s.sin_addr = n;
170                                         s.sin_family = AF_FAMILY;
171 #endif
172                                         if (bind(this->fd,(struct sockaddr*)&s,sizeof(s)) < 0)
173                                         {
174                                                 this->Instance->Log(DEBUG,"Cant bind()");
175                                                 this->state = I_ERROR;
176                                                 this->OnError(I_ERR_BIND);
177                                                 this->fd = -1;
178                                                 return false;
179                                         }
180                                         this->Instance->Log(DEBUG,"bind() reports outbound fd bound to ip %s",IP.c_str());
181                                         return true;
182                                 }
183                                 else
184                                 {
185                                         this->Instance->Log(DEBUG,"Address '%s' was not an IP address",IP.c_str());
186                                 }
187                         }
188                 }
189         }
190         this->Instance->Log(DEBUG,"Found no suitable IPs to bind, binding INADDR_ANY");
191         return true;
192 }
193
194 bool InspSocket::DoConnect()
195 {
196         this->Instance->Log(DEBUG,"In DoConnect()");
197         if ((this->fd = socket(AF_FAMILY, SOCK_STREAM, 0)) == -1)
198         {
199                 this->Instance->Log(DEBUG,"Cant socket()");
200                 this->state = I_ERROR;
201                 this->OnError(I_ERR_SOCKET);
202                 return false;
203         }
204
205         if ((strstr(this->IP,"::ffff:") != (char*)&this->IP) && (strstr(this->IP,"::FFFF:") != (char*)&this->IP))
206         {
207                 if (!this->BindAddr())
208                         return false;
209         }
210
211         this->Instance->Log(DEBUG,"Part 2 DoConnect() %s",this->IP);
212         insp_aton(this->IP,&addy);
213 #ifdef IPV6
214         addr.sin6_family = AF_FAMILY;
215         memcpy(&addr.sin6_addr, &addy, sizeof(insp_inaddr));
216         addr.sin6_port = htons(this->port);
217 #else
218         addr.sin_family = AF_FAMILY;
219         addr.sin_addr = addy;
220         addr.sin_port = htons(this->port);
221 #endif
222
223         int flags;
224         flags = fcntl(this->fd, F_GETFL, 0);
225         fcntl(this->fd, F_SETFL, flags | O_NONBLOCK);
226
227         if (connect(this->fd, (sockaddr*)&this->addr,sizeof(this->addr)) == -1)
228         {
229                 if (errno != EINPROGRESS)
230                 {
231                         this->Instance->Log(DEBUG,"Error connect() %d: %s",this->fd,strerror(errno));
232                         this->OnError(I_ERR_CONNECT);
233                         this->Close();
234                         this->state = I_ERROR;
235                         return false;
236                 }
237
238                 this->Timeout = new SocketTimeout(this->GetFd(), this->Instance, this, timeout_val, this->Instance->Time());
239                 this->Instance->Timers->AddTimer(this->Timeout);
240         }
241         this->state = I_CONNECTING;
242         if (this->fd > -1)
243         {
244                 if (!this->Instance->SE->AddFd(this))
245                 {
246                         this->OnError(I_ERR_NOMOREFDS);
247                         this->Close();
248                         this->state = I_ERROR;
249                         return false;
250                 }
251                 this->SetQueues(this->fd);
252         }
253         this->Instance->Log(DEBUG,"Returning true from InspSocket::DoConnect");
254         return true;
255 }
256
257
258 void InspSocket::Close()
259 {
260         if (this->fd > -1)
261         {
262                 if (this->IsIOHooked)
263                 {
264                         try
265                         {
266                                 Instance->Config->GetIOHook(this)->OnRawSocketClose(this->fd);
267                         }
268                         catch (ModuleException& modexcept)
269                         {
270                                 Instance->Log(DEBUG,"Module exception cought: %s",modexcept.GetReason());
271                         }
272                 }
273                 this->OnClose();
274                 shutdown(this->fd,2);
275                 close(this->fd);
276         }
277 }
278
279 std::string InspSocket::GetIP()
280 {
281         return this->IP;
282 }
283
284 char* InspSocket::Read()
285 {
286         if ((fd < 0) || (fd > MAX_DESCRIPTORS))
287                 return NULL;
288
289         int n = 0;
290
291         if (this->IsIOHooked)
292         {
293                 int result2 = 0;
294                 int MOD_RESULT = 0;
295                 try
296                 {
297                         MOD_RESULT = Instance->Config->GetIOHook(this)->OnRawSocketRead(this->fd,this->ibuf,sizeof(this->ibuf),result2);
298                 }
299                 catch (ModuleException& modexcept)
300                 {
301                         Instance->Log(DEBUG,"Module exception caught: %s",modexcept.GetReason());
302                 }
303                 if (MOD_RESULT < 0)
304                 {
305                         n = -1;
306                         errno = EAGAIN;
307                 }
308                 else
309                 {
310                         n = result2;
311                 }
312         }
313         else
314         {
315                 n = recv(this->fd,this->ibuf,sizeof(this->ibuf),0);
316         }
317
318         if ((n > 0) && (n <= (int)sizeof(this->ibuf)))
319         {
320                 ibuf[n] = 0;
321                 return ibuf;
322         }
323         else
324         {
325                 int err = errno;
326                 if (err == EAGAIN)
327                 {
328                         return "";
329                 }
330                 else
331                 {
332                         if (!n)
333                                 this->Instance->Log(DEBUG,"EOF or error on socket: EOF");
334                         else
335                                 this->Instance->Log(DEBUG,"EOF or error on socket: %s",strerror(err));
336                         return NULL;
337                 }
338         }
339 }
340
341 void InspSocket::MarkAsClosed()
342 {
343         this->Instance->Log(DEBUG,"Marked as closed");
344 }
345
346 // There are two possible outcomes to this function.
347 // It will either write all of the data, or an undefined amount.
348 // If an undefined amount is written the connection has failed
349 // and should be aborted.
350 int InspSocket::Write(const std::string &data)
351 {
352         /* Try and append the data to the back of the queue, and send it on its way
353          */
354         outbuffer.push_back(data);
355         this->Instance->SE->WantWrite(this);
356         return (!this->FlushWriteBuffer());
357 }
358
359 bool InspSocket::FlushWriteBuffer()
360 {
361         errno = 0;
362         if ((this->fd > -1) && (this->state == I_CONNECTED))
363         {
364                 if (this->IsIOHooked)
365                 {
366                         while (outbuffer.size() && (errno != EAGAIN))
367                         {
368                                 try
369                                 {
370                                         Instance->Config->GetIOHook(this)->OnRawSocketWrite(this->fd, outbuffer[0].c_str(), outbuffer[0].length());
371                                 }
372                                 catch (ModuleException& modexcept)
373                                 {
374                                         Instance->Log(DEBUG,"Module exception caught: %s",modexcept.GetReason());
375                                         return true;
376                                 }
377                         }
378                 }
379                 else
380                 {
381                         /* If we have multiple lines, try to send them all,
382                          * not just the first one -- Brain
383                          */
384                         while (outbuffer.size() && (errno != EAGAIN))
385                         {
386                                 /* Send a line */
387                                 int result = write(this->fd,outbuffer[0].c_str(),outbuffer[0].length());
388                                 if (result > 0)
389                                 {
390                                         if ((unsigned int)result == outbuffer[0].length())
391                                         {
392                                                 /* The whole block was written (usually a line)
393                                                  * Pop the block off the front of the queue,
394                                                  * dont set errno, because we are clear of errors
395                                                  * and want to try and write the next block too.
396                                                  */
397                                                 outbuffer.pop_front();
398                                         }
399                                         else
400                                         {
401                                                 std::string temp = outbuffer[0].substr(result);
402                                                 outbuffer[0] = temp;
403                                                 /* We didnt get the whole line out. arses.
404                                                  * Try again next time, i guess. Set errno,
405                                                  * because we shouldnt be writing any more now,
406                                                  * until the socketengine says its safe to do so.
407                                                  */
408                                                 errno = EAGAIN;
409                                         }
410                                 }
411                                 else if ((result == -1) && (errno != EAGAIN))
412                                 {
413                                         this->Instance->Log(DEBUG,"Write error on socket: %s",strerror(errno));
414                                         this->OnError(I_ERR_WRITE);
415                                         this->state = I_ERROR;
416                                         this->Instance->SE->DelFd(this);
417                                         this->Close();
418                                         return true;
419                                 }
420                         }
421                 }
422         }
423
424         if ((errno == EAGAIN) && (fd > -1))
425         {
426                 this->Instance->SE->WantWrite(this);
427         }
428
429         return (fd < 0);
430 }
431
432 void SocketTimeout::Tick(time_t now)
433 {
434         if (ServerInstance->SE->GetRef(this->sfd) != this->sock)
435         {
436                 ServerInstance->Log(DEBUG,"Our socket has been deleted before the timeout was reached.");
437                 return;
438         }
439
440         if (this->sock->state == I_CONNECTING)
441         {
442                 ServerInstance->Log(DEBUG,"Timed out, current=%lu",now);
443                 // for non-listening sockets, the timeout can occur
444                 // which causes termination of the connection after
445                 // the given number of seconds without a successful
446                 // connection.
447                 this->sock->OnTimeout();
448                 this->sock->OnError(I_ERR_TIMEOUT);
449                 this->sock->timeout = true;
450                 ServerInstance->SE->DelFd(this->sock);
451                 /* NOTE: We must set this AFTER DelFd, as we added
452                  * this socket whilst writeable. This means that we
453                  * must DELETE the socket whilst writeable too!
454                  */
455                 this->sock->state = I_ERROR;
456                 this->sock->Close();
457                 delete this->sock;
458                 return;
459         }
460 }
461
462 bool InspSocket::Poll()
463 {
464         if (this->Instance->SE->GetRef(this->fd) != this)
465                 return false;
466
467         int incoming = -1;
468
469         if ((fd < 0) || (fd > MAX_DESCRIPTORS))
470                 return false;
471
472         switch (this->state)
473         {
474                 case I_CONNECTING:
475                         this->Instance->Log(DEBUG,"State = I_CONNECTING");
476                         /* Our socket was in write-state, so delete it and re-add it
477                          * in read-state.
478                          */
479                         if (this->fd > -1)
480                         {
481                                 this->Instance->SE->DelFd(this);
482                                 this->SetState(I_CONNECTED);
483                                 if (!this->Instance->SE->AddFd(this))
484                                         return false;
485                         }
486                         if (this->IsIOHooked)
487                         {
488                                 try
489                                 {
490                                         Instance->Config->GetIOHook(this)->OnRawSocketConnect(this->fd);
491                                 }
492                                 catch (ModuleException& modexcept)
493                                 {
494                                         Instance->Log(DEBUG,"Module exception cought: %s",modexcept.GetReason());
495                                 }
496                         }
497                         return this->OnConnected();
498                 break;
499                 case I_LISTENING:
500                         length = sizeof (client);
501                         incoming = accept (this->fd, (sockaddr*)&client,&length);
502
503                         if (this->IsIOHooked)
504                         {
505                                 try
506                                 {
507 #ifdef IPV6
508                                         Instance->Config->GetIOHook(this)->OnRawSocketAccept(incoming, insp_ntoa(client.sin6_addr), this->port);
509 #else
510                                         Instance->Config->GetIOHook(this)->OnRawSocketAccept(incoming, insp_ntoa(client.sin_addr), this->port);
511 #endif
512                                 }
513                                 catch (ModuleException& modexcept)
514                                 {
515                                         Instance->Log(DEBUG,"Module exception cought: %s",modexcept.GetReason());
516                                 }
517                         }
518
519                         this->SetQueues(incoming);
520 #ifdef IPV6
521                         this->OnIncomingConnection(incoming, (char*)insp_ntoa(client.sin6_addr));
522 #else
523                         this->OnIncomingConnection(incoming, (char*)insp_ntoa(client.sin_addr));
524 #endif
525                         return true;
526                 break;
527                 case I_CONNECTED:
528                         /* Process the read event */
529                         return this->OnDataReady();
530                 break;
531                 default:
532                 break;
533         }
534         return true;
535 }
536
537 void InspSocket::SetState(InspSocketState s)
538 {
539         this->Instance->Log(DEBUG,"Socket state change");
540         this->state = s;
541 }
542
543 InspSocketState InspSocket::GetState()
544 {
545         return this->state;
546 }
547
548 int InspSocket::GetFd()
549 {
550         return this->fd;
551 }
552
553 bool InspSocket::OnConnected() { return true; }
554 void InspSocket::OnError(InspSocketError e) { return; }
555 int InspSocket::OnDisconnect() { return 0; }
556 int InspSocket::OnIncomingConnection(int newfd, char* ip) { return 0; }
557 bool InspSocket::OnDataReady() { return true; }
558 bool InspSocket::OnWriteReady() { return true; }
559 void InspSocket::OnTimeout() { return; }
560 void InspSocket::OnClose() { return; }
561
562 InspSocket::~InspSocket()
563 {
564         this->Close();
565 }
566
567 void InspSocket::HandleEvent(EventType et, int errornum)
568 {
569         switch (et)
570         {
571                 case EVENT_ERROR:
572                         this->Instance->SE->DelFd(this);
573                         this->Close();
574                         delete this;
575                         return;
576                 break;
577                 case EVENT_READ:
578                         if (!this->Poll())
579                         {
580                                 this->Instance->SE->DelFd(this);
581                                 this->Close();
582                                 delete this;
583                                 return;
584                         }
585                 break;
586                 case EVENT_WRITE:
587                         if (this->WaitingForWriteEvent)
588                         {
589                                 this->WaitingForWriteEvent = false;
590                                 if (!this->OnWriteReady())
591                                 {
592                                         this->Instance->SE->DelFd(this);
593                                         this->Close();
594                                         delete this;
595                                         return;
596                                 }
597                         }
598                         if (this->state == I_CONNECTING)
599                         {
600                                 /* This might look wrong as if we should be actually calling
601                                  * with EVENT_WRITE, but trust me it is correct. There are some
602                                  * writeability-state things in the read code, because of how
603                                  * InspSocket used to work regarding write buffering in previous
604                                  * versions of InspIRCd. - Brain
605                                  */
606                                 this->HandleEvent(EVENT_READ);
607                                 return;
608                         }
609                         else
610                         {
611                                 Instance->Log(DEBUG,"State=%d CONNECTED=%d", this->state, I_CONNECTED);
612                                 if (this->FlushWriteBuffer())
613                                 {
614                                         this->Instance->SE->DelFd(this);
615                                         this->Close();
616                                         delete this;
617                                         return;
618                                 }
619                         }
620                 break;
621         }
622 }
623