]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/users.cpp
7f60b2f93eea5c86979734b5cbfc35ad18b4ccba
[user/henk/code/inspircd.git] / src / users.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 /* $Core */
15
16 #include "inspircd.h"
17 #include <stdarg.h>
18 #include "socketengine.h"
19 #include "xline.h"
20 #include "bancache.h"
21 #include "commands/cmd_whowas.h"
22
23 /* XXX: Used for speeding up WriteCommon operations */
24 unsigned long uniq_id = 1;
25
26 static unsigned long* already_sent = NULL;
27
28 LocalIntExt User::NICKForced("NICKForced", NULL);
29 LocalStringExt User::OperQuit("OperQuit", NULL);
30
31 void InitializeAlreadySent(SocketEngine* SE)
32 {
33         already_sent = new unsigned long[SE->GetMaxFds()];
34         memset(already_sent, 0, SE->GetMaxFds() * sizeof(unsigned long));
35 }
36
37 std::string User::ProcessNoticeMasks(const char *sm)
38 {
39         bool adding = true, oldadding = false;
40         const char *c = sm;
41         std::string output;
42
43         while (c && *c)
44         {
45                 switch (*c)
46                 {
47                         case '+':
48                                 adding = true;
49                         break;
50                         case '-':
51                                 adding = false;
52                         break;
53                         case '*':
54                                 for (unsigned char d = 'A'; d <= 'z'; d++)
55                                 {
56                                         if (ServerInstance->SNO->IsEnabled(d))
57                                         {
58                                                 if ((!IsNoticeMaskSet(d) && adding) || (IsNoticeMaskSet(d) && !adding))
59                                                 {
60                                                         if ((oldadding != adding) || (!output.length()))
61                                                                 output += (adding ? '+' : '-');
62
63                                                         this->SetNoticeMask(d, adding);
64
65                                                         output += d;
66                                                 }
67                                         }
68                                         oldadding = adding;
69                                 }
70                         break;
71                         default:
72                                 if ((*c >= 'A') && (*c <= 'z') && (ServerInstance->SNO->IsEnabled(*c)))
73                                 {
74                                         if ((!IsNoticeMaskSet(*c) && adding) || (IsNoticeMaskSet(*c) && !adding))
75                                         {
76                                                 if ((oldadding != adding) || (!output.length()))
77                                                         output += (adding ? '+' : '-');
78
79                                                 this->SetNoticeMask(*c, adding);
80
81                                                 output += *c;
82                                         }
83                                 }
84                                 else
85                                         this->WriteNumeric(ERR_UNKNOWNSNOMASK, "%s %c :is unknown snomask char to me", this->nick.c_str(), *c);
86
87                                 oldadding = adding;
88                         break;
89                 }
90
91                 *c++;
92         }
93
94         std::string s = this->FormatNoticeMasks();
95         if (s.length() == 0)
96         {
97                 this->modes[UM_SNOMASK] = false;
98         }
99
100         return output;
101 }
102
103 void User::StartDNSLookup()
104 {
105         try
106         {
107                 bool cached = false;
108                 const char* sip = this->GetIPString();
109                 UserResolver *res_reverse;
110
111                 QueryType resolvtype = this->client_sa.sa.sa_family == AF_INET6 ? DNS_QUERY_PTR6 : DNS_QUERY_PTR4;
112                 res_reverse = new UserResolver(this->ServerInstance, this, sip, resolvtype, cached);
113
114                 this->ServerInstance->AddResolver(res_reverse, cached);
115         }
116         catch (CoreException& e)
117         {
118                 ServerInstance->Logs->Log("USERS", DEBUG,"Error in resolver: %s",e.GetReason());
119         }
120 }
121
122 bool User::IsNoticeMaskSet(unsigned char sm)
123 {
124         if (!isalpha(sm))
125                 return false;
126         return (snomasks[sm-65]);
127 }
128
129 void User::SetNoticeMask(unsigned char sm, bool value)
130 {
131         if (!isalpha(sm))
132                 return;
133         snomasks[sm-65] = value;
134 }
135
136 const char* User::FormatNoticeMasks()
137 {
138         static char data[MAXBUF];
139         int offset = 0;
140
141         for (int n = 0; n < 64; n++)
142         {
143                 if (snomasks[n])
144                         data[offset++] = n+65;
145         }
146
147         data[offset] = 0;
148         return data;
149 }
150
151 bool User::IsModeSet(unsigned char m)
152 {
153         if (!isalpha(m))
154                 return false;
155         return (modes[m-65]);
156 }
157
158 void User::SetMode(unsigned char m, bool value)
159 {
160         if (!isalpha(m))
161                 return;
162         modes[m-65] = value;
163 }
164
165 const char* User::FormatModes(bool showparameters)
166 {
167         static char data[MAXBUF];
168         std::string params;
169         int offset = 0;
170
171         for (unsigned char n = 0; n < 64; n++)
172         {
173                 if (modes[n])
174                 {
175                         data[offset++] = n + 65;
176                         ModeHandler* mh = ServerInstance->Modes->FindMode(n + 65, MODETYPE_USER);
177                         if (showparameters && mh && mh->GetNumParams(true))
178                         {
179                                 std::string p = mh->GetUserParameter(this);
180                                 if (p.length())
181                                         params.append(" ").append(p);
182                         }
183                 }
184         }
185         data[offset] = 0;
186         strlcat(data, params.c_str(), MAXBUF);
187         return data;
188 }
189
190 void User::DecrementModes()
191 {
192         ServerInstance->Logs->Log("USERS", DEBUG, "DecrementModes()");
193         for (unsigned char n = 'A'; n <= 'z'; n++)
194         {
195                 if (modes[n-65])
196                 {
197                         ServerInstance->Logs->Log("USERS", DEBUG,"DecrementModes() found mode %c", n);
198                         ModeHandler* mh = ServerInstance->Modes->FindMode(n, MODETYPE_USER);
199                         if (mh)
200                         {
201                                 ServerInstance->Logs->Log("USERS", DEBUG,"Found handler %c and call ChangeCount", n);
202                                 mh->ChangeCount(-1);
203                         }
204                 }
205         }
206 }
207
208 User::User(InspIRCd* Instance, const std::string &uid) : ServerInstance(Instance)
209 {
210         server = Instance->FindServerNamePtr(Instance->Config->ServerName);
211         age = ServerInstance->Time();
212         Penalty = 0;
213         lastping = signon = idle_lastmsg = nping = registered = 0;
214         bytes_in = bytes_out = cmds_in = cmds_out = 0;
215         quietquit = quitting = exempt = haspassed = dns_done = false;
216         fd = -1;
217         server_sa.sa.sa_family = AF_UNSPEC;
218         client_sa.sa.sa_family = AF_UNSPEC;
219         recvq.clear();
220         sendq.clear();
221         MyClass = NULL;
222         AllowedPrivs = AllowedOperCommands = NULL;
223         chans.clear();
224         invites.clear();
225
226         if (uid.empty())
227                 uuid.assign(Instance->GetUID(), 0, UUID_LENGTH - 1);
228         else
229                 uuid.assign(uid, 0, UUID_LENGTH - 1);
230
231         ServerInstance->Logs->Log("USERS", DEBUG,"New UUID for user: %s (%s)", uuid.c_str(), uid.empty() ? "allocated new" : "used remote");
232
233         user_hash::iterator finduuid = Instance->Users->uuidlist->find(uuid);
234         if (finduuid == Instance->Users->uuidlist->end())
235                 (*Instance->Users->uuidlist)[uuid] = this;
236         else
237                 throw CoreException("Duplicate UUID "+std::string(uuid)+" in User constructor");
238 }
239
240 User::~User()
241 {
242         /* NULL for remote users :) */
243         if (this->MyClass)
244         {
245                 this->MyClass->RefCount--;
246                 ServerInstance->Logs->Log("USERS", DEBUG, "User destructor -- connect refcount now: %lu", this->MyClass->RefCount);
247                 if (MyClass->RefCount == 0)
248                         delete MyClass;
249         }
250
251         if (this->AllowedOperCommands)
252         {
253                 delete AllowedOperCommands;
254                 AllowedOperCommands = NULL;
255         }
256
257         if (this->AllowedPrivs)
258         {
259                 delete AllowedPrivs;
260                 AllowedPrivs = NULL;
261         }
262
263         this->InvalidateCache();
264         this->DecrementModes();
265
266         if (client_sa.sa.sa_family != AF_UNSPEC)
267                 ServerInstance->Users->RemoveCloneCounts(this);
268
269         ServerInstance->Users->uuidlist->erase(uuid);
270 }
271
272 const std::string& User::MakeHost()
273 {
274         if (!this->cached_makehost.empty())
275                 return this->cached_makehost;
276
277         char nhost[MAXBUF];
278         /* This is much faster than snprintf */
279         char* t = nhost;
280         for(const char* n = ident.c_str(); *n; n++)
281                 *t++ = *n;
282         *t++ = '@';
283         for(const char* n = host.c_str(); *n; n++)
284                 *t++ = *n;
285         *t = 0;
286
287         this->cached_makehost.assign(nhost);
288
289         return this->cached_makehost;
290 }
291
292 const std::string& User::MakeHostIP()
293 {
294         if (!this->cached_hostip.empty())
295                 return this->cached_hostip;
296
297         char ihost[MAXBUF];
298         /* This is much faster than snprintf */
299         char* t = ihost;
300         for(const char* n = ident.c_str(); *n; n++)
301                 *t++ = *n;
302         *t++ = '@';
303         for(const char* n = this->GetIPString(); *n; n++)
304                 *t++ = *n;
305         *t = 0;
306
307         this->cached_hostip = ihost;
308
309         return this->cached_hostip;
310 }
311
312 void User::CloseSocket()
313 {
314         if (this->fd > -1)
315         {
316                 ServerInstance->SE->Shutdown(this, 2);
317                 ServerInstance->SE->Close(this);
318         }
319 }
320
321 const std::string User::GetFullHost()
322 {
323         if (!this->cached_fullhost.empty())
324                 return this->cached_fullhost;
325
326         char result[MAXBUF];
327         char* t = result;
328         for(const char* n = nick.c_str(); *n; n++)
329                 *t++ = *n;
330         *t++ = '!';
331         for(const char* n = ident.c_str(); *n; n++)
332                 *t++ = *n;
333         *t++ = '@';
334         for(const char* n = dhost.c_str(); *n; n++)
335                 *t++ = *n;
336         *t = 0;
337
338         this->cached_fullhost = result;
339
340         return this->cached_fullhost;
341 }
342
343 char* User::MakeWildHost()
344 {
345         static char nresult[MAXBUF];
346         char* t = nresult;
347         *t++ = '*';     *t++ = '!';
348         *t++ = '*';     *t++ = '@';
349         for(const char* n = dhost.c_str(); *n; n++)
350                 *t++ = *n;
351         *t = 0;
352         return nresult;
353 }
354
355 int User::ReadData(void* buffer, size_t size)
356 {
357         if (IS_LOCAL(this))
358         {
359 #ifndef WIN32
360                 return read(this->fd, buffer, size);
361 #else
362                 return recv(this->fd, (char*)buffer, size, 0);
363 #endif
364         }
365         else
366                 return 0;
367 }
368
369
370 const std::string User::GetFullRealHost()
371 {
372         if (!this->cached_fullrealhost.empty())
373                 return this->cached_fullrealhost;
374
375         char fresult[MAXBUF];
376         char* t = fresult;
377         for(const char* n = nick.c_str(); *n; n++)
378                 *t++ = *n;
379         *t++ = '!';
380         for(const char* n = ident.c_str(); *n; n++)
381                 *t++ = *n;
382         *t++ = '@';
383         for(const char* n = host.c_str(); *n; n++)
384                 *t++ = *n;
385         *t = 0;
386
387         this->cached_fullrealhost = fresult;
388
389         return this->cached_fullrealhost;
390 }
391
392 bool User::IsInvited(const irc::string &channel)
393 {
394         time_t now = ServerInstance->Time();
395         InvitedList::iterator safei;
396         for (InvitedList::iterator i = invites.begin(); i != invites.end(); ++i)
397         {
398                 if (channel == i->first)
399                 {
400                         if (i->second != 0 && now > i->second)
401                         {
402                                 /* Expired invite, remove it. */
403                                 safei = i;
404                                 --i;
405                                 invites.erase(safei);
406                                 continue;
407                         }
408                         return true;
409                 }
410         }
411         return false;
412 }
413
414 InvitedList* User::GetInviteList()
415 {
416         time_t now = ServerInstance->Time();
417         /* Weed out expired invites here. */
418         InvitedList::iterator safei;
419         for (InvitedList::iterator i = invites.begin(); i != invites.end(); ++i)
420         {
421                 if (i->second != 0 && now > i->second)
422                 {
423                         /* Expired invite, remove it. */
424                         safei = i;
425                         --i;
426                         invites.erase(safei);
427                 }
428         }
429         return &invites;
430 }
431
432 void User::InviteTo(const irc::string &channel, time_t invtimeout)
433 {
434         time_t now = ServerInstance->Time();
435         if (invtimeout != 0 && now > invtimeout) return; /* Don't add invites that are expired from the get-go. */
436         for (InvitedList::iterator i = invites.begin(); i != invites.end(); ++i)
437         {
438                 if (channel == i->first)
439                 {
440                         if (i->second != 0 && invtimeout > i->second)
441                         {
442                                 i->second = invtimeout;
443                         }
444
445                         return;
446                 }
447         }
448         invites.push_back(std::make_pair(channel, invtimeout));
449 }
450
451 void User::RemoveInvite(const irc::string &channel)
452 {
453         for (InvitedList::iterator i = invites.begin(); i != invites.end(); i++)
454         {
455                 if (channel == i->first)
456                 {
457                         invites.erase(i);
458                         return;
459                 }
460         }
461 }
462
463 bool User::HasModePermission(unsigned char mode, ModeType type)
464 {
465         if (!IS_LOCAL(this))
466                 return true;
467
468         if (!IS_OPER(this))
469                 return false;
470
471         if (mode < 'A' || mode > ('A' + 64)) return false;
472
473         return ((type == MODETYPE_USER ? AllowedUserModes : AllowedChanModes))[(mode - 'A')];
474
475 }
476
477 bool User::HasPermission(const std::string &command)
478 {
479         /*
480          * users on remote servers can completely bypass all permissions based checks.
481          * This prevents desyncs when one server has different type/class tags to another.
482          * That having been said, this does open things up to the possibility of source changes
483          * allowing remote kills, etc - but if they have access to the src, they most likely have
484          * access to the conf - so it's an end to a means either way.
485          */
486         if (!IS_LOCAL(this))
487                 return true;
488
489         // are they even an oper at all?
490         if (!IS_OPER(this))
491         {
492                 return false;
493         }
494
495         if (!AllowedOperCommands)
496                 return false;
497
498         if (AllowedOperCommands->find(command) != AllowedOperCommands->end())
499                 return true;
500         else if (AllowedOperCommands->find("*") != AllowedOperCommands->end())
501                 return true;
502
503         return false;
504 }
505
506
507 bool User::HasPrivPermission(const std::string &privstr, bool noisy)
508 {
509         if (!IS_LOCAL(this))
510         {
511                 ServerInstance->Logs->Log("PRIVS", DEBUG, "Remote (yes)");
512                 return true;
513         }
514
515         if (!IS_OPER(this))
516         {
517                 if (noisy)
518                         this->WriteServ("NOTICE %s :You are not an oper", this->nick.c_str());
519                 return false;
520         }
521
522         if (!AllowedPrivs)
523         {
524                 if (noisy)
525                         this->WriteServ("NOTICE %s :Privset empty(!?)", this->nick.c_str());
526                 return false;
527         }
528
529         if (AllowedPrivs->find(privstr) != AllowedPrivs->end())
530         {
531                 return true;
532         }
533         else if (AllowedPrivs->find("*") != AllowedPrivs->end())
534         {
535                 return true;
536         }
537
538         if (noisy)
539                 this->WriteServ("NOTICE %s :Oper type %s does not have access to priv %s", this->nick.c_str(), this->oper.c_str(), privstr.c_str());
540         return false;
541 }
542
543 bool User::AddBuffer(const std::string &a)
544 {
545         std::string::size_type start = 0;
546         std::string::size_type i = a.find('\r');
547
548         /*
549          * The old implementation here took a copy, and rfind() on \r, removing as it found them, before
550          * copying a second time onto the recvq. That's ok, but involves three copies minimum (recv() to buffer,
551          * buffer to here, here to recvq) - The new method now copies twice (recv() to buffer, buffer to recvq).
552          *
553          * We use find() instead of rfind() for clarity, however unlike the old code, our scanning of the string is
554          * contiguous: as we specify a startpoint, we never see characters we have scanned previously, making this
555          * marginally faster in cases with a number of \r hidden early on in the buffer.
556          *
557          * How it works:
558          * Start at first pos of string, find first \r, append everything in the chunk (excluding \r) to recvq. Set
559          * i ahead of the \r, search for next \r, add next chunk to buffer... repeat.
560          *              -- w00t (7 may, 2008)
561          */
562         if (i == std::string::npos)
563         {
564                 // no \r that we need to dance around, just add to buffer
565                 recvq.append(a);
566         }
567         else
568         {
569                 // While we can find the end of a chunk to add
570                 while (i != std::string::npos)
571                 {
572                         // Append the chunk that we have
573                         recvq.append(a, start, (i - start));
574
575                         // Start looking for the next one
576                         start = i + 1;
577                         i = a.find('\r', start);
578                 }
579
580                 if (start != a.length())
581                 {
582                         /*
583                          * This is here to catch a corner case when we get something like:
584                          * NICK w0
585                          * 0t\r\nU
586                          * SER ...
587                          * in successive calls to us.
588                          *
589                          * Without this conditional, the 'U' on the second case will be dropped,
590                          * which is most *certainly* not the behaviour we want!
591                          *              -- w00t
592                          */
593                         recvq.append(a, start, (a.length() - start));
594                 }
595         }
596
597         if (this->MyClass && !this->HasPrivPermission("users/flood/increased-buffers") && recvq.length() > this->MyClass->GetRecvqMax())
598         {
599                 ServerInstance->Users->QuitUser(this, "RecvQ exceeded");
600                 ServerInstance->SNO->WriteToSnoMask('a', "User %s RecvQ of %lu exceeds connect class maximum of %lu",this->nick.c_str(),(unsigned long int)recvq.length(),this->MyClass->GetRecvqMax());
601                 return false;
602         }
603
604         return true;
605 }
606
607 bool User::BufferIsReady()
608 {
609         return (recvq.find('\n') != std::string::npos);
610 }
611
612 void User::ClearBuffer()
613 {
614         recvq.clear();
615 }
616
617 std::string User::GetBuffer()
618 {
619         try
620         {
621                 if (recvq.empty())
622                         return "";
623
624                 /* Strip any leading \r or \n off the string.
625                  * Usually there are only one or two of these,
626                  * so its is computationally cheap to do.
627                  */
628                 std::string::iterator t = recvq.begin();
629                 while (t != recvq.end() && (*t == '\r' || *t == '\n'))
630                 {
631                         recvq.erase(t);
632                         t = recvq.begin();
633                 }
634
635                 for (std::string::iterator x = recvq.begin(); x != recvq.end(); x++)
636                 {
637                         /* Find the first complete line, return it as the
638                          * result, and leave the recvq as whats left
639                          */
640                         if (*x == '\n')
641                         {
642                                 std::string ret = std::string(recvq.begin(), x);
643                                 recvq.erase(recvq.begin(), x + 1);
644                                 return ret;
645                         }
646                 }
647                 return "";
648         }
649
650         catch (...)
651         {
652                 ServerInstance->Logs->Log("USERS", DEBUG,"Exception in User::GetBuffer()");
653                 return "";
654         }
655 }
656
657 void User::AddWriteBuf(const std::string &data)
658 {
659         if (!this->quitting && this->MyClass && !this->HasPrivPermission("users/flood/increased-buffers") && sendq.length() + data.length() > this->MyClass->GetSendqMax())
660         {
661                 /*
662                  * Fix by brain - Set the error text BEFORE calling, because
663                  * if we dont it'll recursively  call here over and over again trying
664                  * to repeatedly add the text to the sendq!
665                  */
666                 ServerInstance->Users->QuitUser(this, "SendQ exceeded");
667                 ServerInstance->SNO->WriteToSnoMask('a', "User %s SendQ of %lu exceeds connect class maximum of %lu",this->nick.c_str(),(unsigned long int)sendq.length() + data.length(),this->MyClass->GetSendqMax());
668                 return;
669         }
670
671         // We still want to append data to the sendq of a quitting user,
672         // e.g. their ERROR message that says 'closing link'
673
674         if (data.length() > MAXBUF - 2) /* MAXBUF has a value of 514, to account for line terminators */
675                 sendq.append(data.substr(0,MAXBUF - 4)).append("\r\n"); /* MAXBUF-4 = 510 */
676         else
677                 sendq.append(data);
678 }
679
680 // send AS MUCH OF THE USERS SENDQ as we are able to (might not be all of it)
681 void User::FlushWriteBuf()
682 {
683         if (this->fd == FD_MAGIC_NUMBER)
684         {
685                 sendq.clear();
686                 return;
687         }
688
689         if ((sendq.length()) && (this->fd != FD_MAGIC_NUMBER))
690         {
691                 int old_sendq_length = sendq.length();
692                 int n_sent = ServerInstance->SE->Send(this, this->sendq.data(), this->sendq.length(), 0);
693
694                 if (n_sent == -1)
695                 {
696                         if (errno == EAGAIN)
697                         {
698                                 /* The socket buffer is full. This isnt fatal,
699                                  * try again later.
700                                  */
701                                 ServerInstance->SE->WantWrite(this);
702                         }
703                         else
704                         {
705                                 /* Fatal error, set write error and bail */
706                                 ServerInstance->Users->QuitUser(this, errno ? strerror(errno) : "Write error");
707                                 return;
708                         }
709                 }
710                 else
711                 {
712                         /* advance the queue */
713                         if (n_sent)
714                                 this->sendq = this->sendq.substr(n_sent);
715                         /* update the user's stats counters */
716                         this->bytes_out += n_sent;
717                         this->cmds_out++;
718                         if (n_sent != old_sendq_length)
719                                 this->ServerInstance->SE->WantWrite(this);
720                 }
721         }
722
723         /* note: NOT else if! */
724         if (this->sendq.empty())
725         {
726                 FOREACH_MOD(I_OnBufferFlushed,OnBufferFlushed(this));
727         }
728 }
729
730 void User::Oper(const std::string &opertype, const std::string &opername)
731 {
732         if (this->IsModeSet('o'))
733                 this->UnOper();
734
735         this->modes[UM_OPERATOR] = 1;
736         this->WriteServ("MODE %s :+o", this->nick.c_str());
737         FOREACH_MOD(I_OnOper, OnOper(this, opertype));
738
739         ServerInstance->SNO->WriteToSnoMask('o',"%s (%s@%s) is now an IRC operator of type %s (using oper '%s')", this->nick.c_str(), this->ident.c_str(), this->host.c_str(), irc::Spacify(opertype.c_str()), opername.c_str());
740         this->WriteNumeric(381, "%s :You are now %s %s", this->nick.c_str(), strchr("aeiouAEIOU", *opertype.c_str()) ? "an" : "a", irc::Spacify(opertype.c_str()));
741
742         ServerInstance->Logs->Log("OPER", DEFAULT, "%s!%s@%s opered as type: %s", this->nick.c_str(), this->ident.c_str(), this->host.c_str(), opertype.c_str());
743         this->oper.assign(opertype, 0, 512);
744         ServerInstance->Users->all_opers.push_back(this);
745
746         /*
747          * This might look like it's in the wrong place.
748          * It is *not*!
749          *
750          * For multi-network servers, we may not have the opertypes of the remote server, but we still want to mark the user as an oper of that type.
751          * -- w00t
752          */
753         opertype_t::iterator iter_opertype = ServerInstance->Config->opertypes.find(this->oper.c_str());
754         if (iter_opertype != ServerInstance->Config->opertypes.end())
755         {
756                 if (AllowedOperCommands)
757                         AllowedOperCommands->clear();
758                 else
759                         AllowedOperCommands = new std::set<std::string>;
760
761                 if (AllowedPrivs)
762                         AllowedPrivs->clear();
763                 else
764                         AllowedPrivs = new std::set<std::string>;
765
766                 AllowedUserModes.reset();
767                 AllowedChanModes.reset();
768                 this->AllowedUserModes['o' - 'A'] = true; // Call me paranoid if you want.
769
770                 std::string myclass, mycmd, mypriv;
771                 irc::spacesepstream Classes(iter_opertype->second.c_str());
772                 while (Classes.GetToken(myclass))
773                 {
774                         operclass_t::iterator iter_operclass = ServerInstance->Config->operclass.find(myclass.c_str());
775                         if (iter_operclass != ServerInstance->Config->operclass.end())
776                         {
777                                 /* Process commands */
778                                 irc::spacesepstream CommandList(iter_operclass->second.commandlist);
779                                 while (CommandList.GetToken(mycmd))
780                                 {
781                                         this->AllowedOperCommands->insert(mycmd);
782                                 }
783
784                                 irc::spacesepstream PrivList(iter_operclass->second.privs);
785                                 while (PrivList.GetToken(mypriv))
786                                 {
787                                         this->AllowedPrivs->insert(mypriv);
788                                 }
789
790                                 for (unsigned char* c = (unsigned char*)iter_operclass->second.umodelist.c_str(); *c; ++c)
791                                 {
792                                         if (*c == '*')
793                                         {
794                                                 this->AllowedUserModes.set();
795                                         }
796                                         else
797                                         {
798                                                 this->AllowedUserModes[*c - 'A'] = true;
799                                         }
800                                 }
801
802                                 for (unsigned char* c = (unsigned char*)iter_operclass->second.cmodelist.c_str(); *c; ++c)
803                                 {
804                                         if (*c == '*')
805                                         {
806                                                 this->AllowedChanModes.set();
807                                         }
808                                         else
809                                         {
810                                                 this->AllowedChanModes[*c - 'A'] = true;
811                                         }
812                                 }
813                         }
814                 }
815         }
816
817         FOREACH_MOD(I_OnPostOper,OnPostOper(this, opertype, opername));
818 }
819
820 void User::UnOper()
821 {
822         if (IS_OPER(this))
823         {
824                 /*
825                  * unset their oper type (what IS_OPER checks).
826                  * note, order is important - this must come before modes as -o attempts
827                  * to call UnOper. -- w00t
828                  */
829                 this->oper.clear();
830
831
832                 /* Remove all oper only modes from the user when the deoper - Bug #466*/
833                 std::string moderemove("-");
834
835                 for (unsigned char letter = 'A'; letter <= 'z'; letter++)
836                 {
837                         ModeHandler* mh = ServerInstance->Modes->FindMode(letter, MODETYPE_USER);
838                         if (mh && mh->NeedsOper())
839                                 moderemove += letter;
840                 }
841
842
843                 std::vector<std::string> parameters;
844                 parameters.push_back(this->nick);
845                 parameters.push_back(moderemove);
846
847                 ServerInstance->Parser->CallHandler("MODE", parameters, this);
848
849                 /* remove the user from the oper list. Will remove multiple entries as a safeguard against bug #404 */
850                 ServerInstance->Users->all_opers.remove(this);
851
852                 if (AllowedOperCommands)
853                 {
854                         delete AllowedOperCommands;
855                         AllowedOperCommands = NULL;
856                 }
857
858                 if (AllowedPrivs)
859                 {
860                         delete AllowedPrivs;
861                         AllowedPrivs = NULL;
862                 }
863
864                 AllowedUserModes.reset();
865                 AllowedChanModes.reset();
866                 this->modes[UM_OPERATOR] = 0;
867         }
868 }
869
870 /* adds or updates an entry in the whowas list */
871 void User::AddToWhoWas()
872 {
873         Module* whowas = ServerInstance->Modules->Find("cmd_whowas.so");
874         if (whowas)
875         {
876                 WhowasRequest req(NULL, whowas, WhowasRequest::WHOWAS_ADD);
877                 req.user = this;
878                 req.Send();
879         }
880 }
881
882 /*
883  * Check class restrictions
884  */
885 void User::CheckClass()
886 {
887         ConnectClass* a = this->MyClass;
888
889         if ((!a) || (a->type == CC_DENY))
890         {
891                 ServerInstance->Users->QuitUser(this, "Unauthorised connection");
892                 return;
893         }
894         else if ((a->GetMaxLocal()) && (ServerInstance->Users->LocalCloneCount(this) > a->GetMaxLocal()))
895         {
896                 ServerInstance->Users->QuitUser(this, "No more connections allowed from your host via this connect class (local)");
897                 ServerInstance->SNO->WriteToSnoMask('a', "WARNING: maximum LOCAL connections (%ld) exceeded for IP %s", a->GetMaxLocal(), this->GetIPString());
898                 return;
899         }
900         else if ((a->GetMaxGlobal()) && (ServerInstance->Users->GlobalCloneCount(this) > a->GetMaxGlobal()))
901         {
902                 ServerInstance->Users->QuitUser(this, "No more connections allowed from your host via this connect class (global)");
903                 ServerInstance->SNO->WriteToSnoMask('a', "WARNING: maximum GLOBAL connections (%ld) exceeded for IP %s", a->GetMaxGlobal(), this->GetIPString());
904                 return;
905         }
906
907         this->nping = ServerInstance->Time() + a->GetPingTime() + ServerInstance->Config->dns_timeout;
908 }
909
910 bool User::CheckLines(bool doZline)
911 {
912         const char* check[] = { "G" , "K", (doZline) ? "Z" : NULL, NULL };
913
914         if (!this->exempt)
915         {
916                 for (int n = 0; check[n]; ++n)
917                 {
918                         XLine *r = ServerInstance->XLines->MatchesLine(check[n], this);
919
920                         if (r)
921                         {
922                                 r->Apply(this);
923                                 return true;
924                         }
925                 }
926         }
927
928         return false;
929 }
930
931 void User::FullConnect()
932 {
933         ServerInstance->stats->statsConnects++;
934         this->idle_lastmsg = ServerInstance->Time();
935
936         /*
937          * You may be thinking "wtf, we checked this in User::AddClient!" - and yes, we did, BUT.
938          * At the time AddClient is called, we don't have a resolved host, by here we probably do - which
939          * may put the user into a totally seperate class with different restrictions! so we *must* check again.
940          * Don't remove this! -- w00t
941          */
942         this->SetClass();
943
944         /* Check the password, if one is required by the user's connect class.
945          * This CANNOT be in CheckClass(), because that is called prior to PASS as well!
946          */
947         if (this->MyClass && !this->MyClass->GetPass().empty() && !this->haspassed)
948         {
949                 ServerInstance->Users->QuitUser(this, "Invalid password");
950                 return;
951         }
952
953         if (this->CheckLines())
954                 return;
955
956         this->WriteServ("NOTICE Auth :Welcome to \002%s\002!",ServerInstance->Config->Network);
957         this->WriteNumeric(RPL_WELCOME, "%s :Welcome to the %s IRC Network %s!%s@%s",this->nick.c_str(), ServerInstance->Config->Network, this->nick.c_str(), this->ident.c_str(), this->host.c_str());
958         this->WriteNumeric(RPL_YOURHOSTIS, "%s :Your host is %s, running version InspIRCd-2.0",this->nick.c_str(),ServerInstance->Config->ServerName);
959         this->WriteNumeric(RPL_SERVERCREATED, "%s :This server was created %s %s", this->nick.c_str(), __TIME__, __DATE__);
960         this->WriteNumeric(RPL_SERVERVERSION, "%s %s InspIRCd-2.0 %s %s %s", this->nick.c_str(), ServerInstance->Config->ServerName, ServerInstance->Modes->UserModeList().c_str(), ServerInstance->Modes->ChannelModeList().c_str(), ServerInstance->Modes->ParaModeList().c_str());
961
962         ServerInstance->Config->Send005(this);
963         this->WriteNumeric(RPL_YOURUUID, "%s %s :your unique ID", this->nick.c_str(), this->uuid.c_str());
964
965
966         this->ShowMOTD();
967
968         /* Now registered */
969         if (ServerInstance->Users->unregistered_count)
970                 ServerInstance->Users->unregistered_count--;
971
972         /* Trigger LUSERS output, give modules a chance too */
973         ModResult MOD_RESULT;
974         std::string command("LUSERS");
975         std::vector<std::string> parameters;
976         FIRST_MOD_RESULT(ServerInstance, OnPreCommand, MOD_RESULT, (command, parameters, this, true, "LUSERS"));
977         if (!MOD_RESULT)
978                 ServerInstance->CallCommandHandler(command, parameters, this);
979
980         /*
981          * We don't set REG_ALL until triggering OnUserConnect, so some module events don't spew out stuff
982          * for a user that doesn't exist yet.
983          */
984         FOREACH_MOD(I_OnUserConnect,OnUserConnect(this));
985
986         this->registered = REG_ALL;
987
988         FOREACH_MOD(I_OnPostConnect,OnPostConnect(this));
989
990         ServerInstance->SNO->WriteToSnoMask('c',"Client connecting on port %d: %s!%s@%s [%s] [%s]",
991                 this->GetServerPort(), this->nick.c_str(), this->ident.c_str(), this->host.c_str(), this->GetIPString(), this->fullname.c_str());
992         ServerInstance->Logs->Log("BANCACHE", DEBUG, "BanCache: Adding NEGATIVE hit for %s", this->GetIPString());
993         ServerInstance->BanCache->AddHit(this->GetIPString(), "", "");
994 }
995
996 /** User::UpdateNick()
997  * re-allocates a nick in the user_hash after they change nicknames,
998  * returns a pointer to the new user as it may have moved
999  */
1000 User* User::UpdateNickHash(const char* New)
1001 {
1002         //user_hash::iterator newnick;
1003         user_hash::iterator oldnick = ServerInstance->Users->clientlist->find(this->nick);
1004
1005         if (!irc::string(this->nick.c_str()).compare(New))
1006                 return oldnick->second;
1007
1008         if (oldnick == ServerInstance->Users->clientlist->end())
1009                 return NULL; /* doesnt exist */
1010
1011         User* olduser = oldnick->second;
1012         ServerInstance->Users->clientlist->erase(oldnick);
1013         (*(ServerInstance->Users->clientlist))[New] = olduser;
1014         return olduser;
1015 }
1016
1017 void User::InvalidateCache()
1018 {
1019         /* Invalidate cache */
1020         cached_fullhost.clear();
1021         cached_hostip.clear();
1022         cached_makehost.clear();
1023         cached_fullrealhost.clear();
1024 }
1025
1026 bool User::ForceNickChange(const char* newnick)
1027 {
1028         ModResult MOD_RESULT;
1029
1030         this->InvalidateCache();
1031
1032         NICKForced.set(this, 1);
1033         FIRST_MOD_RESULT(ServerInstance, OnUserPreNick, MOD_RESULT, (this, newnick));
1034         NICKForced.set(this, 0);
1035
1036         if (MOD_RESULT == MOD_RES_DENY)
1037         {
1038                 ServerInstance->stats->statsCollisions++;
1039                 return false;
1040         }
1041
1042         std::deque<classbase*> dummy;
1043         Command* nickhandler = ServerInstance->Parser->GetHandler("NICK");
1044         if (nickhandler) // wtfbbq, when would this not be here
1045         {
1046                 std::vector<std::string> parameters;
1047                 parameters.push_back(newnick);
1048                 NICKForced.set(this, 1);
1049                 bool result = (ServerInstance->Parser->CallHandler("NICK", parameters, this) == CMD_SUCCESS);
1050                 NICKForced.set(this, 0);
1051                 return result;
1052         }
1053
1054         // Unreachable, we hope
1055         return false;
1056 }
1057
1058 int User::GetServerPort()
1059 {
1060         switch (this->server_sa.sa.sa_family)
1061         {
1062                 case AF_INET6:
1063                         return htons(this->server_sa.in6.sin6_port);
1064                 case AF_INET:
1065                         return htons(this->server_sa.in4.sin_port);
1066         }
1067         return 0;
1068 }
1069
1070 const char* User::GetCIDRMask(int range)
1071 {
1072         static char buf[44];
1073
1074         if (range < 0)
1075                 throw "Negative range, sorry, no.";
1076
1077         /*
1078          * Original code written by Oliver Lupton (Om).
1079          * Integrated by me. Thanks. :) -- w00t
1080          */
1081         switch (this->client_sa.sa.sa_family)
1082         {
1083                 case AF_INET6:
1084                 {
1085                         /* unsigned char s6_addr[16]; */
1086                         struct in6_addr v6;
1087                         int i, bytestozero, extrabits;
1088                         char buffer[40];
1089
1090                         if(range > 128)
1091                                 throw "CIDR mask width greater than address width (IPv6, 128 bit)";
1092
1093                         /* To create the CIDR mask we want to set all the bits after 'range' bits of the address
1094                          * to zero. This means the last (128 - range) bits of the address must be set to zero.
1095                          * Hence this number divided by 8 is the number of whole bytes from the end of the address
1096                          * which must be set to zero.
1097                          */
1098                         bytestozero = (128 - range) / 8;
1099
1100                         /* Some of the least significant bits of the next most significant byte may also have to
1101                          * be zeroed. The number of bits is the remainder of the above division.
1102                          */
1103                         extrabits = (128 - range) % 8;
1104
1105                         /* Populate our working struct with the parts of the user's IP which are required in the
1106                          * final CIDR mask. Set all the subsequent bytes to zero.
1107                          * (16 - bytestozero) is the number of bytes which must be populated with actual IP data.
1108                          */
1109                         for(i = 0; i < (16 - bytestozero); i++)
1110                         {
1111                                 v6.s6_addr[i] = client_sa.in6.sin6_addr.s6_addr[i];
1112                         }
1113
1114                         /* And zero all the remaining bytes in the IP. */
1115                         for(; i < 16; i++)
1116                         {
1117                                 v6.s6_addr[i] = 0;
1118                         }
1119
1120                         /* And finally, zero the extra bits required. */
1121                         v6.s6_addr[15 - bytestozero] = (v6.s6_addr[15 - bytestozero] >> extrabits) << extrabits;
1122
1123                         snprintf(buf, 44, "%s/%d", inet_ntop(AF_INET6, &v6, buffer, 40), range);
1124                         return buf;
1125                 }
1126                 break;
1127                 case AF_INET:
1128                 {
1129                         struct in_addr v4;
1130                         char buffer[16];
1131
1132                         if (range > 32)
1133                                 throw "CIDR mask width greater than address width (IPv4, 32 bit)";
1134
1135                         /* Users already have a sockaddr* pointer (User::ip) which contains either a v4 or v6 structure */
1136                         v4.s_addr = client_sa.in4.sin_addr.s_addr;
1137
1138                         /* To create the CIDR mask we want to set all the bits after 'range' bits of the address
1139                          * to zero. This means the last (32 - range) bits of the address must be set to zero.
1140                          * This is done by shifting the value right and then back left by (32 - range) bits.
1141                          */
1142                         if(range > 0)
1143                         {
1144                                 v4.s_addr = ntohl(v4.s_addr);
1145                                 v4.s_addr = (v4.s_addr >> (32 - range)) << (32 - range);
1146                                 v4.s_addr = htonl(v4.s_addr);
1147                         }
1148                         else
1149                         {
1150                                 /* a range of zero would cause a 32 bit value to be shifted by 32 bits.
1151                                  * this has undefined behaviour, but for CIDR purposes the resulting mask
1152                                  * from a.b.c.d/0 is 0.0.0.0/0
1153                                  */
1154                                 v4.s_addr = 0;
1155                         }
1156
1157                         snprintf(buf, 44, "%s/%d", inet_ntop(AF_INET, &v4, buffer, 16), range);
1158                         return buf;
1159                 }
1160                 break;
1161         }
1162
1163         return ""; // unused, but oh well
1164 }
1165
1166 std::string User::GetServerIP()
1167 {
1168         int port;
1169         std::string ip;
1170         irc::sockets::satoap(&server_sa, ip, port);
1171         return ip;
1172 }
1173
1174 const char* User::GetIPString()
1175 {
1176         int port;
1177         if (cachedip.empty())
1178         {
1179                 irc::sockets::satoap(&client_sa, cachedip, port);
1180                 /* IP addresses starting with a : on irc are a Bad Thing (tm) */
1181                 if (cachedip.c_str()[0] == ':')
1182                         cachedip.insert(0,1,'0');
1183         }
1184
1185         return cachedip.c_str();
1186 }
1187
1188 bool User::SetClientIP(const char* sip)
1189 {
1190         this->cachedip = "";
1191         return irc::sockets::aptosa(sip, 0, &client_sa);
1192 }
1193
1194 void User::Write(const std::string& text)
1195 {
1196         if (!ServerInstance->SE->BoundsCheckFd(this))
1197                 return;
1198
1199         ServerInstance->Logs->Log("USEROUTPUT", DEBUG,"C[%d] O %s", this->GetFd(), text.c_str());
1200
1201         if (this->GetIOHook())
1202         {
1203                 /* XXX: The lack of buffering here is NOT a bug, modules implementing this interface have to
1204                  * implement their own buffering mechanisms
1205                  */
1206                 try
1207                 {
1208                         this->GetIOHook()->OnRawSocketWrite(this->fd, text.data(), text.length());
1209                         this->GetIOHook()->OnRawSocketWrite(this->fd, "\r\n", 2);
1210                 }
1211                 catch (CoreException& modexcept)
1212                 {
1213                         ServerInstance->Logs->Log("USEROUTPUT", DEBUG, "%s threw an exception: %s", modexcept.GetSource(), modexcept.GetReason());
1214                 }
1215         }
1216         else
1217         {
1218                 this->AddWriteBuf(text);
1219                 this->AddWriteBuf("\r\n");
1220         }
1221         ServerInstance->stats->statsSent += text.length() + 2;
1222         this->ServerInstance->SE->WantWrite(this);
1223 }
1224
1225 /** Write()
1226  */
1227 void User::Write(const char *text, ...)
1228 {
1229         va_list argsPtr;
1230         char textbuffer[MAXBUF];
1231
1232         va_start(argsPtr, text);
1233         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1234         va_end(argsPtr);
1235
1236         this->Write(std::string(textbuffer));
1237 }
1238
1239 void User::WriteServ(const std::string& text)
1240 {
1241         this->Write(":%s %s",ServerInstance->Config->ServerName,text.c_str());
1242 }
1243
1244 /** WriteServ()
1245  *  Same as Write(), except `text' is prefixed with `:server.name '.
1246  */
1247 void User::WriteServ(const char* text, ...)
1248 {
1249         va_list argsPtr;
1250         char textbuffer[MAXBUF];
1251
1252         va_start(argsPtr, text);
1253         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1254         va_end(argsPtr);
1255
1256         this->WriteServ(std::string(textbuffer));
1257 }
1258
1259
1260 void User::WriteNumeric(unsigned int numeric, const char* text, ...)
1261 {
1262         va_list argsPtr;
1263         char textbuffer[MAXBUF];
1264
1265         va_start(argsPtr, text);
1266         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1267         va_end(argsPtr);
1268
1269         this->WriteNumeric(numeric, std::string(textbuffer));
1270 }
1271
1272 void User::WriteNumeric(unsigned int numeric, const std::string &text)
1273 {
1274         char textbuffer[MAXBUF];
1275         ModResult MOD_RESULT;
1276
1277         FIRST_MOD_RESULT(ServerInstance, OnNumeric, MOD_RESULT, (this, numeric, text));
1278
1279         if (MOD_RESULT == MOD_RES_DENY)
1280                 return;
1281
1282         snprintf(textbuffer,MAXBUF,":%s %03u %s",ServerInstance->Config->ServerName, numeric, text.c_str());
1283         this->Write(std::string(textbuffer));
1284 }
1285
1286 void User::WriteFrom(User *user, const std::string &text)
1287 {
1288         char tb[MAXBUF];
1289
1290         snprintf(tb,MAXBUF,":%s %s",user->GetFullHost().c_str(),text.c_str());
1291
1292         this->Write(std::string(tb));
1293 }
1294
1295
1296 /* write text from an originating user to originating user */
1297
1298 void User::WriteFrom(User *user, const char* text, ...)
1299 {
1300         va_list argsPtr;
1301         char textbuffer[MAXBUF];
1302
1303         va_start(argsPtr, text);
1304         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1305         va_end(argsPtr);
1306
1307         this->WriteFrom(user, std::string(textbuffer));
1308 }
1309
1310
1311 /* write text to an destination user from a source user (e.g. user privmsg) */
1312
1313 void User::WriteTo(User *dest, const char *data, ...)
1314 {
1315         char textbuffer[MAXBUF];
1316         va_list argsPtr;
1317
1318         va_start(argsPtr, data);
1319         vsnprintf(textbuffer, MAXBUF, data, argsPtr);
1320         va_end(argsPtr);
1321
1322         this->WriteTo(dest, std::string(textbuffer));
1323 }
1324
1325 void User::WriteTo(User *dest, const std::string &data)
1326 {
1327         dest->WriteFrom(this, data);
1328 }
1329
1330
1331 void User::WriteCommon(const char* text, ...)
1332 {
1333         char textbuffer[MAXBUF];
1334         va_list argsPtr;
1335
1336         if (this->registered != REG_ALL)
1337                 return;
1338
1339         va_start(argsPtr, text);
1340         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1341         va_end(argsPtr);
1342
1343         this->WriteCommon(std::string(textbuffer));
1344 }
1345
1346 void User::WriteCommon(const std::string &text)
1347 {
1348         bool sent_to_at_least_one = false;
1349         char tb[MAXBUF];
1350
1351         if (this->registered != REG_ALL)
1352                 return;
1353
1354         uniq_id++;
1355
1356         if (!already_sent)
1357                 InitializeAlreadySent(ServerInstance->SE);
1358
1359         /* We dont want to be doing this n times, just once */
1360         snprintf(tb,MAXBUF,":%s %s",this->GetFullHost().c_str(),text.c_str());
1361         std::string out = tb;
1362
1363         for (UCListIter v = this->chans.begin(); v != this->chans.end(); v++)
1364         {
1365                 const UserMembList* ulist = (*v)->GetUsers();
1366                 for (UserMembList::const_iterator i = ulist->begin(); i != ulist->end(); i++)
1367                 {
1368                         if ((IS_LOCAL(i->first)) && (already_sent[i->first->fd] != uniq_id))
1369                         {
1370                                 already_sent[i->first->fd] = uniq_id;
1371                                 i->first->Write(out);
1372                                 sent_to_at_least_one = true;
1373                         }
1374                 }
1375         }
1376
1377         /*
1378          * if the user was not in any channels, no users will receive the text. Make sure the user
1379          * receives their OWN message for WriteCommon
1380          */
1381         if (!sent_to_at_least_one)
1382         {
1383                 this->Write(std::string(tb));
1384         }
1385 }
1386
1387
1388 /* write a formatted string to all users who share at least one common
1389  * channel, NOT including the source user e.g. for use in QUIT
1390  */
1391
1392 void User::WriteCommonExcept(const char* text, ...)
1393 {
1394         char textbuffer[MAXBUF];
1395         va_list argsPtr;
1396
1397         va_start(argsPtr, text);
1398         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1399         va_end(argsPtr);
1400
1401         this->WriteCommonExcept(std::string(textbuffer));
1402 }
1403
1404 void User::WriteCommonQuit(const std::string &normal_text, const std::string &oper_text)
1405 {
1406         char tb1[MAXBUF];
1407         char tb2[MAXBUF];
1408
1409         if (this->registered != REG_ALL)
1410                 return;
1411
1412         uniq_id++;
1413
1414         if (!already_sent)
1415                 InitializeAlreadySent(ServerInstance->SE);
1416
1417         snprintf(tb1,MAXBUF,":%s QUIT :%s",this->GetFullHost().c_str(),normal_text.c_str());
1418         snprintf(tb2,MAXBUF,":%s QUIT :%s",this->GetFullHost().c_str(),oper_text.c_str());
1419         std::string out1 = tb1;
1420         std::string out2 = tb2;
1421
1422         for (UCListIter v = this->chans.begin(); v != this->chans.end(); v++)
1423         {
1424                 const UserMembList* ulist = (*v)->GetUsers();
1425                 for (UserMembList::const_iterator i = ulist->begin(); i != ulist->end(); i++)
1426                 {
1427                         if (this != i->first)
1428                         {
1429                                 if ((IS_LOCAL(i->first)) && (already_sent[i->first->fd] != uniq_id))
1430                                 {
1431                                         already_sent[i->first->fd] = uniq_id;
1432                                         i->first->Write(IS_OPER(i->first) ? out2 : out1);
1433                                 }
1434                         }
1435                 }
1436         }
1437 }
1438
1439 void User::WriteCommonExcept(const std::string &text)
1440 {
1441         char tb1[MAXBUF];
1442         std::string out1;
1443
1444         if (this->registered != REG_ALL)
1445                 return;
1446
1447         uniq_id++;
1448
1449         if (!already_sent)
1450                 InitializeAlreadySent(ServerInstance->SE);
1451
1452         snprintf(tb1,MAXBUF,":%s %s",this->GetFullHost().c_str(),text.c_str());
1453         out1 = tb1;
1454
1455         for (UCListIter v = this->chans.begin(); v != this->chans.end(); v++)
1456         {
1457                 const UserMembList* ulist = (*v)->GetUsers();
1458                 for (UserMembList::const_iterator i = ulist->begin(); i != ulist->end(); i++)
1459                 {
1460                         if (this != i->first)
1461                         {
1462                                 if ((IS_LOCAL(i->first)) && (already_sent[i->first->fd] != uniq_id))
1463                                 {
1464                                         already_sent[i->first->fd] = uniq_id;
1465                                         i->first->Write(out1);
1466                                 }
1467                         }
1468                 }
1469         }
1470
1471 }
1472
1473 void User::WriteWallOps(const std::string &text)
1474 {
1475         std::string wallop("WALLOPS :");
1476         wallop.append(text);
1477
1478         for (std::vector<User*>::const_iterator i = ServerInstance->Users->local_users.begin(); i != ServerInstance->Users->local_users.end(); i++)
1479         {
1480                 User* t = *i;
1481                 if (t->IsModeSet('w'))
1482                         this->WriteTo(t,wallop);
1483         }
1484 }
1485
1486 void User::WriteWallOps(const char* text, ...)
1487 {
1488         if (!IS_LOCAL(this))
1489                 return;
1490
1491         char textbuffer[MAXBUF];
1492         va_list argsPtr;
1493
1494         va_start(argsPtr, text);
1495         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1496         va_end(argsPtr);
1497
1498         this->WriteWallOps(std::string(textbuffer));
1499 }
1500
1501 /* return 0 or 1 depending if users u and u2 share one or more common channels
1502  * (used by QUIT, NICK etc which arent channel specific notices)
1503  *
1504  * The old algorithm in 1.0 for this was relatively inefficient, iterating over
1505  * the first users channels then the second users channels within the outer loop,
1506  * therefore it was a maximum of x*y iterations (upon returning 0 and checking
1507  * all possible iterations). However this new function instead checks against the
1508  * channel's userlist in the inner loop which is a std::map<User*,User*>
1509  * and saves us time as we already know what pointer value we are after.
1510  * Don't quote me on the maths as i am not a mathematician or computer scientist,
1511  * but i believe this algorithm is now x+(log y) maximum iterations instead.
1512  */
1513 bool User::SharesChannelWith(User *other)
1514 {
1515         if ((!other) || (this->registered != REG_ALL) || (other->registered != REG_ALL))
1516                 return false;
1517
1518         /* Outer loop */
1519         for (UCListIter i = this->chans.begin(); i != this->chans.end(); i++)
1520         {
1521                 /* Eliminate the inner loop (which used to be ~equal in size to the outer loop)
1522                  * by replacing it with a map::find which *should* be more efficient
1523                  */
1524                 if ((*i)->HasUser(other))
1525                         return true;
1526         }
1527         return false;
1528 }
1529
1530 bool User::ChangeName(const char* gecos)
1531 {
1532         if (!this->fullname.compare(gecos))
1533                 return true;
1534
1535         if (IS_LOCAL(this))
1536         {
1537                 ModResult MOD_RESULT;
1538                 FIRST_MOD_RESULT(ServerInstance, OnChangeLocalUserGECOS, MOD_RESULT, (this,gecos));
1539                 if (MOD_RESULT == MOD_RES_DENY)
1540                         return false;
1541                 FOREACH_MOD(I_OnChangeName,OnChangeName(this,gecos));
1542         }
1543         this->fullname.assign(gecos, 0, ServerInstance->Config->Limits.MaxGecos);
1544
1545         return true;
1546 }
1547
1548 void User::DoHostCycle(const std::string &quitline)
1549 {
1550         char buffer[MAXBUF];
1551
1552         ModResult result = MOD_RES_PASSTHRU;
1553         FIRST_MOD_RESULT(ServerInstance, OnHostCycle, result, (this));
1554
1555         if (result == MOD_RES_DENY)
1556                 return;
1557         if (result == MOD_RES_PASSTHRU && !ServerInstance->Config->CycleHosts)
1558                 return;
1559
1560         uniq_id++;
1561
1562         if (!already_sent)
1563                 InitializeAlreadySent(ServerInstance->SE);
1564
1565         for (UCListIter v = this->chans.begin(); v != this->chans.end(); v++)
1566         {
1567                 Channel* c = *v;
1568                 snprintf(buffer, MAXBUF, ":%s JOIN %s", GetFullHost().c_str(), c->name.c_str());
1569                 std::string joinline(buffer);
1570                 std::string modeline = this->ServerInstance->Modes->ModeString(this, c);
1571                 if (modeline.length() > 0)
1572                 {
1573                         snprintf(buffer, MAXBUF, ":%s MODE %s +%s", GetFullHost().c_str(), c->name.c_str(), modeline.c_str());
1574                         modeline = buffer;
1575                 }
1576
1577                 const UserMembList *ulist = c->GetUsers();
1578                 for (UserMembList::const_iterator i = ulist->begin(); i != ulist->end(); i++)
1579                 {
1580                         User* u = i->first;
1581                         if (u == this || !IS_LOCAL(u))
1582                                 continue;
1583
1584                         if (already_sent[i->first->fd] != uniq_id)
1585                         {
1586                                 u->Write(quitline);
1587                                 already_sent[i->first->fd] = uniq_id;
1588                         }
1589                         u->Write(joinline);
1590                         if (modeline.length() > 0)
1591                                 u->Write(modeline);
1592                 }
1593         }
1594 }
1595
1596 bool User::ChangeDisplayedHost(const char* shost)
1597 {
1598         if (dhost == shost)
1599                 return true;
1600
1601         if (IS_LOCAL(this))
1602         {
1603                 ModResult MOD_RESULT;
1604                 FIRST_MOD_RESULT(ServerInstance, OnChangeLocalUserHost, MOD_RESULT, (this,shost));
1605                 if (MOD_RESULT == MOD_RES_DENY)
1606                         return false;
1607         }
1608
1609         FOREACH_MOD(I_OnChangeHost, OnChangeHost(this,shost));
1610
1611         std::string quitstr = ":" + GetFullHost() + " QUIT :Changing host";
1612
1613         /* Fix by Om: User::dhost is 65 long, this was truncating some long hosts */
1614         this->dhost.assign(shost, 0, 64);
1615
1616         this->InvalidateCache();
1617
1618         this->DoHostCycle(quitstr);
1619
1620         if (IS_LOCAL(this))
1621                 this->WriteNumeric(RPL_YOURDISPLAYEDHOST, "%s %s :is now your displayed host",this->nick.c_str(),this->dhost.c_str());
1622
1623         return true;
1624 }
1625
1626 bool User::ChangeIdent(const char* newident)
1627 {
1628         if (this->ident == newident)
1629                 return true;
1630
1631         FOREACH_MOD(I_OnChangeIdent, OnChangeIdent(this,newident));
1632
1633         std::string quitstr = ":" + GetFullHost() + " QUIT :Changing ident";
1634
1635         this->ident.assign(newident, 0, ServerInstance->Config->Limits.IdentMax + 1);
1636
1637         this->InvalidateCache();
1638
1639         this->DoHostCycle(quitstr);
1640
1641         return true;
1642 }
1643
1644 void User::SendAll(const char* command, const char* text, ...)
1645 {
1646         char textbuffer[MAXBUF];
1647         char formatbuffer[MAXBUF];
1648         va_list argsPtr;
1649
1650         va_start(argsPtr, text);
1651         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1652         va_end(argsPtr);
1653
1654         snprintf(formatbuffer,MAXBUF,":%s %s $* :%s", this->GetFullHost().c_str(), command, textbuffer);
1655         std::string fmt = formatbuffer;
1656
1657         for (std::vector<User*>::const_iterator i = ServerInstance->Users->local_users.begin(); i != ServerInstance->Users->local_users.end(); i++)
1658         {
1659                 (*i)->Write(fmt);
1660         }
1661 }
1662
1663
1664 std::string User::ChannelList(User* source)
1665 {
1666         std::string list;
1667
1668         for (UCListIter i = this->chans.begin(); i != this->chans.end(); i++)
1669         {
1670                 Channel* c = *i;
1671                 /* If the target is the same as the sender, let them see all their channels.
1672                  * If the channel is NOT private/secret OR the user shares a common channel
1673                  * If the user is an oper, and the <options:operspywhois> option is set.
1674                  */
1675                 if ((source == this) || (IS_OPER(source) && ServerInstance->Config->OperSpyWhois) || (((!c->IsModeSet('p')) && (!c->IsModeSet('s'))) || (c->HasUser(source))))
1676                 {
1677                         list.append(c->GetPrefixChar(this)).append(c->name).append(" ");
1678                 }
1679         }
1680
1681         return list;
1682 }
1683
1684 void User::SplitChanList(User* dest, const std::string &cl)
1685 {
1686         std::string line;
1687         std::ostringstream prefix;
1688         std::string::size_type start, pos, length;
1689
1690         prefix << this->nick << " " << dest->nick << " :";
1691         line = prefix.str();
1692         int namelen = strlen(ServerInstance->Config->ServerName) + 6;
1693
1694         for (start = 0; (pos = cl.find(' ', start)) != std::string::npos; start = pos+1)
1695         {
1696                 length = (pos == std::string::npos) ? cl.length() : pos;
1697
1698                 if (line.length() + namelen + length - start > 510)
1699                 {
1700                         ServerInstance->SendWhoisLine(this, dest, 319, "%s", line.c_str());
1701                         line = prefix.str();
1702                 }
1703
1704                 if(pos == std::string::npos)
1705                 {
1706                         line.append(cl.substr(start, length - start));
1707                         break;
1708                 }
1709                 else
1710                 {
1711                         line.append(cl.substr(start, length - start + 1));
1712                 }
1713         }
1714
1715         if (line.length())
1716         {
1717                 ServerInstance->SendWhoisLine(this, dest, 319, "%s", line.c_str());
1718         }
1719 }
1720
1721 /*
1722  * Sets a user's connection class.
1723  * If the class name is provided, it will be used. Otherwise, the class will be guessed using host/ip/ident/etc.
1724  * NOTE: If the <ALLOW> or <DENY> tag specifies an ip, and this user resolves,
1725  * then their ip will be taken as 'priority' anyway, so for example,
1726  * <connect allow="127.0.0.1"> will match joe!bloggs@localhost
1727  */
1728 ConnectClass* User::SetClass(const std::string &explicit_name)
1729 {
1730         ConnectClass *found = NULL;
1731
1732         if (!IS_LOCAL(this))
1733                 return NULL;
1734
1735         ServerInstance->Logs->Log("CONNECTCLASS", DEBUG, "Setting connect class for UID %s", this->uuid.c_str());
1736
1737         if (!explicit_name.empty())
1738         {
1739                 for (ClassVector::iterator i = ServerInstance->Config->Classes.begin(); i != ServerInstance->Config->Classes.end(); i++)
1740                 {
1741                         ConnectClass* c = *i;
1742
1743                         if (explicit_name == c->name)
1744                         {
1745                                 ServerInstance->Logs->Log("CONNECTCLASS", DEBUG, "Explicitly set to %s", explicit_name.c_str());
1746                                 found = c;
1747                         }
1748                 }
1749         }
1750         else
1751         {
1752                 for (ClassVector::iterator i = ServerInstance->Config->Classes.begin(); i != ServerInstance->Config->Classes.end(); i++)
1753                 {
1754                         ConnectClass* c = *i;
1755
1756                         if (c->type == CC_ALLOW)
1757                         {
1758                                 ServerInstance->Logs->Log("CONNECTCLASS", DEBUG, "ALLOW %s %d %s", c->host.c_str(), c->GetPort(), c->GetName().c_str());
1759                         }
1760                         else
1761                         {
1762                                 ServerInstance->Logs->Log("CONNECTCLASS", DEBUG, "DENY %s %d %s", c->GetHost().c_str(), c->GetPort(), c->GetName().c_str());
1763                         }
1764
1765                         /* check if host matches.. */
1766                         if (c->GetHost().length() && !InspIRCd::MatchCIDR(this->GetIPString(), c->GetHost(), NULL) &&
1767                             !InspIRCd::MatchCIDR(this->host, c->GetHost(), NULL))
1768                         {
1769                                 ServerInstance->Logs->Log("CONNECTCLASS", DEBUG, "No host match (for %s)", c->GetHost().c_str());
1770                                 continue;
1771                         }
1772
1773                         /*
1774                          * deny change if change will take class over the limit check it HERE, not after we found a matching class,
1775                          * because we should attempt to find another class if this one doesn't match us. -- w00t
1776                          */
1777                         if (c->limit && (c->RefCount >= c->limit))
1778                         {
1779                                 ServerInstance->Logs->Log("CONNECTCLASS", DEBUG, "OOPS: Connect class limit (%lu) hit, denying", c->limit);
1780                                 continue;
1781                         }
1782
1783                         /* if it requires a port ... */
1784                         if (c->GetPort())
1785                         {
1786                                 ServerInstance->Logs->Log("CONNECTCLASS", DEBUG, "Requires port (%d)", c->GetPort());
1787
1788                                 /* and our port doesn't match, fail. */
1789                                 if (this->GetServerPort() != c->GetPort())
1790                                 {
1791                                         ServerInstance->Logs->Log("CONNECTCLASS", DEBUG, "Port match failed (%d)", this->GetServerPort());
1792                                         continue;
1793                                 }
1794                         }
1795
1796                         /* we stop at the first class that meets ALL critera. */
1797                         found = c;
1798                         break;
1799                 }
1800         }
1801
1802         /*
1803          * Okay, assuming we found a class that matches.. switch us into that class, keeping refcounts up to date.
1804          */
1805         if (found)
1806         {
1807                 /* only fiddle with refcounts if they are already in a class .. */
1808                 if (this->MyClass)
1809                 {
1810                         if (found == this->MyClass) // no point changing this shit :P
1811                                 return this->MyClass;
1812                         this->MyClass->RefCount--;
1813                         ServerInstance->Logs->Log("USERS", DEBUG, "Untying user from connect class -- refcount: %lu", this->MyClass->RefCount);
1814                         if (MyClass->RefCount == 0)
1815                                 delete MyClass;
1816                 }
1817
1818                 this->MyClass = found;
1819                 this->MyClass->RefCount++;
1820                 ServerInstance->Logs->Log("USERS", DEBUG, "User tied to new class -- connect refcount now: %lu", this->MyClass->RefCount);
1821         }
1822
1823         return this->MyClass;
1824 }
1825
1826 /* looks up a users password for their connection class (<ALLOW>/<DENY> tags)
1827  * NOTE: If the <ALLOW> or <DENY> tag specifies an ip, and this user resolves,
1828  * then their ip will be taken as 'priority' anyway, so for example,
1829  * <connect allow="127.0.0.1"> will match joe!bloggs@localhost
1830  */
1831 ConnectClass* User::GetClass()
1832 {
1833         return this->MyClass;
1834 }
1835
1836 void User::PurgeEmptyChannels()
1837 {
1838         std::vector<Channel*> to_delete;
1839
1840         // firstly decrement the count on each channel
1841         for (UCListIter f = this->chans.begin(); f != this->chans.end(); f++)
1842         {
1843                 Channel* c = *f;
1844                 c->RemoveAllPrefixes(this);
1845                 if (c->DelUser(this) == 0)
1846                 {
1847                         /* No users left in here, mark it for deletion */
1848                         try
1849                         {
1850                                 to_delete.push_back(c);
1851                         }
1852                         catch (...)
1853                         {
1854                                 ServerInstance->Logs->Log("USERS", DEBUG,"Exception in User::PurgeEmptyChannels to_delete.push_back()");
1855                         }
1856                 }
1857         }
1858
1859         for (std::vector<Channel*>::iterator n = to_delete.begin(); n != to_delete.end(); n++)
1860         {
1861                 Channel* thischan = *n;
1862                 chan_hash::iterator i2 = ServerInstance->chanlist->find(thischan->name);
1863                 if (i2 != ServerInstance->chanlist->end())
1864                 {
1865                         ModResult MOD_RESULT;
1866                         FIRST_MOD_RESULT(ServerInstance, OnChannelPreDelete, MOD_RESULT, (i2->second));
1867                         if (MOD_RESULT == MOD_RES_DENY)
1868                                 continue; // delete halted by module
1869                         FOREACH_MOD(I_OnChannelDelete,OnChannelDelete(i2->second));
1870                         delete i2->second;
1871                         ServerInstance->chanlist->erase(i2);
1872                         this->chans.erase(*n);
1873                 }
1874         }
1875
1876         this->UnOper();
1877 }
1878
1879 void User::ShowMOTD()
1880 {
1881         if (!ServerInstance->Config->MOTD.size())
1882         {
1883                 this->WriteNumeric(ERR_NOMOTD, "%s :Message of the day file is missing.",this->nick.c_str());
1884                 return;
1885         }
1886         this->WriteNumeric(RPL_MOTDSTART, "%s :%s message of the day", this->nick.c_str(), ServerInstance->Config->ServerName);
1887
1888         for (file_cache::iterator i = ServerInstance->Config->MOTD.begin(); i != ServerInstance->Config->MOTD.end(); i++)
1889                 this->WriteNumeric(RPL_MOTD, "%s :- %s",this->nick.c_str(),i->c_str());
1890
1891         this->WriteNumeric(RPL_ENDOFMOTD, "%s :End of message of the day.", this->nick.c_str());
1892 }
1893
1894 void User::ShowRULES()
1895 {
1896         if (!ServerInstance->Config->RULES.size())
1897         {
1898                 this->WriteNumeric(ERR_NORULES, "%s :RULES File is missing",this->nick.c_str());
1899                 return;
1900         }
1901
1902         this->WriteNumeric(RPL_RULESTART, "%s :- %s Server Rules -",this->nick.c_str(),ServerInstance->Config->ServerName);
1903
1904         for (file_cache::iterator i = ServerInstance->Config->RULES.begin(); i != ServerInstance->Config->RULES.end(); i++)
1905                 this->WriteNumeric(RPL_RULES, "%s :- %s",this->nick.c_str(),i->c_str());
1906
1907         this->WriteNumeric(RPL_RULESEND, "%s :End of RULES command.",this->nick.c_str());
1908 }
1909
1910 void User::HandleEvent(EventType et, int errornum)
1911 {
1912         if (this->quitting) // drop everything, user is due to be quit
1913                 return;
1914
1915         switch (et)
1916         {
1917                 case EVENT_READ:
1918                         ServerInstance->ProcessUser(this);
1919                 break;
1920                 case EVENT_WRITE:
1921                         this->FlushWriteBuf();
1922                 break;
1923                 case EVENT_ERROR:
1924                         ServerInstance->Users->QuitUser(this, errornum ? strerror(errornum) : "Client closed the connection");
1925                 break;
1926         }
1927 }
1928
1929 void User::IncreasePenalty(int increase)
1930 {
1931         this->Penalty += increase;
1932 }
1933
1934 void User::DecreasePenalty(int decrease)
1935 {
1936         this->Penalty -= decrease;
1937 }
1938
1939 void FakeUser::SetFakeServer(std::string name)
1940 {
1941         this->nick = name;
1942         this->server = nick.c_str();
1943 }
1944
1945 const std::string FakeUser::GetFullHost()
1946 {
1947         if (*ServerInstance->Config->HideWhoisServer)
1948                 return ServerInstance->Config->HideWhoisServer;
1949         return nick;
1950 }
1951
1952 const std::string FakeUser::GetFullRealHost()
1953 {
1954         if (*ServerInstance->Config->HideWhoisServer)
1955                 return ServerInstance->Config->HideWhoisServer;
1956         return nick;
1957 }
1958
1959 ConnectClass::ConnectClass(char t, const std::string& mask)
1960         : type(t), name("unnamed"), registration_timeout(0), host(mask), pingtime(0), pass(""), hash(""), sendqmax(0), recvqmax(0), maxlocal(0), maxglobal(0), maxchans(0), port(0), limit(0), RefCount(1)
1961 {
1962 }
1963
1964 ConnectClass::ConnectClass(char t, const std::string& mask, const ConnectClass& parent)
1965         : type(t), name("unnamed"), registration_timeout(parent.registration_timeout), host(mask), pingtime(parent.pingtime), pass(parent.pass), hash(parent.hash), sendqmax(parent.sendqmax), recvqmax(parent.recvqmax), maxlocal(parent.maxlocal), maxglobal(parent.maxglobal), maxchans(parent.maxchans), port(parent.port), limit(parent.limit), RefCount(1)
1966 {
1967 }
1968
1969 void ConnectClass::Update(const ConnectClass* src)
1970 {
1971         name = src->name;
1972         registration_timeout = src->registration_timeout;
1973         host = src->host;
1974         pingtime = src->pingtime;
1975         pass = src->pass;
1976         hash = src->hash;
1977         sendqmax = src->sendqmax;
1978         recvqmax = src->recvqmax;
1979         maxlocal = src->maxlocal;
1980         maxglobal = src->maxglobal;
1981         limit = src->limit;
1982 }