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