]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/users.cpp
Remove useless debug
[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         if ((!i) || (i->GetType() == CC_DENY))
1029         {
1030                 userrec::QuitUser(Instance, New,"Unauthorised connection");
1031                 return;
1032         }
1033
1034         New->pingmax = i->GetPingTime();
1035         New->nping = Instance->Time() + i->GetPingTime() + Instance->Config->dns_timeout;
1036         New->timeout = Instance->Time() + i->GetRegTimeout();
1037         New->flood = i->GetFlood();
1038         New->threshold = i->GetThreshold();
1039         New->sendqmax = i->GetSendqMax();
1040         New->recvqmax = i->GetRecvqMax();
1041
1042         Instance->local_users.push_back(New);
1043
1044         if ((Instance->local_users.size() > Instance->Config->SoftLimit) || (Instance->local_users.size() >= MAXCLIENTS))
1045         {
1046                 Instance->WriteOpers("*** Warning: softlimit value has been reached: %d clients", Instance->Config->SoftLimit);
1047                 userrec::QuitUser(Instance, New,"No more connections allowed");
1048                 return;
1049         }
1050
1051         /*
1052          * XXX -
1053          * this is done as a safety check to keep the file descriptors within range of fd_ref_table.
1054          * its a pretty big but for the moment valid assumption:
1055          * file descriptors are handed out starting at 0, and are recycled as theyre freed.
1056          * therefore if there is ever an fd over 65535, 65536 clients must be connected to the
1057          * irc server at once (or the irc server otherwise initiating this many connections, files etc)
1058          * which for the time being is a physical impossibility (even the largest networks dont have more
1059          * than about 10,000 users on ONE server!)
1060          */
1061         if ((unsigned int)socket >= MAX_DESCRIPTORS)
1062         {
1063                 userrec::QuitUser(Instance, New, "Server is full");
1064                 return;
1065         }
1066
1067         New->exempt = (Instance->XLines->matches_exception(New) != NULL);
1068         if (!New->exempt)
1069         {
1070                 ZLine* r = Instance->XLines->matches_zline(ipaddr);
1071                 if (r)
1072                 {
1073                         char reason[MAXBUF];
1074                         snprintf(reason,MAXBUF,"Z-Lined: %s",r->reason);
1075                         userrec::QuitUser(Instance, New, reason);
1076                         return;
1077                 }
1078         }
1079
1080         if (socket > -1)
1081         {
1082                 if (!Instance->SE->AddFd(New))
1083                 {
1084                         userrec::QuitUser(Instance, New, "Internal error handling connection");
1085                         return;
1086                 }
1087         }
1088
1089         /* NOTE: even if dns lookups are *off*, we still need to display this.
1090          * BOPM and other stuff requires it.
1091          */
1092         New->WriteServ("NOTICE Auth :*** Looking up your hostname...");
1093 }
1094
1095 unsigned long userrec::GlobalCloneCount()
1096 {
1097         clonemap::iterator x = ServerInstance->global_clones.find(this->GetIPString());
1098         if (x != ServerInstance->global_clones.end())
1099                 return x->second;
1100         else
1101                 return 0;
1102 }
1103
1104 unsigned long userrec::LocalCloneCount()
1105 {
1106         clonemap::iterator x = ServerInstance->local_clones.find(this->GetIPString());
1107         if (x != ServerInstance->local_clones.end())
1108                 return x->second;
1109         else
1110                 return 0;
1111 }
1112
1113 void userrec::FullConnect(CullList* Goners)
1114 {
1115         ServerInstance->stats->statsConnects++;
1116         this->idle_lastmsg = ServerInstance->Time();
1117
1118         ConnectClass* a = this->GetClass();
1119
1120         if ((!a) || (a->GetType() == CC_DENY))
1121         {
1122                 Goners->AddItem(this,"Unauthorised connection");
1123                 return;
1124         }
1125
1126         if ((!a->GetPass().empty()) && (!this->haspassed))
1127         {
1128                 Goners->AddItem(this,"Invalid password");
1129                 return;
1130         }
1131         
1132         if (this->LocalCloneCount() > a->GetMaxLocal())
1133         {
1134                 Goners->AddItem(this, "No more connections allowed from your host via this connect class (local)");
1135                 ServerInstance->WriteOpers("*** WARNING: maximum LOCAL connections (%ld) exceeded for IP %s", a->GetMaxLocal(), this->GetIPString());
1136                 return;
1137         }
1138         else if (this->GlobalCloneCount() > a->GetMaxGlobal())
1139         {
1140                 Goners->AddItem(this, "No more connections allowed from your host via this connect class (global)");
1141                 ServerInstance->WriteOpers("*** WARNING: maximum GLOBAL connections (%ld) exceeded for IP %s",a->GetMaxGlobal(), this->GetIPString());
1142                 return;
1143         }
1144
1145         if (!this->exempt)
1146         {
1147                 GLine* r = ServerInstance->XLines->matches_gline(this);
1148                 
1149                 if (r)
1150                 {
1151                         char reason[MAXBUF];
1152                         snprintf(reason,MAXBUF,"G-Lined: %s",r->reason);
1153                         Goners->AddItem(this, reason);
1154                         return;
1155                 }
1156                 
1157                 KLine* n = ServerInstance->XLines->matches_kline(this);
1158                 
1159                 if (n)
1160                 {
1161                         char reason[MAXBUF];
1162                         snprintf(reason,MAXBUF,"K-Lined: %s",n->reason);
1163                         Goners->AddItem(this, reason);
1164                         return;
1165                 }
1166         }
1167
1168
1169         this->WriteServ("NOTICE Auth :Welcome to \002%s\002!",ServerInstance->Config->Network);
1170         this->WriteServ("001 %s :Welcome to the %s IRC Network %s!%s@%s",this->nick, ServerInstance->Config->Network, this->nick, this->ident, this->host);
1171         this->WriteServ("002 %s :Your host is %s, running version %s",this->nick,ServerInstance->Config->ServerName,VERSION);
1172         this->WriteServ("003 %s :This server was created %s %s", this->nick, __TIME__, __DATE__);
1173         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());
1174
1175         ServerInstance->Config->Send005(this);
1176
1177         this->ShowMOTD();
1178
1179         /*
1180          * fix 3 by brain, move registered = 7 below these so that spurious modes and host
1181          * changes dont go out onto the network and produce 'fake direction'.
1182          */
1183         FOREACH_MOD(I_OnUserConnect,OnUserConnect(this));
1184
1185         this->registered = REG_ALL;
1186
1187         FOREACH_MOD(I_OnPostConnect,OnPostConnect(this));
1188
1189         ServerInstance->SNO->WriteToSnoMask('c',"Client connecting on port %d: %s!%s@%s [%s]", this->GetPort(), this->nick, this->ident, this->host, this->GetIPString());
1190 }
1191
1192 /** userrec::UpdateNick()
1193  * re-allocates a nick in the user_hash after they change nicknames,
1194  * returns a pointer to the new user as it may have moved
1195  */
1196 userrec* userrec::UpdateNickHash(const char* New)
1197 {
1198         try
1199         {
1200                 //user_hash::iterator newnick;
1201                 user_hash::iterator oldnick = ServerInstance->clientlist.find(this->nick);
1202
1203                 if (!strcasecmp(this->nick,New))
1204                         return oldnick->second;
1205
1206                 if (oldnick == ServerInstance->clientlist.end())
1207                         return NULL; /* doesnt exist */
1208
1209                 userrec* olduser = oldnick->second;
1210                 ServerInstance->clientlist[New] = olduser;
1211                 ServerInstance->clientlist.erase(oldnick);
1212                 return ServerInstance->clientlist[New];
1213         }
1214
1215         catch (...)
1216         {
1217                 ServerInstance->Log(DEBUG,"Exception in userrec::UpdateNickHash()");
1218                 return NULL;
1219         }
1220 }
1221
1222 bool userrec::ForceNickChange(const char* newnick)
1223 {
1224         try
1225         {
1226                 int MOD_RESULT = 0;
1227         
1228                 FOREACH_RESULT(I_OnUserPreNick,OnUserPreNick(this, newnick));
1229
1230                 if (MOD_RESULT)
1231                 {
1232                         ServerInstance->stats->statsCollisions++;
1233                         return false;
1234                 }
1235         
1236                 if (ServerInstance->XLines->matches_qline(newnick))
1237                 {
1238                         ServerInstance->stats->statsCollisions++;
1239                         return false;
1240                 }
1241
1242                 if (this->registered == REG_ALL)
1243                 {
1244                         const char* pars[1];
1245                         pars[0] = newnick;
1246                         std::string cmd = "NICK";
1247                         return (ServerInstance->Parser->CallHandler(cmd, pars, 1, this) == CMD_SUCCESS);
1248                 }
1249                 return false;
1250         }
1251
1252         catch (...)
1253         {
1254                 ServerInstance->Log(DEBUG,"Exception in userrec::ForceNickChange()");
1255                 return false;
1256         }
1257 }
1258
1259 void userrec::SetSockAddr(int protocol_family, const char* ip, int port)
1260 {
1261         switch (protocol_family)
1262         {
1263 #ifdef SUPPORT_IP6LINKS
1264                 case AF_INET6:
1265                 {
1266                         ServerInstance->Log(DEBUG,"Set inet6 protocol address");
1267                         sockaddr_in6* sin = new sockaddr_in6;
1268                         sin->sin6_family = AF_INET6;
1269                         sin->sin6_port = port;
1270                         inet_pton(AF_INET6, ip, &sin->sin6_addr);
1271                         this->ip = (sockaddr*)sin;
1272                 }
1273                 break;
1274 #endif
1275                 case AF_INET:
1276                 {
1277                         ServerInstance->Log(DEBUG,"Set inet4 protocol address");
1278                         sockaddr_in* sin = new sockaddr_in;
1279                         sin->sin_family = AF_INET;
1280                         sin->sin_port = port;
1281                         inet_pton(AF_INET, ip, &sin->sin_addr);
1282                         this->ip = (sockaddr*)sin;
1283                 }
1284                 break;
1285                 default:
1286                         ServerInstance->Log(DEBUG,"Ut oh, I dont know protocol %d to be set on '%s'!", protocol_family, this->nick);
1287                 break;
1288         }
1289 }
1290
1291 int userrec::GetPort()
1292 {
1293         if (this->ip == NULL)
1294                 return 0;
1295
1296         switch (this->GetProtocolFamily())
1297         {
1298 #ifdef SUPPORT_IP6LINKS
1299                 case AF_INET6:
1300                 {
1301                         sockaddr_in6* sin = (sockaddr_in6*)this->ip;
1302                         return sin->sin6_port;
1303                 }
1304                 break;
1305 #endif
1306                 case AF_INET:
1307                 {
1308                         sockaddr_in* sin = (sockaddr_in*)this->ip;
1309                         return sin->sin_port;
1310                 }
1311                 break;
1312                 default:
1313                 break;
1314         }
1315         return 0;
1316 }
1317
1318 int userrec::GetProtocolFamily()
1319 {
1320         if (this->ip == NULL)
1321                 return 0;
1322
1323         sockaddr_in* sin = (sockaddr_in*)this->ip;
1324         return sin->sin_family;
1325 }
1326
1327 const char* userrec::GetIPString()
1328 {
1329         static char buf[1024];
1330
1331         if (this->ip == NULL)
1332                 return "";
1333
1334         switch (this->GetProtocolFamily())
1335         {
1336 #ifdef SUPPORT_IP6LINKS
1337                 case AF_INET6:
1338                 {
1339                         static char temp[1024];
1340                 
1341                         sockaddr_in6* sin = (sockaddr_in6*)this->ip;
1342                         inet_ntop(sin->sin6_family, &sin->sin6_addr, buf, sizeof(buf));
1343                         /* IP addresses starting with a : on irc are a Bad Thing (tm) */
1344                         if (*buf == ':')
1345                         {
1346                                 strlcpy(&temp[1], buf, sizeof(temp) - 1);
1347                                 *temp = '0';
1348                                 return temp;
1349                         }
1350                         return buf;
1351                 }
1352                 break;
1353 #endif
1354                 case AF_INET:
1355                 {
1356                         sockaddr_in* sin = (sockaddr_in*)this->ip;
1357                         inet_ntop(sin->sin_family, &sin->sin_addr, buf, sizeof(buf));
1358                         return buf;
1359                 }
1360                 break;
1361                 default:
1362                 break;
1363         }
1364         return "";
1365 }
1366
1367 const char* userrec::GetIPString(char* buf)
1368 {
1369         if (this->ip == NULL)
1370         {
1371                 *buf = 0;
1372                 return buf;
1373         }
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                                 strlcpy(buf, temp, sizeof(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
1403                 default:
1404                 break;
1405         }
1406         return "";
1407 }
1408
1409 /** NOTE: We cannot pass a const reference to this method.
1410  * The string is changed by the workings of the method,
1411  * so that if we pass const ref, we end up copying it to
1412  * something we can change anyway. Makes sense to just let
1413  * the compiler do that copy for us.
1414  */
1415 void userrec::Write(std::string text)
1416 {
1417         if ((this->fd < 0) || (this->fd > MAX_DESCRIPTORS))
1418                 return;
1419
1420         try
1421         {
1422                 text.append("\r\n");
1423         }
1424         catch (...)
1425         {
1426                 ServerInstance->Log(DEBUG,"Exception in userrec::Write() std::string::append");
1427                 return;
1428         }
1429
1430         if (ServerInstance->Config->GetIOHook(this->GetPort()))
1431         {
1432                 try
1433                 {
1434                         ServerInstance->Config->GetIOHook(this->GetPort())->OnRawSocketWrite(this->fd, text.data(), text.length());
1435                 }
1436                 catch (CoreException& modexcept)
1437                 {
1438                         ServerInstance->Log(DEBUG, "%s threw an exception: %s", modexcept.GetSource(), modexcept.GetReason());
1439                 }
1440         }
1441         else
1442         {
1443                 this->AddWriteBuf(text);
1444         }
1445         ServerInstance->stats->statsSent += text.length();
1446         this->ServerInstance->SE->WantWrite(this);
1447 }
1448
1449 /** Write()
1450  */
1451 void userrec::Write(const char *text, ...)
1452 {
1453         va_list argsPtr;
1454         char textbuffer[MAXBUF];
1455
1456         va_start(argsPtr, text);
1457         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1458         va_end(argsPtr);
1459
1460         this->Write(std::string(textbuffer));
1461 }
1462
1463 void userrec::WriteServ(const std::string& text)
1464 {
1465         char textbuffer[MAXBUF];
1466
1467         snprintf(textbuffer,MAXBUF,":%s %s",ServerInstance->Config->ServerName,text.c_str());
1468         this->Write(std::string(textbuffer));
1469 }
1470
1471 /** WriteServ()
1472  *  Same as Write(), except `text' is prefixed with `:server.name '.
1473  */
1474 void userrec::WriteServ(const char* text, ...)
1475 {
1476         va_list argsPtr;
1477         char textbuffer[MAXBUF];
1478
1479         va_start(argsPtr, text);
1480         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1481         va_end(argsPtr);
1482
1483         this->WriteServ(std::string(textbuffer));
1484 }
1485
1486
1487 void userrec::WriteFrom(userrec *user, const std::string &text)
1488 {
1489         char tb[MAXBUF];
1490
1491         snprintf(tb,MAXBUF,":%s %s",user->GetFullHost(),text.c_str());
1492         
1493         this->Write(std::string(tb));
1494 }
1495
1496
1497 /* write text from an originating user to originating user */
1498
1499 void userrec::WriteFrom(userrec *user, const char* text, ...)
1500 {
1501         va_list argsPtr;
1502         char textbuffer[MAXBUF];
1503
1504         va_start(argsPtr, text);
1505         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1506         va_end(argsPtr);
1507
1508         this->WriteFrom(user, std::string(textbuffer));
1509 }
1510
1511
1512 /* write text to an destination user from a source user (e.g. user privmsg) */
1513
1514 void userrec::WriteTo(userrec *dest, const char *data, ...)
1515 {
1516         char textbuffer[MAXBUF];
1517         va_list argsPtr;
1518
1519         va_start(argsPtr, data);
1520         vsnprintf(textbuffer, MAXBUF, data, argsPtr);
1521         va_end(argsPtr);
1522
1523         this->WriteTo(dest, std::string(textbuffer));
1524 }
1525
1526 void userrec::WriteTo(userrec *dest, const std::string &data)
1527 {
1528         dest->WriteFrom(this, data);
1529 }
1530
1531
1532 void userrec::WriteCommon(const char* text, ...)
1533 {
1534         char textbuffer[MAXBUF];
1535         va_list argsPtr;
1536
1537         if (this->registered != REG_ALL)
1538                 return;
1539
1540         va_start(argsPtr, text);
1541         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1542         va_end(argsPtr);
1543
1544         this->WriteCommon(std::string(textbuffer));
1545 }
1546
1547 void userrec::WriteCommon(const std::string &text)
1548 {
1549         try
1550         {
1551                 bool sent_to_at_least_one = false;
1552         
1553                 if (this->registered != REG_ALL)
1554                         return;
1555         
1556                 uniq_id++;
1557         
1558                 for (UCListIter v = this->chans.begin(); v != this->chans.end(); v++)
1559                 {
1560                         CUList* ulist = v->first->GetUsers();
1561                         for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
1562                         {
1563                                 if ((IS_LOCAL(i->second)) && (already_sent[i->second->fd] != uniq_id))
1564                                 {
1565                                         already_sent[i->second->fd] = uniq_id;
1566                                         i->second->WriteFrom(this, std::string(text));
1567                                         sent_to_at_least_one = true;
1568                                 }
1569                         }
1570                 }
1571         
1572                 /*
1573                  * if the user was not in any channels, no users will receive the text. Make sure the user
1574                  * receives their OWN message for WriteCommon
1575                  */
1576                 if (!sent_to_at_least_one)
1577                 {
1578                         this->WriteFrom(this,std::string(text));
1579                 }
1580         }
1581
1582         catch (...)
1583         {
1584                 ServerInstance->Log(DEBUG,"Exception in userrec::WriteCommon()");
1585         }
1586 }
1587
1588
1589 /* write a formatted string to all users who share at least one common
1590  * channel, NOT including the source user e.g. for use in QUIT
1591  */
1592
1593 void userrec::WriteCommonExcept(const char* text, ...)
1594 {
1595         char textbuffer[MAXBUF];
1596         va_list argsPtr;
1597
1598         va_start(argsPtr, text);
1599         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1600         va_end(argsPtr);
1601
1602         this->WriteCommonExcept(std::string(textbuffer));
1603 }
1604
1605 void userrec::WriteCommonExcept(const std::string &text)
1606 {
1607         bool quit_munge = false;
1608         char oper_quit[MAXBUF];
1609         char textbuffer[MAXBUF];
1610
1611         strlcpy(textbuffer, text.c_str(), MAXBUF);
1612
1613         if (this->registered != REG_ALL)
1614                 return;
1615
1616         uniq_id++;
1617
1618         /* TODO: We need some form of WriteCommonExcept that will send two lines, one line to
1619          * opers and the other line to non-opers, then all this hidebans and hidesplits gunk
1620          * can go byebye.
1621          */
1622         if (ServerInstance->Config->HideSplits)
1623         {
1624                 char* check = textbuffer + 6;
1625
1626                 if (!strncasecmp(textbuffer, "QUIT :",6))
1627                 {
1628                         std::stringstream split(check);
1629                         std::string server_one;
1630                         std::string server_two;
1631
1632                         split >> server_one;
1633                         split >> server_two;
1634
1635                         if ((ServerInstance->FindServerName(server_one)) && (ServerInstance->FindServerName(server_two)))
1636                         {
1637                                 strlcpy(oper_quit,textbuffer,MAXQUIT);
1638                                 strlcpy(check,"*.net *.split",MAXQUIT);
1639                                 quit_munge = true;
1640                         }
1641                 }
1642         }
1643
1644         if ((ServerInstance->Config->HideBans) && (!quit_munge))
1645         {
1646                 if ((!strncasecmp(textbuffer, "QUIT :G-Lined:",14)) || (!strncasecmp(textbuffer, "QUIT :K-Lined:",14))
1647                 || (!strncasecmp(textbuffer, "QUIT :Q-Lined:",14)) || (!strncasecmp(textbuffer, "QUIT :Z-Lined:",14)))
1648                 {
1649                         char* check = textbuffer + 13;
1650                         strlcpy(oper_quit,textbuffer,MAXQUIT);
1651                         *check = 0;  // We don't need to strlcpy, we just chop it from the :
1652                         quit_munge = true;
1653                 }
1654         }
1655
1656         for (UCListIter v = this->chans.begin(); v != this->chans.end(); v++)
1657         {
1658                 CUList *ulist = v->first->GetUsers();
1659                 for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
1660                 {
1661                         if (this != i->second)
1662                         {
1663                                 if ((IS_LOCAL(i->second)) && (already_sent[i->second->fd] != uniq_id))
1664                                 {
1665                                         already_sent[i->second->fd] = uniq_id;
1666                                         if (quit_munge)
1667                                                 i->second->WriteFrom(this, *i->second->oper ? std::string(oper_quit) : std::string(textbuffer));
1668                                         else
1669                                                 i->second->WriteFrom(this, std::string(textbuffer));
1670                                 }
1671                         }
1672                 }
1673         }
1674
1675 }
1676
1677 void userrec::WriteWallOps(const std::string &text)
1678 {
1679         /* Does nothing if theyre not opered */
1680         if ((!*this->oper) && (IS_LOCAL(this)))
1681                 return;
1682
1683         std::string wallop = "WALLOPS :";
1684
1685         try
1686         {
1687                 wallop.append(text);
1688         }
1689         catch (...)
1690         {
1691                 ServerInstance->Log(DEBUG,"Exception in userrec::Write() std::string::append");
1692                 return;
1693         }
1694
1695         for (std::vector<userrec*>::const_iterator i = ServerInstance->local_users.begin(); i != ServerInstance->local_users.end(); i++)
1696         {
1697                 userrec* t = *i;
1698                 if ((IS_LOCAL(t)) && (t->modes[UM_WALLOPS]))
1699                         this->WriteTo(t,wallop);
1700         }
1701 }
1702
1703 void userrec::WriteWallOps(const char* text, ...)
1704 {       
1705         char textbuffer[MAXBUF];
1706         va_list argsPtr;
1707
1708         va_start(argsPtr, text);
1709         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1710         va_end(argsPtr);                
1711                                         
1712         this->WriteWallOps(std::string(textbuffer));
1713 }                                      
1714
1715 /* return 0 or 1 depending if users u and u2 share one or more common channels
1716  * (used by QUIT, NICK etc which arent channel specific notices)
1717  *
1718  * The old algorithm in 1.0 for this was relatively inefficient, iterating over
1719  * the first users channels then the second users channels within the outer loop,
1720  * therefore it was a maximum of x*y iterations (upon returning 0 and checking
1721  * all possible iterations). However this new function instead checks against the
1722  * channel's userlist in the inner loop which is a std::map<userrec*,userrec*>
1723  * and saves us time as we already know what pointer value we are after.
1724  * Don't quote me on the maths as i am not a mathematician or computer scientist,
1725  * but i believe this algorithm is now x+(log y) maximum iterations instead.
1726  */
1727 bool userrec::SharesChannelWith(userrec *other)
1728 {
1729         if ((!other) || (this->registered != REG_ALL) || (other->registered != REG_ALL))
1730                 return false;
1731
1732         /* Outer loop */
1733         for (UCListIter i = this->chans.begin(); i != this->chans.end(); i++)
1734         {
1735                 /* Eliminate the inner loop (which used to be ~equal in size to the outer loop)
1736                  * by replacing it with a map::find which *should* be more efficient
1737                  */
1738                 if (i->first->HasUser(other))
1739                         return true;
1740         }
1741         return false;
1742 }
1743
1744 bool userrec::ChangeName(const char* gecos)
1745 {
1746         if (!strcmp(gecos, this->fullname))
1747                 return true;
1748
1749         if (IS_LOCAL(this))
1750         {
1751                 int MOD_RESULT = 0;
1752                 FOREACH_RESULT(I_OnChangeLocalUserGECOS,OnChangeLocalUserGECOS(this,gecos));
1753                 if (MOD_RESULT)
1754                         return false;
1755                 FOREACH_MOD(I_OnChangeName,OnChangeName(this,gecos));
1756         }
1757         strlcpy(this->fullname,gecos,MAXGECOS+1);
1758         return true;
1759 }
1760
1761 bool userrec::ChangeDisplayedHost(const char* host)
1762 {
1763         if (!strcmp(host, this->dhost))
1764                 return true;
1765
1766         if (IS_LOCAL(this))
1767         {
1768                 int MOD_RESULT = 0;
1769                 FOREACH_RESULT(I_OnChangeLocalUserHost,OnChangeLocalUserHost(this,host));
1770                 if (MOD_RESULT)
1771                         return false;
1772                 FOREACH_MOD(I_OnChangeHost,OnChangeHost(this,host));
1773         }
1774         if (this->ServerInstance->Config->CycleHosts)
1775                 this->WriteCommonExcept("QUIT :Changing hosts");
1776
1777         /* Fix by Om: userrec::dhost is 65 long, this was truncating some long hosts */
1778         strlcpy(this->dhost,host,64);
1779
1780         if (this->ServerInstance->Config->CycleHosts)
1781         {
1782                 for (UCListIter i = this->chans.begin(); i != this->chans.end(); i++)
1783                 {
1784                         i->first->WriteAllExceptSender(this, false, 0, "JOIN %s", i->first->name);
1785                         std::string n = this->ServerInstance->Modes->ModeString(this, i->first);
1786                         if (n.length() > 0)
1787                                 i->first->WriteAllExceptSender(this, true, 0, "MODE %s +%s", i->first->name, n.c_str());
1788                 }
1789         }
1790
1791         if (IS_LOCAL(this))
1792                 this->WriteServ("396 %s %s :is now your hidden host",this->nick,this->dhost);
1793
1794         return true;
1795 }
1796
1797 bool userrec::ChangeIdent(const char* newident)
1798 {
1799         if (!strcmp(newident, this->ident))
1800                 return true;
1801
1802         if (this->ServerInstance->Config->CycleHosts)
1803                 this->WriteCommonExcept("%s","QUIT :Changing ident");
1804
1805         strlcpy(this->ident, newident, IDENTMAX+2);
1806
1807         if (this->ServerInstance->Config->CycleHosts)
1808         {
1809                 for (UCListIter i = this->chans.begin(); i != this->chans.end(); i++)
1810                 {
1811                         i->first->WriteAllExceptSender(this, false, 0, "JOIN %s", i->first->name);
1812                         std::string n = this->ServerInstance->Modes->ModeString(this, i->first);
1813                         if (n.length() > 0)
1814                                 i->first->WriteAllExceptSender(this, true, 0, "MODE %s +%s", i->first->name, n.c_str());
1815                 }
1816         }
1817
1818         return true;
1819 }
1820
1821 void userrec::NoticeAll(char* text, ...)
1822 {
1823         char textbuffer[MAXBUF];
1824         char formatbuffer[MAXBUF];
1825         va_list argsPtr;
1826
1827         va_start(argsPtr, text);
1828         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1829         va_end(argsPtr);
1830
1831         snprintf(formatbuffer,MAXBUF,"NOTICE $* :%s",textbuffer);
1832
1833         for (std::vector<userrec*>::const_iterator i = ServerInstance->local_users.begin(); i != ServerInstance->local_users.end(); i++)
1834         {
1835                 userrec* t = *i;
1836                 t->WriteFrom(this, std::string(formatbuffer));
1837         }
1838 }
1839
1840
1841 std::string userrec::ChannelList(userrec* source)
1842 {
1843         try
1844         {
1845                 std::string list;
1846                 for (UCListIter i = this->chans.begin(); i != this->chans.end(); i++)
1847                 {
1848                         /* If the target is the same as the sender, let them see all their channels.
1849                          * If the channel is NOT private/secret OR the user shares a common channel
1850                          * If the user is an oper, and the <options:operspywhois> option is set.
1851                          */
1852                         if ((source == this) || (*source->oper && ServerInstance->Config->OperSpyWhois) || (((!i->first->modes[CM_PRIVATE]) && (!i->first->modes[CM_SECRET])) || (i->first->HasUser(source))))
1853                         {
1854                                 list.append(i->first->GetPrefixChar(this)).append(i->first->name).append(" ");
1855                         }
1856                 }
1857                 return list;
1858         }
1859         catch (...)
1860         {
1861                 ServerInstance->Log(DEBUG,"Exception in userrec::ChannelList()");
1862                 return "";
1863         }
1864 }
1865
1866 void userrec::SplitChanList(userrec* dest, const std::string &cl)
1867 {
1868         std::string line;
1869         std::ostringstream prefix;
1870         std::string::size_type start, pos, length;
1871
1872         try
1873         {
1874                 prefix << this->nick << " " << dest->nick << " :";
1875                 line = prefix.str();
1876                 int namelen = strlen(ServerInstance->Config->ServerName) + 6;
1877         
1878                 for (start = 0; (pos = cl.find(' ', start)) != std::string::npos; start = pos+1)
1879                 {
1880                         length = (pos == std::string::npos) ? cl.length() : pos;
1881         
1882                         if (line.length() + namelen + length - start > 510)
1883                         {
1884                                 ServerInstance->SendWhoisLine(this, dest, 319, "%s", line.c_str());
1885                                 line = prefix.str();
1886                         }
1887         
1888                         if(pos == std::string::npos)
1889                         {
1890                                 line.append(cl.substr(start, length - start));
1891                                 break;
1892                         }
1893                         else
1894                         {
1895                                 line.append(cl.substr(start, length - start + 1));
1896                         }
1897                 }
1898         
1899                 if (line.length())
1900                 {
1901                         ServerInstance->SendWhoisLine(this, dest, 319, "%s", line.c_str());
1902                 }
1903         }
1904
1905         catch (...)
1906         {
1907                 ServerInstance->Log(DEBUG,"Exception in userrec::SplitChanList()");
1908         }
1909 }
1910
1911
1912 /* looks up a users password for their connection class (<ALLOW>/<DENY> tags)
1913  * NOTE: If the <ALLOW> or <DENY> tag specifies an ip, and this user resolves,
1914  * then their ip will be taken as 'priority' anyway, so for example,
1915  * <connect allow="127.0.0.1"> will match joe!bloggs@localhost
1916  */
1917 ConnectClass* userrec::GetClass()
1918 {
1919         for (ClassVector::iterator i = ServerInstance->Config->Classes.begin(); i != ServerInstance->Config->Classes.end(); i++)
1920         {
1921                 if ((match(this->GetIPString(),i->GetHost().c_str(),true)) || (match(this->host,i->GetHost().c_str())))
1922                         return &(*i);
1923         }
1924         return NULL;
1925 }
1926
1927 void userrec::PurgeEmptyChannels()
1928 {
1929         std::vector<chanrec*> to_delete;
1930
1931         // firstly decrement the count on each channel
1932         for (UCListIter f = this->chans.begin(); f != this->chans.end(); f++)
1933         {
1934                 f->first->RemoveAllPrefixes(this);
1935                 if (f->first->DelUser(this) == 0)
1936                 {
1937                         /* No users left in here, mark it for deletion */
1938                         try
1939                         {
1940                                 to_delete.push_back(f->first);
1941                         }
1942                         catch (...)
1943                         {
1944                                 ServerInstance->Log(DEBUG,"Exception in userrec::PurgeEmptyChannels to_delete.push_back()");
1945                         }
1946                 }
1947         }
1948
1949         for (std::vector<chanrec*>::iterator n = to_delete.begin(); n != to_delete.end(); n++)
1950         {
1951                 chanrec* thischan = *n;
1952                 chan_hash::iterator i2 = ServerInstance->chanlist.find(thischan->name);
1953                 if (i2 != ServerInstance->chanlist.end())
1954                 {
1955                         FOREACH_MOD(I_OnChannelDelete,OnChannelDelete(i2->second));
1956                         DELETE(i2->second);
1957                         ServerInstance->chanlist.erase(i2);
1958                         this->chans.erase(*n);
1959                 }
1960         }
1961
1962         this->UnOper();
1963 }
1964
1965 void userrec::ShowMOTD()
1966 {
1967         if (!ServerInstance->Config->MOTD.size())
1968         {
1969                 this->WriteServ("422 %s :Message of the day file is missing.",this->nick);
1970                 return;
1971         }
1972         this->WriteServ("375 %s :%s message of the day", this->nick, ServerInstance->Config->ServerName);
1973
1974         for (file_cache::iterator i = ServerInstance->Config->MOTD.begin(); i != ServerInstance->Config->MOTD.end(); i++)
1975                 this->WriteServ("372 %s :- %s",this->nick,i->c_str());
1976
1977         this->WriteServ("376 %s :End of message of the day.", this->nick);
1978 }
1979
1980 void userrec::ShowRULES()
1981 {
1982         if (!ServerInstance->Config->RULES.size())
1983         {
1984                 this->WriteServ("NOTICE %s :Rules file is missing.",this->nick);
1985                 return;
1986         }
1987         this->WriteServ("NOTICE %s :%s rules",this->nick,ServerInstance->Config->ServerName);
1988
1989         for (file_cache::iterator i = ServerInstance->Config->RULES.begin(); i != ServerInstance->Config->RULES.end(); i++)
1990                 this->WriteServ("NOTICE %s :%s",this->nick,i->c_str());
1991
1992         this->WriteServ("NOTICE %s :End of %s rules.",this->nick,ServerInstance->Config->ServerName);
1993 }
1994
1995 void userrec::HandleEvent(EventType et, int errornum)
1996 {
1997         /* WARNING: May delete this user! */
1998         try
1999         {
2000                 switch (et)
2001                 {
2002                         case EVENT_READ:
2003                                 ServerInstance->ProcessUser(this);
2004                                 return;
2005                         break;
2006                         case EVENT_WRITE:
2007                                 this->FlushWriteBuf();
2008                         break;
2009                         case EVENT_ERROR:
2010                                 /** This should be safe, but dont DARE do anything after it -- Brain */
2011                                 this->SetWriteError(errornum ? strerror(errornum) : "EOF from client");
2012                         break;
2013                 }
2014         }
2015         catch (...)
2016         {
2017                 ServerInstance->Log(DEBUG,"Exception in userrec::HandleEvent intercepted");
2018         }
2019
2020         /* If the user has raised an error whilst being processed, quit them now we're safe to */
2021         if (!WriteError.empty())
2022         {
2023                 userrec::QuitUser(ServerInstance, this, GetWriteError());
2024         }
2025 }
2026