1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd: (C) 2002-2008 InspIRCd Development Team
6 * See: http://www.inspircd.org/wiki/index.php/Credits
8 * This program is free but copyrighted software; see
9 * the file COPYING for details.
11 * ---------------------------------------------------
14 /* $Core: libIRCDusers */
18 #include "socketengine.h"
22 #include "commands/cmd_whowas.h"
24 static unsigned long* already_sent = NULL;
27 void InitializeAlreadySent(SocketEngine* SE)
29 already_sent = new unsigned long[SE->GetMaxFds()];
30 memset(already_sent, 0, sizeof(already_sent));
33 /* XXX: Used for speeding up WriteCommon operations */
34 unsigned long uniq_id = 1;
36 std::string User::ProcessNoticeMasks(const char *sm)
38 bool adding = true, oldadding = false;
53 for (unsigned char d = 'A'; d <= 'z'; d++)
55 if (ServerInstance->SNO->IsEnabled(d))
57 if ((!IsNoticeMaskSet(d) && adding) || (IsNoticeMaskSet(d) && !adding))
59 if ((oldadding != adding) || (!output.length()))
60 output += (adding ? '+' : '-');
62 this->SetNoticeMask(d, adding);
71 if ((*c >= 'A') && (*c <= 'z') && (ServerInstance->SNO->IsEnabled(*c)))
73 if ((!IsNoticeMaskSet(*c) && adding) || (IsNoticeMaskSet(*c) && !adding))
75 if ((oldadding != adding) || (!output.length()))
76 output += (adding ? '+' : '-');
78 this->SetNoticeMask(*c, adding);
84 this->WriteNumeric(501, "%s %c :is unknown snomask char to me", this->nick, *c);
96 void User::StartDNSLookup()
101 const char* sip = this->GetIPString();
103 /* Special case for 4in6 (Have i mentioned i HATE 4in6?) */
104 if (!strncmp(sip, "0::ffff:", 8))
105 res_reverse = new UserResolver(this->ServerInstance, this, sip + 8, DNS_QUERY_PTR4, cached);
107 res_reverse = new UserResolver(this->ServerInstance, this, sip, this->GetProtocolFamily() == AF_INET ? DNS_QUERY_PTR4 : DNS_QUERY_PTR6, cached);
109 this->ServerInstance->AddResolver(res_reverse, cached);
111 catch (CoreException& e)
113 ServerInstance->Logs->Log("USERS", DEBUG,"Error in resolver: %s",e.GetReason());
117 bool User::IsNoticeMaskSet(unsigned char sm)
119 return (snomasks[sm-65]);
122 void User::SetNoticeMask(unsigned char sm, bool value)
124 snomasks[sm-65] = value;
127 const char* User::FormatNoticeMasks()
129 static char data[MAXBUF];
132 for (int n = 0; n < 64; n++)
135 data[offset++] = n+65;
144 bool User::IsModeSet(unsigned char m)
146 return (modes[m-65]);
149 void User::SetMode(unsigned char m, bool value)
154 const char* User::FormatModes()
156 static char data[MAXBUF];
158 for (int n = 0; n < 64; n++)
161 data[offset++] = n+65;
167 void User::DecrementModes()
169 ServerInstance->Logs->Log("USERS", DEBUG, "DecrementModes()");
170 for (unsigned char n = 'A'; n <= 'z'; n++)
174 ServerInstance->Logs->Log("USERS", DEBUG,"DecrementModes() found mode %c", n);
175 ModeHandler* mh = ServerInstance->Modes->FindMode(n, MODETYPE_USER);
178 ServerInstance->Logs->Log("USERS", DEBUG,"Found handler %c and call ChangeCount", n);
185 User::User(InspIRCd* Instance, const std::string &uid) : ServerInstance(Instance)
187 *password = *nick = *ident = *host = *dhost = *fullname = *awaymsg = *oper = *uuid = 0;
188 server = (char*)Instance->FindServerNamePtr(Instance->Config->ServerName);
189 reset_due = ServerInstance->Time();
190 age = ServerInstance->Time();
192 lines_in = lastping = signon = idle_lastmsg = nping = registered = 0;
193 ChannelCount = timeout = bytes_in = bytes_out = cmds_in = cmds_out = 0;
194 quietquit = OverPenalty = ExemptFromPenalty = quitting = exempt = haspassed = dns_done = false;
199 res_forward = res_reverse = NULL;
204 AllowedUserModes = NULL;
205 AllowedChanModes = NULL;
206 AllowedOperCommands = NULL;
209 memset(modes,0,sizeof(modes));
210 memset(snomasks,0,sizeof(snomasks));
211 /* Invalidate cache */
212 cached_fullhost = cached_hostip = cached_makehost = cached_fullrealhost = NULL;
215 strlcpy(uuid, Instance->GetUID().c_str(), UUID_LENGTH);
217 strlcpy(uuid, uid.c_str(), UUID_LENGTH);
219 ServerInstance->Logs->Log("USERS", DEBUG,"New UUID for user: %s (%s)", uuid, uid.empty() ? "allocated new" : "used remote");
221 user_hash::iterator finduuid = Instance->Users->uuidlist->find(uuid);
222 if (finduuid == Instance->Users->uuidlist->end())
223 (*Instance->Users->uuidlist)[uuid] = this;
225 throw CoreException("Duplicate UUID "+std::string(uuid)+" in User constructor");
230 /* NULL for remote users :) */
233 this->MyClass->RefCount--;
234 ServerInstance->Logs->Log("USERS", DEBUG, "User destructor -- connect refcount now: %lu", this->MyClass->RefCount);
236 if (this->AllowedOperCommands)
238 delete AllowedOperCommands;
239 AllowedOperCommands = NULL;
242 if (this->AllowedUserModes)
244 delete[] AllowedUserModes;
245 AllowedUserModes = NULL;
248 if (this->AllowedChanModes)
250 delete[] AllowedChanModes;
251 AllowedChanModes = NULL;
254 this->InvalidateCache();
255 this->DecrementModes();
259 ServerInstance->Users->RemoveCloneCounts(this);
261 if (this->GetProtocolFamily() == AF_INET)
263 delete (sockaddr_in*)ip;
265 #ifdef SUPPORT_IP6LINKS
268 delete (sockaddr_in6*)ip;
273 ServerInstance->Users->uuidlist->erase(uuid);
276 char* User::MakeHost()
278 if (this->cached_makehost)
279 return this->cached_makehost;
282 /* This is much faster than snprintf */
284 for(char* n = ident; *n; n++)
287 for(char* n = host; *n; n++)
291 this->cached_makehost = strdup(nhost);
293 return this->cached_makehost;
296 char* User::MakeHostIP()
298 if (this->cached_hostip)
299 return this->cached_hostip;
302 /* This is much faster than snprintf */
304 for(char* n = ident; *n; n++)
307 for(const char* n = this->GetIPString(); *n; n++)
311 this->cached_hostip = strdup(ihost);
313 return this->cached_hostip;
316 void User::CloseSocket()
320 ServerInstance->SE->Shutdown(this, 2);
321 ServerInstance->SE->Close(this);
325 char* User::GetFullHost()
327 if (this->cached_fullhost)
328 return this->cached_fullhost;
332 for(char* n = nick; *n; n++)
335 for(char* n = ident; *n; n++)
338 for(char* n = dhost; *n; n++)
342 this->cached_fullhost = strdup(result);
344 return this->cached_fullhost;
347 char* User::MakeWildHost()
349 static char nresult[MAXBUF];
351 *t++ = '*'; *t++ = '!';
352 *t++ = '*'; *t++ = '@';
353 for(char* n = dhost; *n; n++)
359 int User::ReadData(void* buffer, size_t size)
364 return read(this->fd, buffer, size);
366 return recv(this->fd, (char*)buffer, size, 0);
374 char* User::GetFullRealHost()
376 if (this->cached_fullrealhost)
377 return this->cached_fullrealhost;
379 char fresult[MAXBUF];
381 for(char* n = nick; *n; n++)
384 for(char* n = ident; *n; n++)
387 for(char* n = host; *n; n++)
391 this->cached_fullrealhost = strdup(fresult);
393 return this->cached_fullrealhost;
396 bool User::IsInvited(const irc::string &channel)
398 time_t now = time(NULL);
399 InvitedList::iterator safei;
400 for (InvitedList::iterator i = invites.begin(); i != invites.end(); ++i)
402 if (channel == i->first)
404 if (i->second != 0 && now > i->second)
406 /* Expired invite, remove it. */
409 invites.erase(safei);
418 InvitedList* User::GetInviteList()
420 time_t now = time(NULL);
421 /* Weed out expired invites here. */
422 InvitedList::iterator safei;
423 for (InvitedList::iterator i = invites.begin(); i != invites.end(); ++i)
425 if (i->second != 0 && now > i->second)
427 /* Expired invite, remove it. */
430 invites.erase(safei);
436 void User::InviteTo(const irc::string &channel, time_t invtimeout)
438 time_t now = time(NULL);
439 if (invtimeout != 0 && now > invtimeout) return; /* Don't add invites that are expired from the get-go. */
440 for (InvitedList::iterator i = invites.begin(); i != invites.end(); ++i)
442 if (channel == i->first)
444 if (i->second != 0 && invtimeout > i->second)
446 i->second = invtimeout;
450 invites.push_back(std::make_pair(channel, invtimeout));
453 void User::RemoveInvite(const irc::string &channel)
455 for (InvitedList::iterator i = invites.begin(); i != invites.end(); i++)
457 if (channel == i->first)
465 bool User::HasModePermission(unsigned char mode, ModeType type)
473 if (!AllowedUserModes || !AllowedChanModes)
476 return ((type == MODETYPE_USER ? AllowedUserModes : AllowedChanModes))[(mode - 'A')];
480 bool User::HasPermission(const std::string &command)
483 * users on remote servers can completely bypass all permissions based checks.
484 * This prevents desyncs when one server has different type/class tags to another.
485 * That having been said, this does open things up to the possibility of source changes
486 * allowing remote kills, etc - but if they have access to the src, they most likely have
487 * access to the conf - so it's an end to a means either way.
492 // are they even an oper at all?
498 if (!AllowedOperCommands)
501 if (AllowedOperCommands->find(command) != AllowedOperCommands->end())
503 else if (AllowedOperCommands->find("*") != AllowedOperCommands->end())
509 /** NOTE: We cannot pass a const reference to this method.
510 * The string is changed by the workings of the method,
511 * so that if we pass const ref, we end up copying it to
512 * something we can change anyway. Makes sense to just let
513 * the compiler do that copy for us.
515 bool User::AddBuffer(std::string a)
519 std::string::size_type i = a.rfind('\r');
521 while (i != std::string::npos)
530 if (this->MyClass && (recvq.length() > this->MyClass->GetRecvqMax()))
532 this->SetWriteError("RecvQ exceeded");
533 ServerInstance->SNO->WriteToSnoMask('A', "User %s RecvQ of %lu exceeds connect class maximum of %lu",this->nick,(unsigned long int)recvq.length(),this->MyClass->GetRecvqMax());
542 ServerInstance->Logs->Log("USERS", DEBUG,"Exception in User::AddBuffer()");
547 bool User::BufferIsReady()
549 return (recvq.find('\n') != std::string::npos);
552 void User::ClearBuffer()
557 std::string User::GetBuffer()
564 /* Strip any leading \r or \n off the string.
565 * Usually there are only one or two of these,
566 * so its is computationally cheap to do.
568 std::string::iterator t = recvq.begin();
569 while (t != recvq.end() && (*t == '\r' || *t == '\n'))
575 for (std::string::iterator x = recvq.begin(); x != recvq.end(); x++)
577 /* Find the first complete line, return it as the
578 * result, and leave the recvq as whats left
582 std::string ret = std::string(recvq.begin(), x);
583 recvq.erase(recvq.begin(), x + 1);
592 ServerInstance->Logs->Log("USERS", DEBUG,"Exception in User::GetBuffer()");
597 void User::AddWriteBuf(const std::string &data)
599 if (*this->GetWriteError())
602 if (this->MyClass && (sendq.length() + data.length() > this->MyClass->GetSendqMax()))
605 * Fix by brain - Set the error text BEFORE calling, because
606 * if we dont it'll recursively call here over and over again trying
607 * to repeatedly add the text to the sendq!
609 this->SetWriteError("SendQ exceeded");
610 ServerInstance->SNO->WriteToSnoMask('A', "User %s SendQ of %lu exceeds connect class maximum of %lu",this->nick,(unsigned long int)sendq.length() + data.length(),this->MyClass->GetSendqMax());
614 if (data.length() > MAXBUF - 2) /* MAXBUF has a value of 514, to account for line terminators */
615 sendq.append(data.substr(0,MAXBUF - 4)).append("\r\n"); /* MAXBUF-4 = 510 */
620 // send AS MUCH OF THE USERS SENDQ as we are able to (might not be all of it)
621 void User::FlushWriteBuf()
625 if ((this->fd == FD_MAGIC_NUMBER) || (*this->GetWriteError()))
629 if ((sendq.length()) && (this->fd != FD_MAGIC_NUMBER))
631 int old_sendq_length = sendq.length();
632 int n_sent = ServerInstance->SE->Send(this, this->sendq.data(), this->sendq.length(), 0);
638 /* The socket buffer is full. This isnt fatal,
641 this->ServerInstance->SE->WantWrite(this);
645 /* Fatal error, set write error and bail
647 this->SetWriteError(errno ? strerror(errno) : "EOF from client");
653 /* advance the queue */
655 this->sendq = this->sendq.substr(n_sent);
656 /* update the user's stats counters */
657 this->bytes_out += n_sent;
659 if (n_sent != old_sendq_length)
660 this->ServerInstance->SE->WantWrite(this);
667 ServerInstance->Logs->Log("USERS", DEBUG,"Exception in User::FlushWriteBuf()");
670 if (this->sendq.empty())
672 FOREACH_MOD(I_OnBufferFlushed,OnBufferFlushed(this));
676 void User::SetWriteError(const std::string &error)
678 // don't try to set the error twice, its already set take the first string.
679 if (this->WriteError.empty())
680 this->WriteError = error;
683 const char* User::GetWriteError()
685 return this->WriteError.c_str();
688 void User::Oper(const std::string &opertype, const std::string &opername)
696 this->modes[UM_OPERATOR] = 1;
697 this->WriteServ("MODE %s :+o", this->nick);
698 FOREACH_MOD(I_OnOper, OnOper(this, opertype));
699 ServerInstance->Logs->Log("OPER", DEFAULT, "%s!%s@%s opered as type: %s", this->nick, this->ident, this->host, opertype.c_str());
700 strlcpy(this->oper, opertype.c_str(), NICKMAX - 1);
701 ServerInstance->Users->all_opers.push_back(this);
703 opertype_t::iterator iter_opertype = ServerInstance->Config->opertypes.find(this->oper);
704 if (iter_opertype != ServerInstance->Config->opertypes.end())
707 if (AllowedOperCommands)
708 AllowedOperCommands->clear();
710 AllowedOperCommands = new std::map<std::string, bool>;
712 if (!AllowedChanModes)
713 AllowedChanModes = new bool[64];
715 if (!AllowedUserModes)
716 AllowedUserModes = new bool[64];
718 memset(AllowedUserModes, 0, 64);
719 memset(AllowedChanModes, 0, 64);
721 char* Classes = strdup(iter_opertype->second);
722 char* myclass = strtok_r(Classes," ",&savept);
725 operclass_t::iterator iter_operclass = ServerInstance->Config->operclass.find(myclass);
726 if (iter_operclass != ServerInstance->Config->operclass.end())
728 char* CommandList = strdup(iter_operclass->second.commandlist);
729 mycmd = strtok_r(CommandList," ",&savept2);
732 this->AllowedOperCommands->insert(std::make_pair(mycmd, true));
733 mycmd = strtok_r(NULL," ",&savept2);
736 this->AllowedUserModes['o' - 'A'] = true; // Call me paranoid if you want.
737 for (unsigned char* c = (unsigned char*)iter_operclass->second.umodelist; *c; ++c)
741 memset(this->AllowedUserModes, (int)(true), 64);
745 this->AllowedUserModes[*c - 'A'] = true;
748 for (unsigned char* c = (unsigned char*)iter_operclass->second.cmodelist; *c; ++c)
752 memset(this->AllowedChanModes, (int)(true), 64);
756 this->AllowedChanModes[*c - 'A'] = true;
760 myclass = strtok_r(NULL," ",&savept);
765 FOREACH_MOD(I_OnPostOper,OnPostOper(this, opertype, opername));
770 ServerInstance->Logs->Log("OPER", DEBUG,"Exception in User::Oper()");
778 /* Remove all oper only modes from the user when the deoper - Bug #466*/
779 std::string moderemove("-");
781 for (unsigned char letter = 'A'; letter <= 'z'; letter++)
785 ModeHandler* mh = ServerInstance->Modes->FindMode(letter, MODETYPE_USER);
786 if (mh && mh->NeedsOper())
787 moderemove += letter;
791 const char* parameters[] = { this->nick, moderemove.c_str() };
792 ServerInstance->Parser->CallHandler("MODE", parameters, 2, this);
794 /* unset their oper type (what IS_OPER checks), and remove +o */
796 this->modes[UM_OPERATOR] = 0;
798 /* remove the user from the oper list. Will remove multiple entries as a safeguard against bug #404 */
799 ServerInstance->Users->all_opers.remove(this);
801 if (AllowedOperCommands)
803 delete AllowedOperCommands;
804 AllowedOperCommands = NULL;
806 if (AllowedUserModes)
808 delete[] AllowedUserModes;
809 AllowedUserModes = NULL;
811 if (AllowedChanModes)
813 delete[] AllowedChanModes;
814 AllowedChanModes = NULL;
820 /* adds or updates an entry in the whowas list */
821 void User::AddToWhoWas()
823 Command* whowas_command = ServerInstance->Parser->GetHandler("WHOWAS");
826 std::deque<classbase*> params;
827 params.push_back(this);
828 whowas_command->HandleInternal(WHOWAS_ADD, params);
833 * Check class restrictions
835 void User::CheckClass()
837 ConnectClass* a = this->MyClass;
839 if ((!a) || (a->GetType() == CC_DENY))
841 ServerInstance->Users->QuitUser(this, "Unauthorised connection");
844 else if ((a->GetMaxLocal()) && (ServerInstance->Users->LocalCloneCount(this) > a->GetMaxLocal()))
846 ServerInstance->Users->QuitUser(this, "No more connections allowed from your host via this connect class (local)");
847 ServerInstance->SNO->WriteToSnoMask('A', "WARNING: maximum LOCAL connections (%ld) exceeded for IP %s", a->GetMaxLocal(), this->GetIPString());
850 else if ((a->GetMaxGlobal()) && (ServerInstance->Users->GlobalCloneCount(this) > a->GetMaxGlobal()))
852 ServerInstance->Users->QuitUser(this, "No more connections allowed from your host via this connect class (global)");
853 ServerInstance->SNO->WriteToSnoMask('A', "WARNING: maximum GLOBAL connections (%ld) exceeded for IP %s", a->GetMaxGlobal(), this->GetIPString());
857 this->nping = ServerInstance->Time() + a->GetPingTime() + ServerInstance->Config->dns_timeout;
858 this->timeout = ServerInstance->Time() + a->GetRegTimeout();
859 this->MaxChans = a->GetMaxChans();
862 void User::FullConnect()
864 ServerInstance->stats->statsConnects++;
865 this->idle_lastmsg = ServerInstance->Time();
868 * You may be thinking "wtf, we checked this in User::AddClient!" - and yes, we did, BUT.
869 * At the time AddClient is called, we don't have a resolved host, by here we probably do - which
870 * may put the user into a totally seperate class with different restrictions! so we *must* check again.
871 * Don't remove this! -- w00t
875 /* Check the password, if one is required by the user's connect class.
876 * This CANNOT be in CheckClass(), because that is called prior to PASS as well!
878 if (this->MyClass && !this->MyClass->GetPass().empty() && !this->haspassed)
880 ServerInstance->Users->QuitUser(this, "Invalid password");
886 GLine *r = (GLine *)ServerInstance->XLines->MatchesLine("G", this);
894 KLine *n = (KLine *)ServerInstance->XLines->MatchesLine("K", this);
903 this->WriteServ("NOTICE Auth :Welcome to \002%s\002!",ServerInstance->Config->Network);
904 this->WriteNumeric(001, "%s :Welcome to the %s IRC Network %s!%s@%s",this->nick, ServerInstance->Config->Network, this->nick, this->ident, this->host);
905 this->WriteNumeric(002, "%s :Your host is %s, running version InspIRCd-1.2",this->nick,ServerInstance->Config->ServerName);
906 this->WriteNumeric(003, "%s :This server was created %s %s", this->nick, __TIME__, __DATE__);
907 this->WriteNumeric(004, "%s %s InspIRCd-1.2 %s %s %s", this->nick, ServerInstance->Config->ServerName, ServerInstance->Modes->UserModeList().c_str(), ServerInstance->Modes->ChannelModeList().c_str(), ServerInstance->Modes->ParaModeList().c_str());
909 ServerInstance->Config->Send005(this);
910 this->WriteNumeric(42, "%s %s :your unique ID", this->nick, this->uuid);
916 if (ServerInstance->Users->unregistered_count)
917 ServerInstance->Users->unregistered_count--;
919 /* Trigger LUSERS output, give modules a chance too */
921 FOREACH_RESULT(I_OnPreCommand, OnPreCommand("LUSERS", NULL, 0, this, true, "LUSERS"));
923 ServerInstance->CallCommandHandler("LUSERS", NULL, 0, this);
926 * We don't set REG_ALL until triggering OnUserConnect, so some module events don't spew out stuff
927 * for a user that doesn't exist yet.
929 FOREACH_MOD(I_OnUserConnect,OnUserConnect(this));
931 this->registered = REG_ALL;
933 FOREACH_MOD(I_OnPostConnect,OnPostConnect(this));
935 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);
936 ServerInstance->Logs->Log("BANCACHE", DEBUG, "BanCache: Adding NEGATIVE hit for %s", this->GetIPString());
937 ServerInstance->BanCache->AddHit(this->GetIPString(), "", "");
940 /** User::UpdateNick()
941 * re-allocates a nick in the user_hash after they change nicknames,
942 * returns a pointer to the new user as it may have moved
944 User* User::UpdateNickHash(const char* New)
946 //user_hash::iterator newnick;
947 user_hash::iterator oldnick = ServerInstance->Users->clientlist->find(this->nick);
949 if (!strcasecmp(this->nick,New))
950 return oldnick->second;
952 if (oldnick == ServerInstance->Users->clientlist->end())
953 return NULL; /* doesnt exist */
955 User* olduser = oldnick->second;
956 (*(ServerInstance->Users->clientlist))[New] = olduser;
957 ServerInstance->Users->clientlist->erase(oldnick);
961 void User::InvalidateCache()
963 /* Invalidate cache */
965 free(cached_fullhost);
969 free(cached_makehost);
970 if (cached_fullrealhost)
971 free(cached_fullrealhost);
972 cached_fullhost = cached_hostip = cached_makehost = cached_fullrealhost = NULL;
975 bool User::ForceNickChange(const char* newnick)
979 this->InvalidateCache();
981 FOREACH_RESULT(I_OnUserPreNick,OnUserPreNick(this, newnick));
985 ServerInstance->stats->statsCollisions++;
989 std::deque<classbase*> dummy;
990 Command* nickhandler = ServerInstance->Parser->GetHandler("NICK");
991 if (nickhandler) // wtfbbq, when would this not be here
993 nickhandler->HandleInternal(1, dummy);
994 bool result = (ServerInstance->Parser->CallHandler("NICK", &newnick, 1, this) == CMD_SUCCESS);
995 nickhandler->HandleInternal(0, dummy);
999 // Unreachable, we hope
1003 void User::SetSockAddr(int protocol_family, const char* sip, int port)
1005 this->cachedip = "";
1007 switch (protocol_family)
1009 #ifdef SUPPORT_IP6LINKS
1012 sockaddr_in6* sin = new sockaddr_in6;
1013 sin->sin6_family = AF_INET6;
1014 sin->sin6_port = port;
1015 inet_pton(AF_INET6, sip, &sin->sin6_addr);
1016 this->ip = (sockaddr*)sin;
1022 sockaddr_in* sin = new sockaddr_in;
1023 sin->sin_family = AF_INET;
1024 sin->sin_port = port;
1025 inet_pton(AF_INET, sip, &sin->sin_addr);
1026 this->ip = (sockaddr*)sin;
1030 ServerInstance->Logs->Log("USERS",DEBUG,"Uh oh, I dont know protocol %d to be set on '%s'!", protocol_family, this->nick);
1037 if (this->ip == NULL)
1040 switch (this->GetProtocolFamily())
1042 #ifdef SUPPORT_IP6LINKS
1045 sockaddr_in6* sin = (sockaddr_in6*)this->ip;
1046 return sin->sin6_port;
1052 sockaddr_in* sin = (sockaddr_in*)this->ip;
1053 return sin->sin_port;
1062 int User::GetProtocolFamily()
1064 if (this->ip == NULL)
1067 sockaddr_in* sin = (sockaddr_in*)this->ip;
1068 return sin->sin_family;
1072 * XXX the duplication here is horrid..
1073 * do we really need two methods doing essentially the same thing?
1075 const char* User::GetIPString()
1077 static char buf[1024];
1079 if (this->ip == NULL)
1082 if (!this->cachedip.empty())
1083 return this->cachedip.c_str();
1085 switch (this->GetProtocolFamily())
1087 #ifdef SUPPORT_IP6LINKS
1090 static char temp[1024];
1092 sockaddr_in6* sin = (sockaddr_in6*)this->ip;
1093 inet_ntop(sin->sin6_family, &sin->sin6_addr, buf, sizeof(buf));
1094 /* IP addresses starting with a : on irc are a Bad Thing (tm) */
1097 strlcpy(&temp[1], buf, sizeof(temp) - 1);
1099 this->cachedip = temp;
1103 this->cachedip = buf;
1110 sockaddr_in* sin = (sockaddr_in*)this->ip;
1111 inet_ntop(sin->sin_family, &sin->sin_addr, buf, sizeof(buf));
1112 this->cachedip = buf;
1120 // Unreachable, probably
1124 /** NOTE: We cannot pass a const reference to this method.
1125 * The string is changed by the workings of the method,
1126 * so that if we pass const ref, we end up copying it to
1127 * something we can change anyway. Makes sense to just let
1128 * the compiler do that copy for us.
1130 void User::Write(std::string text)
1132 if (!ServerInstance->SE->BoundsCheckFd(this))
1137 ServerInstance->Logs->Log("USEROUTPUT", DEBUG,"C[%d] O %s", this->GetFd(), text.c_str());
1138 text.append("\r\n");
1142 ServerInstance->Logs->Log("USEROUTPUT", DEBUG,"Exception in User::Write() std::string::append");
1148 /* XXX: The lack of buffering here is NOT a bug, modules implementing this interface have to
1149 * implement their own buffering mechanisms
1153 this->io->OnRawSocketWrite(this->fd, text.data(), text.length());
1155 catch (CoreException& modexcept)
1157 ServerInstance->Logs->Log("USEROUTPUT", DEBUG, "%s threw an exception: %s", modexcept.GetSource(), modexcept.GetReason());
1162 this->AddWriteBuf(text);
1164 ServerInstance->stats->statsSent += text.length();
1165 this->ServerInstance->SE->WantWrite(this);
1170 void User::Write(const char *text, ...)
1173 char textbuffer[MAXBUF];
1175 va_start(argsPtr, text);
1176 vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1179 this->Write(std::string(textbuffer));
1182 void User::WriteServ(const std::string& text)
1184 char textbuffer[MAXBUF];
1186 snprintf(textbuffer,MAXBUF,":%s %s",ServerInstance->Config->ServerName,text.c_str());
1187 this->Write(std::string(textbuffer));
1191 * Same as Write(), except `text' is prefixed with `:server.name '.
1193 void User::WriteServ(const char* text, ...)
1196 char textbuffer[MAXBUF];
1198 va_start(argsPtr, text);
1199 vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1202 this->WriteServ(std::string(textbuffer));
1206 void User::WriteNumeric(unsigned int numeric, const char* text, ...)
1209 char textbuffer[MAXBUF];
1211 va_start(argsPtr, text);
1212 vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1215 this->WriteNumeric(numeric, std::string(textbuffer));
1218 void User::WriteNumeric(unsigned int numeric, const std::string &text)
1220 char textbuffer[MAXBUF];
1223 FOREACH_RESULT(I_OnNumeric, OnNumeric(this, numeric, text));
1228 snprintf(textbuffer,MAXBUF,":%s %03u %s",ServerInstance->Config->ServerName, numeric, text.c_str());
1229 this->Write(std::string(textbuffer));
1232 void User::WriteFrom(User *user, const std::string &text)
1236 snprintf(tb,MAXBUF,":%s %s",user->GetFullHost(),text.c_str());
1238 this->Write(std::string(tb));
1242 /* write text from an originating user to originating user */
1244 void User::WriteFrom(User *user, const char* text, ...)
1247 char textbuffer[MAXBUF];
1249 va_start(argsPtr, text);
1250 vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1253 this->WriteFrom(user, std::string(textbuffer));
1257 /* write text to an destination user from a source user (e.g. user privmsg) */
1259 void User::WriteTo(User *dest, const char *data, ...)
1261 char textbuffer[MAXBUF];
1264 va_start(argsPtr, data);
1265 vsnprintf(textbuffer, MAXBUF, data, argsPtr);
1268 this->WriteTo(dest, std::string(textbuffer));
1271 void User::WriteTo(User *dest, const std::string &data)
1273 dest->WriteFrom(this, data);
1277 void User::WriteCommon(const char* text, ...)
1279 char textbuffer[MAXBUF];
1282 if (this->registered != REG_ALL)
1285 va_start(argsPtr, text);
1286 vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1289 this->WriteCommon(std::string(textbuffer));
1292 void User::WriteCommon(const std::string &text)
1294 bool sent_to_at_least_one = false;
1297 if (this->registered != REG_ALL)
1303 InitializeAlreadySent(ServerInstance->SE);
1305 /* We dont want to be doing this n times, just once */
1306 snprintf(tb,MAXBUF,":%s %s",this->GetFullHost(),text.c_str());
1307 std::string out = tb;
1309 for (UCListIter v = this->chans.begin(); v != this->chans.end(); v++)
1311 CUList* ulist = v->first->GetUsers();
1312 for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
1314 if ((IS_LOCAL(i->first)) && (already_sent[i->first->fd] != uniq_id))
1316 already_sent[i->first->fd] = uniq_id;
1317 i->first->Write(out);
1318 sent_to_at_least_one = true;
1324 * if the user was not in any channels, no users will receive the text. Make sure the user
1325 * receives their OWN message for WriteCommon
1327 if (!sent_to_at_least_one)
1329 this->Write(std::string(tb));
1334 /* write a formatted string to all users who share at least one common
1335 * channel, NOT including the source user e.g. for use in QUIT
1338 void User::WriteCommonExcept(const char* text, ...)
1340 char textbuffer[MAXBUF];
1343 va_start(argsPtr, text);
1344 vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1347 this->WriteCommonExcept(std::string(textbuffer));
1350 void User::WriteCommonQuit(const std::string &normal_text, const std::string &oper_text)
1355 if (this->registered != REG_ALL)
1361 InitializeAlreadySent(ServerInstance->SE);
1363 snprintf(tb1,MAXBUF,":%s QUIT :%s",this->GetFullHost(),normal_text.c_str());
1364 snprintf(tb2,MAXBUF,":%s QUIT :%s",this->GetFullHost(),oper_text.c_str());
1365 std::string out1 = tb1;
1366 std::string out2 = tb2;
1368 for (UCListIter v = this->chans.begin(); v != this->chans.end(); v++)
1370 CUList *ulist = v->first->GetUsers();
1371 for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
1373 if (this != i->first)
1375 if ((IS_LOCAL(i->first)) && (already_sent[i->first->fd] != uniq_id))
1377 already_sent[i->first->fd] = uniq_id;
1378 i->first->Write(IS_OPER(i->first) ? out2 : out1);
1385 void User::WriteCommonExcept(const std::string &text)
1390 if (this->registered != REG_ALL)
1396 InitializeAlreadySent(ServerInstance->SE);
1398 snprintf(tb1,MAXBUF,":%s %s",this->GetFullHost(),text.c_str());
1401 for (UCListIter v = this->chans.begin(); v != this->chans.end(); v++)
1403 CUList *ulist = v->first->GetUsers();
1404 for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
1406 if (this != i->first)
1408 if ((IS_LOCAL(i->first)) && (already_sent[i->first->fd] != uniq_id))
1410 already_sent[i->first->fd] = uniq_id;
1411 i->first->Write(out1);
1419 void User::WriteWallOps(const std::string &text)
1421 if (!IS_LOCAL(this))
1424 std::string wallop("WALLOPS :");
1425 wallop.append(text);
1427 for (std::vector<User*>::const_iterator i = ServerInstance->Users->local_users.begin(); i != ServerInstance->Users->local_users.end(); i++)
1430 if (t->IsModeSet('w'))
1431 this->WriteTo(t,wallop);
1435 void User::WriteWallOps(const char* text, ...)
1437 if (!IS_LOCAL(this))
1440 char textbuffer[MAXBUF];
1443 va_start(argsPtr, text);
1444 vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1447 this->WriteWallOps(std::string(textbuffer));
1450 /* return 0 or 1 depending if users u and u2 share one or more common channels
1451 * (used by QUIT, NICK etc which arent channel specific notices)
1453 * The old algorithm in 1.0 for this was relatively inefficient, iterating over
1454 * the first users channels then the second users channels within the outer loop,
1455 * therefore it was a maximum of x*y iterations (upon returning 0 and checking
1456 * all possible iterations). However this new function instead checks against the
1457 * channel's userlist in the inner loop which is a std::map<User*,User*>
1458 * and saves us time as we already know what pointer value we are after.
1459 * Don't quote me on the maths as i am not a mathematician or computer scientist,
1460 * but i believe this algorithm is now x+(log y) maximum iterations instead.
1462 bool User::SharesChannelWith(User *other)
1464 if ((!other) || (this->registered != REG_ALL) || (other->registered != REG_ALL))
1468 for (UCListIter i = this->chans.begin(); i != this->chans.end(); i++)
1470 /* Eliminate the inner loop (which used to be ~equal in size to the outer loop)
1471 * by replacing it with a map::find which *should* be more efficient
1473 if (i->first->HasUser(other))
1479 bool User::ChangeName(const char* gecos)
1481 if (!strcmp(gecos, this->fullname))
1487 FOREACH_RESULT(I_OnChangeLocalUserGECOS,OnChangeLocalUserGECOS(this,gecos));
1490 FOREACH_MOD(I_OnChangeName,OnChangeName(this,gecos));
1492 strlcpy(this->fullname,gecos,MAXGECOS+1);
1497 bool User::ChangeDisplayedHost(const char* shost)
1499 if (!strcmp(shost, this->dhost))
1505 FOREACH_RESULT(I_OnChangeLocalUserHost,OnChangeLocalUserHost(this,shost));
1508 FOREACH_MOD(I_OnChangeHost,OnChangeHost(this,shost));
1511 if (this->ServerInstance->Config->CycleHosts)
1512 this->WriteCommonExcept("QUIT :Changing hosts");
1514 /* Fix by Om: User::dhost is 65 long, this was truncating some long hosts */
1515 strlcpy(this->dhost,shost,64);
1517 this->InvalidateCache();
1519 if (this->ServerInstance->Config->CycleHosts)
1521 for (UCListIter i = this->chans.begin(); i != this->chans.end(); i++)
1523 i->first->WriteAllExceptSender(this, false, 0, "JOIN %s", i->first->name);
1524 std::string n = this->ServerInstance->Modes->ModeString(this, i->first);
1526 i->first->WriteAllExceptSender(this, true, 0, "MODE %s +%s", i->first->name, n.c_str());
1531 this->WriteNumeric(396, "%s %s :is now your displayed host",this->nick,this->dhost);
1536 bool User::ChangeIdent(const char* newident)
1538 if (!strcmp(newident, this->ident))
1541 if (this->ServerInstance->Config->CycleHosts)
1542 this->WriteCommonExcept("%s","QUIT :Changing ident");
1544 strlcpy(this->ident, newident, IDENTMAX+1);
1546 this->InvalidateCache();
1548 if (this->ServerInstance->Config->CycleHosts)
1550 for (UCListIter i = this->chans.begin(); i != this->chans.end(); i++)
1552 i->first->WriteAllExceptSender(this, false, 0, "JOIN %s", i->first->name);
1553 std::string n = this->ServerInstance->Modes->ModeString(this, i->first);
1555 i->first->WriteAllExceptSender(this, true, 0, "MODE %s +%s", i->first->name, n.c_str());
1562 void User::SendAll(const char* command, const char* text, ...)
1564 char textbuffer[MAXBUF];
1565 char formatbuffer[MAXBUF];
1568 va_start(argsPtr, text);
1569 vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1572 snprintf(formatbuffer,MAXBUF,":%s %s $* :%s", this->GetFullHost(), command, textbuffer);
1573 std::string fmt = formatbuffer;
1575 for (std::vector<User*>::const_iterator i = ServerInstance->Users->local_users.begin(); i != ServerInstance->Users->local_users.end(); i++)
1582 std::string User::ChannelList(User* source)
1586 for (UCListIter i = this->chans.begin(); i != this->chans.end(); i++)
1588 /* If the target is the same as the sender, let them see all their channels.
1589 * If the channel is NOT private/secret OR the user shares a common channel
1590 * If the user is an oper, and the <options:operspywhois> option is set.
1592 if ((source == this) || (IS_OPER(source) && ServerInstance->Config->OperSpyWhois) || (((!i->first->IsModeSet('p')) && (!i->first->IsModeSet('s'))) || (i->first->HasUser(source))))
1594 list.append(i->first->GetPrefixChar(this)).append(i->first->name).append(" ");
1601 void User::SplitChanList(User* dest, const std::string &cl)
1604 std::ostringstream prefix;
1605 std::string::size_type start, pos, length;
1607 prefix << this->nick << " " << dest->nick << " :";
1608 line = prefix.str();
1609 int namelen = strlen(ServerInstance->Config->ServerName) + 6;
1611 for (start = 0; (pos = cl.find(' ', start)) != std::string::npos; start = pos+1)
1613 length = (pos == std::string::npos) ? cl.length() : pos;
1615 if (line.length() + namelen + length - start > 510)
1617 ServerInstance->SendWhoisLine(this, dest, 319, "%s", line.c_str());
1618 line = prefix.str();
1621 if(pos == std::string::npos)
1623 line.append(cl.substr(start, length - start));
1628 line.append(cl.substr(start, length - start + 1));
1634 ServerInstance->SendWhoisLine(this, dest, 319, "%s", line.c_str());
1638 unsigned int User::GetMaxChans()
1640 return this->MaxChans;
1645 * Sets a user's connection class.
1646 * If the class name is provided, it will be used. Otherwise, the class will be guessed using host/ip/ident/etc.
1647 * NOTE: If the <ALLOW> or <DENY> tag specifies an ip, and this user resolves,
1648 * then their ip will be taken as 'priority' anyway, so for example,
1649 * <connect allow="127.0.0.1"> will match joe!bloggs@localhost
1651 ConnectClass* User::SetClass(const std::string &explicit_name)
1653 ConnectClass *found = NULL;
1655 if (!IS_LOCAL(this))
1658 if (!explicit_name.empty())
1660 for (ClassVector::iterator i = ServerInstance->Config->Classes.begin(); i != ServerInstance->Config->Classes.end(); i++)
1662 ConnectClass* c = *i;
1664 if (explicit_name == c->GetName() && !c->GetDisabled())
1672 for (ClassVector::iterator i = ServerInstance->Config->Classes.begin(); i != ServerInstance->Config->Classes.end(); i++)
1674 ConnectClass* c = *i;
1676 if (((match(this->GetIPString(),c->GetHost().c_str(),true)) || (match(this->host,c->GetHost().c_str()))))
1680 if (this->GetPort() == c->GetPort() && !c->GetDisabled())
1689 if (!c->GetDisabled())
1696 /* ensure we don't fuck things up refcount wise, only remove them from a class if we find a new one :P */
1699 /* deny change if change will take class over the limit */
1700 if (found->limit && (found->RefCount + 1 >= found->limit))
1702 ServerInstance->Logs->Log("USERS", DEBUG, "OOPS: Connect class limit (%lu) hit, denying", found->limit);
1703 return this->MyClass;
1706 /* should always be valid, but just in case .. */
1709 if (found == this->MyClass) // no point changing this shit :P
1710 return this->MyClass;
1711 this->MyClass->RefCount--;
1712 ServerInstance->Logs->Log("USERS", DEBUG, "Untying user from connect class -- refcount: %lu", this->MyClass->RefCount);
1715 this->MyClass = found;
1716 this->MyClass->RefCount++;
1717 ServerInstance->Logs->Log("USERS", DEBUG, "User tied to new class -- connect refcount now: %lu", this->MyClass->RefCount);
1720 return this->MyClass;
1723 /* looks up a users password for their connection class (<ALLOW>/<DENY> tags)
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
1728 ConnectClass* User::GetClass()
1730 return this->MyClass;
1733 void User::PurgeEmptyChannels()
1735 std::vector<Channel*> to_delete;
1737 // firstly decrement the count on each channel
1738 for (UCListIter f = this->chans.begin(); f != this->chans.end(); f++)
1740 f->first->RemoveAllPrefixes(this);
1741 if (f->first->DelUser(this) == 0)
1743 /* No users left in here, mark it for deletion */
1746 to_delete.push_back(f->first);
1750 ServerInstance->Logs->Log("USERS", DEBUG,"Exception in User::PurgeEmptyChannels to_delete.push_back()");
1755 for (std::vector<Channel*>::iterator n = to_delete.begin(); n != to_delete.end(); n++)
1757 Channel* thischan = *n;
1758 chan_hash::iterator i2 = ServerInstance->chanlist->find(thischan->name);
1759 if (i2 != ServerInstance->chanlist->end())
1761 FOREACH_MOD(I_OnChannelDelete,OnChannelDelete(i2->second));
1763 ServerInstance->chanlist->erase(i2);
1764 this->chans.erase(*n);
1771 void User::ShowMOTD()
1773 if (!ServerInstance->Config->MOTD.size())
1775 this->WriteNumeric(422, "%s :Message of the day file is missing.",this->nick);
1778 this->WriteNumeric(375, "%s :%s message of the day", this->nick, ServerInstance->Config->ServerName);
1780 for (file_cache::iterator i = ServerInstance->Config->MOTD.begin(); i != ServerInstance->Config->MOTD.end(); i++)
1781 this->WriteNumeric(372, "%s :- %s",this->nick,i->c_str());
1783 this->WriteNumeric(376, "%s :End of message of the day.", this->nick);
1786 void User::ShowRULES()
1788 if (!ServerInstance->Config->RULES.size())
1790 this->WriteNumeric(434, "%s :RULES File is missing",this->nick);
1794 this->WriteNumeric(308, "%s :- %s Server Rules -",this->nick,ServerInstance->Config->ServerName);
1796 for (file_cache::iterator i = ServerInstance->Config->RULES.begin(); i != ServerInstance->Config->RULES.end(); i++)
1797 this->WriteNumeric(232, "%s :- %s",this->nick,i->c_str());
1799 this->WriteNumeric(309, "%s :End of RULES command.",this->nick);
1802 void User::HandleEvent(EventType et, int errornum)
1804 if (this->quitting) // drop everything, user is due to be quit
1807 /* WARNING: May delete this user! */
1808 int thisfd = this->GetFd();
1815 ServerInstance->ProcessUser(this);
1818 this->FlushWriteBuf();
1821 /** This should be safe, but dont DARE do anything after it -- Brain */
1822 this->SetWriteError(errornum ? strerror(errornum) : "EOF from client");
1828 ServerInstance->Logs->Log("USERS", DEBUG,"Exception in User::HandleEvent intercepted");
1831 /* If the user has raised an error whilst being processed, quit them now we're safe to */
1832 if ((ServerInstance->SE->GetRef(thisfd) == this))
1834 if (!WriteError.empty())
1836 ServerInstance->Users->QuitUser(this, GetWriteError());
1841 void User::SetOperQuit(const std::string &oquit)
1843 operquitmsg = oquit;
1846 const char* User::GetOperQuit()
1848 return operquitmsg.c_str();
1851 void User::IncreasePenalty(int increase)
1853 this->Penalty += increase;
1856 void User::DecreasePenalty(int decrease)
1858 this->Penalty -= decrease;
1869 bool VisData::VisibleTo(User* user)