]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/users.cpp
Annnd, get the fix right.
[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 <stdarg.h>
24 #include "inspstring.h"
25 #include "commands.h"
26
27 #include "typedefs.h"
28 #include "socketengine.h"
29 #include "hashcomp.h"
30 #include "wildcard.h"
31 #include "xline.h"
32 #include "cull_list.h"
33
34 irc::whowas::whowas_users whowas;
35 static unsigned long already_sent[MAX_DESCRIPTORS] = {0};
36
37 typedef std::map<irc::string,char*> opertype_t;
38 typedef opertype_t operclass_t;
39
40 opertype_t opertypes;
41 operclass_t operclass;
42
43 /* XXX: Used for speeding up WriteCommon operations */
44 unsigned long uniq_id = 0;
45
46 bool InitTypes(ServerConfig* conf, const char* tag)
47 {
48         for (opertype_t::iterator n = opertypes.begin(); n != opertypes.end(); n++)
49         {
50                 if (n->second)
51                         delete[] n->second;
52         }
53         
54         opertypes.clear();
55         return true;
56 }
57
58 bool InitClasses(ServerConfig* conf, const char* tag)
59 {
60         for (operclass_t::iterator n = operclass.begin(); n != operclass.end(); n++)
61         {
62                 if (n->second)
63                         delete[] n->second;
64         }
65         
66         operclass.clear();
67         return true;
68 }
69
70 bool DoType(ServerConfig* conf, const char* tag, char** entries, void** values, int* types)
71 {
72         char* TypeName = (char*)values[0];
73         char* Classes = (char*)values[1];
74         
75         opertypes[TypeName] = strdup(Classes);
76         conf->GetInstance()->Log(DEBUG,"Read oper TYPE '%s' with classes '%s'",TypeName,Classes);
77         return true;
78 }
79
80 bool DoClass(ServerConfig* conf, const char* tag, char** entries, void** values, int* types)
81 {
82         char* ClassName = (char*)values[0];
83         char* CommandList = (char*)values[1];
84         
85         operclass[ClassName] = strdup(CommandList);
86         conf->GetInstance()->Log(DEBUG,"Read oper CLASS '%s' with commands '%s'",ClassName,CommandList);
87         return true;
88 }
89
90 bool DoneClassesAndTypes(ServerConfig* conf, const char* tag)
91 {
92         return true;
93 }
94
95 std::string userrec::ProcessNoticeMasks(const char *sm)
96 {
97         bool adding = true, oldadding = false;
98         const char *c = sm;
99         std::string output = "";
100
101         ServerInstance->Log(DEBUG,"Process notice masks");
102
103         while (c && *c)
104         {
105                 ServerInstance->Log(DEBUG,"Process notice mask %c",*c);
106                 
107                 switch (*c)
108                 {
109                         case '+':
110                                 adding = true;
111                         break;
112                         case '-':
113                                 adding = false;
114                         break;
115                         default:
116                                 if ((*c >= 'A') && (*c <= 'z') && (ServerInstance->SNO->IsEnabled(*c)))
117                                 {
118                                         if ((!IsNoticeMaskSet(*c) && adding) || (IsNoticeMaskSet(*c) && !adding))
119                                         {
120                                                 if ((oldadding != adding) || (!output.length()))
121                                                         output += (adding ? '+' : '-');
122
123                                                 this->SetNoticeMask(*c, adding);
124
125                                                 output += *c;
126                                         }
127                                 }
128                                 oldadding = adding;
129                         break;
130                 }
131
132                 *c++;
133         }
134
135         return output;
136 }
137
138 void userrec::StartDNSLookup()
139 {
140         ServerInstance->Log(DEBUG,"Commencing reverse lookup");
141         try
142         {
143                 ServerInstance->Log(DEBUG,"Passing instance: %08x",this->ServerInstance);
144                 res_reverse = new UserResolver(this->ServerInstance, this, this->GetIPString(), false);
145                 this->ServerInstance->AddResolver(res_reverse);
146         }
147         catch (ModuleException& e)
148         {
149                 ServerInstance->Log(DEBUG,"Error in resolver: %s",e.GetReason());
150         }
151 }
152
153 UserResolver::UserResolver(InspIRCd* Instance, userrec* user, std::string to_resolve, bool forward) :
154         Resolver(Instance, to_resolve, forward ? DNS_QUERY_FORWARD : DNS_QUERY_REVERSE), bound_user(user)
155 {
156         this->fwd = forward;
157         this->bound_fd = user->GetFd();
158 }
159
160 void UserResolver::OnLookupComplete(const std::string &result)
161 {
162         if ((!this->fwd) && (ServerInstance->SE->GetRef(this->bound_fd) == this->bound_user))
163         {
164                 ServerInstance->Log(DEBUG,"Commencing forward lookup");
165                 this->bound_user->stored_host = result;
166                 try
167                 {
168                         /* Check we didnt time out */
169                         if (this->bound_user->registered != REG_ALL)
170                         {
171                                 bound_user->res_forward = new UserResolver(this->ServerInstance, this->bound_user, result, true);
172                                 this->ServerInstance->AddResolver(bound_user->res_forward);
173                         }
174                 }
175                 catch (ModuleException& e)
176                 {
177                         ServerInstance->Log(DEBUG,"Error in resolver: %s",e.GetReason());
178                 }
179         }
180         else if ((this->fwd) && (ServerInstance->SE->GetRef(this->bound_fd) == this->bound_user))
181         {
182                 /* Both lookups completed */
183                 if (this->bound_user->GetIPString() == result)
184                 {
185                         std::string hostname = this->bound_user->stored_host;
186                         if (hostname.length() < 65)
187                         {
188                                 /* Check we didnt time out */
189                                 if (this->bound_user->registered != REG_ALL)
190                                 {
191                                         /* Hostnames starting with : are not a good thing (tm) */
192                                         if (*(hostname.c_str()) == ':')
193                                                 hostname = "0" + hostname;
194
195                                         this->bound_user->WriteServ("NOTICE Auth :*** Found your hostname (%s)", hostname.c_str());
196                                         this->bound_user->dns_done = true;
197                                         strlcpy(this->bound_user->dhost, hostname.c_str(),64);
198                                         strlcpy(this->bound_user->host, hostname.c_str(),64);
199                                 }
200                         }
201                         else
202                         {
203                                 this->bound_user->WriteServ("NOTICE Auth :*** Your hostname is longer than the maximum of 64 characters, using your IP address (%s) instead.", this->bound_user->GetIPString());
204                         }
205                 }
206                 else
207                 {
208                         this->bound_user->WriteServ("NOTICE Auth :*** Your hostname does not match up with your IP address. Sorry, using your IP address (%s) instead.", this->bound_user->GetIPString());
209                 }
210         }
211 }
212
213 void UserResolver::OnError(ResolverError e, const std::string &errormessage)
214 {
215         if (ServerInstance->SE->GetRef(this->bound_fd) == this->bound_user)
216         {
217                 /* Error message here */
218                 this->bound_user->WriteServ("NOTICE Auth :*** Could not resolve your hostname, using your IP address (%s) instead.", this->bound_user->GetIPString());
219                 this->bound_user->dns_done = true;
220         }
221 }
222
223
224 bool userrec::IsNoticeMaskSet(unsigned char sm)
225 {
226         return (snomasks[sm-65]);
227 }
228
229 void userrec::SetNoticeMask(unsigned char sm, bool value)
230 {
231         snomasks[sm-65] = value;
232 }
233
234 const char* userrec::FormatNoticeMasks()
235 {
236         static char data[MAXBUF];
237         int offset = 0;
238
239         for (int n = 0; n < 64; n++)
240         {
241                 if (snomasks[n])
242                         data[offset++] = n+65;
243         }
244
245         data[offset] = 0;
246         return data;
247 }
248
249
250
251 bool userrec::IsModeSet(unsigned char m)
252 {
253         return (modes[m-65]);
254 }
255
256 void userrec::SetMode(unsigned char m, bool value)
257 {
258         modes[m-65] = value;
259 }
260
261 const char* userrec::FormatModes()
262 {
263         static char data[MAXBUF];
264         int offset = 0;
265         for (int n = 0; n < 64; n++)
266         {
267                 if (modes[n])
268                         data[offset++] = n+65;
269         }
270         data[offset] = 0;
271         return data;
272 }
273
274 userrec::userrec(InspIRCd* Instance) : ServerInstance(Instance)
275 {
276         ServerInstance->Log(DEBUG,"userrec::userrec(): Instance: %08x",ServerInstance);
277         // the PROPER way to do it, AVOID bzero at *ALL* costs
278         *password = *nick = *ident = *host = *dhost = *fullname = *awaymsg = *oper = 0;
279         server = (char*)Instance->FindServerNamePtr(Instance->Config->ServerName);
280         reset_due = ServerInstance->Time();
281         lines_in = lastping = signon = idle_lastmsg = nping = registered = 0;
282         timeout = flood = bytes_in = bytes_out = cmds_in = cmds_out = 0;
283         haspassed = dns_done = false;
284         fd = -1;
285         recvq = "";
286         sendq = "";
287         WriteError = "";
288         res_forward = res_reverse = NULL;
289         ip = NULL;
290         chans.clear();
291         invites.clear();
292         chans.resize(MAXCHANS);
293         memset(modes,0,sizeof(modes));
294         memset(snomasks,0,sizeof(snomasks));
295         
296         for (unsigned int n = 0; n < MAXCHANS; n++)
297         {
298                 ucrec* x = new ucrec();
299                 chans[n] = x;
300                 x->channel = NULL;
301                 x->uc_modes = 0;
302         }
303 }
304
305 userrec::~userrec()
306 {
307         for (std::vector<ucrec*>::iterator n = chans.begin(); n != chans.end(); n++)
308         {
309                 ucrec* x = (ucrec*)*n;
310                 delete x;
311         }
312
313         if (ip)
314         {
315                 if (this->GetProtocolFamily() == AF_INET)
316                 {
317                         delete (sockaddr_in*)ip;
318                 }
319 #ifdef SUPPORT_IP6LINKS
320                 else
321                 {
322                         delete (sockaddr_in6*)ip;
323                 }
324 #endif
325         }
326 }
327
328 /* XXX - minor point, other *Host functions return a char *, this one creates it. Might be nice to be consistant? */
329 void userrec::MakeHost(char* nhost)
330 {
331         /* This is much faster than snprintf */
332         char* t = nhost;
333         for(char* n = ident; *n; n++)
334                 *t++ = *n;
335         *t++ = '@';
336         for(char* n = host; *n; n++)
337                 *t++ = *n;
338         *t = 0;
339 }
340
341 void userrec::CloseSocket()
342 {
343         shutdown(this->fd,2);
344         close(this->fd);
345 }
346  
347 char* userrec::GetFullHost()
348 {
349         static char result[MAXBUF];
350         char* t = result;
351         for(char* n = nick; *n; n++)
352                 *t++ = *n;
353         *t++ = '!';
354         for(char* n = ident; *n; n++)
355                 *t++ = *n;
356         *t++ = '@';
357         for(char* n = dhost; *n; n++)
358                 *t++ = *n;
359         *t = 0;
360         return result;
361 }
362
363 char* userrec::MakeWildHost()
364 {
365         static char nresult[MAXBUF];
366         char* t = nresult;
367         *t++ = '*';     *t++ = '!';
368         *t++ = '*';     *t++ = '@';
369         for(char* n = dhost; *n; n++)
370                 *t++ = *n;
371         *t = 0;
372         return nresult;
373 }
374
375 int userrec::ReadData(void* buffer, size_t size)
376 {
377         if (this->fd > -1)
378         {
379                 return read(this->fd, buffer, size);
380         }
381         else
382                 return 0;
383 }
384
385
386 char* userrec::GetFullRealHost()
387 {
388         static char fresult[MAXBUF];
389         char* t = fresult;
390         for(char* n = nick; *n; n++)
391                 *t++ = *n;
392         *t++ = '!';
393         for(char* n = ident; *n; n++)
394                 *t++ = *n;
395         *t++ = '@';
396         for(char* n = host; *n; n++)
397                 *t++ = *n;
398         *t = 0;
399         return fresult;
400 }
401
402 bool userrec::IsInvited(irc::string &channel)
403 {
404         for (InvitedList::iterator i = invites.begin(); i != invites.end(); i++)
405         {
406                 irc::string compare = i->channel;
407                 
408                 if (compare == channel)
409                 {
410                         return true;
411                 }
412         }
413         return false;
414 }
415
416 InvitedList* userrec::GetInviteList()
417 {
418         return &invites;
419 }
420
421 void userrec::InviteTo(irc::string &channel)
422 {
423         Invited i;
424         i.channel = channel;
425         invites.push_back(i);
426 }
427
428 void userrec::RemoveInvite(irc::string &channel)
429 {
430         ServerInstance->Log(DEBUG,"Removing invites");
431         
432         if (invites.size())
433         {
434                 for (InvitedList::iterator i = invites.begin(); i != invites.end(); i++)
435                 {
436                         irc::string compare = i->channel;
437                         
438                         if (compare == channel)
439                         {
440                                 invites.erase(i);
441                                 return;
442                         }
443                 }
444         }
445 }
446
447 bool userrec::HasPermission(const std::string &command)
448 {
449         char* mycmd;
450         char* savept;
451         char* savept2;
452         
453         /*
454          * users on remote servers can completely bypass all permissions based checks.
455          * This prevents desyncs when one server has different type/class tags to another.
456          * That having been said, this does open things up to the possibility of source changes
457          * allowing remote kills, etc - but if they have access to the src, they most likely have
458          * access to the conf - so it's an end to a means either way.
459          */
460         if (!IS_LOCAL(this))
461                 return true;
462         
463         // are they even an oper at all?
464         if (*this->oper)
465         {
466                 opertype_t::iterator iter_opertype = opertypes.find(this->oper);
467                 if (iter_opertype != opertypes.end())
468                 {
469                         char* Classes = strdup(iter_opertype->second);
470                         char* myclass = strtok_r(Classes," ",&savept);
471                         while (myclass)
472                         {
473                                 operclass_t::iterator iter_operclass = operclass.find(myclass);
474                                 if (iter_operclass != operclass.end())
475                                 {
476                                         char* CommandList = strdup(iter_operclass->second);
477                                         mycmd = strtok_r(CommandList," ",&savept2);
478                                         while (mycmd)
479                                         {
480                                                 if ((!strcasecmp(mycmd,command.c_str())) || (*mycmd == '*'))
481                                                 {
482                                                         free(Classes);
483                                                         free(CommandList);
484                                                         return true;
485                                                 }
486                                                 mycmd = strtok_r(NULL," ",&savept2);
487                                         }
488                                         free(CommandList);
489                                 }
490                                 myclass = strtok_r(NULL," ",&savept);
491                         }
492                         free(Classes);
493                 }
494         }
495         return false;
496 }
497
498 /** NOTE: We cannot pass a const reference to this method.
499  * The string is changed by the workings of the method,
500  * so that if we pass const ref, we end up copying it to
501  * something we can change anyway. Makes sense to just let
502  * the compiler do that copy for us.
503  */
504 bool userrec::AddBuffer(std::string a)
505 {
506         std::string::size_type i = a.rfind('\r');
507
508         while (i != std::string::npos)
509         {
510                 a.erase(i, 1);
511                 i = a.rfind('\r');
512         }
513
514         if (a.length())
515                 recvq.append(a);
516
517         if (recvq.length() > (unsigned)this->recvqmax)
518         {
519                 this->SetWriteError("RecvQ exceeded");
520                 ServerInstance->WriteOpers("*** User %s RecvQ of %d exceeds connect class maximum of %d",this->nick,recvq.length(),this->recvqmax);
521                 return false;
522         }
523
524         return true;
525 }
526
527 bool userrec::BufferIsReady()
528 {
529         return (recvq.find('\n') != std::string::npos);
530 }
531
532 void userrec::ClearBuffer()
533 {
534         recvq = "";
535 }
536
537 std::string userrec::GetBuffer()
538 {
539         if (!recvq.length())
540                 return "";
541
542         /* Strip any leading \r or \n off the string.
543          * Usually there are only one or two of these,
544          * so its is computationally cheap to do.
545          */
546         while ((*recvq.begin() == '\r') || (*recvq.begin() == '\n'))
547                 recvq.erase(recvq.begin());
548
549         for (std::string::iterator x = recvq.begin(); x != recvq.end(); x++)
550         {
551                 /* Find the first complete line, return it as the
552                  * result, and leave the recvq as whats left
553                  */
554                 if (*x == '\n')
555                 {
556                         std::string ret = std::string(recvq.begin(), x);
557                         recvq.erase(recvq.begin(), x + 1);
558                         return ret;
559                 }
560         }
561         return "";
562 }
563
564 void userrec::AddWriteBuf(const std::string &data)
565 {
566         if (*this->GetWriteError())
567                 return;
568         
569         if (sendq.length() + data.length() > (unsigned)this->sendqmax)
570         {
571                 /*
572                  * Fix by brain - Set the error text BEFORE calling writeopers, because
573                  * if we dont it'll recursively  call here over and over again trying
574                  * to repeatedly add the text to the sendq!
575                  */
576                 this->SetWriteError("SendQ exceeded");
577                 ServerInstance->WriteOpers("*** User %s SendQ of %d exceeds connect class maximum of %d",this->nick,sendq.length() + data.length(),this->sendqmax);
578                 return;
579         }
580         
581         if (data.length() > 512)
582         {
583                 std::string newdata(data);
584                 newdata.resize(510);
585                 newdata.append("\r\n");
586                 sendq.append(newdata);
587         }
588         else
589         {
590                 sendq.append(data);
591         }
592 }
593
594 // send AS MUCH OF THE USERS SENDQ as we are able to (might not be all of it)
595 void userrec::FlushWriteBuf()
596 {
597         if ((sendq.length()) && (this->fd != FD_MAGIC_NUMBER))
598         {
599                 const char* tb = this->sendq.c_str();
600                 int n_sent = write(this->fd,tb,this->sendq.length());
601                 if (n_sent == -1)
602                 {
603                         if (errno != EAGAIN)
604                                 this->SetWriteError(strerror(errno));
605                 }
606                 else
607                 {
608                         // advance the queue
609                         tb += n_sent;
610                         this->sendq = tb;
611                         // update the user's stats counters
612                         this->bytes_out += n_sent;
613                         this->cmds_out++;
614                 }
615         }
616 }
617
618 void userrec::SetWriteError(const std::string &error)
619 {
620         ServerInstance->Log(DEBUG,"SetWriteError: %s",error.c_str());
621         // don't try to set the error twice, its already set take the first string.
622         if (!this->WriteError.length())
623         {
624                 ServerInstance->Log(DEBUG,"Setting error string for %s to '%s'",this->nick,error.c_str());
625                 this->WriteError = error;
626         }
627 }
628
629 const char* userrec::GetWriteError()
630 {
631         return this->WriteError.c_str();
632 }
633
634 void userrec::Oper(const std::string &opertype)
635 {
636         this->modes[UM_OPERATOR] = 1;
637         this->WriteServ("MODE %s :+o", this->nick);
638         FOREACH_MOD(I_OnOper, OnOper(this, opertype));
639         ServerInstance->Log(DEFAULT,"OPER: %s!%s@%s opered as type: %s", this->nick, this->ident, this->host, opertype.c_str());
640         strlcpy(this->oper, opertype.c_str(), NICKMAX - 1);
641         ServerInstance->all_opers.push_back(this);
642         FOREACH_MOD(I_OnPostOper,OnPostOper(this, opertype));
643 }
644
645 void userrec::UnOper()
646 {
647         if (*this->oper)
648         {
649                 *this->oper = 0;
650                 this->modes[UM_OPERATOR] = 0;
651                 for (std::vector<userrec*>::iterator a = ServerInstance->all_opers.begin(); a < ServerInstance->all_opers.end(); a++)
652                 {
653                         if (*a == this)
654                         {
655                                 ServerInstance->Log(DEBUG,"Oper removed from optimization list");
656                                 ServerInstance->all_opers.erase(a);
657                                 return;
658                         }
659                 }
660         }
661 }
662
663 void userrec::QuitUser(InspIRCd* Instance, userrec *user,const std::string &quitreason)
664 {
665         user_hash::iterator iter = Instance->clientlist.find(user->nick);
666
667 /*
668  * I'm pretty sure returning here is causing a desync when part of the net thinks a user is gone,
669  * and another part doesn't. We want to broadcast the quit/kill before bailing so the net stays in sync.
670  *
671  * I can't imagine this blowing up, so I'm commenting it out. We still check
672  * before playing with a bad iterator below in our if(). DISCUSS THIS BEFORE YOU DO ANYTHING. --w00t
673  *
674  *      if (iter == clientlist.end())
675  *              return;
676  */
677         std::string reason = quitreason;
678
679         if (reason.length() > MAXQUIT - 1)
680                 reason.resize(MAXQUIT - 1);
681         
682         if (IS_LOCAL(user))
683                 user->Write("ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,reason.c_str());
684
685         if (user->registered == REG_ALL)
686         {
687                 user->PurgeEmptyChannels();
688                 FOREACH_MOD_I(Instance,I_OnUserQuit,OnUserQuit(user,reason));
689                 user->WriteCommonExcept("QUIT :%s",reason.c_str());
690         }
691
692         if (IS_LOCAL(user))
693                 user->FlushWriteBuf();
694
695         FOREACH_MOD_I(Instance,I_OnUserDisconnect,OnUserDisconnect(user));
696
697         if (IS_LOCAL(user))
698         {
699                 if (Instance->Config->GetIOHook(user->GetPort()))
700                 {
701                         try
702                         {
703                                 Instance->Config->GetIOHook(user->GetPort())->OnRawSocketClose(user->fd);
704                         }
705                         catch (ModuleException& modexcept)
706                         {
707                                 Instance->Log(DEBUG,"Module exception cought: %s",modexcept.GetReason());
708                         }
709                 }
710                 
711                 Instance->SE->DelFd(user);
712                 user->CloseSocket();
713         }
714
715         /*
716          * this must come before the ServerInstance->SNO->WriteToSnoMaskso that it doesnt try to fill their buffer with anything
717          * if they were an oper with +sn +qQ.
718          */
719         if (user->registered == REG_ALL)
720         {
721                 if (IS_LOCAL(user))
722                         Instance->SNO->WriteToSnoMask('q',"Client exiting: %s!%s@%s [%s]",user->nick,user->ident,user->host,reason.c_str());
723                 else
724                         Instance->SNO->WriteToSnoMask('Q',"Client exiting on server %s: %s!%s@%s [%s]",user->server,user->nick,user->ident,user->host,reason.c_str());
725                 user->AddToWhoWas();
726         }
727
728         if (iter != Instance->clientlist.end())
729         {
730                 Instance->Log(DEBUG,"deleting user hash value %lx",(unsigned long)user);
731                 if (IS_LOCAL(user))
732                 {
733                         if (find(Instance->local_users.begin(),Instance->local_users.end(),user) != Instance->local_users.end())
734                                 Instance->local_users.erase(find(Instance->local_users.begin(),Instance->local_users.end(),user));
735                 }
736                 Instance->clientlist.erase(iter);
737                 DELETE(user);
738         }
739 }
740
741 namespace irc
742 {
743         namespace whowas
744         {
745
746                 WhoWasGroup::WhoWasGroup(userrec* user) : host(NULL), dhost(NULL), ident(NULL), server(NULL), gecos(NULL), signon(user->signon)
747                 {
748                         this->host = strdup(user->host);
749                         this->dhost = strdup(user->dhost);
750                         this->ident = strdup(user->ident);
751                         this->server = user->server;
752                         this->gecos = strdup(user->fullname);
753                 }
754
755                 WhoWasGroup::~WhoWasGroup()
756                 {
757                         if (host)
758                                 free(host);
759                         if (dhost)
760                                 free(dhost);
761                         if (ident)
762                                 free(ident);
763                         if (gecos)
764                                 free(gecos);
765                 }
766
767                 /* every hour, run this function which removes all entries over 3 days */
768                 void MaintainWhoWas(time_t t)
769                 {
770                         for (whowas_users::iterator iter = ::whowas.begin(); iter != ::whowas.end(); iter++)
771                         {
772                                 whowas_set* n = (whowas_set*)iter->second;
773                                 if (n->size())
774                                 {
775                                         while ((n->begin() != n->end()) && ((*n->begin())->signon < t - 259200)) // 3 days
776                                         {
777                                                 WhoWasGroup *a = *(n->begin());
778                                                 DELETE(a);
779                                                 n->erase(n->begin());
780                                         }
781                                 }
782                         }
783                 }
784         };
785 };
786
787 /* adds or updates an entry in the whowas list */
788 void userrec::AddToWhoWas()
789 {
790         irc::whowas::whowas_users::iterator iter = whowas.find(this->nick);
791
792         if (iter == whowas.end())
793         {
794                 irc::whowas::whowas_set* n = new irc::whowas::whowas_set;
795                 irc::whowas::WhoWasGroup *a = new irc::whowas::WhoWasGroup(this);
796                 n->push_back(a);
797                 whowas[this->nick] = n;
798         }
799         else
800         {
801                 irc::whowas::whowas_set* group = (irc::whowas::whowas_set*)iter->second;
802
803                 if (group->size() > 10)
804                 {
805                         irc::whowas::WhoWasGroup *a = (irc::whowas::WhoWasGroup*)*(group->begin());
806                         DELETE(a);
807                         group->pop_front();
808                 }
809
810                 irc::whowas::WhoWasGroup *a = new irc::whowas::WhoWasGroup(this);
811                 group->push_back(a);
812         }
813 }
814
815 /* add a client connection to the sockets list */
816 void userrec::AddClient(InspIRCd* Instance, int socket, int port, bool iscached, insp_inaddr ip)
817 {
818         std::string tempnick = ConvToStr(socket) + "-unknown";
819         user_hash::iterator iter = Instance->clientlist.find(tempnick);
820         const char *ipaddr = insp_ntoa(ip);
821         userrec* _new;
822         int j = 0;
823
824         /*
825          * fix by brain.
826          * as these nicknames are 'RFC impossible', we can be sure nobody is going to be
827          * using one as a registered connection. As they are per fd, we can also safely assume
828          * that we wont have collisions. Therefore, if the nick exists in the list, its only
829          * used by a dead socket, erase the iterator so that the new client may reclaim it.
830          * this was probably the cause of 'server ignores me when i hammer it with reconnects'
831          * issue in earlier alphas/betas
832          */
833         if (iter != Instance->clientlist.end())
834         {
835                 userrec* goner = iter->second;
836                 DELETE(goner);
837                 Instance->clientlist.erase(iter);
838         }
839
840         Instance->Log(DEBUG,"AddClient: %d %d %s",socket,port,ipaddr);
841         
842         _new = new userrec(Instance);
843         Instance->clientlist[tempnick] = _new;
844         _new->fd = socket;
845         strlcpy(_new->nick,tempnick.c_str(),NICKMAX-1);
846
847         _new->server = Instance->FindServerNamePtr(Instance->Config->ServerName);
848         /* We don't need range checking here, we KNOW 'unknown\0' will fit into the ident field. */
849         strcpy(_new->ident, "unknown");
850
851         _new->registered = REG_NONE;
852         _new->signon = Instance->Time() + Instance->Config->dns_timeout;
853         _new->lastping = 1;
854
855         Instance->Log(DEBUG,"Setting socket addresses");
856         _new->SetSockAddr(AF_FAMILY, ipaddr, port);
857         Instance->Log(DEBUG,"Socket addresses set.");
858
859         /* Smarter than your average bear^H^H^H^Hset of strlcpys. */
860         for (const char* temp = _new->GetIPString(); *temp && j < 64; temp++, j++)
861                 _new->dhost[j] = _new->host[j] = *temp;
862         _new->dhost[j] = _new->host[j] = 0;
863                         
864         // set the registration timeout for this user
865         unsigned long class_regtimeout = 90;
866         int class_flood = 0;
867         long class_threshold = 5;
868         long class_sqmax = 262144;      // 256kb
869         long class_rqmax = 4096;        // 4k
870
871         for (ClassVector::iterator i = Instance->Config->Classes.begin(); i != Instance->Config->Classes.end(); i++)
872         {
873                 if ((i->type == CC_ALLOW) && (match(ipaddr,i->host.c_str(),true)))
874                 {
875                         class_regtimeout = (unsigned long)i->registration_timeout;
876                         class_flood = i->flood;
877                         _new->pingmax = i->pingtime;
878                         class_threshold = i->threshold;
879                         class_sqmax = i->sendqmax;
880                         class_rqmax = i->recvqmax;
881                         break;
882                 }
883         }
884
885         _new->nping = Instance->Time() + _new->pingmax + Instance->Config->dns_timeout;
886         _new->timeout = Instance->Time() + class_regtimeout;
887         _new->flood = class_flood;
888         _new->threshold = class_threshold;
889         _new->sendqmax = class_sqmax;
890         _new->recvqmax = class_rqmax;
891
892         Instance->local_users.push_back(_new);
893
894         if (Instance->local_users.size() > Instance->Config->SoftLimit)
895         {
896                 userrec::QuitUser(Instance, _new,"No more connections allowed");
897                 return;
898         }
899
900         if (Instance->local_users.size() >= MAXCLIENTS)
901         {
902                 userrec::QuitUser(Instance, _new,"No more connections allowed");
903                 return;
904         }
905
906         /*
907          * XXX -
908          * this is done as a safety check to keep the file descriptors within range of fd_ref_table.
909          * its a pretty big but for the moment valid assumption:
910          * file descriptors are handed out starting at 0, and are recycled as theyre freed.
911          * therefore if there is ever an fd over 65535, 65536 clients must be connected to the
912          * irc server at once (or the irc server otherwise initiating this many connections, files etc)
913          * which for the time being is a physical impossibility (even the largest networks dont have more
914          * than about 10,000 users on ONE server!)
915          */
916         if ((unsigned)socket >= MAX_DESCRIPTORS)
917         {
918                 userrec::QuitUser(Instance, _new,"Server is full");
919                 return;
920         }
921         char* e = Instance->XLines->matches_exception(ipaddr);
922         if (!e)
923         {
924                 char* r = Instance->XLines->matches_zline(ipaddr);
925                 if (r)
926                 {
927                         char reason[MAXBUF];
928                         snprintf(reason,MAXBUF,"Z-Lined: %s",r);
929                         userrec::QuitUser(Instance, _new,reason);
930                         return;
931                 }
932         }
933
934         if (socket > -1)
935         {
936                 if (!Instance->SE->AddFd(_new))
937                 {
938                         userrec::QuitUser(Instance, _new, "Internal error handling connection");
939                         return;
940                 }
941         }
942
943         _new->WriteServ("NOTICE Auth :*** Looking up your hostname...");
944 }
945
946 long userrec::GlobalCloneCount()
947 {
948         char u1[1024];
949         char u2[1024];
950         long x = 0;
951         for (user_hash::const_iterator a = ServerInstance->clientlist.begin(); a != ServerInstance->clientlist.end(); a++)
952         {
953                 /* We have to match ip's as strings - we don't know what protocol
954                  * a remote user may be using
955                  */
956                 if (!strcasecmp(a->second->GetIPString(u1), this->GetIPString(u2)))
957                                 x++;
958         }
959         return x;
960 }
961
962 long userrec::LocalCloneCount()
963 {
964         long x = 0;
965         for (std::vector<userrec*>::const_iterator a = ServerInstance->local_users.begin(); a != ServerInstance->local_users.end(); a++)
966         {
967                 userrec* comp = *a;
968 #ifdef IPV6
969                 /* I dont think theres any faster way of matching two ipv6 addresses than memcmp */
970                 in6_addr* s1 = &(((sockaddr_in6*)comp->ip)->sin6_addr);
971                 in6_addr* s2 = &(((sockaddr_in6*)this->ip)->sin6_addr);
972                 if (!memcmp(s1->s6_addr, s2->s6_addr, sizeof(in6_addr)))
973                         x++;
974 #else
975                 in_addr* s1 = &((sockaddr_in*)comp->ip)->sin_addr;
976                 in_addr* s2 = &((sockaddr_in*)this->ip)->sin_addr;
977                 if (s1->s_addr == s2->s_addr)
978                         x++;
979 #endif
980         }
981         return x;
982 }
983
984 void userrec::FullConnect(CullList* Goners)
985 {
986         ServerInstance->stats->statsConnects++;
987         this->idle_lastmsg = ServerInstance->Time();
988
989         ConnectClass a = this->GetClass();
990
991         if (a.type == CC_DENY)
992         {
993                 Goners->AddItem(this,"Unauthorised connection");
994                 return;
995         }
996         
997         if ((*(a.pass.c_str())) && (!this->haspassed))
998         {
999                 Goners->AddItem(this,"Invalid password");
1000                 return;
1001         }
1002         
1003         if (this->LocalCloneCount() > a.maxlocal)
1004         {
1005                 Goners->AddItem(this, "No more connections allowed from your host via this connect class (local)");
1006                 ServerInstance->WriteOpers("*** WARNING: maximum LOCAL connections (%ld) exceeded for IP %s", a.maxlocal, this->GetIPString());
1007                 return;
1008         }
1009         else if (this->GlobalCloneCount() > a.maxglobal)
1010         {
1011                 Goners->AddItem(this, "No more connections allowed from your host via this connect class (global)");
1012                 ServerInstance->WriteOpers("*** WARNING: maximum GLOBAL connections (%ld) exceeded for IP %s",a.maxglobal, this->GetIPString());
1013                 return;
1014         }
1015
1016         char match_against[MAXBUF];
1017         snprintf(match_against,MAXBUF,"%s@%s", this->ident, this->host);
1018         char* e = ServerInstance->XLines->matches_exception(match_against);
1019
1020         if (!e)
1021         {
1022                 char* r = ServerInstance->XLines->matches_gline(match_against);
1023                 
1024                 if (r)
1025                 {
1026                         char reason[MAXBUF];
1027                         snprintf(reason,MAXBUF,"G-Lined: %s",r);
1028                         Goners->AddItem(this, reason);
1029                         return;
1030                 }
1031                 
1032                 r = ServerInstance->XLines->matches_kline(match_against);
1033                 
1034                 if (r)
1035                 {
1036                         char reason[MAXBUF];
1037                         snprintf(reason,MAXBUF,"K-Lined: %s",r);
1038                         Goners->AddItem(this, reason);
1039                         return;
1040                 }
1041         }
1042
1043
1044         this->WriteServ("NOTICE Auth :Welcome to \002%s\002!",ServerInstance->Config->Network);
1045         this->WriteServ("001 %s :Welcome to the %s IRC Network %s!%s@%s",this->nick, ServerInstance->Config->Network, this->nick, this->ident, this->host);
1046         this->WriteServ("002 %s :Your host is %s, running version %s",this->nick,ServerInstance->Config->ServerName,VERSION);
1047         this->WriteServ("003 %s :This server was created %s %s", this->nick, __TIME__, __DATE__);
1048         this->WriteServ("004 %s %s %s %s %s %s", this->nick, ServerInstance->Config->ServerName, VERSION, ServerInstance->Modes->UserModeList().c_str(), ServerInstance->Modes->ChannelModeList().c_str(), ServerInstance->Modes->ParaModeList().c_str());
1049
1050         // anfl @ #ratbox, efnet reminded me that according to the RFC this cant contain more than 13 tokens per line...
1051         // so i'd better split it :)
1052         std::stringstream out(ServerInstance->Config->data005);
1053         std::string token = "";
1054         std::string line5 = "";
1055         int token_counter = 0;
1056         
1057         while (!out.eof())
1058         {
1059                 out >> token;
1060                 line5 = line5 + token + " ";
1061                 token_counter++;
1062                 
1063                 if ((token_counter >= 13) || (out.eof() == true))
1064                 {
1065                         this->WriteServ("005 %s %s:are supported by this server", this->nick, line5.c_str());
1066                         line5 = "";
1067                         token_counter = 0;
1068                 }
1069         }
1070         
1071         this->ShowMOTD();
1072
1073         /*
1074          * fix 3 by brain, move registered = 7 below these so that spurious modes and host
1075          * changes dont go out onto the network and produce 'fake direction'.
1076          */
1077         FOREACH_MOD(I_OnUserConnect,OnUserConnect(this));
1078         FOREACH_MOD(I_OnPostConnect,OnPostConnect(this));
1079         this->registered = REG_ALL;
1080         ServerInstance->SNO->WriteToSnoMask('c',"Client connecting on port %d: %s!%s@%s [%s]", this->GetPort(), this->nick, this->ident, this->host, this->GetIPString());
1081 }
1082
1083 /** userrec::UpdateNick()
1084  * re-allocates a nick in the user_hash after they change nicknames,
1085  * returns a pointer to the new user as it may have moved
1086  */
1087 userrec* userrec::UpdateNickHash(const char* New)
1088 {
1089         //user_hash::iterator newnick;
1090         user_hash::iterator oldnick = ServerInstance->clientlist.find(this->nick);
1091
1092         if (!strcasecmp(this->nick,New))
1093                 return oldnick->second;
1094
1095         if (oldnick == ServerInstance->clientlist.end())
1096                 return NULL; /* doesnt exist */
1097
1098         userrec* olduser = oldnick->second;
1099         ServerInstance->clientlist[New] = olduser;
1100         ServerInstance->clientlist.erase(oldnick);
1101         return ServerInstance->clientlist[New];
1102 }
1103
1104 bool userrec::ForceNickChange(const char* newnick)
1105 {
1106         char nick[MAXBUF];
1107         int MOD_RESULT = 0;
1108
1109         *nick = 0;
1110
1111         FOREACH_RESULT(I_OnUserPreNick,OnUserPreNick(this, newnick));
1112         
1113         if (MOD_RESULT)
1114         {
1115                 ServerInstance->stats->statsCollisions++;
1116                 return false;
1117         }
1118         
1119         if (ServerInstance->XLines->matches_qline(newnick))
1120         {
1121                 ServerInstance->stats->statsCollisions++;
1122                 return false;
1123         }
1124
1125         if (newnick)
1126         {
1127                 strlcpy(this->nick, newnick, NICKMAX - 1);
1128         }
1129         if (this->registered == REG_ALL)
1130         {
1131                 const char* pars[1];
1132                 pars[0] = nick;
1133                 std::string cmd = "NICK";
1134                 ServerInstance->Parser->CallHandler(cmd, pars, 1, this);
1135         }
1136         return true;
1137 }
1138
1139 void userrec::SetSockAddr(int protocol_family, const char* ip, int port)
1140 {
1141         switch (protocol_family)
1142         {
1143 #ifdef SUPPORT_IP6LINKS
1144                 case AF_INET6:
1145                 {
1146                         ServerInstance->Log(DEBUG,"Set inet6 protocol address");
1147                         sockaddr_in6* sin = new sockaddr_in6;
1148                         sin->sin6_family = AF_INET6;
1149                         sin->sin6_port = port;
1150                         inet_pton(AF_INET6, ip, &sin->sin6_addr);
1151                         this->ip = (sockaddr*)sin;
1152                 }
1153                 break;
1154 #endif
1155                 case AF_INET:
1156                 {
1157                         ServerInstance->Log(DEBUG,"Set inet4 protocol address");
1158                         sockaddr_in* sin = new sockaddr_in;
1159                         sin->sin_family = AF_INET;
1160                         sin->sin_port = port;
1161                         inet_pton(AF_INET, ip, &sin->sin_addr);
1162                         this->ip = (sockaddr*)sin;
1163                 }
1164                 break;
1165                 default:
1166                         ServerInstance->Log(DEBUG,"Ut oh, I dont know protocol %d to be set on '%s'!", protocol_family, this->nick);
1167                 break;
1168         }
1169 }
1170
1171 int userrec::GetPort()
1172 {
1173         if (this->ip == NULL)
1174                 return 0;
1175
1176         switch (this->GetProtocolFamily())
1177         {
1178 #ifdef SUPPORT_IP6LINKS
1179                 case AF_INET6:
1180                 {
1181                         sockaddr_in6* sin = (sockaddr_in6*)this->ip;
1182                         return sin->sin6_port;
1183                 }
1184                 break;
1185 #endif
1186                 case AF_INET:
1187                 {
1188                         sockaddr_in* sin = (sockaddr_in*)this->ip;
1189                         return sin->sin_port;
1190                 }
1191                 break;
1192                 default:
1193                         ServerInstance->Log(DEBUG,"Ut oh, '%s' has an unknown protocol family!",this->nick);
1194                 break;
1195         }
1196         return 0;
1197 }
1198
1199 int userrec::GetProtocolFamily()
1200 {
1201         if (this->ip == NULL)
1202                 return 0;
1203
1204         sockaddr_in* sin = (sockaddr_in*)this->ip;
1205         return sin->sin_family;
1206 }
1207
1208 const char* userrec::GetIPString()
1209 {
1210         static char buf[1024];
1211
1212         if (this->ip == NULL)
1213                 return "";
1214
1215         switch (this->GetProtocolFamily())
1216         {
1217 #ifdef SUPPORT_IP6LINKS
1218                 case AF_INET6:
1219                 {
1220                         static char temp[1024];
1221                 
1222                         sockaddr_in6* sin = (sockaddr_in6*)this->ip;
1223                         inet_ntop(sin->sin6_family, &sin->sin6_addr, buf, sizeof(buf));
1224                         /* IP addresses starting with a : on irc are a Bad Thing (tm) */
1225                         if (*buf == ':')
1226                         {
1227                                 strlcpy(&temp[1], buf, sizeof(temp));
1228                                 *temp = '0';
1229                                 return temp;
1230                         }
1231                         return buf;
1232                 }
1233                 break;
1234 #endif
1235                 case AF_INET:
1236                 {
1237                         sockaddr_in* sin = (sockaddr_in*)this->ip;
1238                         inet_ntop(sin->sin_family, &sin->sin_addr, buf, sizeof(buf));
1239                         return buf;
1240                 }
1241                 break;
1242                 default:
1243                         ServerInstance->Log(DEBUG,"Ut oh, '%s' has an unknown protocol family!",this->nick);
1244                 break;
1245         }
1246         return "";
1247 }
1248
1249 const char* userrec::GetIPString(char* buf)
1250 {
1251         if (this->ip == NULL)
1252         {
1253                 *buf = 0;
1254                 return buf;
1255         }
1256
1257         switch (this->GetProtocolFamily())
1258         {
1259 #ifdef SUPPORT_IP6LINKS
1260                 case AF_INET6:
1261                 {
1262                         static char temp[1024];
1263                 
1264                         sockaddr_in6* sin = (sockaddr_in6*)this->ip;
1265                         inet_ntop(sin->sin6_family, &sin->sin6_addr, buf, sizeof(buf));
1266                         /* IP addresses starting with a : on irc are a Bad Thing (tm) */
1267                         if (*buf == ':')
1268                         {
1269                                 strlcpy(&temp[1], buf, sizeof(temp));
1270                                 *temp = '0';
1271                                 strlcpy(buf, temp, sizeof(temp));
1272                         }
1273                         return buf;
1274                 }
1275                 break;
1276 #endif
1277                 case AF_INET:
1278                 {
1279                         sockaddr_in* sin = (sockaddr_in*)this->ip;
1280                         inet_ntop(sin->sin_family, &sin->sin_addr, buf, sizeof(buf));
1281                         return buf;
1282                 }
1283                 break;
1284
1285                 default:
1286                         ServerInstance->Log(DEBUG,"Ut oh, '%s' has an unknown protocol family!",this->nick);
1287                 break;
1288         }
1289         return "";
1290 }
1291
1292 /** NOTE: We cannot pass a const reference to this method.
1293  * The string is changed by the workings of the method,
1294  * so that if we pass const ref, we end up copying it to
1295  * something we can change anyway. Makes sense to just let
1296  * the compiler do that copy for us.
1297  */
1298 void userrec::Write(std::string text)
1299 {
1300         if ((this->fd < 0) || (this->fd > MAX_DESCRIPTORS))
1301                 return;
1302
1303         text.append("\r\n");
1304
1305         if (ServerInstance->Config->GetIOHook(this->GetPort()))
1306         {
1307                 try
1308                 {
1309                         ServerInstance->Config->GetIOHook(this->GetPort())->OnRawSocketWrite(this->fd, text.data(), text.length());
1310                 }
1311                 catch (ModuleException& modexcept)
1312                 {
1313                         ServerInstance->Log(DEBUG,"Module exception caught: %s",modexcept.GetReason());
1314                 }
1315         }
1316         else
1317         {
1318                 this->AddWriteBuf(text);
1319         }
1320         ServerInstance->stats->statsSent += text.length();
1321 }
1322
1323 /** Write()
1324  */
1325 void userrec::Write(const char *text, ...)
1326 {
1327         va_list argsPtr;
1328         char textbuffer[MAXBUF];
1329
1330         va_start(argsPtr, text);
1331         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1332         va_end(argsPtr);
1333
1334         this->Write(std::string(textbuffer));
1335 }
1336
1337 void userrec::WriteServ(const std::string& text)
1338 {
1339         char textbuffer[MAXBUF];
1340
1341         snprintf(textbuffer,MAXBUF,":%s %s",ServerInstance->Config->ServerName,text.c_str());
1342         this->Write(std::string(textbuffer));
1343 }
1344
1345 /** WriteServ()
1346  *  Same as Write(), except `text' is prefixed with `:server.name '.
1347  */
1348 void userrec::WriteServ(const char* text, ...)
1349 {
1350         va_list argsPtr;
1351         char textbuffer[MAXBUF];
1352
1353         va_start(argsPtr, text);
1354         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1355         va_end(argsPtr);
1356
1357         this->WriteServ(std::string(textbuffer));
1358 }
1359
1360
1361 void userrec::WriteFrom(userrec *user, const std::string &text)
1362 {
1363         char tb[MAXBUF];
1364
1365         snprintf(tb,MAXBUF,":%s %s",user->GetFullHost(),text.c_str());
1366         
1367         this->Write(std::string(tb));
1368 }
1369
1370
1371 /* write text from an originating user to originating user */
1372
1373 void userrec::WriteFrom(userrec *user, const char* text, ...)
1374 {
1375         va_list argsPtr;
1376         char textbuffer[MAXBUF];
1377
1378         va_start(argsPtr, text);
1379         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1380         va_end(argsPtr);
1381
1382         this->WriteFrom(user, std::string(textbuffer));
1383 }
1384
1385
1386 /* write text to an destination user from a source user (e.g. user privmsg) */
1387
1388 void userrec::WriteTo(userrec *dest, const char *data, ...)
1389 {
1390         char textbuffer[MAXBUF];
1391         va_list argsPtr;
1392
1393         va_start(argsPtr, data);
1394         vsnprintf(textbuffer, MAXBUF, data, argsPtr);
1395         va_end(argsPtr);
1396
1397         this->WriteTo(dest, std::string(textbuffer));
1398 }
1399
1400 void userrec::WriteTo(userrec *dest, const std::string &data)
1401 {
1402         dest->WriteFrom(this, data);
1403 }
1404
1405
1406 void userrec::WriteCommon(const char* text, ...)
1407 {
1408         char textbuffer[MAXBUF];
1409         va_list argsPtr;
1410
1411         if (this->registered != REG_ALL)
1412                 return;
1413
1414         va_start(argsPtr, text);
1415         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1416         va_end(argsPtr);
1417
1418         this->WriteCommon(std::string(textbuffer));
1419 }
1420
1421 void userrec::WriteCommon(const std::string &text)
1422 {
1423         bool sent_to_at_least_one = false;
1424
1425         if (this->registered != REG_ALL)
1426                 return;
1427
1428         uniq_id++;
1429
1430         for (std::vector<ucrec*>::const_iterator v = this->chans.begin(); v != this->chans.end(); v++)
1431         {
1432                 ucrec *n = *v;
1433                 if (n->channel)
1434                 {
1435                         CUList *ulist= n->channel->GetUsers();
1436
1437                         for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
1438                         {
1439                                 if ((IS_LOCAL(i->second)) && (already_sent[i->second->fd] != uniq_id))
1440                                 {
1441                                         already_sent[i->second->fd] = uniq_id;
1442                                         i->second->WriteFrom(this, std::string(text));
1443                                         sent_to_at_least_one = true;
1444                                 }
1445                         }
1446                 }
1447         }
1448
1449         /*
1450          * if the user was not in any channels, no users will receive the text. Make sure the user
1451          * receives their OWN message for WriteCommon
1452          */
1453         if (!sent_to_at_least_one)
1454         {
1455                 this->WriteFrom(this,std::string(text));
1456         }
1457 }
1458
1459
1460 /* write a formatted string to all users who share at least one common
1461  * channel, NOT including the source user e.g. for use in QUIT
1462  */
1463
1464 void userrec::WriteCommonExcept(const char* text, ...)
1465 {
1466         char textbuffer[MAXBUF];
1467         va_list argsPtr;
1468
1469         va_start(argsPtr, text);
1470         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1471         va_end(argsPtr);
1472
1473         this->WriteCommonExcept(std::string(textbuffer));
1474 }
1475
1476 void userrec::WriteCommonExcept(const std::string &text)
1477 {
1478         bool quit_munge = false;
1479         char oper_quit[MAXBUF];
1480         char textbuffer[MAXBUF];
1481
1482         strlcpy(textbuffer, text.c_str(), MAXBUF);
1483
1484         if (this->registered != REG_ALL)
1485                 return;
1486
1487         uniq_id++;
1488
1489         /* TODO: We need some form of WriteCommonExcept that will send two lines, one line to
1490          * opers and the other line to non-opers, then all this hidebans and hidesplits gunk
1491          * can go byebye.
1492          */
1493         if (ServerInstance->Config->HideSplits)
1494         {
1495                 char* check = textbuffer + 6;
1496
1497                 if (!strncasecmp(textbuffer, "QUIT :",6))
1498                 {
1499                         std::stringstream split(check);
1500                         std::string server_one;
1501                         std::string server_two;
1502
1503                         split >> server_one;
1504                         split >> server_two;
1505
1506                         if ((ServerInstance->FindServerName(server_one)) && (ServerInstance->FindServerName(server_two)))
1507                         {
1508                                 strlcpy(oper_quit,textbuffer,MAXQUIT);
1509                                 strlcpy(check,"*.net *.split",MAXQUIT);
1510                                 quit_munge = true;
1511                         }
1512                 }
1513         }
1514
1515         if ((ServerInstance->Config->HideBans) && (!quit_munge))
1516         {
1517                 if ((!strncasecmp(textbuffer, "QUIT :G-Lined:",14)) || (!strncasecmp(textbuffer, "QUIT :K-Lined:",14))
1518                 || (!strncasecmp(textbuffer, "QUIT :Q-Lined:",14)) || (!strncasecmp(textbuffer, "QUIT :Z-Lined:",14)))
1519                 {
1520                         char* check = textbuffer + 13;
1521                         strlcpy(oper_quit,textbuffer,MAXQUIT);
1522                         *check = 0;  // We don't need to strlcpy, we just chop it from the :
1523                         quit_munge = true;
1524                 }
1525         }
1526
1527         for (std::vector<ucrec*>::const_iterator v = this->chans.begin(); v != this->chans.end(); v++)
1528         {
1529                 ucrec* n = *v;
1530                 if (n->channel)
1531                 {
1532                         CUList *ulist= n->channel->GetUsers();
1533
1534                         for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
1535                         {
1536                                 if (this != i->second)
1537                                 {
1538                                         if ((IS_LOCAL(i->second)) && (already_sent[i->second->fd] != uniq_id))
1539                                         {
1540                                                 already_sent[i->second->fd] = uniq_id;
1541                                                 if (quit_munge)
1542                                                         i->second->WriteFrom(this, *i->second->oper ? std::string(oper_quit) : std::string(textbuffer));
1543                                                 else
1544                                                         i->second->WriteFrom(this, std::string(textbuffer));
1545                                         }
1546                                 }
1547                         }
1548                 }
1549         }
1550
1551 }
1552
1553 void userrec::WriteWallOps(const std::string &text)
1554 {
1555         /* Does nothing if theyre not opered */
1556         if ((!*this->oper) && (IS_LOCAL(this)))
1557                 return;
1558
1559         std::string wallop = "WALLOPS :";
1560         wallop.append(text);
1561
1562         for (std::vector<userrec*>::const_iterator i = ServerInstance->local_users.begin(); i != ServerInstance->local_users.end(); i++)
1563         {
1564                 userrec* t = *i;
1565                 if ((IS_LOCAL(t)) && (t->modes[UM_WALLOPS]))
1566                         this->WriteTo(t,wallop);
1567         }
1568 }
1569
1570 void userrec::WriteWallOps(const char* text, ...)
1571 {       
1572         char textbuffer[MAXBUF];
1573         va_list argsPtr;
1574
1575         va_start(argsPtr, text);
1576         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1577         va_end(argsPtr);                
1578                                         
1579         this->WriteWallOps(std::string(textbuffer));
1580 }                                      
1581
1582 /* return 0 or 1 depending if users u and u2 share one or more common channels
1583  * (used by QUIT, NICK etc which arent channel specific notices)
1584  *
1585  * The old algorithm in 1.0 for this was relatively inefficient, iterating over
1586  * the first users channels then the second users channels within the outer loop,
1587  * therefore it was a maximum of x*y iterations (upon returning 0 and checking
1588  * all possible iterations). However this new function instead checks against the
1589  * channel's userlist in the inner loop which is a std::map<userrec*,userrec*>
1590  * and saves us time as we already know what pointer value we are after.
1591  * Don't quote me on the maths as i am not a mathematician or computer scientist,
1592  * but i believe this algorithm is now x+(log y) maximum iterations instead.
1593  */
1594 bool userrec::SharesChannelWith(userrec *other)
1595 {
1596         if ((!other) || (this->registered != REG_ALL) || (other->registered != REG_ALL))
1597                 return false;
1598
1599         /* Outer loop */
1600         for (std::vector<ucrec*>::const_iterator i = this->chans.begin(); i != this->chans.end(); i++)
1601         {
1602                 /* Fetch the channel from the user */
1603                 ucrec* user_channel = *i;
1604
1605                 if (user_channel->channel)
1606                 {
1607                         /* Eliminate the inner loop (which used to be ~equal in size to the outer loop)
1608                          * by replacing it with a map::find which *should* be more efficient
1609                          */
1610                         if (user_channel->channel->HasUser(other))
1611                                 return true;
1612                 }
1613         }
1614         return false;
1615 }
1616
1617 int userrec::CountChannels()
1618 {
1619         int z = 0;
1620         for (std::vector<ucrec*>::const_iterator i = this->chans.begin(); i != this->chans.end(); i++)
1621                 if ((*i)->channel)
1622                         z++;
1623         return z;
1624 }
1625
1626 bool userrec::ChangeName(const char* gecos)
1627 {
1628         if (IS_LOCAL(this))
1629         {
1630                 int MOD_RESULT = 0;
1631                 FOREACH_RESULT(I_OnChangeLocalUserGECOS,OnChangeLocalUserGECOS(this,gecos));
1632                 if (MOD_RESULT)
1633                         return false;
1634                 FOREACH_MOD(I_OnChangeName,OnChangeName(this,gecos));
1635         }
1636         strlcpy(this->fullname,gecos,MAXGECOS+1);
1637         return true;
1638 }
1639
1640 bool userrec::ChangeDisplayedHost(const char* host)
1641 {
1642         if (IS_LOCAL(this))
1643         {
1644                 int MOD_RESULT = 0;
1645                 FOREACH_RESULT(I_OnChangeLocalUserHost,OnChangeLocalUserHost(this,host));
1646                 if (MOD_RESULT)
1647                         return false;
1648                 FOREACH_MOD(I_OnChangeHost,OnChangeHost(this,host));
1649         }
1650         if (this->ServerInstance->Config->CycleHosts)
1651                 this->WriteCommonExcept("%s","QUIT :Changing hosts");
1652
1653         strlcpy(this->dhost,host,63);
1654
1655         if (this->ServerInstance->Config->CycleHosts)
1656         {
1657                 for (std::vector<ucrec*>::const_iterator i = this->chans.begin(); i != this->chans.end(); i++)
1658                 {
1659                         if ((*i)->channel)
1660                         {
1661                                 (*i)->channel->WriteAllExceptSender(this, 0, "JOIN %s", (*i)->channel->name);
1662                                 std::string n = this->ServerInstance->Modes->ModeString(this, (*i)->channel);
1663                                 if (n.length())
1664                                         (*i)->channel->WriteChannelWithServ(this->ServerInstance->Config->ServerName, "MODE %s +%s", (*i)->channel->name, n.c_str());
1665                         }
1666                 }
1667         }
1668
1669         if (IS_LOCAL(this))
1670                 this->WriteServ("396 %s %s :is now your hidden host",this->nick,this->dhost);
1671
1672         return true;
1673 }
1674
1675 bool userrec::ChangeIdent(const char* newident)
1676 {
1677         if (this->ServerInstance->Config->CycleHosts)
1678                 this->WriteCommonExcept("%s","QUIT :Changing ident");
1679
1680         strlcpy(this->ident, newident, IDENTMAX+2);
1681
1682         if (this->ServerInstance->Config->CycleHosts)
1683         {
1684                 for (std::vector<ucrec*>::const_iterator i = this->chans.begin(); i != this->chans.end(); i++)
1685                 {
1686                         if ((*i)->channel)
1687                         {
1688                                 (*i)->channel->WriteAllExceptSender(this, 0, "JOIN %s", (*i)->channel->name);
1689                                 std::string n = this->ServerInstance->Modes->ModeString(this, (*i)->channel);
1690                                 if (n.length())
1691                                         (*i)->channel->WriteChannelWithServ(this->ServerInstance->Config->ServerName, "MODE %s +%s", (*i)->channel->name, n.c_str());
1692                         }
1693                 }
1694         }
1695
1696         return true;
1697 }
1698
1699 void userrec::NoticeAll(char* text, ...)
1700 {
1701         char textbuffer[MAXBUF];
1702         char formatbuffer[MAXBUF];
1703         va_list argsPtr;
1704
1705         va_start(argsPtr, text);
1706         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1707         va_end(argsPtr);
1708
1709         snprintf(formatbuffer,MAXBUF,"NOTICE $* :%s",textbuffer);
1710
1711         for (std::vector<userrec*>::const_iterator i = ServerInstance->local_users.begin(); i != ServerInstance->local_users.end(); i++)
1712         {
1713                 userrec* t = *i;
1714                 t->WriteFrom(this, std::string(formatbuffer));
1715         }
1716 }
1717
1718
1719 std::string userrec::ChannelList(userrec* source)
1720 {
1721         std::string list;
1722         for (std::vector<ucrec*>::const_iterator i = this->chans.begin(); i != this->chans.end(); i++)
1723         {
1724                 ucrec* rec = *i;
1725
1726                 if(rec->channel && rec->channel->name)
1727                 {
1728                         /* If the target is the same as the sender, let them see all their channels.
1729                          * If the channel is NOT private/secret OR the user shares a common channel
1730                          * If the user is an oper, and the <options:operspywhois> option is set.
1731                          */
1732                         if ((source == this) || (*source->oper && ServerInstance->Config->OperSpyWhois) || (((!rec->channel->modes[CM_PRIVATE]) && (!rec->channel->modes[CM_SECRET])) || (rec->channel->HasUser(source))))
1733                         {
1734                                 list.append(rec->channel->GetPrefixChar(this)).append(rec->channel->name).append(" ");
1735                         }
1736                 }
1737         }
1738         return list;
1739 }
1740
1741 void userrec::SplitChanList(userrec* dest, const std::string &cl)
1742 {
1743         std::string line;
1744         std::ostringstream prefix;
1745         std::string::size_type start, pos, length;
1746
1747         prefix << ":" << ServerInstance->Config->ServerName << " 319 " << this->nick << " " << dest->nick << " :";
1748         line = prefix.str();
1749
1750         for (start = 0; (pos = cl.find(' ', start)) != std::string::npos; start = pos+1)
1751         {
1752                 length = (pos == std::string::npos) ? cl.length() : pos;
1753
1754                 if (line.length() + length - start > 510)
1755                 {
1756                         this->Write(line);
1757                         line = prefix.str();
1758                 }
1759
1760                 if(pos == std::string::npos)
1761                 {
1762                         line.append(cl.substr(start, length - start));
1763                         break;
1764                 }
1765                 else
1766                 {
1767                         line.append(cl.substr(start, length - start + 1));
1768                 }
1769         }
1770
1771         if (line.length())
1772         {
1773                 this->Write(line);
1774         }
1775 }
1776
1777
1778 /* looks up a users password for their connection class (<ALLOW>/<DENY> tags)
1779  * NOTE: If the <ALLOW> or <DENY> tag specifies an ip, and this user resolves,
1780  * then their ip will be taken as 'priority' anyway, so for example,
1781  * <connect allow="127.0.0.1"> will match joe!bloggs@localhost
1782  */
1783 ConnectClass& userrec::GetClass()
1784 {
1785         for (ClassVector::iterator i = ServerInstance->Config->Classes.begin(); i != ServerInstance->Config->Classes.end(); i++)
1786         {
1787                 if ((match(this->GetIPString(),i->host.c_str(),true)) || (match(this->host,i->host.c_str())))
1788                         return *i;
1789         }
1790
1791         return *(ServerInstance->Config->Classes.begin());
1792 }
1793
1794 void userrec::PurgeEmptyChannels()
1795 {
1796         std::vector<chanrec*> to_delete;
1797
1798         // firstly decrement the count on each channel
1799         for (std::vector<ucrec*>::iterator f = this->chans.begin(); f != this->chans.end(); f++)
1800         {
1801                 ucrec* uc = *f;
1802                 if (uc->channel)
1803                 {
1804                         uc->channel->RemoveAllPrefixes(this);
1805                         if (uc->channel->DelUser(this) == 0)
1806                         {
1807                                 /* No users left in here, mark it for deletion */
1808                                 to_delete.push_back(uc->channel);
1809                                 uc->channel = NULL;
1810                         }
1811                 }
1812         }
1813
1814         for (std::vector<chanrec*>::iterator n = to_delete.begin(); n != to_delete.end(); n++)
1815         {
1816                 chanrec* thischan = *n;
1817                 chan_hash::iterator i2 = ServerInstance->chanlist.find(thischan->name);
1818                 if (i2 != ServerInstance->chanlist.end())
1819                 {
1820                         FOREACH_MOD(I_OnChannelDelete,OnChannelDelete(i2->second));
1821                         DELETE(i2->second);
1822                         ServerInstance->chanlist.erase(i2);
1823                 }
1824         }
1825
1826         this->UnOper();
1827 }
1828
1829 void userrec::ShowMOTD()
1830 {
1831         if (!ServerInstance->Config->MOTD.size())
1832         {
1833                 this->WriteServ("422 %s :Message of the day file is missing.",this->nick);
1834                 return;
1835         }
1836         this->WriteServ("375 %s :%s message of the day", this->nick, ServerInstance->Config->ServerName);
1837
1838         for (unsigned int i = 0; i < ServerInstance->Config->MOTD.size(); i++)
1839                 this->WriteServ("372 %s :- %s",this->nick,ServerInstance->Config->MOTD[i].c_str());
1840
1841         this->WriteServ("376 %s :End of message of the day.", this->nick);
1842 }
1843
1844 void userrec::ShowRULES()
1845 {
1846         if (!ServerInstance->Config->RULES.size())
1847         {
1848                 this->WriteServ("NOTICE %s :Rules file is missing.",this->nick);
1849                 return;
1850         }
1851         this->WriteServ("NOTICE %s :%s rules",this->nick,ServerInstance->Config->ServerName);
1852
1853         for (unsigned int i = 0; i < ServerInstance->Config->RULES.size(); i++)
1854                 this->WriteServ("NOTICE %s :%s",this->nick,ServerInstance->Config->RULES[i].c_str());
1855
1856         this->WriteServ("NOTICE %s :End of %s rules.",this->nick,ServerInstance->Config->ServerName);
1857 }
1858
1859 void userrec::HandleEvent(EventType et)
1860 {
1861         /* WARNING: May delete this user! */
1862         ServerInstance->ProcessUser(this);
1863 }
1864