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