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