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