]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/configreader.h
5e97bb09bb18c2aa30b19762ac216a787e46a457
[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         /** Both for set(g|u)id.
410          */
411         char SetUser[MAXBUF];
412         char SetGroup[MAXBUF];
413
414         /** Holds the server name of the local server
415          * as defined by the administrator.
416          */
417         char ServerName[MAXBUF];
418
419         /** Notice to give to users when they are Xlined
420          */
421         char MoronBanner[MAXBUF];
422         
423         /* Holds the network name the local server
424          * belongs to. This is an arbitary field defined
425          * by the administrator.
426          */
427         char Network[MAXBUF];
428
429         /** Holds the description of the local server
430          * as defined by the administrator.
431          */
432         char ServerDesc[MAXBUF];
433
434         /** Holds the admin's name, for output in
435          * the /ADMIN command.
436          */
437         char AdminName[MAXBUF];
438
439         /** Holds the email address of the admin,
440          * for output in the /ADMIN command.
441          */
442         char AdminEmail[MAXBUF];
443
444         /** Holds the admin's nickname, for output
445          * in the /ADMIN command
446          */
447         char AdminNick[MAXBUF];
448
449         /** The admin-configured /DIE password
450          */
451         char diepass[MAXBUF];
452
453         /** The admin-configured /RESTART password
454          */
455         char restartpass[MAXBUF];
456
457         /** The hash method for *BOTH* the die and restart passwords.
458          */
459         char powerhash[MAXBUF];
460
461         /** The pathname and filename of the message of the
462          * day file, as defined by the administrator.
463          */
464         char motd[MAXBUF];
465
466         /** The pathname and filename of the rules file,
467          * as defined by the administrator.
468          */
469         char rules[MAXBUF];
470
471         /** The quit prefix in use, or an empty string
472          */
473         char PrefixQuit[MAXBUF];
474
475         /** The quit suffix in use, or an empty string
476          */
477         char SuffixQuit[MAXBUF];
478
479         /** The fixed quit message in use, or an empty string
480          */
481         char FixedQuit[MAXBUF];
482
483         /** The part prefix in use, or an empty string
484          */
485         char PrefixPart[MAXBUF];
486
487         /** The part suffix in use, or an empty string
488          */
489         char SuffixPart[MAXBUF];
490
491         /** The fixed part message in use, or an empty string
492          */
493         char FixedPart[MAXBUF];
494
495         /** The last string found within a <die> tag, or
496          * an empty string.
497          */
498         char DieValue[MAXBUF];
499
500         /** The DNS server to use for DNS queries
501          */
502         char DNSServer[MAXBUF];
503
504         /** Pretend disabled commands don't exist.
505          */
506         bool DisabledDontExist;
507
508         /** This variable contains a space-seperated list
509          * of commands which are disabled by the
510          * administrator of the server for non-opers.
511          */
512         char DisabledCommands[MAXBUF];
513
514         /** This variable identifies which usermodes have been diabled.
515          */
516
517         char DisabledUModes[64];
518
519         /** This variable identifies which chanmodes have been disabled.
520          */
521         char DisabledCModes[64];
522
523         /** The full path to the modules directory.
524          * This is either set at compile time, or
525          * overridden in the configuration file via
526          * the <options> tag.
527          */
528         char ModPath[1024];
529
530         /** The full pathname to the executable, as
531          * given in argv[0] when the program starts.
532          */
533         char MyExecutable[1024];
534
535         /** The file handle of the logfile. If this
536          * value is NULL, the log file is not open,
537          * probably due to a permissions error on
538          * startup (this should not happen in normal
539          * operation!).
540          */
541         FILE *log_file;
542
543         /** If this value is true, the owner of the
544          * server specified -nofork on the command
545          * line, causing the daemon to stay in the
546          * foreground.
547          */
548         bool nofork;
549         
550         /** If this value if true then all log
551          * messages will be output, regardless of
552          * the level given in the config file.
553          * This is set with the -debug commandline
554          * option.
555          */
556         bool forcedebug;
557         
558         /** If this is true then log output will be
559          * written to the logfile. This is the default.
560          * If you put -nolog on the commandline then
561          * the logfile will not be written.
562          * This is meant to be used in conjunction with
563          * -debug for debugging without filling up the
564          * hard disk.
565          */
566         bool writelog;
567
568         /** If this value is true, banned users (+b, not extbans) will not be able to change nick
569          * if banned on any channel, nor to message them.
570          */
571         bool RestrictBannedUsers;
572
573         /** If this value is true, halfops have been
574          * enabled in the configuration file.
575          */
576         bool AllowHalfop;
577
578         /** If this is set to true, then mode lists (e.g
579          * MODE #chan b) are hidden from unprivileged
580          * users.
581          */
582         bool HideModeLists[256];
583
584         /** If this is set to true, then channel operators
585          * are exempt from this channel mode. Used for +Sc etc.
586          */
587         bool ExemptChanOps[256];
588
589         /** The number of seconds the DNS subsystem
590          * will wait before timing out any request.
591          */
592         int dns_timeout;
593
594         /** The size of the read() buffer in the user
595          * handling code, used to read data into a user's
596          * recvQ.
597          */
598         int NetBufferSize;
599
600         /** The value to be used for listen() backlogs
601          * as default.
602          */
603         int MaxConn;
604
605         /** The soft limit value assigned to the irc server.
606          * The IRC server will not allow more than this
607          * number of local users.
608          */
609         unsigned int SoftLimit;
610
611         /** Maximum number of targets for a multi target command
612          * such as PRIVMSG or KICK
613          */
614         unsigned int MaxTargets;
615
616         /** The maximum number of /WHO results allowed
617          * in any single /WHO command.
618          */
619         int MaxWhoResults;
620
621         /** True if the DEBUG loglevel is selected.
622          */
623         int debugging;
624
625         /** How many seconds to wait before exiting
626          * the program when /DIE is correctly issued.
627          */
628         int DieDelay;
629
630         /** True if we're going to hide netsplits as *.net *.split for non-opers
631          */
632         bool HideSplits;
633
634         /** True if we're going to hide ban reasons for non-opers (e.g. G-Lines,
635          * K-Lines, Z-Lines)
636          */
637         bool HideBans;
638
639         /** Announce invites to the channel with a server notice
640          */
641         InviteAnnounceState AnnounceInvites;
642
643         /** If this is enabled then operators will
644          * see invisible (+i) channels in /whois.
645          */
646         bool OperSpyWhois;
647
648         /** Set to a non-empty string to obfuscate the server name of users in WHOIS
649          */
650         char HideWhoisServer[MAXBUF];
651
652         /** Set to a non empty string to obfuscate nicknames prepended to a KILL.
653          */
654         char HideKillsServer[MAXBUF];
655
656         /** The MOTD file, cached in a file_cache type.
657          */
658         file_cache MOTD;
659
660         /** The RULES file, cached in a file_cache type.
661          */
662         file_cache RULES;
663
664         /** The full pathname and filename of the PID
665          * file as defined in the configuration.
666          */
667         char PID[1024];
668
669         /** The connect classes in use by the IRC server.
670          */
671         ClassVector Classes;
672
673         /** A list of the classes for listening ports
674          */
675         std::vector<ListenSocketBase *> ports;
676
677         /** The 005 tokens of this server (ISUPPORT)
678          * populated/repopulated upon loading or unloading
679          * modules.
680          */
681         std::string data005;
682
683         /** isupport strings
684          */
685         std::vector<std::string> isupport;
686
687         /** STATS characters in this list are available
688          * only to operators.
689          */
690         char UserStats[MAXBUF];
691         
692         /** The path and filename of the ircd.log file
693          */
694         std::string logpath;
695
696         /** Default channel modes
697          */
698         char DefaultModes[MAXBUF];
699
700         /** Custom version string, which if defined can replace the system info in VERSION.
701          */
702         char CustomVersion[MAXBUF];
703
704         /** List of u-lined servers
705          */
706         std::map<irc::string, bool> ulines;
707
708         /** Max banlist sizes for channels (the std::string is a glob)
709          */
710         std::map<std::string, int> maxbans;
711
712         /** Directory where the inspircd binary resides
713          */
714         std::string MyDir;
715
716         /** If set to true, no user DNS lookups are to be performed
717          */
718         bool NoUserDns;
719
720         /** If set to true, provide syntax hints for unknown commands
721          */
722         bool SyntaxHints;
723
724         /** If set to true, users appear to quit then rejoin when their hosts change.
725          * This keeps clients synchronized properly.
726          */
727         bool CycleHosts;
728
729         /** If set to true, prefixed channel NOTICEs and PRIVMSGs will have the prefix
730          *  added to the outgoing text for undernet style msg prefixing.
731          */
732         bool UndernetMsgPrefix;
733
734         /** If set to true, the full nick!user@host will be shown in the TOPIC command
735          * for who set the topic last. If false, only the nick is shown.
736          */
737         bool FullHostInTopic;
738
739         /** All oper type definitions from the config file
740          */
741         opertype_t opertypes;
742
743         /** All oper class definitions from the config file
744          */
745         operclass_t operclass;
746
747         /** Saved argv from startup
748          */
749         char** argv;
750
751         /** Saved argc from startup
752          */
753         int argc;
754
755         /** Max channels per user
756          */
757         unsigned int MaxChans;
758
759         /** Oper max channels per user
760          */
761         unsigned int OperMaxChans;
762
763         /** TS6-like server ID.
764          * NOTE: 000...999 are usable for InspIRCd servers. This
765          * makes code simpler. 0AA, 1BB etc with letters are reserved
766          * for services use.
767          */
768         char sid[MAXBUF];
769
770         /** True if we have been told to run the testsuite from the commandline,
771          * rather than entering the mainloop.
772          */
773         bool TestSuite;
774
775         /** Construct a new ServerConfig
776          */
777         ServerConfig(InspIRCd* Instance);
778
779         /** Clears the include stack in preperation for a Read() call.
780          */
781         void ClearStack();
782
783         /** Get server ID as string with required leading zeroes
784          */
785         std::string GetSID();
786
787         /** Update the 005 vector
788          */
789         void Update005();
790
791         /** Send the 005 numerics (ISUPPORT) to a user
792          */
793         void Send005(User* user);
794
795         /** Read the entire configuration into memory
796          * and initialize this class. All other methods
797          * should be used only by the core.
798          */
799         void Read(bool bail, const std::string &useruid);
800
801         /** Read a file into a file_cache object
802          */
803         bool ReadFile(file_cache &F, const char* fname);
804
805         /* Returns true if the given string starts with a windows drive letter
806          */
807         bool StartsWithWindowsDriveLetter(const std::string &path);
808
809         /** Report a configuration error given in errormessage.
810          * @param bail If this is set to true, the error is sent to the console, and the program exits
811          * @param useruid If this is set to a non-empty value which is a valid UID, and bail is false,
812          * the errors are spooled to this user as SNOTICEs.
813          * If the parameter is not a valid UID, the messages are spooled to all opers.
814          */
815         void ReportConfigError(const std::string &errormessage, bool bail, const std::string &useruid);
816
817         /** Load 'filename' into 'target', with the new config parser everything is parsed into
818          * tag/key/value at load-time rather than at read-value time.
819          */
820         bool LoadConf(ConfigDataHash &target, FILE* &conf, const char* filename, std::ostringstream &errorstream);
821
822         /** Load 'filename' into 'target', with the new config parser everything is parsed into
823          * tag/key/value at load-time rather than at read-value time.
824          */
825         bool LoadConf(ConfigDataHash &target, FILE* &conf, const std::string &filename, std::ostringstream &errorstream);
826         
827         /** Writes 'length' chars into 'result' as a string
828          */
829         bool ConfValue(ConfigDataHash &target, const char* tag, const char* var, int index, char* result, int length, bool allow_linefeeds = false);
830
831         /** Writes 'length' chars into 'result' as a string
832          */
833         bool ConfValue(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index, char* result, int length, bool allow_linefeeds = false);
834
835         /** Writes 'length' chars into 'result' as a string
836          */
837         bool ConfValue(ConfigDataHash &target, const std::string &tag, const std::string &var, int index, std::string &result, bool allow_linefeeds = false);
838
839         /** Writes 'length' chars into 'result' as a string
840          */
841         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);
842         
843         /** Tries to convert the value to an integer and write it to 'result'
844          */
845         bool ConfValueInteger(ConfigDataHash &target, const char* tag, const char* var, int index, int &result);
846
847         /** Tries to convert the value to an integer and write it to 'result'
848          */
849         bool ConfValueInteger(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index, int &result);
850
851         /** Tries to convert the value to an integer and write it to 'result'
852          */
853         bool ConfValueInteger(ConfigDataHash &target, const std::string &tag, const std::string &var, int index, int &result);
854
855         /** Tries to convert the value to an integer and write it to 'result'
856          */
857         bool ConfValueInteger(ConfigDataHash &target, const std::string &tag, const std::string &var, const std::string &default_value, int index, int &result);
858         
859         /** Returns true if the value exists and has a true value, false otherwise
860          */
861         bool ConfValueBool(ConfigDataHash &target, const char* tag, const char* var, int index);
862
863         /** Returns true if the value exists and has a true value, false otherwise
864          */
865         bool ConfValueBool(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index);
866
867         /** Returns true if the value exists and has a true value, false otherwise
868          */
869         bool ConfValueBool(ConfigDataHash &target, const std::string &tag, const std::string &var, int index);
870
871         /** Returns true if the value exists and has a true value, false otherwise
872          */
873         bool ConfValueBool(ConfigDataHash &target, const std::string &tag, const std::string &var, const std::string &default_value, int index);
874         
875         /** Returns the number of occurences of tag in the config file
876          */
877         int ConfValueEnum(ConfigDataHash &target, const char* tag);
878         /** Returns the number of occurences of tag in the config file
879          */
880         int ConfValueEnum(ConfigDataHash &target, const std::string &tag);
881         
882         /** Returns the numbers of vars inside the index'th 'tag in the config file
883          */
884         int ConfVarEnum(ConfigDataHash &target, const char* tag, int index);
885         /** Returns the numbers of vars inside the index'th 'tag in the config file
886          */
887         int ConfVarEnum(ConfigDataHash &target, const std::string &tag, int index);
888
889         /** Validates a hostname value, throwing ConfigException if it is not valid
890          */
891         void ValidateHostname(const char* p, const std::string &tag, const std::string &val);
892
893         /** Validates an IP address value, throwing ConfigException if it is not valid
894          */
895         void ValidateIP(const char* p, const std::string &tag, const std::string &val, bool wild);
896
897         /** Validates a value that should not contain spaces, throwing ConfigException of it is not valid
898          */
899         void ValidateNoSpaces(const char* p, const std::string &tag, const std::string &val);
900
901         /** Returns the fully qualified path to the inspircd directory
902          * @return The full program directory
903          */
904         std::string GetFullProgDir();
905
906         /** Returns true if a directory is valid (within the modules directory).
907          * @param dirandfile The directory and filename to check
908          * @return True if the directory is valid
909          */
910         static bool DirValid(const char* dirandfile);
911
912         /** Clean a filename, stripping the directories (and drives) from string.
913          * @param name Directory to tidy
914          * @return The cleaned filename
915          */
916         static char* CleanFilename(char* name);
917
918         /** Check if a file exists.
919          * @param file The full path to a file
920          * @return True if the file exists and is readable.
921          */
922         static bool FileExists(const char* file);
923
924         /** If this value is true, invites will bypass more than just +i
925          */
926         bool InvBypassModes;
927
928 };
929
930 /** Initialize the disabled commands list
931  */
932 CoreExport bool InitializeDisabledCommands(const char* data, InspIRCd* ServerInstance);
933
934 /** Initialize the oper types
935  */
936 bool InitTypes(ServerConfig* conf, const char* tag);
937
938 /** Initialize the oper classes
939  */
940 bool InitClasses(ServerConfig* conf, const char* tag);
941
942 /** Initialize an oper type 
943  */
944 bool DoType(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types);
945
946 /** Initialize an oper class
947  */
948 bool DoClass(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types);
949
950 /** Finish initializing the oper types and classes
951  */
952 bool DoneClassesAndTypes(ServerConfig* conf, const char* tag);
953
954
955
956 /** Initialize x line
957  */
958 bool InitXLine(ServerConfig* conf, const char* tag);
959  
960 /** Add a config-defined zline
961  */
962 bool DoZLine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types);
963
964 /** Add a config-defined qline
965  */
966 bool DoQLine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types);
967
968 /** Add a config-defined kline
969  */
970 bool DoKLine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types);
971
972 /** Add a config-defined eline
973  */
974 bool DoELine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types);
975
976
977
978
979 #endif
980