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