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