]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/server.cpp
Move _ext to replace the original, SVSSILENCE comes next
[user/henk/code/inspircd.git] / src / server.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 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 /* $Core: libIRCDserver */
15
16 #include <signal.h>
17 #include "exitcodes.h"
18 #include "inspircd.h"
19
20
21 void InspIRCd::SignalHandler(int signal)
22 {
23         switch (signal)
24         {
25                 case SIGHUP:
26                         Rehash();
27                         break;
28                 case SIGTERM:
29                         Exit(signal);
30                         break;
31         }
32 }
33
34 void InspIRCd::Exit(int status)
35 {
36 #ifdef WINDOWS
37         delete WindowsIPC;
38 #endif
39         if (this)
40         {
41                 this->SendError("Exiting with status " + ConvToStr(status) + " (" + std::string(ExitCodes[status]) + ")");
42                 this->Cleanup();
43         }
44         exit (status);
45 }
46
47 void InspIRCd::Rehash()
48 {
49         this->SNO->WriteToSnoMask('A', "Rehashing config file %s due to SIGHUP",ServerConfig::CleanFilename(this->ConfigFileName));
50         this->RehashUsersAndChans();
51         FOREACH_MOD_I(this, I_OnGarbageCollect, OnGarbageCollect());
52         if (!this->ConfigThread)
53         {
54                 Config->RehashUser = NULL;
55                 Config->RehashParameter = "";
56
57                 ConfigThread = new ConfigReaderThread(this, false, NULL);
58                 Threads->Create(ConfigThread);
59         }
60 }
61
62 void InspIRCd::RehashServer()
63 {
64         this->SNO->WriteToSnoMask('A', "Rehashing config file");
65         this->RehashUsersAndChans();
66         if (!this->ConfigThread)
67         {
68                 Config->RehashUser = NULL;
69                 Config->RehashParameter = "";
70
71                 ConfigThread = new ConfigReaderThread(this, false, NULL);
72                 Threads->Create(ConfigThread);
73         }
74 }
75
76 std::string InspIRCd::GetVersionString()
77 {
78         char versiondata[MAXBUF];
79         if (*Config->CustomVersion)
80         {
81                 snprintf(versiondata,MAXBUF,"%s %s :%s",VERSION,Config->ServerName,Config->CustomVersion);
82         }
83         else
84         {
85                 snprintf(versiondata,MAXBUF,"%s %s :%s [FLAGS=%s,%s,%s]",VERSION,Config->ServerName,SYSTEM,REVISION,SE->GetName().c_str(),Config->sid);
86         }
87         return versiondata;
88 }
89
90 void InspIRCd::BuildISupport()
91 {
92         // the neatest way to construct the initial 005 numeric, considering the number of configure constants to go in it...
93         std::stringstream v;
94         v << "WALLCHOPS WALLVOICES MODES=" << MAXMODES << " CHANTYPES=# PREFIX=" << this->Modes->BuildPrefixes() << " MAP MAXCHANNELS=" << Config->MaxChans << " MAXBANS=60 VBANLIST NICKLEN=" << NICKMAX-1;
95         v << " CASEMAPPING=rfc1459 STATUSMSG=@" << (this->Config->AllowHalfop ? "%" : "") << "+ CHARSET=ascii TOPICLEN=" << MAXTOPIC << " KICKLEN=" << MAXKICK << " MAXTARGETS=" << Config->MaxTargets;
96         v << " AWAYLEN=" << MAXAWAY << " CHANMODES=" << this->Modes->ChanModes() << " FNC NETWORK=" << Config->Network << " MAXPARA=32 ELIST=MU";
97         Config->data005 = v.str();
98         FOREACH_MOD_I(this,I_On005Numeric,On005Numeric(Config->data005));
99         Config->Update005();
100 }
101
102 std::string InspIRCd::GetRevision()
103 {
104         return REVISION;
105 }
106
107 void InspIRCd::AddServerName(const std::string &servername)
108 {
109         servernamelist::iterator itr = servernames.begin();
110         for(; itr != servernames.end(); ++itr)
111                 if(**itr == servername)
112                         return;
113
114         std::string * ns = new std::string(servername);
115         servernames.push_back(ns);
116 }
117
118 const char* InspIRCd::FindServerNamePtr(const std::string &servername)
119 {
120         servernamelist::iterator itr = servernames.begin();
121         for(; itr != servernames.end(); ++itr)
122                 if(**itr == servername)
123                         return (*itr)->c_str();
124
125         servernames.push_back(new std::string(servername));
126         itr = --servernames.end();
127         return (*itr)->c_str();
128 }
129
130 bool InspIRCd::FindServerName(const std::string &servername)
131 {
132         servernamelist::iterator itr = servernames.begin();
133         for(; itr != servernames.end(); ++itr)
134                 if(**itr == servername)
135                         return true;
136         return false;
137 }
138
139 /*
140  * Retrieve the next valid UUID that is free for this server.
141  */
142 std::string InspIRCd::GetUID()
143 {
144         int i;
145
146         /*
147          * This will only finish once we return a UUID that is not in use.
148          */
149         while (1)
150         {
151                 /*
152                  * Okay. The rules for generating a UID go like this...
153                  * -- > ABCDEFGHIJKLMNOPQRSTUVWXYZ --> 012345679 --> WRAP
154                  * That is, we start at A. When we reach Z, we go to 0. At 9, we go to
155                  * A again, in an iterative fashion.. so..
156                  * AAA9 -> AABA, and so on. -- w00t
157                  */
158
159                 /* start at the end of the current UID string, work backwards. don't trample on SID! */
160                 for (i = UUID_LENGTH - 2; i > 3; i--)
161                 {
162                         if (current_uid[i] == 'Z')
163                         {
164                                 /* reached the end of alphabetical, go to numeric range */
165                                 current_uid[i] = '0';
166                         }
167                         else if (current_uid[i] == '9')
168                         {
169                                 /* we reached the end of the sequence, set back to A */
170                                 current_uid[i] = 'A';
171
172                                 /* we also need to increment the next digit. */
173                                 continue;
174                         }
175                         else
176                         {
177                                 /* most common case .. increment current UID */
178                                 current_uid[i]++;
179                         }
180
181                         if (current_uid[3] == 'Z')
182                         {
183                                 /*
184                                  * Ugh. We have run out of room.. roll back around to the
185                                  * start of the UUID namespace. -- w00t
186                                  */
187                                 this->InitialiseUID();
188
189                                 /*
190                                  * and now we need to break the inner for () to continue the while (),
191                                  * which will start the checking process over again. -- w00t
192                                  */
193                                 break;
194                                 
195                         }
196                         
197                         if (this->FindUUID(current_uid))
198                         {
199                                 /*
200                                  * It's in use. We need to try the loop again.
201                                  */
202                                 continue;
203                         }
204
205                         return current_uid;
206                 }
207         }
208
209         /* not reached. */
210         return "";
211 }
212
213
214