]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_permchannels.cpp
a4fc6bd099630c52851d49e87eddc3a2d1849449
[user/henk/code/inspircd.git] / src / modules / m_permchannels.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008-2009 Robin Burchell <robin+git@viroteck.net>
6  *
7  * This file is part of InspIRCd.  InspIRCd is free software: you can
8  * redistribute it and/or modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation, version 2.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 #include "inspircd.h"
22 #include "listmode.h"
23 #include <fstream>
24
25
26 /** Handles the +P channel mode
27  */
28 class PermChannel : public ModeHandler
29 {
30  public:
31         PermChannel(Module* Creator)
32                 : ModeHandler(Creator, "permanent", 'P', PARAM_NONE, MODETYPE_CHANNEL)
33         {
34                 oper = true;
35         }
36
37         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string& parameter, bool adding)
38         {
39                 if (adding == channel->IsModeSet(this))
40                         return MODEACTION_DENY;
41
42                 channel->SetMode(this, adding);
43                 if (!adding)
44                         channel->CheckDestroy();
45
46                 return MODEACTION_ALLOW;
47         }
48 };
49
50 // Not in a class due to circular dependancy hell.
51 static std::string permchannelsconf;
52 static bool WriteDatabase(PermChannel& permchanmode, Module* mod, bool save_listmodes)
53 {
54         ChanModeReference ban(mod, "ban");
55         /*
56          * We need to perform an atomic write so as not to fuck things up.
57          * So, let's write to a temporary file, flush it, then rename the file..
58          *     -- w00t
59          */
60
61         // If the user has not specified a configuration file then we don't write one.
62         if (permchannelsconf.empty())
63                 return true;
64
65         std::string permchannelsnewconf = permchannelsconf + ".tmp";
66         std::ofstream stream(permchannelsnewconf.c_str());
67         if (!stream.is_open())
68         {
69                 ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "Cannot create database! %s (%d)", strerror(errno), errno);
70                 ServerInstance->SNO->WriteToSnoMask('a', "database: cannot create new db: %s (%d)", strerror(errno), errno);
71                 return false;
72         }
73
74         stream << "# This file is automatically generated by m_permchannels. Any changes will be overwritten." << std::endl
75                 << "<config format=\"xml\">" << std::endl;
76
77         for (chan_hash::const_iterator i = ServerInstance->chanlist->begin(); i != ServerInstance->chanlist->end(); i++)
78         {
79                 Channel* chan = i->second;
80                 if (!chan->IsModeSet(permchanmode))
81                         continue;
82
83                 std::string chanmodes = chan->ChanModes(true);
84                 if (save_listmodes)
85                 {
86                         std::string modes;
87                         std::string params;
88
89                         const ModeParser::ListModeList& listmodes = ServerInstance->Modes->GetListModes();
90                         for (ModeParser::ListModeList::const_iterator j = listmodes.begin(); j != listmodes.end(); ++j)
91                         {
92                                 ListModeBase* lm = *j;
93                                 ListModeBase::ModeList* list = lm->GetList(chan);
94                                 if (!list || list->empty())
95                                         continue;
96
97                                 size_t n = 0;
98                                 // Append the parameters
99                                 for (ListModeBase::ModeList::const_iterator k = list->begin(); k != list->end(); ++k, n++)
100                                 {
101                                         params += k->mask;
102                                         params += ' ';
103                                 }
104
105                                 // Append the mode letters (for example "IIII", "gg")
106                                 modes.append(n, lm->GetModeChar());
107                         }
108
109                         if (!params.empty())
110                         {
111                                 // Remove the last space
112                                 params.erase(params.end()-1);
113
114                                 // If there is at least a space in chanmodes (that is, a non-listmode has a parameter)
115                                 // insert the listmode mode letters before the space. Otherwise just append them.
116                                 std::string::size_type p = chanmodes.find(' ');
117                                 if (p == std::string::npos)
118                                         chanmodes += modes;
119                                 else
120                                         chanmodes.insert(p, modes);
121
122                                 // Append the listmode parameters (the masks themselves)
123                                 chanmodes += ' ';
124                                 chanmodes += params;
125                         }
126                 }
127
128                 stream << "<permchannels channel=\"" << ServerConfig::Escape(chan->name)
129                         << "\" ts=\"" << chan->age
130                         << "\" topic=\"" << ServerConfig::Escape(chan->topic)
131                         << "\" topicts=\"" << chan->topicset
132                         << "\" topicsetby=\"" << ServerConfig::Escape(chan->setby)
133                         << "\" modes=\"" << ServerConfig::Escape(chanmodes)
134                         << "\">" << std::endl;
135         }
136
137         if (stream.fail())
138         {
139                 ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "Cannot write to new database! %s (%d)", strerror(errno), errno);
140                 ServerInstance->SNO->WriteToSnoMask('a', "database: cannot write to new db: %s (%d)", strerror(errno), errno);
141                 return false;
142         }
143         stream.close();
144
145 #ifdef _WIN32
146         if (remove(permchannelsconf.c_str()))
147         {
148                 ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "Cannot remove old database! %s (%d)", strerror(errno), errno);
149                 ServerInstance->SNO->WriteToSnoMask('a', "database: cannot remove old database: %s (%d)", strerror(errno), errno);
150                 return false;
151         }
152 #endif
153         // Use rename to move temporary to new db - this is guarenteed not to fuck up, even in case of a crash.
154         if (rename(permchannelsnewconf.c_str(), permchannelsconf.c_str()) < 0)
155         {
156                 ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "Cannot move new to old database! %s (%d)", strerror(errno), errno);
157                 ServerInstance->SNO->WriteToSnoMask('a', "database: cannot replace old with new db: %s (%d)", strerror(errno), errno);
158                 return false;
159         }
160
161         return true;
162 }
163
164 class ModulePermanentChannels : public Module
165 {
166         PermChannel p;
167         bool dirty;
168         bool loaded;
169         bool save_listmodes;
170 public:
171
172         ModulePermanentChannels()
173                 : p(this), dirty(false), loaded(false)
174         {
175         }
176
177         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
178         {
179                 ConfigTag* tag = ServerInstance->Config->ConfValue("permchanneldb");
180                 permchannelsconf = tag->getString("filename");
181                 save_listmodes = tag->getBool("listmodes");
182
183                 if (!permchannelsconf.empty())
184                         permchannelsconf = ServerInstance->Config->Paths.PrependConfig(permchannelsconf);
185         }
186
187         void LoadDatabase()
188         {
189                 /*
190                  * Process config-defined list of permanent channels.
191                  * -- w00t
192                  */
193                 ConfigTagList permchannels = ServerInstance->Config->ConfTags("permchannels");
194                 for (ConfigIter i = permchannels.first; i != permchannels.second; ++i)
195                 {
196                         ConfigTag* tag = i->second;
197                         std::string channel = tag->getString("channel");
198                         std::string modes = tag->getString("modes");
199
200                         if ((channel.empty()) || (channel.length() > ServerInstance->Config->Limits.ChanMax))
201                         {
202                                 ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "Ignoring permchannels tag with empty or too long channel name (\"" + channel + "\")");
203                                 continue;
204                         }
205
206                         Channel *c = ServerInstance->FindChan(channel);
207
208                         if (!c)
209                         {
210                                 time_t TS = tag->getInt("ts", ServerInstance->Time(), 1);
211                                 c = new Channel(channel, TS);
212
213                                 unsigned int topicset = tag->getInt("topicts");
214                                 c->topic = tag->getString("topic");
215
216                                 if ((topicset != 0) || (!c->topic.empty()))
217                                 {
218                                         if (topicset == 0)
219                                                 topicset = ServerInstance->Time();
220                                         c->topicset = topicset;
221                                         c->setby = tag->getString("topicsetby");
222                                         if (c->setby.empty())
223                                                 c->setby = ServerInstance->Config->ServerName;
224                                 }
225
226                                 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "Added %s with topic %s", channel.c_str(), c->topic.c_str());
227
228                                 if (modes.empty())
229                                         continue;
230
231                                 irc::spacesepstream list(modes);
232                                 std::string modeseq;
233                                 std::string par;
234
235                                 list.GetToken(modeseq);
236
237                                 // XXX bleh, should we pass this to the mode parser instead? ugly. --w00t
238                                 for (std::string::iterator n = modeseq.begin(); n != modeseq.end(); ++n)
239                                 {
240                                         ModeHandler* mode = ServerInstance->Modes->FindMode(*n, MODETYPE_CHANNEL);
241                                         if (mode)
242                                         {
243                                                 if (mode->GetNumParams(true))
244                                                         list.GetToken(par);
245                                                 else
246                                                         par.clear();
247
248                                                 mode->OnModeChange(ServerInstance->FakeClient, ServerInstance->FakeClient, c, par, true);
249                                         }
250                                 }
251                         }
252                 }
253         }
254
255         ModResult OnRawMode(User* user, Channel* chan, ModeHandler* mh, const std::string& param, bool adding) CXX11_OVERRIDE
256         {
257                 if (chan && (chan->IsModeSet(p) || mh == &p))
258                         dirty = true;
259
260                 return MOD_RES_PASSTHRU;
261         }
262
263         void OnPostTopicChange(User*, Channel *c, const std::string&) CXX11_OVERRIDE
264         {
265                 if (c->IsModeSet(p))
266                         dirty = true;
267         }
268
269         void OnBackgroundTimer(time_t) CXX11_OVERRIDE
270         {
271                 if (dirty)
272                         WriteDatabase(p, this, save_listmodes);
273                 dirty = false;
274         }
275
276         void Prioritize()
277         {
278                 // XXX: Load the DB here because the order in which modules are init()ed at boot is
279                 // alphabetical, this means we must wait until all modules have done their init()
280                 // to be able to set the modes they provide (e.g.: m_stripcolor is inited after us)
281                 // Prioritize() is called after all module initialization is complete, consequently
282                 // all modes are available now
283                 if (loaded)
284                         return;
285
286                 loaded = true;
287
288                 // Load only when there are no linked servers - we set the TS of the channels we
289                 // create to the current time, this can lead to desync because spanningtree has
290                 // no way of knowing what we do
291                 ProtocolInterface::ServerList serverlist;
292                 ServerInstance->PI->GetServerList(serverlist);
293                 if (serverlist.size() < 2)
294                 {
295                         try
296                         {
297                                 LoadDatabase();
298                         }
299                         catch (CoreException& e)
300                         {
301                                 ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "Error loading permchannels database: " + std::string(e.GetReason()));
302                         }
303                 }
304         }
305
306         Version GetVersion() CXX11_OVERRIDE
307         {
308                 return Version("Provides support for channel mode +P to provide permanent channels",VF_VENDOR);
309         }
310
311         ModResult OnChannelPreDelete(Channel *c) CXX11_OVERRIDE
312         {
313                 if (c->IsModeSet(p))
314                         return MOD_RES_DENY;
315
316                 return MOD_RES_PASSTHRU;
317         }
318 };
319
320 MODULE_INIT(ModulePermanentChannels)