]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/socket.cpp
Put some error checking back in here
[user/henk/code/inspircd.git] / src / socket.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 using namespace std;
18
19 #include "inspircd_config.h"
20 #include <sys/time.h>
21 #include <sys/resource.h>
22 #include <sys/types.h>
23 #include <sys/socket.h>
24 #include <netinet/in.h>
25 #include <string>
26 #include <unistd.h>
27 #include <fcntl.h>
28 #include <poll.h>
29 #include <sstream>
30 #include <iostream>
31 #include <fstream>
32 #include <stdexcept>
33 #include "socket.h"
34 #include "inspircd.h"
35 #include "inspircd_io.h"
36 #include "inspstring.h"
37 #include "helperfuncs.h"
38 #include "socketengine.h"
39
40
41 extern InspIRCd* ServerInstance;
42 extern ServerConfig* Config;
43 extern time_t TIME;
44
45 InspSocket* socket_ref[MAX_DESCRIPTORS];
46
47 InspSocket::InspSocket()
48 {
49         this->state = I_DISCONNECTED;
50         this->fd = -1;
51         this->ClosePending = false;
52 }
53
54 InspSocket::InspSocket(int newfd, char* ip)
55 {
56         this->fd = newfd;
57         this->state = I_CONNECTED;
58         this->IP = ip;
59         this->ClosePending = false;
60         ServerInstance->SE->AddFd(this->fd,true,X_ESTAB_MODULE);
61         socket_ref[this->fd] = this;
62 }
63
64 InspSocket::InspSocket(const std::string &ahost, int aport, bool listening, unsigned long maxtime) : fd(-1), host(ahost)
65 {
66         this->ClosePending = false;
67         this->outbuffer.clear();
68         if (listening) {
69                 if ((this->fd = OpenTCPSocket()) == ERROR)
70                 {
71                         this->fd = -1;
72                         this->state = I_ERROR;
73                         this->OnError(I_ERR_SOCKET);
74                         log(DEBUG,"OpenTCPSocket() error");
75                         return;
76                 }
77                 else
78                 {
79                         if (BindSocket(this->fd,this->client,this->server,aport,(char*)ahost.c_str()) == ERROR)
80                         {
81                                 this->Close();
82                                 this->fd = -1;
83                                 this->state = I_ERROR;
84                                 this->OnError(I_ERR_BIND);
85                                 log(DEBUG,"BindSocket() error %s",strerror(errno));
86                                 return;
87                         }
88                         else
89                         {
90                                 this->state = I_LISTENING;
91                                 ServerInstance->SE->AddFd(this->fd,true,X_ESTAB_MODULE);
92                                 socket_ref[this->fd] = this;
93                                 log(DEBUG,"New socket now in I_LISTENING state");
94                                 return;
95                         }
96                 }                       
97         }
98         else
99         {
100                 this->host = ahost;
101                 this->port = aport;
102
103                 if (!inet_aton(host.c_str(),&addy))
104                 {
105                         log(DEBUG,"Attempting to resolve %s",this->host.c_str());
106                         /* Its not an ip, spawn the resolver */
107                         this->dns.SetNS(std::string(Config->DNSServer));
108                         this->dns.ForwardLookupWithFD(host,fd);
109                         timeout_end = time(NULL) + maxtime;
110                         timeout = false;
111                         this->state = I_RESOLVING;
112                         socket_ref[this->fd] = this;
113                 }
114                 else
115                 {
116                         log(DEBUG,"No need to resolve %s",this->host.c_str());
117                         this->IP = host;
118                         timeout_end = time(NULL) + maxtime;
119                         this->DoConnect();
120                 }
121         }
122 }
123
124 void InspSocket::SetQueues(int nfd)
125 {
126         // attempt to increase socket sendq and recvq as high as its possible
127         int sendbuf = 32768;
128         int recvbuf = 32768;
129         setsockopt(nfd,SOL_SOCKET,SO_SNDBUF,(const void *)&sendbuf,sizeof(sendbuf));
130         setsockopt(nfd,SOL_SOCKET,SO_RCVBUF,(const void *)&recvbuf,sizeof(sendbuf));
131 }
132
133 bool InspSocket::DoResolve()
134 {
135         log(DEBUG,"In DoResolve(), trying to resolve IP");
136         if (this->dns.HasResult())
137         {
138                 log(DEBUG,"Socket has result");
139                 std::string res_ip = dns.GetResultIP();
140                 if (res_ip != "")
141                 {
142                         log(DEBUG,"Socket result set to %s",res_ip.c_str());
143                         this->IP = res_ip;
144                         socket_ref[this->fd] = NULL;
145                 }
146                 else
147                 {
148                         log(DEBUG,"Socket DNS failure");
149                         this->Close();
150                         this->state = I_ERROR;
151                         this->OnError(I_ERR_RESOLVE);
152                         this->fd = -1;
153                         return false;
154                 }
155                 return this->DoConnect();
156         }
157         log(DEBUG,"No result for socket yet!");
158         return true;
159 }
160
161 bool InspSocket::DoConnect()
162 {
163         log(DEBUG,"In DoConnect()");
164         if ((this->fd = socket(AF_INET, SOCK_STREAM, 0)) == -1)
165         {
166                 log(DEBUG,"Cant socket()");
167                 this->state = I_ERROR;
168                 this->OnError(I_ERR_SOCKET);
169                 this->fd = -1;
170                 return false;
171         }
172
173         log(DEBUG,"Part 2 DoConnect() %s",this->IP.c_str());
174         inet_aton(this->IP.c_str(),&addy);
175         addr.sin_family = AF_INET;
176         addr.sin_addr = addy;
177         addr.sin_port = htons(this->port);
178
179         int flags;
180         flags = fcntl(this->fd, F_GETFL, 0);
181         fcntl(this->fd, F_SETFL, flags | O_NONBLOCK);
182
183         if (connect(this->fd, (sockaddr*)&this->addr,sizeof(this->addr)) == -1)
184         {
185                 if (errno != EINPROGRESS)
186                 {
187                         log(DEBUG,"Error connect() %d: %s",this->fd,strerror(errno));
188                         this->OnError(I_ERR_CONNECT);
189                         this->state = I_ERROR;
190                         this->Close();
191                         this->fd = -1;
192                         return false;
193                 }
194         }
195         this->state = I_CONNECTING;
196         ServerInstance->SE->AddFd(this->fd,false,X_ESTAB_MODULE);
197         socket_ref[this->fd] = this;
198         this->SetQueues(this->fd);
199         log(DEBUG,"Returning true from InspSocket::DoConnect");
200         return true;
201 }
202
203
204 void InspSocket::Close()
205 {
206         if (this->fd != -1)
207         {
208                 this->OnClose();
209                 shutdown(this->fd,2);
210                 close(this->fd);
211                 socket_ref[this->fd] = NULL;
212                 this->fd = -1;
213         }
214 }
215
216 std::string InspSocket::GetIP()
217 {
218         return this->IP;
219 }
220
221 char* InspSocket::Read()
222 {
223         if ((fd < 0) || (fd > MAX_DESCRIPTORS))
224                 return NULL;
225         int n = recv(this->fd,this->ibuf,sizeof(this->ibuf),0);
226         if ((n > 0) && (n <= (int)sizeof(this->ibuf)))
227         {
228                 ibuf[n] = 0;
229                 return ibuf;
230         }
231         else
232         {
233                 if (errno == EAGAIN)
234                 {
235                         return "";
236                 }
237                 else
238                 {
239                         log(DEBUG,"EOF or error on socket: %s",strerror(errno));
240                         return NULL;
241                 }
242         }
243 }
244
245 void InspSocket::MarkAsClosed()
246 {
247         log(DEBUG,"Marked as closed");
248         this->ClosePending = true;
249 }
250
251 // There are two possible outcomes to this function.
252 // It will either write all of the data, or an undefined amount.
253 // If an undefined amount is written the connection has failed
254 // and should be aborted.
255 int InspSocket::Write(const std::string &data)
256 {
257         if (this->ClosePending)
258                 return false;
259
260         int result = write(this->fd,data.c_str(),data.length());
261         if (result < 1)
262                 return false;
263         return true;
264
265         /* Try and append the data to the back of the queue, and send it on its way
266          */
267         //outbuffer.push_back(data);
268         //return (!this->FlushWriteBuffer());
269 }
270
271 bool InspSocket::FlushWriteBuffer()
272 {
273         if (this->ClosePending)
274                 return true;
275
276         /*if ((this->fd > -1) && (this->state == I_CONNECTED))
277         {
278                 if (outbuffer.size())
279                 {
280                         log(DEBUG,"Writing %d to socket",outbuffer.size());
281                         int result = write(this->fd,outbuffer[0].c_str(),outbuffer[0].length());
282                         if (result > 0)
283                         {
284                                 log(DEBUG,"Wrote %d to socket",result);
285                                 if ((unsigned int)result == outbuffer[0].length())
286                                 {
287                                          * The whole block was written (usually a line)
288                                          * Pop the block off the front of the queue
289                                          *
290                                         log(DEBUG,"Popping front item, now %d items left",outbuffer.size());
291                                         outbuffer.pop_front();
292                                 }
293                                 else
294                                 {
295                                         log(DEBUG,"Cutting front item");
296                                         std::string temp = outbuffer[0].substr(result);
297                                         outbuffer[0] = temp;
298                                         log(DEBUG,"Front item is now: ",outbuffer[0].c_str());
299                                 }
300                         }
301                         else if ((result == -1) && (errno != EAGAIN))
302                         {
303                                 log(DEBUG,"Write error on socket: %s",strerror(errno));
304                                 this->OnError(I_ERR_WRITE);
305                                 this->state = I_ERROR;
306                                 return true;
307                         }
308                 }
309         }*/
310         return false;
311 }
312
313 bool InspSocket::Timeout(time_t current)
314 {
315         if (!socket_ref[this->fd] || !ServerInstance->SE->HasFd(this->fd))
316         {
317                 log(DEBUG,"No FD or socket ref");
318                 return false;
319         }
320
321         if (this->ClosePending)
322         {
323                 log(DEBUG,"Close is pending");
324                 return true;
325         }
326
327         if (((this->state == I_RESOLVING) || (this->state == I_CONNECTING)) && (current > timeout_end))
328         {
329                 log(DEBUG,"Timed out, current=%lu timeout_end=%lu");
330                 // for non-listening sockets, the timeout can occur
331                 // which causes termination of the connection after
332                 // the given number of seconds without a successful
333                 // connection.
334                 this->OnTimeout();
335                 this->OnError(I_ERR_TIMEOUT);
336                 timeout = true;
337                 this->state = I_ERROR;
338                 return true;
339         }
340         return this->FlushWriteBuffer();
341 }
342
343 bool InspSocket::Poll()
344 {
345         if (!socket_ref[this->fd] || !ServerInstance->SE->HasFd(this->fd))
346                 return false;
347
348         int incoming = -1;
349         bool n = true;
350
351         if ((fd < 0) || (fd > MAX_DESCRIPTORS) || (this->ClosePending))
352                 return false;
353
354         switch (this->state)
355         {
356                 case I_RESOLVING:
357                         log(DEBUG,"State = I_RESOLVING, calling DoResolve()");
358                         return this->DoResolve();
359                 break;
360                 case I_CONNECTING:
361                         log(DEBUG,"State = I_CONNECTING");
362                         this->SetState(I_CONNECTED);
363                         /* Our socket was in write-state, so delete it and re-add it
364                          * in read-state.
365                          */
366                         ServerInstance->SE->DelFd(this->fd);
367                         ServerInstance->SE->AddFd(this->fd,true,X_ESTAB_MODULE);
368                         return this->OnConnected();
369                 break;
370                 case I_LISTENING:
371                         length = sizeof (client);
372                         incoming = accept (this->fd, (sockaddr*)&client,&length);
373                         this->SetQueues(incoming);
374                         this->OnIncomingConnection(incoming,inet_ntoa(client.sin_addr));
375                         return true;
376                 break;
377                 case I_CONNECTED:
378                         n = this->OnDataReady();
379                         /* Flush any pending, but not till after theyre done with the event
380                          * so there are less write calls involved.
381                          * Both FlushWriteBuffer AND the return result of OnDataReady must
382                          * return true for this to be ok.
383                          */
384                         return (n && !this->FlushWriteBuffer());
385                 break;
386                 default:
387                 break;
388         }
389         return true;
390 }
391
392 void InspSocket::SetState(InspSocketState s)
393 {
394         log(DEBUG,"Socket state change");
395         this->state = s;
396 }
397
398 InspSocketState InspSocket::GetState()
399 {
400         return this->state;
401 }
402
403 int InspSocket::GetFd()
404 {
405         return this->fd;
406 }
407
408 bool InspSocket::OnConnected() { return true; }
409 void InspSocket::OnError(InspSocketError e) { return; }
410 int InspSocket::OnDisconnect() { return 0; }
411 int InspSocket::OnIncomingConnection(int newfd, char* ip) { return 0; }
412 bool InspSocket::OnDataReady() { return true; }
413 void InspSocket::OnTimeout() { return; }
414 void InspSocket::OnClose() { return; }
415
416 InspSocket::~InspSocket()
417 {
418         this->Close();
419 }