]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/userprocess.cpp
a73eb7d256695ab3142b9c17171907bb19609863
[user/henk/code/inspircd.git] / src / userprocess.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  Inspire is copyright (C) 2002-2005 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 "typedefs.h"
60 #include "command_parse.h"
61
62 extern int MODCOUNT;
63 extern struct sockaddr_in client,server;
64 extern socklen_t length;
65 extern std::vector<Module*> modules;
66 extern std::vector<ircd_module*> factory;
67 extern std::vector<InspSocket*> module_sockets;
68 extern time_t TIME;
69 extern time_t OLDTIME;
70 extern std::vector<userrec*> local_users;
71
72 extern InspIRCd* ServerInstance;
73 extern ServerConfig *Config;
74 extern userrec* fd_ref_table[65536];
75 char data[65536];
76
77 extern user_hash clientlist;
78 extern chan_hash chanlist;
79
80 extern Module* IOHookModule;
81
82 void ProcessUser(userrec* cu)
83 {
84         int result = EAGAIN;
85         log(DEBUG,"Processing user with fd %d",cu->fd);
86         if (IOHookModule)
87         {
88                 int MOD_RESULT = 0;
89                 int result2 = 0;
90                 IOHookModule->OnRawSocketRead(cu->fd,data,65535,result2);
91                 if (!MOD_RESULT)
92                 {
93                         result = cu->ReadData(data, 65535);
94                 }
95                 else
96                 {
97                         log(DEBUG,"Data result returned by module: %d",MOD_RESULT);
98                         result = result2;
99                 }
100         }
101         else
102         {
103                 result = cu->ReadData(data, 65535);
104         }
105         log(DEBUG,"Read result: %d",result);
106         if (result)
107         {
108                 ServerInstance->stats->statsRecv += result;
109                 // perform a check on the raw buffer as an array (not a string!) to remove
110                 // characters 0 and 7 which are illegal in the RFC - replace them with spaces.
111                 // hopefully this should stop even more people whining about "Unknown command: *"
112                 for (int checker = 0; checker < result; checker++)
113                 {
114                         if ((data[checker] == 0) || (data[checker] == 7))
115                                 data[checker] = ' ';
116                 }
117                 if (result > 0)
118                         data[result] = '\0';
119                 userrec* current = cu;
120                 int currfd = current->fd;
121                 int floodlines = 0;
122                 // add the data to the users buffer
123                 if (result > 0)
124                 {
125                         if (!current->AddBuffer(data))
126                         {
127                                 // AddBuffer returned false, theres too much data in the user's buffer and theyre up to no good.
128                                 if (current->registered == 7)
129                                 {
130                                         kill_link(current,"RecvQ exceeded");
131                                 }
132                                 else
133                                 {
134                                         WriteOpers("*** Excess flood from %s",current->ip);
135                                         log(DEFAULT,"Excess flood from: %s",current->ip);
136                                         add_zline(120,Config->ServerName,"Flood from unregistered connection",current->ip);
137                                         apply_lines(APPLY_ZLINES);
138                                 }
139                                 return;
140                         }
141                         if (current->recvq.length() > (unsigned)Config->NetBufferSize)
142                         {
143                                 if (current->registered == 7)
144                                 {
145                                         kill_link(current,"RecvQ exceeded");
146                                 }
147                                 else
148                                 {
149                                         WriteOpers("*** Excess flood from %s",current->ip);
150                                         log(DEFAULT,"Excess flood from: %s",current->ip);
151                                         add_zline(120,Config->ServerName,"Flood from unregistered connection",current->ip);
152                                         apply_lines(APPLY_ZLINES);
153                                 }
154                                 return;
155                         }
156                         // while there are complete lines to process...
157                         while (current->BufferIsReady())
158                         {
159                                 floodlines++;
160                                 if (TIME > current->reset_due)
161                                 {
162                                         current->reset_due = TIME + current->threshold;
163                                         current->lines_in = 0;
164                                 }
165                                 current->lines_in++;
166                                 if (current->lines_in > current->flood)
167                                 {
168                                         log(DEFAULT,"Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
169                                         WriteOpers("*** Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
170                                         kill_link(current,"Excess flood");
171                                         return;
172                                 }
173                                 if ((floodlines > current->flood) && (current->flood != 0))
174                                 {
175                                         if (current->registered == 7)
176                                         {
177                                                 log(DEFAULT,"Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
178                                                 WriteOpers("*** Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
179                                                 kill_link(current,"Excess flood");
180                                         }
181                                         else
182                                         {
183                                                 add_zline(120,Config->ServerName,"Flood from unregistered connection",current->ip);
184                                                 apply_lines(APPLY_ZLINES);
185                                         }
186                                         return;
187                                 }
188                                 char sanitized[MAXBUF];
189                                 // use GetBuffer to copy single lines into the sanitized string
190                                 std::string single_line = current->GetBuffer();
191                                 current->bytes_in += single_line.length();
192                                 current->cmds_in++;
193                                 if (single_line.length()>512)
194                                 {
195                                         log(DEFAULT,"Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
196                                         WriteOpers("*** Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
197                                         kill_link(current,"Excess flood");
198                                         return;
199                                 }
200                                 strlcpy(sanitized,single_line.c_str(),MAXBUF);
201                                 if (*sanitized)
202                                 {
203                                         userrec* old_comp = fd_ref_table[currfd];
204                                         // we're gonna re-scan to check if the nick is gone, after every
205                                         // command - if it has, we're gonna bail
206                                         ServerInstance->Parser->ProcessBuffer(sanitized,current);
207                                         // look for the user's record in case it's changed... if theyve quit,
208                                         // we cant do anything more with their buffer, so bail.
209                                         // there used to be an ugly, slow loop here. Now we have a reference
210                                         // table, life is much easier (and FASTER)
211                                         userrec* new_comp = fd_ref_table[currfd];
212                                         if ((currfd < 0) || (!fd_ref_table[currfd]) || (old_comp != new_comp))
213                                         {
214                                                 return;
215                                         }
216                                         else
217                                         {
218                                                 /* The user is still here, flush their buffer */
219                                                 current->FlushWriteBuf();
220                                         }
221                                 }
222                         }
223                         return;
224                 }
225                 if ((result == -1) && (errno != EAGAIN) && (errno != EINTR))
226                 {
227                         log(DEBUG,"killing: %s",cu->nick);
228                         kill_link(cu,strerror(errno));
229                         return;
230                 }
231         }
232         // result EAGAIN means nothing read
233         else if (result == EAGAIN)
234         {
235         }
236         else if (result == 0)
237         {
238                 log(DEBUG,"InspIRCd: Exited: %s",cu->nick);
239                 kill_link(cu,"Client exited");
240                 log(DEBUG,"Bailing from client exit");
241                 return;
242         }
243 }
244
245
246 /**
247  * This function is called once a second from the mainloop.
248  * It is intended to do background checking on all the user structs, e.g.
249  * stuff like ping checks, registration timeouts, etc.
250  * The function returns false when it is finished, and true if
251  * it needs to be run again (e.g. it has processed one of a batch of
252  * QUIT messages, but couldnt continue iterating because the iterator
253  * became invalid). This function is also responsible for checking
254  * if InspSocket derived classes are timed out.
255  */
256 bool DoBackgroundUserStuff(time_t TIME)
257 {
258         unsigned int numsockets = module_sockets.size();
259         SocketEngine* SE = ServerInstance->SE;
260         for (std::vector<InspSocket*>::iterator a = module_sockets.begin(); a < module_sockets.end(); a++)
261         {
262                 InspSocket* s = (InspSocket*)*a;
263                 if (s->Timeout(TIME))
264                 {
265                         log(DEBUG,"Socket poll returned false, close and bail");
266                         SE->DelFd(s->GetFd());
267                         s->Close();
268                         module_sockets.erase(a);
269                         delete s;
270                         break;
271                 }
272                 if (module_sockets.size() != numsockets) break;
273         }
274         /* TODO: We need a seperate hash containing only local users for this
275          */
276         for (std::vector<userrec*>::iterator count2 = local_users.begin(); count2 != local_users.end(); count2++)
277         {
278                 /* Sanity checks for corrupted iterators (yes, really) */
279                 userrec* curr = NULL;
280                 if (*count2)
281                         curr = (userrec*)(*count2);
282                 if ((long)curr == -1)
283                         return false;
284
285                 if ((curr) && (curr->fd != 0)) /* XXX - why are we checking fd != 0? --w00t */
286                 {
287                         int currfd = curr->fd;
288                         // we don't check the state of remote users.
289                         if (IS_LOCAL(curr))
290                         {
291                                 curr->FlushWriteBuf();
292                                 if (curr->GetWriteError() != "")
293                                 {
294                                         log(DEBUG,"InspIRCd: write error: %s",curr->GetWriteError().c_str());
295                                         kill_link(curr,curr->GetWriteError().c_str());
296                                         return true;
297                                 }
298                                 // registration timeout -- didnt send USER/NICK/HOST in the time specified in
299                                 // their connection class.
300                                 if (((unsigned)TIME > (unsigned)curr->timeout) && (curr->registered != 7))
301                                 {
302                                         log(DEBUG,"InspIRCd: registration timeout: %s",curr->nick);
303                                         kill_link(curr,"Registration timeout");
304                                         return true;
305                                 }
306                                 if ((TIME > curr->signon) && (curr->registered == 3) && (AllModulesReportReady(curr)))
307                                 {
308                                         log(DEBUG,"signon exceed, registered=3, and modules ready, OK: %d %d",TIME,curr->signon);
309                                         curr->dns_done = true;
310                                         ServerInstance->stats->statsDnsBad++;
311                                         FullConnectUser(curr);
312                                         if (fd_ref_table[currfd] != curr) // something changed, bail pronto
313                                                 return true;
314                                  }
315                                  if ((curr->dns_done) && (curr->registered == 3) && (AllModulesReportReady(curr)))
316                                  {
317                                        log(DEBUG,"dns done, registered=3, and modules ready, OK");
318                                        FullConnectUser(curr);
319                                        if (fd_ref_table[currfd] != curr) // something changed, bail pronto
320                                                 return true;
321                                  }
322                                  if ((TIME > curr->nping) && (isnick(curr->nick)) && (curr->registered == 7))
323                                  {
324                                        if ((!curr->lastping) && (curr->registered == 7))
325                                        {
326                                                log(DEBUG,"InspIRCd: ping timeout: %s",curr->nick);
327                                                kill_link(curr,"Ping timeout");
328                                                return true;
329                                        }
330                                        Write(curr->fd,"PING :%s",Config->ServerName);
331                                        log(DEBUG,"InspIRCd: pinging: %s",curr->nick);
332                                        curr->lastping = 0;
333                                        curr->nping = TIME+curr->pingmax;       // was hard coded to 120
334                                 }
335                         }
336                 }
337         }
338         return false;
339 }
340
341 void OpenLog(char** argv, int argc)
342 {
343         std::string logpath = GetFullProgDir(argv,argc) + "/ircd.log";
344         Config->log_file = fopen(logpath.c_str(),"a+");
345         if (!Config->log_file)
346         {
347                 printf("ERROR: Could not write to logfile %s, bailing!\n\n",logpath.c_str());
348                 Exit(ERROR);
349         }
350 #ifdef IS_CYGWIN
351         printf("Logging to ircd.log...\n");
352 #else
353         printf("Logging to %s...\n",logpath.c_str());
354 #endif
355 }
356
357
358 void CheckRoot()
359 {
360         if (geteuid() == 0)
361         {
362                 printf("WARNING!!! You are running an irc server as ROOT!!! DO NOT DO THIS!!!\n\n");
363                 log(DEFAULT,"InspIRCd: startup: not starting with UID 0!");
364                 Exit(ERROR);
365         }
366 }
367
368
369 void CheckDie()
370 {
371         if (*Config->DieValue)
372         {
373                 printf("WARNING: %s\n\n",Config->DieValue);
374                 log(DEFAULT,"Ut-Oh, somebody didn't read their config file: '%s'",Config->DieValue);
375                 exit(0);
376         }
377 }
378
379 void LoadAllModules(InspIRCd* ServerInstance)
380 {
381         /* We must load the modules AFTER initializing the socket engine, now */
382         MODCOUNT = -1;
383         char configToken[MAXBUF];
384         for (int count = 0; count < Config->ConfValueEnum("module",&Config->config_f); count++)
385         {
386                 Config->ConfValue("module","name",count,configToken,&Config->config_f);
387                 printf("Loading module... \033[1;32m%s\033[0m\n",configToken);
388                 if (!ServerInstance->LoadModule(configToken))
389                 {
390                         log(DEFAULT,"Exiting due to a module loader error.");
391                         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());
392                         Exit(0);
393                 }
394         }
395         log(DEFAULT,"Total loaded modules: %lu",(unsigned long)MODCOUNT+1);
396 }
397
398