]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/configreader.h
Move {prefix|suffix|fixed}{quit|part} into core_user
[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, std::vector<KeyVal>*& Items);
87  private:
88         ConfigTag(const std::string& Tag, const std::string& file, int line);
89 };
90
91 /** Defines the server's length limits on various length-limited
92  * items such as topics, nicknames, channel names etc.
93  */
94 class ServerLimits
95 {
96  public:
97         /** Maximum nickname length */
98         size_t NickMax;
99         /** Maximum channel length */
100         size_t ChanMax;
101         /** Maximum number of modes per line */
102         size_t MaxModes;
103         /** Maximum length of ident, not including ~ etc */
104         size_t IdentMax;
105         /** Maximum length of a quit message */
106         size_t MaxQuit;
107         /** Maximum topic length */
108         size_t MaxTopic;
109         /** Maximum kick message length */
110         size_t MaxKick;
111         /** Maximum GECOS (real name) length */
112         size_t MaxGecos;
113         /** Maximum away message length */
114         size_t MaxAway;
115         /** Maximum line length */
116         size_t MaxLine;
117
118         /** Creating the class initialises it to the defaults
119          * as in 1.1's ./configure script. Reading other values
120          * from the config will change these values.
121          */
122         ServerLimits() : NickMax(31), ChanMax(64), MaxModes(20), IdentMax(12),
123                 MaxQuit(255), MaxTopic(307), MaxKick(255), MaxGecos(128), MaxAway(200),
124                 MaxLine(512) { }
125 };
126
127 struct CommandLineConf
128 {
129         /** If this value is true, the owner of the
130          * server specified -nofork on the command
131          * line, causing the daemon to stay in the
132          * foreground.
133          */
134         bool nofork;
135
136         /** If this value if true then all log
137          * messages will be output, regardless of
138          * the level given in the config file.
139          * This is set with the -debug commandline
140          * option.
141          */
142         bool forcedebug;
143
144         /** If this is true then log output will be
145          * written to the logfile. This is the default.
146          * If you put -nolog on the commandline then
147          * the logfile will not be written.
148          * This is meant to be used in conjunction with
149          * -debug for debugging without filling up the
150          * hard disk.
151          */
152         bool writelog;
153
154         /** Saved argc from startup
155          */
156         int argc;
157
158         /** Saved argv from startup
159          */
160         char** argv;
161 };
162
163 class CoreExport OperInfo : public refcountbase
164 {
165  public:
166         std::set<std::string> AllowedOperCommands;
167         std::set<std::string> AllowedPrivs;
168
169         /** Allowed user modes from oper classes. */
170         std::bitset<64> AllowedUserModes;
171
172         /** Allowed channel modes from oper classes. */
173         std::bitset<64> AllowedChanModes;
174
175         /** \<oper> block used for this oper-up. May be NULL. */
176         reference<ConfigTag> oper_block;
177         /** \<type> block used for this oper-up. Valid for local users, may be NULL on remote */
178         reference<ConfigTag> type_block;
179         /** \<class> blocks referenced from the \<type> block. These define individual permissions */
180         std::vector<reference<ConfigTag> > class_blocks;
181         /** Name of the oper type; i.e. the one shown in WHOIS */
182         std::string name;
183
184         /** Get a configuration item, searching in the oper, type, and class blocks (in that order) */
185         std::string getConfig(const std::string& key);
186         void init();
187 };
188
189 /** This class holds the bulk of the runtime configuration for the ircd.
190  * It allows for reading new config values, accessing configuration files,
191  * and storage of the configuration data needed to run the ircd, such as
192  * the servername, connect classes, /ADMIN data, MOTDs and filenames etc.
193  */
194 class CoreExport ServerConfig
195 {
196   private:
197         void CrossCheckOperClassType();
198         void CrossCheckConnectBlocks(ServerConfig* current);
199
200  public:
201         class ServerPaths
202         {
203          public:
204                 /** Config path */
205                 std::string Config;
206
207                 /** Data path */
208                 std::string Data;
209
210                 /** Log path */
211                 std::string Log;
212
213                 /** Module path */
214                 std::string Module;
215
216                 ServerPaths()
217                         : Config(CONFIG_PATH)
218                         , Data(DATA_PATH)
219                         , Log(LOG_PATH)
220                         , Module(MOD_PATH) { }
221
222                 std::string PrependConfig(const std::string& fn) const { return FileSystem::ExpandPath(Config, fn); }
223                 std::string PrependData(const std::string& fn) const { return FileSystem::ExpandPath(Data, fn); }
224                 std::string PrependLog(const std::string& fn) const { return FileSystem::ExpandPath(Log, fn); }
225                 std::string PrependModule(const std::string& fn) const { return FileSystem::ExpandPath(Module, fn); }
226         };
227
228         /** Get a configuration tag
229          * @param tag The name of the tag to get
230          */
231         ConfigTag* ConfValue(const std::string& tag);
232
233         ConfigTagList ConfTags(const std::string& tag);
234
235         /** Error stream, contains error output from any failed configuration parsing.
236          */
237         std::stringstream errstr;
238
239         /** True if this configuration is valid enough to run with */
240         bool valid;
241
242         /** Bind to IPv6 by default */
243         bool WildcardIPv6;
244
245         /** Used to indicate who we announce invites to on a channel */
246         enum InviteAnnounceState { INVITE_ANNOUNCE_NONE, INVITE_ANNOUNCE_ALL, INVITE_ANNOUNCE_OPS, INVITE_ANNOUNCE_DYNAMIC };
247         enum OperSpyWhoisState { SPYWHOIS_NONE, SPYWHOIS_SINGLEMSG, SPYWHOIS_SPLITMSG };
248
249         /** This holds all the information in the config file,
250          * it's indexed by tag name to a vector of key/values.
251          */
252         ConfigDataHash config_data;
253
254         /** This holds all extra files that have been read in the configuration
255          * (for example, MOTD and RULES files are stored here)
256          */
257         ConfigFileCache Files;
258
259         /** Length limits, see definition of ServerLimits class
260          */
261         ServerLimits Limits;
262
263         /** Locations of various types of file (config, module, etc). */
264         ServerPaths Paths;
265
266         /** Configuration parsed from the command line.
267          */
268         CommandLineConf cmdline;
269
270         /** Clones CIDR range for ipv4 (0-32)
271          * Defaults to 32 (checks clones on all IPs seperately)
272          */
273         int c_ipv4_range;
274
275         /** Clones CIDR range for ipv6 (0-128)
276          * Defaults to 128 (checks on all IPs seperately)
277          */
278         int c_ipv6_range;
279
280         /** Holds the server name of the local server
281          * as defined by the administrator.
282          */
283         std::string ServerName;
284
285         /** Notice to give to users when they are banned by an XLine
286          */
287         std::string XLineMessage;
288
289         /* Holds the network name the local server
290          * belongs to. This is an arbitary field defined
291          * by the administrator.
292          */
293         std::string Network;
294
295         /** Holds the description of the local server
296          * as defined by the administrator.
297          */
298         std::string ServerDesc;
299
300         /** Holds the admin's name, for output in
301          * the /ADMIN command.
302          */
303         std::string AdminName;
304
305         /** Holds the email address of the admin,
306          * for output in the /ADMIN command.
307          */
308         std::string AdminEmail;
309
310         /** Holds the admin's nickname, for output
311          * in the /ADMIN command
312          */
313         std::string AdminNick;
314
315         /** Pretend disabled commands don't exist.
316          */
317         bool DisabledDontExist;
318
319         /** This variable contains a space-seperated list
320          * of commands which are disabled by the
321          * administrator of the server for non-opers.
322          */
323         std::string DisabledCommands;
324
325         /** This variable identifies which usermodes have been diabled.
326          */
327         char DisabledUModes[64];
328
329         /** This variable identifies which chanmodes have been disabled.
330          */
331         char DisabledCModes[64];
332
333         /** If set to true, then all opers on this server are
334          * shown with a generic 'is an IRC operator' line rather
335          * than the oper type. Oper types are still used internally.
336          */
337         bool GenericOper;
338
339         /** If this value is true, banned users (+b, not extbans) will not be able to change nick
340          * if banned on any channel, nor to message them.
341          */
342         bool RestrictBannedUsers;
343
344         /** If this is set to true, then mode lists (e.g
345          * MODE \#chan b) are hidden from unprivileged
346          * users.
347          */
348         bool HideModeLists[256];
349
350         /** The number of seconds the DNS subsystem
351          * will wait before timing out any request.
352          */
353         int dns_timeout;
354
355         /** The size of the read() buffer in the user
356          * handling code, used to read data into a user's
357          * recvQ.
358          */
359         int NetBufferSize;
360
361         /** The value to be used for listen() backlogs
362          * as default.
363          */
364         int MaxConn;
365
366         /** If we should check for clones during CheckClass() in AddUser()
367          * Setting this to false allows to not trigger on maxclones for users
368          * that may belong to another class after DNS-lookup is complete.
369          * It does, however, make the server spend more time on users we may potentially not want.
370          */
371         bool CCOnConnect;
372
373         /** The soft limit value assigned to the irc server.
374          * The IRC server will not allow more than this
375          * number of local users.
376          */
377         unsigned int SoftLimit;
378
379         /** Maximum number of targets for a multi target command
380          * such as PRIVMSG or KICK
381          */
382         unsigned int MaxTargets;
383
384         /** True if we're going to hide netsplits as *.net *.split for non-opers
385          */
386         bool HideSplits;
387
388         /** True if we're going to hide ban reasons for non-opers (e.g. G-Lines,
389          * K-Lines, Z-Lines)
390          */
391         bool HideBans;
392
393         /** Announce invites to the channel with a server notice
394          */
395         InviteAnnounceState AnnounceInvites;
396
397         /** If this is enabled then operators will
398          * see invisible (+i) channels in /whois.
399          */
400         OperSpyWhoisState OperSpyWhois;
401
402         /** True if raw I/O is being logged */
403         bool RawLog;
404
405         /** Set to a non-empty string to obfuscate the server name of users in WHOIS
406          */
407         std::string HideWhoisServer;
408
409         /** Set to a non empty string to obfuscate nicknames prepended to a KILL.
410          */
411         std::string HideKillsServer;
412
413         /** The full pathname and filename of the PID
414          * file as defined in the configuration.
415          */
416         std::string PID;
417
418         /** The connect classes in use by the IRC server.
419          */
420         ClassVector Classes;
421
422         /** STATS characters in this list are available
423          * only to operators.
424          */
425         std::string UserStats;
426
427         /** Default channel modes
428          */
429         std::string DefaultModes;
430
431         /** Custom version string, which if defined can replace the system info in VERSION.
432          */
433         std::string CustomVersion;
434
435         /** If set to true, provide syntax hints for unknown commands
436          */
437         bool SyntaxHints;
438
439         /** If set to true, the CycleHosts mode change will be sourced from the user,
440          * rather than the server
441          */
442         bool CycleHostsFromUser;
443
444         /** If set to true, prefixed channel NOTICEs and PRIVMSGs will have the prefix
445          *  added to the outgoing text for undernet style msg prefixing.
446          */
447         bool UndernetMsgPrefix;
448
449         /** If set to true, the full nick!user\@host will be shown in the TOPIC command
450          * for who set the topic last. If false, only the nick is shown.
451          */
452         bool FullHostInTopic;
453
454         /** Oper blocks keyed by their name
455          */
456         OperIndex oper_blocks;
457
458         /** Oper types keyed by their name
459          */
460         OperIndex OperTypes;
461
462         /** Max channels per user
463          */
464         unsigned int MaxChans;
465
466         /** Oper max channels per user
467          */
468         unsigned int OperMaxChans;
469
470         /** TS6-like server ID.
471          * NOTE: 000...999 are usable for InspIRCd servers. This
472          * makes code simpler. 0AA, 1BB etc with letters are reserved
473          * for services use.
474          */
475         std::string sid;
476
477         /** Construct a new ServerConfig
478          */
479         ServerConfig();
480
481         /** Get server ID as string with required leading zeroes
482          */
483         const std::string& GetSID() const { return sid; }
484
485         /** Read the entire configuration into memory
486          * and initialize this class. All other methods
487          * should be used only by the core.
488          */
489         void Read();
490
491         /** Apply configuration changes from the old configuration.
492          */
493         void Apply(ServerConfig* old, const std::string &useruid);
494         void ApplyModules(User* user);
495
496         void Fill();
497
498         bool ApplyDisabledCommands(const std::string& data);
499
500         /** Escapes a value for storage in a configuration key.
501          * @param str The string to escape.
502          * @param xml Are we using the XML config format?
503          */
504         static std::string Escape(const std::string& str, bool xml = true);
505
506         /** If this value is true, invites will bypass more than just +i
507          */
508         bool InvBypassModes;
509
510         /** If this value is true, snotices will not stack when repeats are sent
511          */
512         bool NoSnoticeStack;
513 };
514
515 /** The background thread for config reading, so that reading from executable includes
516  * does not block.
517  */
518 class CoreExport ConfigReaderThread : public Thread
519 {
520         ServerConfig* Config;
521         volatile bool done;
522  public:
523         const std::string TheUserUID;
524         ConfigReaderThread(const std::string &useruid)
525                 : Config(new ServerConfig), done(false), TheUserUID(useruid)
526         {
527         }
528
529         virtual ~ConfigReaderThread()
530         {
531                 delete Config;
532         }
533
534         void Run();
535         /** Run in the main thread to apply the configuration */
536         void Finish();
537         bool IsDone() { return done; }
538 };
539
540 class CoreExport ConfigStatus
541 {
542  public:
543         User* const srcuser;
544
545         ConfigStatus(User* user = NULL)
546                 : srcuser(user)
547         {
548         }
549 };