]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/configreader.h
Working privs implementation, and example usage in NOTICE for mass messaging.
[user/henk/code/inspircd.git] / include / configreader.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 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 /* handy defines */
18
19 /** Determines if a channel op is exempt from given mode m,
20  * in config of server instance s. 
21  */
22 #define CHANOPS_EXEMPT(s, m) (s->Config->ExemptChanOps[(unsigned char)m])
23
24 #include <sstream>
25 #include <string>
26 #include <vector>
27 #include <map>
28 #include "inspircd.h"
29 #include "modules.h"
30 #include "socketengine.h"
31 #include "socket.h"
32
33 /* Required forward definitions */
34 class ServerConfig;
35 class InspIRCd;
36 class BufferedSocket;
37
38 /** Types of data in the core config
39  */
40 enum ConfigDataType
41 {
42         DT_NOTHING       = 0,           /* No data */
43         DT_INTEGER       = 1,           /* Integer */
44         DT_CHARPTR       = 2,           /* Char pointer */
45         DT_BOOLEAN       = 3,           /* Boolean */
46         DT_HOSTNAME      = 4,           /* Hostname syntax */
47         DT_NOSPACES      = 5,           /* No spaces */
48         DT_IPADDRESS     = 6,           /* IP address (v4, v6) */
49         DT_CHANNEL       = 7,           /* Channel name */
50         DT_ALLOW_WILD    = 64,          /* Allow wildcards/CIDR in DT_IPADDRESS */
51         DT_ALLOW_NEWLINE = 128,         /* New line characters allowed in DT_CHARPTR */
52         DT_BOOTONLY      = 256          /* Can only be set on startup, not on rehash */
53 };
54
55 /** The maximum number of values in a core configuration tag. Can be increased if needed.
56  */
57 #define MAX_VALUES_PER_TAG 18
58
59 /** Holds a config value, either string, integer or boolean.
60  * Callback functions receive one or more of these, either on
61  * their own as a reference, or in a reference to a deque of them.
62  * The callback function can then alter the values of the ValueItem
63  * classes to validate the settings.
64  */
65 class ValueItem
66 {
67         /** Actual data */
68         std::string v;
69  public:
70         /** Initialize with an int */
71         ValueItem(int value);
72         /** Initialize with a bool */
73         ValueItem(bool value);
74         /** Initialize with a char pointer */
75         ValueItem(const char* value);
76         /** Change value to a char pointer */
77         void Set(const char* val);
78         /** Change value to an int */
79         void Set(int value);
80         /** Get value as an int */
81         int GetInteger();
82         /** Get value as a string */
83         char* GetString();
84         /** Get value as a bool */
85         bool GetBool();
86 };
87
88 /** The base class of the container 'ValueContainer'
89  * used internally by the core to hold core values.
90  */
91 class ValueContainerBase
92 {
93  public:
94         /** Constructor */
95         ValueContainerBase() { }
96         /** Destructor */
97         virtual ~ValueContainerBase() { }
98 };
99
100 /** ValueContainer is used to contain pointers to different
101  * core values such as the server name, maximum number of
102  * clients etc.
103  * It is specialized to hold a data type, then pointed at
104  * a value in the ServerConfig class. When the value has been
105  * read and validated, the Set method is called to write the
106  * value safely in a type-safe manner.
107  */
108 template<typename T> class ValueContainer : public ValueContainerBase
109 {
110         /** Contained item */
111         T val;
112  public:
113
114         /** Initialize with nothing */
115         ValueContainer()
116         {
117                 val = NULL;
118         }
119
120         /** Initialize with a value of type T */
121         ValueContainer(T Val)
122         {
123                 val = Val;
124         }
125
126         /** Change value to type T of size s */
127         void Set(T newval, size_t s)
128         {
129                 memcpy(val, newval, s);
130         }
131 };
132
133 /** A specialization of ValueContainer to hold a pointer to a bool
134  */
135 typedef ValueContainer<bool*> ValueContainerBool;
136
137 /** A specialization of ValueContainer to hold a pointer to
138  * an unsigned int
139  */
140 typedef ValueContainer<unsigned int*> ValueContainerUInt;
141
142 /** A specialization of ValueContainer to hold a pointer to
143  * a char array.
144  */
145 typedef ValueContainer<char*> ValueContainerChar;
146
147 /** A specialization of ValueContainer to hold a pointer to
148  * an int
149  */
150 typedef ValueContainer<int*> ValueContainerInt;
151
152 /** A specialization of ValueContainer to hold a pointer to
153  * a size_t.
154  */
155 typedef ValueContainer<size_t*> ValueContainerST;
156
157 /** A set of ValueItems used by multi-value validator functions
158  */
159 typedef std::deque<ValueItem> ValueList;
160
161 /** A callback for validating a single value
162  */
163 typedef bool (*Validator)(ServerConfig* conf, const char*, const char*, ValueItem&);
164 /** A callback for validating multiple value entries
165  */
166 typedef bool (*MultiValidator)(ServerConfig* conf, const char*, char**, ValueList&, int*);
167 /** A callback indicating the end of a group of entries
168  */
169 typedef bool (*MultiNotify)(ServerConfig* conf, const char*);
170
171 /** Holds a core configuration item and its callbacks
172  */
173 struct InitialConfig
174 {
175         /** Tag name */
176         const char* tag;
177         /** Value name */
178         const char* value;
179         /** Default, if not defined */
180         const char* default_value;
181         /** Value containers */
182         ValueContainerBase* val;
183         /** Data types */
184         int datatype;
185         /** Validation function */
186         Validator validation_function;
187 };
188
189 /** Represents a deprecated configuration tag.
190  */
191 struct Deprecated
192 {
193         /** Tag name
194          */
195         const char* tag;
196         /** Tag value
197          */
198         const char* value;
199         /** Reason for deprecation
200          */
201         const char* reason;
202 };
203
204 /** Holds a core configuration item and its callbacks
205  * where there may be more than one item
206  */
207 struct MultiConfig
208 {
209         /** Tag name */
210         const char*     tag;
211         /** One or more items within tag */
212         const char*     items[MAX_VALUES_PER_TAG];
213         /** One or more defaults for items within tags */
214         const char* items_default[MAX_VALUES_PER_TAG];
215         /** One or more data types */
216         int             datatype[MAX_VALUES_PER_TAG];
217         /** Initialization function */
218         MultiNotify     init_function;
219         /** Validation function */
220         MultiValidator  validation_function;
221         /** Completion function */
222         MultiNotify     finish_function;
223 };
224
225 /** A set of oper types
226  */
227 typedef std::map<irc::string,char*> opertype_t;
228
229 /** Holds an oper class.
230  */
231 struct operclass_data : public Extensible
232 {
233         /** Command list for the class
234          */
235         char *commandlist;
236
237         /** Channel mode list for the class
238          */
239         char *cmodelist;
240
241         /** User mode list for the class
242          */
243         char *umodelist;
244
245         /** Priviledges given by this class
246          */
247         char *privs;
248 };
249
250 /** A Set of oper classes
251  */
252 typedef std::map<irc::string, operclass_data> operclass_t;
253
254 /** Defines the server's length limits on various length-limited
255  * items such as topics, nicknames, channel names etc.
256  */
257 class ServerLimits : public Extensible
258 {
259  public:
260         /** Maximum nickname length */
261         size_t NickMax;
262         /** Maximum channel length */
263         size_t ChanMax;
264         /** Maximum number of modes per line */
265         size_t MaxModes;
266         /** Maximum length of ident, not including ~ etc */
267         size_t IdentMax;
268         /** Maximum length of a quit message */
269         size_t MaxQuit;
270         /** Maximum topic length */
271         size_t MaxTopic;
272         /** Maximum kick message length */
273         size_t MaxKick;
274         /** Maximum GECOS (real name) length */
275         size_t MaxGecos;
276         /** Maximum away message length */
277         size_t MaxAway;
278
279         /** Creating the class initialises it to the defaults
280          * as in 1.1's ./configure script. Reading other values
281          * from the config will change these values.
282          */
283         ServerLimits() : NickMax(31), ChanMax(64), MaxModes(20), IdentMax(12), MaxQuit(255), MaxTopic(307), MaxKick(255), MaxGecos(128), MaxAway(200)
284         {
285         }
286
287         /** Finalises the settings by adding one. This allows for them to be used as-is
288          * without a 'value+1' when using the std::string assignment methods etc.
289          */
290         void Finalise()
291         {
292                 NickMax++;
293                 ChanMax++;
294                 IdentMax++;
295                 MaxQuit++;
296                 MaxTopic++;
297                 MaxKick++;
298                 MaxGecos++;
299                 MaxAway++;
300         }
301 };
302
303 /** This class holds the bulk of the runtime configuration for the ircd.
304  * It allows for reading new config values, accessing configuration files,
305  * and storage of the configuration data needed to run the ircd, such as
306  * the servername, connect classes, /ADMIN data, MOTDs and filenames etc.
307  */
308 class CoreExport ServerConfig : public Extensible
309 {
310   private:
311         /** Creator/owner pointer
312          */
313         InspIRCd* ServerInstance;
314
315         /** This variable holds the names of all
316          * files included from the main one. This
317          * is used to make sure that no files are
318          * recursively included.
319          */
320         std::vector<std::string> include_stack;
321
322         /** This private method processes one line of
323          * configutation, appending errors to errorstream
324          * and setting error if an error has occured.
325          */
326         bool ParseLine(ConfigDataHash &target, const std::string &filename, std::string &line, long &linenumber, std::ostringstream &errorstream);
327
328         /** Check that there is only one of each configuration item
329          */
330         bool CheckOnce(const char* tag, ConfigDataHash &newconf);
331
332  public:
333         /** Process an include executable directive
334          */
335         bool DoPipe(ConfigDataHash &target, const std::string &file, std::ostringstream &errorstream);
336
337         /** Process an include file directive
338          */
339         bool DoInclude(ConfigDataHash &target, const std::string &file, std::ostringstream &errorstream);
340
341         /** User that is currently performing a rehash, needed because the
342          * rehash code is now threaded and needs to know who to give errors and feedback to.
343          */
344         std::string RehashUserUID;
345
346         /** Rehash parameter, as above
347          */
348         std::string RehashParameter;
349
350         /** Error stream, contains error output from any failed configuration parsing.
351          */
352         std::ostringstream errstr;
353
354         /** Holds the new configuration when a rehash occurs so we dont overwrite the existing
355          * working config with a broken one without checking it first and swapping pointers.
356          */
357         ConfigDataHash newconfig;
358
359         /** Set of included files. Do we use this any more?
360          */
361         std::map<std::string, std::istream*> IncludedFiles;
362
363         /** Used to indicate who we announce invites to on a channel */
364         enum InviteAnnounceState { INVITE_ANNOUNCE_NONE, INVITE_ANNOUNCE_ALL, INVITE_ANNOUNCE_OPS, INVITE_ANNOUNCE_DYNAMIC };
365
366         /** Pointer to function that validates dns server addresses (can be changed depending on platform) */
367         Validator DNSServerValidator;
368
369         /** Returns the creator InspIRCd pointer
370          */
371         InspIRCd* GetInstance();
372
373         /** Not used any more as it is named, can probably be removed or renamed.
374          */
375         int DoDownloads();
376           
377         /** This holds all the information in the config file,
378          * it's indexed by tag name to a vector of key/values.
379          */
380         ConfigDataHash config_data;
381
382         /** Length limits, see definition of ServerLimits class
383          */
384         ServerLimits Limits;
385
386         /** Clones CIDR range for ipv4 (0-32)
387          * Defaults to 32 (checks clones on all IPs seperately)
388          */
389         int c_ipv4_range;
390
391         /** Clones CIDR range for ipv6 (0-128)
392          * Defaults to 128 (checks on all IPs seperately)
393          */
394         int c_ipv6_range;
395
396         /** Max number of WhoWas entries per user.
397          */
398         int WhoWasGroupSize;
399
400         /** Max number of cumulative user-entries in WhoWas.
401          *  When max reached and added to, push out oldest entry FIFO style.
402          */
403         int WhoWasMaxGroups;
404
405         /** Max seconds a user is kept in WhoWas before being pruned.
406          */
407         int WhoWasMaxKeep;
408
409         /** Holds the server name of the local server
410          * as defined by the administrator.
411          */
412         char ServerName[MAXBUF];
413
414         /** Notice to give to users when they are Xlined
415          */
416         char MoronBanner[MAXBUF];
417         
418         /* Holds the network name the local server
419          * belongs to. This is an arbitary field defined
420          * by the administrator.
421          */
422         char Network[MAXBUF];
423
424         /** Holds the description of the local server
425          * as defined by the administrator.
426          */
427         char ServerDesc[MAXBUF];
428
429         /** Holds the admin's name, for output in
430          * the /ADMIN command.
431          */
432         char AdminName[MAXBUF];
433
434         /** Holds the email address of the admin,
435          * for output in the /ADMIN command.
436          */
437         char AdminEmail[MAXBUF];
438
439         /** Holds the admin's nickname, for output
440          * in the /ADMIN command
441          */
442         char AdminNick[MAXBUF];
443
444         /** The admin-configured /DIE password
445          */
446         char diepass[MAXBUF];
447
448         /** The admin-configured /RESTART password
449          */
450         char restartpass[MAXBUF];
451
452         /** The hash method for *BOTH* the die and restart passwords.
453          */
454         char powerhash[MAXBUF];
455
456         /** The pathname and filename of the message of the
457          * day file, as defined by the administrator.
458          */
459         char motd[MAXBUF];
460
461         /** The pathname and filename of the rules file,
462          * as defined by the administrator.
463          */
464         char rules[MAXBUF];
465
466         /** The quit prefix in use, or an empty string
467          */
468         char PrefixQuit[MAXBUF];
469
470         /** The quit suffix in use, or an empty string
471          */
472         char SuffixQuit[MAXBUF];
473
474         /** The fixed quit message in use, or an empty string
475          */
476         char FixedQuit[MAXBUF];
477
478         /** The part prefix in use, or an empty string
479          */
480         char PrefixPart[MAXBUF];
481
482         /** The part suffix in use, or an empty string
483          */
484         char SuffixPart[MAXBUF];
485
486         /** The fixed part message in use, or an empty string
487          */
488         char FixedPart[MAXBUF];
489
490         /** The last string found within a <die> tag, or
491          * an empty string.
492          */
493         char DieValue[MAXBUF];
494
495         /** The DNS server to use for DNS queries
496          */
497         char DNSServer[MAXBUF];
498
499         /** Pretend disabled commands don't exist.
500          */
501         bool DisabledDontExist;
502
503         /** This variable contains a space-seperated list
504          * of commands which are disabled by the
505          * administrator of the server for non-opers.
506          */
507         char DisabledCommands[MAXBUF];
508
509         /** This variable identifies which usermodes have been diabled.
510          */
511
512         char DisabledUModes[64];
513
514         /** This variable identifies which chanmodes have been disabled.
515          */
516         char DisabledCModes[64];
517
518         /** The full path to the modules directory.
519          * This is either set at compile time, or
520          * overridden in the configuration file via
521          * the <options> tag.
522          */
523         char ModPath[1024];
524
525         /** The full pathname to the executable, as
526          * given in argv[0] when the program starts.
527          */
528         char MyExecutable[1024];
529
530         /** The file handle of the logfile. If this
531          * value is NULL, the log file is not open,
532          * probably due to a permissions error on
533          * startup (this should not happen in normal
534          * operation!).
535          */
536         FILE *log_file;
537
538         /** If this value is true, the owner of the
539          * server specified -nofork on the command
540          * line, causing the daemon to stay in the
541          * foreground.
542          */
543         bool nofork;
544         
545         /** If this value if true then all log
546          * messages will be output, regardless of
547          * the level given in the config file.
548          * This is set with the -debug commandline
549          * option.
550          */
551         bool forcedebug;
552         
553         /** If this is true then log output will be
554          * written to the logfile. This is the default.
555          * If you put -nolog on the commandline then
556          * the logfile will not be written.
557          * This is meant to be used in conjunction with
558          * -debug for debugging without filling up the
559          * hard disk.
560          */
561         bool writelog;
562
563         /** If this value is true, halfops have been
564          * enabled in the configuration file.
565          */
566         bool AllowHalfop;
567
568         /** If this is set to true, then mode lists (e.g
569          * MODE #chan b) are hidden from unprivileged
570          * users.
571          */
572         bool HideModeLists[256];
573
574         /** If this is set to true, then channel operators
575          * are exempt from this channel mode. Used for +Sc etc.
576          */
577         bool ExemptChanOps[256];
578
579         /** The number of seconds the DNS subsystem
580          * will wait before timing out any request.
581          */
582         int dns_timeout;
583
584         /** The size of the read() buffer in the user
585          * handling code, used to read data into a user's
586          * recvQ.
587          */
588         int NetBufferSize;
589
590         /** The value to be used for listen() backlogs
591          * as default.
592          */
593         int MaxConn;
594
595         /** The soft limit value assigned to the irc server.
596          * The IRC server will not allow more than this
597          * number of local users.
598          */
599         unsigned int SoftLimit;
600
601         /** Maximum number of targets for a multi target command
602          * such as PRIVMSG or KICK
603          */
604         unsigned int MaxTargets;
605
606         /** The maximum number of /WHO results allowed
607          * in any single /WHO command.
608          */
609         int MaxWhoResults;
610
611         /** True if the DEBUG loglevel is selected.
612          */
613         int debugging;
614
615         /** How many seconds to wait before exiting
616          * the program when /DIE is correctly issued.
617          */
618         int DieDelay;
619
620         /** True if we're going to hide netsplits as *.net *.split for non-opers
621          */
622         bool HideSplits;
623
624         /** True if we're going to hide ban reasons for non-opers (e.g. G-Lines,
625          * K-Lines, Z-Lines)
626          */
627         bool HideBans;
628
629         /** Announce invites to the channel with a server notice
630          */
631         InviteAnnounceState AnnounceInvites;
632
633         /** If this is enabled then operators will
634          * see invisible (+i) channels in /whois.
635          */
636         bool OperSpyWhois;
637
638         /** Set to a non-empty string to obfuscate the server name of users in WHOIS
639          */
640         char HideWhoisServer[MAXBUF];
641
642         /** Set to a non empty string to obfuscate nicknames prepended to a KILL.
643          */
644         char HideKillsServer[MAXBUF];
645
646         /** The MOTD file, cached in a file_cache type.
647          */
648         file_cache MOTD;
649
650         /** The RULES file, cached in a file_cache type.
651          */
652         file_cache RULES;
653
654         /** The full pathname and filename of the PID
655          * file as defined in the configuration.
656          */
657         char PID[1024];
658
659         /** The connect classes in use by the IRC server.
660          */
661         ClassVector Classes;
662
663         /** A list of the classes for listening ports
664          */
665         std::vector<ListenSocketBase *> ports;
666
667         /** The 005 tokens of this server (ISUPPORT)
668          * populated/repopulated upon loading or unloading
669          * modules.
670          */
671         std::string data005;
672
673         /** isupport strings
674          */
675         std::vector<std::string> isupport;
676
677         /** STATS characters in this list are available
678          * only to operators.
679          */
680         char UserStats[MAXBUF];
681         
682         /** The path and filename of the ircd.log file
683          */
684         std::string logpath;
685
686         /** Default channel modes
687          */
688         char DefaultModes[MAXBUF];
689
690         /** Custom version string, which if defined can replace the system info in VERSION.
691          */
692         char CustomVersion[MAXBUF];
693
694         /** List of u-lined servers
695          */
696         std::map<irc::string, bool> ulines;
697
698         /** Max banlist sizes for channels (the std::string is a glob)
699          */
700         std::map<std::string, int> maxbans;
701
702         /** Directory where the inspircd binary resides
703          */
704         std::string MyDir;
705
706         /** If set to true, no user DNS lookups are to be performed
707          */
708         bool NoUserDns;
709
710         /** If set to true, provide syntax hints for unknown commands
711          */
712         bool SyntaxHints;
713
714         /** If set to true, users appear to quit then rejoin when their hosts change.
715          * This keeps clients synchronized properly.
716          */
717         bool CycleHosts;
718
719         /** If set to true, prefixed channel NOTICEs and PRIVMSGs will have the prefix
720          *  added to the outgoing text for undernet style msg prefixing.
721          */
722         bool UndernetMsgPrefix;
723
724         /** If set to true, the full nick!user@host will be shown in the TOPIC command
725          * for who set the topic last. If false, only the nick is shown.
726          */
727         bool FullHostInTopic;
728
729         /** All oper type definitions from the config file
730          */
731         opertype_t opertypes;
732
733         /** All oper class definitions from the config file
734          */
735         operclass_t operclass;
736
737         /** Saved argv from startup
738          */
739         char** argv;
740
741         /** Saved argc from startup
742          */
743         int argc;
744
745         /** Max channels per user
746          */
747         unsigned int MaxChans;
748
749         /** Oper max channels per user
750          */
751         unsigned int OperMaxChans;
752
753         /** TS6-like server ID.
754          * NOTE: 000...999 are usable for InspIRCd servers. This
755          * makes code simpler. 0AA, 1BB etc with letters are reserved
756          * for services use.
757          */
758         char sid[MAXBUF];
759
760         /** True if we have been told to run the testsuite from the commandline,
761          * rather than entering the mainloop.
762          */
763         bool TestSuite;
764
765         /** Construct a new ServerConfig
766          */
767         ServerConfig(InspIRCd* Instance);
768
769         /** Clears the include stack in preperation for a Read() call.
770          */
771         void ClearStack();
772
773         /** Get server ID as string with required leading zeroes
774          */
775         std::string GetSID();
776
777         /** Update the 005 vector
778          */
779         void Update005();
780
781         /** Send the 005 numerics (ISUPPORT) to a user
782          */
783         void Send005(User* user);
784
785         /** Read the entire configuration into memory
786          * and initialize this class. All other methods
787          * should be used only by the core.
788          */
789         void Read(bool bail, const std::string &useruid);
790
791         /** Read a file into a file_cache object
792          */
793         bool ReadFile(file_cache &F, const char* fname);
794
795         /* Returns true if the given string starts with a windows drive letter
796          */
797         bool StartsWithWindowsDriveLetter(const std::string &path);
798
799         /** Report a configuration error given in errormessage.
800          * @param bail If this is set to true, the error is sent to the console, and the program exits
801          * @param useruid If this is set to a non-empty value which is a valid UID, and bail is false,
802          * the errors are spooled to this user as SNOTICEs.
803          * If the parameter is not a valid UID, the messages are spooled to all opers.
804          */
805         void ReportConfigError(const std::string &errormessage, bool bail, const std::string &useruid);
806
807         /** Load 'filename' into 'target', with the new config parser everything is parsed into
808          * tag/key/value at load-time rather than at read-value time.
809          */
810         bool LoadConf(ConfigDataHash &target, FILE* &conf, const char* filename, std::ostringstream &errorstream);
811
812         /** Load 'filename' into 'target', with the new config parser everything is parsed into
813          * tag/key/value at load-time rather than at read-value time.
814          */
815         bool LoadConf(ConfigDataHash &target, FILE* &conf, const std::string &filename, std::ostringstream &errorstream);
816         
817         /** Writes 'length' chars into 'result' as a string
818          */
819         bool ConfValue(ConfigDataHash &target, const char* tag, const char* var, int index, char* result, int length, bool allow_linefeeds = false);
820
821         /** Writes 'length' chars into 'result' as a string
822          */
823         bool ConfValue(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index, char* result, int length, bool allow_linefeeds = false);
824
825         /** Writes 'length' chars into 'result' as a string
826          */
827         bool ConfValue(ConfigDataHash &target, const std::string &tag, const std::string &var, int index, std::string &result, bool allow_linefeeds = false);
828
829         /** Writes 'length' chars into 'result' as a string
830          */
831         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);
832         
833         /** Tries to convert the value to an integer and write it to 'result'
834          */
835         bool ConfValueInteger(ConfigDataHash &target, const char* tag, const char* var, int index, int &result);
836
837         /** Tries to convert the value to an integer and write it to 'result'
838          */
839         bool ConfValueInteger(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index, int &result);
840
841         /** Tries to convert the value to an integer and write it to 'result'
842          */
843         bool ConfValueInteger(ConfigDataHash &target, const std::string &tag, const std::string &var, int index, int &result);
844
845         /** Tries to convert the value to an integer and write it to 'result'
846          */
847         bool ConfValueInteger(ConfigDataHash &target, const std::string &tag, const std::string &var, const std::string &default_value, int index, int &result);
848         
849         /** Returns true if the value exists and has a true value, false otherwise
850          */
851         bool ConfValueBool(ConfigDataHash &target, const char* tag, const char* var, int index);
852
853         /** Returns true if the value exists and has a true value, false otherwise
854          */
855         bool ConfValueBool(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index);
856
857         /** Returns true if the value exists and has a true value, false otherwise
858          */
859         bool ConfValueBool(ConfigDataHash &target, const std::string &tag, const std::string &var, int index);
860
861         /** Returns true if the value exists and has a true value, false otherwise
862          */
863         bool ConfValueBool(ConfigDataHash &target, const std::string &tag, const std::string &var, const std::string &default_value, int index);
864         
865         /** Returns the number of occurences of tag in the config file
866          */
867         int ConfValueEnum(ConfigDataHash &target, const char* tag);
868         /** Returns the number of occurences of tag in the config file
869          */
870         int ConfValueEnum(ConfigDataHash &target, const std::string &tag);
871         
872         /** Returns the numbers of vars inside the index'th 'tag in the config file
873          */
874         int ConfVarEnum(ConfigDataHash &target, const char* tag, int index);
875         /** Returns the numbers of vars inside the index'th 'tag in the config file
876          */
877         int ConfVarEnum(ConfigDataHash &target, const std::string &tag, int index);
878
879         /** Validates a hostname value, throwing ConfigException if it is not valid
880          */
881         void ValidateHostname(const char* p, const std::string &tag, const std::string &val);
882
883         /** Validates an IP address value, throwing ConfigException if it is not valid
884          */
885         void ValidateIP(const char* p, const std::string &tag, const std::string &val, bool wild);
886
887         /** Validates a value that should not contain spaces, throwing ConfigException of it is not valid
888          */
889         void ValidateNoSpaces(const char* p, const std::string &tag, const std::string &val);
890
891         /** Returns the fully qualified path to the inspircd directory
892          * @return The full program directory
893          */
894         std::string GetFullProgDir();
895
896         /** Returns true if a directory is valid (within the modules directory).
897          * @param dirandfile The directory and filename to check
898          * @return True if the directory is valid
899          */
900         static bool DirValid(const char* dirandfile);
901
902         /** Clean a filename, stripping the directories (and drives) from string.
903          * @param name Directory to tidy
904          * @return The cleaned filename
905          */
906         static char* CleanFilename(char* name);
907
908         /** Check if a file exists.
909          * @param file The full path to a file
910          * @return True if the file exists and is readable.
911          */
912         static bool FileExists(const char* file);
913
914         /** If this value is true, invites will bypass more than just +i
915          */
916         bool InvBypassModes;
917
918 };
919
920 /** Initialize the disabled commands list
921  */
922 CoreExport bool InitializeDisabledCommands(const char* data, InspIRCd* ServerInstance);
923
924 /** Initialize the oper types
925  */
926 bool InitTypes(ServerConfig* conf, const char* tag);
927
928 /** Initialize the oper classes
929  */
930 bool InitClasses(ServerConfig* conf, const char* tag);
931
932 /** Initialize an oper type 
933  */
934 bool DoType(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types);
935
936 /** Initialize an oper class
937  */
938 bool DoClass(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types);
939
940 /** Finish initializing the oper types and classes
941  */
942 bool DoneClassesAndTypes(ServerConfig* conf, const char* tag);
943
944
945
946 /** Initialize x line
947  */
948 bool InitXLine(ServerConfig* conf, const char* tag);
949  
950 /** Add a config-defined zline
951  */
952 bool DoZLine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types);
953
954 /** Add a config-defined qline
955  */
956 bool DoQLine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types);
957
958 /** Add a config-defined kline
959  */
960 bool DoKLine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types);
961
962 /** Add a config-defined eline
963  */
964 bool DoELine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types);
965
966
967
968
969 #endif
970