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