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