]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/configreader.h
Read uline state in spanningtree; remove ConfigReader::ulines
[user/henk/code/inspircd.git] / include / configreader.h
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007, 2009 Dennis Friis <peavey@inspircd.org>
6  *   Copyright (C) 2006-2008 Craig Edwards <craigedwards@brainbox.cc>
7  *   Copyright (C) 2006-2008 Robin Burchell <robin+git@viroteck.net>
8  *   Copyright (C) 2006 Oliver Lupton <oliverlupton@gmail.com>
9  *
10  * This file is part of InspIRCd.  InspIRCd is free software: you can
11  * redistribute it and/or modify it under the terms of the GNU General Public
12  * License as published by the Free Software Foundation, version 2.
13  *
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
17  * details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  */
22
23
24 #pragma once
25
26 #include <sstream>
27 #include <string>
28 #include <vector>
29 #include <map>
30 #include "inspircd.h"
31 #include "modules.h"
32 #include "socketengine.h"
33 #include "socket.h"
34
35 /** Structure representing a single \<tag> in config */
36 class CoreExport ConfigTag : public refcountbase
37 {
38         std::vector<KeyVal> items;
39  public:
40         const std::string tag;
41         const std::string src_name;
42         const int src_line;
43
44         /** Get the value of an option, using def if it does not exist */
45         std::string getString(const std::string& key, const std::string& def = "");
46         /** Get the value of an option, using def if it does not exist */
47         long getInt(const std::string& key, long def = 0, long min = LONG_MIN, long max = LONG_MAX);
48         /** Get the value of an option, using def if it does not exist */
49         double getFloat(const std::string& key, double def = 0);
50         /** Get the value of an option, using def if it does not exist */
51         bool getBool(const std::string& key, bool def = false);
52
53         /** Get the value in seconds of a duration that is in the user-friendly "1h2m3s" format,
54          * using a default value if it does not exist or is out of bounds.
55          * @param key The config key name
56          * @param def Default value (optional)
57          * @param min Minimum acceptable value (optional)
58          * @param max Maximum acceptable value (optional)
59          * @return The duration in seconds
60          */
61         long getDuration(const std::string& key, long def = 0, long min = LONG_MIN, long max = LONG_MAX);
62
63         /** Get the value of an option
64          * @param key The option to get
65          * @param value The location to store the value (unmodified if does not exist)
66          * @param allow_newline Allow newlines in the option (normally replaced with spaces)
67          * @return true if the option exists
68          */
69         bool readString(const std::string& key, std::string& value, bool allow_newline = false);
70
71         /** Check for an out of range value. If the value falls outside the boundaries a warning is
72          * logged and the value is corrected (set to def).
73          * @param key The key name, used in the warning message
74          * @param res The value to verify and modify if needed
75          * @param def The default value, res will be set to this if (min <= res <= max) doesn't hold true
76          * @param min Minimum accepted value for res
77          * @param max Maximum accepted value for res
78          */
79         void CheckRange(const std::string& key, long& res, long def, long min, long max);
80
81         std::string getTagLocation();
82
83         inline const std::vector<KeyVal>& getItems() const { return items; }
84
85         /** Create a new ConfigTag, giving access to the private KeyVal item list */
86         static ConfigTag* create(const std::string& Tag, const std::string& file, int line,
87                 std::vector<KeyVal>*&items);
88  private:
89         ConfigTag(const std::string& Tag, const std::string& file, int line);
90 };
91
92 /** Defines the server's length limits on various length-limited
93  * items such as topics, nicknames, channel names etc.
94  */
95 class ServerLimits
96 {
97  public:
98         /** Maximum nickname length */
99         size_t NickMax;
100         /** Maximum channel length */
101         size_t ChanMax;
102         /** Maximum number of modes per line */
103         size_t MaxModes;
104         /** Maximum length of ident, not including ~ etc */
105         size_t IdentMax;
106         /** Maximum length of a quit message */
107         size_t MaxQuit;
108         /** Maximum topic length */
109         size_t MaxTopic;
110         /** Maximum kick message length */
111         size_t MaxKick;
112         /** Maximum GECOS (real name) length */
113         size_t MaxGecos;
114         /** Maximum away message length */
115         size_t MaxAway;
116         /** Maximum line length */
117         size_t MaxLine;
118
119         /** Creating the class initialises it to the defaults
120          * as in 1.1's ./configure script. Reading other values
121          * from the config will change these values.
122          */
123         ServerLimits() : NickMax(31), ChanMax(64), MaxModes(20), IdentMax(12),
124                 MaxQuit(255), MaxTopic(307), MaxKick(255), MaxGecos(128), MaxAway(200),
125                 MaxLine(512) { }
126 };
127
128 struct CommandLineConf
129 {
130         /** If this value is true, the owner of the
131          * server specified -nofork on the command
132          * line, causing the daemon to stay in the
133          * foreground.
134          */
135         bool nofork;
136
137         /** If this value if true then all log
138          * messages will be output, regardless of
139          * the level given in the config file.
140          * This is set with the -debug commandline
141          * option.
142          */
143         bool forcedebug;
144
145         /** If this is true then log output will be
146          * written to the logfile. This is the default.
147          * If you put -nolog on the commandline then
148          * the logfile will not be written.
149          * This is meant to be used in conjunction with
150          * -debug for debugging without filling up the
151          * hard disk.
152          */
153         bool writelog;
154
155         /** True if we have been told to run the testsuite from the commandline,
156          * rather than entering the mainloop.
157          */
158         bool TestSuite;
159
160         /** Saved argc from startup
161          */
162         int argc;
163
164         /** Saved argv from startup
165          */
166         char** argv;
167 };
168
169 class CoreExport OperInfo : public refcountbase
170 {
171  public:
172         std::set<std::string> AllowedOperCommands;
173         std::set<std::string> AllowedPrivs;
174
175         /** Allowed user modes from oper classes. */
176         std::bitset<64> AllowedUserModes;
177
178         /** Allowed channel modes from oper classes. */
179         std::bitset<64> AllowedChanModes;
180
181         /** \<oper> block used for this oper-up. May be NULL. */
182         reference<ConfigTag> oper_block;
183         /** \<type> block used for this oper-up. Valid for local users, may be NULL on remote */
184         reference<ConfigTag> type_block;
185         /** \<class> blocks referenced from the \<type> block. These define individual permissions */
186         std::vector<reference<ConfigTag> > class_blocks;
187         /** Name of the oper type; i.e. the one shown in WHOIS */
188         std::string name;
189
190         /** Get a configuration item, searching in the oper, type, and class blocks (in that order) */
191         std::string getConfig(const std::string& key);
192         void init();
193 };
194
195 /** This class holds the bulk of the runtime configuration for the ircd.
196  * It allows for reading new config values, accessing configuration files,
197  * and storage of the configuration data needed to run the ircd, such as
198  * the servername, connect classes, /ADMIN data, MOTDs and filenames etc.
199  */
200 class CoreExport ServerConfig
201 {
202   private:
203         void CrossCheckOperClassType();
204         void CrossCheckConnectBlocks(ServerConfig* current);
205
206  public:
207         class ServerPaths
208         {
209          public:
210                 /** Config path */
211                 std::string Config;
212
213                 /** Data path */
214                 std::string Data;
215
216                 /** Log path */
217                 std::string Log;
218
219                 /** Module path */
220                 std::string Module;
221
222                 ServerPaths()
223                         : Config(CONFIG_PATH)
224                         , Data(DATA_PATH)
225                         , Log(LOG_PATH)
226                         , Module(MOD_PATH) { }
227
228                 std::string PrependConfig(const std::string& fn) const { return FileSystem::ExpandPath(Config, fn); }
229                 std::string PrependData(const std::string& fn) const { return FileSystem::ExpandPath(Data, fn); }
230                 std::string PrependLog(const std::string& fn) const { return FileSystem::ExpandPath(Log, fn); }
231                 std::string PrependModule(const std::string& fn) const { return FileSystem::ExpandPath(Module, fn); }
232         };
233
234         /** Get a configuration tag
235          * @param tag The name of the tag to get
236          */
237         ConfigTag* ConfValue(const std::string& tag);
238
239         ConfigTagList ConfTags(const std::string& tag);
240
241         /** Error stream, contains error output from any failed configuration parsing.
242          */
243         std::stringstream errstr;
244
245         /** True if this configuration is valid enough to run with */
246         bool valid;
247
248         /** Bind to IPv6 by default */
249         bool WildcardIPv6;
250
251         /** Used to indicate who we announce invites to on a channel */
252         enum InviteAnnounceState { INVITE_ANNOUNCE_NONE, INVITE_ANNOUNCE_ALL, INVITE_ANNOUNCE_OPS, INVITE_ANNOUNCE_DYNAMIC };
253         enum OperSpyWhoisState { SPYWHOIS_NONE, SPYWHOIS_SINGLEMSG, SPYWHOIS_SPLITMSG };
254
255         /** This holds all the information in the config file,
256          * it's indexed by tag name to a vector of key/values.
257          */
258         ConfigDataHash config_data;
259
260         /** This holds all extra files that have been read in the configuration
261          * (for example, MOTD and RULES files are stored here)
262          */
263         ConfigFileCache Files;
264
265         /** Length limits, see definition of ServerLimits class
266          */
267         ServerLimits Limits;
268
269         /** Locations of various types of file (config, module, etc). */
270         ServerPaths Paths;
271
272         /** Configuration parsed from the command line.
273          */
274         CommandLineConf cmdline;
275
276         /** Clones CIDR range for ipv4 (0-32)
277          * Defaults to 32 (checks clones on all IPs seperately)
278          */
279         int c_ipv4_range;
280
281         /** Clones CIDR range for ipv6 (0-128)
282          * Defaults to 128 (checks on all IPs seperately)
283          */
284         int c_ipv6_range;
285
286         /** Holds the server name of the local server
287          * as defined by the administrator.
288          */
289         std::string ServerName;
290
291         /** Notice to give to users when they are banned by an XLine
292          */
293         std::string XLineMessage;
294
295         /* Holds the network name the local server
296          * belongs to. This is an arbitary field defined
297          * by the administrator.
298          */
299         std::string Network;
300
301         /** Holds the description of the local server
302          * as defined by the administrator.
303          */
304         std::string ServerDesc;
305
306         /** Holds the admin's name, for output in
307          * the /ADMIN command.
308          */
309         std::string AdminName;
310
311         /** Holds the email address of the admin,
312          * for output in the /ADMIN command.
313          */
314         std::string AdminEmail;
315
316         /** Holds the admin's nickname, for output
317          * in the /ADMIN command
318          */
319         std::string AdminNick;
320
321         /** The admin-configured /DIE password
322          */
323         std::string diepass;
324
325         /** The admin-configured /RESTART password
326          */
327         std::string restartpass;
328
329         /** The hash method for *BOTH* the die and restart passwords.
330          */
331         std::string powerhash;
332
333         /** The quit prefix in use, or an empty string
334          */
335         std::string PrefixQuit;
336
337         /** The quit suffix in use, or an empty string
338          */
339         std::string SuffixQuit;
340
341         /** The fixed quit message in use, or an empty string
342          */
343         std::string FixedQuit;
344
345         /** The part prefix in use, or an empty string
346          */
347         std::string PrefixPart;
348
349         /** The part suffix in use, or an empty string
350          */
351         std::string SuffixPart;
352
353         /** The fixed part message in use, or an empty string
354          */
355         std::string FixedPart;
356
357         /** Pretend disabled commands don't exist.
358          */
359         bool DisabledDontExist;
360
361         /** This variable contains a space-seperated list
362          * of commands which are disabled by the
363          * administrator of the server for non-opers.
364          */
365         std::string DisabledCommands;
366
367         /** This variable identifies which usermodes have been diabled.
368          */
369         char DisabledUModes[64];
370
371         /** This variable identifies which chanmodes have been disabled.
372          */
373         char DisabledCModes[64];
374
375         /** If set to true, then all opers on this server are
376          * shown with a generic 'is an IRC operator' line rather
377          * than the oper type. Oper types are still used internally.
378          */
379         bool GenericOper;
380
381         /** If this value is true, banned users (+b, not extbans) will not be able to change nick
382          * if banned on any channel, nor to message them.
383          */
384         bool RestrictBannedUsers;
385
386         /** If this is set to true, then mode lists (e.g
387          * MODE \#chan b) are hidden from unprivileged
388          * users.
389          */
390         bool HideModeLists[256];
391
392         /** The number of seconds the DNS subsystem
393          * will wait before timing out any request.
394          */
395         int dns_timeout;
396
397         /** The size of the read() buffer in the user
398          * handling code, used to read data into a user's
399          * recvQ.
400          */
401         int NetBufferSize;
402
403         /** The value to be used for listen() backlogs
404          * as default.
405          */
406         int MaxConn;
407
408         /** If we should check for clones during CheckClass() in AddUser()
409          * Setting this to false allows to not trigger on maxclones for users
410          * that may belong to another class after DNS-lookup is complete.
411          * It does, however, make the server spend more time on users we may potentially not want.
412          */
413         bool CCOnConnect;
414
415         /** The soft limit value assigned to the irc server.
416          * The IRC server will not allow more than this
417          * number of local users.
418          */
419         unsigned int SoftLimit;
420
421         /** Maximum number of targets for a multi target command
422          * such as PRIVMSG or KICK
423          */
424         unsigned int MaxTargets;
425
426         /** True if we're going to hide netsplits as *.net *.split for non-opers
427          */
428         bool HideSplits;
429
430         /** True if we're going to hide ban reasons for non-opers (e.g. G-Lines,
431          * K-Lines, Z-Lines)
432          */
433         bool HideBans;
434
435         /** Announce invites to the channel with a server notice
436          */
437         InviteAnnounceState AnnounceInvites;
438
439         /** If this is enabled then operators will
440          * see invisible (+i) channels in /whois.
441          */
442         OperSpyWhoisState OperSpyWhois;
443
444         /** True if raw I/O is being logged */
445         bool RawLog;
446
447         /** Set to a non-empty string to obfuscate the server name of users in WHOIS
448          */
449         std::string HideWhoisServer;
450
451         /** Set to a non empty string to obfuscate nicknames prepended to a KILL.
452          */
453         std::string HideKillsServer;
454
455         /** The full pathname and filename of the PID
456          * file as defined in the configuration.
457          */
458         std::string PID;
459
460         /** The connect classes in use by the IRC server.
461          */
462         ClassVector Classes;
463
464         /** STATS characters in this list are available
465          * only to operators.
466          */
467         std::string UserStats;
468
469         /** Default channel modes
470          */
471         std::string DefaultModes;
472
473         /** Custom version string, which if defined can replace the system info in VERSION.
474          */
475         std::string CustomVersion;
476
477         /** If set to true, provide syntax hints for unknown commands
478          */
479         bool SyntaxHints;
480
481         /** If set to true, the CycleHosts mode change will be sourced from the user,
482          * rather than the server
483          */
484         bool CycleHostsFromUser;
485
486         /** If set to true, prefixed channel NOTICEs and PRIVMSGs will have the prefix
487          *  added to the outgoing text for undernet style msg prefixing.
488          */
489         bool UndernetMsgPrefix;
490
491         /** If set to true, the full nick!user\@host will be shown in the TOPIC command
492          * for who set the topic last. If false, only the nick is shown.
493          */
494         bool FullHostInTopic;
495
496         /** Oper blocks keyed by their name
497          */
498         OperIndex oper_blocks;
499
500         /** Oper types keyed by their name
501          */
502         OperIndex OperTypes;
503
504         /** Max channels per user
505          */
506         unsigned int MaxChans;
507
508         /** Oper max channels per user
509          */
510         unsigned int OperMaxChans;
511
512         /** TS6-like server ID.
513          * NOTE: 000...999 are usable for InspIRCd servers. This
514          * makes code simpler. 0AA, 1BB etc with letters are reserved
515          * for services use.
516          */
517         std::string sid;
518
519         /** Construct a new ServerConfig
520          */
521         ServerConfig();
522
523         /** Get server ID as string with required leading zeroes
524          */
525         const std::string& GetSID() const { return sid; }
526
527         /** Read the entire configuration into memory
528          * and initialize this class. All other methods
529          * should be used only by the core.
530          */
531         void Read();
532
533         /** Apply configuration changes from the old configuration.
534          */
535         void Apply(ServerConfig* old, const std::string &useruid);
536         void ApplyModules(User* user);
537
538         void Fill();
539
540         bool ApplyDisabledCommands(const std::string& data);
541
542         /** Escapes a value for storage in a configuration key.
543          * @param str The string to escape.
544          * @param xml Are we using the XML config format?
545          */
546         static std::string Escape(const std::string& str, bool xml = true);
547
548         /** If this value is true, invites will bypass more than just +i
549          */
550         bool InvBypassModes;
551
552         /** If this value is true, snotices will not stack when repeats are sent
553          */
554         bool NoSnoticeStack;
555 };
556
557 /** The background thread for config reading, so that reading from executable includes
558  * does not block.
559  */
560 class CoreExport ConfigReaderThread : public Thread
561 {
562         ServerConfig* Config;
563         volatile bool done;
564  public:
565         const std::string TheUserUID;
566         ConfigReaderThread(const std::string &useruid)
567                 : Config(new ServerConfig), done(false), TheUserUID(useruid)
568         {
569         }
570
571         virtual ~ConfigReaderThread()
572         {
573                 delete Config;
574         }
575
576         void Run();
577         /** Run in the main thread to apply the configuration */
578         void Finish();
579         bool IsDone() { return done; }
580 };
581
582 class CoreExport ConfigStatus
583 {
584  public:
585         User* const srcuser;
586
587         ConfigStatus(User* user = NULL)
588                 : srcuser(user)
589         {
590         }
591 };