]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/inspsocket.cpp
Better handling of write() failure, but this might still not be exactly right.
[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 && Instance->Config->GetIOHook(this))
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                                         int result = Instance->Config->GetIOHook(this)->OnRawSocketWrite(this->fd, outbuffer[0].c_str(), outbuffer[0].length());
371                                         if (result > 0)
372                                         {
373                                                 if ((unsigned int)result == outbuffer[0].length())
374                                                 {
375                                                         outbuffer.pop_front();
376                                                 }
377                                                 else
378                                                 {
379                                                         std::string temp = outbuffer[0].substr(result);
380                                                         outbuffer[0] = temp;
381                                                         errno = EAGAIN;
382                                                 }
383                                         }
384                                         else if ((result == -1) && (errno != EAGAIN))
385                                         {
386                                                 this->Instance->Log(DEBUG,"Write error on socket: %s",strerror(errno));
387                                                 this->OnError(I_ERR_WRITE);
388                                                 this->state = I_ERROR;
389                                                 this->Instance->SE->DelFd(this);
390                                                 this->Close();
391                                                 return true;
392                                         }
393                                 }
394                                 catch (ModuleException& modexcept)
395                                 {
396                                         Instance->Log(DEBUG,"Module exception caught: %s",modexcept.GetReason());
397                                         return true;
398                                 }
399                         }
400                 }
401                 else
402                 {
403                         /* If we have multiple lines, try to send them all,
404                          * not just the first one -- Brain
405                          */
406                         while (outbuffer.size() && (errno != EAGAIN))
407                         {
408                                 /* Send a line */
409                                 int result = write(this->fd,outbuffer[0].c_str(),outbuffer[0].length());
410                                 if (result > 0)
411                                 {
412                                         if ((unsigned int)result == outbuffer[0].length())
413                                         {
414                                                 /* The whole block was written (usually a line)
415                                                  * Pop the block off the front of the queue,
416                                                  * dont set errno, because we are clear of errors
417                                                  * and want to try and write the next block too.
418                                                  */
419                                                 outbuffer.pop_front();
420                                         }
421                                         else
422                                         {
423                                                 std::string temp = outbuffer[0].substr(result);
424                                                 outbuffer[0] = temp;
425                                                 /* We didnt get the whole line out. arses.
426                                                  * Try again next time, i guess. Set errno,
427                                                  * because we shouldnt be writing any more now,
428                                                  * until the socketengine says its safe to do so.
429                                                  */
430                                                 errno = EAGAIN;
431                                         }
432                                 }
433                                 else if ((result == -1) && (errno != EAGAIN))
434                                 {
435                                         this->Instance->Log(DEBUG,"Write error on socket: %s",strerror(errno));
436                                         this->OnError(I_ERR_WRITE);
437                                         this->state = I_ERROR;
438                                         this->Instance->SE->DelFd(this);
439                                         this->Close();
440                                         return true;
441                                 }
442                         }
443                 }
444         }
445
446         if ((errno == EAGAIN) && (fd > -1))
447         {
448                 this->Instance->SE->WantWrite(this);
449         }
450
451         return (fd < 0);
452 }
453
454 void SocketTimeout::Tick(time_t now)
455 {
456         if (ServerInstance->SE->GetRef(this->sfd) != this->sock)
457         {
458                 ServerInstance->Log(DEBUG,"Our socket has been deleted before the timeout was reached.");
459                 return;
460         }
461
462         if (this->sock->state == I_CONNECTING)
463         {
464                 ServerInstance->Log(DEBUG,"Timed out, current=%lu",now);
465                 // for non-listening sockets, the timeout can occur
466                 // which causes termination of the connection after
467                 // the given number of seconds without a successful
468                 // connection.
469                 this->sock->OnTimeout();
470                 this->sock->OnError(I_ERR_TIMEOUT);
471                 this->sock->timeout = true;
472                 ServerInstance->SE->DelFd(this->sock);
473                 /* NOTE: We must set this AFTER DelFd, as we added
474                  * this socket whilst writeable. This means that we
475                  * must DELETE the socket whilst writeable too!
476                  */
477                 this->sock->state = I_ERROR;
478                 this->sock->Close();
479                 delete this->sock;
480                 return;
481         }
482 }
483
484 bool InspSocket::Poll()
485 {
486         if (this->Instance->SE->GetRef(this->fd) != this)
487                 return false;
488
489         int incoming = -1;
490
491         if ((fd < 0) || (fd > MAX_DESCRIPTORS))
492                 return false;
493
494         switch (this->state)
495         {
496                 case I_CONNECTING:
497                         this->Instance->Log(DEBUG,"State = I_CONNECTING");
498                         /* Our socket was in write-state, so delete it and re-add it
499                          * in read-state.
500                          */
501                         if (this->fd > -1)
502                         {
503                                 this->Instance->SE->DelFd(this);
504                                 this->SetState(I_CONNECTED);
505                                 if (!this->Instance->SE->AddFd(this))
506                                         return false;
507                         }
508                         if (Instance->Config->GetIOHook(this))
509                         {
510                                 try
511                                 {
512                                         Instance->Config->GetIOHook(this)->OnRawSocketConnect(this->fd);
513                                 }
514                                 catch (ModuleException& modexcept)
515                                 {
516                                         Instance->Log(DEBUG,"Module exception cought: %s",modexcept.GetReason());
517                                 }
518                         }
519                         return this->OnConnected();
520                 break;
521                 case I_LISTENING:
522                         length = sizeof (client);
523                         incoming = accept (this->fd, (sockaddr*)&client,&length);
524
525 #ifdef IPV6
526                         this->OnIncomingConnection(incoming, (char*)insp_ntoa(client.sin6_addr));
527 #else
528                         this->OnIncomingConnection(incoming, (char*)insp_ntoa(client.sin_addr));
529 #endif
530
531                         if (this->IsIOHooked)
532                         {
533                                 try
534                                 {
535 #ifdef IPV6
536                                         Instance->Config->GetIOHook(this)->OnRawSocketAccept(incoming, insp_ntoa(client.sin6_addr), this->port);
537 #else
538                                         Instance->Config->GetIOHook(this)->OnRawSocketAccept(incoming, insp_ntoa(client.sin_addr), this->port);
539 #endif
540                                 }
541                                 catch (ModuleException& modexcept)
542                                 {
543                                         Instance->Log(DEBUG,"Module exception cought: %s",modexcept.GetReason());
544                                 }
545                         }
546
547                         this->SetQueues(incoming);
548                         return true;
549                 break;
550                 case I_CONNECTED:
551                         /* Process the read event */
552                         return this->OnDataReady();
553                 break;
554                 default:
555                 break;
556         }
557         return true;
558 }
559
560 void InspSocket::SetState(InspSocketState s)
561 {
562         this->Instance->Log(DEBUG,"Socket state change");
563         this->state = s;
564 }
565
566 InspSocketState InspSocket::GetState()
567 {
568         return this->state;
569 }
570
571 int InspSocket::GetFd()
572 {
573         return this->fd;
574 }
575
576 bool InspSocket::OnConnected() { return true; }
577 void InspSocket::OnError(InspSocketError e) { return; }
578 int InspSocket::OnDisconnect() { return 0; }
579 int InspSocket::OnIncomingConnection(int newfd, char* ip) { return 0; }
580 bool InspSocket::OnDataReady() { return true; }
581 bool InspSocket::OnWriteReady() { return true; }
582 void InspSocket::OnTimeout() { return; }
583 void InspSocket::OnClose() { return; }
584
585 InspSocket::~InspSocket()
586 {
587         this->Close();
588 }
589
590 void InspSocket::HandleEvent(EventType et, int errornum)
591 {
592         switch (et)
593         {
594                 case EVENT_ERROR:
595                         this->Instance->SE->DelFd(this);
596                         this->Close();
597                         delete this;
598                         return;
599                 break;
600                 case EVENT_READ:
601                         if (!this->Poll())
602                         {
603                                 this->Instance->SE->DelFd(this);
604                                 this->Close();
605                                 delete this;
606                                 return;
607                         }
608                 break;
609                 case EVENT_WRITE:
610                         if (this->WaitingForWriteEvent)
611                         {
612                                 this->WaitingForWriteEvent = false;
613                                 if (!this->OnWriteReady())
614                                 {
615                                         this->Instance->SE->DelFd(this);
616                                         this->Close();
617                                         delete this;
618                                         return;
619                                 }
620                         }
621                         if (this->state == I_CONNECTING)
622                         {
623                                 /* This might look wrong as if we should be actually calling
624                                  * with EVENT_WRITE, but trust me it is correct. There are some
625                                  * writeability-state things in the read code, because of how
626                                  * InspSocket used to work regarding write buffering in previous
627                                  * versions of InspIRCd. - Brain
628                                  */
629                                 this->HandleEvent(EVENT_READ);
630                                 return;
631                         }
632                         else
633                         {
634                                 Instance->Log(DEBUG,"State=%d CONNECTED=%d", this->state, I_CONNECTED);
635                                 if (this->FlushWriteBuffer())
636                                 {
637                                         this->Instance->SE->DelFd(this);
638                                         this->Close();
639                                         delete this;
640                                         return;
641                                 }
642                         }
643                 break;
644         }
645 }
646