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