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