1 /* ---------------------------------------------------------------------
3 * +------------------------------------+
4 * | Inspire Internet Relay Chat Daemon |
5 * +------------------------------------+
7 * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
9 * <brain@chatspike.net>
10 * <Craig@chatspike.net>
12 * Written by Craig Edwards, Craig McLure, and others.
13 * This program is free but copyrighted software; you can redistribute
14 * it and/or modify it under the terms of the GNU General Public
15 * License as published by the Free Software Foundation, version 2
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27 * ---------------------------------------------------------------------
31 #include "inspircd_config.h"
33 #include "configreader.h"
35 #include <sys/errno.h>
36 #include <sys/ioctl.h>
57 #include "inspstring.h"
58 #include "helperfuncs.h"
60 #include "socketengine.h"
61 #include "inspircd_se_config.h"
62 #include "userprocess.h"
65 #include "command_parse.h"
67 using irc::sockets::NonBlocking;
68 using irc::sockets::insp_ntoa;
69 using irc::sockets::insp_inaddr;
70 using irc::sockets::insp_sockaddr;
72 InspIRCd* ServerInstance = NULL;
76 insp_sockaddr client, server;
81 void InspIRCd::AddServerName(const std::string &servername)
83 ServerInstance->Log(DEBUG,"Adding server name: %s",servername.c_str());
85 if(find(servernames.begin(), servernames.end(), servername) == servernames.end())
86 servernames.push_back(servername); /* Wasn't already there. */
89 const char* InspIRCd::FindServerNamePtr(const std::string &servername)
91 servernamelist::iterator iter = find(servernames.begin(), servernames.end(), servername);
93 if(iter == servernames.end())
95 AddServerName(servername);
96 iter = --servernames.end();
102 bool InspIRCd::FindServerName(const std::string &servername)
104 return (find(servernames.begin(), servernames.end(), servername) != servernames.end());
107 void InspIRCd::Exit(int status)
109 if (ServerInstance->Config->log_file)
110 fclose(ServerInstance->Config->log_file);
111 ServerInstance->SendError("Server shutdown.");
115 void InspIRCd::Start()
117 printf("\033[1;32mInspire Internet Relay Chat Server, compiled %s at %s\n",__DATE__,__TIME__);
118 printf("(C) ChatSpike Development team.\033[0m\n\n");
119 printf("Developers:\t\t\033[1;32mBrain, FrostyCoolSlug, w00t, Om, Special\033[0m\n");
120 printf("Others:\t\t\t\033[1;32mSee /INFO Output\033[0m\n");
121 printf("Name concept:\t\t\033[1;32mLord_Zathras\033[0m\n\n");
124 void InspIRCd::Rehash(int status)
126 ServerInstance->WriteOpers("Rehashing config file %s due to SIGHUP",ServerConfig::CleanFilename(CONFIG_FILE));
127 fclose(ServerInstance->Config->log_file);
128 ServerInstance->OpenLog(NULL,0);
129 ServerInstance->Config->Read(false,NULL);
130 FOREACH_MOD(I_OnRehash,OnRehash(""));
133 void InspIRCd::SetSignals(bool SEGVHandler)
135 signal (SIGALRM, SIG_IGN);
136 signal (SIGHUP, InspIRCd::Rehash);
137 signal (SIGPIPE, SIG_IGN);
138 signal (SIGTERM, InspIRCd::Exit);
141 bool InspIRCd::DaemonSeed()
144 if ((childpid = fork ()) < 0)
146 else if (childpid > 0)
148 /* We wait a few seconds here, so that the shell prompt doesnt come back over the output */
154 printf("InspIRCd Process ID: \033[1;32m%lu\033[0m\n",(unsigned long)getpid());
157 if (getrlimit(RLIMIT_CORE, &rl) == -1)
159 ServerInstance->Log(DEFAULT,"Failed to getrlimit()!");
164 rl.rlim_cur = rl.rlim_max;
165 if (setrlimit(RLIMIT_CORE, &rl) == -1)
166 ServerInstance->Log(DEFAULT,"setrlimit() failed, cannot increase coredump size.");
172 void InspIRCd::WritePID(const std::string &filename)
174 std::ofstream outfile(filename.c_str());
175 if (outfile.is_open())
182 printf("Failed to write PID-file '%s', exiting.\n",filename.c_str());
183 ServerInstance->Log(DEFAULT,"Failed to write PID-file '%s', exiting.",filename.c_str());
188 std::string InspIRCd::GetRevision()
193 InspIRCd::InspIRCd(int argc, char** argv) : ModCount(-1)
195 bool SEGVHandler = false;
196 ServerInstance = this;
201 this->Config = new ServerConfig(this);
203 this->module_sockets.clear();
204 this->TIME = this->OLDTIME = this->startup_time = time(NULL);
206 ServerInstance->Log(DEBUG,"*** InspIRCd starting up!");
207 if (!ServerConfig::FileExists(CONFIG_FILE))
209 printf("ERROR: Cannot open config file: %s\nExiting...\n",CONFIG_FILE);
210 ServerInstance->Log(DEFAULT,"main: no config");
211 printf("ERROR: Your config file is missing, this IRCd will self destruct in 10 seconds!\n");
214 *this->LogFileName = 0;
216 for (int i = 1; i < argc; i++)
218 if (!strcmp(argv[i],"-nofork"))
220 Config->nofork = true;
222 else if(!strcmp(argv[i],"-debug"))
224 Config->forcedebug = true;
226 else if(!strcmp(argv[i],"-nolog"))
228 Config->writelog = false;
230 else if (!strcmp(argv[i],"-wait"))
234 else if (!strcmp(argv[i],"-nolimit"))
236 printf("WARNING: The `-nolimit' option is deprecated, and now on by default. This behaviour may change in the future.\n");
238 else if (!strcmp(argv[i],"-notraceback"))
242 else if (!strcmp(argv[i],"-logfile"))
246 strlcpy(LogFileName,argv[i+1],MAXBUF);
247 printf("LOG: Setting logfile to %s\n",LogFileName);
251 printf("ERROR: The -logfile parameter must be followed by a log file name and path.\n");
258 printf("Usage: %s [-nofork] [-nolog] [-debug] [-wait] [-nolimit] [-notraceback] [-logfile <filename>]\n",argv[0]);
264 strlcpy(Config->MyExecutable,argv[0],MAXBUF);
266 this->MakeLowerMap();
269 this->stats = new serverstats();
270 this->Parser = new CommandParser(this);
271 this->Timers = new TimerManager();
272 this->XLines = new XLineManager(this);
273 Config->ClearStack();
274 Config->Read(true, NULL);
276 this->ModeGrok = new ModeParser(this);
277 this->AddServerName(Config->ServerName);
279 InitializeDisabledCommands(Config->DisabledCommands, this);
280 stats->BoundPortCount = BindPorts(true);
282 for(int t = 0; t < 255; t++)
283 Config->global_implementation[t] = 0;
285 memset(&Config->implement_lists,0,sizeof(Config->implement_lists));
288 this->SetSignals(SEGVHandler);
291 if (!this->DaemonSeed())
293 printf("ERROR: could not go into daemon mode. Shutting down.\n");
298 /* Because of limitations in kqueue on freebsd, we must fork BEFORE we
299 * initialize the socket engine.
301 SocketEngineFactory* SEF = new SocketEngineFactory();
302 SE = SEF->Create(this);
305 /* We must load the modules AFTER initializing the socket engine, now */
310 std::string InspIRCd::GetVersionString()
312 char versiondata[MAXBUF];
313 char dnsengine[] = "singlethread-object";
314 if (*Config->CustomVersion)
316 snprintf(versiondata,MAXBUF,"%s %s :%s",VERSION,Config->ServerName,Config->CustomVersion);
320 snprintf(versiondata,MAXBUF,"%s %s :%s [FLAGS=%lu,%s,%s]",VERSION,Config->ServerName,SYSTEM,(unsigned long)OPTIMISATION,SE->GetName().c_str(),dnsengine);
325 char* InspIRCd::ModuleError()
330 void InspIRCd::EraseFactory(int j)
333 for (std::vector<ircd_module*>::iterator t = factory.begin(); t != factory.end(); t++)
338 factory.push_back(NULL);
345 void InspIRCd::EraseModule(int j)
348 for (ModuleList::iterator m = modules.begin(); m!= modules.end(); m++)
354 modules.push_back(NULL);
360 for (std::vector<std::string>::iterator v = Config->module_names.begin(); v != Config->module_names.end(); v++)
364 Config->module_names.erase(v);
372 void InspIRCd::MoveTo(std::string modulename,int slot)
374 unsigned int v2 = 256;
375 for (unsigned int v = 0; v < Config->module_names.size(); v++)
377 if (Config->module_names[v] == modulename)
379 // found an instance, swap it with the item at the end
384 if ((v2 != (unsigned int)slot) && (v2 < 256))
386 // Swap the module names over
387 Config->module_names[v2] = Config->module_names[slot];
388 Config->module_names[slot] = modulename;
389 // now swap the module factories
390 ircd_module* temp = factory[v2];
391 factory[v2] = factory[slot];
392 factory[slot] = temp;
393 // now swap the module objects
394 Module* temp_module = modules[v2];
395 modules[v2] = modules[slot];
396 modules[slot] = temp_module;
397 // now swap the implement lists (we dont
398 // need to swap the global or recount it)
399 for (int n = 0; n < 255; n++)
401 char x = Config->implement_lists[v2][n];
402 Config->implement_lists[v2][n] = Config->implement_lists[slot][n];
403 Config->implement_lists[slot][n] = x;
408 ServerInstance->Log(DEBUG,"Move of %s to slot failed!",modulename.c_str());
412 void InspIRCd::MoveAfter(std::string modulename, std::string after)
414 for (unsigned int v = 0; v < Config->module_names.size(); v++)
416 if (Config->module_names[v] == after)
418 MoveTo(modulename, v);
424 void InspIRCd::MoveBefore(std::string modulename, std::string before)
426 for (unsigned int v = 0; v < Config->module_names.size(); v++)
428 if (Config->module_names[v] == before)
432 MoveTo(modulename, v-1);
436 MoveTo(modulename, v);
443 void InspIRCd::MoveToFirst(std::string modulename)
445 MoveTo(modulename,0);
448 void InspIRCd::MoveToLast(std::string modulename)
450 MoveTo(modulename,this->GetModuleCount());
453 void InspIRCd::BuildISupport()
455 // the neatest way to construct the initial 005 numeric, considering the number of configure constants to go in it...
457 v << "WALLCHOPS WALLVOICES MODES=" << MAXMODES << " CHANTYPES=# PREFIX=(ohv)@%+ MAP MAXCHANNELS=" << MAXCHANS << " MAXBANS=60 VBANLIST NICKLEN=" << NICKMAX-1;
458 v << " CASEMAPPING=rfc1459 STATUSMSG=@%+ CHARSET=ascii TOPICLEN=" << MAXTOPIC << " KICKLEN=" << MAXKICK << " MAXTARGETS=" << Config->MaxTargets << " AWAYLEN=";
459 v << MAXAWAY << " CHANMODES=b,k,l,psmnti FNC NETWORK=" << Config->Network << " MAXPARA=32";
460 Config->data005 = v.str();
461 FOREACH_MOD(I_On005Numeric,On005Numeric(Config->data005));
464 bool InspIRCd::UnloadModule(const char* filename)
466 std::string filename_str = filename;
467 for (unsigned int j = 0; j != Config->module_names.size(); j++)
469 if (Config->module_names[j] == filename_str)
471 if (modules[j]->GetVersion().Flags & VF_STATIC)
473 ServerInstance->Log(DEFAULT,"Failed to unload STATIC module %s",filename);
474 snprintf(MODERR,MAXBUF,"Module not unloadable (marked static)");
477 /* Give the module a chance to tidy out all its metadata */
478 for (chan_hash::iterator c = this->chanlist.begin(); c != this->chanlist.end(); c++)
480 modules[j]->OnCleanup(TYPE_CHANNEL,c->second);
482 for (user_hash::iterator u = this->clientlist.begin(); u != this->clientlist.end(); u++)
484 modules[j]->OnCleanup(TYPE_USER,u->second);
487 FOREACH_MOD(I_OnUnloadModule,OnUnloadModule(modules[j],Config->module_names[j]));
489 for(int t = 0; t < 255; t++)
491 Config->global_implementation[t] -= Config->implement_lists[j][t];
494 /* We have to renumber implement_lists after unload because the module numbers change!
496 for(int j2 = j; j2 < 254; j2++)
498 for(int t = 0; t < 255; t++)
500 Config->implement_lists[j2][t] = Config->implement_lists[j2+1][t];
505 ServerInstance->Log(DEBUG,"Removing dependent commands...");
506 Parser->RemoveCommands(filename);
507 ServerInstance->Log(DEBUG,"Deleting module...");
508 this->EraseModule(j);
509 ServerInstance->Log(DEBUG,"Erasing module entry...");
510 this->EraseFactory(j);
511 ServerInstance->Log(DEFAULT,"Module %s unloaded",filename);
517 ServerInstance->Log(DEFAULT,"Module %s is not loaded, cannot unload it!",filename);
518 snprintf(MODERR,MAXBUF,"Module not loaded");
522 bool InspIRCd::LoadModule(const char* filename)
524 char modfile[MAXBUF];
526 strlcpy(modfile,filename,MAXBUF);
528 snprintf(modfile,MAXBUF,"%s/%s",Config->ModPath,filename);
530 std::string filename_str = filename;
533 if (!ServerConfig::DirValid(modfile))
535 ServerInstance->Log(DEFAULT,"Module %s is not within the modules directory.",modfile);
536 snprintf(MODERR,MAXBUF,"Module %s is not within the modules directory.",modfile);
541 ServerInstance->Log(DEBUG,"Loading module: %s",modfile);
543 if (ServerConfig::FileExists(modfile))
546 for (unsigned int j = 0; j < Config->module_names.size(); j++)
548 if (Config->module_names[j] == filename_str)
550 ServerInstance->Log(DEFAULT,"Module %s is already loaded, cannot load a module twice!",modfile);
551 snprintf(MODERR,MAXBUF,"Module already loaded");
557 ircd_module* a = new ircd_module(this, modfile);
558 factory[this->ModCount+1] = a;
559 if (factory[this->ModCount+1]->LastError())
561 ServerInstance->Log(DEFAULT,"Unable to load %s: %s",modfile,factory[this->ModCount+1]->LastError());
562 snprintf(MODERR,MAXBUF,"Loader/Linker error: %s",factory[this->ModCount+1]->LastError());
565 if ((long)factory[this->ModCount+1]->factory != -1)
567 Module* m = factory[this->ModCount+1]->factory->CreateModule(this);
568 modules[this->ModCount+1] = m;
569 /* save the module and the module's classfactory, if
570 * this isnt done, random crashes can occur :/ */
571 Config->module_names.push_back(filename);
573 char* x = &Config->implement_lists[this->ModCount+1][0];
574 for(int t = 0; t < 255; t++)
577 modules[this->ModCount+1]->Implements(x);
579 for(int t = 0; t < 255; t++)
580 Config->global_implementation[t] += Config->implement_lists[this->ModCount+1][t];
584 ServerInstance->Log(DEFAULT,"Unable to load %s",modfile);
585 snprintf(MODERR,MAXBUF,"Factory function failed: Probably missing init_module() entrypoint.");
589 catch (ModuleException& modexcept)
591 ServerInstance->Log(DEFAULT,"Unable to load %s: ",modfile,modexcept.GetReason());
592 snprintf(MODERR,MAXBUF,"Factory function threw an exception: %s",modexcept.GetReason());
599 ServerInstance->Log(DEFAULT,"InspIRCd: startup: Module Not Found %s",modfile);
600 snprintf(MODERR,MAXBUF,"Module file could not be found");
605 FOREACH_MOD(I_OnLoadModule,OnLoadModule(modules[this->ModCount],filename_str));
606 // now work out which modules, if any, want to move to the back of the queue,
607 // and if they do, move them there.
608 std::vector<std::string> put_to_back;
609 std::vector<std::string> put_to_front;
610 std::map<std::string,std::string> put_before;
611 std::map<std::string,std::string> put_after;
612 for (unsigned int j = 0; j < Config->module_names.size(); j++)
614 if (modules[j]->Prioritize() == PRIORITY_LAST)
616 put_to_back.push_back(Config->module_names[j]);
618 else if (modules[j]->Prioritize() == PRIORITY_FIRST)
620 put_to_front.push_back(Config->module_names[j]);
622 else if ((modules[j]->Prioritize() & 0xFF) == PRIORITY_BEFORE)
624 put_before[Config->module_names[j]] = Config->module_names[modules[j]->Prioritize() >> 8];
626 else if ((modules[j]->Prioritize() & 0xFF) == PRIORITY_AFTER)
628 put_after[Config->module_names[j]] = Config->module_names[modules[j]->Prioritize() >> 8];
631 for (unsigned int j = 0; j < put_to_back.size(); j++)
633 MoveToLast(put_to_back[j]);
635 for (unsigned int j = 0; j < put_to_front.size(); j++)
637 MoveToFirst(put_to_front[j]);
639 for (std::map<std::string,std::string>::iterator j = put_before.begin(); j != put_before.end(); j++)
641 MoveBefore(j->first,j->second);
643 for (std::map<std::string,std::string>::iterator j = put_after.begin(); j != put_after.end(); j++)
645 MoveAfter(j->first,j->second);
651 void InspIRCd::DoOneIteration(bool process_module_sockets)
653 int activefds[MAX_DESCRIPTORS];
657 InspSocket* s = NULL;
658 InspSocket* s_del = NULL;
659 unsigned int numberactive;
660 insp_sockaddr sock_us; // our port number
661 socklen_t uslen; // length of our port number
663 /* time() seems to be a pretty expensive syscall, so avoid calling it too much.
664 * Once per loop iteration is pleanty.
669 /* Run background module timers every few seconds
670 * (the docs say modules shouldnt rely on accurate
671 * timing using this event, so we dont have to
672 * time this exactly).
674 if (((TIME % 5) == 0) && (!expire_run))
676 XLines->expire_lines();
677 if (process_module_sockets)
679 FOREACH_MOD(I_OnBackgroundTimer,OnBackgroundTimer(TIME));
681 Timers->TickMissedTimers(TIME);
685 else if ((TIME % 5) == 1)
690 if (iterations++ == 15)
693 this->DoBackgroundUserStuff(TIME);
696 /* Once a second, do the background processing */
700 WriteOpers("*** \002EH?!\002 -- Time is flowing BACKWARDS in this dimension! Clock drifted backwards %d secs.",abs(OLDTIME-TIME));
701 if ((TIME % 3600) == 0)
703 irc::whowas::MaintainWhoWas(TIME);
707 /* Process timeouts on module sockets each time around
708 * the loop. There shouldnt be many module sockets, at
709 * most, 20 or so, so this won't be much of a performance
712 if (process_module_sockets)
713 this->DoSocketTimeouts(TIME);
715 Timers->TickTimers(TIME);
717 /* Call the socket engine to wait on the active
718 * file descriptors. The socket engine has everything's
719 * descriptors in its list... dns, modules, users,
720 * servers... so its nice and easy, just one call.
722 if (!(numberactive = SE->Wait(activefds)))
726 * Now process each of the fd's. For users, we have a fast
727 * lookup table which can find a user by file descriptor, so
728 * processing them by fd isnt expensive. If we have a lot of
729 * listening ports or module sockets though, things could get
732 ServerInstance->Log(DEBUG,"There are %d fd's to process.",numberactive);
734 for (unsigned int activefd = 0; activefd < numberactive; activefd++)
736 int socket_type = SE->GetType(activefds[activefd]);
741 ServerInstance->Log(DEBUG,"Type: X_ESTAB_CLIENT: fd=%d",activefds[activefd]);
742 cu = this->fd_ref_table[activefds[activefd]];
744 this->ProcessUser(cu);
750 ServerInstance->Log(DEBUG,"Type: X_ESTAB_MODULE: fd=%d",activefds[activefd]);
752 if (!process_module_sockets)
755 /* Process module-owned sockets.
756 * Modules are encouraged to inherit their sockets from
757 * InspSocket so we can process them neatly like this.
759 s = this->socket_ref[activefds[activefd]];
761 if ((s) && (!s->Poll()))
763 ServerInstance->Log(DEBUG,"Socket poll returned false, close and bail");
764 SE->DelFd(s->GetFd());
765 this->socket_ref[activefds[activefd]] = NULL;
766 for (std::vector<InspSocket*>::iterator a = module_sockets.begin(); a < module_sockets.end(); a++)
769 if ((s_del) && (s_del->GetFd() == activefds[activefd]))
771 module_sockets.erase(a);
780 ServerInstance->Log(DEBUG,"WTF, X_ESTAB_MODULE for nonexistent InspSocket, removed!");
781 SE->DelFd(s->GetFd());
786 /* Handles instances of the Resolver class,
787 * a simple class extended by modules and the core for
788 * nonblocking resolving of addresses.
790 this->Res->MarshallReads(activefds[activefd]);
795 ServerInstance->Log(DEBUG,"Type: X_LISTEN: fd=%d",activefds[activefd]);
797 /* It's a listener */
798 uslen = sizeof(sock_us);
799 length = sizeof(client);
800 incomingSockfd = accept (activefds[activefd],(struct sockaddr*)&client,&length);
802 if ((incomingSockfd > -1) && (!getsockname(incomingSockfd,(sockaddr*)&sock_us,&uslen)))
805 in_port = ntohs(sock_us.sin6_port);
807 in_port = ntohs(sock_us.sin_port);
809 ServerInstance->Log(DEBUG,"Accepted socket %d",incomingSockfd);
810 /* Years and years ago, we used to resolve here
811 * using gethostbyaddr(). That is sucky and we
812 * don't do that any more...
814 NonBlocking(incomingSockfd);
815 if (Config->GetIOHook(in_port))
820 Config->GetIOHook(in_port)->OnRawSocketAccept(incomingSockfd, insp_ntoa(client.sin6_addr), in_port);
822 Config->GetIOHook(in_port)->OnRawSocketAccept(incomingSockfd, insp_ntoa(client.sin_addr), in_port);
825 catch (ModuleException& modexcept)
827 ServerInstance->Log(DEBUG,"Module exception cought: %s",modexcept.GetReason());
830 stats->statsAccept++;
832 ServerInstance->Log(DEBUG,"Add ipv6 client");
833 userrec::AddClient(this, incomingSockfd, in_port, false, client.sin6_addr);
835 ServerInstance->Log(DEBUG,"Add ipv4 client");
836 userrec::AddClient(this, incomingSockfd, in_port, false, client.sin_addr);
838 ServerInstance->Log(DEBUG,"Adding client on port %d fd=%d",in_port,incomingSockfd);
842 ServerInstance->Log(DEBUG,"Accept failed on fd %d: %s",incomingSockfd,strerror(errno));
843 shutdown(incomingSockfd,2);
844 close(incomingSockfd);
845 stats->statsRefused++;
850 /* Something went wrong if we're in here.
851 * In fact, so wrong, im not quite sure
852 * what we would do, so for now, its going
853 * to safely do bugger all.
855 ServerInstance->Log(DEBUG,"Type: X_WHAT_THE_FUCK_BBQ: fd=%d",activefds[activefd]);
856 SE->DelFd(activefds[activefd]);
862 bool InspIRCd::IsIdent(const char* n)
867 for (char* i = (char*)n; *i; i++)
869 if ((*i >= 'A') && (*i <= '}'))
873 if (((*i >= '0') && (*i <= '9')) || (*i == '-') || (*i == '.'))
883 bool InspIRCd::IsNick(const char* n)
889 for (char* i = (char*)n; *i; i++, p++)
891 /* "A"-"}" can occur anywhere in a nickname */
892 if ((*i >= 'A') && (*i <= '}'))
896 /* "0"-"9", "-" can occur anywhere BUT the first char of a nickname */
897 if ((((*i >= '0') && (*i <= '9')) || (*i == '-')) && (i > n))
901 /* invalid character! abort */
904 return (p < NICKMAX - 1);
909 this->Res = new DNS(this);
911 ServerInstance->Log(DEBUG,"RES: %08x",this->Res);
913 this->LoadAllModules();
915 /* Just in case no modules were loaded - fix for bug #101 */
916 this->BuildISupport();
918 if (!stats->BoundPortCount)
920 printf("\nI couldn't bind any ports! Are you sure you didn't start InspIRCd twice?\n");
924 /* Add the listening sockets used for client inbound connections
925 * to the socket engine
927 ServerInstance->Log(DEBUG,"%d listeners",stats->BoundPortCount);
928 for (unsigned long count = 0; count < stats->BoundPortCount; count++)
930 ServerInstance->Log(DEBUG,"Add listener: %d",Config->openSockfd[count]);
931 if (!SE->AddFd(Config->openSockfd[count],true,X_LISTEN))
933 printf("\nEH? Could not add listener to socketengine. You screwed up, aborting.\n");
945 printf("\nInspIRCd is now running!\n");
947 this->WritePID(Config->PID);
949 /* main loop, this never returns */
955 DoOneIteration(true);
957 /* This is never reached -- we hope! */
961 /**********************************************************************************/
964 * An ircd in four lines! bwahahaha. ahahahahaha. ahahah *cough*.
967 int main(int argc, char** argv)
969 /* This is a MatchCIDR() test suite -
970 printf("Should be 0: %d\n",MatchCIDR("127.0.0.1","1.2.3.4/8"));
971 printf("Should be 1: %d\n",MatchCIDR("127.0.0.1","127.0.0.0/8"));
972 printf("Should be 1: %d\n",MatchCIDR("127.0.0.1","127.0.0.0/18"));
973 printf("Should be 0: %d\n",MatchCIDR("3ffe::0","2fc9::0/16"));
974 printf("Should be 1: %d\n",MatchCIDR("3ffe:1:3::0", "3ffe:1::0/32"));
981 ServerInstance = new InspIRCd(argc, argv);
982 ServerInstance->Run();
983 DELETE(ServerInstance);
985 catch (std::bad_alloc&)
987 ServerInstance->Log(SPARSE,"You are out of memory! (got exception std::bad_alloc!)");
988 ServerInstance->SendError("**** OUT OF MEMORY **** We're gonna need a bigger boat!");
993 ServerInstance->Log(SPARSE,"Uncaught exception, aborting.");
994 ServerInstance->SendError("Server terminating due to uncaught exception.");
999 /* this returns true when all modules are satisfied that the user should be allowed onto the irc server
1000 * (until this returns true, a user will block in the waiting state, waiting to connect up to the
1001 * registration timeout maximum seconds)
1003 bool InspIRCd::AllModulesReportReady(userrec* user)
1005 if (!Config->global_implementation[I_OnCheckReady])
1008 for (int i = 0; i <= this->GetModuleCount(); i++)
1010 if (Config->implement_lists[i][I_OnCheckReady])
1012 int res = modules[i]->OnCheckReady(user);
1020 int InspIRCd::GetModuleCount()
1022 return this->ModCount;
1025 time_t InspIRCd::Time()