]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/users.cpp
irc::stringjoiner cleanup
[user/henk/code/inspircd.git] / src / users.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2006-2009 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2006-2007, 2009 Dennis Friis <peavey@inspircd.org>
7  *   Copyright (C) 2008 John Brooks <john.brooks@dereferenced.net>
8  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
9  *   Copyright (C) 2008 Oliver Lupton <oliverlupton@gmail.com>
10  *   Copyright (C) 2003-2008 Craig Edwards <craigedwards@brainbox.cc>
11  *
12  * This file is part of InspIRCd.  InspIRCd is free software: you can
13  * redistribute it and/or modify it under the terms of the GNU General Public
14  * License as published by the Free Software Foundation, version 2.
15  *
16  * This program is distributed in the hope that it will be useful, but WITHOUT
17  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
19  * details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23  */
24
25
26 #include "inspircd.h"
27 #include <stdarg.h>
28 #include "socketengine.h"
29 #include "xline.h"
30 #include "bancache.h"
31
32 already_sent_t LocalUser::already_sent_id = 0;
33
34 std::string User::ProcessNoticeMasks(const char *sm)
35 {
36         bool adding = true, oldadding = false;
37         const char *c = sm;
38         std::string output;
39
40         while (c && *c)
41         {
42                 switch (*c)
43                 {
44                         case '+':
45                                 adding = true;
46                         break;
47                         case '-':
48                                 adding = false;
49                         break;
50                         case '*':
51                                 for (unsigned char d = 'a'; d <= 'z'; d++)
52                                 {
53                                         if (!ServerInstance->SNO->masks[d - 'a'].Description.empty())
54                                         {
55                                                 if ((!IsNoticeMaskSet(d) && adding) || (IsNoticeMaskSet(d) && !adding))
56                                                 {
57                                                         if ((oldadding != adding) || (!output.length()))
58                                                                 output += (adding ? '+' : '-');
59
60                                                         this->SetNoticeMask(d, adding);
61
62                                                         output += d;
63                                                 }
64                                                 oldadding = adding;
65                                                 char u = toupper(d);
66                                                 if ((!IsNoticeMaskSet(u) && adding) || (IsNoticeMaskSet(u) && !adding))
67                                                 {
68                                                         if ((oldadding != adding) || (!output.length()))
69                                                                 output += (adding ? '+' : '-');
70
71                                                         this->SetNoticeMask(u, adding);
72
73                                                         output += u;
74                                                 }
75                                                 oldadding = adding;
76                                         }
77                                 }
78                         break;
79                         default:
80                                 if (isalpha(*c))
81                                 {
82                                         if ((!IsNoticeMaskSet(*c) && adding) || (IsNoticeMaskSet(*c) && !adding))
83                                         {
84                                                 if ((oldadding != adding) || (!output.length()))
85                                                         output += (adding ? '+' : '-');
86
87                                                 this->SetNoticeMask(*c, adding);
88
89                                                 output += *c;
90                                         }
91                                 }
92                                 else
93                                         this->WriteNumeric(ERR_UNKNOWNSNOMASK, "%s %c :is unknown snomask char to me", this->nick.c_str(), *c);
94
95                                 oldadding = adding;
96                         break;
97                 }
98
99                 c++;
100         }
101
102         std::string s = this->FormatNoticeMasks();
103         if (s.length() == 0)
104         {
105                 this->modes[UM_SNOMASK] = false;
106         }
107
108         return output;
109 }
110
111 bool User::IsNoticeMaskSet(unsigned char sm)
112 {
113         if (!isalpha(sm))
114                 return false;
115         return (snomasks[sm-65]);
116 }
117
118 void User::SetNoticeMask(unsigned char sm, bool value)
119 {
120         if (!isalpha(sm))
121                 return;
122         snomasks[sm-65] = value;
123 }
124
125 const char* User::FormatNoticeMasks()
126 {
127         static char data[MAXBUF];
128         int offset = 0;
129
130         for (int n = 0; n < 64; n++)
131         {
132                 if (snomasks[n])
133                         data[offset++] = n+65;
134         }
135
136         data[offset] = 0;
137         return data;
138 }
139
140 bool User::IsModeSet(unsigned char m)
141 {
142         if (!isalpha(m))
143                 return false;
144         return (modes[m-65]);
145 }
146
147 void User::SetMode(unsigned char m, bool value)
148 {
149         if (!isalpha(m))
150                 return;
151         modes[m-65] = value;
152 }
153
154 const char* User::FormatModes(bool showparameters)
155 {
156         static std::string data;
157         std::string params;
158         data.clear();
159
160         for (unsigned char n = 0; n < 64; n++)
161         {
162                 if (modes[n])
163                 {
164                         data.push_back(n + 65);
165                         ModeHandler* mh = ServerInstance->Modes->FindMode(n + 65, MODETYPE_USER);
166                         if (showparameters && mh && mh->GetNumParams(true))
167                         {
168                                 std::string p = mh->GetUserParameter(this);
169                                 if (p.length())
170                                         params.append(" ").append(p);
171                         }
172                 }
173         }
174         data += params;
175         return data.c_str();
176 }
177
178 User::User(const std::string &uid, const std::string& sid, int type)
179         : uuid(uid), server(sid), usertype(type)
180 {
181         age = ServerInstance->Time();
182         signon = 0;
183         registered = 0;
184         quietquit = quitting = false;
185         client_sa.sa.sa_family = AF_UNSPEC;
186
187         ServerInstance->Logs->Log("USERS", LOG_DEBUG, "New UUID for user: %s", uuid.c_str());
188
189         user_hash::iterator finduuid = ServerInstance->Users->uuidlist->find(uuid);
190         if (finduuid == ServerInstance->Users->uuidlist->end())
191                 (*ServerInstance->Users->uuidlist)[uuid] = this;
192         else
193                 throw CoreException("Duplicate UUID "+std::string(uuid)+" in User constructor");
194 }
195
196 LocalUser::LocalUser(int myfd, irc::sockets::sockaddrs* client, irc::sockets::sockaddrs* servaddr)
197         : User(ServerInstance->UIDGen.GetUID(), ServerInstance->Config->ServerName, USERTYPE_LOCAL), eh(this),
198         localuseriter(ServerInstance->Users->local_users.end()),
199         bytes_in(0), bytes_out(0), cmds_in(0), cmds_out(0), nping(0), CommandFloodPenalty(0),
200         already_sent(0)
201 {
202         exempt = quitting_sendq = false;
203         idle_lastmsg = 0;
204         ident = "unknown";
205         lastping = 0;
206         eh.SetFd(myfd);
207         memcpy(&client_sa, client, sizeof(irc::sockets::sockaddrs));
208         memcpy(&server_sa, servaddr, sizeof(irc::sockets::sockaddrs));
209         dhost = host = GetIPString();
210 }
211
212 User::~User()
213 {
214         if (ServerInstance->Users->uuidlist->find(uuid) != ServerInstance->Users->uuidlist->end())
215                 ServerInstance->Logs->Log("USERS", LOG_DEFAULT, "User destructor for %s called without cull", uuid.c_str());
216 }
217
218 const std::string& User::MakeHost()
219 {
220         if (!this->cached_makehost.empty())
221                 return this->cached_makehost;
222
223         char nhost[MAXBUF];
224         /* This is much faster than snprintf */
225         char* t = nhost;
226         for(const char* n = ident.c_str(); *n; n++)
227                 *t++ = *n;
228         *t++ = '@';
229         for(const char* n = host.c_str(); *n; n++)
230                 *t++ = *n;
231         *t = 0;
232
233         this->cached_makehost.assign(nhost);
234
235         return this->cached_makehost;
236 }
237
238 const std::string& User::MakeHostIP()
239 {
240         if (!this->cached_hostip.empty())
241                 return this->cached_hostip;
242
243         char ihost[MAXBUF];
244         /* This is much faster than snprintf */
245         char* t = ihost;
246         for(const char* n = ident.c_str(); *n; n++)
247                 *t++ = *n;
248         *t++ = '@';
249         for(const char* n = this->GetIPString().c_str(); *n; n++)
250                 *t++ = *n;
251         *t = 0;
252
253         this->cached_hostip = ihost;
254
255         return this->cached_hostip;
256 }
257
258 const std::string& User::GetFullHost()
259 {
260         if (!this->cached_fullhost.empty())
261                 return this->cached_fullhost;
262
263         char result[MAXBUF];
264         char* t = result;
265         for(const char* n = nick.c_str(); *n; n++)
266                 *t++ = *n;
267         *t++ = '!';
268         for(const char* n = ident.c_str(); *n; n++)
269                 *t++ = *n;
270         *t++ = '@';
271         for(const char* n = dhost.c_str(); *n; n++)
272                 *t++ = *n;
273         *t = 0;
274
275         this->cached_fullhost = result;
276
277         return this->cached_fullhost;
278 }
279
280 char* User::MakeWildHost()
281 {
282         static char nresult[MAXBUF];
283         char* t = nresult;
284         *t++ = '*';     *t++ = '!';
285         *t++ = '*';     *t++ = '@';
286         for(const char* n = dhost.c_str(); *n; n++)
287                 *t++ = *n;
288         *t = 0;
289         return nresult;
290 }
291
292 const std::string& User::GetFullRealHost()
293 {
294         if (!this->cached_fullrealhost.empty())
295                 return this->cached_fullrealhost;
296
297         char fresult[MAXBUF];
298         char* t = fresult;
299         for(const char* n = nick.c_str(); *n; n++)
300                 *t++ = *n;
301         *t++ = '!';
302         for(const char* n = ident.c_str(); *n; n++)
303                 *t++ = *n;
304         *t++ = '@';
305         for(const char* n = host.c_str(); *n; n++)
306                 *t++ = *n;
307         *t = 0;
308
309         this->cached_fullrealhost = fresult;
310
311         return this->cached_fullrealhost;
312 }
313
314 InviteList& LocalUser::GetInviteList()
315 {
316         RemoveExpiredInvites();
317         return invites;
318 }
319
320 bool LocalUser::RemoveInvite(Channel* chan)
321 {
322         Invitation* inv = Invitation::Find(chan, this);
323         if (inv)
324         {
325                 inv->cull();
326                 delete inv;
327                 return true;
328         }
329         return false;
330 }
331
332 void LocalUser::RemoveExpiredInvites()
333 {
334         Invitation::Find(NULL, this);
335 }
336
337 bool User::HasModePermission(unsigned char, ModeType)
338 {
339         return true;
340 }
341
342 bool LocalUser::HasModePermission(unsigned char mode, ModeType type)
343 {
344         if (!this->IsOper())
345                 return false;
346
347         if (mode < 'A' || mode > ('A' + 64)) return false;
348
349         return ((type == MODETYPE_USER ? oper->AllowedUserModes : oper->AllowedChanModes))[(mode - 'A')];
350
351 }
352 /*
353  * users on remote servers can completely bypass all permissions based checks.
354  * This prevents desyncs when one server has different type/class tags to another.
355  * That having been said, this does open things up to the possibility of source changes
356  * allowing remote kills, etc - but if they have access to the src, they most likely have
357  * access to the conf - so it's an end to a means either way.
358  */
359 bool User::HasPermission(const std::string&)
360 {
361         return true;
362 }
363
364 bool LocalUser::HasPermission(const std::string &command)
365 {
366         // are they even an oper at all?
367         if (!this->IsOper())
368         {
369                 return false;
370         }
371
372         if (oper->AllowedOperCommands.find(command) != oper->AllowedOperCommands.end())
373                 return true;
374         else if (oper->AllowedOperCommands.find("*") != oper->AllowedOperCommands.end())
375                 return true;
376
377         return false;
378 }
379
380 bool User::HasPrivPermission(const std::string &privstr, bool noisy)
381 {
382         return true;
383 }
384
385 bool LocalUser::HasPrivPermission(const std::string &privstr, bool noisy)
386 {
387         if (!this->IsOper())
388         {
389                 if (noisy)
390                         this->WriteNotice("You are not an oper");
391                 return false;
392         }
393
394         if (oper->AllowedPrivs.find(privstr) != oper->AllowedPrivs.end())
395         {
396                 return true;
397         }
398         else if (oper->AllowedPrivs.find("*") != oper->AllowedPrivs.end())
399         {
400                 return true;
401         }
402
403         if (noisy)
404                 this->WriteNotice("Oper type " + oper->name + " does not have access to priv " + privstr);
405
406         return false;
407 }
408
409 void UserIOHandler::OnDataReady()
410 {
411         if (user->quitting)
412                 return;
413
414         if (recvq.length() > user->MyClass->GetRecvqMax() && !user->HasPrivPermission("users/flood/increased-buffers"))
415         {
416                 ServerInstance->Users->QuitUser(user, "RecvQ exceeded");
417                 ServerInstance->SNO->WriteToSnoMask('a', "User %s RecvQ of %lu exceeds connect class maximum of %lu",
418                         user->nick.c_str(), (unsigned long)recvq.length(), user->MyClass->GetRecvqMax());
419                 return;
420         }
421         unsigned long sendqmax = ULONG_MAX;
422         if (!user->HasPrivPermission("users/flood/increased-buffers"))
423                 sendqmax = user->MyClass->GetSendqSoftMax();
424         unsigned long penaltymax = ULONG_MAX;
425         if (!user->HasPrivPermission("users/flood/no-fakelag"))
426                 penaltymax = user->MyClass->GetPenaltyThreshold() * 1000;
427
428         while (user->CommandFloodPenalty < penaltymax && getSendQSize() < sendqmax)
429         {
430                 std::string line;
431                 line.reserve(MAXBUF);
432                 std::string::size_type qpos = 0;
433                 while (qpos < recvq.length())
434                 {
435                         char c = recvq[qpos++];
436                         switch (c)
437                         {
438                         case '\0':
439                                 c = ' ';
440                                 break;
441                         case '\r':
442                                 continue;
443                         case '\n':
444                                 goto eol_found;
445                         }
446                         if (line.length() < MAXBUF - 2)
447                                 line.push_back(c);
448                 }
449                 // if we got here, the recvq ran out before we found a newline
450                 return;
451 eol_found:
452                 // just found a newline. Terminate the string, and pull it out of recvq
453                 recvq = recvq.substr(qpos);
454
455                 // TODO should this be moved to when it was inserted in recvq?
456                 ServerInstance->stats->statsRecv += qpos;
457                 user->bytes_in += qpos;
458                 user->cmds_in++;
459
460                 ServerInstance->Parser->ProcessBuffer(line, user);
461                 if (user->quitting)
462                         return;
463         }
464         if (user->CommandFloodPenalty >= penaltymax && !user->MyClass->fakelag)
465                 ServerInstance->Users->QuitUser(user, "Excess Flood");
466 }
467
468 void UserIOHandler::AddWriteBuf(const std::string &data)
469 {
470         if (user->quitting_sendq)
471                 return;
472         if (!user->quitting && getSendQSize() + data.length() > user->MyClass->GetSendqHardMax() &&
473                 !user->HasPrivPermission("users/flood/increased-buffers"))
474         {
475                 user->quitting_sendq = true;
476                 ServerInstance->GlobalCulls.AddSQItem(user);
477                 return;
478         }
479
480         // We still want to append data to the sendq of a quitting user,
481         // e.g. their ERROR message that says 'closing link'
482
483         WriteData(data);
484 }
485
486 void UserIOHandler::OnError(BufferedSocketError)
487 {
488         ServerInstance->Users->QuitUser(user, getError());
489 }
490
491 CullResult User::cull()
492 {
493         if (!quitting)
494                 ServerInstance->Users->QuitUser(this, "Culled without QuitUser");
495         PurgeEmptyChannels();
496
497         if (client_sa.sa.sa_family != AF_UNSPEC)
498                 ServerInstance->Users->RemoveCloneCounts(this);
499
500         return Extensible::cull();
501 }
502
503 CullResult LocalUser::cull()
504 {
505         // The iterator is initialized to local_users.end() in the constructor. It is
506         // overwritten in UserManager::AddUser() with the real iterator so this check
507         // is only a precaution currently.
508         if (localuseriter != ServerInstance->Users->local_users.end())
509                 ServerInstance->Users->local_users.erase(localuseriter);
510         else
511                 ServerInstance->Logs->Log("USERS", LOG_DEFAULT, "ERROR: LocalUserIter does not point to a valid entry for " + this->nick);
512
513         ClearInvites();
514         eh.cull();
515         return User::cull();
516 }
517
518 CullResult FakeUser::cull()
519 {
520         // Fake users don't quit, they just get culled.
521         quitting = true;
522         ServerInstance->Users->clientlist->erase(nick);
523         ServerInstance->Users->uuidlist->erase(uuid);
524         return User::cull();
525 }
526
527 void User::Oper(OperInfo* info)
528 {
529         if (this->IsModeSet('o'))
530                 this->UnOper();
531
532         this->modes[UM_OPERATOR] = 1;
533         this->oper = info;
534         this->WriteServ("MODE %s :+o", this->nick.c_str());
535         FOREACH_MOD(I_OnOper, OnOper(this, info->name));
536
537         std::string opername;
538         if (info->oper_block)
539                 opername = info->oper_block->getString("name");
540
541         if (IS_LOCAL(this))
542         {
543                 LocalUser* l = IS_LOCAL(this);
544                 std::string vhost = oper->getConfig("vhost");
545                 if (!vhost.empty())
546                         l->ChangeDisplayedHost(vhost.c_str());
547                 std::string opClass = oper->getConfig("class");
548                 if (!opClass.empty())
549                         l->SetClass(opClass);
550         }
551
552         ServerInstance->SNO->WriteToSnoMask('o',"%s (%s@%s) is now an IRC operator of type %s (using oper '%s')",
553                 nick.c_str(), ident.c_str(), host.c_str(), oper->name.c_str(), opername.c_str());
554         this->WriteNumeric(381, "%s :You are now %s %s", nick.c_str(), strchr("aeiouAEIOU", oper->name[0]) ? "an" : "a", oper->name.c_str());
555
556         ServerInstance->Logs->Log("OPER", LOG_DEFAULT, "%s opered as type: %s", GetFullRealHost().c_str(), oper->name.c_str());
557         ServerInstance->Users->all_opers.push_back(this);
558
559         // Expand permissions from config for faster lookup
560         if (IS_LOCAL(this))
561                 oper->init();
562
563         FOREACH_MOD(I_OnPostOper,OnPostOper(this, oper->name, opername));
564 }
565
566 void OperInfo::init()
567 {
568         AllowedOperCommands.clear();
569         AllowedPrivs.clear();
570         AllowedUserModes.reset();
571         AllowedChanModes.reset();
572         AllowedUserModes['o' - 'A'] = true; // Call me paranoid if you want.
573
574         for(std::vector<reference<ConfigTag> >::iterator iter = class_blocks.begin(); iter != class_blocks.end(); ++iter)
575         {
576                 ConfigTag* tag = *iter;
577                 std::string mycmd, mypriv;
578                 /* Process commands */
579                 irc::spacesepstream CommandList(tag->getString("commands"));
580                 while (CommandList.GetToken(mycmd))
581                 {
582                         AllowedOperCommands.insert(mycmd);
583                 }
584
585                 irc::spacesepstream PrivList(tag->getString("privs"));
586                 while (PrivList.GetToken(mypriv))
587                 {
588                         AllowedPrivs.insert(mypriv);
589                 }
590
591                 std::string modes = tag->getString("usermodes");
592                 for (std::string::const_iterator c = modes.begin(); c != modes.end(); ++c)
593                 {
594                         if (*c == '*')
595                         {
596                                 this->AllowedUserModes.set();
597                         }
598                         else if (*c >= 'A' && *c < 'z')
599                         {
600                                 this->AllowedUserModes[*c - 'A'] = true;
601                         }
602                 }
603
604                 modes = tag->getString("chanmodes");
605                 for (std::string::const_iterator c = modes.begin(); c != modes.end(); ++c)
606                 {
607                         if (*c == '*')
608                         {
609                                 this->AllowedChanModes.set();
610                         }
611                         else if (*c >= 'A' && *c < 'z')
612                         {
613                                 this->AllowedChanModes[*c - 'A'] = true;
614                         }
615                 }
616         }
617 }
618
619 void User::UnOper()
620 {
621         if (!this->IsOper())
622                 return;
623
624         /*
625          * unset their oper type (what IS_OPER checks).
626          * note, order is important - this must come before modes as -o attempts
627          * to call UnOper. -- w00t
628          */
629         oper = NULL;
630
631
632         /* Remove all oper only modes from the user when the deoper - Bug #466*/
633         std::string moderemove("-");
634
635         for (unsigned char letter = 'A'; letter <= 'z'; letter++)
636         {
637                 ModeHandler* mh = ServerInstance->Modes->FindMode(letter, MODETYPE_USER);
638                 if (mh && mh->NeedsOper())
639                         moderemove += letter;
640         }
641
642
643         std::vector<std::string> parameters;
644         parameters.push_back(this->nick);
645         parameters.push_back(moderemove);
646
647         ServerInstance->Parser->CallHandler("MODE", parameters, this);
648
649         /* remove the user from the oper list. Will remove multiple entries as a safeguard against bug #404 */
650         ServerInstance->Users->all_opers.remove(this);
651
652         this->modes[UM_OPERATOR] = 0;
653 }
654
655 /*
656  * Check class restrictions
657  */
658 void LocalUser::CheckClass()
659 {
660         ConnectClass* a = this->MyClass;
661
662         if (!a)
663         {
664                 ServerInstance->Users->QuitUser(this, "Access denied by configuration");
665                 return;
666         }
667         else if (a->type == CC_DENY)
668         {
669                 ServerInstance->Users->QuitUser(this, a->config->getString("reason", "Unauthorised connection"));
670                 return;
671         }
672         else if ((a->GetMaxLocal()) && (ServerInstance->Users->LocalCloneCount(this) > a->GetMaxLocal()))
673         {
674                 ServerInstance->Users->QuitUser(this, "No more connections allowed from your host via this connect class (local)");
675                 if (a->maxconnwarn)
676                         ServerInstance->SNO->WriteToSnoMask('a', "WARNING: maximum LOCAL connections (%ld) exceeded for IP %s", a->GetMaxLocal(), this->GetIPString().c_str());
677                 return;
678         }
679         else if ((a->GetMaxGlobal()) && (ServerInstance->Users->GlobalCloneCount(this) > a->GetMaxGlobal()))
680         {
681                 ServerInstance->Users->QuitUser(this, "No more connections allowed from your host via this connect class (global)");
682                 if (a->maxconnwarn)
683                         ServerInstance->SNO->WriteToSnoMask('a', "WARNING: maximum GLOBAL connections (%ld) exceeded for IP %s", a->GetMaxGlobal(), this->GetIPString().c_str());
684                 return;
685         }
686
687         this->nping = ServerInstance->Time() + a->GetPingTime() + ServerInstance->Config->dns_timeout;
688 }
689
690 bool LocalUser::CheckLines(bool doZline)
691 {
692         const char* check[] = { "G" , "K", (doZline) ? "Z" : NULL, NULL };
693
694         if (!this->exempt)
695         {
696                 for (int n = 0; check[n]; ++n)
697                 {
698                         XLine *r = ServerInstance->XLines->MatchesLine(check[n], this);
699
700                         if (r)
701                         {
702                                 r->Apply(this);
703                                 return true;
704                         }
705                 }
706         }
707
708         return false;
709 }
710
711 void LocalUser::FullConnect()
712 {
713         ServerInstance->stats->statsConnects++;
714         this->idle_lastmsg = ServerInstance->Time();
715
716         /*
717          * You may be thinking "wtf, we checked this in User::AddClient!" - and yes, we did, BUT.
718          * At the time AddClient is called, we don't have a resolved host, by here we probably do - which
719          * may put the user into a totally seperate class with different restrictions! so we *must* check again.
720          * Don't remove this! -- w00t
721          */
722         MyClass = NULL;
723         SetClass();
724         CheckClass();
725         CheckLines();
726
727         if (quitting)
728                 return;
729
730         this->WriteNumeric(RPL_WELCOME, "%s :Welcome to the %s IRC Network %s",this->nick.c_str(), ServerInstance->Config->Network.c_str(), GetFullRealHost().c_str());
731         this->WriteNumeric(RPL_YOURHOSTIS, "%s :Your host is %s, running version %s",this->nick.c_str(),ServerInstance->Config->ServerName.c_str(),BRANCH);
732         this->WriteNumeric(RPL_SERVERCREATED, "%s :This server was created %s %s", this->nick.c_str(), __TIME__, __DATE__);
733
734         std::string umlist = ServerInstance->Modes->UserModeList();
735         std::string cmlist = ServerInstance->Modes->ChannelModeList();
736         std::string pmlist = ServerInstance->Modes->ParaModeList();
737         this->WriteNumeric(RPL_SERVERVERSION, "%s %s %s %s %s %s", this->nick.c_str(), ServerInstance->Config->ServerName.c_str(), BRANCH, umlist.c_str(), cmlist.c_str(), pmlist.c_str());
738
739         ServerInstance->ISupport.SendTo(this);
740         this->WriteNumeric(RPL_YOURUUID, "%s %s :your unique ID", this->nick.c_str(), this->uuid.c_str());
741
742         /* Now registered */
743         if (ServerInstance->Users->unregistered_count)
744                 ServerInstance->Users->unregistered_count--;
745
746         /* Trigger MOTD and LUSERS output, give modules a chance too */
747         ModResult MOD_RESULT;
748         std::string command("LUSERS");
749         std::vector<std::string> parameters;
750         FIRST_MOD_RESULT(OnPreCommand, MOD_RESULT, (command, parameters, this, true, command));
751         if (!MOD_RESULT)
752                 ServerInstance->Parser->CallHandler(command, parameters, this);
753
754         MOD_RESULT = MOD_RES_PASSTHRU;
755         command = "MOTD";
756         FIRST_MOD_RESULT(OnPreCommand, MOD_RESULT, (command, parameters, this, true, command));
757         if (!MOD_RESULT)
758                 ServerInstance->Parser->CallHandler(command, parameters, this);
759
760         if (ServerInstance->Config->RawLog)
761                 WriteServ("PRIVMSG %s :*** Raw I/O logging is enabled on this server. All messages, passwords, and commands are being recorded.", nick.c_str());
762
763         /*
764          * We don't set REG_ALL until triggering OnUserConnect, so some module events don't spew out stuff
765          * for a user that doesn't exist yet.
766          */
767         FOREACH_MOD(I_OnUserConnect,OnUserConnect(this));
768
769         this->registered = REG_ALL;
770
771         FOREACH_MOD(I_OnPostConnect,OnPostConnect(this));
772
773         ServerInstance->SNO->WriteToSnoMask('c',"Client connecting on port %d (class %s): %s (%s) [%s]",
774                 this->GetServerPort(), this->MyClass->name.c_str(), GetFullRealHost().c_str(), this->GetIPString().c_str(), this->fullname.c_str());
775         ServerInstance->Logs->Log("BANCACHE", LOG_DEBUG, "BanCache: Adding NEGATIVE hit for " + this->GetIPString());
776         ServerInstance->BanCache->AddHit(this->GetIPString(), "", "");
777         // reset the flood penalty (which could have been raised due to things like auto +x)
778         CommandFloodPenalty = 0;
779 }
780
781 void User::InvalidateCache()
782 {
783         /* Invalidate cache */
784         cached_fullhost.clear();
785         cached_hostip.clear();
786         cached_makehost.clear();
787         cached_fullrealhost.clear();
788 }
789
790 bool User::ChangeNick(const std::string& newnick, bool force)
791 {
792         if (quitting)
793         {
794                 ServerInstance->Logs->Log("USERS", LOG_DEFAULT, "ERROR: Attempted to change nick of a quitting user: " + this->nick);
795                 return false;
796         }
797
798         ModResult MOD_RESULT;
799
800         if (force)
801                 ServerInstance->NICKForced.set(this, 1);
802         FIRST_MOD_RESULT(OnUserPreNick, MOD_RESULT, (this, newnick));
803         ServerInstance->NICKForced.set(this, 0);
804
805         if (MOD_RESULT == MOD_RES_DENY)
806         {
807                 ServerInstance->stats->statsCollisions++;
808                 return false;
809         }
810
811         if (assign(newnick) == assign(nick))
812         {
813                 // case change, don't need to check Q:lines and such
814                 // and, if it's identical including case, we can leave right now
815                 if (newnick == nick)
816                         return true;
817         }
818         else
819         {
820                 /*
821                  * Don't check Q:Lines if it's a server-enforced change, just on the off-chance some fucking *moron*
822                  * tries to Q:Line SIDs, also, this means we just get our way period, as it really should be.
823                  * Thanks Kein for finding this. -- w00t
824                  *
825                  * Also don't check Q:Lines for remote nickchanges, they should have our Q:Lines anyway to enforce themselves.
826                  *              -- w00t
827                  */
828                 if (IS_LOCAL(this) && !force)
829                 {
830                         XLine* mq = ServerInstance->XLines->MatchesLine("Q",newnick);
831                         if (mq)
832                         {
833                                 if (this->registered == REG_ALL)
834                                 {
835                                         ServerInstance->SNO->WriteGlobalSno('a', "Q-Lined nickname %s from %s: %s",
836                                                 newnick.c_str(), GetFullRealHost().c_str(), mq->reason.c_str());
837                                 }
838                                 this->WriteNumeric(432, "%s %s :Invalid nickname: %s",this->nick.c_str(), newnick.c_str(), mq->reason.c_str());
839                                 return false;
840                         }
841
842                         if (ServerInstance->Config->RestrictBannedUsers)
843                         {
844                                 for (UCListIter i = this->chans.begin(); i != this->chans.end(); i++)
845                                 {
846                                         Channel *chan = *i;
847                                         if (chan->GetPrefixValue(this) < VOICE_VALUE && chan->IsBanned(this))
848                                         {
849                                                 this->WriteNumeric(404, "%s %s :Cannot send to channel (you're banned)", this->nick.c_str(), chan->name.c_str());
850                                                 return false;
851                                         }
852                                 }
853                         }
854                 }
855
856                 /*
857                  * Uh oh.. if the nickname is in use, and it's not in use by the person using it (doh) --
858                  * then we have a potential collide. Check whether someone else is camping on the nick
859                  * (i.e. connect -> send NICK, don't send USER.) If they are camping, force-change the
860                  * camper to their UID, and allow the incoming nick change.
861                  *
862                  * If the guy using the nick is already using it, tell the incoming nick change to gtfo,
863                  * because the nick is already (rightfully) in use. -- w00t
864                  */
865                 User* InUse = ServerInstance->FindNickOnly(newnick);
866                 if (InUse && (InUse != this))
867                 {
868                         if (InUse->registered != REG_ALL)
869                         {
870                                 /* force the camper to their UUID, and ask them to re-send a NICK. */
871                                 InUse->WriteTo(InUse, "NICK %s", InUse->uuid.c_str());
872                                 InUse->WriteNumeric(433, "%s %s :Nickname overruled.", InUse->nick.c_str(), InUse->nick.c_str());
873
874                                 ServerInstance->Users->clientlist->erase(InUse->nick);
875                                 (*(ServerInstance->Users->clientlist))[InUse->uuid] = InUse;
876
877                                 InUse->nick = InUse->uuid;
878                                 InUse->InvalidateCache();
879                                 InUse->registered &= ~REG_NICK;
880                         }
881                         else
882                         {
883                                 /* No camping, tell the incoming user  to stop trying to change nick ;p */
884                                 this->WriteNumeric(433, "%s %s :Nickname is already in use.", this->registered >= REG_NICK ? this->nick.c_str() : "*", newnick.c_str());
885                                 return false;
886                         }
887                 }
888         }
889
890         if (this->registered == REG_ALL)
891                 this->WriteCommon("NICK %s",newnick.c_str());
892         std::string oldnick = nick;
893         nick = newnick;
894
895         InvalidateCache();
896         ServerInstance->Users->clientlist->erase(oldnick);
897         (*(ServerInstance->Users->clientlist))[newnick] = this;
898
899         if (registered == REG_ALL)
900                 FOREACH_MOD(I_OnUserPostNick,OnUserPostNick(this,oldnick));
901
902         return true;
903 }
904
905 int LocalUser::GetServerPort()
906 {
907         switch (this->server_sa.sa.sa_family)
908         {
909                 case AF_INET6:
910                         return htons(this->server_sa.in6.sin6_port);
911                 case AF_INET:
912                         return htons(this->server_sa.in4.sin_port);
913         }
914         return 0;
915 }
916
917 const std::string& User::GetIPString()
918 {
919         int port;
920         if (cachedip.empty())
921         {
922                 irc::sockets::satoap(client_sa, cachedip, port);
923                 /* IP addresses starting with a : on irc are a Bad Thing (tm) */
924                 if (cachedip[0] == ':')
925                         cachedip.insert(0,1,'0');
926         }
927
928         return cachedip;
929 }
930
931 irc::sockets::cidr_mask User::GetCIDRMask()
932 {
933         int range = 0;
934         switch (client_sa.sa.sa_family)
935         {
936                 case AF_INET6:
937                         range = ServerInstance->Config->c_ipv6_range;
938                         break;
939                 case AF_INET:
940                         range = ServerInstance->Config->c_ipv4_range;
941                         break;
942         }
943         return irc::sockets::cidr_mask(client_sa, range);
944 }
945
946 bool User::SetClientIP(const char* sip, bool recheck_eline)
947 {
948         cachedip.clear();
949         cached_hostip.clear();
950         return irc::sockets::aptosa(sip, 0, client_sa);
951 }
952
953 void User::SetClientIP(const irc::sockets::sockaddrs& sa, bool recheck_eline)
954 {
955         cachedip.clear();
956         cached_hostip.clear();
957         memcpy(&client_sa, &sa, sizeof(irc::sockets::sockaddrs));
958 }
959
960 bool LocalUser::SetClientIP(const char* sip, bool recheck_eline)
961 {
962         irc::sockets::sockaddrs sa;
963         if (!irc::sockets::aptosa(sip, 0, sa))
964                 // Invalid
965                 return false;
966
967         LocalUser::SetClientIP(sa, recheck_eline);
968         return true;
969 }
970
971 void LocalUser::SetClientIP(const irc::sockets::sockaddrs& sa, bool recheck_eline)
972 {
973         if (sa != client_sa)
974         {
975                 User::SetClientIP(sa);
976                 if (recheck_eline)
977                         this->exempt = (ServerInstance->XLines->MatchesLine("E", this) != NULL);
978
979                 FOREACH_MOD(I_OnSetUserIP,OnSetUserIP(this));
980         }
981 }
982
983 static std::string wide_newline("\r\n");
984
985 void User::Write(const std::string& text)
986 {
987 }
988
989 void User::Write(const char *text, ...)
990 {
991 }
992
993 void LocalUser::Write(const std::string& text)
994 {
995         if (!ServerInstance->SE->BoundsCheckFd(&eh))
996                 return;
997
998         if (text.length() > MAXBUF - 2)
999         {
1000                 // this should happen rarely or never. Crop the string at 512 and try again.
1001                 std::string try_again = text.substr(0, MAXBUF - 2);
1002                 Write(try_again);
1003                 return;
1004         }
1005
1006         ServerInstance->Logs->Log("USEROUTPUT", LOG_RAWIO, "C[%s] O %s", uuid.c_str(), text.c_str());
1007
1008         eh.AddWriteBuf(text);
1009         eh.AddWriteBuf(wide_newline);
1010
1011         ServerInstance->stats->statsSent += text.length() + 2;
1012         this->bytes_out += text.length() + 2;
1013         this->cmds_out++;
1014 }
1015
1016 /** Write()
1017  */
1018 void LocalUser::Write(const char *text, ...)
1019 {
1020         va_list argsPtr;
1021         char textbuffer[MAXBUF];
1022
1023         va_start(argsPtr, text);
1024         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1025         va_end(argsPtr);
1026
1027         this->Write(std::string(textbuffer));
1028 }
1029
1030 void User::WriteServ(const std::string& text)
1031 {
1032         this->Write(":%s %s",ServerInstance->Config->ServerName.c_str(),text.c_str());
1033 }
1034
1035 /** WriteServ()
1036  *  Same as Write(), except `text' is prefixed with `:server.name '.
1037  */
1038 void User::WriteServ(const char* text, ...)
1039 {
1040         va_list argsPtr;
1041         char textbuffer[MAXBUF];
1042
1043         va_start(argsPtr, text);
1044         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1045         va_end(argsPtr);
1046
1047         this->WriteServ(std::string(textbuffer));
1048 }
1049
1050 void User::WriteNotice(const std::string& text)
1051 {
1052         this->WriteServ("NOTICE " + (this->registered == REG_ALL ? this->nick : "*") + " :" + text);
1053 }
1054
1055 void User::WriteNumeric(unsigned int numeric, const char* text, ...)
1056 {
1057         va_list argsPtr;
1058         char textbuffer[MAXBUF];
1059
1060         va_start(argsPtr, text);
1061         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1062         va_end(argsPtr);
1063
1064         this->WriteNumeric(numeric, std::string(textbuffer));
1065 }
1066
1067 void User::WriteNumeric(unsigned int numeric, const std::string &text)
1068 {
1069         char textbuffer[MAXBUF];
1070         ModResult MOD_RESULT;
1071
1072         FIRST_MOD_RESULT(OnNumeric, MOD_RESULT, (this, numeric, text));
1073
1074         if (MOD_RESULT == MOD_RES_DENY)
1075                 return;
1076
1077         snprintf(textbuffer,MAXBUF,":%s %03u %s",ServerInstance->Config->ServerName.c_str(), numeric, text.c_str());
1078         this->Write(std::string(textbuffer));
1079 }
1080
1081 void User::WriteFrom(User *user, const std::string &text)
1082 {
1083         const std::string message = ":" + user->GetFullHost() + " " + text;
1084         this->Write(message);
1085 }
1086
1087
1088 /* write text from an originating user to originating user */
1089
1090 void User::WriteFrom(User *user, const char* text, ...)
1091 {
1092         va_list argsPtr;
1093         char textbuffer[MAXBUF];
1094
1095         va_start(argsPtr, text);
1096         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1097         va_end(argsPtr);
1098
1099         this->WriteFrom(user, std::string(textbuffer));
1100 }
1101
1102
1103 /* write text to an destination user from a source user (e.g. user privmsg) */
1104
1105 void User::WriteTo(User *dest, const char *data, ...)
1106 {
1107         char textbuffer[MAXBUF];
1108         va_list argsPtr;
1109
1110         va_start(argsPtr, data);
1111         vsnprintf(textbuffer, MAXBUF, data, argsPtr);
1112         va_end(argsPtr);
1113
1114         this->WriteTo(dest, std::string(textbuffer));
1115 }
1116
1117 void User::WriteTo(User *dest, const std::string &data)
1118 {
1119         dest->WriteFrom(this, data);
1120 }
1121
1122 void User::WriteCommon(const char* text, ...)
1123 {
1124         char textbuffer[MAXBUF];
1125         va_list argsPtr;
1126
1127         if (this->registered != REG_ALL || quitting)
1128                 return;
1129
1130         int len = snprintf(textbuffer,MAXBUF,":%s ",this->GetFullHost().c_str());
1131
1132         va_start(argsPtr, text);
1133         vsnprintf(textbuffer + len, MAXBUF - len, text, argsPtr);
1134         va_end(argsPtr);
1135
1136         this->WriteCommonRaw(std::string(textbuffer), true);
1137 }
1138
1139 void User::WriteCommonExcept(const char* text, ...)
1140 {
1141         char textbuffer[MAXBUF];
1142         va_list argsPtr;
1143
1144         if (this->registered != REG_ALL || quitting)
1145                 return;
1146
1147         int len = snprintf(textbuffer,MAXBUF,":%s ",this->GetFullHost().c_str());
1148
1149         va_start(argsPtr, text);
1150         vsnprintf(textbuffer + len, MAXBUF - len, text, argsPtr);
1151         va_end(argsPtr);
1152
1153         this->WriteCommonRaw(std::string(textbuffer), false);
1154 }
1155
1156 void User::WriteCommonRaw(const std::string &line, bool include_self)
1157 {
1158         if (this->registered != REG_ALL || quitting)
1159                 return;
1160
1161         LocalUser::already_sent_id++;
1162
1163         UserChanList include_c(chans);
1164         std::map<User*,bool> exceptions;
1165
1166         exceptions[this] = include_self;
1167
1168         FOREACH_MOD(I_OnBuildNeighborList,OnBuildNeighborList(this, include_c, exceptions));
1169
1170         for (std::map<User*,bool>::iterator i = exceptions.begin(); i != exceptions.end(); ++i)
1171         {
1172                 LocalUser* u = IS_LOCAL(i->first);
1173                 if (u && !u->quitting)
1174                 {
1175                         u->already_sent = LocalUser::already_sent_id;
1176                         if (i->second)
1177                                 u->Write(line);
1178                 }
1179         }
1180         for (UCListIter v = include_c.begin(); v != include_c.end(); ++v)
1181         {
1182                 Channel* c = *v;
1183                 const UserMembList* ulist = c->GetUsers();
1184                 for (UserMembList::const_iterator i = ulist->begin(); i != ulist->end(); i++)
1185                 {
1186                         LocalUser* u = IS_LOCAL(i->first);
1187                         if (u && !u->quitting && u->already_sent != LocalUser::already_sent_id)
1188                         {
1189                                 u->already_sent = LocalUser::already_sent_id;
1190                                 u->Write(line);
1191                         }
1192                 }
1193         }
1194 }
1195
1196 void User::WriteCommonQuit(const std::string &normal_text, const std::string &oper_text)
1197 {
1198         if (this->registered != REG_ALL)
1199                 return;
1200
1201         already_sent_t uniq_id = ++LocalUser::already_sent_id;
1202
1203         const std::string normalMessage = ":" + this->GetFullHost() + " QUIT :" + normal_text;
1204         const std::string operMessage = ":" + this->GetFullHost() + " QUIT :" + oper_text;
1205
1206         UserChanList include_c(chans);
1207         std::map<User*,bool> exceptions;
1208
1209         FOREACH_MOD(I_OnBuildNeighborList,OnBuildNeighborList(this, include_c, exceptions));
1210
1211         for (std::map<User*,bool>::iterator i = exceptions.begin(); i != exceptions.end(); ++i)
1212         {
1213                 LocalUser* u = IS_LOCAL(i->first);
1214                 if (u && !u->quitting)
1215                 {
1216                         u->already_sent = uniq_id;
1217                         if (i->second)
1218                                 u->Write(u->IsOper() ? operMessage : normalMessage);
1219                 }
1220         }
1221         for (UCListIter v = include_c.begin(); v != include_c.end(); ++v)
1222         {
1223                 const UserMembList* ulist = (*v)->GetUsers();
1224                 for (UserMembList::const_iterator i = ulist->begin(); i != ulist->end(); i++)
1225                 {
1226                         LocalUser* u = IS_LOCAL(i->first);
1227                         if (u && !u->quitting && (u->already_sent != uniq_id))
1228                         {
1229                                 u->already_sent = uniq_id;
1230                                 u->Write(u->IsOper() ? operMessage : normalMessage);
1231                         }
1232                 }
1233         }
1234 }
1235
1236 void LocalUser::SendText(const std::string& line)
1237 {
1238         Write(line);
1239 }
1240
1241 void RemoteUser::SendText(const std::string& line)
1242 {
1243         ServerInstance->PI->PushToClient(this, line);
1244 }
1245
1246 void FakeUser::SendText(const std::string& line)
1247 {
1248 }
1249
1250 void User::SendText(const char *text, ...)
1251 {
1252         va_list argsPtr;
1253         char line[MAXBUF];
1254
1255         va_start(argsPtr, text);
1256         vsnprintf(line, MAXBUF, text, argsPtr);
1257         va_end(argsPtr);
1258
1259         SendText(std::string(line));
1260 }
1261
1262 void User::SendText(const std::string &LinePrefix, std::stringstream &TextStream)
1263 {
1264         char line[MAXBUF];
1265         int start_pos = LinePrefix.length();
1266         int pos = start_pos;
1267         memcpy(line, LinePrefix.data(), pos);
1268         std::string Word;
1269         while (TextStream >> Word)
1270         {
1271                 int len = Word.length();
1272                 if (pos + len + 12 > MAXBUF)
1273                 {
1274                         line[pos] = '\0';
1275                         SendText(std::string(line));
1276                         pos = start_pos;
1277                 }
1278                 line[pos] = ' ';
1279                 memcpy(line + pos + 1, Word.data(), len);
1280                 pos += len + 1;
1281         }
1282         line[pos] = '\0';
1283         SendText(std::string(line));
1284 }
1285
1286 /* return 0 or 1 depending if users u and u2 share one or more common channels
1287  * (used by QUIT, NICK etc which arent channel specific notices)
1288  *
1289  * The old algorithm in 1.0 for this was relatively inefficient, iterating over
1290  * the first users channels then the second users channels within the outer loop,
1291  * therefore it was a maximum of x*y iterations (upon returning 0 and checking
1292  * all possible iterations). However this new function instead checks against the
1293  * channel's userlist in the inner loop which is a std::map<User*,User*>
1294  * and saves us time as we already know what pointer value we are after.
1295  * Don't quote me on the maths as i am not a mathematician or computer scientist,
1296  * but i believe this algorithm is now x+(log y) maximum iterations instead.
1297  */
1298 bool User::SharesChannelWith(User *other)
1299 {
1300         if ((!other) || (this->registered != REG_ALL) || (other->registered != REG_ALL))
1301                 return false;
1302
1303         /* Outer loop */
1304         for (UCListIter i = this->chans.begin(); i != this->chans.end(); i++)
1305         {
1306                 /* Eliminate the inner loop (which used to be ~equal in size to the outer loop)
1307                  * by replacing it with a map::find which *should* be more efficient
1308                  */
1309                 if ((*i)->HasUser(other))
1310                         return true;
1311         }
1312         return false;
1313 }
1314
1315 bool User::ChangeName(const char* gecos)
1316 {
1317         if (!this->fullname.compare(gecos))
1318                 return true;
1319
1320         if (IS_LOCAL(this))
1321         {
1322                 ModResult MOD_RESULT;
1323                 FIRST_MOD_RESULT(OnChangeLocalUserGECOS, MOD_RESULT, (IS_LOCAL(this),gecos));
1324                 if (MOD_RESULT == MOD_RES_DENY)
1325                         return false;
1326                 FOREACH_MOD(I_OnChangeName,OnChangeName(this,gecos));
1327         }
1328         this->fullname.assign(gecos, 0, ServerInstance->Config->Limits.MaxGecos);
1329
1330         return true;
1331 }
1332
1333 void User::DoHostCycle(const std::string &quitline)
1334 {
1335         if (!ServerInstance->Config->CycleHosts)
1336                 return;
1337
1338         already_sent_t silent_id = ++LocalUser::already_sent_id;
1339         already_sent_t seen_id = ++LocalUser::already_sent_id;
1340
1341         UserChanList include_c(chans);
1342         std::map<User*,bool> exceptions;
1343
1344         FOREACH_MOD(I_OnBuildNeighborList,OnBuildNeighborList(this, include_c, exceptions));
1345
1346         for (std::map<User*,bool>::iterator i = exceptions.begin(); i != exceptions.end(); ++i)
1347         {
1348                 LocalUser* u = IS_LOCAL(i->first);
1349                 if (u && !u->quitting)
1350                 {
1351                         if (i->second)
1352                         {
1353                                 u->already_sent = seen_id;
1354                                 u->Write(quitline);
1355                         }
1356                         else
1357                         {
1358                                 u->already_sent = silent_id;
1359                         }
1360                 }
1361         }
1362         for (UCListIter v = include_c.begin(); v != include_c.end(); ++v)
1363         {
1364                 Channel* c = *v;
1365                 Membership* memb = c->GetUser(this);
1366                 const std::string joinline = ":" + GetFullHost() + " JOIN " + c->name;
1367                 std::string modeline;
1368
1369                 if (!memb->modes.empty())
1370                 {
1371                         modeline = ":" + (ServerInstance->Config->CycleHostsFromUser ? GetFullHost() : ServerInstance->Config->ServerName)
1372                                 + " MODE " + c->name + " +" + memb->modes;
1373
1374                         for (size_t i = 0; i < memb->modes.length(); i++)
1375                                 modeline.append(" ").append(nick);
1376                 }
1377
1378                 const UserMembList *ulist = c->GetUsers();
1379                 for (UserMembList::const_iterator i = ulist->begin(); i != ulist->end(); i++)
1380                 {
1381                         LocalUser* u = IS_LOCAL(i->first);
1382                         if (u == NULL || u == this)
1383                                 continue;
1384                         if (u->already_sent == silent_id)
1385                                 continue;
1386
1387                         if (u->already_sent != seen_id)
1388                         {
1389                                 u->Write(quitline);
1390                                 u->already_sent = seen_id;
1391                         }
1392                         u->Write(joinline);
1393                         if (!memb->modes.empty())
1394                                 u->Write(modeline);
1395                 }
1396         }
1397 }
1398
1399 bool User::ChangeDisplayedHost(const char* shost)
1400 {
1401         if (dhost == shost)
1402                 return true;
1403
1404         if (IS_LOCAL(this))
1405         {
1406                 ModResult MOD_RESULT;
1407                 FIRST_MOD_RESULT(OnChangeLocalUserHost, MOD_RESULT, (IS_LOCAL(this),shost));
1408                 if (MOD_RESULT == MOD_RES_DENY)
1409                         return false;
1410         }
1411
1412         FOREACH_MOD(I_OnChangeHost, OnChangeHost(this,shost));
1413
1414         std::string quitstr = ":" + GetFullHost() + " QUIT :Changing host";
1415
1416         /* Fix by Om: User::dhost is 65 long, this was truncating some long hosts */
1417         this->dhost.assign(shost, 0, 64);
1418
1419         this->InvalidateCache();
1420
1421         this->DoHostCycle(quitstr);
1422
1423         if (IS_LOCAL(this))
1424                 this->WriteNumeric(RPL_YOURDISPLAYEDHOST, "%s %s :is now your displayed host",this->nick.c_str(),this->dhost.c_str());
1425
1426         return true;
1427 }
1428
1429 bool User::ChangeIdent(const char* newident)
1430 {
1431         if (this->ident == newident)
1432                 return true;
1433
1434         FOREACH_MOD(I_OnChangeIdent, OnChangeIdent(this,newident));
1435
1436         std::string quitstr = ":" + GetFullHost() + " QUIT :Changing ident";
1437
1438         this->ident.assign(newident, 0, ServerInstance->Config->Limits.IdentMax);
1439
1440         this->InvalidateCache();
1441
1442         this->DoHostCycle(quitstr);
1443
1444         return true;
1445 }
1446
1447 void User::SendAll(const char* command, const char* text, ...)
1448 {
1449         char textbuffer[MAXBUF];
1450         va_list argsPtr;
1451
1452         va_start(argsPtr, text);
1453         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1454         va_end(argsPtr);
1455
1456         const std::string message = ":" + this->GetFullHost() + " " + command + " $* :" + textbuffer;
1457
1458         for (LocalUserList::const_iterator i = ServerInstance->Users->local_users.begin(); i != ServerInstance->Users->local_users.end(); i++)
1459         {
1460                 if ((*i)->registered == REG_ALL)
1461                         (*i)->Write(message);
1462         }
1463 }
1464
1465 /*
1466  * Sets a user's connection class.
1467  * If the class name is provided, it will be used. Otherwise, the class will be guessed using host/ip/ident/etc.
1468  * NOTE: If the <ALLOW> or <DENY> tag specifies an ip, and this user resolves,
1469  * then their ip will be taken as 'priority' anyway, so for example,
1470  * <connect allow="127.0.0.1"> will match joe!bloggs@localhost
1471  */
1472 void LocalUser::SetClass(const std::string &explicit_name)
1473 {
1474         ConnectClass *found = NULL;
1475
1476         ServerInstance->Logs->Log("CONNECTCLASS", LOG_DEBUG, "Setting connect class for UID %s", this->uuid.c_str());
1477
1478         if (!explicit_name.empty())
1479         {
1480                 for (ClassVector::iterator i = ServerInstance->Config->Classes.begin(); i != ServerInstance->Config->Classes.end(); i++)
1481                 {
1482                         ConnectClass* c = *i;
1483
1484                         if (explicit_name == c->name)
1485                         {
1486                                 ServerInstance->Logs->Log("CONNECTCLASS", LOG_DEBUG, "Explicitly set to %s", explicit_name.c_str());
1487                                 found = c;
1488                         }
1489                 }
1490         }
1491         else
1492         {
1493                 for (ClassVector::iterator i = ServerInstance->Config->Classes.begin(); i != ServerInstance->Config->Classes.end(); i++)
1494                 {
1495                         ConnectClass* c = *i;
1496                         ServerInstance->Logs->Log("CONNECTCLASS", LOG_DEBUG, "Checking %s", c->GetName().c_str());
1497
1498                         ModResult MOD_RESULT;
1499                         FIRST_MOD_RESULT(OnSetConnectClass, MOD_RESULT, (this,c));
1500                         if (MOD_RESULT == MOD_RES_DENY)
1501                                 continue;
1502                         if (MOD_RESULT == MOD_RES_ALLOW)
1503                         {
1504                                 ServerInstance->Logs->Log("CONNECTCLASS", LOG_DEBUG, "Class forced by module to %s", c->GetName().c_str());
1505                                 found = c;
1506                                 break;
1507                         }
1508
1509                         if (c->type == CC_NAMED)
1510                                 continue;
1511
1512                         bool regdone = (registered != REG_NONE);
1513                         if (c->config->getBool("registered", regdone) != regdone)
1514                                 continue;
1515
1516                         /* check if host matches.. */
1517                         if (!InspIRCd::MatchCIDR(this->GetIPString(), c->GetHost(), NULL) &&
1518                             !InspIRCd::MatchCIDR(this->host, c->GetHost(), NULL))
1519                         {
1520                                 ServerInstance->Logs->Log("CONNECTCLASS", LOG_DEBUG, "No host match (for %s)", c->GetHost().c_str());
1521                                 continue;
1522                         }
1523
1524                         /*
1525                          * deny change if change will take class over the limit check it HERE, not after we found a matching class,
1526                          * because we should attempt to find another class if this one doesn't match us. -- w00t
1527                          */
1528                         if (c->limit && (c->GetReferenceCount() >= c->limit))
1529                         {
1530                                 ServerInstance->Logs->Log("CONNECTCLASS", LOG_DEBUG, "OOPS: Connect class limit (%lu) hit, denying", c->limit);
1531                                 continue;
1532                         }
1533
1534                         /* if it requires a port ... */
1535                         int port = c->config->getInt("port");
1536                         if (port)
1537                         {
1538                                 ServerInstance->Logs->Log("CONNECTCLASS", LOG_DEBUG, "Requires port (%d)", port);
1539
1540                                 /* and our port doesn't match, fail. */
1541                                 if (this->GetServerPort() != port)
1542                                         continue;
1543                         }
1544
1545                         if (regdone && !c->config->getString("password").empty())
1546                         {
1547                                 if (ServerInstance->PassCompare(this, c->config->getString("password"), password, c->config->getString("hash")))
1548                                 {
1549                                         ServerInstance->Logs->Log("CONNECTCLASS", LOG_DEBUG, "Bad password, skipping");
1550                                         continue;
1551                                 }
1552                         }
1553
1554                         /* we stop at the first class that meets ALL critera. */
1555                         found = c;
1556                         break;
1557                 }
1558         }
1559
1560         /*
1561          * Okay, assuming we found a class that matches.. switch us into that class, keeping refcounts up to date.
1562          */
1563         if (found)
1564         {
1565                 MyClass = found;
1566         }
1567 }
1568
1569 /* looks up a users password for their connection class (<ALLOW>/<DENY> tags)
1570  * NOTE: If the <ALLOW> or <DENY> tag specifies an ip, and this user resolves,
1571  * then their ip will be taken as 'priority' anyway, so for example,
1572  * <connect allow="127.0.0.1"> will match joe!bloggs@localhost
1573  */
1574 ConnectClass* LocalUser::GetClass()
1575 {
1576         return MyClass;
1577 }
1578
1579 ConnectClass* User::GetClass()
1580 {
1581         return NULL;
1582 }
1583
1584 void User::PurgeEmptyChannels()
1585 {
1586         // firstly decrement the count on each channel
1587         for (UCListIter f = this->chans.begin(); f != this->chans.end(); f++)
1588         {
1589                 Channel* c = *f;
1590                 c->DelUser(this);
1591         }
1592
1593         this->UnOper();
1594 }
1595
1596 const std::string& FakeUser::GetFullHost()
1597 {
1598         if (!ServerInstance->Config->HideWhoisServer.empty())
1599                 return ServerInstance->Config->HideWhoisServer;
1600         return server;
1601 }
1602
1603 const std::string& FakeUser::GetFullRealHost()
1604 {
1605         if (!ServerInstance->Config->HideWhoisServer.empty())
1606                 return ServerInstance->Config->HideWhoisServer;
1607         return server;
1608 }
1609
1610 ConnectClass::ConnectClass(ConfigTag* tag, char t, const std::string& mask)
1611         : config(tag), type(t), fakelag(true), name("unnamed"), registration_timeout(0), host(mask),
1612         pingtime(0), softsendqmax(0), hardsendqmax(0), recvqmax(0),
1613         penaltythreshold(0), commandrate(0), maxlocal(0), maxglobal(0), maxconnwarn(true), maxchans(0),
1614         limit(0), nouserdns(false)
1615 {
1616 }
1617
1618 ConnectClass::ConnectClass(ConfigTag* tag, char t, const std::string& mask, const ConnectClass& parent)
1619         : config(tag), type(t), fakelag(parent.fakelag), name("unnamed"),
1620         registration_timeout(parent.registration_timeout), host(mask), pingtime(parent.pingtime),
1621         softsendqmax(parent.softsendqmax), hardsendqmax(parent.hardsendqmax), recvqmax(parent.recvqmax),
1622         penaltythreshold(parent.penaltythreshold), commandrate(parent.commandrate),
1623         maxlocal(parent.maxlocal), maxglobal(parent.maxglobal), maxconnwarn(parent.maxconnwarn), maxchans(parent.maxchans),
1624         limit(parent.limit), nouserdns(parent.nouserdns)
1625 {
1626 }
1627
1628 void ConnectClass::Update(const ConnectClass* src)
1629 {
1630         config = src->config;
1631         type = src->type;
1632         fakelag = src->fakelag;
1633         name = src->name;
1634         registration_timeout = src->registration_timeout;
1635         host = src->host;
1636         pingtime = src->pingtime;
1637         softsendqmax = src->softsendqmax;
1638         hardsendqmax = src->hardsendqmax;
1639         recvqmax = src->recvqmax;
1640         penaltythreshold = src->penaltythreshold;
1641         commandrate = src->commandrate;
1642         maxlocal = src->maxlocal;
1643         maxglobal = src->maxglobal;
1644         maxconnwarn = src->maxconnwarn;
1645         maxchans = src->maxchans;
1646         limit = src->limit;
1647         nouserdns = src->nouserdns;
1648 }