]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/users.cpp
01bad8b619bce48edbfc179b25eaf208fcafa199
[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 "xline.h"
28
29 ClientProtocol::MessageList LocalUser::sendmsglist;
30
31 bool User::IsNoticeMaskSet(unsigned char sm)
32 {
33         if (!isalpha(sm))
34                 return false;
35         return (snomasks[sm-65]);
36 }
37
38 bool User::IsModeSet(unsigned char m) const
39 {
40         ModeHandler* mh = ServerInstance->Modes->FindMode(m, MODETYPE_USER);
41         return (mh && modes[mh->GetId()]);
42 }
43
44 std::string User::GetModeLetters(bool includeparams) const
45 {
46         std::string ret(1, '+');
47         std::string params;
48
49         for (unsigned char i = 'A'; i <= 'z'; i++)
50         {
51                 const ModeHandler* const mh = ServerInstance->Modes.FindMode(i, MODETYPE_USER);
52                 if ((!mh) || (!IsModeSet(mh)))
53                         continue;
54
55                 ret.push_back(mh->GetModeChar());
56                 if ((includeparams) && (mh->NeedsParam(true)))
57                 {
58                         const std::string val = mh->GetUserParameter(this);
59                         if (!val.empty())
60                                 params.append(1, ' ').append(val);
61                 }
62         }
63
64         ret += params;
65         return ret;
66 }
67
68 User::User(const std::string& uid, Server* srv, UserType type)
69         : age(ServerInstance->Time())
70         , signon(0)
71         , uuid(uid)
72         , server(srv)
73         , registered(REG_NONE)
74         , quitting(false)
75         , usertype(type)
76 {
77         client_sa.sa.sa_family = AF_UNSPEC;
78
79         ServerInstance->Logs->Log("USERS", LOG_DEBUG, "New UUID for user: %s", uuid.c_str());
80
81         // Do not insert FakeUsers into the uuidlist so FindUUID() won't return them which is the desired behavior
82         if (type != USERTYPE_SERVER)
83         {
84                 if (!ServerInstance->Users.uuidlist.insert(std::make_pair(uuid, this)).second)
85                         throw CoreException("Duplicate UUID in User constructor: " + uuid);
86         }
87 }
88
89 LocalUser::LocalUser(int myfd, irc::sockets::sockaddrs* client, irc::sockets::sockaddrs* servaddr)
90         : User(ServerInstance->UIDGen.GetUID(), ServerInstance->FakeClient->server, USERTYPE_LOCAL)
91         , eh(this)
92         , serializer(NULL)
93         , bytes_in(0)
94         , bytes_out(0)
95         , cmds_in(0)
96         , cmds_out(0)
97         , quitting_sendq(false)
98         , lastping(true)
99         , exempt(false)
100         , nextping(0)
101         , idle_lastmsg(0)
102         , CommandFloodPenalty(0)
103         , already_sent(0)
104 {
105         signon = ServerInstance->Time();
106         // The user's default nick is their UUID
107         nick = uuid;
108         ident = uuid;
109         eh.SetFd(myfd);
110         memcpy(&client_sa, client, sizeof(irc::sockets::sockaddrs));
111         memcpy(&server_sa, servaddr, sizeof(irc::sockets::sockaddrs));
112         ChangeRealHost(GetIPString(), true);
113 }
114
115 LocalUser::LocalUser(int myfd, const std::string& uuid, Serializable::Data& data)
116         : User(uuid, ServerInstance->FakeClient->server, USERTYPE_LOCAL)
117         , eh(this)
118         , already_sent(0)
119 {
120         eh.SetFd(myfd);
121         Deserialize(data);
122 }
123
124 User::~User()
125 {
126 }
127
128 const std::string& User::MakeHost()
129 {
130         if (!this->cached_makehost.empty())
131                 return this->cached_makehost;
132
133         this->cached_makehost = ident + "@" + GetRealHost();
134         return this->cached_makehost;
135 }
136
137 const std::string& User::MakeHostIP()
138 {
139         if (!this->cached_hostip.empty())
140                 return this->cached_hostip;
141
142         this->cached_hostip = ident + "@" + this->GetIPString();
143         return this->cached_hostip;
144 }
145
146 const std::string& User::GetFullHost()
147 {
148         if (!this->cached_fullhost.empty())
149                 return this->cached_fullhost;
150
151         this->cached_fullhost = nick + "!" + ident + "@" + GetDisplayedHost();
152         return this->cached_fullhost;
153 }
154
155 const std::string& User::GetFullRealHost()
156 {
157         if (!this->cached_fullrealhost.empty())
158                 return this->cached_fullrealhost;
159
160         this->cached_fullrealhost = nick + "!" + ident + "@" + GetRealHost();
161         return this->cached_fullrealhost;
162 }
163
164 bool User::HasModePermission(const ModeHandler* mh) const
165 {
166         return true;
167 }
168
169 bool LocalUser::HasModePermission(const ModeHandler* mh) const
170 {
171         if (!this->IsOper())
172                 return false;
173
174         const unsigned char mode = mh->GetModeChar();
175         if (!ModeParser::IsModeChar(mode))
176                 return false;
177
178         return ((mh->GetModeType() == MODETYPE_USER ? oper->AllowedUserModes : oper->AllowedChanModes))[(mode - 'A')];
179
180 }
181 /*
182  * users on remote servers can completely bypass all permissions based checks.
183  * This prevents desyncs when one server has different type/class tags to another.
184  * That having been said, this does open things up to the possibility of source changes
185  * allowing remote kills, etc - but if they have access to the src, they most likely have
186  * access to the conf - so it's an end to a means either way.
187  */
188 bool User::HasCommandPermission(const std::string&)
189 {
190         return true;
191 }
192
193 bool LocalUser::HasCommandPermission(const std::string& command)
194 {
195         // are they even an oper at all?
196         if (!this->IsOper())
197         {
198                 return false;
199         }
200
201         return oper->AllowedOperCommands.Contains(command);
202 }
203
204 bool User::HasPrivPermission(const std::string& privstr)
205 {
206         return true;
207 }
208
209 bool LocalUser::HasPrivPermission(const std::string& privstr)
210 {
211         if (!this->IsOper())
212                 return false;
213
214         return oper->AllowedPrivs.Contains(privstr);
215 }
216
217 void UserIOHandler::OnDataReady()
218 {
219         if (user->quitting)
220                 return;
221
222         if (recvq.length() > user->MyClass->GetRecvqMax() && !user->HasPrivPermission("users/flood/increased-buffers"))
223         {
224                 ServerInstance->Users->QuitUser(user, "RecvQ exceeded");
225                 ServerInstance->SNO->WriteToSnoMask('a', "User %s RecvQ of %lu exceeds connect class maximum of %lu",
226                         user->nick.c_str(), (unsigned long)recvq.length(), user->MyClass->GetRecvqMax());
227                 return;
228         }
229
230         unsigned long sendqmax = ULONG_MAX;
231         if (!user->HasPrivPermission("users/flood/increased-buffers"))
232                 sendqmax = user->MyClass->GetSendqSoftMax();
233
234         unsigned long penaltymax = ULONG_MAX;
235         if (!user->HasPrivPermission("users/flood/no-fakelag"))
236                 penaltymax = user->MyClass->GetPenaltyThreshold() * 1000;
237
238         // The cleaned message sent by the user or empty if not found yet.
239         std::string line;
240
241         // The position of the most \n character or npos if not found yet.
242         std::string::size_type eolpos;
243
244         // The position within the recvq of the current character.
245         std::string::size_type qpos;
246
247         while (user->CommandFloodPenalty < penaltymax && getSendQSize() < sendqmax)
248         {
249                 // Check the newly received data for an EOL.
250                 eolpos = recvq.find('\n', checked_until);
251                 if (eolpos == std::string::npos)
252                 {
253                         checked_until = recvq.length();
254                         return;
255                 }
256
257                 // We've found a line! Clean it up and move it to the line buffer.
258                 line.reserve(eolpos);
259                 for (qpos = 0; qpos < eolpos; ++qpos)
260                 {
261                         char c = recvq[qpos];
262                         switch (c)
263                         {
264                                 case '\0':
265                                         c = ' ';
266                                         break;
267                                 case '\r':
268                                         continue;
269                         }
270
271                         line.push_back(c);
272                 }
273
274                 // just found a newline. Terminate the string, and pull it out of recvq
275                 recvq.erase(0, eolpos + 1);
276                 checked_until = 0;
277
278                 // TODO should this be moved to when it was inserted in recvq?
279                 ServerInstance->stats.Recv += qpos;
280                 user->bytes_in += qpos;
281                 user->cmds_in++;
282
283                 ServerInstance->Parser.ProcessBuffer(user, line);
284                 if (user->quitting)
285                         return;
286
287                 // clear() does not reclaim memory associated with the string, so our .reserve() call is safe
288                 line.clear();
289         }
290
291         if (user->CommandFloodPenalty >= penaltymax && !user->MyClass->fakelag)
292                 ServerInstance->Users->QuitUser(user, "Excess Flood");
293 }
294
295 void UserIOHandler::AddWriteBuf(const std::string &data)
296 {
297         if (user->quitting_sendq)
298                 return;
299         if (!user->quitting && getSendQSize() + data.length() > user->MyClass->GetSendqHardMax() &&
300                 !user->HasPrivPermission("users/flood/increased-buffers"))
301         {
302                 user->quitting_sendq = true;
303                 ServerInstance->GlobalCulls.AddSQItem(user);
304                 return;
305         }
306
307         // We still want to append data to the sendq of a quitting user,
308         // e.g. their ERROR message that says 'closing link'
309
310         WriteData(data);
311 }
312
313 void UserIOHandler::SwapInternals(UserIOHandler& other)
314 {
315         StreamSocket::SwapInternals(other);
316         std::swap(checked_until, other.checked_until);
317 }
318
319 bool UserIOHandler::OnSetEndPoint(const irc::sockets::sockaddrs& server, const irc::sockets::sockaddrs& client)
320 {
321         memcpy(&user->server_sa, &server, sizeof(irc::sockets::sockaddrs));
322         user->SetClientIP(client);
323         return !user->quitting;
324 }
325
326 void UserIOHandler::OnError(BufferedSocketError sockerr)
327 {
328         ModResult res;
329         FIRST_MOD_RESULT(OnConnectionFail, res, (user, sockerr));
330         if (res != MOD_RES_ALLOW)
331                 ServerInstance->Users->QuitUser(user, getError());
332 }
333
334 CullResult User::cull()
335 {
336         if (!quitting)
337                 ServerInstance->Users->QuitUser(this, "Culled without QuitUser");
338
339         if (client_sa.family() != AF_UNSPEC)
340                 ServerInstance->Users->RemoveCloneCounts(this);
341
342         return Extensible::cull();
343 }
344
345 CullResult LocalUser::cull()
346 {
347         eh.cull();
348         return User::cull();
349 }
350
351 CullResult FakeUser::cull()
352 {
353         // Fake users don't quit, they just get culled.
354         quitting = true;
355         // Fake users are not inserted into UserManager::clientlist or uuidlist, so we don't need to modify those here
356         return User::cull();
357 }
358
359 void User::Oper(OperInfo* info)
360 {
361         ModeHandler* opermh = ServerInstance->Modes->FindMode('o', MODETYPE_USER);
362         if (opermh)
363         {
364                 if (this->IsModeSet(opermh))
365                         this->UnOper();
366                 this->SetMode(opermh, true);
367         }
368         this->oper = info;
369
370         LocalUser* localuser = IS_LOCAL(this);
371         if (localuser)
372         {
373                 Modes::ChangeList changelist;
374                 changelist.push_add(opermh);
375                 ClientProtocol::Events::Mode modemsg(ServerInstance->FakeClient, NULL, localuser, changelist);
376                 localuser->Send(modemsg);
377         }
378
379         FOREACH_MOD(OnOper, (this, info->name));
380
381         std::string opername;
382         if (info->oper_block)
383                 opername = info->oper_block->getString("name");
384
385         ServerInstance->SNO->WriteToSnoMask('o', "%s (%s@%s) is now a server operator of type %s (using oper '%s')",
386                 nick.c_str(), ident.c_str(), GetRealHost().c_str(), oper->name.c_str(), opername.c_str());
387         this->WriteNumeric(RPL_YOUAREOPER, InspIRCd::Format("You are now %s %s", strchr("aeiouAEIOU", oper->name[0]) ? "an" : "a", oper->name.c_str()));
388
389         ServerInstance->Users->all_opers.push_back(this);
390
391         // Expand permissions from config for faster lookup
392         if (localuser)
393                 oper->init();
394
395         FOREACH_MOD(OnPostOper, (this, oper->name, opername));
396 }
397
398 void OperInfo::init()
399 {
400         AllowedOperCommands.Clear();
401         AllowedPrivs.Clear();
402         AllowedUserModes.reset();
403         AllowedChanModes.reset();
404         AllowedUserModes['o' - 'A'] = true; // Call me paranoid if you want.
405
406         for(std::vector<reference<ConfigTag> >::iterator iter = class_blocks.begin(); iter != class_blocks.end(); ++iter)
407         {
408                 ConfigTag* tag = *iter;
409
410                 AllowedOperCommands.AddList(tag->getString("commands"));
411                 AllowedPrivs.AddList(tag->getString("privs"));
412
413                 std::string modes = tag->getString("usermodes");
414                 for (std::string::const_iterator c = modes.begin(); c != modes.end(); ++c)
415                 {
416                         if (*c == '*')
417                         {
418                                 this->AllowedUserModes.set();
419                         }
420                         else if (*c >= 'A' && *c <= 'z')
421                         {
422                                 this->AllowedUserModes[*c - 'A'] = true;
423                         }
424                 }
425
426                 modes = tag->getString("chanmodes");
427                 for (std::string::const_iterator c = modes.begin(); c != modes.end(); ++c)
428                 {
429                         if (*c == '*')
430                         {
431                                 this->AllowedChanModes.set();
432                         }
433                         else if (*c >= 'A' && *c <= 'z')
434                         {
435                                 this->AllowedChanModes[*c - 'A'] = true;
436                         }
437                 }
438         }
439 }
440
441 void User::UnOper()
442 {
443         if (!this->IsOper())
444                 return;
445
446         /*
447          * unset their oper type (what IS_OPER checks).
448          * note, order is important - this must come before modes as -o attempts
449          * to call UnOper. -- w00t
450          */
451         oper = NULL;
452
453         // Remove the user from the oper list
454         stdalgo::vector::swaperase(ServerInstance->Users->all_opers, this);
455
456         // If the user is quitting we shouldn't remove any modes as it results in
457         // mode messages being broadcast across the network.
458         if (quitting)
459                 return;
460
461         /* Remove all oper only modes from the user when the deoper - Bug #466*/
462         Modes::ChangeList changelist;
463         const ModeParser::ModeHandlerMap& usermodes = ServerInstance->Modes->GetModes(MODETYPE_USER);
464         for (ModeParser::ModeHandlerMap::const_iterator i = usermodes.begin(); i != usermodes.end(); ++i)
465         {
466                 ModeHandler* mh = i->second;
467                 if (mh->NeedsOper())
468                         changelist.push_remove(mh);
469         }
470
471         ServerInstance->Modes->Process(this, NULL, this, changelist);
472
473         ModeHandler* opermh = ServerInstance->Modes->FindMode('o', MODETYPE_USER);
474         if (opermh)
475                 this->SetMode(opermh, false);
476         FOREACH_MOD(OnPostDeoper, (this));
477 }
478
479 /*
480  * Check class restrictions
481  */
482 void LocalUser::CheckClass(bool clone_count)
483 {
484         ConnectClass* a = this->MyClass;
485
486         if (!a)
487         {
488                 ServerInstance->Users->QuitUser(this, "Access denied by configuration");
489                 return;
490         }
491         else if (a->type == CC_DENY)
492         {
493                 ServerInstance->Users->QuitUser(this, a->config->getString("reason", "Unauthorised connection"));
494                 return;
495         }
496         else if (clone_count)
497         {
498                 const UserManager::CloneCounts& clonecounts = ServerInstance->Users->GetCloneCounts(this);
499                 if ((a->GetMaxLocal()) && (clonecounts.local > a->GetMaxLocal()))
500                 {
501                         ServerInstance->Users->QuitUser(this, "No more connections allowed from your host via this connect class (local)");
502                         if (a->maxconnwarn)
503                         {
504                                 ServerInstance->SNO->WriteToSnoMask('a', "WARNING: maximum local connections for the %s class (%ld) exceeded by %s",
505                                         a->name.c_str(), a->GetMaxLocal(), this->GetIPString().c_str());
506                         }
507                         return;
508                 }
509                 else if ((a->GetMaxGlobal()) && (clonecounts.global > a->GetMaxGlobal()))
510                 {
511                         ServerInstance->Users->QuitUser(this, "No more connections allowed from your host via this connect class (global)");
512                         if (a->maxconnwarn)
513                         {
514                                 ServerInstance->SNO->WriteToSnoMask('a', "WARNING: maximum global connections for the %s class (%ld) exceeded by %s",
515                                 a->name.c_str(), a->GetMaxGlobal(), this->GetIPString().c_str());
516                         }
517                         return;
518                 }
519         }
520
521         this->nextping = ServerInstance->Time() + a->GetPingTime();
522 }
523
524 bool LocalUser::CheckLines(bool doZline)
525 {
526         const char* check[] = { "G" , "K", (doZline) ? "Z" : NULL, NULL };
527
528         if (!this->exempt)
529         {
530                 for (int n = 0; check[n]; ++n)
531                 {
532                         XLine *r = ServerInstance->XLines->MatchesLine(check[n], this);
533
534                         if (r)
535                         {
536                                 r->Apply(this);
537                                 return true;
538                         }
539                 }
540         }
541
542         return false;
543 }
544
545 void LocalUser::FullConnect()
546 {
547         ServerInstance->stats.Connects++;
548         this->idle_lastmsg = ServerInstance->Time();
549
550         /*
551          * You may be thinking "wtf, we checked this in User::AddClient!" - and yes, we did, BUT.
552          * At the time AddClient is called, we don't have a resolved host, by here we probably do - which
553          * may put the user into a totally seperate class with different restrictions! so we *must* check again.
554          * Don't remove this! -- w00t
555          */
556         MyClass = NULL;
557         SetClass();
558         CheckClass();
559         CheckLines();
560
561         if (quitting)
562                 return;
563
564         /*
565          * We don't set REG_ALL until triggering OnUserConnect, so some module events don't spew out stuff
566          * for a user that doesn't exist yet.
567          */
568         FOREACH_MOD(OnUserConnect, (this));
569
570         /* Now registered */
571         if (ServerInstance->Users->unregistered_count)
572                 ServerInstance->Users->unregistered_count--;
573         this->registered = REG_ALL;
574
575         FOREACH_MOD(OnPostConnect, (this));
576
577         ServerInstance->SNO->WriteToSnoMask('c',"Client connecting on port %d (class %s): %s (%s) [%s]",
578                 this->server_sa.port(), this->MyClass->name.c_str(), GetFullRealHost().c_str(), this->GetIPString().c_str(), this->GetRealName().c_str());
579         ServerInstance->Logs->Log("BANCACHE", LOG_DEBUG, "BanCache: Adding NEGATIVE hit for " + this->GetIPString());
580         ServerInstance->BanCache.AddHit(this->GetIPString(), "", "");
581         // reset the flood penalty (which could have been raised due to things like auto +x)
582         CommandFloodPenalty = 0;
583 }
584
585 void User::InvalidateCache()
586 {
587         /* Invalidate cache */
588         cachedip.clear();
589         cached_fullhost.clear();
590         cached_hostip.clear();
591         cached_makehost.clear();
592         cached_fullrealhost.clear();
593 }
594
595 bool User::ChangeNick(const std::string& newnick, time_t newts)
596 {
597         if (quitting)
598         {
599                 ServerInstance->Logs->Log("USERS", LOG_DEFAULT, "ERROR: Attempted to change nick of a quitting user: " + this->nick);
600                 return false;
601         }
602
603         User* const InUse = ServerInstance->FindNickOnly(newnick);
604         if (InUse == this)
605         {
606                 // case change, don't need to check campers
607                 // and, if it's identical including case, we can leave right now
608                 // We also don't update the nick TS if it's a case change, either
609                 if (newnick == nick)
610                         return true;
611         }
612         else
613         {
614                 /*
615                  * Uh oh.. if the nickname is in use, and it's not in use by the person using it (doh) --
616                  * then we have a potential collide. Check whether someone else is camping on the nick
617                  * (i.e. connect -> send NICK, don't send USER.) If they are camping, force-change the
618                  * camper to their UID, and allow the incoming nick change.
619                  *
620                  * If the guy using the nick is already using it, tell the incoming nick change to gtfo,
621                  * because the nick is already (rightfully) in use. -- w00t
622                  */
623                 if (InUse)
624                 {
625                         if (InUse->registered != REG_ALL)
626                         {
627                                 /* force the camper to their UUID, and ask them to re-send a NICK. */
628                                 LocalUser* const localuser = static_cast<LocalUser*>(InUse);
629                                 localuser->OverruleNick();
630                         }
631                         else
632                         {
633                                 /* No camping, tell the incoming user  to stop trying to change nick ;p */
634                                 this->WriteNumeric(ERR_NICKNAMEINUSE, newnick, "Nickname is already in use.");
635                                 return false;
636                         }
637                 }
638
639                 age = newts ? newts : ServerInstance->Time();
640         }
641
642         if (this->registered == REG_ALL)
643         {
644                 ClientProtocol::Messages::Nick nickmsg(this, newnick);
645                 ClientProtocol::Event nickevent(ServerInstance->GetRFCEvents().nick, nickmsg);
646                 this->WriteCommonRaw(nickevent, true);
647         }
648         const std::string oldnick = nick;
649         nick = newnick;
650
651         InvalidateCache();
652         ServerInstance->Users->clientlist.erase(oldnick);
653         ServerInstance->Users->clientlist[newnick] = this;
654
655         if (registered == REG_ALL)
656                 FOREACH_MOD(OnUserPostNick, (this,oldnick));
657
658         return true;
659 }
660
661 void LocalUser::OverruleNick()
662 {
663         {
664                 ClientProtocol::Messages::Nick nickmsg(this, this->uuid);
665                 this->Send(ServerInstance->GetRFCEvents().nick, nickmsg);
666         }
667         this->WriteNumeric(ERR_NICKNAMEINUSE, this->nick, "Nickname overruled.");
668
669         // Clear the bit before calling ChangeNick() to make it NOT run the OnUserPostNick() hook
670         this->registered &= ~REG_NICK;
671         this->ChangeNick(this->uuid);
672 }
673
674 const std::string& User::GetIPString()
675 {
676         if (cachedip.empty())
677         {
678                 cachedip = client_sa.addr();
679                 /* IP addresses starting with a : on irc are a Bad Thing (tm) */
680                 if (cachedip[0] == ':')
681                         cachedip.insert(cachedip.begin(),1,'0');
682         }
683
684         return cachedip;
685 }
686
687 const std::string& User::GetHost(bool uncloak) const
688 {
689         return uncloak ? GetRealHost() : GetDisplayedHost();
690 }
691
692 const std::string& User::GetDisplayedHost() const
693 {
694         return displayhost.empty() ? realhost : displayhost;
695 }
696
697 const std::string& User::GetRealHost() const
698 {
699         return realhost;
700 }
701
702 const std::string& User::GetRealName() const
703 {
704         return realname;
705 }
706
707 irc::sockets::cidr_mask User::GetCIDRMask()
708 {
709         unsigned char range = 0;
710         switch (client_sa.family())
711         {
712                 case AF_INET6:
713                         range = ServerInstance->Config->c_ipv6_range;
714                         break;
715                 case AF_INET:
716                         range = ServerInstance->Config->c_ipv4_range;
717                         break;
718         }
719         return irc::sockets::cidr_mask(client_sa, range);
720 }
721
722 bool User::SetClientIP(const std::string& address)
723 {
724         irc::sockets::sockaddrs sa;
725         if (!irc::sockets::aptosa(address, client_sa.port(), sa))
726                 return false;
727
728         User::SetClientIP(sa);
729         return true;
730 }
731
732 void User::SetClientIP(const irc::sockets::sockaddrs& sa)
733 {
734         const std::string oldip(GetIPString());
735         memcpy(&client_sa, &sa, sizeof(irc::sockets::sockaddrs));
736         this->InvalidateCache();
737
738         // If the users hostname was their IP then update it.
739         if (GetRealHost() == oldip)
740                 ChangeRealHost(GetIPString(), false);
741         if (GetDisplayedHost() == oldip)
742                 ChangeDisplayedHost(GetIPString());
743 }
744
745 bool LocalUser::SetClientIP(const std::string& address)
746 {
747         irc::sockets::sockaddrs sa;
748         if (!irc::sockets::aptosa(address, client_sa.port(), sa))
749                 return false;
750
751         LocalUser::SetClientIP(sa);
752         return true;
753 }
754
755 void LocalUser::SetClientIP(const irc::sockets::sockaddrs& sa)
756 {
757         if (sa == client_sa)
758                 return;
759
760         ServerInstance->Users->RemoveCloneCounts(this);
761
762         User::SetClientIP(sa);
763
764         FOREACH_MOD(OnSetUserIP, (this));
765
766         ServerInstance->Users->AddClone(this);
767
768         // Recheck the connect class.
769         this->MyClass = NULL;
770         this->SetClass();
771         this->CheckClass();
772 }
773
774 void LocalUser::Write(const ClientProtocol::SerializedMessage& text)
775 {
776         if (!SocketEngine::BoundsCheckFd(&eh))
777                 return;
778
779         if (ServerInstance->Config->RawLog)
780         {
781                 if (text.empty())
782                         return;
783
784                 std::string::size_type nlpos = text.find_first_of("\r\n", 0, 2);
785                 if (nlpos == std::string::npos)
786                         nlpos = text.length(); // TODO is this ok, test it
787
788                 ServerInstance->Logs->Log("USEROUTPUT", LOG_RAWIO, "C[%s] O %.*s", uuid.c_str(), (int) nlpos, text.c_str());
789         }
790
791         eh.AddWriteBuf(text);
792
793         const size_t bytessent = text.length() + 2;
794         ServerInstance->stats.Sent += bytessent;
795         this->bytes_out += bytessent;
796         this->cmds_out++;
797 }
798
799 void LocalUser::Send(ClientProtocol::Event& protoev)
800 {
801         if (!serializer)
802         {
803                 ServerInstance->Logs->Log("USERS", LOG_DEBUG, "BUG: LocalUser::Send() called on %s who does not have a serializer!",
804                         GetFullRealHost().c_str());
805                 return;
806         }
807
808         // In the most common case a static LocalUser field, sendmsglist, is passed to the event to be
809         // populated. The list is cleared before returning.
810         // To handle re-enters, if sendmsglist is non-empty upon entering the method then a temporary
811         // list is used instead of the static one.
812         if (sendmsglist.empty())
813         {
814                 Send(protoev, sendmsglist);
815                 sendmsglist.clear();
816         }
817         else
818         {
819                 ClientProtocol::MessageList msglist;
820                 Send(protoev, msglist);
821         }
822 }
823
824 void LocalUser::Send(ClientProtocol::Event& protoev, ClientProtocol::MessageList& msglist)
825 {
826         // Modules can personalize the messages sent per user for the event
827         protoev.GetMessagesForUser(this, msglist);
828         for (ClientProtocol::MessageList::const_iterator i = msglist.begin(); i != msglist.end(); ++i)
829         {
830                 ClientProtocol::Message& curr = **i;
831                 ModResult res;
832                 FIRST_MOD_RESULT(OnUserWrite, res, (this, curr));
833                 if (res != MOD_RES_DENY)
834                         Write(serializer->SerializeForUser(this, curr));
835         }
836 }
837
838 void User::WriteNumeric(const Numeric::Numeric& numeric)
839 {
840         LocalUser* const localuser = IS_LOCAL(this);
841         if (!localuser)
842                 return;
843
844         ModResult MOD_RESULT;
845
846         FIRST_MOD_RESULT(OnNumeric, MOD_RESULT, (this, numeric));
847
848         if (MOD_RESULT == MOD_RES_DENY)
849                 return;
850
851         ClientProtocol::Messages::Numeric numericmsg(numeric, localuser);
852         localuser->Send(ServerInstance->GetRFCEvents().numeric, numericmsg);
853 }
854
855 void User::WriteRemoteNotice(const std::string& text)
856 {
857         ServerInstance->PI->SendUserNotice(this, text);
858 }
859
860 void LocalUser::WriteRemoteNotice(const std::string& text)
861 {
862         WriteNotice(text);
863 }
864
865 namespace
866 {
867         class WriteCommonRawHandler : public User::ForEachNeighborHandler
868         {
869                 ClientProtocol::Event& ev;
870
871                 void Execute(LocalUser* user) CXX11_OVERRIDE
872                 {
873                         user->Send(ev);
874                 }
875
876          public:
877                 WriteCommonRawHandler(ClientProtocol::Event& protoev)
878                         : ev(protoev)
879                 {
880                 }
881         };
882 }
883
884 void User::WriteCommonRaw(ClientProtocol::Event& protoev, bool include_self)
885 {
886         WriteCommonRawHandler handler(protoev);
887         ForEachNeighbor(handler, include_self);
888 }
889
890 void User::ForEachNeighbor(ForEachNeighborHandler& handler, bool include_self)
891 {
892         // The basic logic for visiting the neighbors of a user is to iterate the channel list of the user
893         // and visit all users on those channels. Because two users may share more than one common channel,
894         // we must skip users that we have already visited.
895         // To do this, we make use of a global counter and an integral 'already_sent' field in LocalUser.
896         // The global counter is incremented every time we do something for each neighbor of a user. Then,
897         // before visiting a member we examine user->already_sent. If it's equal to the current counter, we
898         // skip the member. Otherwise, we set it to the current counter and visit the member.
899
900         // Ask modules to build a list of exceptions.
901         // Mods may also exclude entire channels by erasing them from include_chans.
902         IncludeChanList include_chans(chans.begin(), chans.end());
903         std::map<User*, bool> exceptions;
904         exceptions[this] = include_self;
905         FOREACH_MOD(OnBuildNeighborList, (this, include_chans, exceptions));
906
907         // Get next id, guaranteed to differ from the already_sent field of all users
908         const already_sent_t newid = ServerInstance->Users.NextAlreadySentId();
909
910         // Handle exceptions first
911         for (std::map<User*, bool>::const_iterator i = exceptions.begin(); i != exceptions.end(); ++i)
912         {
913                 LocalUser* curr = IS_LOCAL(i->first);
914                 if (curr)
915                 {
916                         // Mark as visited to ensure we won't visit again if there is a common channel
917                         curr->already_sent = newid;
918                         // Always treat quitting users as excluded
919                         if ((i->second) && (!curr->quitting))
920                                 handler.Execute(curr);
921                 }
922         }
923
924         // Now consider the real neighbors
925         for (IncludeChanList::const_iterator i = include_chans.begin(); i != include_chans.end(); ++i)
926         {
927                 Channel* chan = (*i)->chan;
928                 const Channel::MemberMap& userlist = chan->GetUsers();
929                 for (Channel::MemberMap::const_iterator j = userlist.begin(); j != userlist.end(); ++j)
930                 {
931                         LocalUser* curr = IS_LOCAL(j->first);
932                         // User not yet visited?
933                         if ((curr) && (curr->already_sent != newid))
934                         {
935                                 // Mark as visited and execute function
936                                 curr->already_sent = newid;
937                                 handler.Execute(curr);
938                         }
939                 }
940         }
941 }
942
943 void User::WriteRemoteNumeric(const Numeric::Numeric& numeric)
944 {
945         WriteNumeric(numeric);
946 }
947
948 /* return 0 or 1 depending if users u and u2 share one or more common channels
949  * (used by QUIT, NICK etc which arent channel specific notices)
950  *
951  * The old algorithm in 1.0 for this was relatively inefficient, iterating over
952  * the first users channels then the second users channels within the outer loop,
953  * therefore it was a maximum of x*y iterations (upon returning 0 and checking
954  * all possible iterations). However this new function instead checks against the
955  * channel's userlist in the inner loop which is a std::map<User*,User*>
956  * and saves us time as we already know what pointer value we are after.
957  * Don't quote me on the maths as i am not a mathematician or computer scientist,
958  * but i believe this algorithm is now x+(log y) maximum iterations instead.
959  */
960 bool User::SharesChannelWith(User *other)
961 {
962         /* Outer loop */
963         for (User::ChanList::iterator i = this->chans.begin(); i != this->chans.end(); ++i)
964         {
965                 /* Eliminate the inner loop (which used to be ~equal in size to the outer loop)
966                  * by replacing it with a map::find which *should* be more efficient
967                  */
968                 if ((*i)->chan->HasUser(other))
969                         return true;
970         }
971         return false;
972 }
973
974 bool User::ChangeRealName(const std::string& real)
975 {
976         if (!this->realname.compare(real))
977                 return true;
978
979         if (IS_LOCAL(this))
980         {
981                 ModResult MOD_RESULT;
982                 FIRST_MOD_RESULT(OnPreChangeRealName, MOD_RESULT, (IS_LOCAL(this), real));
983                 if (MOD_RESULT == MOD_RES_DENY)
984                         return false;
985                 FOREACH_MOD(OnChangeRealName, (this, real));
986         }
987         this->realname.assign(real, 0, ServerInstance->Config->Limits.MaxReal);
988
989         return true;
990 }
991
992 bool User::ChangeDisplayedHost(const std::string& shost)
993 {
994         if (GetDisplayedHost() == shost)
995                 return true;
996
997         LocalUser* luser = IS_LOCAL(this);
998         if (luser)
999         {
1000                 ModResult MOD_RESULT;
1001                 FIRST_MOD_RESULT(OnPreChangeHost, MOD_RESULT, (luser, shost));
1002                 if (MOD_RESULT == MOD_RES_DENY)
1003                         return false;
1004         }
1005
1006         FOREACH_MOD(OnChangeHost, (this,shost));
1007
1008         if (realhost == shost)
1009                 this->displayhost.clear();
1010         else
1011                 this->displayhost.assign(shost, 0, ServerInstance->Config->Limits.MaxHost);
1012
1013         this->InvalidateCache();
1014
1015         if (IS_LOCAL(this) && this->registered != REG_NONE)
1016                 this->WriteNumeric(RPL_YOURDISPLAYEDHOST, this->GetDisplayedHost(), "is now your displayed host");
1017
1018         return true;
1019 }
1020
1021 void User::ChangeRealHost(const std::string& host, bool resetdisplay)
1022 {
1023         // If the real host is the new host and we are not resetting the
1024         // display host then we have nothing to do.
1025         const bool changehost = (realhost != host);
1026         if (!changehost && !resetdisplay)
1027                 return;
1028
1029         // If the displayhost is not set and we are not resetting it then
1030         // we need to copy it to the displayhost field.
1031         if (displayhost.empty() && !resetdisplay)
1032                 displayhost = realhost;
1033
1034         // If the displayhost is the new host or we are resetting it then
1035         // we clear its contents to save memory.
1036         else if (displayhost == host || resetdisplay)
1037                 displayhost.clear();
1038
1039         // If we are just resetting the display host then we don't need to
1040         // do anything else.
1041         if (!changehost)
1042                 return;
1043
1044         realhost = host;
1045         this->InvalidateCache();
1046 }
1047
1048 bool User::ChangeIdent(const std::string& newident)
1049 {
1050         if (this->ident == newident)
1051                 return true;
1052
1053         FOREACH_MOD(OnChangeIdent, (this,newident));
1054
1055         this->ident.assign(newident, 0, ServerInstance->Config->Limits.IdentMax);
1056         this->InvalidateCache();
1057
1058         return true;
1059 }
1060
1061 /*
1062  * Sets a user's connection class.
1063  * If the class name is provided, it will be used. Otherwise, the class will be guessed using host/ip/ident/etc.
1064  * NOTE: If the <ALLOW> or <DENY> tag specifies an ip, and this user resolves,
1065  * then their ip will be taken as 'priority' anyway, so for example,
1066  * <connect allow="127.0.0.1"> will match joe!bloggs@localhost
1067  */
1068 void LocalUser::SetClass(const std::string &explicit_name)
1069 {
1070         ConnectClass *found = NULL;
1071
1072         ServerInstance->Logs->Log("CONNECTCLASS", LOG_DEBUG, "Setting connect class for UID %s", this->uuid.c_str());
1073
1074         if (!explicit_name.empty())
1075         {
1076                 for (ServerConfig::ClassVector::const_iterator i = ServerInstance->Config->Classes.begin(); i != ServerInstance->Config->Classes.end(); ++i)
1077                 {
1078                         ConnectClass* c = *i;
1079
1080                         if (explicit_name == c->name)
1081                         {
1082                                 ServerInstance->Logs->Log("CONNECTCLASS", LOG_DEBUG, "Explicitly set to %s", explicit_name.c_str());
1083                                 found = c;
1084                         }
1085                 }
1086         }
1087         else
1088         {
1089                 for (ServerConfig::ClassVector::const_iterator i = ServerInstance->Config->Classes.begin(); i != ServerInstance->Config->Classes.end(); ++i)
1090                 {
1091                         ConnectClass* c = *i;
1092                         ServerInstance->Logs->Log("CONNECTCLASS", LOG_DEBUG, "Checking %s", c->GetName().c_str());
1093
1094                         ModResult MOD_RESULT;
1095                         FIRST_MOD_RESULT(OnSetConnectClass, MOD_RESULT, (this,c));
1096                         if (MOD_RESULT == MOD_RES_DENY)
1097                                 continue;
1098                         if (MOD_RESULT == MOD_RES_ALLOW)
1099                         {
1100                                 ServerInstance->Logs->Log("CONNECTCLASS", LOG_DEBUG, "Class forced by module to %s", c->GetName().c_str());
1101                                 found = c;
1102                                 break;
1103                         }
1104
1105                         if (c->type == CC_NAMED)
1106                                 continue;
1107
1108                         bool regdone = (registered != REG_NONE);
1109                         if (c->config->getBool("registered", regdone) != regdone)
1110                                 continue;
1111
1112                         /* check if host matches.. */
1113                         if (!InspIRCd::MatchCIDR(this->GetIPString(), c->GetHost(), NULL) &&
1114                             !InspIRCd::MatchCIDR(this->GetRealHost(), c->GetHost(), NULL))
1115                         {
1116                                 ServerInstance->Logs->Log("CONNECTCLASS", LOG_DEBUG, "No host match (for %s)", c->GetHost().c_str());
1117                                 continue;
1118                         }
1119
1120                         /*
1121                          * deny change if change will take class over the limit check it HERE, not after we found a matching class,
1122                          * because we should attempt to find another class if this one doesn't match us. -- w00t
1123                          */
1124                         if (c->limit && (c->GetReferenceCount() >= c->limit))
1125                         {
1126                                 ServerInstance->Logs->Log("CONNECTCLASS", LOG_DEBUG, "OOPS: Connect class limit (%lu) hit, denying", c->limit);
1127                                 continue;
1128                         }
1129
1130                         /* if it requires a port ... */
1131                         if (!c->ports.empty())
1132                         {
1133                                 /* and our port doesn't match, fail. */
1134                                 if (!c->ports.count(this->server_sa.port()))
1135                                 {
1136                                         ServerInstance->Logs->Log("CONNECTCLASS", LOG_DEBUG, "Requires a different port, skipping");
1137                                         continue;
1138                                 }
1139                         }
1140
1141                         if (regdone && !c->config->getString("password").empty())
1142                         {
1143                                 if (!ServerInstance->PassCompare(this, c->config->getString("password"), password, c->config->getString("hash")))
1144                                 {
1145                                         ServerInstance->Logs->Log("CONNECTCLASS", LOG_DEBUG, "Bad password, skipping");
1146                                         continue;
1147                                 }
1148                         }
1149
1150                         /* we stop at the first class that meets ALL critera. */
1151                         found = c;
1152                         break;
1153                 }
1154         }
1155
1156         /*
1157          * Okay, assuming we found a class that matches.. switch us into that class, keeping refcounts up to date.
1158          */
1159         if (found)
1160         {
1161                 MyClass = found;
1162         }
1163 }
1164
1165 void User::PurgeEmptyChannels()
1166 {
1167         // firstly decrement the count on each channel
1168         for (User::ChanList::iterator i = this->chans.begin(); i != this->chans.end(); )
1169         {
1170                 Channel* c = (*i)->chan;
1171                 ++i;
1172                 c->DelUser(this);
1173         }
1174 }
1175
1176 void User::WriteNotice(const std::string& text)
1177 {
1178         LocalUser* const localuser = IS_LOCAL(this);
1179         if (!localuser)
1180                 return;
1181
1182         ClientProtocol::Messages::Privmsg msg(ClientProtocol::Messages::Privmsg::nocopy, ServerInstance->FakeClient, localuser, text, MSG_NOTICE);
1183         localuser->Send(ServerInstance->GetRFCEvents().privmsg, msg);
1184 }
1185
1186 const std::string& FakeUser::GetFullHost()
1187 {
1188         if (!ServerInstance->Config->HideServer.empty())
1189                 return ServerInstance->Config->HideServer;
1190         return server->GetName();
1191 }
1192
1193 const std::string& FakeUser::GetFullRealHost()
1194 {
1195         if (!ServerInstance->Config->HideServer.empty())
1196                 return ServerInstance->Config->HideServer;
1197         return server->GetName();
1198 }
1199
1200 ConnectClass::ConnectClass(ConfigTag* tag, char t, const std::string& mask)
1201         : config(tag), type(t), fakelag(true), name("unnamed"), registration_timeout(0), host(mask),
1202         pingtime(0), softsendqmax(0), hardsendqmax(0), recvqmax(0),
1203         penaltythreshold(0), commandrate(0), maxlocal(0), maxglobal(0), maxconnwarn(true), maxchans(ServerInstance->Config->MaxChans),
1204         limit(0), resolvehostnames(true)
1205 {
1206 }
1207
1208 ConnectClass::ConnectClass(ConfigTag* tag, char t, const std::string& mask, const ConnectClass& parent)
1209 {
1210         Update(&parent);
1211         name = "unnamed";
1212         type = t;
1213         host = mask;
1214
1215         // Connect classes can inherit from each other but this is problematic for modules which can't use
1216         // ConnectClass::Update so we build a hybrid tag containing all of the values set on this class as
1217         // well as the parent class.
1218         ConfigItems* items = NULL;
1219         config = ConfigTag::create(tag->tag, tag->src_name, tag->src_line, items);
1220
1221         const ConfigItems& parentkeys = parent.config->getItems();
1222         for (ConfigItems::const_iterator piter = parentkeys.begin(); piter != parentkeys.end(); ++piter)
1223         {
1224                 // The class name and parent name are not inherited
1225                 if (stdalgo::string::equalsci(piter->first, "name") || stdalgo::string::equalsci(piter->first, "parent"))
1226                         continue;
1227
1228                 // Store the item in the config tag. If this item also
1229                 // exists in the child it will be overwritten.
1230                 (*items)[piter->first] = piter->second;
1231         }
1232
1233         const ConfigItems& childkeys = tag->getItems();
1234         for (ConfigItems::const_iterator citer = childkeys.begin(); citer != childkeys.end(); ++citer)
1235         {
1236                 // This will overwrite the parent value if present.
1237                 (*items)[citer->first] = citer->second;
1238         }
1239 }
1240
1241 void ConnectClass::Update(const ConnectClass* src)
1242 {
1243         config = src->config;
1244         type = src->type;
1245         fakelag = src->fakelag;
1246         name = src->name;
1247         registration_timeout = src->registration_timeout;
1248         host = src->host;
1249         pingtime = src->pingtime;
1250         softsendqmax = src->softsendqmax;
1251         hardsendqmax = src->hardsendqmax;
1252         recvqmax = src->recvqmax;
1253         penaltythreshold = src->penaltythreshold;
1254         commandrate = src->commandrate;
1255         maxlocal = src->maxlocal;
1256         maxglobal = src->maxglobal;
1257         maxconnwarn = src->maxconnwarn;
1258         maxchans = src->maxchans;
1259         limit = src->limit;
1260         resolvehostnames = src->resolvehostnames;
1261         ports = src->ports;
1262 }