2 * InspIRCd -- Internet Relay Chat Daemon
4 * Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
5 * Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
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.
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
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/>.
25 class ModuleXLineDB : public Module
28 std::string xlinedbpath;
30 void init() CXX11_OVERRIDE
32 /* Load the configuration
34 * This is on purpose not changed on a rehash. It would be non-trivial to change the database on-the-fly.
35 * Imagine a scenario where the new file already exists. Merging the current XLines with the existing database is likely a bad idea
36 * ...and so is discarding all current in-memory XLines for the ones in the database.
38 ConfigTag* Conf = ServerInstance->Config->ConfValue("xlinedb");
39 xlinedbpath = ServerInstance->Config->Paths.PrependData(Conf->getString("filename", "xline.db"));
41 // Read xlines before attaching to events
47 /** Called whenever an xline is added by a local user.
48 * This method is triggered after the line is added.
49 * @param source The sender of the line or NULL for local server
50 * @param line The xline being added
52 void OnAddLine(User* source, XLine* line) CXX11_OVERRIDE
57 /** Called whenever an xline is deleted.
58 * This method is triggered after the line is deleted.
59 * @param source The user removing the line or NULL for local server
60 * @param line the line being deleted
62 void OnDelLine(User* source, XLine* line) CXX11_OVERRIDE
67 void OnExpireLine(XLine *line) CXX11_OVERRIDE
72 void OnBackgroundTimer(time_t now) CXX11_OVERRIDE
84 * We need to perform an atomic write so as not to fuck things up.
85 * So, let's write to a temporary file, flush it, then rename the file..
86 * Technically, that means that this can block, but I have *never* seen that.
89 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "Opening temporary database");
90 std::string xlinenewdbpath = xlinedbpath + ".new";
91 std::ofstream stream(xlinenewdbpath.c_str());
92 if (!stream.is_open())
94 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "Cannot create database \"%s\"! %s (%d)", xlinenewdbpath.c_str(), strerror(errno), errno);
95 ServerInstance->SNO->WriteToSnoMask('a', "database: cannot create new xline db \"%s\": %s (%d)", xlinenewdbpath.c_str(), strerror(errno), errno);
99 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "Opened. Writing..");
102 * Now, much as I hate writing semi-unportable formats, additional
103 * xline types may not have a conf tag, so let's just write them.
104 * In addition, let's use a file version, so we can maintain some
105 * semblance of backwards compatibility for reading on startup..
108 stream << "VERSION 1" << std::endl;
111 std::vector<std::string> types = ServerInstance->XLines->GetAllTypes();
112 for (std::vector<std::string>::const_iterator it = types.begin(); it != types.end(); ++it)
114 XLineLookup* lookup = ServerInstance->XLines->GetAll(*it);
116 continue; // Not possible as we just obtained the list from XLineManager
118 for (LookupIter i = lookup->begin(); i != lookup->end(); ++i)
120 XLine* line = i->second;
121 stream << "LINE " << line->type << " " << line->Displayable() << " "
122 << ServerInstance->Config->ServerName << " " << line->set_time << " "
123 << line->duration << " :" << line->reason << std::endl;
127 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "Finished writing XLines. Checking for error..");
131 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "Cannot write to new database \"%s\"! %s (%d)", xlinenewdbpath.c_str(), strerror(errno), errno);
132 ServerInstance->SNO->WriteToSnoMask('a', "database: cannot write to new xline db \"%s\": %s (%d)", xlinenewdbpath.c_str(), strerror(errno), errno);
138 remove(xlinedbpath.c_str());
140 // Use rename to move temporary to new db - this is guarenteed not to fuck up, even in case of a crash.
141 if (rename(xlinenewdbpath.c_str(), xlinedbpath.c_str()) < 0)
143 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "Cannot replace old database \"%s\" with new database \"%s\"! %s (%d)", xlinedbpath.c_str(), xlinenewdbpath.c_str(), strerror(errno), errno);
144 ServerInstance->SNO->WriteToSnoMask('a', "database: cannot replace old xline db \"%s\" with new db \"%s\": %s (%d)", xlinedbpath.c_str(), xlinenewdbpath.c_str(), strerror(errno), errno);
153 // If the xline database doesn't exist then we don't need to load it.
154 if (!FileSystem::FileExists(xlinedbpath))
157 std::ifstream stream(xlinedbpath.c_str());
158 if (!stream.is_open())
160 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "Cannot read database \"%s\"! %s (%d)", xlinedbpath.c_str(), strerror(errno), errno);
161 ServerInstance->SNO->WriteToSnoMask('a', "database: cannot read xline db \"%s\": %s (%d)", xlinedbpath.c_str(), strerror(errno), errno);
166 while (std::getline(stream, line))
168 // Inspired by the command parser. :)
169 irc::tokenstream tokens(line);
171 std::string command_p[7];
174 while (tokens.GetToken(tmp) && (items < 7))
176 command_p[items] = tmp;
180 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "Processing %s", line.c_str());
182 if (command_p[0] == "VERSION")
184 if (command_p[1] != "1")
187 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "I got database version %s - I don't understand it", command_p[1].c_str());
188 ServerInstance->SNO->WriteToSnoMask('a', "database: I got a database version (%s) I don't understand", command_p[1].c_str());
192 else if (command_p[0] == "LINE")
194 // Mercilessly stolen from spanningtree
195 XLineFactory* xlf = ServerInstance->XLines->GetFactory(command_p[1]);
199 ServerInstance->SNO->WriteToSnoMask('a', "database: Unknown line type (%s).", command_p[1].c_str());
203 XLine* xl = xlf->Generate(ServerInstance->Time(), atoi(command_p[5].c_str()), command_p[3], command_p[6], command_p[2]);
204 xl->SetCreateTime(atoi(command_p[4].c_str()));
206 if (ServerInstance->XLines->AddLine(xl, NULL))
208 ServerInstance->SNO->WriteToSnoMask('x', "database: Added a line of type %s", command_p[1].c_str());
218 Version GetVersion() CXX11_OVERRIDE
220 return Version("Keeps a dynamic log of all XLines created, and stores them in a separate conf file (xline.db).", VF_VENDOR);
224 MODULE_INIT(ModuleXLineDB)