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