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