]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/users.cpp
2d53ea37472c40578f1dee70ed3ac1e3a1a574e2
[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] = sstrdup(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] = sstrdup(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* CommandList;
237         char* mycmd;
238         char* savept;
239         char* savept2;
240         char* Classes;
241         
242         // users on remote servers can completely bypass
243         // all permissions based checks.
244         // This prevents desyncs when one server has different
245         // type/class tags to another.
246         if (!IS_LOCAL(this))
247                 return true;
248         
249         // are they even an oper at all?
250         if (*this->oper)
251         {
252                 opertype_t::iterator iter_opertype = opertypes.find(this->oper);
253                 if (iter_opertype != opertypes.end())
254                 {
255                         Classes = iter_opertype->second;
256                         char* myclass = strtok_r(Classes," ",&savept);
257                         while (myclass)
258                         {
259                                 operclass_t::iterator iter_operclass = operclass.find(myclass);
260                                 if (iter_operclass != operclass.end())
261                                 {
262                                         char* CommandList = iter_operclass->second;
263                                         mycmd = strtok_r(CommandList," ",&savept2);
264                                         while (mycmd)
265                                         {
266                                                 if ((!strcasecmp(mycmd,command.c_str())) || (*mycmd == '*'))
267                                                 {
268                                                         return true;
269                                                 }
270                                                 mycmd = strtok_r(NULL," ",&savept2);
271                                         }
272                                 }
273                                 myclass = strtok_r(NULL," ",&savept);
274                         }
275                 }
276         }
277         return false;
278 }
279
280
281 bool userrec::AddBuffer(std::string a)
282 {
283         std::string b = "";
284         for (unsigned int i = 0; i < a.length(); i++)
285                 if ((a[i] != '\r') && (a[i] != '\0') && (a[i] != 7))
286                         b = b + a[i];
287         std::stringstream stream(recvq);
288         stream << b;
289         recvq = stream.str();
290         unsigned int i = 0;
291         // count the size of the first line in the buffer.
292         while (i < recvq.length())
293         {
294                 if (recvq[i++] == '\n')
295                         break;
296         }
297         if (recvq.length() > (unsigned)this->recvqmax)
298         {
299                 this->SetWriteError("RecvQ exceeded");
300                 WriteOpers("*** User %s RecvQ of %d exceeds connect class maximum of %d",this->nick,recvq.length(),this->recvqmax);
301         }
302         // return false if we've had more than 600 characters WITHOUT
303         // a carriage return (this is BAD, drop the socket)
304         return (i < 600);
305 }
306
307 bool userrec::BufferIsReady()
308 {
309         unsigned int t = recvq.length();
310         for (unsigned int i = 0; i < t; i++)
311                 if (recvq[i] == '\n')
312                         return true;
313         return false;
314 }
315
316 void userrec::ClearBuffer()
317 {
318         recvq = "";
319 }
320
321 std::string userrec::GetBuffer()
322 {
323         if (recvq == "")
324                 return "";
325         char* line = (char*)recvq.c_str();
326         std::string ret = "";
327         while ((*line != '\n') && (*line))
328         {
329                 ret = ret + *line;
330                 line++;
331         }
332         if ((*line == '\n') || (*line == '\r'))
333                 line++;
334         recvq = line;
335         return ret;
336 }
337
338 void userrec::AddWriteBuf(std::string data)
339 {
340         if (this->GetWriteError() != "")
341                 return;
342         if (sendq.length() + data.length() > (unsigned)this->sendqmax)
343         {
344                 /* Fix by brain - Set the error text BEFORE calling writeopers, because
345                  * if we dont it'll recursively  call here over and over again trying
346                  * to repeatedly add the text to the sendq!
347                  */
348                 this->SetWriteError("SendQ exceeded");
349                 WriteOpers("*** User %s SendQ of %d exceeds connect class maximum of %d",this->nick,sendq.length() + data.length(),this->sendqmax);
350                 return;
351         }
352         std::stringstream stream;
353         stream << sendq << data;
354         sendq = stream.str();
355 }
356
357 // send AS MUCH OF THE USERS SENDQ as we are able to (might not be all of it)
358 void userrec::FlushWriteBuf()
359 {
360         if ((sendq.length()) && (this->fd != FD_MAGIC_NUMBER))
361         {
362                 char* tb = (char*)this->sendq.c_str();
363                 int n_sent = write(this->fd,tb,this->sendq.length());
364                 if (n_sent == -1)
365                 {
366                         this->SetWriteError(strerror(errno));
367                 }
368                 else
369                 {
370                         // advance the queue
371                         tb += n_sent;
372                         this->sendq = tb;
373                         // update the user's stats counters
374                         this->bytes_out += n_sent;
375                         this->cmds_out++;
376                 }
377         }
378 }
379
380 void userrec::SetWriteError(std::string error)
381 {
382         log(DEBUG,"Setting error string for %s to '%s'",this->nick,error.c_str());
383         // don't try to set the error twice, its already set take the first string.
384         if (this->WriteError == "")
385                 this->WriteError = error;
386 }
387
388 std::string userrec::GetWriteError()
389 {
390         return this->WriteError;
391 }
392
393 void AddOper(userrec* user)
394 {
395         log(DEBUG,"Oper added to optimization list");
396         all_opers.push_back(user);
397 }
398
399 void DeleteOper(userrec* user)
400 {
401         for (std::vector<userrec*>::iterator a = all_opers.begin(); a < all_opers.end(); a++)
402         {
403                 if (*a == user)
404                 {
405                         log(DEBUG,"Oper removed from optimization list");
406                         all_opers.erase(a);
407                         return;
408                 }
409         }
410 }
411
412 void kill_link(userrec *user,const char* r)
413 {
414         user_hash::iterator iter = clientlist.find(user->nick);
415
416         char reason[MAXBUF];
417
418         strlcpy(reason,r,MAXBUF-1);
419
420         if (strlen(reason)>MAXQUIT)
421         {
422                 reason[MAXQUIT-1] = '\0';
423         }
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         for (int i = 0; i < MAXCHANS; i++)
611                 clientlist[tempnick]->chans.push_back(a);
612
613         fd_ref_table[socket] = clientlist[tempnick];
614         local_users.push_back(clientlist[tempnick]);
615
616         if (local_users.size() > Config->SoftLimit)
617         {
618                 kill_link(clientlist[tempnick],"No more connections allowed");
619                 return;
620         }
621
622         if (local_users.size() >= MAXCLIENTS)
623         {
624                 kill_link(clientlist[tempnick],"No more connections allowed");
625                 return;
626         }
627
628         // this is done as a safety check to keep the file descriptors within range of fd_ref_table.
629         // its a pretty big but for the moment valid assumption:
630         // file descriptors are handed out starting at 0, and are recycled as theyre freed.
631         // therefore if there is ever an fd over 65535, 65536 clients must be connected to the
632         // irc server at once (or the irc server otherwise initiating this many connections, files etc)
633         // which for the time being is a physical impossibility (even the largest networks dont have more
634         // than about 10,000 users on ONE server!)
635         if ((unsigned)socket >= MAX_DESCRIPTORS)
636         {
637                 kill_link(clientlist[tempnick],"Server is full");
638                 return;
639         }
640         char* e = matches_exception(ipaddr);
641         if (!e)
642         {
643                 char* r = matches_zline(ipaddr);
644                 if (r)
645                 {
646                         char reason[MAXBUF];
647                         snprintf(reason,MAXBUF,"Z-Lined: %s",r);
648                         kill_link(clientlist[tempnick],reason);
649                         return;
650                 }
651         }
652
653         ServerInstance->SE->AddFd(socket,true,X_ESTAB_CLIENT);
654
655         WriteServ(clientlist[tempnick]->fd,"NOTICE Auth :*** Looking up your hostname...");
656 }
657
658 long FindMatchingGlobal(userrec* user)
659 {
660         long x = 0;
661         for (user_hash::const_iterator a = clientlist.begin(); a != clientlist.end(); a++)
662         {
663                 if (a->second->ip4.s_addr == user->ip4.s_addr)
664                         x++;
665         }
666         return x;
667 }
668
669 long FindMatchingLocal(userrec* user)
670 {
671         long x = 0;
672         for (std::vector<userrec*>::const_iterator a = local_users.begin(); a != local_users.end(); a++)
673         {
674                 userrec* comp = (userrec*)(*a);
675                 if (comp->ip4.s_addr == user->ip4.s_addr)
676                         x++;
677         }
678         return x;
679 }
680
681 void FullConnectUser(userrec* user, CullList* Goners)
682 {
683         ServerInstance->stats->statsConnects++;
684         user->idle_lastmsg = TIME;
685         log(DEBUG,"ConnectUser: %s",user->nick);
686
687         ConnectClass a = GetClass(user);
688         
689         if (a.type == CC_DENY)
690         {
691                 Goners->AddItem(user,"Unauthorised connection");
692                 return;
693         }
694         if ((*(a.pass.c_str())) && (!user->haspassed))
695         {
696                 Goners->AddItem(user,"Invalid password");
697                 return;
698         }
699         if (FindMatchingLocal(user) > a.maxlocal)
700         {
701                 Goners->AddItem(user,"No more connections allowed from your host via this connect class (local)");
702                 WriteOpers("*** WARNING: maximum LOCAL connections (%ld) exceeded for IP %s",a.maxlocal,(char*)inet_ntoa(user->ip4));
703                 return;
704         }
705         else if (FindMatchingGlobal(user) > a.maxglobal)
706         {
707                 Goners->AddItem(user,"No more connections allowed from your host via this connect class (global)");
708                 WriteOpers("*** WARNING: maximum GLOBAL connections (%ld) exceeded for IP %s",a.maxglobal,(char*)inet_ntoa(user->ip4));
709                 return;
710         }
711
712         char match_against[MAXBUF];
713         snprintf(match_against,MAXBUF,"%s@%s",user->ident,user->host);
714         char* e = matches_exception(match_against);
715         if (!e)
716         {
717                 char* r = matches_gline(match_against);
718                 if (r)
719                 {
720                         char reason[MAXBUF];
721                         snprintf(reason,MAXBUF,"G-Lined: %s",r);
722                         Goners->AddItem(user,reason);
723                         return;
724                 }
725                 r = matches_kline(user->host);
726                 if (r)
727                 {
728                         char reason[MAXBUF];
729                         snprintf(reason,MAXBUF,"K-Lined: %s",r);
730                         Goners->AddItem(user,reason);
731                         return;
732                 }
733         }
734
735
736         WriteServ(user->fd,"NOTICE Auth :Welcome to \002%s\002!",Config->Network);
737         WriteServ(user->fd,"001 %s :Welcome to the %s IRC Network %s!%s@%s",user->nick,Config->Network,user->nick,user->ident,user->host);
738         WriteServ(user->fd,"002 %s :Your host is %s, running version %s",user->nick,Config->ServerName,VERSION);
739         WriteServ(user->fd,"003 %s :This server was created %s %s",user->nick,__TIME__,__DATE__);
740         WriteServ(user->fd,"004 %s %s %s iowghrasxRVSCWBG lvhopsmntikrcaqbegIOLQRSKVHGCNT vhobeIaqglk",user->nick,Config->ServerName,VERSION);
741         // anfl @ #ratbox, efnet reminded me that according to the RFC this cant contain more than 13 tokens per line...
742         // so i'd better split it :)
743         std::stringstream out(Config->data005);
744         std::string token = "";
745         std::string line5 = "";
746         int token_counter = 0;
747         while (!out.eof())
748         {
749                 out >> token;
750                 line5 = line5 + token + " ";
751                 token_counter++;
752                 if ((token_counter >= 13) || (out.eof() == true))
753                 {
754                         WriteServ(user->fd,"005 %s %s:are supported by this server",user->nick,line5.c_str());
755                         line5 = "";
756                         token_counter = 0;
757                 }
758         }
759         ShowMOTD(user);
760
761         // fix 3 by brain, move registered = 7 below these so that spurious modes and host changes dont go out
762         // onto the network and produce 'fake direction'
763         FOREACH_MOD(I_OnUserConnect,OnUserConnect(user));
764         FOREACH_MOD(I_OnGlobalConnect,OnGlobalConnect(user));
765         user->registered = 7;
766         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));
767 }
768
769 /* re-allocates a nick in the user_hash after they change nicknames,
770  * returns a pointer to the new user as it may have moved */
771
772 userrec* ReHashNick(char* Old, char* New)
773 {
774         //user_hash::iterator newnick;
775         user_hash::iterator oldnick = clientlist.find(Old);
776
777         log(DEBUG,"ReHashNick: %s %s",Old,New);
778
779         if (!strcasecmp(Old,New))
780         {
781                 log(DEBUG,"old nick is new nick, skipping");
782                 return oldnick->second;
783         }
784
785         if (oldnick == clientlist.end()) return NULL; /* doesnt exist */
786
787         log(DEBUG,"ReHashNick: Found hashed nick %s",Old);
788
789         userrec* olduser = oldnick->second;
790         clientlist[New] = olduser;
791         clientlist.erase(oldnick);
792
793         log(DEBUG,"ReHashNick: Nick rehashed as %s",New);
794
795         return clientlist[New];
796 }
797
798 void force_nickchange(userrec* user,const char* newnick)
799 {
800         char nick[MAXBUF];
801         int MOD_RESULT = 0;
802
803         *nick = 0;
804
805         FOREACH_RESULT(I_OnUserPreNick,OnUserPreNick(user,newnick));
806         if (MOD_RESULT) {
807                 ServerInstance->stats->statsCollisions++;
808                 kill_link(user,"Nickname collision");
809                 return;
810         }
811         if (matches_qline(newnick))
812         {
813                 ServerInstance->stats->statsCollisions++;
814                 kill_link(user,"Nickname collision");
815                 return;
816         }
817
818         if (user)
819         {
820                 if (newnick)
821                 {
822                         strlcpy(nick,newnick,MAXBUF-1);
823                 }
824                 if (user->registered == 7)
825                 {
826                         char* pars[1];
827                         pars[0] = nick;
828                         std::string cmd = "NICK";
829                         ServerInstance->Parser->CallHandler(cmd,pars,1,user);
830                 }
831         }
832 }
833