]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/server.cpp
Remove InspIRCd* parameters and fields
[user/henk/code/inspircd.git] / src / server.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 /* $Core */
15
16 #include <signal.h>
17 #include "exitcodes.h"
18 #include "inspircd.h"
19 #include "inspircd_version.h"
20
21
22 void InspIRCd::SignalHandler(int signal)
23 {
24         switch (signal)
25         {
26                 case SIGHUP:
27                         Rehash("due to SIGHUP");
28                         break;
29                 case SIGTERM:
30                         Exit(signal);
31                         break;
32         }
33 }
34
35 void InspIRCd::Exit(int status)
36 {
37 #ifdef WINDOWS
38         if (WindowsIPC)
39                 delete WindowsIPC;
40         SetServiceStopped(status);
41 #endif
42         if (this)
43         {
44                 this->SendError("Exiting with status " + ConvToStr(status) + " (" + std::string(ExitCodes[status]) + ")");
45                 this->Cleanup();
46                 delete this;
47         }
48         exit (status);
49 }
50
51 void RehashHandler::Call(const std::string &reason)
52 {
53         ServerInstance->SNO->WriteToSnoMask('a', "Rehashing config file %s %s",ServerConfig::CleanFilename(ServerInstance->ConfigFileName.c_str()), reason.c_str());
54         ServerInstance->RehashUsersAndChans();
55         FOREACH_MOD(I_OnGarbageCollect, OnGarbageCollect());
56         if (!ServerInstance->ConfigThread)
57         {
58                 ServerInstance->ConfigThread = new ConfigReaderThread("");
59                 ServerInstance->Threads->Start(ServerInstance->ConfigThread);
60         }
61 }
62
63 void InspIRCd::RehashServer()
64 {
65         this->Rehash("");
66 }
67
68 std::string InspIRCd::GetVersionString()
69 {
70         char versiondata[MAXBUF];
71         if (*Config->CustomVersion)
72         {
73                 snprintf(versiondata,MAXBUF,"InspIRCd-2.0 %s :%s",Config->ServerName,Config->CustomVersion);
74         }
75         else
76         {
77                 snprintf(versiondata,MAXBUF,"InspIRCd-2.0 %s :%s (%s) [FLAGS=%s,%s,%s]",Config->ServerName,SYSTEM,VERSION,REVISION,SE->GetName().c_str(),Config->sid);
78         }
79         return versiondata;
80 }
81
82 void InspIRCd::BuildISupport()
83 {
84         // the neatest way to construct the initial 005 numeric, considering the number of configure constants to go in it...
85         std::stringstream v;
86         v << "WALLCHOPS WALLVOICES MODES=" << Config->Limits.MaxModes - 1 << " CHANTYPES=# PREFIX=" << this->Modes->BuildPrefixes() << " MAP MAXCHANNELS=" << Config->MaxChans << " MAXBANS=60 VBANLIST NICKLEN=" << Config->Limits.NickMax - 1;
87         v << " CASEMAPPING=rfc1459 STATUSMSG=@" << (this->Config->AllowHalfop ? "%" : "") << "+ CHARSET=ascii TOPICLEN=" << Config->Limits.MaxTopic - 1 << " KICKLEN=" << Config->Limits.MaxKick - 1 << " MAXTARGETS=" << Config->MaxTargets - 1;
88         v << " AWAYLEN=" << Config->Limits.MaxAway - 1 << " CHANMODES=" << this->Modes->GiveModeList(MASK_CHANNEL) << " FNC NETWORK=" << Config->Network << " MAXPARA=32 ELIST=MU";
89         Config->data005 = v.str();
90         FOREACH_MOD(I_On005Numeric,On005Numeric(Config->data005));
91         Config->Update005();
92 }
93
94 std::string InspIRCd::GetRevision()
95 {
96         return REVISION;
97 }
98
99 void InspIRCd::AddServerName(const std::string &servername)
100 {
101         servernamelist::iterator itr = servernames.begin();
102         for(; itr != servernames.end(); ++itr)
103                 if(**itr == servername)
104                         return;
105
106         std::string * ns = new std::string(servername);
107         servernames.push_back(ns);
108 }
109
110 const char* InspIRCd::FindServerNamePtr(const std::string &servername)
111 {
112         servernamelist::iterator itr = servernames.begin();
113         for(; itr != servernames.end(); ++itr)
114                 if(**itr == servername)
115                         return (*itr)->c_str();
116
117         servernames.push_back(new std::string(servername));
118         itr = --servernames.end();
119         return (*itr)->c_str();
120 }
121
122 bool InspIRCd::FindServerName(const std::string &servername)
123 {
124         servernamelist::iterator itr = servernames.begin();
125         for(; itr != servernames.end(); ++itr)
126                 if(**itr == servername)
127                         return true;
128         return false;
129 }
130
131 void InspIRCd::IncrementUID(int pos)
132 {
133         /*
134          * Okay. The rules for generating a UID go like this...
135          * -- > ABCDEFGHIJKLMNOPQRSTUVWXYZ --> 012345679 --> WRAP
136          * That is, we start at A. When we reach Z, we go to 0. At 9, we go to
137          * A again, in an iterative fashion.. so..
138          * AAA9 -> AABA, and so on. -- w00t
139          */
140         if (pos == 3)
141         {
142                 // At pos 3, if we hit '9', we've run out of available UIDs, and need to reset to AAA..AAA.
143                 if (current_uid[pos] == '9')
144                 {
145                         for (int i = 3; i < UUID_LENGTH; i++)
146                         {
147                                 current_uid[i] = 'A';
148                                 pos  = UUID_LENGTH - 1;
149                         }
150                 }
151                 else
152                 {
153                         // Buf if we haven't, just keep incrementing merrily.
154                         current_uid[pos]++;
155                 }
156         }
157         else
158         {
159                 // If we hit Z, wrap around to 0.
160                 if (current_uid[pos] == 'Z')
161                 {
162                         current_uid[pos] = '0';
163                 }
164                 else if (current_uid[pos] == '9')
165                 {
166                         /*
167                          * Or, if we hit 9, wrap around to pos = 'A' and (pos - 1)++,
168                          * e.g. A9 -> BA -> BB ..
169                          */
170                         current_uid[pos] = 'A';
171                         this->IncrementUID(pos - 1);
172                 }
173                 else
174                 {
175                         // Anything else, nobody gives a shit. Just increment.
176                         current_uid[pos]++;
177                 }
178         }
179 }
180
181 /*
182  * Retrieve the next valid UUID that is free for this server.
183  */
184 std::string InspIRCd::GetUID()
185 {
186         static int curindex = -1;
187
188         /*
189          * If -1, we're setting up. Copy SID into the first three digits, 9's to the rest, null term at the end
190          * Why 9? Well, we increment before we find, otherwise we have an unnecessary copy, and I want UID to start at AAA..AA
191          * and not AA..AB. So by initialising to 99999, we force it to rollover to AAAAA on the first IncrementUID call.
192          * Kind of silly, but I like how it looks.
193          *              -- w
194          */
195         if (curindex == -1)
196         {
197                 current_uid[0] = Config->sid[0];
198                 current_uid[1] = Config->sid[1];
199                 current_uid[2] = Config->sid[2];
200
201                 for (int i = 3; i < (UUID_LENGTH - 1); i++)
202                         current_uid[i] = '9';
203
204                 curindex = UUID_LENGTH - 2; // look at the end of the string now kthx, ignore null
205
206                 // Null terminator. Important.
207                 current_uid[UUID_LENGTH - 1] = '\0';
208         }
209
210         while (1)
211         {
212                 // Add one to the last UID
213                 this->IncrementUID(curindex);
214
215                 if (this->FindUUID(current_uid))
216                 {
217                         /*
218                          * It's in use. We need to try the loop again.
219                          */
220                         continue;
221                 }
222
223                 return current_uid;
224         }
225
226         /* not reached. */
227         return "";
228 }
229
230
231