]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/helperfuncs.cpp
Really clever VOODOO.
[user/henk/code/inspircd.git] / src / helperfuncs.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 <stdarg.h>
15 #include "configreader.h"
16 #include "users.h"
17 #include "modules.h"
18 #include "wildcard.h"
19 #include "mode.h"
20 #include "xline.h"
21 #include "inspircd.h"
22
23 static char TIMESTR[26];
24 static time_t LAST = 0;
25
26 /** Log()
27  *  Write a line of text `text' to the logfile (and stdout, if in nofork) if the level `level'
28  *  is greater than the configured loglevel.
29  */
30 void InspIRCd::Log(int level, const char* text, ...)
31 {
32         /* Do this check again here so that we save pointless vsnprintf calls */
33         if ((level < Config->LogLevel) && !Config->forcedebug)
34                 return;
35
36         va_list argsPtr;
37         char textbuffer[65536];
38
39         va_start(argsPtr, text);
40         vsnprintf(textbuffer, 65536, text, argsPtr);
41         va_end(argsPtr);
42
43         this->Log(level, std::string(textbuffer));
44 }
45
46 void InspIRCd::Log(int level, const std::string &text)
47 {
48         if (!this->Config)
49                 return;
50
51         /* If we were given -debug we output all messages, regardless of configured loglevel */
52         if ((level < Config->LogLevel) && !Config->forcedebug)
53                 return;
54
55         if (Time() != LAST)
56         {
57                 time_t local = Time();
58                 struct tm *timeinfo = localtime(&local);
59
60                 strlcpy(TIMESTR,asctime(timeinfo),26);
61                 TIMESTR[24] = ':';
62                 LAST = Time();
63         }
64
65         if (Config->log_file && Config->writelog)
66         {
67                 std::string out = std::string(TIMESTR) + " " + text.c_str() + "\n";
68                 this->Logger->WriteLogLine(out);
69         }
70
71         if (Config->nofork)
72         {
73                 printf("%s %s\n", TIMESTR, text.c_str());
74         }
75 }
76
77 std::string InspIRCd::GetServerDescription(const char* servername)
78 {
79         std::string description = "";
80
81         FOREACH_MOD_I(this,I_OnGetServerDescription,OnGetServerDescription(servername,description));
82
83         if (description != "")
84         {
85                 return description;
86         }
87         else
88         {
89                 // not a remote server that can be found, it must be me.
90                 return Config->ServerDesc;
91         }
92 }
93
94 /* XXX - We don't use WriteMode for this because WriteMode is very slow and
95  * this isnt. Basically WriteMode has to iterate ALL the users 'n' times for
96  * the number of modes provided, e.g. if you send WriteMode 'og' to write to
97  * opers with globops, and you have 2000 users, thats 4000 iterations. WriteOpers
98  * uses the oper list, which means if you have 2000 users but only 5 opers,
99  * it iterates 5 times.
100  */
101 void InspIRCd::WriteOpers(const char* text, ...)
102 {
103         char textbuffer[MAXBUF];
104         va_list argsPtr;
105
106         va_start(argsPtr, text);
107         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
108         va_end(argsPtr);
109
110         this->WriteOpers(std::string(textbuffer));
111 }
112
113 void InspIRCd::WriteOpers(const std::string &text)
114 {
115         for (std::vector<userrec*>::iterator i = this->all_opers.begin(); i != this->all_opers.end(); i++)
116         {
117                 userrec* a = *i;
118                 if (IS_LOCAL(a) && a->modes[UM_SERVERNOTICE])
119                 {
120                         // send server notices to all with +s
121                         a->WriteServ("NOTICE %s :%s",a->nick,text.c_str());
122                 }
123         }
124 }
125
126 void InspIRCd::ServerNoticeAll(char* text, ...)
127 {
128         if (!text)
129                 return;
130
131         char textbuffer[MAXBUF];
132         char formatbuffer[MAXBUF];
133         va_list argsPtr;
134         va_start (argsPtr, text);
135         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
136         va_end(argsPtr);
137
138         snprintf(formatbuffer,MAXBUF,"NOTICE $%s :%s",Config->ServerName,textbuffer);
139
140         for (std::vector<userrec*>::const_iterator i = local_users.begin(); i != local_users.end(); i++)
141         {
142                 userrec* t = *i;
143                 t->WriteServ(std::string(formatbuffer));
144         }
145 }
146
147 void InspIRCd::ServerPrivmsgAll(char* text, ...)
148 {
149         if (!text)
150                 return;
151
152         char textbuffer[MAXBUF];
153         char formatbuffer[MAXBUF];
154         va_list argsPtr;
155         va_start (argsPtr, text);
156         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
157         va_end(argsPtr);
158
159         snprintf(formatbuffer,MAXBUF,"PRIVMSG $%s :%s",Config->ServerName,textbuffer);
160
161         for (std::vector<userrec*>::const_iterator i = local_users.begin(); i != local_users.end(); i++)
162         {
163                 userrec* t = *i;
164                 t->WriteServ(std::string(formatbuffer));
165         }
166 }
167
168 void InspIRCd::WriteMode(const char* modes, int flags, const char* text, ...)
169 {
170         char textbuffer[MAXBUF];
171         int modelen;
172         va_list argsPtr;
173
174         if (!text || !modes || !flags)
175         {
176                 this->Log(DEFAULT,"*** BUG *** WriteMode was given an invalid parameter");
177                 return;
178         }
179
180         va_start(argsPtr, text);
181         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
182         va_end(argsPtr);
183         modelen = strlen(modes);
184
185         if (flags == WM_AND)
186         {
187                 for (std::vector<userrec*>::const_iterator i = local_users.begin(); i != local_users.end(); i++)
188                 {
189                         userrec* t = *i;
190                         bool send_to_user = true;
191
192                         for (int n = 0; n < modelen; n++)
193                         {
194                                 if (!t->modes[modes[n]-65])
195                                 {
196                                         send_to_user = false;
197                                         break;
198                                 }
199                         }
200                         if (send_to_user)
201                                 t->WriteServ("NOTICE %s :%s",t->nick,textbuffer);
202                 }
203         }
204         else
205         if (flags == WM_OR)
206         {
207                 for (std::vector<userrec*>::const_iterator i = local_users.begin(); i != local_users.end(); i++)
208                 {
209                         userrec* t = *i;
210                         bool send_to_user = false;
211
212                         for (int n = 0; n < modelen; n++)
213                         {
214                                 if (t->modes[modes[n]-65])
215                                 {
216                                         send_to_user = true;
217                                         break;
218                                 }
219                         }
220                         if (send_to_user)
221                                 t->WriteServ("NOTICE %s :%s",t->nick,textbuffer);
222                 }
223         }
224 }
225
226 /* Find a user record by nickname and return a pointer to it */
227
228 userrec* InspIRCd::FindNick(const std::string &nick)
229 {
230         user_hash::iterator iter = clientlist.find(nick);
231
232         if (iter == clientlist.end())
233                 /* Couldn't find it */
234                 return NULL;
235
236         return iter->second;
237 }
238
239 userrec* InspIRCd::FindNick(const char* nick)
240 {
241         user_hash::iterator iter;
242
243         if (!nick)
244                 return NULL;
245
246         iter = clientlist.find(nick);
247         
248         if (iter == clientlist.end())
249                 return NULL;
250
251         return iter->second;
252 }
253
254 /* find a channel record by channel name and return a pointer to it */
255
256 chanrec* InspIRCd::FindChan(const char* chan)
257 {
258         chan_hash::iterator iter;
259
260         if (!chan)
261                 return NULL;
262
263         iter = chanlist.find(chan);
264
265         if (iter == chanlist.end())
266                 /* Couldn't find it */
267                 return NULL;
268
269         return iter->second;
270 }
271
272 chanrec* InspIRCd::FindChan(const std::string &chan)
273 {
274         chan_hash::iterator iter = chanlist.find(chan);
275
276         if (iter == chanlist.end())
277                 /* Couldn't find it */
278                 return NULL;
279
280         return iter->second;
281 }
282
283
284 /*
285  * sends out an error notice to all connected clients (not to be used
286  * lightly!)
287  */
288 void InspIRCd::SendError(const char *s)
289 {
290         for (std::vector<userrec*>::const_iterator i = this->local_users.begin(); i != this->local_users.end(); i++)
291         {
292                 userrec* t = (userrec*)(*i);
293                 if (t->registered == REG_ALL)
294                 {
295                         t->WriteServ("NOTICE %s :%s",t->nick,s);
296                 }
297                 else
298                 {
299                         // fix - unregistered connections receive ERROR, not NOTICE
300                         t->Write("ERROR :%s",s);
301                 }
302         }
303 }
304
305 // this function counts all users connected, wether they are registered or NOT.
306 int InspIRCd::UserCount()
307 {
308         return clientlist.size();
309 }
310
311 // this counts only registered users, so that the percentages in /MAP don't mess up when users are sitting in an unregistered state
312 int InspIRCd::RegisteredUserCount()
313 {
314         int c = 0;
315         return this->UnregisteredUserCount() - clientlist.size();
316 }
317
318 int InspIRCd::InvisibleUserCount()
319 {
320         int c = 0;
321
322         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
323         {
324                 c += ((i->second->registered == REG_ALL) && (i->second->modes[UM_INVISIBLE]));
325         }
326
327         return c;
328 }
329
330 int InspIRCd::OperCount()
331 {
332         int c = 0;
333
334         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
335         {
336                 if (*(i->second->oper))
337                         c++;
338         }
339         return c;
340 }
341
342 int InspIRCd::UnregisteredUserCount()
343 {
344         int c = 0;
345
346         for (std::vector<userrec*>::const_iterator i = local_users.begin(); i != local_users.end(); i++)
347         {
348                 userrec* t = (userrec*)(*i);
349                 if (t->registered != REG_ALL)
350                         c++;
351         }
352
353         return c;
354 }
355
356 long InspIRCd::ChannelCount()
357 {
358         return chanlist.size();
359 }
360
361 long InspIRCd::LocalUserCount()
362 {
363         int c = 0;
364
365         for (std::vector<userrec*>::const_iterator i = local_users.begin(); i != local_users.end(); i++)
366         {
367                 userrec* t = (userrec*)(*i);
368                 if (t->registered == REG_ALL)
369                         c++;
370         }
371
372         return c;
373 }
374
375 bool InspIRCd::IsChannel(const char *chname)
376 {
377         char *c;
378
379         /* check for no name - don't check for !*chname, as if it is empty, it won't be '#'! */
380         if (!chname || *chname != '#')
381         {
382                 return false;
383         }
384
385         c = (char *)chname + 1;
386         while (*c)
387         {
388                 switch (*c)
389                 {
390                         case ' ':
391                         case ',':
392                         case 7:
393                                 return false;
394                 }
395
396                 c++;
397         }
398                 
399         /* too long a name - note funky pointer arithmetic here. */
400         if ((c - chname) > CHANMAX)
401         {
402                         return false;
403         }
404
405         return true;
406 }
407
408 bool InspIRCd::IsNick(const char* n)
409 {
410         if (!n || !*n)
411                 return false;
412  
413         int p = 0;
414         for (char* i = (char*)n; *i; i++, p++)
415         {
416                 if ((*i >= 'A') && (*i <= '}'))
417                 {
418                         /* "A"-"}" can occur anywhere in a nickname */
419                         continue;
420                 }
421
422                 if ((((*i >= '0') && (*i <= '9')) || (*i == '-')) && (i > n))
423                 {
424                         /* "0"-"9", "-" can occur anywhere BUT the first char of a nickname */
425                         continue;
426                 }
427
428                 /* invalid character! abort */
429                 return false;
430         }
431
432         /* too long? or not -- pointer arithmetic rocks */
433         return (p < NICKMAX - 1);
434 }
435
436 void InspIRCd::OpenLog(char** argv, int argc)
437 {
438         if (!*this->LogFileName)
439         {
440                 if (Config->logpath == "")
441                 {
442                         Config->logpath = ServerConfig::GetFullProgDir(argv,argc) + "/ircd.log";
443                 }
444
445                 Config->log_file = fopen(Config->logpath.c_str(),"a+");
446         }
447         else
448         {
449                 Config->log_file = fopen(this->LogFileName,"a+");
450         }
451
452         if (!Config->log_file)
453         {
454                 printf("ERROR: Could not write to logfile %s: %s\n\n", Config->logpath.c_str(), strerror(errno));
455                 Exit(ERROR);
456         }
457
458         this->Logger = new FileLogger(this, Config->log_file);
459 }
460
461 void InspIRCd::CheckRoot()
462 {
463         if (geteuid() == 0)
464         {
465                 printf("WARNING!!! You are running an irc server as ROOT!!! DO NOT DO THIS!!!\n\n");
466                 this->Log(DEFAULT,"Cant start as root");
467                 Exit(ERROR);
468         }
469 }
470
471 void InspIRCd::CheckDie()
472 {
473         if (*Config->DieValue)
474         {
475                 printf("WARNING: %s\n\n",Config->DieValue);
476                 this->Log(DEFAULT,"Died because of <die> tag: %s",Config->DieValue);
477                 Exit(ERROR);
478         }
479 }
480
481 /* We must load the modules AFTER initializing the socket engine, now */
482 void InspIRCd::LoadAllModules()
483 {
484         char configToken[MAXBUF];
485         Config->module_names.clear();
486         this->ModCount = -1;
487
488         for (int count = 0; count < Config->ConfValueEnum(Config->config_data, "module"); count++)
489         {
490                 Config->ConfValue(Config->config_data, "module","name",count,configToken,MAXBUF);
491                 printf("[\033[1;32m*\033[0m] Loading module:\t\033[1;32m%s\033[0m\n",configToken);
492                 
493                 if (!this->LoadModule(configToken))             
494                 {
495                         this->Log(DEFAULT,"There was an error loading a module: %s", this->ModuleError());
496                         printf("\nThere was an error loading a module: %s\n\n",this->ModuleError());
497                         Exit(ERROR);
498                 }
499         }
500         printf("\nA total of \033[1;32m%d\033[0m module%s been loaded.\n", this->ModCount+1, this->ModCount+1 == 1 ? " has" : "s have");
501         this->Log(DEFAULT,"Total loaded modules: %d", this->ModCount+1);
502 }
503
504 void InspIRCd::SendWhoisLine(userrec* user, userrec* dest, int numeric, const std::string &text)
505 {
506         std::string copy_text = text;
507
508         int MOD_RESULT = 0;
509         FOREACH_RESULT_I(this, I_OnWhoisLine, OnWhoisLine(user, dest, numeric, copy_text));
510
511         if (!MOD_RESULT)
512                 user->WriteServ("%d %s", numeric, copy_text.c_str());
513 }
514
515 void InspIRCd::SendWhoisLine(userrec* user, userrec* dest, int numeric, const char* format, ...)
516 {
517         char textbuffer[MAXBUF];
518         va_list argsPtr;
519         va_start (argsPtr, format);
520         vsnprintf(textbuffer, MAXBUF, format, argsPtr);
521         va_end(argsPtr);
522
523         this->SendWhoisLine(user, dest, numeric, std::string(textbuffer));
524 }
525