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