]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/users.cpp
Optimizations
[user/henk/code/inspircd.git] / src / users.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 using namespace std;
18
19 #include "inspircd_config.h" 
20 #include "channels.h"
21 #include "connection.h"
22 #include "users.h"
23 #include "inspircd.h"
24 #include <stdio.h>
25 #ifdef THREADED_DNS
26 #include <pthread.h>
27 #include <signal.h>
28 #endif
29 #include "inspstring.h"
30 #include "commands.h"
31 #include "helperfuncs.h"
32 #include "typedefs.h"
33 #include "socketengine.h"
34 #include "hashcomp.h"
35 #include "message.h"
36 #include "wildcard.h"
37 #include "xline.h"
38 #include "cull_list.h"
39
40 extern InspIRCd* ServerInstance;
41 extern int WHOWAS_STALE;
42 extern int WHOWAS_MAX;
43 extern std::vector<Module*> modules;
44 extern std::vector<ircd_module*> factory;
45 extern std::vector<InspSocket*> module_sockets;
46 extern int MODCOUNT;
47 extern InspSocket* socket_ref[MAX_DESCRIPTORS];
48 extern time_t TIME;
49 extern userrec* fd_ref_table[MAX_DESCRIPTORS];
50 extern ServerConfig *Config;
51 extern user_hash clientlist;
52 extern whowas_hash whowas;
53 extern std::vector<userrec*> local_users;
54
55 std::vector<userrec*> all_opers;
56
57 typedef std::map<irc::string,char*> opertype_t;
58 typedef opertype_t operclass_t;
59
60 opertype_t opertypes;
61 operclass_t operclass;
62
63 void ReadClassesAndTypes()
64 {
65         char TypeName[MAXBUF],Classes[MAXBUF],ClassName[MAXBUF],CommandList[MAXBUF];
66         for (opertype_t::iterator n = opertypes.begin(); n != opertypes.end(); n++)
67         {
68                 if (n->second)
69                         delete[] n->second;
70         }
71         for (operclass_t::iterator n = operclass.begin(); n != operclass.end(); n++)
72         {
73                 if (n->second)
74                         delete[] n->second;
75         }
76         opertypes.clear();
77         operclass.clear();
78         for (int j =0; j < Config->ConfValueEnum("type",&Config->config_f); j++)
79         {
80                 Config->ConfValue("type","name",j,TypeName,&Config->config_f);
81                 Config->ConfValue("type","classes",j,Classes,&Config->config_f);
82                 opertypes[TypeName] = strdup(Classes);
83                 log(DEBUG,"Read oper TYPE '%s' with classes '%s'",TypeName,Classes);
84         }
85         for (int k =0; k < Config->ConfValueEnum("class",&Config->config_f); k++)
86         {
87                 Config->ConfValue("class","name",k,ClassName,&Config->config_f);
88                 Config->ConfValue("class","commands",k,CommandList,&Config->config_f);
89                 operclass[ClassName] = strdup(CommandList);
90                 log(DEBUG,"Read oper CLASS '%s' with commands '%s'",ClassName,CommandList);
91         }
92 }
93
94 template<typename T> inline string ConvToStr(const T &in)
95 {
96         stringstream tmp;
97         if (!(tmp << in)) return string();
98         return tmp.str();
99 }
100
101 userrec::userrec()
102 {
103         // the PROPER way to do it, AVOID bzero at *ALL* costs
104         *password = *nick = *ident = *host = *dhost = *fullname = *modes = *awaymsg = *oper = 0;
105         server = (char*)FindServerNamePtr(Config->ServerName);
106         reset_due = TIME;
107         lines_in = fd = lastping = signon = idle_lastmsg = nping = registered = 0;
108         timeout = flood = port = bytes_in = bytes_out = cmds_in = cmds_out = 0;
109         haspassed = dns_done = false;
110         recvq = "";
111         sendq = "";
112         chans.clear();
113         invites.clear();
114 }
115
116 userrec::~userrec()
117 {
118 }
119
120 void userrec::MakeHost(char* nhost)
121 {
122         /* This is much faster than snprintf */
123         char* t = nhost;
124         for(char* n = ident; *n; n++)
125                 *t++ = *n;
126         *t++ = '@';
127         for(char* n = host; *n; n++)
128                 *t++ = *n;
129         *t = 0;
130 }
131
132 void userrec::CloseSocket()
133 {
134         shutdown(this->fd,2);
135         close(this->fd);
136 }
137  
138 char* userrec::GetFullHost()
139 {
140         static char result[MAXBUF];
141         char* t = result;
142         for(char* n = nick; *n; n++)
143                 *t++ = *n;
144         *t++ = '!';
145         for(char* n = ident; *n; n++)
146                 *t++ = *n;
147         *t++ = '@';
148         for(char* n = dhost; *n; n++)
149                 *t++ = *n;
150         *t = 0;
151         return result;
152 }
153
154 char* userrec::MakeWildHost()
155 {
156         static char nresult[MAXBUF];
157         char* t = nresult;
158         *t++ = '*';     *t++ = '!';
159         *t++ = '*';     *t++ = '@';
160         for(char* n = dhost; *n; n++)
161                 *t++ = *n;
162         *t = 0;
163         return nresult;
164 }
165
166 int userrec::ReadData(void* buffer, size_t size)
167 {
168         if (this->fd > -1)
169         {
170                 return read(this->fd, buffer, size);
171         }
172         else return 0;
173 }
174
175
176 char* userrec::GetFullRealHost()
177 {
178         static char fresult[MAXBUF];
179         char* t = fresult;
180         for(char* n = nick; *n; n++)
181                 *t++ = *n;
182         *t++ = '!';
183         for(char* n = ident; *n; n++)
184                 *t++ = *n;
185         *t++ = '@';
186         for(char* n = host; *n; n++)
187                 *t++ = *n;
188         *t = 0;
189         return fresult;
190 }
191
192 bool userrec::IsInvited(irc::string &channel)
193 {
194         for (InvitedList::iterator i = invites.begin(); i != invites.end(); i++)
195         {
196                 irc::string compare = i->channel;
197                 if (compare == channel)
198                 {
199                         return true;
200                 }
201         }
202         return false;
203 }
204
205 InvitedList* userrec::GetInviteList()
206 {
207         return &invites;
208 }
209
210 void userrec::InviteTo(irc::string &channel)
211 {
212         Invited i;
213         i.channel = channel;
214         invites.push_back(i);
215 }
216
217 void userrec::RemoveInvite(irc::string &channel)
218 {
219         log(DEBUG,"Removing invites");
220         if (invites.size())
221         {
222                 for (InvitedList::iterator i = invites.begin(); i != invites.end(); i++)
223                 {
224                         irc::string compare = i->channel;
225                         if (compare == channel)
226                         {
227                                 invites.erase(i);
228                                 return;
229                         }
230                 }
231         }
232 }
233
234 bool userrec::HasPermission(std::string &command)
235 {
236         char* mycmd;
237         char* savept;
238         char* savept2;
239         
240         // users on remote servers can completely bypass
241         // all permissions based checks.
242         // This prevents desyncs when one server has different
243         // type/class tags to another.
244         if (!IS_LOCAL(this))
245                 return true;
246         
247         // are they even an oper at all?
248         if (*this->oper)
249         {
250                 opertype_t::iterator iter_opertype = opertypes.find(this->oper);
251                 if (iter_opertype != opertypes.end())
252                 {
253                         char* Classes = strdup(iter_opertype->second);
254                         char* myclass = strtok_r(Classes," ",&savept);
255                         while (myclass)
256                         {
257                                 operclass_t::iterator iter_operclass = operclass.find(myclass);
258                                 if (iter_operclass != operclass.end())
259                                 {
260                                         char* CommandList = strdup(iter_operclass->second);
261                                         mycmd = strtok_r(CommandList," ",&savept2);
262                                         while (mycmd)
263                                         {
264                                                 if ((!strcasecmp(mycmd,command.c_str())) || (*mycmd == '*'))
265                                                 {
266                                                         free(Classes);
267                                                         free(CommandList);
268                                                         return true;
269                                                 }
270                                                 mycmd = strtok_r(NULL," ",&savept2);
271                                         }
272                                         free(CommandList);
273                                 }
274                                 myclass = strtok_r(NULL," ",&savept);
275                         }
276                         free(Classes);
277                 }
278         }
279         return false;
280 }
281
282
283 bool userrec::AddBuffer(std::string a)
284 {
285         std::string b = "";
286         char* n = (char*)a.c_str();
287         for (char* i = n; *i; i++)
288         {
289                 if ((*i != '\r') && (*i != '\0') && (*i != 7))
290                         b = b + *i;
291         }
292         std::stringstream stream(recvq);
293         stream << b;
294         recvq = stream.str();
295         unsigned int i = 0;
296         // count the size of the first line in the buffer.
297         while (i < recvq.length())
298         {
299                 if (recvq[i++] == '\n')
300                         break;
301         }
302         if (recvq.length() > (unsigned)this->recvqmax)
303         {
304                 this->SetWriteError("RecvQ exceeded");
305                 WriteOpers("*** User %s RecvQ of %d exceeds connect class maximum of %d",this->nick,recvq.length(),this->recvqmax);
306         }
307         // return false if we've had more than 600 characters WITHOUT
308         // a carriage return (this is BAD, drop the socket)
309         return (i < 600);
310 }
311
312 bool userrec::BufferIsReady()
313 {
314         unsigned int t = recvq.length();
315         for (unsigned int i = 0; i < t; i++)
316                 if (recvq[i] == '\n')
317                         return true;
318         return false;
319 }
320
321 void userrec::ClearBuffer()
322 {
323         recvq = "";
324 }
325
326 std::string userrec::GetBuffer()
327 {
328         if (recvq == "")
329                 return "";
330         char* line = (char*)recvq.c_str();
331         std::string ret = "";
332         while ((*line != '\n') && (*line))
333         {
334                 ret = ret + *line;
335                 line++;
336         }
337         if ((*line == '\n') || (*line == '\r'))
338                 line++;
339         recvq = line;
340         return ret;
341 }
342
343 void userrec::AddWriteBuf(std::string data)
344 {
345         if (this->GetWriteError() != "")
346                 return;
347         if (sendq.length() + data.length() > (unsigned)this->sendqmax)
348         {
349                 /* Fix by brain - Set the error text BEFORE calling writeopers, because
350                  * if we dont it'll recursively  call here over and over again trying
351                  * to repeatedly add the text to the sendq!
352                  */
353                 this->SetWriteError("SendQ exceeded");
354                 WriteOpers("*** User %s SendQ of %d exceeds connect class maximum of %d",this->nick,sendq.length() + data.length(),this->sendqmax);
355                 return;
356         }
357         std::stringstream stream;
358         stream << sendq << data;
359         sendq = stream.str();
360 }
361
362 // send AS MUCH OF THE USERS SENDQ as we are able to (might not be all of it)
363 void userrec::FlushWriteBuf()
364 {
365         if ((sendq.length()) && (this->fd != FD_MAGIC_NUMBER))
366         {
367                 char* tb = (char*)this->sendq.c_str();
368                 int n_sent = write(this->fd,tb,this->sendq.length());
369                 if (n_sent == -1)
370                 {
371                         this->SetWriteError(strerror(errno));
372                 }
373                 else
374                 {
375                         // advance the queue
376                         tb += n_sent;
377                         this->sendq = tb;
378                         // update the user's stats counters
379                         this->bytes_out += n_sent;
380                         this->cmds_out++;
381                 }
382         }
383 }
384
385 void userrec::SetWriteError(std::string error)
386 {
387         log(DEBUG,"Setting error string for %s to '%s'",this->nick,error.c_str());
388         // don't try to set the error twice, its already set take the first string.
389         if (this->WriteError == "")
390                 this->WriteError = error;
391 }
392
393 std::string userrec::GetWriteError()
394 {
395         return this->WriteError;
396 }
397
398 void AddOper(userrec* user)
399 {
400         log(DEBUG,"Oper added to optimization list");
401         all_opers.push_back(user);
402 }
403
404 void DeleteOper(userrec* user)
405 {
406         for (std::vector<userrec*>::iterator a = all_opers.begin(); a < all_opers.end(); a++)
407         {
408                 if (*a == user)
409                 {
410                         log(DEBUG,"Oper removed from optimization list");
411                         all_opers.erase(a);
412                         return;
413                 }
414         }
415 }
416
417 void kill_link(userrec *user,const char* r)
418 {
419         user_hash::iterator iter = clientlist.find(user->nick);
420
421         char reason[MAXBUF];
422
423         strlcpy(reason,r,MAXQUIT-1);
424
425         log(DEBUG,"kill_link: %s '%s'",user->nick,reason);
426         Write(user->fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,reason);
427         log(DEBUG,"closing fd %d",user->fd);
428
429         if (user->registered == 7) {
430                 purge_empty_chans(user);
431                 FOREACH_MOD(I_OnUserQuit,OnUserQuit(user,reason));
432                 WriteCommonExcept(user,"QUIT :%s",reason);
433         }
434
435         user->FlushWriteBuf();
436
437         FOREACH_MOD(I_OnUserDisconnect,OnUserDisconnect(user));
438
439         if (user->fd > -1)
440         {
441                 if (Config->GetIOHook(user->port))
442                 {
443                         try
444                         {
445                                 Config->GetIOHook(user->port)->OnRawSocketClose(user->fd);
446                         }
447                         catch (ModuleException& modexcept)
448                         {
449                                 log(DEBUG,"Module exception cought: %s",modexcept.GetReason());
450                         }
451                 }
452                 ServerInstance->SE->DelFd(user->fd);
453                 user->CloseSocket();
454         }
455
456         // this must come before the WriteOpers so that it doesnt try to fill their buffer with anything
457         // if they were an oper with +s.
458         if (user->registered == 7) {
459                 // fix by brain: only show local quits because we only show local connects (it just makes SENSE)
460                 if (user->fd > -1)
461                         WriteOpers("*** Client exiting: %s!%s@%s [%s]",user->nick,user->ident,user->host,reason);
462                 AddWhoWas(user);
463         }
464
465         if (iter != clientlist.end())
466         {
467                 log(DEBUG,"deleting user hash value %lx",(unsigned long)user);
468                 if (user->fd > -1)
469                 {
470                         fd_ref_table[user->fd] = NULL;
471                         if (find(local_users.begin(),local_users.end(),user) != local_users.end())
472                         {
473                                 local_users.erase(find(local_users.begin(),local_users.end(),user));
474                                 log(DEBUG,"Delete local user");
475                         }
476                 }
477                 clientlist.erase(iter);
478         }
479         delete user;
480 }
481
482 /* adds or updates an entry in the whowas list */
483 void AddWhoWas(userrec* u)
484 {
485         whowas_hash::iterator iter = whowas.find(u->nick);
486         WhoWasUser *a = new WhoWasUser();
487         strlcpy(a->nick,u->nick,NICKMAX-1);
488         strlcpy(a->ident,u->ident,IDENTMAX);
489         strlcpy(a->dhost,u->dhost,63);
490         strlcpy(a->host,u->host,63);
491         strlcpy(a->fullname,u->fullname,MAXGECOS);
492         if (u->server)
493                 strlcpy(a->server,u->server,256);
494         a->signon = u->signon;
495
496         /* MAX_WHOWAS:   max number of /WHOWAS items
497          * WHOWAS_STALE: number of hours before a WHOWAS item is marked as stale and
498          *               can be replaced by a newer one
499          */
500
501         if (iter == whowas.end())
502         {
503                 if (whowas.size() >= (unsigned)WHOWAS_MAX)
504                 {
505                         for (whowas_hash::iterator i = whowas.begin(); i != whowas.end(); i++)
506                         {
507                                 // 3600 seconds in an hour ;)
508                                 if ((i->second->signon)<(TIME-(WHOWAS_STALE*3600)))
509                                 {
510                                         // delete an old one
511                                         if (i->second) delete i->second;
512                                         whowas.erase(i);
513                                         // replace with new one
514                                         whowas[a->nick] = a;
515                                         log(DEBUG,"added WHOWAS entry, purged an old record");
516                                         return;
517                                 }
518                         }
519                         // no space left and user doesnt exist. Don't leave ram in use!
520                         delete a;
521                 }
522                 else
523                 {
524                         log(DEBUG,"added fresh WHOWAS entry");
525                         whowas[a->nick] = a;
526                 }
527         }
528         else
529         {
530                 log(DEBUG,"updated WHOWAS entry");
531                 if (iter->second) delete iter->second;
532                 iter->second = a;
533         }
534 }
535
536 /* add a client connection to the sockets list */
537 void AddClient(int socket, int port, bool iscached, in_addr ip4)
538 {
539         std::string tempnick = ConvToStr(socket) + "-unknown";
540         user_hash::iterator iter = clientlist.find(tempnick);
541         const char *ipaddr = inet_ntoa(ip4);
542         int j = 0;
543
544         // fix by brain.
545         // as these nicknames are 'RFC impossible', we can be sure nobody is going to be
546         // using one as a registered connection. As theyre per fd, we can also safely assume
547         // that we wont have collisions. Therefore, if the nick exists in the list, its only
548         // used by a dead socket, erase the iterator so that the new client may reclaim it.
549         // this was probably the cause of 'server ignores me when i hammer it with reconnects'
550         // issue in earlier alphas/betas
551         if (iter != clientlist.end())
552         {
553                 userrec* goner = iter->second;
554                 delete goner;
555                 clientlist.erase(iter);
556         }
557
558         log(DEBUG,"AddClient: %d %d %s",socket,port,ipaddr);
559         
560         clientlist[tempnick] = new userrec();
561         clientlist[tempnick]->fd = socket;
562         strlcpy(clientlist[tempnick]->nick,tempnick.c_str(),NICKMAX-1);
563
564         /* Smarter than your average bear^H^H^H^Hset of strlcpys. */
565         for (char* temp = (char*)ipaddr; *temp && j < 64; temp++, j++)
566                 clientlist[tempnick]->dhost[j] = clientlist[tempnick]->host[j] = *temp;
567         clientlist[tempnick]->dhost[j] = clientlist[tempnick]->host[j] = 0;
568
569         clientlist[tempnick]->server = (char*)FindServerNamePtr(Config->ServerName);
570         /* We don't need range checking here, we KNOW 'unknown\0' will fit into the ident field. */
571         strcpy(clientlist[tempnick]->ident, "unknown");
572
573         clientlist[tempnick]->registered = 0;
574         clientlist[tempnick]->signon = TIME + Config->dns_timeout;
575         clientlist[tempnick]->lastping = 1;
576         clientlist[tempnick]->ip4 = ip4;
577         clientlist[tempnick]->port = port;
578
579         // set the registration timeout for this user
580         unsigned long class_regtimeout = 90;
581         int class_flood = 0;
582         long class_threshold = 5;
583         long class_sqmax = 262144;      // 256kb
584         long class_rqmax = 4096;        // 4k
585
586         for (ClassVector::iterator i = Config->Classes.begin(); i != Config->Classes.end(); i++)
587         {
588                 if ((i->type == CC_ALLOW) && (match(ipaddr,i->host.c_str())))
589                 {
590                         class_regtimeout = (unsigned long)i->registration_timeout;
591                         class_flood = i->flood;
592                         clientlist[tempnick]->pingmax = i->pingtime;
593                         class_threshold = i->threshold;
594                         class_sqmax = i->sendqmax;
595                         class_rqmax = i->recvqmax;
596                         break;
597                 }
598         }
599
600         clientlist[tempnick]->nping = TIME+clientlist[tempnick]->pingmax + Config->dns_timeout;
601         clientlist[tempnick]->timeout = TIME+class_regtimeout;
602         clientlist[tempnick]->flood = class_flood;
603         clientlist[tempnick]->threshold = class_threshold;
604         clientlist[tempnick]->sendqmax = class_sqmax;
605         clientlist[tempnick]->recvqmax = class_rqmax;
606
607         ucrec a;
608         a.channel = NULL;
609         a.uc_modes = 0;
610         clientlist[tempnick]->chans.resize(MAXCHANS);
611
612         fd_ref_table[socket] = clientlist[tempnick];
613         local_users.push_back(clientlist[tempnick]);
614
615         if (local_users.size() > Config->SoftLimit)
616         {
617                 kill_link(clientlist[tempnick],"No more connections allowed");
618                 return;
619         }
620
621         if (local_users.size() >= MAXCLIENTS)
622         {
623                 kill_link(clientlist[tempnick],"No more connections allowed");
624                 return;
625         }
626
627         // this is done as a safety check to keep the file descriptors within range of fd_ref_table.
628         // its a pretty big but for the moment valid assumption:
629         // file descriptors are handed out starting at 0, and are recycled as theyre freed.
630         // therefore if there is ever an fd over 65535, 65536 clients must be connected to the
631         // irc server at once (or the irc server otherwise initiating this many connections, files etc)
632         // which for the time being is a physical impossibility (even the largest networks dont have more
633         // than about 10,000 users on ONE server!)
634         if ((unsigned)socket >= MAX_DESCRIPTORS)
635         {
636                 kill_link(clientlist[tempnick],"Server is full");
637                 return;
638         }
639         char* e = matches_exception(ipaddr);
640         if (!e)
641         {
642                 char* r = matches_zline(ipaddr);
643                 if (r)
644                 {
645                         char reason[MAXBUF];
646                         snprintf(reason,MAXBUF,"Z-Lined: %s",r);
647                         kill_link(clientlist[tempnick],reason);
648                         return;
649                 }
650         }
651
652         ServerInstance->SE->AddFd(socket,true,X_ESTAB_CLIENT);
653
654         WriteServ(clientlist[tempnick]->fd,"NOTICE Auth :*** Looking up your hostname...");
655 }
656
657 long FindMatchingGlobal(userrec* user)
658 {
659         long x = 0;
660         for (user_hash::const_iterator a = clientlist.begin(); a != clientlist.end(); a++)
661         {
662                 if (a->second->ip4.s_addr == user->ip4.s_addr)
663                         x++;
664         }
665         return x;
666 }
667
668 long FindMatchingLocal(userrec* user)
669 {
670         long x = 0;
671         for (std::vector<userrec*>::const_iterator a = local_users.begin(); a != local_users.end(); a++)
672         {
673                 userrec* comp = (userrec*)(*a);
674                 if (comp->ip4.s_addr == user->ip4.s_addr)
675                         x++;
676         }
677         return x;
678 }
679
680 void FullConnectUser(userrec* user, CullList* Goners)
681 {
682         ServerInstance->stats->statsConnects++;
683         user->idle_lastmsg = TIME;
684         log(DEBUG,"ConnectUser: %s",user->nick);
685
686         ConnectClass a = GetClass(user);
687         
688         if (a.type == CC_DENY)
689         {
690                 Goners->AddItem(user,"Unauthorised connection");
691                 return;
692         }
693         if ((*(a.pass.c_str())) && (!user->haspassed))
694         {
695                 Goners->AddItem(user,"Invalid password");
696                 return;
697         }
698         if (FindMatchingLocal(user) > a.maxlocal)
699         {
700                 Goners->AddItem(user,"No more connections allowed from your host via this connect class (local)");
701                 WriteOpers("*** WARNING: maximum LOCAL connections (%ld) exceeded for IP %s",a.maxlocal,(char*)inet_ntoa(user->ip4));
702                 return;
703         }
704         else if (FindMatchingGlobal(user) > a.maxglobal)
705         {
706                 Goners->AddItem(user,"No more connections allowed from your host via this connect class (global)");
707                 WriteOpers("*** WARNING: maximum GLOBAL connections (%ld) exceeded for IP %s",a.maxglobal,(char*)inet_ntoa(user->ip4));
708                 return;
709         }
710
711         char match_against[MAXBUF];
712         snprintf(match_against,MAXBUF,"%s@%s",user->ident,user->host);
713         char* e = matches_exception(match_against);
714         if (!e)
715         {
716                 char* r = matches_gline(match_against);
717                 if (r)
718                 {
719                         char reason[MAXBUF];
720                         snprintf(reason,MAXBUF,"G-Lined: %s",r);
721                         Goners->AddItem(user,reason);
722                         return;
723                 }
724                 r = matches_kline(user->host);
725                 if (r)
726                 {
727                         char reason[MAXBUF];
728                         snprintf(reason,MAXBUF,"K-Lined: %s",r);
729                         Goners->AddItem(user,reason);
730                         return;
731                 }
732         }
733
734
735         WriteServ(user->fd,"NOTICE Auth :Welcome to \002%s\002!",Config->Network);
736         WriteServ(user->fd,"001 %s :Welcome to the %s IRC Network %s!%s@%s",user->nick,Config->Network,user->nick,user->ident,user->host);
737         WriteServ(user->fd,"002 %s :Your host is %s, running version %s",user->nick,Config->ServerName,VERSION);
738         WriteServ(user->fd,"003 %s :This server was created %s %s",user->nick,__TIME__,__DATE__);
739         WriteServ(user->fd,"004 %s %s %s iowghrasxRVSCWBG lvhopsmntikrcaqbegIOLQRSKVHGCNT vhobeIaqglk",user->nick,Config->ServerName,VERSION);
740         // anfl @ #ratbox, efnet reminded me that according to the RFC this cant contain more than 13 tokens per line...
741         // so i'd better split it :)
742         std::stringstream out(Config->data005);
743         std::string token = "";
744         std::string line5 = "";
745         int token_counter = 0;
746         while (!out.eof())
747         {
748                 out >> token;
749                 line5 = line5 + token + " ";
750                 token_counter++;
751                 if ((token_counter >= 13) || (out.eof() == true))
752                 {
753                         WriteServ(user->fd,"005 %s %s:are supported by this server",user->nick,line5.c_str());
754                         line5 = "";
755                         token_counter = 0;
756                 }
757         }
758         ShowMOTD(user);
759
760         // fix 3 by brain, move registered = 7 below these so that spurious modes and host changes dont go out
761         // onto the network and produce 'fake direction'
762         FOREACH_MOD(I_OnUserConnect,OnUserConnect(user));
763         FOREACH_MOD(I_OnGlobalConnect,OnGlobalConnect(user));
764         user->registered = 7;
765         WriteOpers("*** Client connecting on port %lu: %s!%s@%s [%s]",(unsigned long)user->port,user->nick,user->ident,user->host,(char*)inet_ntoa(user->ip4));
766 }
767
768 /* re-allocates a nick in the user_hash after they change nicknames,
769  * returns a pointer to the new user as it may have moved */
770
771 userrec* ReHashNick(char* Old, char* New)
772 {
773         //user_hash::iterator newnick;
774         user_hash::iterator oldnick = clientlist.find(Old);
775
776         log(DEBUG,"ReHashNick: %s %s",Old,New);
777
778         if (!strcasecmp(Old,New))
779         {
780                 log(DEBUG,"old nick is new nick, skipping");
781                 return oldnick->second;
782         }
783
784         if (oldnick == clientlist.end()) return NULL; /* doesnt exist */
785
786         log(DEBUG,"ReHashNick: Found hashed nick %s",Old);
787
788         userrec* olduser = oldnick->second;
789         clientlist[New] = olduser;
790         clientlist.erase(oldnick);
791
792         log(DEBUG,"ReHashNick: Nick rehashed as %s",New);
793
794         return clientlist[New];
795 }
796
797 void force_nickchange(userrec* user,const char* newnick)
798 {
799         char nick[MAXBUF];
800         int MOD_RESULT = 0;
801
802         *nick = 0;
803
804         FOREACH_RESULT(I_OnUserPreNick,OnUserPreNick(user,newnick));
805         if (MOD_RESULT) {
806                 ServerInstance->stats->statsCollisions++;
807                 kill_link(user,"Nickname collision");
808                 return;
809         }
810         if (matches_qline(newnick))
811         {
812                 ServerInstance->stats->statsCollisions++;
813                 kill_link(user,"Nickname collision");
814                 return;
815         }
816
817         if (user)
818         {
819                 if (newnick)
820                 {
821                         strlcpy(nick,newnick,MAXBUF-1);
822                 }
823                 if (user->registered == 7)
824                 {
825                         char* pars[1];
826                         pars[0] = nick;
827                         std::string cmd = "NICK";
828                         ServerInstance->Parser->CallHandler(cmd,pars,1,user);
829                 }
830         }
831 }
832