]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_xline_db.cpp
Remove calls to ListModeBase::OnCleanup (deprecated, empty function)
[user/henk/code/inspircd.git] / src / modules / m_xline_db.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
5  *   Copyright (C) 2008 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 "xline.h"
23
24 /* $ModConfig: <xlinedb filename="data/xline.db">
25  *  Specify the filename for the xline database here*/
26 /* $ModDesc: Keeps a dynamic log of all XLines created, and stores them in a seperate conf file (xline.db). */
27
28 class ModuleXLineDB : public Module
29 {
30         std::vector<XLine *> xlines;
31         bool reading_db;                        // If this is true, addlines are as a result of db reading, so don't bother flushing the db to disk.
32                                                 // DO REMEMBER TO SET IT, otherwise it's annoying :P
33         std::string xlinedbpath;
34  public:
35         ModuleXLineDB()         {
36                 Implementation eventlist[] = { I_OnAddLine, I_OnDelLine, I_OnExpireLine };
37                 ServerInstance->Modules->Attach(eventlist, this, 3);
38
39                 /* Load the configuration
40                  * Note:
41                  *              this is on purpose not in the OnRehash() method. It would be non-trivial to change the database on-the-fly.
42                  *              Imagine a scenario where the new file already exists. Merging the current XLines with the existing database is likely a bad idea
43                  *              ...and so is discarding all current in-memory XLines for the ones in the database.
44                  */
45                 ConfigTag* Conf = ServerInstance->Config->ConfValue("xlinedb");
46                 xlinedbpath = Conf->getString("filename", DATA_PATH "/xline.db");
47                 
48                 reading_db = true;
49                 ReadDatabase();
50                 reading_db = false;
51         }
52
53         virtual ~ModuleXLineDB()
54         {
55         }
56
57         /** Called whenever an xline is added by a local user.
58          * This method is triggered after the line is added.
59          * @param source The sender of the line or NULL for local server
60          * @param line The xline being added
61          */
62         void OnAddLine(User* source, XLine* line)
63         {
64                 ServerInstance->Logs->Log("m_xline_db",DEBUG, "xlinedb: Adding a line");
65                 xlines.push_back(line);
66
67                 if (!reading_db)
68                 {
69                         WriteDatabase();
70                 }
71         }
72
73         /** Called whenever an xline is deleted.
74          * This method is triggered after the line is deleted.
75          * @param source The user removing the line or NULL for local server
76          * @param line the line being deleted
77          */
78         void OnDelLine(User* source, XLine* line)
79         {
80                 RemoveLine(line);
81         }
82
83         void OnExpireLine(XLine *line)
84         {
85                 RemoveLine(line);
86         }
87
88         void RemoveLine(XLine *line)
89         {
90                 ServerInstance->Logs->Log("m_xline_db",DEBUG, "xlinedb: Removing a line");
91                 for (std::vector<XLine *>::iterator i = xlines.begin(); i != xlines.end(); i++)
92                 {
93                         if ((*i) == line)
94                         {
95                                 xlines.erase(i);
96                                 break;
97                         }
98                 }
99
100                 WriteDatabase();
101         }
102
103         bool WriteDatabase()
104         {
105                 FILE *f;
106
107                 /*
108                  * We need to perform an atomic write so as not to fuck things up.
109                  * So, let's write to a temporary file, flush and sync the FD, then rename the file..
110                  * Technically, that means that this can block, but I have *never* seen that.
111                  *              -- w00t
112                  */
113                 ServerInstance->Logs->Log("m_xline_db",DEBUG, "xlinedb: Opening temporary database");
114                 std::string xlinenewdbpath = xlinedbpath + ".new";
115                 f = fopen(xlinenewdbpath.c_str(), "w");
116                 if (!f)
117                 {
118                         ServerInstance->Logs->Log("m_xline_db",DEBUG, "xlinedb: Cannot create database! %s (%d)", strerror(errno), errno);
119                         ServerInstance->SNO->WriteToSnoMask('a', "database: cannot create new db: %s (%d)", strerror(errno), errno);
120                         return false;
121                 }
122
123                 ServerInstance->Logs->Log("m_xline_db",DEBUG, "xlinedb: Opened. Writing..");
124
125                 /*
126                  * Now, much as I hate writing semi-unportable formats, additional
127                  * xline types may not have a conf tag, so let's just write them.
128                  * In addition, let's use a file version, so we can maintain some
129                  * semblance of backwards compatibility for reading on startup..
130                  *              -- w00t
131                  */
132                 fprintf(f, "VERSION 1\n");
133
134                 // Now, let's write.
135                 XLine *line;
136                 for (std::vector<XLine *>::iterator i = xlines.begin(); i != xlines.end(); i++)
137                 {
138                         line = (*i);
139                         fprintf(f, "LINE %s %s %s %lu %lu :%s\n", line->type.c_str(), line->Displayable(),
140                                 ServerInstance->Config->ServerName.c_str(), (unsigned long)line->set_time, (unsigned long)line->duration, line->reason.c_str());
141                 }
142
143                 ServerInstance->Logs->Log("m_xline_db",DEBUG, "xlinedb: Finished writing XLines. Checking for error..");
144
145                 int write_error = 0;
146                 write_error = ferror(f);
147                 write_error |= fclose(f);
148                 if (write_error)
149                 {
150                         ServerInstance->Logs->Log("m_xline_db",DEBUG, "xlinedb: Cannot write to new database! %s (%d)", strerror(errno), errno);
151                         ServerInstance->SNO->WriteToSnoMask('a', "database: cannot write to new db: %s (%d)", strerror(errno), errno);
152                         return false;
153                 }
154
155 #ifdef _WIN32
156                 if (remove(xlinedbpath.c_str()))
157                 {
158                         ServerInstance->Logs->Log("m_xline_db",DEBUG, "xlinedb: Cannot remove old database! %s (%d)", strerror(errno), errno);
159                         ServerInstance->SNO->WriteToSnoMask('a', "database: cannot remove old database: %s (%d)", strerror(errno), errno);
160                         return false;
161                 }
162 #endif
163                 // Use rename to move temporary to new db - this is guarenteed not to fuck up, even in case of a crash.
164                 if (rename(xlinenewdbpath.c_str(), xlinedbpath.c_str()) < 0)
165                 {
166                         ServerInstance->Logs->Log("m_xline_db",DEBUG, "xlinedb: Cannot move new to old database! %s (%d)", strerror(errno), errno);
167                         ServerInstance->SNO->WriteToSnoMask('a', "database: cannot replace old with new db: %s (%d)", strerror(errno), errno);
168                         return false;
169                 }
170
171                 return true;
172         }
173
174         bool ReadDatabase()
175         {
176                 FILE *f;
177                 char linebuf[MAXBUF];
178                 unsigned int lineno = 0;
179
180                 f = fopen(xlinedbpath.c_str(), "r");
181                 if (!f)
182                 {
183                         if (errno == ENOENT)
184                         {
185                                 /* xline.db doesn't exist, fake good return value (we don't care about this) */
186                                 return true;
187                         }
188                         else
189                         {
190                                 /* this might be slightly more problematic. */
191                                 ServerInstance->Logs->Log("m_xline_db",DEBUG, "xlinedb: Cannot read database! %s (%d)", strerror(errno), errno);
192                                 ServerInstance->SNO->WriteToSnoMask('a', "database: cannot read db: %s (%d)", strerror(errno), errno);
193                                 return false;
194                         }
195                 }
196
197                 while (fgets(linebuf, MAXBUF, f))
198                 {
199                         char *c = linebuf;
200
201                         while (c && *c)
202                         {
203                                 if (*c == '\n')
204                                 {
205                                         *c = '\0';
206                                 }
207
208                                 c++;
209                         }
210                         // Smart man might think of initing to 1, and moving this to the bottom. Don't. We use continue in this loop.
211                         lineno++;
212
213                         // Inspired by the command parser. :)
214                         irc::tokenstream tokens(linebuf);
215                         int items = 0;
216                         std::string command_p[MAXPARAMETERS];
217                         std::string tmp;
218
219                         while (tokens.GetToken(tmp) && (items < MAXPARAMETERS))
220                         {
221                                 command_p[items] = tmp;
222                                 items++;
223                         }
224
225                         ServerInstance->Logs->Log("m_xline_db",DEBUG, "xlinedb: Processing %s", linebuf);
226
227                         if (command_p[0] == "VERSION")
228                         {
229                                 if (command_p[1] == "1")
230                                 {
231                                         ServerInstance->Logs->Log("m_xline_db",DEBUG, "xlinedb: Reading db version %s", command_p[1].c_str());
232                                 }
233                                 else
234                                 {
235                                         fclose(f);
236                                         ServerInstance->Logs->Log("m_xline_db",DEBUG, "xlinedb: I got database version %s - I don't understand it", command_p[1].c_str());
237                                         ServerInstance->SNO->WriteToSnoMask('a', "database: I got a database version (%s) I don't understand", command_p[1].c_str());
238                                         return false;
239                                 }
240                         }
241                         else if (command_p[0] == "LINE")
242                         {
243                                 // Mercilessly stolen from spanningtree
244                                 XLineFactory* xlf = ServerInstance->XLines->GetFactory(command_p[1]);
245
246                                 if (!xlf)
247                                 {
248                                         ServerInstance->SNO->WriteToSnoMask('a', "database: Unknown line type (%s).", command_p[1].c_str());
249                                         continue;
250                                 }
251
252                                 XLine* xl = xlf->Generate(ServerInstance->Time(), atoi(command_p[5].c_str()), command_p[3], command_p[6], command_p[2]);
253                                 xl->SetCreateTime(atoi(command_p[4].c_str()));
254
255                                 if (ServerInstance->XLines->AddLine(xl, NULL))
256                                 {
257                                         ServerInstance->SNO->WriteToSnoMask('x', "database: Added a line of type %s", command_p[1].c_str());
258                                 }
259                                 else
260                                         delete xl;
261                         }
262                 }
263
264                 fclose(f);
265                 return true;
266         }
267
268
269
270         virtual Version GetVersion()
271         {
272                 return Version("Keeps a dynamic log of all XLines created, and stores them in a separate conf file (xline.db).", VF_VENDOR);
273         }
274 };
275
276 MODULE_INIT(ModuleXLineDB)
277