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