]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/configreader.h
61cf887faf28f207c43a58867077ab1dca9d073e
[user/henk/code/inspircd.git] / include / configreader.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 INSPIRCD_CONFIGREADER
15 #define INSPIRCD_CONFIGREADER
16
17 #include <sstream>
18 #include <string>
19 #include <vector>
20 #include <map>
21 #include "inspircd.h"
22 #include "globals.h"
23 #include "modules.h"
24 #include "socketengine.h"
25 #include "socket.h"
26
27 class ServerConfig;
28 class InspIRCd;
29 class InspSocket;
30
31 /** Types of data in the core config
32  */
33 enum ConfigDataType
34 {
35         DT_NOTHING       = 0,
36         DT_INTEGER       = 1,
37         DT_CHARPTR       = 2,
38         DT_BOOLEAN       = 3,
39         DT_ALLOW_NEWLINE = 128
40 };
41
42 /** Holds a config value, either string, integer or boolean.
43  * Callback functions receive one or more of these, either on
44  * their own as a reference, or in a reference to a deque of them.
45  * The callback function can then alter the values of the ValueItem
46  * classes to validate the settings.
47  */
48 class ValueItem
49 {
50         std::string v;
51  public:
52         ValueItem(int value);
53         ValueItem(bool value);
54         ValueItem(char* value);
55         void Set(char* value);
56         void Set(const char* val);
57         void Set(int value);
58         int GetInteger();
59         char* GetString();
60         bool GetBool();
61 };
62
63 /** The base class of the container 'ValueContainer'
64  * used internally by the core to hold core values.
65  */
66 class ValueContainerBase
67 {
68  public:
69         ValueContainerBase() { }
70         virtual ~ValueContainerBase() { }
71 };
72
73 /** ValueContainer is used to contain pointers to different
74  * core values such as the server name, maximum number of
75  * clients etc.
76  * It is specialized to hold a data type, then pointed at
77  * a value in the ServerConfig class. When the value has been
78  * read and validated, the Set method is called to write the
79  * value safely in a type-safe manner.
80  */
81 template<typename T> class ValueContainer : public ValueContainerBase
82 {
83         T val;
84
85  public:
86
87         ValueContainer()
88         {
89                 val = NULL;
90         }
91
92         ValueContainer(T Val)
93         {
94                 val = Val;
95         }
96
97         void Set(T newval, size_t s)
98         {
99                 memcpy(val, newval, s);
100         }
101 };
102
103 /** A specialization of ValueContainer to hold a pointer to a bool
104  */
105 typedef ValueContainer<bool*> ValueContainerBool;
106
107 /** A specialization of ValueContainer to hold a pointer to
108  * an unsigned int
109  */
110 typedef ValueContainer<unsigned int*> ValueContainerUInt;
111
112 /** A specialization of ValueContainer to hold a pointer to
113  * a char array.
114  */
115 typedef ValueContainer<char*> ValueContainerChar;
116
117 /** A specialization of ValueContainer to hold a pointer to
118  * an int
119  */
120 typedef ValueContainer<int*> ValueContainerInt;
121
122 /** A set of ValueItems used by multi-value validator functions
123  */
124 typedef std::deque<ValueItem> ValueList;
125
126 /** A callback for validating a single value
127  */
128 typedef bool (*Validator)(ServerConfig* conf, const char*, const char*, ValueItem&);
129 /** A callback for validating multiple value entries
130  */
131 typedef bool (*MultiValidator)(ServerConfig* conf, const char*, char**, ValueList&, int*);
132 /** A callback indicating the end of a group of entries
133  */
134 typedef bool (*MultiNotify)(ServerConfig* conf, const char*);
135
136 /** Holds a core configuration item and its callbacks
137  */
138 struct InitialConfig
139 {
140         char* tag;
141         char* value;
142         char* default_value;
143         ValueContainerBase* val;
144         ConfigDataType datatype;
145         Validator validation_function;
146 };
147
148 /** Holds a core configuration item and its callbacks
149  * where there may be more than one item
150  */
151 struct MultiConfig
152 {
153         const char*     tag;
154         char*           items[12];
155         char*           items_default[12];
156         int             datatype[12];
157         MultiNotify     init_function;
158         MultiValidator  validation_function;
159         MultiNotify     finish_function;
160 };
161
162 /** A set of oper types
163  */
164 typedef std::map<irc::string,char*> opertype_t;
165
166 /** A Set of oper classes
167  */
168 typedef std::map<irc::string,char*> operclass_t;
169
170
171 /** This class holds the bulk of the runtime configuration for the ircd.
172  * It allows for reading new config values, accessing configuration files,
173  * and storage of the configuration data needed to run the ircd, such as
174  * the servername, connect classes, /ADMIN data, MOTDs and filenames etc.
175  */
176 class ServerConfig : public Extensible
177 {
178   private:
179         /** Creator/owner
180          */
181         InspIRCd* ServerInstance;
182
183         /** This variable holds the names of all
184          * files included from the main one. This
185          * is used to make sure that no files are
186          * recursively included.
187          */
188         std::vector<std::string> include_stack;
189
190         /** This private method processes one line of
191          * configutation, appending errors to errorstream
192          * and setting error if an error has occured.
193          */
194         bool ParseLine(ConfigDataHash &target, std::string &line, long linenumber, std::ostringstream &errorstream);
195   
196         /** Process an include directive
197          */
198         bool DoInclude(ConfigDataHash &target, const std::string &file, std::ostringstream &errorstream);
199
200         /** Check that there is only one of each configuration item
201          */
202         bool CheckOnce(char* tag, bool bail, userrec* user);
203   
204   public:
205
206         InspIRCd* GetInstance();
207           
208         /** This holds all the information in the config file,
209          * it's indexed by tag name to a vector of key/values.
210          */
211         ConfigDataHash config_data;
212
213         /** Max number of WhoWas entries per user.
214          */
215         int WhoWasGroupSize;
216
217         /** Max number of cumulative user-entries in WhoWas.
218          *  When max reached and added to, push out oldest entry FIFO style.
219          */
220         int WhoWasMaxGroups;
221
222         /** Max seconds a user is kept in WhoWas before being pruned.
223          */
224         int WhoWasMaxKeep;
225
226         /** Holds the server name of the local server
227          * as defined by the administrator.
228          */
229         char ServerName[MAXBUF];
230         
231         /* Holds the network name the local server
232          * belongs to. This is an arbitary field defined
233          * by the administrator.
234          */
235         char Network[MAXBUF];
236
237         /** Holds the description of the local server
238          * as defined by the administrator.
239          */
240         char ServerDesc[MAXBUF];
241
242         /** Holds the admin's name, for output in
243          * the /ADMIN command.
244          */
245         char AdminName[MAXBUF];
246
247         /** Holds the email address of the admin,
248          * for output in the /ADMIN command.
249          */
250         char AdminEmail[MAXBUF];
251
252         /** Holds the admin's nickname, for output
253          * in the /ADMIN command
254          */
255         char AdminNick[MAXBUF];
256
257         /** The admin-configured /DIE password
258          */
259         char diepass[MAXBUF];
260
261         /** The admin-configured /RESTART password
262          */
263         char restartpass[MAXBUF];
264
265         /** The pathname and filename of the message of the
266          * day file, as defined by the administrator.
267          */
268         char motd[MAXBUF];
269
270         /** The pathname and filename of the rules file,
271          * as defined by the administrator.
272          */
273         char rules[MAXBUF];
274
275         /** The quit prefix in use, or an empty string
276          */
277         char PrefixQuit[MAXBUF];
278
279         /** The last string found within a <die> tag, or
280          * an empty string.
281          */
282         char DieValue[MAXBUF];
283
284         /** The DNS server to use for DNS queries
285          */
286         char DNSServer[MAXBUF];
287
288         /** This variable contains a space-seperated list
289          * of commands which are disabled by the
290          * administrator of the server for non-opers.
291          */
292         char DisabledCommands[MAXBUF];
293
294         /** The full path to the modules directory.
295          * This is either set at compile time, or
296          * overridden in the configuration file via
297          * the <options> tag.
298          */
299         char ModPath[1024];
300
301         /** The full pathname to the executable, as
302          * given in argv[0] when the program starts.
303          */
304         char MyExecutable[1024];
305
306         /** The file handle of the logfile. If this
307          * value is NULL, the log file is not open,
308          * probably due to a permissions error on
309          * startup (this should not happen in normal
310          * operation!).
311          */
312         FILE *log_file;
313
314         /** If this value is true, the owner of the
315          * server specified -nofork on the command
316          * line, causing the daemon to stay in the
317          * foreground.
318          */
319         bool nofork;
320         
321         /** If this value if true then all log
322          * messages will be output, regardless of
323          * the level given in the config file.
324          * This is set with the -debug commandline
325          * option.
326          */
327         bool forcedebug;
328         
329         /** If this is true then log output will be
330          * written to the logfile. This is the default.
331          * If you put -nolog on the commandline then
332          * the logfile will not be written.
333          * This is meant to be used in conjunction with
334          * -debug for debugging without filling up the
335          * hard disk.
336          */
337         bool writelog;
338
339         /** If this value is true, halfops have been
340          * enabled in the configuration file.
341          */
342         bool AllowHalfop;
343
344         /** The number of seconds the DNS subsystem
345          * will wait before timing out any request.
346          */
347         int dns_timeout;
348
349         /** The size of the read() buffer in the user
350          * handling code, used to read data into a user's
351          * recvQ.
352          */
353         int NetBufferSize;
354
355         /** The value to be used for listen() backlogs
356          * as default.
357          */
358         int MaxConn;
359
360         /** The soft limit value assigned to the irc server.
361          * The IRC server will not allow more than this
362          * number of local users.
363          */
364         unsigned int SoftLimit;
365
366         /** Maximum number of targets for a multi target command
367          * such as PRIVMSG or KICK
368          */
369         unsigned int MaxTargets;
370
371         /** The maximum number of /WHO results allowed
372          * in any single /WHO command.
373          */
374         int MaxWhoResults;
375
376         /** True if the DEBUG loglevel is selected.
377          */
378         int debugging;
379
380         /** The loglevel in use by the IRC server
381          */
382         int LogLevel;
383
384         /** How many seconds to wait before exiting
385          * the program when /DIE is correctly issued.
386          */
387         int DieDelay;
388
389         /** True if we're going to hide netsplits as *.net *.split for non-opers
390          */
391         bool HideSplits;
392
393         /** True if we're going to hide ban reasons for non-opers (e.g. G-Lines,
394          * K-Lines, Z-Lines)
395          */
396         bool HideBans;
397
398         /** If this is enabled then operators will
399          * see invisible (+i) channels in /whois.
400          */
401         bool OperSpyWhois;
402
403         /** Set to a non-empty string to obfuscate the server name of users in WHOIS
404          */
405         char HideWhoisServer[MAXBUF];
406
407         /** A list of IP addresses the server is listening
408          * on.
409          */
410         char addrs[MAXBUF][255];
411
412         /** The MOTD file, cached in a file_cache type.
413          */
414         file_cache MOTD;
415
416         /** The RULES file, cached in a file_cache type.
417          */
418         file_cache RULES;
419
420         /** The full pathname and filename of the PID
421          * file as defined in the configuration.
422          */
423         char PID[1024];
424
425         /** The connect classes in use by the IRC server.
426          */
427         ClassVector Classes;
428
429         /** A list of module names (names only, no paths)
430          * which are currently loaded by the server.
431          */
432         std::vector<std::string> module_names;
433
434         /** A list of ports which the server is listening on
435          */
436         int ports[255];
437
438         /** A list of the file descriptors for the listening client ports
439          */
440         ListenSocket* openSockfd[255];
441
442         /** Boolean sets of which modules implement which functions
443          */
444         char implement_lists[255][255];
445
446         /** Global implementation list
447          */
448         char global_implementation[255];
449
450         /** A list of ports claimed by IO Modules
451          */
452         std::map<int,Module*> IOHookModule;
453
454         std::map<InspSocket*, Module*> SocketIOHookModule;
455
456         /** The 005 tokens of this server (ISUPPORT)
457          * populated/repopulated upon loading or unloading
458          * modules.
459          */
460         std::string data005;
461         std::vector<std::string> isupport;
462
463         /** STATS characters in this list are available
464          * only to operators.
465          */
466         char UserStats[MAXBUF];
467         
468         /** The path and filename of the ircd.log file
469          */
470         std::string logpath;
471
472         /** Custom version string, which if defined can replace the system info in VERSION.
473          */
474         char CustomVersion[MAXBUF];
475
476         /** List of u-lined servers
477          */
478         std::vector<irc::string> ulines;
479
480         /** Max banlist sizes for channels (the std::string is a glob)
481          */
482         std::map<std::string,int> maxbans;
483
484         /** Directory where the inspircd binary resides
485          */
486         std::string MyDir;
487
488         /** If set to true, no user DNS lookups are to be performed
489          */
490         bool NoUserDns;
491
492         /** If set to true, provide syntax hints for unknown commands
493          */
494         bool SyntaxHints;
495
496         /** If set to true, users appear to quit then rejoin when their hosts change.
497          * This keeps clients synchronized properly.
498          */
499         bool CycleHosts;
500
501         /** If set to true, prefixed channel NOTICEs and PRIVMSGs will have the prefix
502          *  added to the outgoing text for undernet style msg prefixing.
503          */
504         bool UndernetMsgPrefix;
505
506         /** If set to true, the full nick!user@host will be shown in the TOPIC command
507          * for who set the topic last. If false, only the nick is shown.
508          */
509         bool FullHostInTopic;
510
511         /** All oper type definitions from the config file
512          */
513         opertype_t opertypes;
514
515         /** All oper class definitions from the config file
516          */
517         operclass_t operclass;
518
519         /** Saved argv from startup
520          */
521         char** argv;
522
523         /** Saved argc from startup
524          */
525         int argc;
526
527         /** Construct a new ServerConfig
528          */
529         ServerConfig(InspIRCd* Instance);
530
531         /** Clears the include stack in preperation for a Read() call.
532          */
533         void ClearStack();
534
535         /** Update the 005 vector
536          */
537         void Update005();
538
539         /** Send the 005 numerics (ISUPPORT) to a user
540          */
541         void Send005(userrec* user);
542
543         /** Read the entire configuration into memory
544          * and initialize this class. All other methods
545          * should be used only by the core.
546          */
547         void Read(bool bail, userrec* user);
548
549         /** Read a file into a file_cache object
550          */
551         bool ReadFile(file_cache &F, const char* fname);
552
553         /** Load 'filename' into 'target', with the new config parser everything is parsed into
554          * tag/key/value at load-time rather than at read-value time.
555          */
556
557         /** Report a configuration error given in errormessage.
558          * @param bail If this is set to true, the error is sent to the console, and the program exits
559          * @param user If this is set to a non-null value, and bail is false, the errors are spooled to
560          * this user as SNOTICEs.
561          * If the parameter is NULL, the messages are spooled to all users via WriteOpers as SNOTICEs.
562          */
563         void ReportConfigError(const std::string &errormessage, bool bail, userrec* user);
564
565         /** Load 'filename' into 'target', with the new config parser everything is parsed into
566          * tag/key/value at load-time rather than at read-value time.
567          */
568         bool LoadConf(ConfigDataHash &target, const char* filename, std::ostringstream &errorstream);
569
570         /** Load 'filename' into 'target', with the new config parser everything is parsed into
571          * tag/key/value at load-time rather than at read-value time.
572          */
573         bool LoadConf(ConfigDataHash &target, const std::string &filename, std::ostringstream &errorstream);
574         
575         /* Both these return true if the value existed or false otherwise */
576         
577         /** Writes 'length' chars into 'result' as a string
578          */
579         bool ConfValue(ConfigDataHash &target, const char* tag, const char* var, int index, char* result, int length, bool allow_linefeeds = false);
580         bool ConfValue(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index, char* result, int length, bool allow_linefeeds = false);
581
582         /** Writes 'length' chars into 'result' as a string
583          */
584         bool ConfValue(ConfigDataHash &target, const std::string &tag, const std::string &var, int index, std::string &result, bool allow_linefeeds = false);
585         bool ConfValue(ConfigDataHash &target, const std::string &tag, const std::string &var, const std::string &default_value, int index, std::string &result, bool allow_linefeeds = false);
586         
587         /** Tries to convert the value to an integer and write it to 'result'
588          */
589         bool ConfValueInteger(ConfigDataHash &target, const char* tag, const char* var, int index, int &result);
590         bool ConfValueInteger(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index, int &result);
591         /** Tries to convert the value to an integer and write it to 'result'
592          */
593         bool ConfValueInteger(ConfigDataHash &target, const std::string &tag, const std::string &var, int index, int &result);
594         bool ConfValueInteger(ConfigDataHash &target, const std::string &tag, const std::string &var, const std::string &default_value, int index, int &result);
595         
596         /** Returns true if the value exists and has a true value, false otherwise
597          */
598         bool ConfValueBool(ConfigDataHash &target, const char* tag, const char* var, int index);
599         bool ConfValueBool(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index);
600         /** Returns true if the value exists and has a true value, false otherwise
601          */
602         bool ConfValueBool(ConfigDataHash &target, const std::string &tag, const std::string &var, int index);
603         bool ConfValueBool(ConfigDataHash &target, const std::string &tag, const std::string &var, const std::string &default_value, int index);
604         
605         /** Returns the number of occurences of tag in the config file
606          */
607         int ConfValueEnum(ConfigDataHash &target, const char* tag);
608         /** Returns the number of occurences of tag in the config file
609          */
610         int ConfValueEnum(ConfigDataHash &target, const std::string &tag);
611         
612         /** Returns the numbers of vars inside the index'th 'tag in the config file
613          */
614         int ConfVarEnum(ConfigDataHash &target, const char* tag, int index);
615         /** Returns the numbers of vars inside the index'th 'tag in the config file
616          */
617         int ConfVarEnum(ConfigDataHash &target, const std::string &tag, int index);
618         
619         Module* GetIOHook(int port);
620         bool AddIOHook(int port, Module* iomod);
621         bool DelIOHook(int port);
622         Module* GetIOHook(InspSocket* is);
623         bool AddIOHook(Module* iomod, InspSocket* is);
624         bool DelIOHook(InspSocket* is);
625
626         static std::string GetFullProgDir(char** argv, int argc);
627         static bool DirValid(const char* dirandfile);
628         static char* CleanFilename(char* name);
629         static bool FileExists(const char* file);
630         
631 };
632
633 bool InitializeDisabledCommands(const char* data, InspIRCd* ServerInstance);
634
635 bool InitTypes(ServerConfig* conf, const char* tag);
636 bool InitClasses(ServerConfig* conf, const char* tag);
637 bool DoType(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types);
638 bool DoClass(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types);
639 bool DoneClassesAndTypes(ServerConfig* conf, const char* tag);
640
641 #endif