]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/userprocess.cpp
78a0bc31f63bc59d13b8f3328a73248fa87ef2ad
[user/henk/code/inspircd.git] / src / userprocess.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/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 "configreader.h"
16 #include "users.h"
17 #include "modules.h"
18 #include "wildcard.h"
19 #include "xline.h"
20 #include "socketengine.h"
21 #include "command_parse.h"
22
23 void FloodQuitUserHandler::Call(userrec* current)
24 {
25         Server->Log(DEFAULT,"Excess flood from: %s@%s", current->ident, current->host);
26         Server->SNO->WriteToSnoMask('f',"Excess flood from: %s%s%s@%s",
27                         current->registered == REG_ALL ? current->nick : "",
28                         current->registered == REG_ALL ? "!" : "", current->ident, current->host);
29         userrec::QuitUser(Server, current, "Excess flood");
30         if (current->registered != REG_ALL)
31         {
32                 Server->XLines->add_zline(120, Server->Config->ServerName, "Flood from unregistered connection", current->GetIPString());
33                 Server->XLines->apply_lines(APPLY_ZLINES);
34         }
35 }
36
37 void ProcessUserHandler::Call(userrec* cu)
38 {
39         int result = EAGAIN;
40
41         if (cu->GetFd() == FD_MAGIC_NUMBER)
42                 return;
43
44         char* ReadBuffer = Server->GetReadBuffer();
45
46         if (Server->Config->GetIOHook(cu->GetPort()))
47         {
48                 int result2 = 0;
49                 int MOD_RESULT = 0;
50
51                 try
52                 {
53                         MOD_RESULT = Server->Config->GetIOHook(cu->GetPort())->OnRawSocketRead(cu->GetFd(),ReadBuffer,sizeof(ReadBuffer),result2);
54                 }
55                 catch (CoreException& modexcept)
56                 {
57                         Server->Log(DEBUG, "%s threw an exception: %s", modexcept.GetSource(), modexcept.GetReason());
58                 }
59
60                 if (MOD_RESULT < 0)
61                 {
62                         result = -EAGAIN;
63                 }
64                 else
65                 {
66                         result = result2;
67                 }
68         }
69         else
70         {
71                 result = cu->ReadData(ReadBuffer, sizeof(ReadBuffer));
72         }
73
74         if ((result) && (result != -EAGAIN))
75         {
76                 userrec *current;
77                 int currfd;
78                 int floodlines = 0;
79
80                 Server->stats->statsRecv += result;
81                 /*
82                  * perform a check on the raw buffer as an array (not a string!) to remove
83                  * character 0 which is illegal in the RFC - replace them with spaces.
84                  */
85
86                 for (int checker = 0; checker < result; checker++)
87                 {
88                         if (ReadBuffer[checker] == 0)
89                                 ReadBuffer[checker] = ' ';
90                 }
91
92                 if (result > 0)
93                         ReadBuffer[result] = '\0';
94
95                 current = cu;
96                 currfd = current->GetFd();
97
98                 // add the data to the users buffer
99                 if (result > 0)
100                 {
101                         if (!current->AddBuffer(ReadBuffer))
102                         {
103                                 // AddBuffer returned false, theres too much data in the user's buffer and theyre up to no good.
104                                 if (current->registered == REG_ALL)
105                                 {
106                                         // Make sure they arn't flooding long lines.
107                                         if (Server->Time() > current->reset_due)
108                                         {
109                                                 current->reset_due = Server->Time() + current->threshold;
110                                                 current->lines_in = 0;
111                                         }
112
113                                         current->lines_in++;
114
115                                         if (current->flood && current->lines_in > current->flood)
116                                                 Server->FloodQuitUser(current);
117                                         else
118                                         {
119                                                 current->WriteServ("NOTICE %s :Your previous line was too long and was not delivered (Over %d chars) Please shorten it.", current->nick, MAXBUF-2);
120                                                 current->recvq.clear();
121                                         }
122                                 }
123                                 else
124                                         Server->FloodQuitUser(current);
125
126                                 return;
127                         }
128
129                         // while there are complete lines to process...
130                         while (current->BufferIsReady())
131                         {
132                                 if (Server->Time() > current->reset_due)
133                                 {
134                                         current->reset_due = Server->Time() + current->threshold;
135                                         current->lines_in = 0;
136                                 }
137
138                                 if (++current->lines_in > current->flood && current->flood)
139                                 {
140                                         Server->FloodQuitUser(current);
141                                         return;
142                                 }
143
144                                 if ((++floodlines > current->flood) && (current->flood != 0))
145                                 {
146                                         Server->FloodQuitUser(current);
147                                         return;
148                                 }
149
150                                 // use GetBuffer to copy single lines into the sanitized string
151                                 std::string single_line = current->GetBuffer();
152                                 current->bytes_in += single_line.length();
153                                 current->cmds_in++;
154                                 if (single_line.length() > MAXBUF - 2)  /* MAXBUF is 514 to allow for neccessary line terminators */
155                                         single_line.resize(MAXBUF - 2); /* So to trim to 512 here, we use MAXBUF - 2 */
156
157                                 Server->Parser->ProcessBuffer(single_line, current);
158                         }
159
160                         return;
161                 }
162
163                 if ((result == -1) && (errno != EAGAIN) && (errno != EINTR))
164                 {
165                         userrec::QuitUser(Server, cu, errno ? strerror(errno) : "EOF from client");
166                         return;
167                 }
168         }
169
170         // result EAGAIN means nothing read
171         else if ((result == EAGAIN) || (result == -EAGAIN))
172         {
173                 /* do nothing */
174         }
175         else if (result == 0)
176         {
177                 userrec::QuitUser(Server, cu, "Connection closed");
178                 return;
179         }
180 }
181
182 /**
183  * This function is called once a second from the mainloop.
184  * It is intended to do background checking on all the user structs, e.g.
185  * stuff like ping checks, registration timeouts, etc.
186  */
187 void InspIRCd::DoBackgroundUserStuff(time_t TIME)
188 {
189         /* Is it time yet? */
190         if (TIME < next_call)
191                 return;
192         else
193         {
194                 /* Time we actually need to call this again */
195                 const time_t DUMMY_VALUE = 32768;
196                 next_call = TIME + DUMMY_VALUE;
197
198                 for (std::vector<userrec*>::iterator count2 = local_users.begin(); count2 != local_users.end(); count2++)
199                 {
200                         userrec* curr = *count2;
201
202                         /*
203                          * registration timeout -- didnt send USER/NICK/HOST
204                          * in the time specified in their connection class.
205                          */
206                         if ((TIME > curr->timeout) && (curr->registered != REG_ALL))
207                         {
208                                 curr->muted = true;
209                                 userrec::QuitUser(this, curr, "Registration timeout");
210                                 continue;
211                         }
212                         else
213                         {
214                                 if ((curr->registered != REG_ALL) && (next_call > (time_t)curr->timeout))
215                                         next_call = curr->timeout;
216                         }
217                         /*
218                          * user has signed on with USER/NICK/PASS, and dns has completed, all the modules
219                          * say this user is ok to proceed, fully connect them.
220                          */
221                         bool ready = AllModulesReportReady(curr);
222                         if ((TIME > curr->signon) && (curr->registered == REG_NICKUSER) && (ready))
223                         {
224                                 if (!curr->dns_done)
225                                 {
226                                         curr->WriteServ("NOTICE Auth :*** Could not resolve your hostname: Request timed out; using your IP address (%s) instead.", curr->GetIPString());
227                                         curr->dns_done = true;
228                                 }
229                                 this->stats->statsDnsBad++;
230                                 curr->FullConnect();
231                                 continue;
232                         }
233                         else
234                         {
235                                 if ((curr->registered == REG_NICKUSER) && (ready) && (next_call > curr->signon))
236                                         next_call = curr->signon;
237                         }
238
239                         if ((curr->dns_done) && (curr->registered == REG_NICKUSER) && (ready))
240                         {
241                                 curr->FullConnect();
242                                 continue;
243                         }
244                         else
245                         {
246                                 if ((curr->registered == REG_NICKUSER) && (ready) && (next_call > curr->signon + this->Config->dns_timeout))
247                                         next_call = curr->signon + this->Config->dns_timeout;
248                         }
249
250                         // It's time to PING this user. Send them a ping.
251                         if ((TIME > curr->nping) && (curr->registered == REG_ALL))
252                         {
253                                 // This user didn't answer the last ping, remove them
254                                 if (!curr->lastping)
255                                 {
256                                         /* Everybody loves boobies. */
257                                         time_t time = this->Time(false) - (curr->nping - curr->pingmax);
258                                         char message[MAXBUF];
259                                         snprintf(message, MAXBUF, "Ping timeout: %ld second%s", (long)time, time > 1 ? "s" : "");
260                                         curr->muted = true;
261                                         curr->lastping = 1;
262                                         curr->nping = TIME+curr->pingmax;
263                                         userrec::QuitUser(this, curr, message);
264                                         continue;
265                                 }
266                                 curr->Write("PING :%s",this->Config->ServerName);
267                                 curr->lastping = 0;
268                                 curr->nping = TIME+curr->pingmax;
269                         }
270                         else
271                         {
272                                 if ((curr->registered == REG_ALL) && (next_call > curr->nping))
273                                         next_call = curr->nping;
274                         }
275                 }
276
277                 /* If theres nothing to do, trigger in the next second, something might come up */
278                 time_t delta = next_call - TIME;
279                 if (delta == DUMMY_VALUE)
280                 {
281                         next_call = TIME + 1;
282                         delta = 1;
283                 }
284         }
285 }
286