]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/userprocess.cpp
Inspire -> InspIRCd
[user/henk/code/inspircd.git] / src / userprocess.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 /* Now with added unF! ;) */
18
19 using namespace std;
20
21 #include "inspircd_config.h"
22 #include "inspircd.h"
23 #include "inspircd_io.h"
24 #include <unistd.h>
25 #include <fcntl.h>
26 #include <sys/errno.h>
27 #include <sys/ioctl.h>
28 #include <sys/utsname.h>
29 #include <time.h>
30 #include <string>
31 #ifdef GCC3
32 #include <ext/hash_map>
33 #else
34 #include <hash_map>
35 #endif
36 #include <map>
37 #include <sstream>
38 #include <vector>
39 #include <deque>
40 #include <sched.h>
41 #ifdef THREADED_DNS
42 #include <pthread.h>
43 #endif
44 #include "users.h"
45 #include "ctables.h"
46 #include "globals.h"
47 #include "modules.h"
48 #include "dynamic.h"
49 #include "wildcard.h"
50 #include "message.h"
51 #include "mode.h"
52 #include "commands.h"
53 #include "xline.h"
54 #include "inspstring.h"
55 #include "dnsqueue.h"
56 #include "helperfuncs.h"
57 #include "hashcomp.h"
58 #include "socketengine.h"
59 #include "userprocess.h"
60 #include "typedefs.h"
61 #include "command_parse.h"
62 #include "cull_list.h"
63
64 extern int MODCOUNT;
65 extern struct sockaddr_in client,server;
66 extern socklen_t length;
67 extern std::vector<Module*> modules;
68 extern std::vector<ircd_module*> factory;
69 extern std::vector<InspSocket*> module_sockets;
70 extern time_t TIME;
71 extern time_t OLDTIME;
72 extern std::vector<userrec*> local_users;
73
74 extern InspIRCd* ServerInstance;
75 extern ServerConfig *Config;
76 extern userrec* fd_ref_table[MAX_DESCRIPTORS];
77 char data[65536];
78
79 extern user_hash clientlist;
80 extern chan_hash chanlist;
81
82 void ProcessUser(userrec* cu)
83 {
84         int result = EAGAIN;
85         if (cu->fd == FD_MAGIC_NUMBER)
86                 return;
87         log(DEBUG,"Processing user with fd %d",cu->fd);
88         if (Config->GetIOHook(cu->port))
89         {
90                 int result2 = 0;
91                 int MOD_RESULT = Config->GetIOHook(cu->port)->OnRawSocketRead(cu->fd,data,65535,result2);
92                 log(DEBUG,"Data result returned by module: %d",MOD_RESULT);
93                 if (MOD_RESULT < 0)
94                 {
95                         result = -EAGAIN;
96                 }
97                 else
98                 {
99                         result = result2;
100                 }
101         }
102         else
103         {
104                 result = cu->ReadData(data, 65535);
105         }
106         log(DEBUG,"Read result: %d",result);
107         if ((result) && (result != -EAGAIN))
108         {
109                 ServerInstance->stats->statsRecv += result;
110                 // perform a check on the raw buffer as an array (not a string!) to remove
111                 // characters 0 and 7 which are illegal in the RFC - replace them with spaces.
112                 // hopefully this should stop even more people whining about "Unknown command: *"
113                 for (int checker = 0; checker < result; checker++)
114                 {
115                         if ((data[checker] == 0) || (data[checker] == 7))
116                                 data[checker] = ' ';
117                 }
118                 if (result > 0)
119                         data[result] = '\0';
120                 userrec* current = cu;
121                 int currfd = current->fd;
122                 int floodlines = 0;
123                 // add the data to the users buffer
124                 if (result > 0)
125                 {
126                         if (!current->AddBuffer(data))
127                         {
128                                 // AddBuffer returned false, theres too much data in the user's buffer and theyre up to no good.
129                                 if (current->registered == 7)
130                                 {
131                                         // Make sure they arn't flooding long lines.
132                                         if (TIME > current->reset_due)
133                                         {
134                                                 current->reset_due = TIME + current->threshold;
135                                                 current->lines_in = 0;
136                                         }
137                                         current->lines_in++;
138                                         if (current->lines_in > current->flood)
139                                         {
140                                                 log(DEFAULT,"Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
141                                                 WriteOpers("*** Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
142                                                 kill_link(current,"Excess flood");
143                                                 return;
144                                         } else {
145                                                 WriteServ(currfd, "NOTICE %s :Your previous line was too long and was not delivered (Over 512chars) Please shorten it.", current->nick);
146                                                 current->recvq = "";
147                                         }
148                                 }
149                                 else
150                                 {
151                                         WriteOpers("*** Excess flood from %s",(char*)inet_ntoa(current->ip4));
152                                         log(DEFAULT,"Excess flood from: %s",(char*)inet_ntoa(current->ip4));
153                                         add_zline(120,Config->ServerName,"Flood from unregistered connection",(char*)inet_ntoa(current->ip4));
154                                         apply_lines(APPLY_ZLINES);
155                                 }
156                                 return;
157                         }
158                         if (current->recvq.length() > (unsigned)Config->NetBufferSize)
159                         {
160                                 if (current->registered == 7)
161                                 {
162                                         kill_link(current,"RecvQ exceeded");
163                                 }
164                                 else
165                                 {
166                                         WriteOpers("*** Excess flood from %s",(char*)inet_ntoa(current->ip4));
167                                         log(DEFAULT,"Excess flood from: %s",(char*)inet_ntoa(current->ip4));
168                                         add_zline(120,Config->ServerName,"Flood from unregistered connection",(char*)inet_ntoa(current->ip4));
169                                         apply_lines(APPLY_ZLINES);
170                                 }
171                                 return;
172                         }
173                         // while there are complete lines to process...
174                         while (current->BufferIsReady())
175                         {
176                                 floodlines++;
177                                 if (TIME > current->reset_due)
178                                 {
179                                         current->reset_due = TIME + current->threshold;
180                                         current->lines_in = 0;
181                                 }
182                                 current->lines_in++;
183                                 if (current->lines_in > current->flood)
184                                 {
185                                         log(DEFAULT,"Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
186                                         WriteOpers("*** Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
187                                         kill_link(current,"Excess flood");
188                                         return;
189                                 }
190                                 if ((floodlines > current->flood) && (current->flood != 0))
191                                 {
192                                         if (current->registered == 7)
193                                         {
194                                                 log(DEFAULT,"Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
195                                                 WriteOpers("*** Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
196                                                 kill_link(current,"Excess flood");
197                                         }
198                                         else
199                                         {
200                                                 add_zline(120,Config->ServerName,"Flood from unregistered connection",(char*)inet_ntoa(current->ip4));
201                                                 apply_lines(APPLY_ZLINES);
202                                         }
203                                         return;
204                                 }
205                                 char sanitized[MAXBUF];
206                                 // use GetBuffer to copy single lines into the sanitized string
207                                 std::string single_line = current->GetBuffer();
208                                 current->bytes_in += single_line.length();
209                                 current->cmds_in++;
210                                 if (single_line.length()>512)
211                                 {
212                                         log(DEFAULT,"Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
213                                         WriteOpers("*** Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
214                                         kill_link(current,"Excess flood");
215                                         return;
216                                 }
217                                 strlcpy(sanitized,single_line.c_str(),MAXBUF);
218                                 if (*sanitized)
219                                 {
220                                         userrec* old_comp = fd_ref_table[currfd];
221                                         // we're gonna re-scan to check if the nick is gone, after every
222                                         // command - if it has, we're gonna bail
223                                         ServerInstance->Parser->ProcessBuffer(sanitized,current);
224                                         // look for the user's record in case it's changed... if theyve quit,
225                                         // we cant do anything more with their buffer, so bail.
226                                         // there used to be an ugly, slow loop here. Now we have a reference
227                                         // table, life is much easier (and FASTER)
228                                         userrec* new_comp = fd_ref_table[currfd];
229                                         if ((currfd < 0) || (!fd_ref_table[currfd]) || (old_comp != new_comp))
230                                         {
231                                                 return;
232                                         }
233                                         else
234                                         {
235                                                 /* The user is still here, flush their buffer */
236                                                 current->FlushWriteBuf();
237                                         }
238                                 }
239                         }
240                         return;
241                 }
242                 if ((result == -1) && (errno != EAGAIN) && (errno != EINTR))
243                 {
244                         log(DEBUG,"killing: %s",cu->nick);
245                         kill_link(cu,strerror(errno));
246                         return;
247                 }
248         }
249         // result EAGAIN means nothing read
250         else if ((result == EAGAIN) || (result == -EAGAIN))
251         {
252         }
253         else if (result == 0)
254         {
255                 log(DEBUG,"InspIRCd: Exited: %s",cu->nick);
256                 kill_link(cu,"Client exited");
257                 log(DEBUG,"Bailing from client exit");
258                 return;
259         }
260 }
261
262 void DoSocketTimeouts(time_t TIME)
263 {
264         unsigned int numsockets = module_sockets.size();
265         SocketEngine* SE = ServerInstance->SE;
266         for (std::vector<InspSocket*>::iterator a = module_sockets.begin(); a < module_sockets.end(); a++)
267         {
268                 InspSocket* s = (InspSocket*)*a;
269                 if (s->Timeout(TIME))
270                 {
271                         log(DEBUG,"Socket poll returned false, close and bail");
272                         SE->DelFd(s->GetFd());
273                         s->Close();
274                         module_sockets.erase(a);
275                         delete s;
276                         break;
277                 }
278                 if (module_sockets.size() != numsockets) break;
279         }
280 }
281
282 /**
283  * This function is called once a second from the mainloop.
284  * It is intended to do background checking on all the user structs, e.g.
285  * stuff like ping checks, registration timeouts, etc. This function is
286  * also responsible for checking if InspSocket derived classes are timed out.
287  */
288 void DoBackgroundUserStuff(time_t TIME)
289 {
290         CullList* GlobalGoners = new CullList();
291         for (std::vector<userrec*>::iterator count2 = local_users.begin(); count2 != local_users.end(); count2++)
292         {
293                 /* Sanity checks for corrupted iterators (yes, really) */
294                 userrec* curr = NULL;
295                 if (*count2)
296                         curr = (userrec*)(*count2);
297                 if ((long)curr == -1)
298                         return;
299
300                 if (curr)
301                 {
302                         // registration timeout -- didnt send USER/NICK/HOST in the time specified in
303                         // their connection class.
304                         if (((unsigned)TIME > (unsigned)curr->timeout) && (curr->registered != 7))
305                         {
306                                 log(DEBUG,"InspIRCd: registration timeout: %s",curr->nick);
307                                 GlobalGoners->AddItem(curr,"Registration timeout");
308                                 continue;
309                         }
310                         // user has signed on with USER/NICK/PASS, and dns has completed, all the modules
311                         // say this user is ok to proceed, fully connect them.
312                         if ((TIME > curr->signon) && (curr->registered == 3) && (AllModulesReportReady(curr)))
313                         {
314                                 curr->dns_done = true;
315                                 ServerInstance->stats->statsDnsBad++;
316                                 FullConnectUser(curr,GlobalGoners);
317                                 continue;
318                         }
319                         if ((curr->dns_done) && (curr->registered == 3) && (AllModulesReportReady(curr)))
320                         {
321                                 log(DEBUG,"dns done, registered=3, and modules ready, OK");
322                                 FullConnectUser(curr,GlobalGoners);
323                                 continue;
324                         }
325                         // It's time to PING this user. Send them a ping.
326                         if ((TIME > curr->nping) && (curr->registered == 7))
327                         {
328                                 // This user didn't answer the last ping, remove them
329                                 if (!curr->lastping)
330                                 {
331                                         GlobalGoners->AddItem(curr,"Ping timeout");
332                                         continue;
333                                 }
334                                 Write(curr->fd,"PING :%s",Config->ServerName);
335                                 curr->lastping = 0;
336                                 curr->nping = TIME+curr->pingmax;
337                         }
338                         // We can flush the write buffer as the last thing we do, because if they
339                         // match any of the above conditions its no use flushing their buffer anyway.
340                         curr->FlushWriteBuf();
341                         if (curr->GetWriteError() != "")
342                         {
343                                 GlobalGoners->AddItem(curr,curr->GetWriteError());
344                                 continue;
345                         }
346                 }
347         }
348         /** Remove all the queued users who are due to be quit
349          */
350         GlobalGoners->Apply();
351         /** Free to memory used
352          */
353         delete GlobalGoners;
354         return;
355 }
356
357 void OpenLog(char** argv, int argc)
358 {
359         if (Config->logpath == "")
360         {
361                 Config->logpath = GetFullProgDir(argv,argc) + "/ircd.log";
362         }
363         Config->log_file = fopen(Config->logpath.c_str(),"a+");
364         if (!Config->log_file)
365         {
366                 printf("ERROR: Could not write to logfile %s, bailing!\n\n",Config->logpath.c_str());
367                 Exit(ERROR);
368         }
369 }
370
371
372 void CheckRoot()
373 {
374         if (geteuid() == 0)
375         {
376                 printf("WARNING!!! You are running an irc server as ROOT!!! DO NOT DO THIS!!!\n\n");
377                 log(DEFAULT,"InspIRCd: startup: not starting with UID 0!");
378                 Exit(ERROR);
379         }
380 }
381
382
383 void CheckDie()
384 {
385         if (*Config->DieValue)
386         {
387                 printf("WARNING: %s\n\n",Config->DieValue);
388                 log(DEFAULT,"Ut-Oh, somebody didn't read their config file: '%s'",Config->DieValue);
389                 exit(0);
390         }
391 }
392
393 void LoadAllModules(InspIRCd* ServerInstance)
394 {
395         /* We must load the modules AFTER initializing the socket engine, now */
396         MODCOUNT = -1;
397         char configToken[MAXBUF];
398         for (int count = 0; count < Config->ConfValueEnum("module",&Config->config_f); count++)
399         {
400                 Config->ConfValue("module","name",count,configToken,&Config->config_f);
401                 printf("Loading module... \033[1;32m%s\033[0m\n",configToken);
402                 if (!ServerInstance->LoadModule(configToken))
403                 {
404                         log(DEFAULT,"Exiting due to a module loader error.");
405                         printf("\nThere was an error loading a module: %s\n\nYou might want to do './inspircd start' instead of 'bin/inspircd'\n\n",ServerInstance->ModuleError());
406                         Exit(0);
407                 }
408         }
409         log(DEFAULT,"Total loaded modules: %lu",(unsigned long)MODCOUNT+1);
410 }
411
412