1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
7 * <brain@chatspike.net>
8 * <Craig@chatspike.net>
10 * Written by Craig Edwards, Craig McLure, and others.
11 * This program is free but copyrighted software; see
12 * the file COPYING for details.
14 * ---------------------------------------------------
19 #include "inspircd_config.h"
21 #include "connection.h"
29 #include "inspstring.h"
31 #include "helperfuncs.h"
33 #include "socketengine.h"
39 extern InspIRCd* ServerInstance;
40 extern int WHOWAS_STALE;
41 extern int WHOWAS_MAX;
42 extern std::vector<Module*> modules;
43 extern std::vector<ircd_module*> factory;
44 extern std::vector<InspSocket*> module_sockets;
46 extern InspSocket* socket_ref[65535];
48 extern SocketEngine* SE;
49 extern userrec* fd_ref_table[65536];
50 extern serverstats* stats;
51 extern ServerConfig *Config;
52 extern user_hash clientlist;
53 extern whowas_hash whowas;
54 std::vector<userrec*> local_users;
56 std::vector<userrec*> all_opers;
58 template<typename T> inline string ConvToStr(const T &in)
61 if (!(tmp << in)) return string();
67 // the PROPER way to do it, AVOID bzero at *ALL* costs
69 strcpy(ip,"127.0.0.1");
76 server = (char*)FindServerNamePtr(Config->ServerName);
81 fd = lastping = signon = idle_lastmsg = nping = registered = 0;
82 flood = port = bytes_in = bytes_out = cmds_in = cmds_out = 0;
95 void userrec::CloseSocket()
101 char* userrec::GetFullHost()
103 static char result[MAXBUF];
104 snprintf(result,MAXBUF,"%s!%s@%s",nick,ident,dhost);
108 int userrec::ReadData(void* buffer, size_t size)
112 return read(this->fd, buffer, size);
118 char* userrec::GetFullRealHost()
120 static char fresult[MAXBUF];
121 snprintf(fresult,MAXBUF,"%s!%s@%s",nick,ident,host);
125 bool userrec::IsInvited(irc::string &channel)
127 for (InvitedList::iterator i = invites.begin(); i != invites.end(); i++)
129 irc::string compare = i->channel;
130 if (compare == channel)
138 InvitedList* userrec::GetInviteList()
143 void userrec::InviteTo(irc::string &channel)
147 invites.push_back(i);
150 void userrec::RemoveInvite(irc::string &channel)
152 log(DEBUG,"Removing invites");
155 for (InvitedList::iterator i = invites.begin(); i != invites.end(); i++)
157 irc::string compare = i->channel;
158 if (compare == channel)
167 bool userrec::HasPermission(std::string &command)
169 char TypeName[MAXBUF],Classes[MAXBUF],ClassName[MAXBUF],CommandList[MAXBUF];
174 // users on u-lined servers can completely bypass
175 // all permissions based checks.
177 // of course, if this is sent to a remote server and this
178 // server is not ulined there, then that other server
179 // silently drops the command.
180 if (is_uline(this->server))
183 // are they even an oper at all?
184 if (strchr(this->modes,'o'))
186 for (int j =0; j < Config->ConfValueEnum("type",&Config->config_f); j++)
188 Config->ConfValue("type","name",j,TypeName,&Config->config_f);
189 if (!strcmp(TypeName,this->oper))
191 Config->ConfValue("type","classes",j,Classes,&Config->config_f);
192 char* myclass = strtok_r(Classes," ",&savept);
195 for (int k =0; k < Config->ConfValueEnum("class",&Config->config_f); k++)
197 Config->ConfValue("class","name",k,ClassName,&Config->config_f);
198 if (!strcmp(ClassName,myclass))
200 Config->ConfValue("class","commands",k,CommandList,&Config->config_f);
201 mycmd = strtok_r(CommandList," ",&savept2);
204 if ((!strcasecmp(mycmd,command.c_str())) || (*mycmd == '*'))
208 mycmd = strtok_r(NULL," ",&savept2);
212 myclass = strtok_r(NULL," ",&savept);
221 bool userrec::AddBuffer(std::string a)
224 for (unsigned int i = 0; i < a.length(); i++)
225 if ((a[i] != '\r') && (a[i] != '\0') && (a[i] != 7))
227 std::stringstream stream(recvq);
229 recvq = stream.str();
231 // count the size of the first line in the buffer.
232 while (i < recvq.length())
234 if (recvq[i++] == '\n')
237 if (recvq.length() > (unsigned)this->recvqmax)
239 this->SetWriteError("RecvQ exceeded");
240 WriteOpers("*** User %s RecvQ of %d exceeds connect class maximum of %d",this->nick,recvq.length(),this->recvqmax);
242 // return false if we've had more than 600 characters WITHOUT
243 // a carriage return (this is BAD, drop the socket)
247 bool userrec::BufferIsReady()
249 for (unsigned int i = 0; i < recvq.length(); i++)
250 if (recvq[i] == '\n')
255 void userrec::ClearBuffer()
260 std::string userrec::GetBuffer()
264 char* line = (char*)recvq.c_str();
265 std::string ret = "";
266 while ((*line != '\n') && (strlen(line)))
271 if ((*line == '\n') || (*line == '\r'))
277 void userrec::AddWriteBuf(std::string data)
279 if (this->GetWriteError() != "")
281 if (sendq.length() + data.length() > (unsigned)this->sendqmax)
283 WriteOpers("*** User %s SendQ of %d exceeds connect class maximum of %d",this->nick,sendq.length() + data.length(),this->sendqmax);
284 this->SetWriteError("SendQ exceeded");
287 std::stringstream stream;
288 stream << sendq << data;
289 sendq = stream.str();
292 // send AS MUCH OF THE USERS SENDQ as we are able to (might not be all of it)
293 void userrec::FlushWriteBuf()
297 char* tb = (char*)this->sendq.c_str();
298 int n_sent = write(this->fd,tb,this->sendq.length());
301 this->SetWriteError(strerror(errno));
308 // update the user's stats counters
309 this->bytes_out += n_sent;
315 void userrec::SetWriteError(std::string error)
317 log(DEBUG,"Setting error string for %s to '%s'",this->nick,error.c_str());
318 // don't try to set the error twice, its already set take the first string.
319 if (this->WriteError == "")
320 this->WriteError = error;
323 std::string userrec::GetWriteError()
325 return this->WriteError;
328 void AddOper(userrec* user)
330 log(DEBUG,"Oper added to optimization list");
331 all_opers.push_back(user);
334 void DeleteOper(userrec* user)
336 for (std::vector<userrec*>::iterator a = all_opers.begin(); a < all_opers.end(); a++)
340 log(DEBUG,"Oper removed from optimization list");
347 void kill_link(userrec *user,const char* r)
349 user_hash::iterator iter = clientlist.find(user->nick);
353 strncpy(reason,r,MAXBUF);
355 if (strlen(reason)>MAXQUIT)
357 reason[MAXQUIT-1] = '\0';
360 log(DEBUG,"kill_link: %s '%s'",user->nick,reason);
361 Write(user->fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,reason);
362 log(DEBUG,"closing fd %lu",(unsigned long)user->fd);
364 if (user->registered == 7) {
365 FOREACH_MOD OnUserQuit(user,reason);
366 WriteCommonExcept(user,"QUIT :%s",reason);
369 user->FlushWriteBuf();
371 FOREACH_MOD OnUserDisconnect(user);
375 FOREACH_MOD OnRawSocketClose(user->fd);
380 // this must come before the WriteOpers so that it doesnt try to fill their buffer with anything
381 // if they were an oper with +s.
382 if (user->registered == 7) {
383 purge_empty_chans(user);
384 // fix by brain: only show local quits because we only show local connects (it just makes SENSE)
386 WriteOpers("*** Client exiting: %s!%s@%s [%s]",user->nick,user->ident,user->host,reason);
390 if (iter != clientlist.end())
392 log(DEBUG,"deleting user hash value %lu",(unsigned long)user);
395 fd_ref_table[user->fd] = NULL;
396 if (find(local_users.begin(),local_users.end(),user) != local_users.end())
398 local_users.erase(find(local_users.begin(),local_users.end(),user));
399 log(DEBUG,"Delete local user");
402 clientlist.erase(iter);
407 void kill_link_silent(userrec *user,const char* r)
409 user_hash::iterator iter = clientlist.find(user->nick);
413 strncpy(reason,r,MAXBUF);
415 if (strlen(reason)>MAXQUIT)
417 reason[MAXQUIT-1] = '\0';
420 log(DEBUG,"kill_link: %s '%s'",user->nick,reason);
421 Write(user->fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,reason);
422 log(DEBUG,"closing fd %lu",(unsigned long)user->fd);
424 user->FlushWriteBuf();
426 if (user->registered == 7) {
427 FOREACH_MOD OnUserQuit(user,reason);
428 WriteCommonExcept(user,"QUIT :%s",reason);
431 FOREACH_MOD OnUserDisconnect(user);
435 FOREACH_MOD OnRawSocketClose(user->fd);
440 if (user->registered == 7) {
441 purge_empty_chans(user);
444 if (iter != clientlist.end())
446 log(DEBUG,"deleting user hash value %lu",(unsigned long)user);
449 fd_ref_table[user->fd] = NULL;
450 if (find(local_users.begin(),local_users.end(),user) != local_users.end())
452 log(DEBUG,"Delete local user");
453 local_users.erase(find(local_users.begin(),local_users.end(),user));
456 clientlist.erase(iter);
462 /* adds or updates an entry in the whowas list */
463 void AddWhoWas(userrec* u)
465 whowas_hash::iterator iter = whowas.find(u->nick);
466 WhoWasUser *a = new WhoWasUser();
467 strlcpy(a->nick,u->nick,NICKMAX);
468 strlcpy(a->ident,u->ident,IDENTMAX);
469 strlcpy(a->dhost,u->dhost,160);
470 strlcpy(a->host,u->host,160);
471 strlcpy(a->fullname,u->fullname,MAXGECOS);
472 strlcpy(a->server,u->server,256);
473 a->signon = u->signon;
475 /* MAX_WHOWAS: max number of /WHOWAS items
476 * WHOWAS_STALE: number of hours before a WHOWAS item is marked as stale and
477 * can be replaced by a newer one
480 if (iter == whowas.end())
482 if (whowas.size() >= (unsigned)WHOWAS_MAX)
484 for (whowas_hash::iterator i = whowas.begin(); i != whowas.end(); i++)
486 // 3600 seconds in an hour ;)
487 if ((i->second->signon)<(TIME-(WHOWAS_STALE*3600)))
489 // delete the old one
490 if (i->second) delete i->second;
491 // replace with new one
493 log(DEBUG,"added WHOWAS entry, purged an old record");
497 // no space left and user doesnt exist. Don't leave ram in use!
498 log(DEBUG,"Not able to update whowas (list at WHOWAS_MAX entries and trying to add new?), freeing excess ram");
503 log(DEBUG,"added fresh WHOWAS entry");
509 log(DEBUG,"updated WHOWAS entry");
510 if (iter->second) delete iter->second;
515 /* add a client connection to the sockets list */
516 void AddClient(int socket, char* host, int port, bool iscached, char* ip)
520 user_hash::iterator iter;
522 tempnick = ConvToStr(socket) + "-unknown";
523 sprintf(tn2,"%lu-unknown",(unsigned long)socket);
525 iter = clientlist.find(tempnick);
528 // as these nicknames are 'RFC impossible', we can be sure nobody is going to be
529 // using one as a registered connection. As theyre per fd, we can also safely assume
530 // that we wont have collisions. Therefore, if the nick exists in the list, its only
531 // used by a dead socket, erase the iterator so that the new client may reclaim it.
532 // this was probably the cause of 'server ignores me when i hammer it with reconnects'
533 // issue in earlier alphas/betas
534 if (iter != clientlist.end())
536 userrec* goner = iter->second;
538 clientlist.erase(iter);
542 * It is OK to access the value here this way since we know
543 * it exists, we just created it above.
545 * At NO other time should you access a value in a map or a
548 clientlist[tempnick] = new userrec();
551 log(DEBUG,"AddClient: %lu %s %d %s",(unsigned long)socket,host,port,ip);
553 clientlist[tempnick]->fd = socket;
554 strlcpy(clientlist[tempnick]->nick, tn2,NICKMAX);
555 strlcpy(clientlist[tempnick]->host, host,160);
556 strlcpy(clientlist[tempnick]->dhost, host,160);
557 clientlist[tempnick]->server = (char*)FindServerNamePtr(Config->ServerName);
558 strlcpy(clientlist[tempnick]->ident, "unknown",IDENTMAX);
559 clientlist[tempnick]->registered = 0;
560 clientlist[tempnick]->signon = TIME + Config->dns_timeout;
561 clientlist[tempnick]->lastping = 1;
562 clientlist[tempnick]->port = port;
563 strlcpy(clientlist[tempnick]->ip,ip,16);
565 // set the registration timeout for this user
566 unsigned long class_regtimeout = 90;
568 long class_threshold = 5;
569 long class_sqmax = 262144; // 256kb
570 long class_rqmax = 4096; // 4k
572 for (ClassVector::iterator i = Config->Classes.begin(); i != Config->Classes.end(); i++)
574 if (match(clientlist[tempnick]->host,i->host) && (i->type == CC_ALLOW))
576 class_regtimeout = (unsigned long)i->registration_timeout;
577 class_flood = i->flood;
578 clientlist[tempnick]->pingmax = i->pingtime;
579 class_threshold = i->threshold;
580 class_sqmax = i->sendqmax;
581 class_rqmax = i->recvqmax;
586 clientlist[tempnick]->nping = TIME+clientlist[tempnick]->pingmax + Config->dns_timeout;
587 clientlist[tempnick]->timeout = TIME+class_regtimeout;
588 clientlist[tempnick]->flood = class_flood;
589 clientlist[tempnick]->threshold = class_threshold;
590 clientlist[tempnick]->sendqmax = class_sqmax;
591 clientlist[tempnick]->recvqmax = class_rqmax;
596 for (int i = 0; i < MAXCHANS; i++)
597 clientlist[tempnick]->chans.push_back(a);
599 if (clientlist.size() > Config->SoftLimit)
601 kill_link(clientlist[tempnick],"No more connections allowed");
605 if (clientlist.size() >= MAXCLIENTS)
607 kill_link(clientlist[tempnick],"No more connections allowed");
611 // this is done as a safety check to keep the file descriptors within range of fd_ref_table.
612 // its a pretty big but for the moment valid assumption:
613 // file descriptors are handed out starting at 0, and are recycled as theyre freed.
614 // therefore if there is ever an fd over 65535, 65536 clients must be connected to the
615 // irc server at once (or the irc server otherwise initiating this many connections, files etc)
616 // which for the time being is a physical impossibility (even the largest networks dont have more
617 // than about 10,000 users on ONE server!)
618 if ((unsigned)socket > 65534)
620 kill_link(clientlist[tempnick],"Server is full");
623 char* e = matches_exception(ip);
626 char* r = matches_zline(ip);
630 snprintf(reason,MAXBUF,"Z-Lined: %s",r);
631 kill_link(clientlist[tempnick],reason);
635 fd_ref_table[socket] = clientlist[tempnick];
636 local_users.push_back(clientlist[tempnick]);
637 SE->AddFd(socket,true,X_ESTAB_CLIENT);
640 void FullConnectUser(userrec* user)
642 stats->statsConnects++;
643 user->idle_lastmsg = TIME;
644 log(DEBUG,"ConnectUser: %s",user->nick);
646 if ((strcmp(Passwd(user),"")) && (!user->haspassed))
648 kill_link(user,"Invalid password");
653 kill_link(user,"Unauthorised connection");
657 char match_against[MAXBUF];
658 snprintf(match_against,MAXBUF,"%s@%s",user->ident,user->host);
659 char* e = matches_exception(match_against);
662 char* r = matches_gline(match_against);
666 snprintf(reason,MAXBUF,"G-Lined: %s",r);
667 kill_link_silent(user,reason);
670 r = matches_kline(user->host);
674 snprintf(reason,MAXBUF,"K-Lined: %s",r);
675 kill_link_silent(user,reason);
681 WriteServ(user->fd,"NOTICE Auth :Welcome to \002%s\002!",Config->Network);
682 WriteServ(user->fd,"001 %s :Welcome to the %s IRC Network %s!%s@%s",user->nick,Config->Network,user->nick,user->ident,user->host);
683 WriteServ(user->fd,"002 %s :Your host is %s, running version %s",user->nick,Config->ServerName,VERSION);
684 WriteServ(user->fd,"003 %s :This server was created %s %s",user->nick,__TIME__,__DATE__);
685 WriteServ(user->fd,"004 %s %s %s iowghraAsORVSxNCWqBzvdHtGI lvhopsmntikrRcaqOALQbSeKVfHGCuzN",user->nick,Config->ServerName,VERSION);
686 // the neatest way to construct the initial 005 numeric, considering the number of configure constants to go in it...
688 v << "WALLCHOPS MODES=13 CHANTYPES=# PREFIX=(ohv)@%+ MAP SAFELIST MAXCHANNELS=" << MAXCHANS;
689 v << " MAXBANS=60 NICKLEN=" << NICKMAX;
690 v << " TOPICLEN=" << MAXTOPIC << " KICKLEN=" << MAXKICK << " MAXTARGETS=20 AWAYLEN=" << MAXAWAY << " CHANMODES=ohvb,k,l,psmnti NETWORK=";
691 v << Config->Network;
692 std::string data005 = v.str();
693 FOREACH_MOD On005Numeric(data005);
694 // anfl @ #ratbox, efnet reminded me that according to the RFC this cant contain more than 13 tokens per line...
695 // so i'd better split it :)
696 std::stringstream out(data005);
697 std::string token = "";
698 std::string line5 = "";
699 int token_counter = 0;
703 line5 = line5 + token + " ";
705 if ((token_counter >= 13) || (out.eof() == true))
707 WriteServ(user->fd,"005 %s %s:are supported by this server",user->nick,line5.c_str());
714 // fix 3 by brain, move registered = 7 below these so that spurious modes and host changes dont go out
715 // onto the network and produce 'fake direction'
716 FOREACH_MOD OnUserConnect(user);
717 FOREACH_MOD OnGlobalConnect(user);
718 user->registered = 7;
719 WriteOpers("*** Client connecting on port %lu: %s!%s@%s [%s]",(unsigned long)user->port,user->nick,user->ident,user->host,user->ip);
723 /* shows the message of the day, and any other on-logon stuff */
724 void ConnectUser(userrec *user)
726 // dns is already done, things are fast. no need to wait for dns to complete just pass them straight on
727 if ((user->dns_done) && (user->registered >= 3) && (AllModulesReportReady(user)))
729 FullConnectUser(user);
733 /* re-allocates a nick in the user_hash after they change nicknames,
734 * returns a pointer to the new user as it may have moved */
736 userrec* ReHashNick(char* Old, char* New)
738 //user_hash::iterator newnick;
739 user_hash::iterator oldnick = clientlist.find(Old);
741 log(DEBUG,"ReHashNick: %s %s",Old,New);
743 if (!strcasecmp(Old,New))
745 log(DEBUG,"old nick is new nick, skipping");
746 return oldnick->second;
749 if (oldnick == clientlist.end()) return NULL; /* doesnt exist */
751 log(DEBUG,"ReHashNick: Found hashed nick %s",Old);
753 userrec* olduser = oldnick->second;
754 clientlist[New] = olduser;
755 clientlist.erase(oldnick);
757 log(DEBUG,"ReHashNick: Nick rehashed as %s",New);
759 return clientlist[New];
762 void force_nickchange(userrec* user,const char* newnick)
769 FOREACH_RESULT(OnUserPreNick(user,newnick));
771 stats->statsCollisions++;
772 kill_link(user,"Nickname collision");
775 if (matches_qline(newnick))
777 stats->statsCollisions++;
778 kill_link(user,"Nickname collision");
786 strncpy(nick,newnick,MAXBUF);
788 if (user->registered == 7)
792 handle_nick(pars,1,user);