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