]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/server.cpp
Merge pull request #320 from ChrisTX/insp20+cleanupwin
[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 #include "inspircd_version.h"
27
28 void InspIRCd::SignalHandler(int signal)
29 {
30 #ifdef _WIN32
31         if (signal == SIGTERM)
32 #else
33         if (signal == SIGHUP)
34         {
35                 Rehash("Caught SIGHUP");
36         }
37         else if (signal == SIGTERM)
38 #endif
39         {
40                 Exit(signal);
41         }
42 }
43
44 void InspIRCd::Exit(int status)
45 {
46 #ifdef _WIN32
47         SetServiceStopped(status);
48 #endif
49         if (this)
50         {
51                 this->SendError("Exiting with status " + ConvToStr(status) + " (" + std::string(ExitCodes[status]) + ")");
52                 this->Cleanup();
53                 delete this;
54                 ServerInstance = NULL;
55         }
56         exit (status);
57 }
58
59 void RehashHandler::Call(const std::string &reason)
60 {
61         ServerInstance->SNO->WriteToSnoMask('a', "Rehashing config file %s %s",ServerConfig::CleanFilename(ServerInstance->ConfigFileName.c_str()), reason.c_str());
62         ServerInstance->RehashUsersAndChans();
63         FOREACH_MOD(I_OnGarbageCollect, OnGarbageCollect());
64         if (!ServerInstance->ConfigThread)
65         {
66                 ServerInstance->ConfigThread = new ConfigReaderThread("");
67                 ServerInstance->Threads->Start(ServerInstance->ConfigThread);
68         }
69 }
70
71 std::string InspIRCd::GetVersionString(bool operstring)
72 {
73         char versiondata[MAXBUF];
74         if (operstring)
75         {
76                 std::string sename = SE->GetName();
77                 snprintf(versiondata,MAXBUF,"%s %s :%s [%s,%s,%s]",VERSION, Config->ServerName.c_str(), SYSTEM,REVISION, sename.c_str(), Config->sid.c_str());
78         }
79         else
80                 snprintf(versiondata,MAXBUF,"%s %s :%s",BRANCH,Config->ServerName.c_str(),Config->CustomVersion.c_str());
81         return versiondata;
82 }
83
84 const char InspIRCd::LogHeader[] =
85         "Log started for " VERSION " (" REVISION ", " MODULE_INIT_STR ")"
86         " - compiled on " SYSTEM;
87
88 void InspIRCd::BuildISupport()
89 {
90         // the neatest way to construct the initial 005 numeric, considering the number of configure constants to go in it...
91         std::stringstream v;
92         v << "WALLCHOPS WALLVOICES MODES=" << Config->Limits.MaxModes << " CHANTYPES=# PREFIX=" << this->Modes->BuildPrefixes() << " MAP MAXCHANNELS=" << Config->MaxChans << " MAXBANS=60 VBANLIST NICKLEN=" << Config->Limits.NickMax;
93         v << " CASEMAPPING=rfc1459 STATUSMSG=" << Modes->BuildPrefixes(false) << " CHARSET=ascii TOPICLEN=" << Config->Limits.MaxTopic << " KICKLEN=" << Config->Limits.MaxKick << " MAXTARGETS=" << Config->MaxTargets;
94         v << " AWAYLEN=" << Config->Limits.MaxAway << " CHANMODES=" << this->Modes->GiveModeList(MASK_CHANNEL) << " FNC NETWORK=" << Config->Network << " MAXPARA=32 ELIST=MU" << " CHANNELLEN=" << Config->Limits.ChanMax;
95         Config->data005 = v.str();
96         FOREACH_MOD(I_On005Numeric,On005Numeric(Config->data005));
97         Config->Update005();
98 }
99
100 void InspIRCd::IncrementUID(int pos)
101 {
102         /*
103          * Okay. The rules for generating a UID go like this...
104          * -- > ABCDEFGHIJKLMNOPQRSTUVWXYZ --> 012345679 --> WRAP
105          * That is, we start at A. When we reach Z, we go to 0. At 9, we go to
106          * A again, in an iterative fashion.. so..
107          * AAA9 -> AABA, and so on. -- w00t
108          */
109         if ((pos == 3) && (current_uid[3] == '9'))
110         {
111                 // At pos 3, if we hit '9', we've run out of available UIDs, and need to reset to AAA..AAA.
112                 for (int i = 3; i < UUID_LENGTH-1; i++)
113                 {
114                         current_uid[i] = 'A';
115                 }
116         }
117         else
118         {
119                 // If we hit Z, wrap around to 0.
120                 if (current_uid[pos] == 'Z')
121                 {
122                         current_uid[pos] = '0';
123                 }
124                 else if (current_uid[pos] == '9')
125                 {
126                         /*
127                          * Or, if we hit 9, wrap around to pos = 'A' and (pos - 1)++,
128                          * e.g. A9 -> BA -> BB ..
129                          */
130                         current_uid[pos] = 'A';
131                         this->IncrementUID(pos - 1);
132                 }
133                 else
134                 {
135                         // Anything else, nobody gives a shit. Just increment.
136                         current_uid[pos]++;
137                 }
138         }
139 }
140
141 /*
142  * Retrieve the next valid UUID that is free for this server.
143  */
144 std::string InspIRCd::GetUID()
145 {
146         static bool inited = false;
147
148         /*
149          * If we're setting up, copy SID into the first three digits, 9's to the rest, null term at the end
150          * Why 9? Well, we increment before we find, otherwise we have an unnecessary copy, and I want UID to start at AAA..AA
151          * and not AA..AB. So by initialising to 99999, we force it to rollover to AAAAA on the first IncrementUID call.
152          * Kind of silly, but I like how it looks.
153          *              -- w
154          */
155         if (!inited)
156         {
157                 inited = true;
158                 current_uid[0] = Config->sid[0];
159                 current_uid[1] = Config->sid[1];
160                 current_uid[2] = Config->sid[2];
161
162                 for (int i = 3; i < (UUID_LENGTH - 1); i++)
163                         current_uid[i] = '9';
164
165                 // Null terminator. Important.
166                 current_uid[UUID_LENGTH - 1] = '\0';
167         }
168
169         while (1)
170         {
171                 // Add one to the last UID
172                 this->IncrementUID(UUID_LENGTH - 2);
173
174                 if (this->FindUUID(current_uid))
175                 {
176                         /*
177                          * It's in use. We need to try the loop again.
178                          */
179                         continue;
180                 }
181
182                 return current_uid;
183         }
184
185         /* not reached. */
186         return "";
187 }
188
189
190