]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/inspircd.cpp
Optimized userlist() (a lot faster with many users online)
[user/henk/code/inspircd.git] / src / inspircd.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  Inspire is copyright (C) 2002-2004 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.h"
22 #include "inspircd_io.h"
23 #include "inspircd_util.h"
24 #include "inspircd_config.h"
25 #include <unistd.h>
26 #include <fcntl.h>
27 #include <sys/errno.h>
28 #include <sys/ioctl.h>
29 #include <sys/utsname.h>
30 #include <cstdio>
31 #include <time.h>
32 #include <string>
33 #ifdef GCC3
34 #include <ext/hash_map>
35 #else
36 #include <hash_map>
37 #endif
38 #include <map>
39 #include <sstream>
40 #include <vector>
41 #include <errno.h>
42 #include <deque>
43 #include <errno.h>
44 #include <unistd.h>
45 #include <sched.h>
46 #include "connection.h"
47 #include "users.h"
48 #include "servers.h"
49 #include "ctables.h"
50 #include "globals.h"
51 #include "modules.h"
52 #include "dynamic.h"
53 #include "wildcard.h"
54 #include "message.h"
55 #include "mode.h"
56 #include "commands.h"
57 #include "xline.h"
58 #include "inspstring.h"
59 #include "dnsqueue.h"
60
61 #ifdef GCC3
62 #define nspace __gnu_cxx
63 #else
64 #define nspace std
65 #endif
66
67 int LogLevel = DEFAULT;
68 char ServerName[MAXBUF];
69 char Network[MAXBUF];
70 char ServerDesc[MAXBUF];
71 char AdminName[MAXBUF];
72 char AdminEmail[MAXBUF];
73 char AdminNick[MAXBUF];
74 char diepass[MAXBUF];
75 char restartpass[MAXBUF];
76 char motd[MAXBUF];
77 char rules[MAXBUF];
78 char list[MAXBUF];
79 char PrefixQuit[MAXBUF];
80 char DieValue[MAXBUF];
81 char DNSServer[MAXBUF];
82 int debugging =  0;
83 int WHOWAS_STALE = 48; // default WHOWAS Entries last 2 days before they go 'stale'
84 int WHOWAS_MAX = 100;  // default 100 people maximum in the WHOWAS list
85 int DieDelay  =  5;
86 time_t startup_time = time(NULL);
87 int NetBufferSize = 10240; // NetBufferSize used as the buffer size for all read() ops
88 extern int MaxWhoResults;
89 time_t nb_start = 0;
90 int dns_timeout = 5;
91
92 char DisabledCommands[MAXBUF];
93
94 bool AllowHalfop = true;
95 bool AllowProtect = true;
96 bool AllowFounder = true;
97
98 extern std::vector<Module*> modules;
99 std::vector<std::string> module_names;
100 extern std::vector<ircd_module*> factory;
101
102 extern int MODCOUNT;
103 int openSockfd[MAXSOCKS];
104 bool nofork = false;
105 bool unlimitcore = false;
106
107 time_t TIME = time(NULL);
108
109 namespace nspace
110 {
111 #ifdef GCC34
112         template<> struct hash<in_addr>
113 #else
114         template<> struct nspace::hash<in_addr>
115 #endif
116         {
117                 size_t operator()(const struct in_addr &a) const
118                 {
119                         size_t q;
120                         memcpy(&q,&a,sizeof(size_t));
121                         return q;
122                 }
123         };
124 #ifdef GCC34
125         template<> struct hash<string>
126 #else
127         template<> struct nspace::hash<string>
128 #endif
129         {
130                 size_t operator()(const string &s) const
131                 {
132                         char a[MAXBUF];
133                         static struct hash<const char *> strhash;
134                         strlcpy(a,s.c_str(),MAXBUF);
135                         strlower(a);
136                         return strhash(a);
137                 }
138         };
139 }
140
141
142 struct StrHashComp
143 {
144
145         bool operator()(const string& s1, const string& s2) const
146         {
147                 char a[MAXBUF],b[MAXBUF];
148                 strlcpy(a,s1.c_str(),MAXBUF);
149                 strlcpy(b,s2.c_str(),MAXBUF);
150                 strlower(a);
151                 strlower(b);
152                 return (strcasecmp(a,b) == 0);
153         }
154
155 };
156
157 struct InAddr_HashComp
158 {
159
160         bool operator()(const in_addr &s1, const in_addr &s2) const
161         {
162                 size_t q;
163                 size_t p;
164                 
165                 memcpy(&q,&s1,sizeof(size_t));
166                 memcpy(&p,&s2,sizeof(size_t));
167                 
168                 return (q == p);
169         }
170
171 };
172
173
174 typedef nspace::hash_map<std::string, userrec*, nspace::hash<string>, StrHashComp> user_hash;
175 typedef nspace::hash_map<std::string, chanrec*, nspace::hash<string>, StrHashComp> chan_hash;
176 typedef nspace::hash_map<in_addr,string*, nspace::hash<in_addr>, InAddr_HashComp> address_cache;
177 typedef std::deque<command_t> command_table;
178
179 // This table references users by file descriptor.
180 // its an array to make it VERY fast, as all lookups are referenced
181 // by an integer, meaning there is no need for a scan/search operation.
182 userrec* fd_ref_table[65536];
183
184 int statsAccept = 0, statsRefused = 0, statsUnknown = 0, statsCollisions = 0, statsDns = 0, statsDnsGood = 0, statsDnsBad = 0, statsConnects = 0, statsSent= 0, statsRecv = 0;
185
186 serverrec* me[32];
187
188 FILE *log_file;
189
190 user_hash clientlist;
191 chan_hash chanlist;
192 user_hash whowas;
193 command_table cmdlist;
194 file_cache MOTD;
195 file_cache RULES;
196 address_cache IP;
197
198 ClassVector Classes;
199
200 struct linger linger = { 0 };
201 char MyExecutable[1024];
202 int boundPortCount = 0;
203 int portCount = 0, SERVERportCount = 0, ports[MAXSOCKS];
204 int defaultRoute = 0;
205 char ModPath[MAXBUF];
206
207 /* prototypes */
208
209 int has_channel(userrec *u, chanrec *c);
210 int usercount(chanrec *c);
211 int usercount_i(chanrec *c);
212 char* Passwd(userrec *user);
213 bool IsDenied(userrec *user);
214 void AddWhoWas(userrec* u);
215
216 std::vector<long> auth_cookies;
217 std::stringstream config_f(stringstream::in | stringstream::out);
218
219 std::vector<userrec*> all_opers;
220
221 static char already_sent[65536];
222
223 char lowermap[255];
224
225 void AddOper(userrec* user)
226 {
227         log(DEBUG,"Oper added to optimization list");
228         all_opers.push_back(user);
229 }
230
231 void DeleteOper(userrec* user)
232 {
233         for (std::vector<userrec*>::iterator a = all_opers.begin(); a < all_opers.end(); a++)
234         {
235                 if (*a == user)
236                 {
237                         log(DEBUG,"Oper removed from optimization list");
238                         all_opers.erase(a);
239                         return;
240                 }
241         }
242 }
243
244 long GetRevision()
245 {
246         char Revision[] = "$Revision$";
247         char *s1 = Revision;
248         char *savept;
249         char *v2 = strtok_r(s1," ",&savept);
250         s1 = savept;
251         v2 = strtok_r(s1," ",&savept);
252         s1 = savept;
253         return (long)(atof(v2)*10000);
254 }
255
256
257 std::string getservername()
258 {
259         return ServerName;
260 }
261
262 std::string getserverdesc()
263 {
264         return ServerDesc;
265 }
266
267 std::string getnetworkname()
268 {
269         return Network;
270 }
271
272 std::string getadminname()
273 {
274         return AdminName;
275 }
276
277 std::string getadminemail()
278 {
279         return AdminEmail;
280 }
281
282 std::string getadminnick()
283 {
284         return AdminNick;
285 }
286
287 void log(int level,char *text, ...)
288 {
289         char textbuffer[MAXBUF];
290         va_list argsPtr;
291         time_t rawtime;
292         struct tm * timeinfo;
293         if (level < LogLevel)
294                 return;
295
296         time(&rawtime);
297         timeinfo = localtime (&rawtime);
298
299         if (log_file)
300         {
301                 char b[MAXBUF];
302                 va_start (argsPtr, text);
303                 vsnprintf(textbuffer, MAXBUF, text, argsPtr);
304                 va_end(argsPtr);
305                 strlcpy(b,asctime(timeinfo),MAXBUF);
306                 b[24] = ':';    // we know this is the end of the time string
307                 fprintf(log_file,"%s %s\n",b,textbuffer);
308                 if (nofork)
309                 {
310                         // nofork enabled? display it on terminal too
311                         printf("%s %s\n",b,textbuffer);
312                 }
313         }
314 }
315
316 void readfile(file_cache &F, const char* fname)
317 {
318         FILE* file;
319         char linebuf[MAXBUF];
320         
321         log(DEBUG,"readfile: loading %s",fname);
322         F.clear();
323         file =  fopen(fname,"r");
324         if (file)
325         {
326                 while (!feof(file))
327                 {
328                         fgets(linebuf,sizeof(linebuf),file);
329                         linebuf[strlen(linebuf)-1]='\0';
330                         if (linebuf[0] == 0)
331                         {
332                                 strcpy(linebuf,"  ");
333                         }
334                         if (!feof(file))
335                         {
336                                 F.push_back(linebuf);
337                         }
338                 }
339                 fclose(file);
340         }
341         else
342         {
343                 log(DEBUG,"readfile: failed to load file: %s",fname);
344         }
345         log(DEBUG,"readfile: loaded %s, %lu lines",fname,(unsigned long)F.size());
346 }
347
348 void ReadConfig(bool bail, userrec* user)
349 {
350         char dbg[MAXBUF],pauseval[MAXBUF],Value[MAXBUF],timeout[MAXBUF],NB[MAXBUF],flood[MAXBUF],MW[MAXBUF];
351         char AH[MAXBUF],AP[MAXBUF],AF[MAXBUF],DNT[MAXBUF],pfreq[MAXBUF],thold[MAXBUF];
352         ConnectClass c;
353         std::stringstream errstr;
354         
355         if (!LoadConf(CONFIG_FILE,&config_f,&errstr))
356         {
357                 errstr.seekg(0);
358                 if (bail)
359                 {
360                         printf("There were errors in your configuration:\n%s",errstr.str().c_str());
361                         Exit(0);
362                 }
363                 else
364                 {
365                         char dataline[1024];
366                         if (user)
367                         {
368                                 WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick);
369                                 while (!errstr.eof())
370                                 {
371                                         errstr.getline(dataline,1024);
372                                         WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline);
373                                 }
374                         }
375                         else
376                         {
377                                 WriteOpers("There were errors in the configuration file:",user->nick);
378                                 while (!errstr.eof())
379                                 {
380                                         errstr.getline(dataline,1024);
381                                         WriteOpers(dataline);
382                                 }
383                         }
384                         return;
385                 }
386         }
387           
388         ConfValue("server","name",0,ServerName,&config_f);
389         ConfValue("server","description",0,ServerDesc,&config_f);
390         ConfValue("server","network",0,Network,&config_f);
391         ConfValue("admin","name",0,AdminName,&config_f);
392         ConfValue("admin","email",0,AdminEmail,&config_f);
393         ConfValue("admin","nick",0,AdminNick,&config_f);
394         ConfValue("files","motd",0,motd,&config_f);
395         ConfValue("files","rules",0,rules,&config_f);
396         ConfValue("power","diepass",0,diepass,&config_f);
397         ConfValue("power","pause",0,pauseval,&config_f);
398         ConfValue("power","restartpass",0,restartpass,&config_f);
399         ConfValue("options","prefixquit",0,PrefixQuit,&config_f);
400         ConfValue("die","value",0,DieValue,&config_f);
401         ConfValue("options","loglevel",0,dbg,&config_f);
402         ConfValue("options","netbuffersize",0,NB,&config_f);
403         ConfValue("options","maxwho",0,MW,&config_f);
404         ConfValue("options","allowhalfop",0,AH,&config_f);
405         ConfValue("options","allowprotect",0,AP,&config_f);
406         ConfValue("options","allowfounder",0,AF,&config_f);
407         ConfValue("dns","server",0,DNSServer,&config_f);
408         ConfValue("dns","timeout",0,DNT,&config_f);
409         ConfValue("options","moduledir",0,ModPath,&config_f);
410         ConfValue("disabled","commands",0,DisabledCommands,&config_f);
411
412         NetBufferSize = atoi(NB);
413         MaxWhoResults = atoi(MW);
414         dns_timeout = atoi(DNT);
415         if (!dns_timeout)
416                 dns_timeout = 5;
417         if (!DNSServer[0])
418                 strlcpy(DNSServer,"127.0.0.1",MAXBUF);
419         if (!ModPath[0])
420                 strlcpy(ModPath,MOD_PATH,MAXBUF);
421         AllowHalfop = ((!strcasecmp(AH,"true")) || (!strcasecmp(AH,"1")) || (!strcasecmp(AH,"yes")));
422         AllowProtect = ((!strcasecmp(AP,"true")) || (!strcasecmp(AP,"1")) || (!strcasecmp(AP,"yes")));
423         AllowFounder = ((!strcasecmp(AF,"true")) || (!strcasecmp(AF,"1")) || (!strcasecmp(AF,"yes")));
424         if ((!NetBufferSize) || (NetBufferSize > 65535) || (NetBufferSize < 1024))
425         {
426                 log(DEFAULT,"No NetBufferSize specified or size out of range, setting to default of 10240.");
427                 NetBufferSize = 10240;
428         }
429         if ((!MaxWhoResults) || (MaxWhoResults > 65535) || (MaxWhoResults < 1))
430         {
431                 log(DEFAULT,"No MaxWhoResults specified or size out of range, setting to default of 128.");
432                 MaxWhoResults = 128;
433         }
434         if (!strcmp(dbg,"debug"))
435                 LogLevel = DEBUG;
436         if (!strcmp(dbg,"verbose"))
437                 LogLevel = VERBOSE;
438         if (!strcmp(dbg,"default"))
439                 LogLevel = DEFAULT;
440         if (!strcmp(dbg,"sparse"))
441                 LogLevel = SPARSE;
442         if (!strcmp(dbg,"none"))
443                 LogLevel = NONE;
444         readfile(MOTD,motd);
445         log(DEFAULT,"Reading message of the day...");
446         readfile(RULES,rules);
447         log(DEFAULT,"Reading connect classes...");
448         Classes.clear();
449         for (int i = 0; i < ConfValueEnum("connect",&config_f); i++)
450         {
451                 strcpy(Value,"");
452                 ConfValue("connect","allow",i,Value,&config_f);
453                 ConfValue("connect","timeout",i,timeout,&config_f);
454                 ConfValue("connect","flood",i,flood,&config_f);
455                 ConfValue("connect","pingfreq",i,pfreq,&config_f);
456                 ConfValue("connect","threshold",i,thold,&config_f);
457                 if (Value[0])
458                 {
459                         strlcpy(c.host,Value,MAXBUF);
460                         c.type = CC_ALLOW;
461                         strlcpy(Value,"",MAXBUF);
462                         ConfValue("connect","password",i,Value,&config_f);
463                         strlcpy(c.pass,Value,MAXBUF);
464                         c.registration_timeout = 90; // default is 2 minutes
465                         c.pingtime = 120;
466                         c.flood = atoi(flood);
467                         c.threshold = 5;
468                         if (atoi(thold)>0)
469                         {
470                                 c.threshold = atoi(thold);
471                         }
472                         if (atoi(timeout)>0)
473                         {
474                                 c.registration_timeout = atoi(timeout);
475                         }
476                         if (atoi(pfreq)>0)
477                         {
478                                 c.pingtime = atoi(pfreq);
479                         }
480                         Classes.push_back(c);
481                         log(DEBUG,"Read connect class type ALLOW, host=%s password=%s timeout=%lu flood=%lu",c.host,c.pass,(unsigned long)c.registration_timeout,(unsigned long)c.flood);
482                 }
483                 else
484                 {
485                         ConfValue("connect","deny",i,Value,&config_f);
486                         strlcpy(c.host,Value,MAXBUF);
487                         c.type = CC_DENY;
488                         Classes.push_back(c);
489                         log(DEBUG,"Read connect class type DENY, host=%s",c.host);
490                 }
491         
492         }
493         log(DEFAULT,"Reading K lines,Q lines and Z lines from config...");
494         read_xline_defaults();
495         log(DEFAULT,"Applying K lines, Q lines and Z lines...");
496         apply_lines();
497         log(DEFAULT,"Done reading configuration file, InspIRCd is now starting.");
498         if (!bail)
499         {
500                 log(DEFAULT,"Adding and removing modules due to rehash...");
501
502                 std::vector<std::string> old_module_names, new_module_names, added_modules, removed_modules;
503
504                 // store the old module names
505                 for (std::vector<std::string>::iterator t = module_names.begin(); t != module_names.end(); t++)
506                 {
507                         old_module_names.push_back(*t);
508                 }
509
510                 // get the new module names
511                 for (int count2 = 0; count2 < ConfValueEnum("module",&config_f); count2++)
512                 {
513                         ConfValue("module","name",count2,Value,&config_f);
514                         new_module_names.push_back(Value);
515                 }
516
517                 // now create a list of new modules that are due to be loaded
518                 // and a seperate list of modules which are due to be unloaded
519                 for (std::vector<std::string>::iterator _new = new_module_names.begin(); _new != new_module_names.end(); _new++)
520                 {
521                         bool added = true;
522                         for (std::vector<std::string>::iterator old = old_module_names.begin(); old != old_module_names.end(); old++)
523                         {
524                                 if (*old == *_new)
525                                         added = false;
526                         }
527                         if (added)
528                                 added_modules.push_back(*_new);
529                 }
530                 for (std::vector<std::string>::iterator oldm = old_module_names.begin(); oldm != old_module_names.end(); oldm++)
531                 {
532                         bool removed = true;
533                         for (std::vector<std::string>::iterator newm = new_module_names.begin(); newm != new_module_names.end(); newm++)
534                         {
535                                 if (*newm == *oldm)
536                                         removed = false;
537                         }
538                         if (removed)
539                                 removed_modules.push_back(*oldm);
540                 }
541                 // now we have added_modules, a vector of modules to be loaded, and removed_modules, a vector of modules
542                 // to be removed.
543                 int rem = 0, add = 0;
544                 if (!removed_modules.empty())
545                 for (std::vector<std::string>::iterator removing = removed_modules.begin(); removing != removed_modules.end(); removing++)
546                 {
547                         if (UnloadModule(removing->c_str()))
548                         {
549                                 WriteOpers("*** REHASH UNLOADED MODULE: %s",removing->c_str());
550                                 WriteServ(user->fd,"973 %s %s :Module %s successfully unloaded.",user->nick, removing->c_str(), removing->c_str());
551                                 rem++;
552                         }
553                         else
554                         {
555                                 WriteServ(user->fd,"972 %s %s :Failed to unload module %s: %s",user->nick, removing->c_str(), removing->c_str(), ModuleError());
556                         }
557                 }
558                 if (!added_modules.empty())
559                 for (std::vector<std::string>::iterator adding = added_modules.begin(); adding != added_modules.end(); adding++)
560                 {
561                         if (LoadModule(adding->c_str()))
562                         {
563                                 WriteOpers("*** REHASH LOADED MODULE: %s",adding->c_str());
564                                 WriteServ(user->fd,"975 %s %s :Module %s successfully loaded.",user->nick, adding->c_str(), adding->c_str());
565                                 add++;
566                         }
567                         else
568                         {
569                                 WriteServ(user->fd,"974 %s %s :Failed to load module %s: %s",user->nick, adding->c_str(), adding->c_str(), ModuleError());
570                         }
571                 }
572                 log(DEFAULT,"Successfully unloaded %lu of %lu modules and loaded %lu of %lu modules.",(unsigned long)rem,(unsigned long)removed_modules.size(),(unsigned long)add,(unsigned long)added_modules.size());
573         }
574 }
575
576 /* write formatted text to a socket, in same format as printf */
577
578 void Write(int sock,char *text, ...)
579 {
580         if (sock == FD_MAGIC_NUMBER)
581                 return;
582         if (!text)
583         {
584                 log(DEFAULT,"*** BUG *** Write was given an invalid parameter");
585                 return;
586         }
587         char textbuffer[MAXBUF];
588         va_list argsPtr;
589         char tb[MAXBUF];
590         
591         va_start (argsPtr, text);
592         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
593         va_end(argsPtr);
594         int bytes = snprintf(tb,MAXBUF,"%s\r\n",textbuffer);
595         chop(tb);
596         if ((sock != -1) && (sock != FD_MAGIC_NUMBER))
597         {
598                 int MOD_RESULT = 0;
599                 FOREACH_RESULT(OnRawSocketWrite(sock,tb,bytes > 512 ? 512 : bytes));
600                 if (!MOD_RESULT)
601                         write(sock,tb,bytes > 512 ? 512 : bytes);
602                 if (fd_ref_table[sock])
603                 {
604                         fd_ref_table[sock]->bytes_out += (bytes > 512 ? 512 : bytes);
605                         fd_ref_table[sock]->cmds_out++;
606                 }
607                 statsSent += (bytes > 512 ? 512 : bytes);
608         }
609 }
610
611 /* write a server formatted numeric response to a single socket */
612
613 void WriteServ(int sock, char* text, ...)
614 {
615         if (sock == FD_MAGIC_NUMBER)
616                 return;
617         if (!text)
618         {
619                 log(DEFAULT,"*** BUG *** WriteServ was given an invalid parameter");
620                 return;
621         }
622         char textbuffer[MAXBUF],tb[MAXBUF];
623         va_list argsPtr;
624         va_start (argsPtr, text);
625         
626         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
627         va_end(argsPtr);
628         int bytes = snprintf(tb,MAXBUF,":%s %s\r\n",ServerName,textbuffer);
629         chop(tb);
630         if ((sock != -1) && (sock != FD_MAGIC_NUMBER))
631         {
632                 int MOD_RESULT = 0;
633                 FOREACH_RESULT(OnRawSocketWrite(sock,tb,bytes > 512 ? 512 : bytes));
634                 if (!MOD_RESULT)
635                         write(sock,tb,bytes > 512 ? 512 : bytes);
636                 if (fd_ref_table[sock])
637                 {
638                         fd_ref_table[sock]->bytes_out += (bytes > 512 ? 512 : bytes);
639                         fd_ref_table[sock]->cmds_out++;
640                 }
641                 statsSent += (bytes > 512 ? 512 : bytes);
642         }
643 }
644
645 /* write text from an originating user to originating user */
646
647 void WriteFrom(int sock, userrec *user,char* text, ...)
648 {
649         if (sock == FD_MAGIC_NUMBER)
650                 return;
651         if ((!text) || (!user))
652         {
653                 log(DEFAULT,"*** BUG *** WriteFrom was given an invalid parameter");
654                 return;
655         }
656         char textbuffer[MAXBUF],tb[MAXBUF];
657         va_list argsPtr;
658         va_start (argsPtr, text);
659         
660         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
661         va_end(argsPtr);
662         int bytes = snprintf(tb,MAXBUF,":%s!%s@%s %s\r\n",user->nick,user->ident,user->dhost,textbuffer);
663         chop(tb);
664         if ((sock != -1) && (sock != FD_MAGIC_NUMBER))
665         {
666                 int MOD_RESULT = 0;
667                 FOREACH_RESULT(OnRawSocketWrite(sock,tb,bytes > 512 ? 512 : bytes));
668                 if (!MOD_RESULT)
669                         write(sock,tb,bytes > 512 ? 512 : bytes);
670                 if (fd_ref_table[sock])
671                 {
672                         fd_ref_table[sock]->bytes_out += (bytes > 512 ? 512 : bytes);
673                         fd_ref_table[sock]->cmds_out++;
674                 }
675                 statsSent += (bytes > 512 ? 512 : bytes);
676         }
677 }
678
679 /* write text to an destination user from a source user (e.g. user privmsg) */
680
681 void WriteTo(userrec *source, userrec *dest,char *data, ...)
682 {
683         if ((!dest) || (!data))
684         {
685                 log(DEFAULT,"*** BUG *** WriteTo was given an invalid parameter");
686                 return;
687         }
688         if (dest->fd == FD_MAGIC_NUMBER)
689                 return;
690         char textbuffer[MAXBUF],tb[MAXBUF];
691         va_list argsPtr;
692         va_start (argsPtr, data);
693         vsnprintf(textbuffer, MAXBUF, data, argsPtr);
694         va_end(argsPtr);
695         chop(tb);
696
697         // if no source given send it from the server.
698         if (!source)
699         {
700                 WriteServ(dest->fd,":%s %s",ServerName,textbuffer);
701         }
702         else
703         {
704                 WriteFrom(dest->fd,source,"%s",textbuffer);
705         }
706 }
707
708 /* write formatted text from a source user to all users on a channel
709  * including the sender (NOT for privmsg, notice etc!) */
710
711 void WriteChannel(chanrec* Ptr, userrec* user, char* text, ...)
712 {
713         if ((!Ptr) || (!user) || (!text))
714         {
715                 log(DEFAULT,"*** BUG *** WriteChannel was given an invalid parameter");
716                 return;
717         }
718         char textbuffer[MAXBUF];
719         va_list argsPtr;
720         va_start (argsPtr, text);
721         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
722         va_end(argsPtr);
723
724         std::vector<char*> *ulist = Ptr->GetUsers();
725         for (int j = 0; j < ulist->size(); j++)
726         {
727                 char* o = (*ulist)[j];
728                 userrec* otheruser = (userrec*)o;
729                 if (otheruser->fd != FD_MAGIC_NUMBER)
730                         WriteTo(user,otheruser,"%s",textbuffer);
731         }
732 }
733
734 /* write formatted text from a source user to all users on a channel
735  * including the sender (NOT for privmsg, notice etc!) doesnt send to
736  * users on remote servers */
737
738 void WriteChannelLocal(chanrec* Ptr, userrec* user, char* text, ...)
739 {
740         if ((!Ptr) || (!text))
741         {
742                 log(DEFAULT,"*** BUG *** WriteChannel was given an invalid parameter");
743                 return;
744         }
745         char textbuffer[MAXBUF];
746         va_list argsPtr;
747         va_start (argsPtr, text);
748         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
749         va_end(argsPtr);
750
751         std::vector<char*> *ulist = Ptr->GetUsers();
752         for (int j = 0; j < ulist->size(); j++)
753         {
754                 char* o = (*ulist)[j];
755                 userrec* otheruser = (userrec*)o;
756                 if ((otheruser->fd != FD_MAGIC_NUMBER) && (otheruser->fd != -1) && (otheruser != user))
757                 {
758                         if (!user)
759                         {
760                                 WriteServ(otheruser->fd,"%s",textbuffer);
761                         }
762                         else
763                         {
764                                 WriteTo(user,otheruser,"%s",textbuffer);
765                         }
766                 }
767         }
768 }
769
770
771 void WriteChannelWithServ(char* ServName, chanrec* Ptr, char* text, ...)
772 {
773         if ((!Ptr) || (!text))
774         {
775                 log(DEFAULT,"*** BUG *** WriteChannelWithServ was given an invalid parameter");
776                 return;
777         }
778         char textbuffer[MAXBUF];
779         va_list argsPtr;
780         va_start (argsPtr, text);
781         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
782         va_end(argsPtr);
783
784
785         std::vector<char*> *ulist = Ptr->GetUsers();
786         for (int j = 0; j < ulist->size(); j++)
787         {
788                 char* o = (*ulist)[j];
789                 userrec* otheruser = (userrec*)o;
790                 if (otheruser->fd != FD_MAGIC_NUMBER)
791                         WriteServ(otheruser->fd,"%s",textbuffer);
792         }
793 }
794
795
796 /* write formatted text from a source user to all users on a channel except
797  * for the sender (for privmsg etc) */
798
799 void ChanExceptSender(chanrec* Ptr, userrec* user, char* text, ...)
800 {
801         if ((!Ptr) || (!user) || (!text))
802         {
803                 log(DEFAULT,"*** BUG *** ChanExceptSender was given an invalid parameter");
804                 return;
805         }
806         char textbuffer[MAXBUF];
807         va_list argsPtr;
808         va_start (argsPtr, text);
809         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
810         va_end(argsPtr);
811
812         std::vector<char*> *ulist = Ptr->GetUsers();
813         for (int j = 0; j < ulist->size(); j++)
814         {
815                 char* o = (*ulist)[j];
816                 userrec* otheruser = (userrec*)o;
817                 if ((otheruser->fd != FD_MAGIC_NUMBER) && (user != otheruser))
818                         WriteFrom(otheruser->fd,user,"%s",textbuffer);
819         }
820 }
821
822
823 std::string GetServerDescription(char* servername)
824 {
825         for (int j = 0; j < 32; j++)
826         {
827                 if (me[j] != NULL)
828                 {
829                         for (int k = 0; k < me[j]->connectors.size(); k++)
830                         {
831                                 if (!strcasecmp(me[j]->connectors[k].GetServerName().c_str(),servername))
832                                 {
833                                         return me[j]->connectors[k].GetDescription();
834                                 }
835                         }
836                 }
837                 return ServerDesc; // not a remote server that can be found, it must be me.
838         }
839 }
840
841
842 /* write a formatted string to all users who share at least one common
843  * channel, including the source user e.g. for use in NICK */
844
845 void WriteCommon(userrec *u, char* text, ...)
846 {
847         if (!u)
848         {
849                 log(DEFAULT,"*** BUG *** WriteCommon was given an invalid parameter");
850                 return;
851         }
852
853         if (u->registered != 7) {
854                 log(DEFAULT,"*** BUG *** WriteCommon on an unregistered user");
855                 return;
856         }
857         
858         char textbuffer[MAXBUF];
859         va_list argsPtr;
860         va_start (argsPtr, text);
861         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
862         va_end(argsPtr);
863
864         // FIX: Stops a message going to the same person more than once
865         bzero(&already_sent,65536);
866
867         bool sent_to_at_least_one = false;
868
869         for (int i = 0; i < MAXCHANS; i++)
870         {
871                 if (u->chans[i].channel)
872                 {
873                         std::vector<char*> *ulist = u->chans[i].channel->GetUsers();
874                         for (int j = 0; j < ulist->size(); j++)
875                         {
876                                 char* o = (*ulist)[j];
877                                 userrec* otheruser = (userrec*)o;
878                                 if ((otheruser->fd > 0) && (!already_sent[otheruser->fd]))
879                                 {
880                                         already_sent[otheruser->fd] = 1;
881                                         WriteFrom(otheruser->fd,u,"%s",textbuffer);
882                                         sent_to_at_least_one = true;
883                                 }
884                         }
885                 }
886         }
887         // if the user was not in any channels, no users will receive the text. Make sure the user
888         // receives their OWN message for WriteCommon
889         if (!sent_to_at_least_one)
890         {
891                 WriteFrom(u->fd,u,"%s",textbuffer);
892         }
893 }
894
895 /* write a formatted string to all users who share at least one common
896  * channel, NOT including the source user e.g. for use in QUIT */
897
898 void WriteCommonExcept(userrec *u, char* text, ...)
899 {
900         if (!u)
901         {
902                 log(DEFAULT,"*** BUG *** WriteCommon was given an invalid parameter");
903                 return;
904         }
905
906         if (u->registered != 7) {
907                 log(DEFAULT,"*** BUG *** WriteCommon on an unregistered user");
908                 return;
909         }
910
911         char textbuffer[MAXBUF];
912         va_list argsPtr;
913         va_start (argsPtr, text);
914         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
915         va_end(argsPtr);
916
917         bzero(&already_sent,65536);
918
919         for (int i = 0; i < MAXCHANS; i++)
920         {
921                 if (u->chans[i].channel)
922                 {
923                         std::vector<char*> *ulist = u->chans[i].channel->GetUsers();
924                         for (int j = 0; j < ulist->size(); j++)
925                         {
926                                 char* o = (*ulist)[j];
927                                 userrec* otheruser = (userrec*)o;
928                                 if (u != otheruser)
929                                 {
930                                         if ((otheruser->fd > 0) && (!already_sent[otheruser->fd]))
931                                         {
932                                                 already_sent[otheruser->fd] = 1;
933                                                 WriteFrom(otheruser->fd,u,"%s",textbuffer);
934                                         }
935                                 }
936                         }
937                 }
938         }
939 }
940
941 void WriteOpers(char* text, ...)
942 {
943         if (!text)
944         {
945                 log(DEFAULT,"*** BUG *** WriteOpers was given an invalid parameter");
946                 return;
947         }
948
949         char textbuffer[MAXBUF];
950         va_list argsPtr;
951         va_start (argsPtr, text);
952         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
953         va_end(argsPtr);
954
955         for (std::vector<userrec*>::iterator i = all_opers.begin(); i != all_opers.end(); i++)
956         {
957                 userrec* a = *i;
958                 if ((a) && (a->fd != FD_MAGIC_NUMBER))
959                 {
960                         if (strchr(a->modes,'s'))
961                         {
962                                 // send server notices to all with +s
963                                 WriteServ(a->fd,"NOTICE %s :%s",a->nick,textbuffer);
964                         }
965                 }
966         }
967 }
968
969 void NoticeAllOpers(userrec *source, bool local_only, char* text, ...)
970 {
971         if ((!text) || (!source))
972         {
973                 log(DEFAULT,"*** BUG *** NoticeAllOpers was given an invalid parameter");
974                 return;
975         }
976
977         char textbuffer[MAXBUF];
978         va_list argsPtr;
979         va_start (argsPtr, text);
980         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
981         va_end(argsPtr);
982
983         for (std::vector<userrec*>::iterator i = all_opers.begin(); i != all_opers.end(); i++)
984         {
985                 userrec* a = *i;
986                 if ((a) && (a->fd != FD_MAGIC_NUMBER))
987                 {
988                         if (strchr(a->modes,'s'))
989                         {
990                                 // send server notices to all with +s
991                                 WriteServ(a->fd,"NOTICE %s :*** Notice From %s: %s",a->nick,source->nick,textbuffer);
992                         }
993                 }
994         }
995
996         if (!local_only)
997         {
998                 char buffer[MAXBUF];
999                 snprintf(buffer,MAXBUF,"V %s @* :%s",source->nick,textbuffer);
1000                 NetSendToAll(buffer);
1001         }
1002 }
1003
1004 // returns TRUE of any users on channel C occupy server 'servername'.
1005
1006 bool ChanAnyOnThisServer(chanrec *c,char* servername)
1007 {
1008         log(DEBUG,"ChanAnyOnThisServer");
1009
1010         std::vector<char*> *ulist = c->GetUsers();
1011         for (int j = 0; j < ulist->size(); j++)
1012         {
1013                 char* o = (*ulist)[j];
1014                 userrec* user = (userrec*)o;
1015                 if (!strcasecmp(user->server,servername))
1016                         return true;
1017         }
1018         return false;
1019 }
1020
1021 // returns true if user 'u' shares any common channels with any users on server 'servername'
1022
1023 bool CommonOnThisServer(userrec* u,const char* servername)
1024 {
1025         log(DEBUG,"ChanAnyOnThisServer");
1026
1027         for (int i = 0; i < MAXCHANS; i++)
1028         {
1029                 if (u->chans[i].channel)
1030                 {
1031                         std::vector<char*> *ulist = u->chans[i].channel->GetUsers();
1032                         for (int j = 0; j < ulist->size(); j++)
1033                         {
1034                                 char* o = (*ulist)[j];
1035                                 userrec* user = (userrec*)o;
1036                                 if (!strcasecmp(user->server,servername))
1037                                         return true;
1038                         }
1039                 }
1040         }
1041         return false;
1042 }
1043
1044
1045 void NetSendToCommon(userrec* u, char* s)
1046 {
1047         char buffer[MAXBUF];
1048         snprintf(buffer,MAXBUF,"%s",s);
1049         
1050         log(DEBUG,"NetSendToCommon: '%s' '%s'",u->nick,s);
1051
1052         std::string msg = buffer;
1053         FOREACH_MOD OnPacketTransmit(msg,s);
1054         strlcpy(buffer,msg.c_str(),MAXBUF);
1055
1056         for (int j = 0; j < 32; j++)
1057         {
1058                 if (me[j] != NULL)
1059                 {
1060                         for (int k = 0; k < me[j]->connectors.size(); k++)
1061                         {
1062                                 if (CommonOnThisServer(u,me[j]->connectors[k].GetServerName().c_str()))
1063                                 {
1064                                         me[j]->SendPacket(buffer,me[j]->connectors[k].GetServerName().c_str());
1065                                 }
1066                         }
1067                 }
1068         }
1069 }
1070
1071
1072 void NetSendToAll(char* s)
1073 {
1074         char buffer[MAXBUF];
1075         snprintf(buffer,MAXBUF,"%s",s);
1076         
1077         log(DEBUG,"NetSendToAll: '%s'",s);
1078
1079         std::string msg = buffer;
1080         FOREACH_MOD OnPacketTransmit(msg,s);
1081         strlcpy(buffer,msg.c_str(),MAXBUF);
1082
1083         for (int j = 0; j < 32; j++)
1084         {
1085                 if (me[j] != NULL)
1086                 {
1087                         for (int k = 0; k < me[j]->connectors.size(); k++)
1088                         {
1089                                 me[j]->SendPacket(buffer,me[j]->connectors[k].GetServerName().c_str());
1090                         }
1091                 }
1092         }
1093 }
1094
1095 void NetSendToAllAlive(char* s)
1096 {
1097         char buffer[MAXBUF];
1098         snprintf(buffer,MAXBUF,"%s",s);
1099         
1100         log(DEBUG,"NetSendToAllAlive: '%s'",s);
1101
1102         std::string msg = buffer;
1103         FOREACH_MOD OnPacketTransmit(msg,s);
1104         strlcpy(buffer,msg.c_str(),MAXBUF);
1105
1106         for (int j = 0; j < 32; j++)
1107         {
1108                 if (me[j] != NULL)
1109                 {
1110                         for (int k = 0; k < me[j]->connectors.size(); k++)
1111                         {
1112                                 if (me[j]->connectors[k].GetState() != STATE_DISCONNECTED)
1113                                 {
1114                                         me[j]->SendPacket(buffer,me[j]->connectors[k].GetServerName().c_str());
1115                                 }
1116                                 else
1117                                 {
1118                                         log(DEBUG,"%s is dead, not sending to it.",me[j]->connectors[k].GetServerName().c_str());
1119                                 }
1120                         }
1121                 }
1122         }
1123 }
1124
1125
1126 void NetSendToOne(char* target,char* s)
1127 {
1128         char buffer[MAXBUF];
1129         snprintf(buffer,MAXBUF,"%s",s);
1130         
1131         log(DEBUG,"NetSendToOne: '%s' '%s'",target,s);
1132
1133         std::string msg = buffer;
1134         FOREACH_MOD OnPacketTransmit(msg,s);
1135         strlcpy(buffer,msg.c_str(),MAXBUF);
1136
1137         for (int j = 0; j < 32; j++)
1138         {
1139                 if (me[j] != NULL)
1140                 {
1141                         for (int k = 0; k < me[j]->connectors.size(); k++)
1142                         {
1143                                 if (!strcasecmp(me[j]->connectors[k].GetServerName().c_str(),target))
1144                                 {
1145                                         me[j]->SendPacket(buffer,me[j]->connectors[k].GetServerName().c_str());
1146                                 }
1147                         }
1148                 }
1149         }
1150 }
1151
1152 void NetSendToAllExcept(const char* target,char* s)
1153 {
1154         char buffer[MAXBUF];
1155         snprintf(buffer,MAXBUF,"%s",s);
1156         
1157         log(DEBUG,"NetSendToAllExcept: '%s' '%s'",target,s);
1158         
1159         std::string msg = buffer;
1160         FOREACH_MOD OnPacketTransmit(msg,s);
1161         strlcpy(buffer,msg.c_str(),MAXBUF);
1162
1163         for (int j = 0; j < 32; j++)
1164         {
1165                 if (me[j] != NULL)
1166                 {
1167                         for (int k = 0; k < me[j]->connectors.size(); k++)
1168                         {
1169                                 if (strcasecmp(me[j]->connectors[k].GetServerName().c_str(),target))
1170                                 {
1171                                         me[j]->SendPacket(buffer,me[j]->connectors[k].GetServerName().c_str());
1172                                 }
1173                         }
1174                 }
1175         }
1176 }
1177
1178
1179 void WriteMode(const char* modes, int flags, const char* text, ...)
1180 {
1181         if ((!text) || (!modes) || (!flags))
1182         {
1183                 log(DEFAULT,"*** BUG *** WriteMode was given an invalid parameter");
1184                 return;
1185         }
1186
1187         char textbuffer[MAXBUF];
1188         va_list argsPtr;
1189         va_start (argsPtr, text);
1190         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1191         va_end(argsPtr);
1192         int modelen = strlen(modes);
1193
1194         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
1195         {
1196                 if ((i->second) && (i->second->fd != FD_MAGIC_NUMBER))
1197                 {
1198                         bool send_to_user = false;
1199                         
1200                         if (flags == WM_AND)
1201                         {
1202                                 send_to_user = true;
1203                                 for (int n = 0; n < modelen; n++)
1204                                 {
1205                                         if (!hasumode(i->second,modes[n]))
1206                                         {
1207                                                 send_to_user = false;
1208                                                 break;
1209                                         }
1210                                 }
1211                         }
1212                         else if (flags == WM_OR)
1213                         {
1214                                 send_to_user = false;
1215                                 for (int n = 0; n < modelen; n++)
1216                                 {
1217                                         if (hasumode(i->second,modes[n]))
1218                                         {
1219                                                 send_to_user = true;
1220                                                 break;
1221                                         }
1222                                 }
1223                         }
1224
1225                         if (send_to_user)
1226                         {
1227                                 WriteServ(i->second->fd,"NOTICE %s :%s",i->second->nick,textbuffer);
1228                         }
1229                 }
1230         }
1231 }
1232
1233
1234 void NoticeAll(userrec *source, bool local_only, char* text, ...)
1235 {
1236         if ((!text) || (!source))
1237         {
1238                 log(DEFAULT,"*** BUG *** NoticeAll was given an invalid parameter");
1239                 return;
1240         }
1241
1242         char textbuffer[MAXBUF];
1243         va_list argsPtr;
1244         va_start (argsPtr, text);
1245         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1246         va_end(argsPtr);
1247
1248         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
1249         {
1250                 if ((i->second) && (i->second->fd != FD_MAGIC_NUMBER))
1251                 {
1252                         WriteFrom(i->second->fd,source,"NOTICE $* :%s",textbuffer);
1253                 }
1254         }
1255
1256         if (!local_only)
1257         {
1258                 char buffer[MAXBUF];
1259                 snprintf(buffer,MAXBUF,"V %s * :%s",source->nick,textbuffer);
1260                 NetSendToAll(buffer);
1261         }
1262
1263 }
1264
1265 void WriteWallOps(userrec *source, bool local_only, char* text, ...)  
1266 {  
1267         if ((!text) || (!source))
1268         {
1269                 log(DEFAULT,"*** BUG *** WriteOpers was given an invalid parameter");
1270                 return;
1271         }
1272
1273         char textbuffer[MAXBUF];  
1274         va_list argsPtr;  
1275         va_start (argsPtr, text);  
1276         vsnprintf(textbuffer, MAXBUF, text, argsPtr);  
1277         va_end(argsPtr);  
1278   
1279         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
1280         {
1281                 if ((i->second) && (i->second->fd != FD_MAGIC_NUMBER))
1282                 {
1283                         if (strchr(i->second->modes,'w'))
1284                         {
1285                                 WriteTo(source,i->second,"WALLOPS :%s",textbuffer);
1286                         }
1287                 }
1288         }
1289
1290         if (!local_only)
1291         {
1292                 char buffer[MAXBUF];
1293                 snprintf(buffer,MAXBUF,"@ %s :%s",source->nick,textbuffer);
1294                 NetSendToAll(buffer);
1295         }
1296 }  
1297
1298 /* convert a string to lowercase. Note following special circumstances
1299  * taken from RFC 1459. Many "official" server branches still hold to this
1300  * rule so i will too;
1301  *
1302  *  Because of IRC's scandanavian origin, the characters {}| are
1303  *  considered to be the lower case equivalents of the characters []\,
1304  *  respectively. This is a critical issue when determining the
1305  *  equivalence of two nicknames.
1306  */
1307
1308 void strlower(char *n)
1309 {
1310         if (n)
1311         {
1312                 for (char* t = n; *t; t++)
1313                         *t = lowermap[*t];
1314         }
1315 }
1316
1317
1318
1319 /* Find a user record by nickname and return a pointer to it */
1320
1321 userrec* Find(std::string nick)
1322 {
1323         user_hash::iterator iter = clientlist.find(nick);
1324
1325         if (iter == clientlist.end())
1326                 /* Couldn't find it */
1327                 return NULL;
1328
1329         return iter->second;
1330 }
1331
1332 /* find a channel record by channel name and return a pointer to it */
1333
1334 chanrec* FindChan(const char* chan)
1335 {
1336         if (!chan)
1337         {
1338                 log(DEFAULT,"*** BUG *** Findchan was given an invalid parameter");
1339                 return NULL;
1340         }
1341
1342         chan_hash::iterator iter = chanlist.find(chan);
1343
1344         if (iter == chanlist.end())
1345                 /* Couldn't find it */
1346                 return NULL;
1347
1348         return iter->second;
1349 }
1350
1351
1352 long GetMaxBans(char* name)
1353 {
1354         char CM[MAXBUF];
1355         for (int count = 0; count < ConfValueEnum("banlist",&config_f); count++)
1356         {
1357                 ConfValue("banlist","chan",count,CM,&config_f);
1358                 if (match(name,CM))
1359                 {
1360                         ConfValue("banlist","limit",count,CM,&config_f);
1361                         return atoi(CM);
1362                 }
1363         }
1364         return 64;
1365 }
1366
1367
1368 void purge_empty_chans(userrec* u)
1369 {
1370
1371         int go_again = 1, purge = 0;
1372
1373         // firstly decrement the count on each channel
1374         for (int f = 0; f < MAXCHANS; f++)
1375         {
1376                 if (u->chans[f].channel)
1377                 {
1378                         u->chans[f].channel->DecUserCounter();
1379                         u->chans[f].channel->DelUser((char*)u);
1380                 }
1381         }
1382
1383         for (int i = 0; i < MAXCHANS; i++)
1384         {
1385                 if (u->chans[i].channel)
1386                 {
1387                         if (!usercount(u->chans[i].channel))
1388                         {
1389                                 chan_hash::iterator i2 = chanlist.find(u->chans[i].channel->name);
1390                                 /* kill the record */
1391                                 if (i2 != chanlist.end())
1392                                 {
1393                                         log(DEBUG,"del_channel: destroyed: %s",i2->second->name);
1394                                         if (i2->second)
1395                                                 delete i2->second;
1396                                         chanlist.erase(i2);
1397                                         go_again = 1;
1398                                         purge++;
1399                                         u->chans[i].channel = NULL;
1400                                 }
1401                         }
1402                         else
1403                         {
1404                                 log(DEBUG,"skipped purge for %s",u->chans[i].channel->name);
1405                         }
1406                 }
1407         }
1408         log(DEBUG,"completed channel purge, killed %lu",(unsigned long)purge);
1409
1410         DeleteOper(u);
1411 }
1412
1413
1414 char scratch[MAXBUF];
1415 char sparam[MAXBUF];
1416
1417 char* chanmodes(chanrec *chan)
1418 {
1419         if (!chan)
1420         {
1421                 log(DEFAULT,"*** BUG *** chanmodes was given an invalid parameter");
1422                 strcpy(scratch,"");
1423                 return scratch;
1424         }
1425
1426         strcpy(scratch,"");
1427         strcpy(sparam,"");
1428         if (chan->noexternal)
1429         {
1430                 strlcat(scratch,"n",MAXMODES);
1431         }
1432         if (chan->topiclock)
1433         {
1434                 strlcat(scratch,"t",MAXMODES);
1435         }
1436         if (chan->key[0])
1437         {
1438                 strlcat(scratch,"k",MAXMODES);
1439         }
1440         if (chan->limit)
1441         {
1442                 strlcat(scratch,"l",MAXMODES);
1443         }
1444         if (chan->inviteonly)
1445         {
1446                 strlcat(scratch,"i",MAXMODES);
1447         }
1448         if (chan->moderated)
1449         {
1450                 strlcat(scratch,"m",MAXMODES);
1451         }
1452         if (chan->secret)
1453         {
1454                 strlcat(scratch,"s",MAXMODES);
1455         }
1456         if (chan->c_private)
1457         {
1458                 strlcat(scratch,"p",MAXMODES);
1459         }
1460         if (chan->key[0])
1461         {
1462                 strlcat(sparam," ",MAXBUF);
1463                 strlcat(sparam,chan->key,MAXBUF);
1464         }
1465         if (chan->limit)
1466         {
1467                 char foo[24];
1468                 sprintf(foo," %lu",(unsigned long)chan->limit);
1469                 strlcat(sparam,foo,MAXBUF);
1470         }
1471         if (*chan->custom_modes)
1472         {
1473                 strlcat(scratch,chan->custom_modes,MAXMODES);
1474                 for (int z = 0; chan->custom_modes[z] != 0; z++)
1475                 {
1476                         std::string extparam = chan->GetModeParameter(chan->custom_modes[z]);
1477                         if (extparam != "")
1478                         {
1479                                 strlcat(sparam," ",MAXBUF);
1480                                 strlcat(sparam,extparam.c_str(),MAXBUF);
1481                         }
1482                 }
1483         }
1484         log(DEBUG,"chanmodes: %s %s%s",chan->name,scratch,sparam);
1485         strlcat(scratch,sparam,MAXMODES);
1486         return scratch;
1487 }
1488
1489
1490 /* compile a userlist of a channel into a string, each nick seperated by
1491  * spaces and op, voice etc status shown as @ and + */
1492
1493 void userlist(userrec *user,chanrec *c)
1494 {
1495         if ((!c) || (!user))
1496         {
1497                 log(DEFAULT,"*** BUG *** userlist was given an invalid parameter");
1498                 return;
1499         }
1500
1501         snprintf(list,MAXBUF,"353 %s = %s :", user->nick, c->name);
1502
1503         std::vector<char*> *ulist = c->GetUsers();
1504         for (int i = 0; i < ulist->size(); i++)
1505         {
1506                 char* o = (*ulist)[i];
1507                 userrec* otheruser = (userrec*)o;
1508                 if ((!has_channel(user,c)) && (strchr(otheruser->modes,'i')))
1509                 {
1510                         /* user is +i, and source not on the channel, does not show
1511                          * nick in NAMES list */
1512                         continue;
1513                 }
1514                 strlcat(list,cmode(otheruser,c),MAXBUF);
1515                 strlcat(list,otheruser->nick,MAXBUF);
1516                 strlcat(list," ",MAXBUF);
1517                 if (strlen(list)>(480-NICKMAX))
1518                 {
1519                         /* list overflowed into
1520                          * multiple numerics */
1521                         WriteServ(user->fd,"%s",list);
1522                         snprintf(list,MAXBUF,"353 %s = %s :", user->nick, c->name);
1523                 }
1524         }
1525         /* if whats left in the list isnt empty, send it */
1526         if (list[strlen(list)-1] != ':')
1527         {
1528                 WriteServ(user->fd,"%s",list);
1529         }
1530 }
1531
1532 /* return a count of the users on a specific channel accounting for
1533  * invisible users who won't increase the count. e.g. for /LIST */
1534
1535 int usercount_i(chanrec *c)
1536 {
1537         int count = 0;
1538         
1539         if (!c)
1540         {
1541                 log(DEFAULT,"*** BUG *** usercount_i was given an invalid parameter");
1542                 return 0;
1543         }
1544
1545         strcpy(list,"");
1546         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
1547         {
1548                 if (i->second)
1549                 {
1550                         if (has_channel(i->second,c))
1551                         {
1552                                 if (isnick(i->second->nick))
1553                                 {
1554                                         if ((!has_channel(i->second,c)) && (strchr(i->second->modes,'i')))
1555                                         {
1556                                                 /* user is +i, and source not on the channel, does not show
1557                                                  * nick in NAMES list */
1558                                                 continue;
1559                                         }
1560                                         count++;
1561                                 }
1562                         }
1563                 }
1564         }
1565         log(DEBUG,"usercount_i: %s %lu",c->name,(unsigned long)count);
1566         return count;
1567 }
1568
1569
1570 int usercount(chanrec *c)
1571 {
1572         if (!c)
1573         {
1574                 log(DEFAULT,"*** BUG *** usercount was given an invalid parameter");
1575                 return 0;
1576         }
1577         int count = c->GetUserCounter();
1578         log(DEBUG,"usercount: %s %lu",c->name,(unsigned long)count);
1579         return count;
1580 }
1581
1582
1583 /* add a channel to a user, creating the record for it if needed and linking
1584  * it to the user record */
1585
1586 chanrec* add_channel(userrec *user, const char* cn, const char* key, bool override)
1587 {
1588         if ((!user) || (!cn))
1589         {
1590                 log(DEFAULT,"*** BUG *** add_channel was given an invalid parameter");
1591                 return 0;
1592         }
1593
1594         chanrec* Ptr;
1595         int created = 0;
1596         char cname[MAXBUF];
1597
1598         strncpy(cname,cn,MAXBUF);
1599         
1600         // we MUST declare this wherever we use FOREACH_RESULT
1601         int MOD_RESULT = 0;
1602
1603         if (strlen(cname) > CHANMAX-1)
1604         {
1605                 cname[CHANMAX-1] = '\0';
1606         }
1607
1608         log(DEBUG,"add_channel: %s %s",user->nick,cname);
1609         
1610         if ((FindChan(cname)) && (has_channel(user,FindChan(cname))))
1611         {
1612                 return NULL; // already on the channel!
1613         }
1614
1615
1616         if (!FindChan(cname))
1617         {
1618                 MOD_RESULT = 0;
1619                 FOREACH_RESULT(OnUserPreJoin(user,NULL,cname));
1620                 if (MOD_RESULT == 1) {
1621                         return NULL;
1622                 }
1623
1624                 /* create a new one */
1625                 log(DEBUG,"add_channel: creating: %s",cname);
1626                 {
1627                         chanlist[cname] = new chanrec();
1628
1629                         strlcpy(chanlist[cname]->name, cname,CHANMAX);
1630                         chanlist[cname]->topiclock = 1;
1631                         chanlist[cname]->noexternal = 1;
1632                         chanlist[cname]->created = TIME;
1633                         strcpy(chanlist[cname]->topic, "");
1634                         strncpy(chanlist[cname]->setby, user->nick,NICKMAX);
1635                         chanlist[cname]->topicset = 0;
1636                         Ptr = chanlist[cname];
1637                         log(DEBUG,"add_channel: created: %s",cname);
1638                         /* set created to 2 to indicate user
1639                          * is the first in the channel
1640                          * and should be given ops */
1641                         created = 2;
1642                 }
1643         }
1644         else
1645         {
1646                 /* channel exists, just fish out a pointer to its struct */
1647                 Ptr = FindChan(cname);
1648                 if (Ptr)
1649                 {
1650                         log(DEBUG,"add_channel: joining to: %s",Ptr->name);
1651                         
1652                         // the override flag allows us to bypass channel modes
1653                         // and bans (used by servers)
1654                         if ((!override) || (!strcasecmp(user->server,ServerName)))
1655                         {
1656                                 log(DEBUG,"Not overriding...");
1657                                 MOD_RESULT = 0;
1658                                 FOREACH_RESULT(OnUserPreJoin(user,Ptr,cname));
1659                                 if (MOD_RESULT == 1) {
1660                                         return NULL;
1661                                 }
1662                                 log(DEBUG,"MOD_RESULT=%d",MOD_RESULT);
1663                                 
1664                                 if (!MOD_RESULT) 
1665                                 {
1666                                         log(DEBUG,"add_channel: checking key, invite, etc");
1667                                         MOD_RESULT = 0;
1668                                         FOREACH_RESULT(OnCheckKey(user, Ptr, key ? key : ""));
1669                                         if (MOD_RESULT == 0)
1670                                         {
1671                                                 if (Ptr->key[0])
1672                                                 {
1673                                                         log(DEBUG,"add_channel: %s has key %s",Ptr->name,Ptr->key);
1674                                                         if (!key)
1675                                                         {
1676                                                                 log(DEBUG,"add_channel: no key given in JOIN");
1677                                                                 WriteServ(user->fd,"475 %s %s :Cannot join channel (Requires key)",user->nick, Ptr->name);
1678                                                                 return NULL;
1679                                                         }
1680                                                         else
1681                                                         {
1682                                                                 if (strcasecmp(key,Ptr->key))
1683                                                                 {
1684                                                                         log(DEBUG,"add_channel: bad key given in JOIN");
1685                                                                         WriteServ(user->fd,"475 %s %s :Cannot join channel (Incorrect key)",user->nick, Ptr->name);
1686                                                                         return NULL;
1687                                                                 }
1688                                                         }
1689                                                 }
1690                                                 log(DEBUG,"add_channel: no key");
1691                                         }
1692                                         MOD_RESULT = 0;
1693                                         FOREACH_RESULT(OnCheckInvite(user, Ptr));
1694                                         if (MOD_RESULT == 0)
1695                                         {
1696                                                 if (Ptr->inviteonly)
1697                                                 {
1698                                                         log(DEBUG,"add_channel: channel is +i");
1699                                                         if (user->IsInvited(Ptr->name))
1700                                                         {
1701                                                                 /* user was invited to channel */
1702                                                                 /* there may be an optional channel NOTICE here */
1703                                                         }
1704                                                         else
1705                                                         {
1706                                                                 WriteServ(user->fd,"473 %s %s :Cannot join channel (Invite only)",user->nick, Ptr->name);
1707                                                                 return NULL;
1708                                                         }
1709                                                 }
1710                                                 log(DEBUG,"add_channel: channel is not +i");
1711                                         }
1712                                         MOD_RESULT = 0;
1713                                         FOREACH_RESULT(OnCheckLimit(user, Ptr));
1714                                         if (MOD_RESULT == 0)
1715                                         {
1716                                                 if (Ptr->limit)
1717                                                 {
1718                                                         if (usercount(Ptr) >= Ptr->limit)
1719                                                         {
1720                                                                 WriteServ(user->fd,"471 %s %s :Cannot join channel (Channel is full)",user->nick, Ptr->name);
1721                                                                 return NULL;
1722                                                         }
1723                                                 }
1724                                         }
1725                                         log(DEBUG,"add_channel: about to walk banlist");
1726                                         MOD_RESULT = 0;
1727                                         FOREACH_RESULT(OnCheckBan(user, Ptr));
1728                                         if (MOD_RESULT == 0)
1729                                         {
1730                                                 /* check user against the channel banlist */
1731                                                 if (Ptr)
1732                                                 {
1733                                                         if (Ptr->bans.size())
1734                                                         {
1735                                                                 for (BanList::iterator i = Ptr->bans.begin(); i != Ptr->bans.end(); i++)
1736                                                                 {
1737                                                                         if (match(user->GetFullHost(),i->data))
1738                                                                         {
1739                                                                                 WriteServ(user->fd,"474 %s %s :Cannot join channel (You're banned)",user->nick, Ptr->name);
1740                                                                                 return NULL;
1741                                                                         }
1742                                                                 }
1743                                                         }
1744                                                 }
1745                                                 log(DEBUG,"add_channel: bans checked");
1746                                         }
1747                                 
1748                                 }
1749                                 
1750
1751                                 if ((Ptr) && (user))
1752                                 {
1753                                         user->RemoveInvite(Ptr->name);
1754                                 }
1755         
1756                                 log(DEBUG,"add_channel: invites removed");
1757
1758                         }
1759                         else
1760                         {
1761                                 log(DEBUG,"Overridden checks");
1762                         }
1763
1764                         
1765                 }
1766                 created = 1;
1767         }
1768
1769         log(DEBUG,"Passed channel checks");
1770         
1771         for (int index =0; index != MAXCHANS; index++)
1772         {
1773                 log(DEBUG,"Check location %d",index);
1774                 if (user->chans[index].channel == NULL)
1775                 {
1776                         log(DEBUG,"Adding into their channel list at location %d",index);
1777
1778                         if (created == 2) 
1779                         {
1780                                 /* first user in is given ops */
1781                                 user->chans[index].uc_modes = UCMODE_OP;
1782                         }
1783                         else
1784                         {
1785                                 user->chans[index].uc_modes = 0;
1786                         }
1787                         user->chans[index].channel = Ptr;
1788                         Ptr->IncUserCounter();
1789                         Ptr->AddUser((char*)user);
1790                         WriteChannel(Ptr,user,"JOIN :%s",Ptr->name);
1791                         
1792                         if (!override) // we're not overriding... so this isnt part of a netburst, broadcast it.
1793                         {
1794                                 // use the stamdard J token with no privilages.
1795                                 char buffer[MAXBUF];
1796                                 if (created == 2)
1797                                 {
1798                                         snprintf(buffer,MAXBUF,"J %s @%s",user->nick,Ptr->name);
1799                                 }
1800                                 else
1801                                 {
1802                                         snprintf(buffer,MAXBUF,"J %s %s",user->nick,Ptr->name);
1803                                 }
1804                                 NetSendToAll(buffer);
1805                         }
1806
1807                         log(DEBUG,"Sent JOIN to client");
1808
1809                         if (Ptr->topicset)
1810                         {
1811                                 WriteServ(user->fd,"332 %s %s :%s", user->nick, Ptr->name, Ptr->topic);
1812                                 WriteServ(user->fd,"333 %s %s %s %lu", user->nick, Ptr->name, Ptr->setby, (unsigned long)Ptr->topicset);
1813                         }
1814                         userlist(user,Ptr);
1815                         WriteServ(user->fd,"366 %s %s :End of /NAMES list.", user->nick, Ptr->name);
1816                         //WriteServ(user->fd,"324 %s %s +%s",user->nick, Ptr->name,chanmodes(Ptr));
1817                         //WriteServ(user->fd,"329 %s %s %lu", user->nick, Ptr->name, (unsigned long)Ptr->created);
1818                         FOREACH_MOD OnUserJoin(user,Ptr);
1819                         return Ptr;
1820                 }
1821         }
1822         log(DEBUG,"add_channel: user channel max exceeded: %s %s",user->nick,cname);
1823         WriteServ(user->fd,"405 %s %s :You are on too many channels",user->nick, cname);
1824         return NULL;
1825 }
1826
1827 /* remove a channel from a users record, and remove the record from memory
1828  * if the channel has become empty */
1829
1830 chanrec* del_channel(userrec *user, const char* cname, const char* reason, bool local)
1831 {
1832         if ((!user) || (!cname))
1833         {
1834                 log(DEFAULT,"*** BUG *** del_channel was given an invalid parameter");
1835                 return NULL;
1836         }
1837
1838         chanrec* Ptr;
1839
1840         if ((!cname) || (!user))
1841         {
1842                 return NULL;
1843         }
1844
1845         Ptr = FindChan(cname);
1846         
1847         if (!Ptr)
1848         {
1849                 return NULL;
1850         }
1851
1852         FOREACH_MOD OnUserPart(user,Ptr);
1853         log(DEBUG,"del_channel: removing: %s %s",user->nick,Ptr->name);
1854         
1855         for (int i =0; i != MAXCHANS; i++)
1856         {
1857                 /* zap it from the channel list of the user */
1858                 if (user->chans[i].channel == Ptr)
1859                 {
1860                         if (reason)
1861                         {
1862                                 WriteChannel(Ptr,user,"PART %s :%s",Ptr->name, reason);
1863
1864                                 if (!local)
1865                                 {
1866                                         char buffer[MAXBUF];
1867                                         snprintf(buffer,MAXBUF,"L %s %s :%s",user->nick,Ptr->name,reason);
1868                                         NetSendToAll(buffer);
1869                                 }
1870
1871                                 
1872                         }
1873                         else
1874                         {
1875                                 if (!local)
1876                                 {
1877                                         char buffer[MAXBUF];
1878                                         snprintf(buffer,MAXBUF,"L %s %s :",user->nick,Ptr->name);
1879                                         NetSendToAll(buffer);
1880                                 }
1881                         
1882                                 WriteChannel(Ptr,user,"PART :%s",Ptr->name);
1883                         }
1884                         user->chans[i].uc_modes = 0;
1885                         user->chans[i].channel = NULL;
1886                         log(DEBUG,"del_channel: unlinked: %s %s",user->nick,Ptr->name);
1887                         break;
1888                 }
1889         }
1890
1891         Ptr->DecUserCounter();
1892         Ptr->DelUser((char*)user);
1893         
1894         /* if there are no users left on the channel */
1895         if (!usercount(Ptr))
1896         {
1897                 chan_hash::iterator iter = chanlist.find(Ptr->name);
1898
1899                 log(DEBUG,"del_channel: destroying channel: %s",Ptr->name);
1900
1901                 /* kill the record */
1902                 if (iter != chanlist.end())
1903                 {
1904                         log(DEBUG,"del_channel: destroyed: %s",Ptr->name);
1905                         delete Ptr;
1906                         chanlist.erase(iter);
1907                 }
1908         }
1909 }
1910
1911
1912 void kick_channel(userrec *src,userrec *user, chanrec *Ptr, char* reason)
1913 {
1914         if ((!src) || (!user) || (!Ptr) || (!reason))
1915         {
1916                 log(DEFAULT,"*** BUG *** kick_channel was given an invalid parameter");
1917                 return;
1918         }
1919
1920         if ((!Ptr) || (!user) || (!src))
1921         {
1922                 return;
1923         }
1924
1925         log(DEBUG,"kick_channel: removing: %s %s %s",user->nick,Ptr->name,src->nick);
1926
1927         if (!has_channel(user,Ptr))
1928         {
1929                 WriteServ(src->fd,"441 %s %s %s :They are not on that channel",src->nick, user->nick, Ptr->name);
1930                 return;
1931         }
1932
1933         int MOD_RESULT = 0;
1934         FOREACH_RESULT(OnAccessCheck(src,user,Ptr,AC_KICK));
1935         if (MOD_RESULT == ACR_DENY)
1936                 return;
1937
1938         if (MOD_RESULT == ACR_DEFAULT)
1939         {
1940                 if (((cstatus(src,Ptr) < STATUS_HOP) || (cstatus(src,Ptr) < cstatus(user,Ptr))) && (!is_uline(src->server)))
1941                 {
1942                         if (cstatus(src,Ptr) == STATUS_HOP)
1943                         {
1944                                 WriteServ(src->fd,"482 %s %s :You must be a channel operator",src->nick, Ptr->name);
1945                         }
1946                         else
1947                         {
1948                                 WriteServ(src->fd,"482 %s %s :You must be at least a half-operator to change modes on this channel",src->nick, Ptr->name);
1949                         }
1950                         
1951                         return;
1952                 }
1953         }
1954
1955         MOD_RESULT = 0;
1956         FOREACH_RESULT(OnUserPreKick(src,user,Ptr,reason));
1957         if (MOD_RESULT)
1958                 return;
1959
1960         FOREACH_MOD OnUserKick(src,user,Ptr,reason);
1961
1962         for (int i =0; i != MAXCHANS; i++)
1963         {
1964                 /* zap it from the channel list of the user */
1965                 if (user->chans[i].channel)
1966                 if (!strcasecmp(user->chans[i].channel->name,Ptr->name))
1967                 {
1968                         WriteChannel(Ptr,src,"KICK %s %s :%s",Ptr->name, user->nick, reason);
1969                         user->chans[i].uc_modes = 0;
1970                         user->chans[i].channel = NULL;
1971                         log(DEBUG,"del_channel: unlinked: %s %s",user->nick,Ptr->name);
1972                         break;
1973                 }
1974         }
1975
1976         Ptr->DecUserCounter();
1977         Ptr->DelUser((char*)user);
1978
1979         /* if there are no users left on the channel */
1980         if (!usercount(Ptr))
1981         {
1982                 chan_hash::iterator iter = chanlist.find(Ptr->name);
1983
1984                 log(DEBUG,"del_channel: destroying channel: %s",Ptr->name);
1985
1986                 /* kill the record */
1987                 if (iter != chanlist.end())
1988                 {
1989                         log(DEBUG,"del_channel: destroyed: %s",Ptr->name);
1990                         delete Ptr;
1991                         chanlist.erase(iter);
1992                 }
1993         }
1994 }
1995
1996
1997
1998
1999 /* This function pokes and hacks at a parameter list like the following:
2000  *
2001  * PART #winbot,#darkgalaxy :m00!
2002  *
2003  * to turn it into a series of individual calls like this:
2004  *
2005  * PART #winbot :m00!
2006  * PART #darkgalaxy :m00!
2007  *
2008  * The seperate calls are sent to a callback function provided by the caller
2009  * (the caller will usually call itself recursively). The callback function
2010  * must be a command handler. Calling this function on a line with no list causes
2011  * no action to be taken. You must provide a starting and ending parameter number
2012  * where the range of the list can be found, useful if you have a terminating
2013  * parameter as above which is actually not part of the list, or parameters
2014  * before the actual list as well. This code is used by many functions which
2015  * can function as "one to list" (see the RFC) */
2016
2017 int loop_call(handlerfunc fn, char **parameters, int pcnt, userrec *u, int start, int end, int joins)
2018 {
2019         char plist[MAXBUF];
2020         char *param;
2021         char *pars[32];
2022         char blog[32][MAXBUF];
2023         char blog2[32][MAXBUF];
2024         int j = 0, q = 0, total = 0, t = 0, t2 = 0, total2 = 0;
2025         char keystr[MAXBUF];
2026         char moo[MAXBUF];
2027
2028         for (int i = 0; i <32; i++)
2029                 strcpy(blog[i],"");
2030
2031         for (int i = 0; i <32; i++)
2032                 strcpy(blog2[i],"");
2033
2034         strcpy(moo,"");
2035         for (int i = 0; i <10; i++)
2036         {
2037                 if (!parameters[i])
2038                 {
2039                         parameters[i] = moo;
2040                 }
2041         }
2042         if (joins)
2043         {
2044                 if (pcnt > 1) /* we have a key to copy */
2045                 {
2046                         strlcpy(keystr,parameters[1],MAXBUF);
2047                 }
2048         }
2049
2050         if (!parameters[start])
2051         {
2052                 return 0;
2053         }
2054         if (!strchr(parameters[start],','))
2055         {
2056                 return 0;
2057         }
2058         strcpy(plist,"");
2059         for (int i = start; i <= end; i++)
2060         {
2061                 if (parameters[i])
2062                 {
2063                         strlcat(plist,parameters[i],MAXBUF);
2064                 }
2065         }
2066         
2067         j = 0;
2068         param = plist;
2069
2070         t = strlen(plist);
2071         for (int i = 0; i < t; i++)
2072         {
2073                 if (plist[i] == ',')
2074                 {
2075                         plist[i] = '\0';
2076                         strlcpy(blog[j++],param,MAXBUF);
2077                         param = plist+i+1;
2078                         if (j>20)
2079                         {
2080                                 WriteServ(u->fd,"407 %s %s :Too many targets in list, message not delivered.",u->nick,blog[j-1]);
2081                                 return 1;
2082                         }
2083                 }
2084         }
2085         strlcpy(blog[j++],param,MAXBUF);
2086         total = j;
2087
2088         if ((joins) && (keystr) && (total>0)) // more than one channel and is joining
2089         {
2090                 strcat(keystr,",");
2091         }
2092         
2093         if ((joins) && (keystr))
2094         {
2095                 if (strchr(keystr,','))
2096                 {
2097                         j = 0;
2098                         param = keystr;
2099                         t2 = strlen(keystr);
2100                         for (int i = 0; i < t2; i++)
2101                         {
2102                                 if (keystr[i] == ',')
2103                                 {
2104                                         keystr[i] = '\0';
2105                                         strlcpy(blog2[j++],param,MAXBUF);
2106                                         param = keystr+i+1;
2107                                 }
2108                         }
2109                         strlcpy(blog2[j++],param,MAXBUF);
2110                         total2 = j;
2111                 }
2112         }
2113
2114         for (j = 0; j < total; j++)
2115         {
2116                 if (blog[j])
2117                 {
2118                         pars[0] = blog[j];
2119                 }
2120                 for (q = end; q < pcnt-1; q++)
2121                 {
2122                         if (parameters[q+1])
2123                         {
2124                                 pars[q-end+1] = parameters[q+1];
2125                         }
2126                 }
2127                 if ((joins) && (parameters[1]))
2128                 {
2129                         if (pcnt > 1)
2130                         {
2131                                 pars[1] = blog2[j];
2132                         }
2133                         else
2134                         {
2135                                 pars[1] = NULL;
2136                         }
2137                 }
2138                 /* repeatedly call the function with the hacked parameter list */
2139                 if ((joins) && (pcnt > 1))
2140                 {
2141                         if (pars[1])
2142                         {
2143                                 // pars[1] already set up and containing key from blog2[j]
2144                                 fn(pars,2,u);
2145                         }
2146                         else
2147                         {
2148                                 pars[1] = parameters[1];
2149                                 fn(pars,2,u);
2150                         }
2151                 }
2152                 else
2153                 {
2154                         fn(pars,pcnt-(end-start),u);
2155                 }
2156         }
2157
2158         return 1;
2159 }
2160
2161
2162
2163 void kill_link(userrec *user,const char* r)
2164 {
2165         user_hash::iterator iter = clientlist.find(user->nick);
2166         
2167         char reason[MAXBUF];
2168         
2169         strncpy(reason,r,MAXBUF);
2170
2171         if (strlen(reason)>MAXQUIT)
2172         {
2173                 reason[MAXQUIT-1] = '\0';
2174         }
2175
2176         log(DEBUG,"kill_link: %s '%s'",user->nick,reason);
2177         Write(user->fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,reason);
2178         log(DEBUG,"closing fd %lu",(unsigned long)user->fd);
2179
2180         if (user->registered == 7) {
2181                 FOREACH_MOD OnUserQuit(user);
2182                 WriteCommonExcept(user,"QUIT :%s",reason);
2183
2184                 // Q token must go to ALL servers!!!
2185                 char buffer[MAXBUF];
2186                 snprintf(buffer,MAXBUF,"Q %s :%s",user->nick,reason);
2187                 NetSendToAll(buffer);
2188         }
2189
2190         FOREACH_MOD OnUserDisconnect(user);
2191
2192         if (user->fd > -1)
2193         {
2194                 FOREACH_MOD OnRawSocketClose(user->fd);
2195                 shutdown(user->fd,2);
2196                 close(user->fd);
2197         }
2198         
2199         if (user->registered == 7) {
2200                 WriteOpers("*** Client exiting: %s!%s@%s [%s]",user->nick,user->ident,user->host,reason);
2201                 AddWhoWas(user);
2202         }
2203
2204         if (user->registered == 7) {
2205                 purge_empty_chans(user);
2206         }
2207
2208         if (iter != clientlist.end())
2209         {
2210                 log(DEBUG,"deleting user hash value %lu",(unsigned long)user);
2211                 if (user->fd > -1)
2212                         fd_ref_table[user->fd] = NULL;
2213                 delete user;
2214                 clientlist.erase(iter);
2215         }
2216 }
2217
2218 void kill_link_silent(userrec *user,const char* r)
2219 {
2220         user_hash::iterator iter = clientlist.find(user->nick);
2221         
2222         char reason[MAXBUF];
2223         
2224         strncpy(reason,r,MAXBUF);
2225
2226         if (strlen(reason)>MAXQUIT)
2227         {
2228                 reason[MAXQUIT-1] = '\0';
2229         }
2230
2231         log(DEBUG,"kill_link: %s '%s'",user->nick,reason);
2232         Write(user->fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,reason);
2233         log(DEBUG,"closing fd %lu",(unsigned long)user->fd);
2234
2235         if (user->registered == 7) {
2236                 FOREACH_MOD OnUserQuit(user);
2237                 WriteCommonExcept(user,"QUIT :%s",reason);
2238
2239                 // Q token must go to ALL servers!!!
2240                 char buffer[MAXBUF];
2241                 snprintf(buffer,MAXBUF,"Q %s :%s",user->nick,reason);
2242                 NetSendToAll(buffer);
2243         }
2244
2245         FOREACH_MOD OnUserDisconnect(user);
2246
2247         if (user->fd > -1)
2248         {
2249                 FOREACH_MOD OnRawSocketClose(user->fd);
2250                 shutdown(user->fd,2);
2251                 close(user->fd);
2252         }
2253
2254         if (user->registered == 7) {
2255                 purge_empty_chans(user);
2256         }
2257         
2258         if (iter != clientlist.end())
2259         {
2260                 log(DEBUG,"deleting user hash value %lu",(unsigned long)user);
2261                 if (user->fd > -1)
2262                         fd_ref_table[user->fd] = NULL;
2263                 delete user;
2264                 clientlist.erase(iter);
2265         }
2266 }
2267
2268
2269
2270 // looks up a users password for their connection class (<ALLOW>/<DENY> tags)
2271
2272 char* Passwd(userrec *user)
2273 {
2274         for (ClassVector::iterator i = Classes.begin(); i != Classes.end(); i++)
2275         {
2276                 if (match(user->host,i->host) && (i->type == CC_ALLOW))
2277                 {
2278                         return i->pass;
2279                 }
2280         }
2281         return "";
2282 }
2283
2284 bool IsDenied(userrec *user)
2285 {
2286         for (ClassVector::iterator i = Classes.begin(); i != Classes.end(); i++)
2287         {
2288                 if (match(user->host,i->host) && (i->type == CC_DENY))
2289                 {
2290                         return true;
2291                 }
2292         }
2293         return false;
2294 }
2295
2296
2297
2298
2299 /* sends out an error notice to all connected clients (not to be used
2300  * lightly!) */
2301
2302 void send_error(char *s)
2303 {
2304         log(DEBUG,"send_error: %s",s);
2305         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
2306         {
2307                 if (isnick(i->second->nick))
2308                 {
2309                         WriteServ(i->second->fd,"NOTICE %s :%s",i->second->nick,s);
2310                 }
2311                 else
2312                 {
2313                         // fix - unregistered connections receive ERROR, not NOTICE
2314                         Write(i->second->fd,"ERROR :%s",s);
2315                 }
2316         }
2317 }
2318
2319 void Error(int status)
2320 {
2321         signal (SIGALRM, SIG_IGN);
2322         signal (SIGPIPE, SIG_IGN);
2323         signal (SIGTERM, SIG_IGN);
2324         signal (SIGABRT, SIG_IGN);
2325         signal (SIGSEGV, SIG_IGN);
2326         signal (SIGURG, SIG_IGN);
2327         signal (SIGKILL, SIG_IGN);
2328         log(DEFAULT,"*** fell down a pothole in the road to perfection ***");
2329         send_error("Error! Segmentation fault! save meeeeeeeeeeeeee *splat!*");
2330         Exit(status);
2331 }
2332
2333
2334 int main(int argc, char** argv)
2335 {
2336         Start();
2337         srand(time(NULL));
2338         log(DEBUG,"*** InspIRCd starting up!");
2339         if (!FileExists(CONFIG_FILE))
2340         {
2341                 printf("ERROR: Cannot open config file: %s\nExiting...\n",CONFIG_FILE);
2342                 log(DEFAULT,"main: no config");
2343                 printf("ERROR: Your config file is missing, this IRCd will self destruct in 10 seconds!\n");
2344                 Exit(ERROR);
2345         }
2346         if (argc > 1) {
2347                 for (int i = 1; i < argc; i++)
2348                 {
2349                         if (!strcmp(argv[i],"-nofork")) {
2350                                 nofork = true;
2351                         }
2352                         if (!strcmp(argv[i],"-wait")) {
2353                                 sleep(6);
2354                         }
2355                         if (!strcmp(argv[i],"-nolimit")) {
2356                                 unlimitcore = true;
2357                         }
2358                 }
2359         }
2360         strlcpy(MyExecutable,argv[0],MAXBUF);
2361         
2362         // initialize the lowercase mapping table
2363         for (int cn = 0; cn < 256; cn++)
2364                 lowermap[cn] = cn;
2365         // lowercase the uppercase chars
2366         for (int cn = 65; cn < 91; cn++)
2367                 lowermap[cn] = tolower(cn);
2368         // now replace the specific chars for scandanavian comparison
2369         lowermap['['] = '{';
2370         lowermap[']'] = '}';
2371         lowermap['\\'] = '|';
2372
2373         if (InspIRCd(argv,argc) == ERROR)
2374         {
2375                 log(DEFAULT,"main: daemon function bailed");
2376                 printf("ERROR: could not initialise. Shutting down.\n");
2377                 Exit(ERROR);
2378         }
2379         Exit(TRUE);
2380         return 0;
2381 }
2382
2383 template<typename T> inline string ConvToStr(const T &in)
2384 {
2385         stringstream tmp;
2386         if (!(tmp << in)) return string();
2387         return tmp.str();
2388 }
2389
2390 /* re-allocates a nick in the user_hash after they change nicknames,
2391  * returns a pointer to the new user as it may have moved */
2392
2393 userrec* ReHashNick(char* Old, char* New)
2394 {
2395         //user_hash::iterator newnick;
2396         user_hash::iterator oldnick = clientlist.find(Old);
2397
2398         log(DEBUG,"ReHashNick: %s %s",Old,New);
2399         
2400         if (!strcasecmp(Old,New))
2401         {
2402                 log(DEBUG,"old nick is new nick, skipping");
2403                 return oldnick->second;
2404         }
2405         
2406         if (oldnick == clientlist.end()) return NULL; /* doesnt exist */
2407
2408         log(DEBUG,"ReHashNick: Found hashed nick %s",Old);
2409
2410         clientlist[New] = new userrec();
2411         clientlist[New] = oldnick->second;
2412         clientlist.erase(oldnick);
2413
2414         log(DEBUG,"ReHashNick: Nick rehashed as %s",New);
2415         
2416         return clientlist[New];
2417 }
2418
2419 /* adds or updates an entry in the whowas list */
2420 void AddWhoWas(userrec* u)
2421 {
2422         user_hash::iterator iter = whowas.find(u->nick);
2423         userrec *a = new userrec();
2424         strlcpy(a->nick,u->nick,NICKMAX);
2425         strlcpy(a->ident,u->ident,64);
2426         strlcpy(a->dhost,u->dhost,256);
2427         strlcpy(a->host,u->host,256);
2428         strlcpy(a->fullname,u->fullname,128);
2429         strlcpy(a->server,u->server,256);
2430         a->signon = u->signon;
2431
2432         /* MAX_WHOWAS:   max number of /WHOWAS items
2433          * WHOWAS_STALE: number of hours before a WHOWAS item is marked as stale and
2434          *               can be replaced by a newer one
2435          */
2436         
2437         if (iter == whowas.end())
2438         {
2439                 if (whowas.size() == WHOWAS_MAX)
2440                 {
2441                         for (user_hash::iterator i = whowas.begin(); i != whowas.end(); i++)
2442                         {
2443                                 // 3600 seconds in an hour ;)
2444                                 if ((i->second->signon)<(TIME-(WHOWAS_STALE*3600)))
2445                                 {
2446                                         if (i->second) delete i->second;
2447                                         i->second = a;
2448                                         log(DEBUG,"added WHOWAS entry, purged an old record");
2449                                         return;
2450                                 }
2451                         }
2452                 }
2453                 else
2454                 {
2455                         log(DEBUG,"added fresh WHOWAS entry");
2456                         whowas[a->nick] = a;
2457                 }
2458         }
2459         else
2460         {
2461                 log(DEBUG,"updated WHOWAS entry");
2462                 if (iter->second) delete iter->second;
2463                 iter->second = a;
2464         }
2465 }
2466
2467
2468 /* add a client connection to the sockets list */
2469 void AddClient(int socket, char* host, int port, bool iscached, char* ip)
2470 {
2471         string tempnick;
2472         char tn2[MAXBUF];
2473         user_hash::iterator iter;
2474
2475         tempnick = ConvToStr(socket) + "-unknown";
2476         sprintf(tn2,"%lu-unknown",(unsigned long)socket);
2477
2478         iter = clientlist.find(tempnick);
2479
2480         // fix by brain.
2481         // as these nicknames are 'RFC impossible', we can be sure nobody is going to be
2482         // using one as a registered connection. As theyre per fd, we can also safely assume
2483         // that we wont have collisions. Therefore, if the nick exists in the list, its only
2484         // used by a dead socket, erase the iterator so that the new client may reclaim it.
2485         // this was probably the cause of 'server ignores me when i hammer it with reconnects'
2486         // issue in earlier alphas/betas
2487         if (iter != clientlist.end())
2488         {
2489                 clientlist.erase(iter);
2490         }
2491
2492         /*
2493          * It is OK to access the value here this way since we know
2494          * it exists, we just created it above.
2495          *
2496          * At NO other time should you access a value in a map or a
2497          * hash_map this way.
2498          */
2499         clientlist[tempnick] = new userrec();
2500
2501         NonBlocking(socket);
2502         log(DEBUG,"AddClient: %lu %s %d %s",(unsigned long)socket,host,port,ip);
2503
2504         clientlist[tempnick]->fd = socket;
2505         strncpy(clientlist[tempnick]->nick, tn2,NICKMAX);
2506         strncpy(clientlist[tempnick]->host, host,160);
2507         strncpy(clientlist[tempnick]->dhost, host,160);
2508         strncpy(clientlist[tempnick]->server, ServerName,256);
2509         strncpy(clientlist[tempnick]->ident, "unknown",12);
2510         clientlist[tempnick]->registered = 0;
2511         clientlist[tempnick]->signon = TIME+dns_timeout;
2512         clientlist[tempnick]->lastping = 1;
2513         clientlist[tempnick]->port = port;
2514         strncpy(clientlist[tempnick]->ip,ip,32);
2515
2516         // set the registration timeout for this user
2517         unsigned long class_regtimeout = 90;
2518         int class_flood = 0;
2519         long class_threshold = 5;
2520
2521         for (ClassVector::iterator i = Classes.begin(); i != Classes.end(); i++)
2522         {
2523                 if (match(clientlist[tempnick]->host,i->host) && (i->type == CC_ALLOW))
2524                 {
2525                         class_regtimeout = (unsigned long)i->registration_timeout;
2526                         class_flood = i->flood;
2527                         clientlist[tempnick]->pingmax = i->pingtime;
2528                         class_threshold = i->threshold;
2529                         break;
2530                 }
2531         }
2532
2533         clientlist[tempnick]->nping = TIME+clientlist[tempnick]->pingmax+dns_timeout;
2534         clientlist[tempnick]->timeout = TIME+class_regtimeout;
2535         clientlist[tempnick]->flood = class_flood;
2536         clientlist[tempnick]->threshold = class_threshold;
2537
2538         for (int i = 0; i < MAXCHANS; i++)
2539         {
2540                 clientlist[tempnick]->chans[i].channel = NULL;
2541                 clientlist[tempnick]->chans[i].uc_modes = 0;
2542         }
2543
2544         if (clientlist.size() == MAXCLIENTS)
2545         {
2546                 kill_link(clientlist[tempnick],"No more connections allowed in this class");
2547                 return;
2548         }
2549
2550         // this is done as a safety check to keep the file descriptors within range of fd_ref_table.
2551         // its a pretty big but for the moment valid assumption:
2552         // file descriptors are handed out starting at 0, and are recycled as theyre freed.
2553         // therefore if there is ever an fd over 65535, 65536 clients must be connected to the
2554         // irc server at once (or the irc server otherwise initiating this many connections, files etc)
2555         // which for the time being is a physical impossibility (even the largest networks dont have more
2556         // than about 10,000 users on ONE server!)
2557         if (socket > 65535)
2558         {
2559                 kill_link(clientlist[tempnick],"Server is full");
2560                 return;
2561         }
2562                 
2563
2564         char* e = matches_exception(ip);
2565         if (!e)
2566         {
2567                 char* r = matches_zline(ip);
2568                 if (r)
2569                 {
2570                         char reason[MAXBUF];
2571                         snprintf(reason,MAXBUF,"Z-Lined: %s",r);
2572                         kill_link(clientlist[tempnick],reason);
2573                         return;
2574                 }
2575         }
2576         fd_ref_table[socket] = clientlist[tempnick];
2577 }
2578
2579 // this function counts all users connected, wether they are registered or NOT.
2580 int usercnt(void)
2581 {
2582         return clientlist.size();
2583 }
2584
2585 // this counts only registered users, so that the percentages in /MAP don't mess up when users are sitting in an unregistered state
2586 int registered_usercount(void)
2587 {
2588         int c = 0;
2589         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
2590         {
2591                 if ((i->second->fd) && (isnick(i->second->nick))) c++;
2592         }
2593         return c;
2594 }
2595
2596 int usercount_invisible(void)
2597 {
2598         int c = 0;
2599
2600         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
2601         {
2602                 if ((i->second->fd) && (isnick(i->second->nick)) && (strchr(i->second->modes,'i'))) c++;
2603         }
2604         return c;
2605 }
2606
2607 int usercount_opers(void)
2608 {
2609         int c = 0;
2610
2611         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
2612         {
2613                 if ((i->second->fd) && (isnick(i->second->nick)) && (strchr(i->second->modes,'o'))) c++;
2614         }
2615         return c;
2616 }
2617
2618 int usercount_unknown(void)
2619 {
2620         int c = 0;
2621
2622         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
2623         {
2624                 if ((i->second->fd) && (i->second->registered != 7))
2625                         c++;
2626         }
2627         return c;
2628 }
2629
2630 long chancount(void)
2631 {
2632         return chanlist.size();
2633 }
2634
2635 long count_servs(void)
2636 {
2637         int c = 0;
2638         for (int i = 0; i < 32; i++)
2639         {
2640                 if (me[i] != NULL)
2641                 {
2642                         for (vector<ircd_connector>::iterator j = me[i]->connectors.begin(); j != me[i]->connectors.end(); j++)
2643                         {
2644                                 if (strcasecmp(j->GetServerName().c_str(),ServerName))
2645                                 {
2646                                         c++;
2647                                 }
2648                         }
2649                 }
2650         }
2651         return c;
2652 }
2653
2654 long servercount(void)
2655 {
2656         return count_servs()+1;
2657 }
2658
2659 long local_count()
2660 {
2661         int c = 0;
2662         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
2663         {
2664                 if ((i->second->fd) && (isnick(i->second->nick)) && (!strcasecmp(i->second->server,ServerName))) c++;
2665         }
2666         return c;
2667 }
2668
2669
2670 void ShowMOTD(userrec *user)
2671 {
2672         std::string WholeMOTD = "";
2673         if (!MOTD.size())
2674         {
2675                 WriteServ(user->fd,"422 %s :Message of the day file is missing.",user->nick);
2676                 return;
2677         }
2678         WholeMOTD = std::string(":") + std::string(ServerName) + std::string(" 375 ") + std::string(user->nick) + std::string(" :- ") + std::string(ServerName) + " message of the day\r\n";
2679         for (int i = 0; i != MOTD.size(); i++)
2680         {
2681                 WholeMOTD = WholeMOTD + std::string(":") + std::string(ServerName) + std::string(" 372 ") + std::string(user->nick) + std::string(" :- ") + MOTD[i] + std::string("\r\n");
2682         }
2683         WholeMOTD = WholeMOTD + std::string(":") + std::string(ServerName) + std::string(" 376 ") + std::string(user->nick) + std::string(" :End of message of the day.\r\n");
2684         // only one write operation
2685         send(user->fd,WholeMOTD.c_str(),WholeMOTD.length(),0);
2686         statsSent += WholeMOTD.length();
2687 }
2688
2689 void ShowRULES(userrec *user)
2690 {
2691         if (!RULES.size())
2692         {
2693                 WriteServ(user->fd,"NOTICE %s :Rules file is missing.",user->nick);
2694                 return;
2695         }
2696         WriteServ(user->fd,"NOTICE %s :%s rules",user->nick,ServerName);
2697         for (int i = 0; i != RULES.size(); i++)
2698         {
2699                                 WriteServ(user->fd,"NOTICE %s :%s",user->nick,RULES[i].c_str());
2700         }
2701         WriteServ(user->fd,"NOTICE %s :End of %s rules.",user->nick,ServerName);
2702 }
2703
2704 /* shows the message of the day, and any other on-logon stuff */
2705 void FullConnectUser(userrec* user)
2706 {
2707         statsConnects++;
2708         user->idle_lastmsg = TIME;
2709         log(DEBUG,"ConnectUser: %s",user->nick);
2710
2711         if ((strcmp(Passwd(user),"")) && (!user->haspassed))
2712         {
2713                 kill_link(user,"Invalid password");
2714                 return;
2715         }
2716         if (IsDenied(user))
2717         {
2718                 kill_link(user,"Unauthorised connection");
2719                 return;
2720         }
2721
2722         char match_against[MAXBUF];
2723         snprintf(match_against,MAXBUF,"%s@%s",user->ident,user->host);
2724         char* e = matches_exception(match_against);
2725         if (!e)
2726         {
2727                 char* r = matches_gline(match_against);
2728                 if (r)
2729                 {
2730                         char reason[MAXBUF];
2731                         snprintf(reason,MAXBUF,"G-Lined: %s",r);
2732                         kill_link_silent(user,reason);
2733                         return;
2734                 }
2735                 r = matches_kline(user->host);
2736                 if (r)
2737                 {
2738                         char reason[MAXBUF];
2739                         snprintf(reason,MAXBUF,"K-Lined: %s",r);
2740                         kill_link_silent(user,reason);
2741                         return;
2742                 }
2743         }
2744
2745         // fix by brain: move this below the xline checks to prevent spurious quits going onto the net that dont belong
2746         user->registered = 7;
2747
2748         WriteServ(user->fd,"NOTICE Auth :Welcome to \002%s\002!",Network);
2749         WriteServ(user->fd,"001 %s :Welcome to the %s IRC Network %s!%s@%s",user->nick,Network,user->nick,user->ident,user->host);
2750         WriteServ(user->fd,"002 %s :Your host is %s, running version %s",user->nick,ServerName,VERSION);
2751         WriteServ(user->fd,"003 %s :This server was created %s %s",user->nick,__TIME__,__DATE__);
2752         WriteServ(user->fd,"004 %s %s %s iowghraAsORVSxNCWqBzvdHtGI lvhopsmntikrRcaqOALQbSeKVfHGCuzN",user->nick,ServerName,VERSION);
2753         // the neatest way to construct the initial 005 numeric, considering the number of configure constants to go in it...
2754         std::stringstream v;
2755         v << "MESHED WALLCHOPS MODES=13 CHANTYPES=# PREFIX=(ohv)@%+ MAP SAFELIST MAXCHANNELS=" << MAXCHANS;
2756         v << " MAXBANS=60 NICKLEN=" << NICKMAX;
2757         v << " TOPICLEN=307 KICKLEN=307 MAXTARGETS=20 AWAYLEN=307 CHANMODES=ohvb,k,l,psmnti NETWORK=";
2758         v << std::string(Network);
2759         std::string data005 = v.str();
2760         FOREACH_MOD On005Numeric(data005);
2761         // anfl @ #ratbox, efnet reminded me that according to the RFC this cant contain more than 13 tokens per line...
2762         // so i'd better split it :)
2763         std::stringstream out(data005);
2764         std::string token = "";
2765         std::string line5 = "";
2766         int token_counter = 0;
2767         while (!out.eof())
2768         {
2769                 out >> token;
2770                 line5 = line5 + token + " ";
2771                 token_counter++;
2772                 if ((token_counter >= 13) || (out.eof() == true))
2773                 {
2774                         WriteServ(user->fd,"005 %s %s:are supported by this server",user->nick,line5.c_str());
2775                         line5 = "";
2776                         token_counter = 0;
2777                 }
2778         }
2779         ShowMOTD(user);
2780
2781         char buffer[MAXBUF];
2782         snprintf(buffer,MAXBUF,"N %lu %s %s %s %s +%s %s %s :%s",(unsigned long)user->age,user->nick,user->host,user->dhost,user->ident,user->modes,user->ip,ServerName,user->fullname);
2783         NetSendToAll(buffer);
2784
2785         // fix by brain: these should be AFTER the N token, so other servers know what the HELL we're on about... :)
2786         FOREACH_MOD OnUserConnect(user);
2787         WriteOpers("*** Client connecting on port %lu: %s!%s@%s [%s]",(unsigned long)user->port,user->nick,user->ident,user->host,user->ip);
2788 }
2789
2790
2791 // this returns 1 when all modules are satisfied that the user should be allowed onto the irc server
2792 // (until this returns true, a user will block in the waiting state, waiting to connect up to the
2793 // registration timeout maximum seconds)
2794 bool AllModulesReportReady(userrec* user)
2795 {
2796         for (int i = 0; i <= MODCOUNT; i++)
2797         {
2798                 int res = modules[i]->OnCheckReady(user);
2799                         if (!res)
2800                                 return false;
2801         }
2802         return true;
2803 }
2804
2805 /* shows the message of the day, and any other on-logon stuff */
2806 void ConnectUser(userrec *user)
2807 {
2808         // dns is already done, things are fast. no need to wait for dns to complete just pass them straight on
2809         if ((user->dns_done) && (user->registered >= 3) && (AllModulesReportReady(user)))
2810         {
2811                 FullConnectUser(user);
2812         }
2813 }
2814
2815 std::string GetVersionString()
2816 {
2817         char Revision[] = "$Revision$";
2818         char versiondata[MAXBUF];
2819         char *s1 = Revision;
2820         char *savept;
2821         char *v2 = strtok_r(s1," ",&savept);
2822         s1 = savept;
2823         v2 = strtok_r(s1," ",&savept);
2824         s1 = savept;
2825         snprintf(versiondata,MAXBUF,"%s Rev. %s %s :%s (O=%lu)",VERSION,v2,ServerName,SYSTEM,(unsigned long)OPTIMISATION);
2826         return versiondata;
2827 }
2828
2829 void handle_version(char **parameters, int pcnt, userrec *user)
2830 {
2831         if (!pcnt)
2832         {
2833                 WriteServ(user->fd,"351 %s :%s",user->nick,GetVersionString().c_str());
2834         }
2835         else
2836         {
2837                 if (!strcmp(parameters[0],"*"))
2838                 {
2839                         for (int j = 0; j < 32; j++)
2840                         {
2841                                 if (me[j] != NULL)
2842                                 {
2843                                         for (int x = 0; x < me[j]->connectors.size(); x++)
2844                                         {
2845                                                 WriteServ(user->fd,"351 %s :Server %d:%d (%s): %s",user->nick,j,x,me[j]->connectors[x].GetServerName().c_str(),me[j]->connectors[x].GetVersionString().c_str());
2846                                         }
2847                                 }
2848                         }
2849                         return;
2850                 }
2851                 if (match(ServerName,parameters[0]))
2852                 {
2853                         WriteServ(user->fd,"351 %s :%s",user->nick,GetVersionString().c_str());
2854                         return;
2855                 }
2856                 bool displayed = false, found = false;
2857                 for (int j = 0; j < 32; j++)
2858                 {
2859                         if (me[j] != NULL)
2860                         {
2861                                 for (int x = 0; x < me[j]->connectors.size(); x++)
2862                                 {
2863                                         if (match(me[j]->connectors[x].GetServerName().c_str(),parameters[0]))
2864                                         {
2865                                                 found = true;
2866                                                 if ((me[j]->connectors[x].GetVersionString() != "") && (!displayed))
2867                                                 {
2868                                                         displayed = true;
2869                                                         WriteServ(user->fd,"351 %s :%s",user->nick,me[j]->connectors[x].GetVersionString().c_str());
2870                                                 }
2871                                         }
2872                                 }
2873                         }
2874                 }
2875                 if ((!displayed) && (found))
2876                 {
2877                         WriteServ(user->fd,"402 %s %s :Server %s has no version information",user->nick,parameters[0],parameters[0]);
2878                         return;
2879                 }
2880                 if (!found)
2881                 {
2882                         WriteServ(user->fd,"402 %s %s :No such server",user->nick,parameters[0]);
2883                 }
2884         }
2885         return;
2886 }
2887
2888
2889 // calls a handler function for a command
2890
2891 void call_handler(const char* commandname,char **parameters, int pcnt, userrec *user)
2892 {
2893                 for (int i = 0; i < cmdlist.size(); i++)
2894                 {
2895                         if (!strcasecmp(cmdlist[i].command,commandname))
2896                         {
2897                                 if (cmdlist[i].handler_function)
2898                                 {
2899                                         if (pcnt>=cmdlist[i].min_params)
2900                                         {
2901                                                 if (strchr(user->modes,cmdlist[i].flags_needed))
2902                                                 {
2903                                                         cmdlist[i].handler_function(parameters,pcnt,user);
2904                                                 }
2905                                         }
2906                                 }
2907                         }
2908                 }
2909 }
2910
2911 void DoSplitEveryone()
2912 {
2913         bool go_again = true;
2914         while (go_again)
2915         {
2916                 go_again = false;
2917                 for (int i = 0; i < 32; i++)
2918                 {
2919                         if (me[i] != NULL)
2920                         {
2921                                 for (vector<ircd_connector>::iterator j = me[i]->connectors.begin(); j != me[i]->connectors.end(); j++)
2922                                 {
2923                                         if (strcasecmp(j->GetServerName().c_str(),ServerName))
2924                                         {
2925                                                 j->routes.clear();
2926                                                 j->CloseConnection();
2927                                                 me[i]->connectors.erase(j);
2928                                                 go_again = true;
2929                                                 break;
2930                                         }
2931                                 }
2932                         }
2933                 }
2934         }
2935         log(DEBUG,"Removed server. Will remove clients...");
2936         // iterate through the userlist and remove all users on this server.
2937         // because we're dealing with a mesh, we dont have to deal with anything
2938         // "down-route" from this server (nice huh)
2939         go_again = true;
2940         char reason[MAXBUF];
2941         while (go_again)
2942         {
2943                 go_again = false;
2944                 for (user_hash::const_iterator u = clientlist.begin(); u != clientlist.end(); u++)
2945                 {
2946                         if (strcasecmp(u->second->server,ServerName))
2947                         {
2948                                 snprintf(reason,MAXBUF,"%s %s",ServerName,u->second->server);
2949                                 kill_link(u->second,reason);
2950                                 go_again = true;
2951                                 break;
2952                         }
2953                 }
2954         }
2955 }
2956
2957
2958
2959 char islast(const char* s)
2960 {
2961         char c = '`';
2962         for (int j = 0; j < 32; j++)
2963         {
2964                 if (me[j] != NULL)
2965                 {
2966                         for (int k = 0; k < me[j]->connectors.size(); k++)
2967                         {
2968                                 if (strcasecmp(me[j]->connectors[k].GetServerName().c_str(),s))
2969                                 {
2970                                         c = '|';
2971                                 }
2972                                 if (!strcasecmp(me[j]->connectors[k].GetServerName().c_str(),s))
2973                                 {
2974                                         c = '`';
2975                                 }
2976                         }
2977                 }
2978         }
2979         return c;
2980 }
2981
2982 long map_count(const char* s)
2983 {
2984         int c = 0;
2985         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
2986         {
2987                 if ((i->second->fd) && (isnick(i->second->nick)) && (!strcasecmp(i->second->server,s))) c++;
2988         }
2989         return c;
2990 }
2991
2992
2993 void force_nickchange(userrec* user,const char* newnick)
2994 {
2995         char nick[MAXBUF];
2996         int MOD_RESULT = 0;
2997         
2998         strcpy(nick,"");
2999
3000         FOREACH_RESULT(OnUserPreNick(user,newnick));
3001         if (MOD_RESULT) {
3002                 statsCollisions++;
3003                 kill_link(user,"Nickname collision");
3004                 return;
3005         }
3006         if (matches_qline(newnick))
3007         {
3008                 statsCollisions++;
3009                 kill_link(user,"Nickname collision");
3010                 return;
3011         }
3012         
3013         if (user)
3014         {
3015                 if (newnick)
3016                 {
3017                         strncpy(nick,newnick,MAXBUF);
3018                 }
3019                 if (user->registered == 7)
3020                 {
3021                         char* pars[1];
3022                         pars[0] = nick;
3023                         handle_nick(pars,1,user);
3024                 }
3025         }
3026 }
3027                                 
3028
3029 int process_parameters(char **command_p,char *parameters)
3030 {
3031         int j = 0;
3032         int q = strlen(parameters);
3033         if (!q)
3034         {
3035                 /* no parameters, command_p invalid! */
3036                 return 0;
3037         }
3038         if (parameters[0] == ':')
3039         {
3040                 command_p[0] = parameters+1;
3041                 return 1;
3042         }
3043         if (q)
3044         {
3045                 if ((strchr(parameters,' ')==NULL) || (parameters[0] == ':'))
3046                 {
3047                         /* only one parameter */
3048                         command_p[0] = parameters;
3049                         if (parameters[0] == ':')
3050                         {
3051                                 if (strchr(parameters,' ') != NULL)
3052                                 {
3053                                         command_p[0]++;
3054                                 }
3055                         }
3056                         return 1;
3057                 }
3058         }
3059         command_p[j++] = parameters;
3060         for (int i = 0; i <= q; i++)
3061         {
3062                 if (parameters[i] == ' ')
3063                 {
3064                         command_p[j++] = parameters+i+1;
3065                         parameters[i] = '\0';
3066                         if (command_p[j-1][0] == ':')
3067                         {
3068                                 *command_p[j-1]++; /* remove dodgy ":" */
3069                                 break;
3070                                 /* parameter like this marks end of the sequence */
3071                         }
3072                 }
3073         }
3074         return j; /* returns total number of items in the list */
3075 }
3076
3077 void process_command(userrec *user, char* cmd)
3078 {
3079         char *parameters;
3080         char *command;
3081         char *command_p[127];
3082         char p[MAXBUF], temp[MAXBUF];
3083         int j, items, cmd_found;
3084
3085         for (int i = 0; i < 127; i++)
3086                 command_p[i] = NULL;
3087
3088         if (!user)
3089         {
3090                 return;
3091         }
3092         if (!cmd)
3093         {
3094                 return;
3095         }
3096         if (!cmd[0])
3097         {
3098                 return;
3099         }
3100         
3101         int total_params = 0;
3102         if (strlen(cmd)>2)
3103         {
3104                 for (int q = 0; q < strlen(cmd)-1; q++)
3105                 {
3106                         if ((cmd[q] == ' ') && (cmd[q+1] == ':'))
3107                         {
3108                                 total_params++;
3109                                 // found a 'trailing', we dont count them after this.
3110                                 break;
3111                         }
3112                         if (cmd[q] == ' ')
3113                                 total_params++;
3114                 }
3115         }
3116
3117         // another phidjit bug...
3118         if (total_params > 126)
3119         {
3120                 *(strchr(cmd,' ')) = '\0';
3121                 WriteServ(user->fd,"421 %s %s :Too many parameters given",user->nick,cmd);
3122                 return;
3123         }
3124
3125         strlcpy(temp,cmd,MAXBUF);
3126         
3127         std::string tmp = cmd;
3128         for (int i = 0; i <= MODCOUNT; i++)
3129         {
3130                 std::string oldtmp = tmp;
3131                 modules[i]->OnServerRaw(tmp,true,user);
3132                 if (oldtmp != tmp)
3133                 {
3134                         log(DEBUG,"A Module changed the input string!");
3135                         log(DEBUG,"New string: %s",tmp.c_str());
3136                         log(DEBUG,"Old string: %s",oldtmp.c_str());
3137                         break;
3138                 }
3139         }
3140         strlcpy(cmd,tmp.c_str(),MAXBUF);
3141         strlcpy(temp,cmd,MAXBUF);
3142
3143         if (!strchr(cmd,' '))
3144         {
3145                 /* no parameters, lets skip the formalities and not chop up
3146                  * the string */
3147                 log(DEBUG,"About to preprocess command with no params");
3148                 items = 0;
3149                 command_p[0] = NULL;
3150                 parameters = NULL;
3151                 for (int i = 0; i <= strlen(cmd); i++)
3152                 {
3153                         cmd[i] = toupper(cmd[i]);
3154                 }
3155                 command = cmd;
3156         }
3157         else
3158         {
3159                 strcpy(cmd,"");
3160                 j = 0;
3161                 /* strip out extraneous linefeeds through mirc's crappy pasting (thanks Craig) */
3162                 for (int i = 0; i < strlen(temp); i++)
3163                 {
3164                         if ((temp[i] != 10) && (temp[i] != 13) && (temp[i] != 0) && (temp[i] != 7))
3165                         {
3166                                 cmd[j++] = temp[i];
3167                                 cmd[j] = 0;
3168                         }
3169                 }
3170                 /* split the full string into a command plus parameters */
3171                 parameters = p;
3172                 strcpy(p," ");
3173                 command = cmd;
3174                 if (strchr(cmd,' '))
3175                 {
3176                         for (int i = 0; i <= strlen(cmd); i++)
3177                         {
3178                                 /* capitalise the command ONLY, leave params intact */
3179                                 cmd[i] = toupper(cmd[i]);
3180                                 /* are we nearly there yet?! :P */
3181                                 if (cmd[i] == ' ')
3182                                 {
3183                                         command = cmd;
3184                                         parameters = cmd+i+1;
3185                                         cmd[i] = '\0';
3186                                         break;
3187                                 }
3188                         }
3189                 }
3190                 else
3191                 {
3192                         for (int i = 0; i <= strlen(cmd); i++)
3193                         {
3194                                 cmd[i] = toupper(cmd[i]);
3195                         }
3196                 }
3197
3198         }
3199         cmd_found = 0;
3200         
3201         if (strlen(command)>MAXCOMMAND)
3202         {
3203                 WriteServ(user->fd,"421 %s %s :Command too long",user->nick,command);
3204                 return;
3205         }
3206         
3207         for (int x = 0; x < strlen(command); x++)
3208         {
3209                 if (((command[x] < 'A') || (command[x] > 'Z')) && (command[x] != '.'))
3210                 {
3211                         if (((command[x] < '0') || (command[x]> '9')) && (command[x] != '-'))
3212                         {
3213                                 if (strchr("@!\"$%^&*(){}[]_=+;:'#~,<>/?\\|`",command[x]))
3214                                 {
3215                                         statsUnknown++;
3216                                         WriteServ(user->fd,"421 %s %s :Unknown command",user->nick,command);
3217                                         return;
3218                                 }
3219                         }
3220                 }
3221         }
3222
3223         for (int i = 0; i != cmdlist.size(); i++)
3224         {
3225                 if (cmdlist[i].command[0])
3226                 {
3227                         if (strlen(command)>=(strlen(cmdlist[i].command))) if (!strncmp(command, cmdlist[i].command,MAXCOMMAND))
3228                         {
3229                                 if (parameters)
3230                                 {
3231                                         if (parameters[0])
3232                                         {
3233                                                 items = process_parameters(command_p,parameters);
3234                                         }
3235                                         else
3236                                         {
3237                                                 items = 0;
3238                                                 command_p[0] = NULL;
3239                                         }
3240                                 }
3241                                 else
3242                                 {
3243                                         items = 0;
3244                                         command_p[0] = NULL;
3245                                 }
3246                                 
3247                                 if (user)
3248                                 {
3249                                         /* activity resets the ping pending timer */
3250                                         user->nping = TIME + user->pingmax;
3251                                         if ((items) < cmdlist[i].min_params)
3252                                         {
3253                                                 log(DEBUG,"process_command: not enough parameters: %s %s",user->nick,command);
3254                                                 WriteServ(user->fd,"461 %s %s :Not enough parameters",user->nick,command);
3255                                                 return;
3256                                         }
3257                                         if ((!strchr(user->modes,cmdlist[i].flags_needed)) && (cmdlist[i].flags_needed))
3258                                         {
3259                                                 log(DEBUG,"process_command: permission denied: %s %s",user->nick,command);
3260                                                 WriteServ(user->fd,"481 %s :Permission Denied- You do not have the required operator privilages",user->nick);
3261                                                 cmd_found = 1;
3262                                                 return;
3263                                         }
3264                                         if ((cmdlist[i].flags_needed) && (!user->HasPermission(command)))
3265                                         {
3266                                                 log(DEBUG,"process_command: permission denied: %s %s",user->nick,command);
3267                                                 WriteServ(user->fd,"481 %s :Permission Denied- Oper type %s does not have access to command %s",user->nick,user->oper,command);
3268                                                 cmd_found = 1;
3269                                                 return;
3270                                         }
3271                                         /* if the command isnt USER, PASS, or NICK, and nick is empty,
3272                                          * deny command! */
3273                                         if ((strncmp(command,"USER",4)) && (strncmp(command,"NICK",4)) && (strncmp(command,"PASS",4)))
3274                                         {
3275                                                 if ((!isnick(user->nick)) || (user->registered != 7))
3276                                                 {
3277                                                         log(DEBUG,"process_command: not registered: %s %s",user->nick,command);
3278                                                         WriteServ(user->fd,"451 %s :You have not registered",command);
3279                                                         return;
3280                                                 }
3281                                         }
3282                                         if ((user->registered == 7) && (!strchr(user->modes,'o')))
3283                                         {
3284                                                 char* mycmd;
3285                                                 char* savept2;
3286                                                 mycmd = strtok_r(DisabledCommands," ",&savept2);
3287                                                 while (mycmd)
3288                                                 {
3289                                                         if (!strcasecmp(mycmd,command))
3290                                                         {
3291                                                                 // command is disabled!
3292                                                                 WriteServ(user->fd,"421 %s %s :This command has been disabled.",user->nick,command);
3293                                                                 return;
3294                                                         }
3295                                                         mycmd = strtok_r(NULL," ",&savept2);
3296                                                 }
3297         
3298
3299                                         }
3300                                         if ((user->registered == 7) || (!strncmp(command,"USER",4)) || (!strncmp(command,"NICK",4)) || (!strncmp(command,"PASS",4)))
3301                                         {
3302                                                 if (cmdlist[i].handler_function)
3303                                                 {
3304                                                         
3305                                                         /* ikky /stats counters */
3306                                                         if (temp)
3307                                                         {
3308                                                                 cmdlist[i].use_count++;
3309                                                                 cmdlist[i].total_bytes+=strlen(temp);
3310                                                         }
3311
3312                                                         int MOD_RESULT = 0;
3313                                                         FOREACH_RESULT(OnPreCommand(command,command_p,items,user));
3314                                                         if (MOD_RESULT == 1) {
3315                                                                 return;
3316                                                         }
3317
3318                                                         /* WARNING: nothing may come after the
3319                                                          * command handler call, as the handler
3320                                                          * may free the user structure! */
3321
3322                                                         cmdlist[i].handler_function(command_p,items,user);
3323                                                 }
3324                                                 return;
3325                                         }
3326                                         else
3327                                         {
3328                                                 WriteServ(user->fd,"451 %s :You have not registered",command);
3329                                                 return;
3330                                         }
3331                                 }
3332                                 cmd_found = 1;
3333                         }
3334                 }
3335         }
3336         if ((!cmd_found) && (user))
3337         {
3338                 statsUnknown++;
3339                 WriteServ(user->fd,"421 %s %s :Unknown command",user->nick,command);
3340         }
3341 }
3342
3343
3344 void createcommand(char* cmd, handlerfunc f, char flags, int minparams,char* source)
3345 {
3346         command_t comm;
3347         /* create the command and push it onto the table */     
3348         strlcpy(comm.command,cmd,MAXBUF);
3349         strlcpy(comm.source,source,MAXBUF);
3350         comm.handler_function = f;
3351         comm.flags_needed = flags;
3352         comm.min_params = minparams;
3353         comm.use_count = 0;
3354         comm.total_bytes = 0;
3355         cmdlist.push_back(comm);
3356         log(DEBUG,"Added command %s (%lu parameters)",cmd,(unsigned long)minparams);
3357 }
3358
3359 bool removecommands(const char* source)
3360 {
3361         bool go_again = true;
3362         while (go_again)
3363         {
3364                 go_again = false;
3365                 for (std::deque<command_t>::iterator i = cmdlist.begin(); i != cmdlist.end(); i++)
3366                 {
3367                         if (!strcmp(i->source,source))
3368                         {
3369                                 log(DEBUG,"removecommands(%s) Removing dependent command: %s",i->source,i->command);
3370                                 cmdlist.erase(i);
3371                                 go_again = true;
3372                                 break;
3373                         }
3374                 }
3375         }
3376         return true;
3377 }
3378
3379 void SetupCommandTable(void)
3380 {
3381         createcommand("USER",handle_user,0,4,"<core>");
3382         createcommand("NICK",handle_nick,0,1,"<core>");
3383         createcommand("QUIT",handle_quit,0,0,"<core>");
3384         createcommand("VERSION",handle_version,0,0,"<core>");
3385         createcommand("PING",handle_ping,0,1,"<core>");
3386         createcommand("PONG",handle_pong,0,1,"<core>");
3387         createcommand("ADMIN",handle_admin,0,0,"<core>");
3388         createcommand("PRIVMSG",handle_privmsg,0,2,"<core>");
3389         createcommand("INFO",handle_info,0,0,"<core>");
3390         createcommand("TIME",handle_time,0,0,"<core>");
3391         createcommand("WHOIS",handle_whois,0,1,"<core>");
3392         createcommand("WALLOPS",handle_wallops,'o',1,"<core>");
3393         createcommand("NOTICE",handle_notice,0,2,"<core>");
3394         createcommand("JOIN",handle_join,0,1,"<core>");
3395         createcommand("NAMES",handle_names,0,0,"<core>");
3396         createcommand("PART",handle_part,0,1,"<core>");
3397         createcommand("KICK",handle_kick,0,2,"<core>");
3398         createcommand("MODE",handle_mode,0,1,"<core>");
3399         createcommand("TOPIC",handle_topic,0,1,"<core>");
3400         createcommand("WHO",handle_who,0,1,"<core>");
3401         createcommand("MOTD",handle_motd,0,0,"<core>");
3402         createcommand("RULES",handle_rules,0,0,"<core>");
3403         createcommand("OPER",handle_oper,0,2,"<core>");
3404         createcommand("LIST",handle_list,0,0,"<core>");
3405         createcommand("DIE",handle_die,'o',1,"<core>");
3406         createcommand("RESTART",handle_restart,'o',1,"<core>");
3407         createcommand("KILL",handle_kill,'o',2,"<core>");
3408         createcommand("REHASH",handle_rehash,'o',0,"<core>");
3409         createcommand("LUSERS",handle_lusers,0,0,"<core>");
3410         createcommand("STATS",handle_stats,0,1,"<core>");
3411         createcommand("USERHOST",handle_userhost,0,1,"<core>");
3412         createcommand("AWAY",handle_away,0,0,"<core>");
3413         createcommand("ISON",handle_ison,0,0,"<core>");
3414         createcommand("SUMMON",handle_summon,0,0,"<core>");
3415         createcommand("USERS",handle_users,0,0,"<core>");
3416         createcommand("INVITE",handle_invite,0,2,"<core>");
3417         createcommand("PASS",handle_pass,0,1,"<core>");
3418         createcommand("TRACE",handle_trace,'o',0,"<core>");
3419         createcommand("WHOWAS",handle_whowas,0,1,"<core>");
3420         createcommand("CONNECT",handle_connect,'o',1,"<core>");
3421         createcommand("SQUIT",handle_squit,'o',0,"<core>");
3422         createcommand("MODULES",handle_modules,0,0,"<core>");
3423         createcommand("LINKS",handle_links,0,0,"<core>");
3424         createcommand("MAP",handle_map,0,0,"<core>");
3425         createcommand("KLINE",handle_kline,'o',1,"<core>");
3426         createcommand("GLINE",handle_gline,'o',1,"<core>");
3427         createcommand("ZLINE",handle_zline,'o',1,"<core>");
3428         createcommand("QLINE",handle_qline,'o',1,"<core>");
3429         createcommand("ELINE",handle_eline,'o',1,"<core>");
3430         createcommand("LOADMODULE",handle_loadmodule,'o',1,"<core>");
3431         createcommand("UNLOADMODULE",handle_unloadmodule,'o',1,"<core>");
3432         createcommand("SERVER",handle_server,0,0,"<core>");
3433 }
3434
3435 void process_buffer(const char* cmdbuf,userrec *user)
3436 {
3437         if (!user)
3438         {
3439                 log(DEFAULT,"*** BUG *** process_buffer was given an invalid parameter");
3440                 return;
3441         }
3442         char cmd[MAXBUF];
3443         if (!cmdbuf)
3444         {
3445                 log(DEFAULT,"*** BUG *** process_buffer was given an invalid parameter");
3446                 return;
3447         }
3448         if (!cmdbuf[0])
3449         {
3450                 return;
3451         }
3452         while (*cmdbuf == ' ') cmdbuf++; // strip leading spaces
3453
3454         strlcpy(cmd,cmdbuf,MAXBUF);
3455         if (!cmd[0])
3456         {
3457                 return;
3458         }
3459         int sl = strlen(cmd)-1;
3460         if ((cmd[sl] == 13) || (cmd[sl] == 10))
3461         {
3462                 cmd[sl] = '\0';
3463         }
3464         sl = strlen(cmd)-1;
3465         if ((cmd[sl] == 13) || (cmd[sl] == 10))
3466         {
3467                 cmd[sl] = '\0';
3468         }
3469         sl = strlen(cmd)-1;
3470         while (cmd[sl] == ' ') // strip trailing spaces
3471         {
3472                 cmd[sl] = '\0';
3473                 sl = strlen(cmd)-1;
3474         }
3475
3476         if (!cmd[0])
3477         {
3478                 return;
3479         }
3480         log(DEBUG,"CMDIN: %s %s",user->nick,cmd);
3481         tidystring(cmd);
3482         if ((user) && (cmd))
3483         {
3484                 process_command(user,cmd);
3485         }
3486 }
3487
3488 void DoSync(serverrec* serv, char* tcp_host)
3489 {
3490         char data[MAXBUF];
3491         log(DEBUG,"Sending sync");
3492         // send start of sync marker: Y <timestamp>
3493         // at this point the ircd receiving it starts broadcasting this netburst to all ircds
3494         // except the ones its receiving it from.
3495         snprintf(data,MAXBUF,"Y %lu",(unsigned long)TIME);
3496         serv->SendPacket(data,tcp_host);
3497         // send users and channels
3498
3499         NetSendMyRoutingTable();
3500
3501         // send all routing table and uline voodoo. The ordering of these commands is IMPORTANT!
3502         for (int j = 0; j < 32; j++)
3503         {
3504                 if (me[j] != NULL)
3505                 {
3506                         for (int k = 0; k < me[j]->connectors.size(); k++)
3507                         {
3508                                 if (is_uline(me[j]->connectors[k].GetServerName().c_str()))
3509                                 {
3510                                         snprintf(data,MAXBUF,"H %s",me[j]->connectors[k].GetServerName().c_str());
3511                                         serv->SendPacket(data,tcp_host);
3512                                 }
3513                         }
3514                 }
3515         }
3516
3517         // send our version for the remote side to cache
3518         snprintf(data,MAXBUF,"v %s %s",ServerName,GetVersionString().c_str());
3519         serv->SendPacket(data,tcp_host);
3520
3521         // sync the users and channels, give the modules a look-in.
3522         for (user_hash::iterator u = clientlist.begin(); u != clientlist.end(); u++)
3523         {
3524                 snprintf(data,MAXBUF,"N %lu %s %s %s %s +%s %s %s :%s",(unsigned long)u->second->age,u->second->nick,u->second->host,u->second->dhost,u->second->ident,u->second->modes,u->second->ip,u->second->server,u->second->fullname);
3525                 serv->SendPacket(data,tcp_host);
3526                 if (strchr(u->second->modes,'o'))
3527                 {
3528                         snprintf(data,MAXBUF,"| %s %s",u->second->nick,u->second->oper);
3529                         serv->SendPacket(data,tcp_host);
3530                 }
3531                 for (int i = 0; i <= MODCOUNT; i++)
3532                 {
3533                         string_list l = modules[i]->OnUserSync(u->second);
3534                         for (int j = 0; j < l.size(); j++)
3535                         {
3536                                 strlcpy(data,l[j].c_str(),MAXBUF);
3537                                 serv->SendPacket(data,tcp_host);
3538                         }
3539                 }
3540                 char* chl = chlist(u->second,u->second);
3541                 if (strcmp(chl,""))
3542                 {
3543                         snprintf(data,MAXBUF,"J %s %s",u->second->nick,chl);
3544                         serv->SendPacket(data,tcp_host);
3545                 }
3546         }
3547         // send channel modes, topics etc...
3548         for (chan_hash::iterator c = chanlist.begin(); c != chanlist.end(); c++)
3549         {
3550                 snprintf(data,MAXBUF,"M %s +%s",c->second->name,chanmodes(c->second));
3551                 serv->SendPacket(data,tcp_host);
3552                 for (int i = 0; i <= MODCOUNT; i++)
3553                 {
3554                         string_list l = modules[i]->OnChannelSync(c->second);
3555                         for (int j = 0; j < l.size(); j++)
3556                         {
3557                                 strlcpy(data,l[j].c_str(),MAXBUF);
3558                                 serv->SendPacket(data,tcp_host);
3559                         }
3560                 }
3561                 if (c->second->topic[0])
3562                 {
3563                         snprintf(data,MAXBUF,"T %lu %s %s :%s",(unsigned long)c->second->topicset,c->second->setby,c->second->name,c->second->topic);
3564                         serv->SendPacket(data,tcp_host);
3565                 }
3566                 // send current banlist
3567                 
3568                 for (BanList::iterator b = c->second->bans.begin(); b != c->second->bans.end(); b++)
3569                 {
3570                         snprintf(data,MAXBUF,"M %s +b %s",c->second->name,b->data);
3571                         serv->SendPacket(data,tcp_host);
3572                 }
3573         }
3574         // sync global zlines, glines, etc
3575         sync_xlines(serv,tcp_host);
3576
3577         snprintf(data,MAXBUF,"F %lu",(unsigned long)TIME);
3578         serv->SendPacket(data,tcp_host);
3579         log(DEBUG,"Sent sync");
3580         // ircd sends its serverlist after the end of sync here
3581 }
3582
3583
3584 void NetSendMyRoutingTable()
3585 {
3586         // send out a line saying what is reachable to us.
3587         // E.g. if A is linked to B C and D, send out:
3588         // $ A B C D
3589         // if its only linked to B and D send out:
3590         // $ A B D
3591         // if it has no links, dont even send out the line at all.
3592         char buffer[MAXBUF];
3593         snprintf(buffer,MAXBUF,"$ %s",ServerName);
3594         bool sendit = false;
3595         for (int i = 0; i < 32; i++)
3596         {
3597                 if (me[i] != NULL)
3598                 {
3599                         for (int j = 0; j < me[i]->connectors.size(); j++)
3600                         {
3601                                 if ((me[i]->connectors[j].GetState() != STATE_DISCONNECTED) || (is_uline(me[i]->connectors[j].GetServerName().c_str())))
3602                                 {
3603                                         strlcat(buffer," ",MAXBUF);
3604                                         strlcat(buffer,me[i]->connectors[j].GetServerName().c_str(),MAXBUF);
3605                                         sendit = true;
3606                                 }
3607                         }
3608                 }
3609         }
3610         if (sendit)
3611                 NetSendToAll(buffer);
3612 }
3613
3614
3615 void DoSplit(const char* params)
3616 {
3617         bool go_again = true;
3618         while (go_again)
3619         {
3620                 go_again = false;
3621                 for (int i = 0; i < 32; i++)
3622                 {
3623                         if (me[i] != NULL)
3624                         {
3625                                 for (vector<ircd_connector>::iterator j = me[i]->connectors.begin(); j != me[i]->connectors.end(); j++)
3626                                 {
3627                                         if (!strcasecmp(j->GetServerName().c_str(),params))
3628                                         {
3629                                                 j->routes.clear();
3630                                                 j->CloseConnection();
3631                                                 me[i]->connectors.erase(j);
3632                                                 go_again = true;
3633                                                 break;
3634                                         }
3635                                 }
3636                         }
3637                 }
3638         }
3639         log(DEBUG,"Removed server. Will remove clients...");
3640         // iterate through the userlist and remove all users on this server.
3641         // because we're dealing with a mesh, we dont have to deal with anything
3642         // "down-route" from this server (nice huh)
3643         go_again = true;
3644         char reason[MAXBUF];
3645         snprintf(reason,MAXBUF,"%s %s",ServerName,params);
3646         while (go_again)
3647         {
3648                 go_again = false;
3649                 for (user_hash::const_iterator u = clientlist.begin(); u != clientlist.end(); u++)
3650                 {
3651                         if (!strcasecmp(u->second->server,params))
3652                         {
3653                                 kill_link(u->second,reason);
3654                                 go_again = true;
3655                                 break;
3656                         }
3657                 }
3658         }
3659 }
3660
3661 // removes a server. Will NOT remove its users!
3662
3663 void RemoveServer(const char* name)
3664 {
3665         bool go_again = true;
3666         while (go_again)
3667         {
3668                 go_again = false;
3669                 for (int i = 0; i < 32; i++)
3670                 {
3671                         if (me[i] != NULL)
3672                         {
3673                                 for (vector<ircd_connector>::iterator j = me[i]->connectors.begin(); j != me[i]->connectors.end(); j++)
3674                                 {
3675                                         if (!strcasecmp(j->GetServerName().c_str(),name))
3676                                         {
3677                                                 j->routes.clear();
3678                                                 j->CloseConnection();
3679                                                 me[i]->connectors.erase(j);
3680                                                 go_again = true;
3681                                                 break;
3682                                         }
3683                                 }
3684                         }
3685                 }
3686         }
3687 }
3688
3689
3690 char MODERR[MAXBUF];
3691
3692 char* ModuleError()
3693 {
3694         return MODERR;
3695 }
3696
3697 void erase_factory(int j)
3698 {
3699         int v = 0;
3700         for (std::vector<ircd_module*>::iterator t = factory.begin(); t != factory.end(); t++)
3701         {
3702                 if (v == j)
3703                 {
3704                         factory.erase(t);
3705                         factory.push_back(NULL);
3706                         return;
3707                 }
3708                 v++;
3709         }
3710 }
3711
3712 void erase_module(int j)
3713 {
3714         int v1 = 0;
3715         for (std::vector<Module*>::iterator m = modules.begin(); m!= modules.end(); m++)
3716         {
3717                 if (v1 == j)
3718                 {
3719                         delete *m;
3720                         modules.erase(m);
3721                         modules.push_back(NULL);
3722                         break;
3723                 }
3724                 v1++;
3725         }
3726         int v2 = 0;
3727         for (std::vector<std::string>::iterator v = module_names.begin(); v != module_names.end(); v++)
3728         {
3729                 if (v2 == j)
3730                 {
3731                        module_names.erase(v);
3732                        break;
3733                 }
3734                 v2++;
3735         }
3736
3737 }
3738
3739 bool UnloadModule(const char* filename)
3740 {
3741         for (int j = 0; j != module_names.size(); j++)
3742         {
3743                 if (module_names[j] == std::string(filename))
3744                 {
3745                         if (modules[j]->GetVersion().Flags & VF_STATIC)
3746                         {
3747                                 log(DEFAULT,"Failed to unload STATIC module %s",filename);
3748                                 snprintf(MODERR,MAXBUF,"Module not unloadable (marked static)");
3749                                 return false;
3750                         }
3751                         // found the module
3752                         log(DEBUG,"Deleting module...");
3753                         erase_module(j);
3754                         log(DEBUG,"Erasing module entry...");
3755                         erase_factory(j);
3756                         log(DEBUG,"Removing dependent commands...");
3757                         removecommands(filename);
3758                         log(DEFAULT,"Module %s unloaded",filename);
3759                         MODCOUNT--;
3760                         return true;
3761                 }
3762         }
3763         log(DEFAULT,"Module %s is not loaded, cannot unload it!",filename);
3764         snprintf(MODERR,MAXBUF,"Module not loaded");
3765         return false;
3766 }
3767
3768 bool DirValid(char* dirandfile)
3769 {
3770         char work[MAXBUF];
3771         strlcpy(work,dirandfile,MAXBUF);
3772         int p = strlen(work);
3773         // we just want the dir
3774         while (strlen(work))
3775         {
3776                 if (work[p] == '/')
3777                 {
3778                         work[p] = '\0';
3779                         break;
3780                 }
3781                 work[p--] = '\0';
3782         }
3783         char buffer[MAXBUF], otherdir[MAXBUF];
3784         // Get the current working directory
3785         if( getcwd( buffer, MAXBUF ) == NULL )
3786                 return false;
3787         chdir(work);
3788         if( getcwd( otherdir, MAXBUF ) == NULL )
3789                 return false;
3790         chdir(buffer);
3791         if (strlen(otherdir) >= strlen(work))
3792         {
3793                 otherdir[strlen(work)] = '\0';
3794                 if (!strcmp(otherdir,work))
3795                 {
3796                         return true;
3797                 }
3798                 return false;
3799         }
3800         else return false;
3801 }
3802
3803 std::string GetFullProgDir(char** argv, int argc)
3804 {
3805         char work[MAXBUF];
3806         strlcpy(work,argv[0],MAXBUF);
3807         int p = strlen(work);
3808         // we just want the dir
3809         while (strlen(work))
3810         {
3811                 if (work[p] == '/')
3812                 {
3813                         work[p] = '\0';
3814                         break;
3815                 }
3816                 work[p--] = '\0';
3817         }
3818         char buffer[MAXBUF], otherdir[MAXBUF];
3819         // Get the current working directory
3820         if( getcwd( buffer, MAXBUF ) == NULL )
3821                 return "";
3822         chdir(work);
3823         if( getcwd( otherdir, MAXBUF ) == NULL )
3824                 return "";
3825         chdir(buffer);
3826         return otherdir;
3827 }
3828
3829 bool LoadModule(const char* filename)
3830 {
3831         char modfile[MAXBUF];
3832         snprintf(modfile,MAXBUF,"%s/%s",ModPath,filename);
3833         if (!DirValid(modfile))
3834         {
3835                 log(DEFAULT,"Module %s is not within the modules directory.",modfile);
3836                 snprintf(MODERR,MAXBUF,"Module %s is not within the modules directory.",modfile);
3837                 return false;
3838         }
3839         log(DEBUG,"Loading module: %s",modfile);
3840         if (FileExists(modfile))
3841         {
3842                 for (int j = 0; j < module_names.size(); j++)
3843                 {
3844                         if (module_names[j] == std::string(filename))
3845                         {
3846                                 log(DEFAULT,"Module %s is already loaded, cannot load a module twice!",modfile);
3847                                 snprintf(MODERR,MAXBUF,"Module already loaded");
3848                                 return false;
3849                         }
3850                 }
3851                 ircd_module* a = new ircd_module(modfile);
3852                 factory[MODCOUNT+1] = a;
3853                 if (factory[MODCOUNT+1]->LastError())
3854                 {
3855                         log(DEFAULT,"Unable to load %s: %s",modfile,factory[MODCOUNT+1]->LastError());
3856                         snprintf(MODERR,MAXBUF,"Loader/Linker error: %s",factory[MODCOUNT+1]->LastError());
3857                         MODCOUNT--;
3858                         return false;
3859                 }
3860                 if (factory[MODCOUNT+1]->factory)
3861                 {
3862                         Module* m = factory[MODCOUNT+1]->factory->CreateModule();
3863                         modules[MODCOUNT+1] = m;
3864                         /* save the module and the module's classfactory, if
3865                          * this isnt done, random crashes can occur :/ */
3866                         module_names.push_back(filename);
3867                 }
3868                 else
3869                 {
3870                         log(DEFAULT,"Unable to load %s",modfile);
3871                         snprintf(MODERR,MAXBUF,"Factory function failed!");
3872                         return false;
3873                 }
3874         }
3875         else
3876         {
3877                 log(DEFAULT,"InspIRCd: startup: Module Not Found %s",modfile);
3878                 snprintf(MODERR,MAXBUF,"Module file could not be found");
3879                 return false;
3880         }
3881         MODCOUNT++;
3882         return true;
3883 }
3884
3885 int InspIRCd(char** argv, int argc)
3886 {
3887         struct sockaddr_in client,server;
3888         char addrs[MAXBUF][255];
3889         int incomingSockfd, result = TRUE;
3890         socklen_t length;
3891         int count = 0;
3892         int selectResult = 0, selectResult2 = 0;
3893         char configToken[MAXBUF], Addr[MAXBUF], Type[MAXBUF];
3894         fd_set selectFds;
3895         timeval tv;
3896
3897         std::string logpath = GetFullProgDir(argv,argc) + "/ircd.log";
3898         log_file = fopen(logpath.c_str(),"a+");
3899         if (!log_file)
3900         {
3901                 printf("ERROR: Could not write to logfile %s, bailing!\n\n",logpath.c_str());
3902                 Exit(ERROR);
3903         }
3904         printf("Logging to %s...\n",logpath.c_str());
3905
3906         log(DEFAULT,"$Id$");
3907         if (geteuid() == 0)
3908         {
3909                 printf("WARNING!!! You are running an irc server as ROOT!!! DO NOT DO THIS!!!\n\n");
3910                 Exit(ERROR);
3911                 log(DEFAULT,"InspIRCd: startup: not starting with UID 0!");
3912         }
3913         SetupCommandTable();
3914         log(DEBUG,"InspIRCd: startup: default command table set up");
3915         
3916         ReadConfig(true,NULL);
3917         if (DieValue[0])
3918         { 
3919                 printf("WARNING: %s\n\n",DieValue);
3920                 log(DEFAULT,"Ut-Oh, somebody didn't read their config file: '%s'",DieValue);
3921                 exit(0); 
3922         }  
3923         log(DEBUG,"InspIRCd: startup: read config");
3924
3925         int clientportcount = 0, serverportcount = 0;
3926
3927         for (count = 0; count < ConfValueEnum("bind",&config_f); count++)
3928         {
3929                 ConfValue("bind","port",count,configToken,&config_f);
3930                 ConfValue("bind","address",count,Addr,&config_f);
3931                 ConfValue("bind","type",count,Type,&config_f);
3932                 if (!strcmp(Type,"servers"))
3933                 {
3934                         char Default[MAXBUF];
3935                         strcpy(Default,"no");
3936                         ConfValue("bind","default",count,Default,&config_f);
3937                         if (strchr(Default,'y'))
3938                         {
3939                                 defaultRoute = serverportcount;
3940                                 log(DEBUG,"InspIRCd: startup: binding '%s:%s' is default server route",Addr,configToken);
3941                         }
3942                         me[serverportcount] = new serverrec(ServerName,100L,false);
3943                         if (!me[serverportcount]->CreateListener(Addr,atoi(configToken)))
3944                         {
3945                                 log(DEFAULT,"Warning: Failed to bind port %lu",(unsigned long)atoi(configToken));
3946                                 printf("Warning: Failed to bind port %lu\n",(unsigned long)atoi(configToken));
3947                         }
3948                         else
3949                         {
3950                                 serverportcount++;
3951                         }
3952                 }
3953                 else
3954                 {
3955                         ports[clientportcount] = atoi(configToken);
3956                         strlcpy(addrs[clientportcount],Addr,256);
3957                         clientportcount++;
3958                 }
3959                 log(DEBUG,"InspIRCd: startup: read binding %s:%s [%s] from config",Addr,configToken, Type);
3960         }
3961         portCount = clientportcount;
3962         SERVERportCount = serverportcount;
3963           
3964         log(DEBUG,"InspIRCd: startup: read %lu total client ports and %lu total server ports",(unsigned long)portCount,(unsigned long)SERVERportCount);
3965         log(DEBUG,"InspIRCd: startup: InspIRCd is now starting!");
3966         
3967         printf("\n");
3968         
3969         /* BugFix By Craig! :p */
3970         MODCOUNT = -1;
3971         for (count = 0; count < ConfValueEnum("module",&config_f); count++)
3972         {
3973                 ConfValue("module","name",count,configToken,&config_f);
3974                 printf("Loading module... \033[1;32m%s\033[0m\n",configToken);
3975                 if (!LoadModule(configToken))
3976                 {
3977                         log(DEFAULT,"Exiting due to a module loader error.");
3978                         printf("\nThere was an error loading a module: %s\n\nYou might want to do './inspircd start' instead of 'bin/inspircd'\n\n",ModuleError());
3979                         Exit(0);
3980                 }
3981         }
3982         log(DEFAULT,"Total loaded modules: %lu",(unsigned long)MODCOUNT+1);
3983         
3984         startup_time = time(NULL);
3985           
3986         char PID[MAXBUF];
3987         ConfValue("pid","file",0,PID,&config_f);
3988         // write once here, to try it out and make sure its ok
3989         WritePID(PID);
3990           
3991         /* setup select call */
3992         FD_ZERO(&selectFds);
3993         log(DEBUG,"InspIRCd: startup: zero selects");
3994         log(VERBOSE,"InspIRCd: startup: portCount = %lu", (unsigned long)portCount);
3995         
3996         for (count = 0; count < portCount; count++)
3997         {
3998                 if ((openSockfd[boundPortCount] = OpenTCPSocket()) == ERROR)
3999                 {
4000                         log(DEBUG,"InspIRCd: startup: bad fd %lu",(unsigned long)openSockfd[boundPortCount]);
4001                         return(ERROR);
4002                 }
4003                 if (BindSocket(openSockfd[boundPortCount],client,server,ports[count],addrs[count]) == ERROR)
4004                 {
4005                         log(DEFAULT,"InspIRCd: startup: failed to bind port %lu",(unsigned long)ports[count]);
4006                 }
4007                 else    /* well we at least bound to one socket so we'll continue */
4008                 {
4009                         boundPortCount++;
4010                 }
4011         }
4012         
4013         log(DEBUG,"InspIRCd: startup: total bound ports %lu",(unsigned long)boundPortCount);
4014           
4015         /* if we didn't bind to anything then abort */
4016         if (boundPortCount == 0)
4017         {
4018                 log(DEFAULT,"InspIRCd: startup: no ports bound, bailing!");
4019                 printf("\nERROR: Was not able to bind any of %lu ports! Please check your configuration.\n\n", (unsigned long)portCount);
4020                 return (ERROR);
4021         }
4022         
4023
4024         printf("\nInspIRCd is now running!\n");
4025
4026         if (nofork)
4027         {
4028                 log(VERBOSE,"Not forking as -nofork was specified");
4029         }
4030         else
4031         {
4032                 if (DaemonSeed() == ERROR)
4033                 {
4034                         log(DEFAULT,"InspIRCd: startup: can't daemonise");
4035                         printf("ERROR: could not go into daemon mode. Shutting down.\n");
4036                         Exit(ERROR);
4037                 }
4038         }
4039
4040         WritePID(PID);
4041
4042         length = sizeof (client);
4043         char tcp_msg[MAXBUF],tcp_host[MAXBUF];
4044
4045         fd_set serverfds;
4046         timeval tvs;
4047         tvs.tv_usec = 10000L;
4048         tvs.tv_sec = 0;
4049         tv.tv_sec = 0;
4050         tv.tv_usec = 10000L;
4051         char data[65536];
4052         timeval tval;
4053         fd_set sfd;
4054         tval.tv_usec = 10000L;
4055         tval.tv_sec = 0;
4056         int total_in_this_set = 0;
4057         int v = 0;
4058         bool expire_run = false;
4059           
4060         /* main loop, this never returns */
4061         for (;;)
4062         {
4063 #ifdef _POSIX_PRIORITY_SCHEDULING
4064                 sched_yield();
4065 #endif
4066                 // poll dns queue
4067                 dns_poll();
4068                 FD_ZERO(&sfd);
4069
4070                 // we only read time() once per iteration rather than tons of times!
4071                 TIME = time(NULL);
4072
4073                 // *FIX* Instead of closing sockets in kill_link when they receive the ERROR :blah line, we should queue
4074                 // them in a list, then reap the list every second or so.
4075                 if (((TIME % 5) == 0) && (!expire_run))
4076                 {
4077                         expire_lines();
4078                         FOREACH_MOD OnBackgroundTimer(TIME);
4079                         expire_run = true;
4080                         continue;
4081                 }
4082                 if ((TIME % 5) == 1)
4083                         expire_run = false;
4084                 
4085                 // fix by brain - this must be below any manipulation of the hashmap by modules
4086                 user_hash::iterator count2 = clientlist.begin();
4087
4088                 FD_ZERO(&serverfds);
4089                 
4090                 for (int x = 0; x != SERVERportCount; x++)
4091                 {
4092                         if (me[x])
4093                                 FD_SET(me[x]->fd, &serverfds);
4094                 }
4095                 
4096                 // serverFds timevals went here
4097                 
4098                 tvs.tv_usec = 30000L;
4099                 tvs.tv_sec = 0;
4100                 int servresult = select(32767, &serverfds, NULL, NULL, &tvs);
4101                 if (servresult > 0)
4102                 {
4103                         for (int x = 0; x != SERVERportCount; x++)
4104                         {
4105                                 if ((me[x]) && (FD_ISSET (me[x]->fd, &serverfds)))
4106                                 {
4107                                         char remotehost[MAXBUF],resolved[MAXBUF];
4108                                         length = sizeof (client);
4109                                         incomingSockfd = accept (me[x]->fd, (sockaddr *) &client, &length);
4110                                         if (incomingSockfd != -1)
4111                                         {
4112                                                 strlcpy(remotehost,(char *)inet_ntoa(client.sin_addr),MAXBUF);
4113                                                 if(CleanAndResolve(resolved, remotehost) != TRUE)
4114                                                 {
4115                                                         strlcpy(resolved,remotehost,MAXBUF);
4116                                                 }
4117                                                 // add to this connections ircd_connector vector
4118                                                 // *FIX* - we need the LOCAL port not the remote port in &client!
4119                                                 me[x]->AddIncoming(incomingSockfd,resolved,me[x]->port);
4120                                         }
4121                                 }
4122                         }
4123                 }
4124      
4125                 for (int x = 0; x < SERVERportCount; x++)
4126                 {
4127                         std::deque<std::string> msgs;
4128                         msgs.clear();
4129                         if ((me[x]) && (me[x]->RecvPacket(msgs, tcp_host)))
4130                         {
4131                                 for (int ctr = 0; ctr < msgs.size(); ctr++)
4132                                 {
4133                                         strlcpy(tcp_msg,msgs[ctr].c_str(),MAXBUF);
4134                                         log(DEBUG,"Processing: %s",tcp_msg);
4135                                         if (!tcp_msg[0])
4136                                         {
4137                                                 log(DEBUG,"Invalid string from %s [route%lu]",tcp_host,(unsigned long)x);
4138                                                 break;
4139                                         }
4140                                         // during a netburst, send all data to all other linked servers
4141                                         if ((((nb_start>0) && (tcp_msg[0] != 'Y') && (tcp_msg[0] != 'X') && (tcp_msg[0] != 'F'))) || (is_uline(tcp_host)))
4142                                         {
4143                                                 if (is_uline(tcp_host))
4144                                                 {
4145                                                         if ((tcp_msg[0] != 'Y') && (tcp_msg[0] != 'X') && (tcp_msg[0] != 'F'))
4146                                                         {
4147                                                                 NetSendToAllExcept(tcp_host,tcp_msg);
4148                                                         }
4149                                                 }
4150                                                 else
4151                                                         NetSendToAllExcept(tcp_host,tcp_msg);
4152                                         }
4153                                         std::string msg = tcp_msg;
4154                                         FOREACH_MOD OnPacketReceive(msg,tcp_host);
4155                                         strlcpy(tcp_msg,msg.c_str(),MAXBUF);
4156                                         handle_link_packet(tcp_msg, tcp_host, me[x]);
4157                                 }
4158                                 goto label;
4159                         }
4160                 }
4161         
4162
4163         while (count2 != clientlist.end())
4164         {
4165                 FD_ZERO(&sfd);
4166                 total_in_this_set = 0;
4167
4168                 user_hash::iterator xcount = count2;
4169                 user_hash::iterator endingiter = count2;
4170
4171                 if (count2 == clientlist.end()) break;
4172
4173                 userrec* curr = NULL;
4174
4175                 if (count2->second)
4176                         curr = count2->second;
4177
4178                 if ((curr) && (curr->fd != 0))
4179                 {
4180 #ifdef _POSIX_PRIORITY_SCHEDULING
4181         sched_yield();
4182 #endif
4183                         // assemble up to 64 sockets into an fd_set
4184                         // to implement a pooling mechanism.
4185                         //
4186                         // This should be up to 64x faster than the
4187                         // old implementation.
4188                         while (total_in_this_set < 64)
4189                         {
4190                                 if (count2 != clientlist.end())
4191                                 {
4192                                         curr = count2->second;
4193                                         // we don't check the state of remote users.
4194                                         if ((curr->fd != -1) && (curr->fd != FD_MAGIC_NUMBER))
4195                                         {
4196                                                 FD_SET (curr->fd, &sfd);
4197
4198                                                 // registration timeout -- didnt send USER/NICK/HOST in the time specified in
4199                                                 // their connection class.
4200                                                 if ((TIME > curr->timeout) && (curr->registered != 7)) 
4201                                                 {
4202                                                         log(DEBUG,"InspIRCd: registration timeout: %s",curr->nick);
4203                                                         kill_link(curr,"Registration timeout");
4204                                                         goto label;
4205                                                 }
4206                                                 if ((TIME > curr->signon) && (curr->registered == 3) && (AllModulesReportReady(curr)))
4207                                                 {
4208                                                         log(DEBUG,"signon exceed, registered=3, and modules ready, OK");
4209                                                         curr->dns_done = true;
4210                                                         statsDnsBad++;
4211                                                         FullConnectUser(curr);
4212                                                         goto label;
4213                                                 }
4214                                                 if ((curr->dns_done) && (curr->registered == 3) && (AllModulesReportReady(curr))) // both NICK and USER... and DNS
4215                                                 {
4216                                                         log(DEBUG,"dns done, registered=3, and modules ready, OK");
4217                                                         FullConnectUser(curr);
4218                                                         goto label;
4219                                                 }
4220                                                 if ((TIME > curr->nping) && (isnick(curr->nick)) && (curr->registered == 7))
4221                                                 {
4222                                                         if ((!curr->lastping) && (curr->registered == 7))
4223                                                         {
4224                                                                 log(DEBUG,"InspIRCd: ping timeout: %s",curr->nick);
4225                                                                 kill_link(curr,"Ping timeout");
4226                                                                 goto label;
4227                                                         }
4228                                                         Write(curr->fd,"PING :%s",ServerName);
4229                                                         log(DEBUG,"InspIRCd: pinging: %s",curr->nick);
4230                                                         curr->lastping = 0;
4231                                                         curr->nping = TIME+curr->pingmax;       // was hard coded to 120
4232                                                 }
4233                                         }
4234                                         count2++;
4235                                         total_in_this_set++;
4236                                 }
4237                                 else break;
4238                         }
4239    
4240                         endingiter = count2;
4241                         count2 = xcount; // roll back to where we were
4242         
4243                         v = 0;
4244
4245                         // tvals defined here
4246
4247                         tval.tv_usec = 1000L;
4248                         selectResult2 = select(65535, &sfd, NULL, NULL, &tval);
4249                         
4250                         // now loop through all of the items in this pool if any are waiting
4251                         if (selectResult2 > 0)
4252                         for (user_hash::iterator count2a = xcount; count2a != endingiter; count2a++)
4253                         {
4254
4255 #ifdef _POSIX_PRIORITY_SCHEDULING
4256                                 sched_yield();
4257 #endif
4258                                 userrec* cu = count2a->second;
4259                                 result = EAGAIN;
4260                                 if ((cu->fd != FD_MAGIC_NUMBER) && (cu->fd != -1) && (FD_ISSET (cu->fd, &sfd)))
4261                                 {
4262                                         log(DEBUG,"Data waiting on socket %d",cu->fd);
4263                                         int MOD_RESULT = 0;
4264                                         int result2 = 0;
4265                                         FOREACH_RESULT(OnRawSocketRead(cu->fd,data,65535,result2));
4266                                         if (!MOD_RESULT)
4267                                         {
4268                                                 result = read(cu->fd, data, 65535);
4269                                         }
4270                                         else result = result2;
4271                                         log(DEBUG,"Read result: %d",result);
4272                                         if (result)
4273                                         {
4274                                                 statsRecv += result;
4275                                                 // perform a check on the raw buffer as an array (not a string!) to remove
4276                                                 // characters 0 and 7 which are illegal in the RFC - replace them with spaces.
4277                                                 // hopefully this should stop even more people whining about "Unknown command: *"
4278                                                 for (int checker = 0; checker < result; checker++)
4279                                                 {
4280                                                         if ((data[checker] == 0) || (data[checker] == 7))
4281                                                                 data[checker] = ' ';
4282                                                 }
4283                                                 if (result > 0)
4284                                                         data[result] = '\0';
4285                                                 userrec* current = cu;
4286                                                 int currfd = current->fd;
4287                                                 int floodlines = 0;
4288                                                 // add the data to the users buffer
4289                                                 if (result > 0)
4290                                                 if (!current->AddBuffer(data))
4291                                                 {
4292                                                         // AddBuffer returned false, theres too much data in the user's buffer and theyre up to no good.
4293                                                         if (current->registered == 7)
4294                                                         {
4295                                                                 kill_link(current,"RecvQ exceeded");
4296                                                         }
4297                                                         else
4298                                                         {
4299                                                                 WriteOpers("*** Excess flood from %s",current->ip);
4300                                                                 log(DEFAULT,"Excess flood from: %s",current->ip);
4301                                                                 add_zline(120,ServerName,"Flood from unregistered connection",current->ip);
4302                                                                 apply_lines();
4303                                                         }
4304                                                         goto label;
4305                                                 }
4306                                                 if (current->recvq.length() > NetBufferSize)
4307                                                 {
4308                                                         if (current->registered == 7)
4309                                                         {
4310                                                                 kill_link(current,"RecvQ exceeded");
4311                                                         }
4312                                                         else
4313                                                         {
4314                                                                 WriteOpers("*** Excess flood from %s",current->ip);
4315                                                                 log(DEFAULT,"Excess flood from: %s",current->ip);
4316                                                                 add_zline(120,ServerName,"Flood from unregistered connection",current->ip);
4317                                                                 apply_lines();
4318                                                         }
4319                                                         goto label;
4320                                                 }
4321                                                 // while there are complete lines to process...
4322                                                 while (current->BufferIsReady())
4323                                                 {
4324                                                         floodlines++;
4325                                                         if (TIME > current->reset_due)
4326                                                         {
4327                                                                 current->reset_due = TIME + current->threshold;
4328                                                                 current->lines_in = 0;
4329                                                         }
4330                                                         current->lines_in++;
4331                                                         if (current->lines_in > current->flood)
4332                                                         {
4333                                                                 log(DEFAULT,"Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
4334                                                                 WriteOpers("*** Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
4335                                                                 kill_link(current,"Excess flood");
4336                                                                 goto label;
4337                                                         }
4338                                                         if ((floodlines > current->flood) && (current->flood != 0))
4339                                                         {
4340                                                                 if (current->registered == 7)
4341                                                                 {
4342                                                                         log(DEFAULT,"Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
4343                                                                         WriteOpers("*** Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
4344                                                                         kill_link(current,"Excess flood");
4345                                                                 }
4346                                                                 else
4347                                                                 {
4348                                                                         add_zline(120,ServerName,"Flood from unregistered connection",current->ip);
4349                                                                         apply_lines();
4350                                                                 }
4351                                                                 goto label;
4352                                                         }
4353                                                         char sanitized[MAXBUF];
4354                                                         // use GetBuffer to copy single lines into the sanitized string
4355                                                         std::string single_line = current->GetBuffer();
4356                                                         current->bytes_in += single_line.length();
4357                                                         current->cmds_in++;
4358                                                         if (single_line.length()>512)
4359                                                         {
4360                                                                 log(DEFAULT,"Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
4361                                                                 WriteOpers("*** Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
4362                                                                 kill_link(current,"Excess flood");
4363                                                                 goto label;
4364                                                         }
4365                                                         strlcpy(sanitized,single_line.c_str(),MAXBUF);
4366                                                         if (*sanitized)
4367                                                         {
4368                                                                 userrec* old_comp = fd_ref_table[currfd];
4369                                                                 // we're gonna re-scan to check if the nick is gone, after every
4370                                                                 // command - if it has, we're gonna bail
4371                                                                 process_buffer(sanitized,current);
4372                                                                 // look for the user's record in case it's changed... if theyve quit,
4373                                                                 // we cant do anything more with their buffer, so bail.
4374                                                                 // there used to be an ugly, slow loop here. Now we have a reference
4375                                                                 // table, life is much easier (and FASTER)
4376                                                                 userrec* new_comp = fd_ref_table[currfd];
4377                                                                 if ((currfd < 0) || (!fd_ref_table[currfd]) || (old_comp != new_comp))
4378                                                                         goto label;
4379
4380                                                         }
4381                                                 }
4382                                                 goto label;
4383                                         }
4384
4385                                         if ((result == -1) && (errno != EAGAIN) && (errno != EINTR))
4386                                         {
4387                                                 log(DEBUG,"killing: %s",cu->nick);
4388                                                 kill_link(cu,strerror(errno));
4389                                                 goto label;
4390                                         }
4391                                 }
4392                                 // result EAGAIN means nothing read
4393                                 if (result == EAGAIN)
4394                                 {
4395                                 }
4396                                 else
4397                                 if (result == 0)
4398                                 {
4399                                         if (count2->second)
4400                                         {
4401                                                 log(DEBUG,"InspIRCd: Exited: %s",cu->nick);
4402                                                 kill_link(cu,"Client exited");
4403                                                 // must bail here? kill_link removes the hash, corrupting the iterator
4404                                                 log(DEBUG,"Bailing from client exit");
4405                                                 goto label;
4406                                         }
4407                                 }
4408                                 else if (result > 0)
4409                                 {
4410                                 }
4411                         }
4412                 }
4413                 for (int q = 0; q < total_in_this_set; q++)
4414                 {
4415                         count2++;
4416                 }
4417         }
4418
4419 #ifdef _POSIX_PRIORITY_SCHEDULING
4420         sched_yield();
4421 #endif
4422         
4423         // set up select call
4424         for (count = 0; count < boundPortCount; count++)
4425         {
4426                 FD_SET (openSockfd[count], &selectFds);
4427         }
4428
4429         tv.tv_usec = 30000L;
4430         selectResult = select(MAXSOCKS, &selectFds, NULL, NULL, &tv);
4431
4432         /* select is reporting a waiting socket. Poll them all to find out which */
4433         if (selectResult > 0)
4434         {
4435                 char target[MAXBUF], resolved[MAXBUF];
4436                 for (count = 0; count < boundPortCount; count++)                
4437                 {
4438                         if (FD_ISSET (openSockfd[count], &selectFds))
4439                         {
4440                                 length = sizeof (client);
4441                                 incomingSockfd = accept (openSockfd[count], (struct sockaddr *) &client, &length);
4442                               
4443                                 strlcpy (target, (char *) inet_ntoa (client.sin_addr), MAXBUF);
4444                                 strlcpy (resolved, target, MAXBUF);
4445                         
4446                                 if (incomingSockfd < 0)
4447                                 {
4448                                         WriteOpers("*** WARNING: Accept failed on port %lu (%s)",(unsigned long)ports[count],target);
4449                                         log(DEBUG,"InspIRCd: accept failed: %lu",(unsigned long)ports[count]);
4450                                         statsRefused++;
4451                                 }
4452                                 else
4453                                 {
4454                                         FOREACH_MOD OnRawSocketAccept(incomingSockfd, resolved, ports[count]);
4455                                         statsAccept++;
4456                                         AddClient(incomingSockfd, resolved, ports[count], false, inet_ntoa (client.sin_addr));
4457                                         log(DEBUG,"InspIRCd: adding client on port %lu fd=%lu",(unsigned long)ports[count],(unsigned long)incomingSockfd);
4458                                 }
4459                                 goto label;
4460                         }
4461                 }
4462         }
4463         label:
4464         if (0) {};
4465 #ifdef _POSIX_PRIORITY_SCHEDULING
4466         sched_yield();
4467         sched_yield();
4468 #endif
4469 }
4470 /* not reached */
4471 close (incomingSockfd);
4472 }
4473