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