]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/server.cpp
Merge pull request #1220 from SaberUK/master+isupport
[user/henk/code/inspircd.git] / src / server.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc>
6  *   Copyright (C) 2007-2008 Robin Burchell <robin+git@viroteck.net>
7  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
8  *
9  * This file is part of InspIRCd.  InspIRCd is free software: you can
10  * redistribute it and/or modify it under the terms of the GNU General Public
11  * License as published by the Free Software Foundation, version 2.
12  *
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22
23 #include <signal.h>
24 #include "exitcodes.h"
25 #include "inspircd.h"
26
27 void InspIRCd::SignalHandler(int signal)
28 {
29 #ifdef _WIN32
30         if (signal == SIGTERM)
31 #else
32         if (signal == SIGHUP)
33         {
34                 ServerInstance->SNO->WriteGlobalSno('a', "Rehashing due to SIGHUP");
35                 Rehash();
36         }
37         else if (signal == SIGTERM)
38 #endif
39         {
40                 Exit(EXIT_STATUS_SIGTERM);
41         }
42 }
43
44 void InspIRCd::Exit(int status)
45 {
46 #ifdef _WIN32
47         SetServiceStopped(status);
48 #endif
49         this->Cleanup();
50         ServerInstance = NULL;
51         delete this;
52         exit (status);
53 }
54
55 void InspIRCd::Rehash(const std::string& uuid)
56 {
57         if (!ServerInstance->ConfigThread)
58         {
59                 ServerInstance->ConfigThread = new ConfigReaderThread(uuid);
60                 ServerInstance->Threads.Start(ServerInstance->ConfigThread);
61         }
62 }
63
64 std::string InspIRCd::GetVersionString(bool getFullVersion)
65 {
66         if (getFullVersion)
67                 return INSPIRCD_VERSION " " + Config->ServerName + " :" INSPIRCD_SYSTEM " [" INSPIRCD_SOCKETENGINE_NAME "," + Config->sid + "]";
68         return INSPIRCD_BRANCH " " + Config->ServerName + " :" + Config->CustomVersion;
69 }
70
71 std::string UIDGenerator::GenerateSID(const std::string& servername, const std::string& serverdesc)
72 {
73         unsigned int sid = 0;
74
75         for (std::string::const_iterator i = servername.begin(); i != servername.end(); ++i)
76                 sid = 5 * sid + *i;
77         for (std::string::const_iterator i = serverdesc.begin(); i != serverdesc.end(); ++i)
78                 sid = 5 * sid + *i;
79
80         std::string sidstr = ConvToStr(sid % 1000);
81         sidstr.insert(0, 3 - sidstr.length(), '0');
82         return sidstr;
83 }
84
85 void UIDGenerator::IncrementUID(unsigned int pos)
86 {
87         /*
88          * Okay. The rules for generating a UID go like this...
89          * -- > ABCDEFGHIJKLMNOPQRSTUVWXYZ --> 012345679 --> WRAP
90          * That is, we start at A. When we reach Z, we go to 0. At 9, we go to
91          * A again, in an iterative fashion.. so..
92          * AAA9 -> AABA, and so on. -- w00t
93          */
94
95         // If we hit Z, wrap around to 0.
96         if (current_uid[pos] == 'Z')
97         {
98                 current_uid[pos] = '0';
99         }
100         else if (current_uid[pos] == '9')
101         {
102                 /*
103                  * Or, if we hit 9, wrap around to pos = 'A' and (pos - 1)++,
104                  * e.g. A9 -> BA -> BB ..
105                  */
106                 current_uid[pos] = 'A';
107                 if (pos == 3)
108                 {
109                         // At pos 3, if we hit '9', we've run out of available UIDs, and reset to AAA..AAA.
110                         return;
111                 }
112                 this->IncrementUID(pos - 1);
113         }
114         else
115         {
116                 // Anything else, nobody gives a shit. Just increment.
117                 current_uid[pos]++;
118         }
119 }
120
121 void UIDGenerator::init(const std::string& sid)
122 {
123         /*
124          * Copy SID into the first three digits, 9's to the rest, null term at the end
125          * Why 9? Well, we increment before we find, otherwise we have an unnecessary copy, and I want UID to start at AAA..AA
126          * and not AA..AB. So by initialising to 99999, we force it to rollover to AAAAA on the first IncrementUID call.
127          * Kind of silly, but I like how it looks.
128          *              -- w
129          */
130
131         current_uid.resize(UUID_LENGTH, '9');
132         current_uid[0] = sid[0];
133         current_uid[1] = sid[1];
134         current_uid[2] = sid[2];
135 }
136
137 /*
138  * Retrieve the next valid UUID that is free for this server.
139  */
140 std::string UIDGenerator::GetUID()
141 {
142         while (1)
143         {
144                 // Add one to the last UID
145                 this->IncrementUID(UUID_LENGTH - 1);
146
147                 if (!ServerInstance->FindUUID(current_uid))
148                         break;
149
150                 /*
151                  * It's in use. We need to try the loop again.
152                  */
153         }
154
155         return current_uid;
156 }
157
158 void ISupportManager::Build()
159 {
160         /**
161          * This is currently the neatest way we can build the initial ISUPPORT map. In
162          * the future we can use an initializer list here.
163          */
164         std::map<std::string, std::string> tokens;
165
166         tokens["AWAYLEN"] = ConvToStr(ServerInstance->Config->Limits.MaxAway);
167         tokens["CASEMAPPING"] = "rfc1459";
168         tokens["CHANLIMIT"] = InspIRCd::Format("#:%u", ServerInstance->Config->MaxChans);
169         tokens["CHANMODES"] = ServerInstance->Modes->GiveModeList(MODETYPE_CHANNEL);
170         tokens["CHANNELLEN"] = ConvToStr(ServerInstance->Config->Limits.ChanMax);
171         tokens["CHANTYPES"] = "#";
172         tokens["ELIST"] = "MU";
173         tokens["KICKLEN"] = ConvToStr(ServerInstance->Config->Limits.MaxKick);
174         tokens["MAXBANS"] = "64"; // TODO: make this a config setting.
175         tokens["MAXTARGETS"] = ConvToStr(ServerInstance->Config->MaxTargets);
176         tokens["MODES"] = ConvToStr(ServerInstance->Config->Limits.MaxModes);
177         tokens["NETWORK"] = ServerInstance->Config->Network;
178         tokens["NICKLEN"] = ConvToStr(ServerInstance->Config->Limits.NickMax);
179         tokens["PREFIX"] = ServerInstance->Modes->BuildPrefixes();
180         tokens["STATUSMSG"] = ServerInstance->Modes->BuildPrefixes(false);
181         tokens["TOPICLEN"] = ConvToStr(ServerInstance->Config->Limits.MaxTopic);
182         tokens["VBANLIST"];
183
184         // Modules can add new tokens and also edit or remove existing tokens
185         FOREACH_MOD(On005Numeric, (tokens));
186
187         // EXTBAN is a special case as we need to sort it and prepend a comma.
188         std::map<std::string, std::string>::iterator extban = tokens.find("EXTBAN");
189         if (extban != tokens.end())
190         {
191                 std::sort(extban->second.begin(), extban->second.end());
192                 extban->second.insert(0, ",");
193         }
194
195         // Transform the map into a list of lines, ready to be sent to clients
196         Numeric::Numeric numeric(RPL_ISUPPORT);
197         unsigned int token_count = 0;
198         cachedlines.clear();
199
200         for (std::map<std::string, std::string>::const_iterator it = tokens.begin(); it != tokens.end(); ++it)
201         {
202                 numeric.push(it->first);
203                 std::string& token = numeric.GetParams().back();
204
205                 // If this token has a value then append a '=' char after the name and then the value itself
206                 if (!it->second.empty())
207                         token.append(1, '=').append(it->second);
208
209                 token_count++;
210
211                 if (token_count % 13 == 12 || it == --tokens.end())
212                 {
213                         // Reached maximum number of tokens for this line or the current token
214                         // is the last one; finalize the line and store it for later use
215                         numeric.push("are supported by this server");
216                         cachedlines.push_back(numeric);
217                         numeric.GetParams().clear();
218                 }
219         }
220 }
221
222 void ISupportManager::SendTo(LocalUser* user)
223 {
224         for (std::vector<Numeric::Numeric>::const_iterator i = cachedlines.begin(); i != cachedlines.end(); ++i)
225                 user->WriteNumeric(*i);
226 }