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