]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/xline.h
Spanningtree now compiles
[user/henk/code/inspircd.git] / include / xline.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #ifndef __XLINE_H
15 #define __XLINE_H
16
17 // include the common header files
18
19 #include <string>
20 #include <deque>
21 #include <vector>
22 #include "users.h"
23 #include "channels.h"
24
25 const int APPLY_GLINES          = 1;
26 const int APPLY_KLINES          = 2;
27 const int APPLY_QLINES          = 4;
28 const int APPLY_ZLINES          = 8;
29 const int APPLY_PERM_ONLY       = 16;
30 const int APPLY_ALL             = APPLY_GLINES | APPLY_KLINES | APPLY_QLINES | APPLY_ZLINES;
31
32 /** XLine is the base class for ban lines such as G lines and K lines.
33  */
34 class CoreExport XLine : public classbase
35 {
36  protected:
37
38         InspIRCd* ServerInstance;
39         void DefaultApply(User* u, char line);
40
41  public:
42
43         /** Create an XLine.
44          * @param s_time The set time
45          * @param d The duration of the xline
46          * @param src The sender of the xline
47          * @param re The reason of the xline
48          */
49         XLine(InspIRCd* Instance, time_t s_time, long d, const char* src, const char* re, const char t)
50                 : ServerInstance(Instance), set_time(s_time), duration(d), type(t)
51         {
52                 source = strdup(src);
53                 reason = strdup(re);
54                 expiry = set_time + duration;
55         }
56
57         /** Destructor
58          */
59         virtual ~XLine()
60         {
61                 free(reason);
62                 free(source);
63         }
64
65         /** Returns true whether or not the given user is covered by this line.
66          */
67         virtual bool Matches(User *u) = 0;
68
69         /** Returns true wether or not the given string exactly matches the gline
70          * (no wildcard use in this method) -- used for removal of a line
71          */
72         virtual bool MatchesLiteral(const std::string &str) = 0;
73
74         virtual bool Matches(const std::string &str) = 0;
75
76         virtual void Apply(User* u);
77
78         virtual void Unset() { }
79
80         virtual void DisplayExpiry() = 0;
81
82         virtual const char* Displayable() = 0;
83
84         virtual void OnAdd() { }
85
86         /** The time the line was added.
87          */
88         time_t set_time;
89         
90         /** The duration of the ban, or 0 if permenant
91          */
92         long duration;
93         
94         /** Source of the ban. This can be a servername or an oper nickname
95          */
96         char* source;
97         
98         /** Reason for the ban
99          */
100         char* reason;
101
102         /** Expiry time
103          */
104         time_t expiry;
105
106         /** Q, K, etc. Don't change this. Constructors set it.
107          */
108         const char type;
109 };
110
111 /** KLine class
112  */
113 class CoreExport KLine : public XLine
114 {
115   public:
116         /** Create a K-Line.
117          * @param s_time The set time
118          * @param d The duration of the xline
119          * @param src The sender of the xline
120          * @param re The reason of the xline
121          * @param ident Ident to match
122          * @param host Host to match
123          */
124         KLine(InspIRCd* Instance, time_t s_time, long d, const char* src, const char* re, const char* ident, const char* host) : XLine(Instance, s_time, d, src, re, 'K')
125         {
126                 identmask = strdup(ident);
127                 hostmask = strdup(host);
128                 matchtext = this->identmask;
129                 matchtext.append("@").append(this->hostmask);
130         }
131
132         /** Destructor
133          */
134         ~KLine()
135         {
136                 free(identmask);
137                 free(hostmask);
138         }
139
140         virtual bool Matches(User *u);
141
142         virtual bool Matches(const std::string &str);
143
144         virtual bool MatchesLiteral(const std::string &str);
145
146         virtual void Apply(User* u);
147
148         virtual void DisplayExpiry();
149
150         virtual const char* Displayable();
151
152         /** Ident mask
153          */
154         char* identmask;
155         /** Host mask
156          */
157         char* hostmask;
158
159         std::string matchtext;
160 };
161
162 /** GLine class
163  */
164 class CoreExport GLine : public XLine
165 {
166   public:
167         /** Create a G-Line.
168          * @param s_time The set time
169          * @param d The duration of the xline
170          * @param src The sender of the xline
171          * @param re The reason of the xline
172          * @param ident Ident to match
173          * @param host Host to match
174          */
175         GLine(InspIRCd* Instance, time_t s_time, long d, const char* src, const char* re, const char* ident, const char* host) : XLine(Instance, s_time, d, src, re, 'G')
176         {
177                 identmask = strdup(ident);
178                 hostmask = strdup(host);
179                 matchtext = this->identmask;
180                 matchtext.append("@").append(this->hostmask);
181         }
182
183         /** Destructor
184          */
185         ~GLine()
186         {
187                 free(identmask);
188                 free(hostmask);
189         }
190
191         virtual bool Matches(User *u);
192
193         virtual bool Matches(const std::string &str);
194
195         virtual bool MatchesLiteral(const std::string &str);
196
197         virtual void Apply(User* u);
198
199         virtual void DisplayExpiry();
200
201         virtual const char* Displayable();
202
203         /** Ident mask
204          */
205         char* identmask;
206         /** Host mask
207          */
208         char* hostmask;
209
210         std::string matchtext;
211 };
212
213 /** ELine class
214  */
215 class CoreExport ELine : public XLine
216 {
217   public:
218         /** Create an E-Line.
219          * @param s_time The set time
220          * @param d The duration of the xline
221          * @param src The sender of the xline
222          * @param re The reason of the xline
223          * @param ident Ident to match
224          * @param host Host to match
225          */
226         ELine(InspIRCd* Instance, time_t s_time, long d, const char* src, const char* re, const char* ident, const char* host) : XLine(Instance, s_time, d, src, re, 'E')
227         {
228                 identmask = strdup(ident);
229                 hostmask = strdup(host);
230                 matchtext = this->identmask;
231                 matchtext.append("@").append(this->hostmask);
232         }
233
234         ~ELine()
235         {
236                 free(identmask);
237                 free(hostmask);
238         }
239
240         virtual bool Matches(User *u);
241
242         virtual bool Matches(const std::string &str);
243
244         virtual bool MatchesLiteral(const std::string &str);
245
246         virtual void Unset();
247
248         virtual void DisplayExpiry();
249
250         virtual void OnAdd();
251
252         virtual const char* Displayable();
253
254         /** Ident mask
255          */
256         char* identmask;
257         /** Host mask
258          */
259         char* hostmask;
260
261         std::string matchtext;
262 };
263
264 /** ZLine class
265  */
266 class CoreExport ZLine : public XLine
267 {
268   public:
269         /** Create a Z-Line.
270          * @param s_time The set time
271          * @param d The duration of the xline
272          * @param src The sender of the xline
273          * @param re The reason of the xline
274          * @param ip IP to match
275          */
276         ZLine(InspIRCd* Instance, time_t s_time, long d, const char* src, const char* re, const char* ip) : XLine(Instance, s_time, d, src, re, 'Z')
277         {
278                 ipaddr = strdup(ip);
279         }
280
281         /** Destructor
282          */
283         ~ZLine()
284         {
285                 free(ipaddr);
286         }
287
288         virtual bool Matches(User *u);
289
290         virtual bool Matches(const std::string &str);
291
292         virtual bool MatchesLiteral(const std::string &str);
293
294         virtual void Apply(User* u);
295
296         virtual void DisplayExpiry();
297
298         virtual const char* Displayable();
299
300         /** IP mask
301          */
302         char* ipaddr;
303 };
304
305 /** QLine class
306  */
307 class CoreExport QLine : public XLine
308 {
309   public:
310         /** Create a G-Line.
311          * @param s_time The set time
312          * @param d The duration of the xline
313          * @param src The sender of the xline
314          * @param re The reason of the xline
315          * @param nickname Nickname to match
316          */
317         QLine(InspIRCd* Instance, time_t s_time, long d, const char* src, const char* re, const char* nickname) : XLine(Instance, s_time, d, src, re, 'Q')
318         {
319                 nick = strdup(nickname);
320         }
321
322         /** Destructor
323          */
324         ~QLine()
325         {
326                 free(nick);
327
328         }
329         virtual bool Matches(User *u);
330
331         virtual bool Matches(const std::string &str);
332
333         virtual bool MatchesLiteral(const std::string &str);
334
335         virtual void Apply(User* u);
336
337         virtual void DisplayExpiry();
338
339         virtual const char* Displayable();
340
341         /** Nickname mask
342          */
343         char* nick;
344 };
345
346 /* Required forward declarations
347  */
348 class ServerConfig;
349 class InspIRCd;
350
351 /** Contains an ident and host split into two strings
352  */
353 typedef std::pair<std::string, std::string> IdentHostPair;
354
355 /** XLineManager is a class used to manage glines, klines, elines, zlines and qlines.
356  */
357 class CoreExport XLineManager
358 {
359  protected:
360         /** The owner/creator of this class
361          */
362         InspIRCd* ServerInstance;
363
364         /** This functor is used by the std::sort() function to keep all lines in order
365          */
366         static bool XSortComparison (const XLine *one, const XLine *two);
367
368         /** Used to hold XLines which have not yet been applied.
369          */
370         std::vector<XLine *> pending_lines;
371
372         std::vector<XLine *> active_lines;
373
374  public:
375
376         std::map<char, std::map<std::string, XLine *> > lookup_lines;
377
378         /** Constructor
379          * @param Instance A pointer to the creator object
380          */
381         XLineManager(InspIRCd* Instance);
382
383         /** Split an ident and host into two seperate strings.
384          * This allows for faster matching.
385          */
386         IdentHostPair IdentSplit(const std::string &ident_and_host);
387
388         /** Checks what users match a given list of ELines and sets their ban exempt flag accordingly.
389          * @param ELines List of E:Lines to check.
390          */
391         void CheckELines(std::map<std::string, XLine *> &ELines);
392
393         /** Add a new GLine
394          * @param duration The duration of the line
395          * @param source The source of the line
396          * @param reason The reason for the line
397          * @param hostmask The hostmask
398          * @return True if the line was added successfully
399          */
400         bool AddLine(XLine* line);
401
402         /** Delete a GLine
403          * @param hostmask The host to remove
404          * @param type Type of line to remove
405          * @param simulate If this is true, don't actually remove the line, just return
406          * @return True if the line was deleted successfully
407          */
408         bool DelLine(const char* hostmask, char type, bool simulate = false);
409
410         /** Check if a nickname matches a QLine
411          * @return nick The nick to check against
412          * @return The reason for the line if there is a match, or NULL if there is no match
413          */
414         QLine* matches_qline(const char* nick);
415
416         /** Check if a hostname matches a GLine
417          * @param user The user to check against
418          * @return The reason for the line if there is a match, or NULL if there is no match
419          */
420         GLine* matches_gline(User* user);
421
422         /** Check if a user's IP matches a ZLine
423          * @param user The user to check against
424          * @return The reason for the line if there is a match, or NULL if there is no match
425          */
426         ZLine* matches_zline(User *user);
427
428         /** Check if a hostname matches a KLine
429          * @param user The user to check against
430          * @return The reason for the line if there is a match, or NULL if there is no match
431          */
432         KLine* matches_kline(User* user);
433
434         /** Check if a hostname matches a ELine
435          * @param user The user to check against
436          * @return The reason for the line if there is a match, or NULL if there is no match
437          */
438         ELine* matches_exception(User* user);
439
440         /** Expire any lines that should be expired.
441          */
442         void expire_lines();
443
444         /** Apply any new lines that are pending to be applied
445          */
446         void ApplyLines();
447
448         /** Handle /STATS K
449          * @param user The username making the query
450          * @param results The string_list to receive the results
451          */
452         void stats_k(User* user, string_list &results);
453
454         /** Handle /STATS G
455          * @param user The username making the query
456          * @param results The string_list to receive the results
457          */
458         void stats_g(User* user, string_list &results);
459
460         /** Handle /STATS Q
461          * @param user The username making the query
462          * @param results The string_list to receive the results
463          */
464         void stats_q(User* user, string_list &results);
465
466         /** Handle /STATS Z
467          * @param user The username making the query
468          * @param results The string_list to receive the results
469          */
470         void stats_z(User* user, string_list &results);
471
472         /** Handle /STATS E
473          * @param user The username making the query
474          * @param results The string_list to receive the results
475          */
476         void stats_e(User* user, string_list &results);
477
478         /** Change creation time of a GLine
479          * @param host The hostname to change
480          * @param create_Time The new creation time
481          */
482         void gline_set_creation_time(const char* host, time_t create_time);
483
484         /** Change creation time of a QLine
485          * @param nick The nickmask to change
486          * @param create_Time The new creation time
487          */
488         void qline_set_creation_time(const char* nick, time_t create_time);
489
490         /** Change creation time of a ZLine
491          * @param ip The ipmask to change
492          * @param create_Time The new creation time
493          */
494         void zline_set_creation_time(const char* ip, time_t create_time);
495
496         /** Change creation time of a ELine
497          * @param host The hostname to change
498          * @param create_Time The new creation time
499          */
500         void eline_set_creation_time(const char* host, time_t create_time);
501 };
502
503 #endif
504