]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/configreader.h
Document SendTopic.
[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, halfops have been
569          * enabled in the configuration file.
570          */
571         bool AllowHalfop;
572
573         /** If this is set to true, then mode lists (e.g
574          * MODE #chan b) are hidden from unprivileged
575          * users.
576          */
577         bool HideModeLists[256];
578
579         /** If this is set to true, then channel operators
580          * are exempt from this channel mode. Used for +Sc etc.
581          */
582         bool ExemptChanOps[256];
583
584         /** The number of seconds the DNS subsystem
585          * will wait before timing out any request.
586          */
587         int dns_timeout;
588
589         /** The size of the read() buffer in the user
590          * handling code, used to read data into a user's
591          * recvQ.
592          */
593         int NetBufferSize;
594
595         /** The value to be used for listen() backlogs
596          * as default.
597          */
598         int MaxConn;
599
600         /** The soft limit value assigned to the irc server.
601          * The IRC server will not allow more than this
602          * number of local users.
603          */
604         unsigned int SoftLimit;
605
606         /** Maximum number of targets for a multi target command
607          * such as PRIVMSG or KICK
608          */
609         unsigned int MaxTargets;
610
611         /** The maximum number of /WHO results allowed
612          * in any single /WHO command.
613          */
614         int MaxWhoResults;
615
616         /** True if the DEBUG loglevel is selected.
617          */
618         int debugging;
619
620         /** How many seconds to wait before exiting
621          * the program when /DIE is correctly issued.
622          */
623         int DieDelay;
624
625         /** True if we're going to hide netsplits as *.net *.split for non-opers
626          */
627         bool HideSplits;
628
629         /** True if we're going to hide ban reasons for non-opers (e.g. G-Lines,
630          * K-Lines, Z-Lines)
631          */
632         bool HideBans;
633
634         /** Announce invites to the channel with a server notice
635          */
636         InviteAnnounceState AnnounceInvites;
637
638         /** If this is enabled then operators will
639          * see invisible (+i) channels in /whois.
640          */
641         bool OperSpyWhois;
642
643         /** Set to a non-empty string to obfuscate the server name of users in WHOIS
644          */
645         char HideWhoisServer[MAXBUF];
646
647         /** Set to a non empty string to obfuscate nicknames prepended to a KILL.
648          */
649         char HideKillsServer[MAXBUF];
650
651         /** The MOTD file, cached in a file_cache type.
652          */
653         file_cache MOTD;
654
655         /** The RULES file, cached in a file_cache type.
656          */
657         file_cache RULES;
658
659         /** The full pathname and filename of the PID
660          * file as defined in the configuration.
661          */
662         char PID[1024];
663
664         /** The connect classes in use by the IRC server.
665          */
666         ClassVector Classes;
667
668         /** A list of the classes for listening ports
669          */
670         std::vector<ListenSocketBase *> ports;
671
672         /** The 005 tokens of this server (ISUPPORT)
673          * populated/repopulated upon loading or unloading
674          * modules.
675          */
676         std::string data005;
677
678         /** isupport strings
679          */
680         std::vector<std::string> isupport;
681
682         /** STATS characters in this list are available
683          * only to operators.
684          */
685         char UserStats[MAXBUF];
686         
687         /** The path and filename of the ircd.log file
688          */
689         std::string logpath;
690
691         /** Default channel modes
692          */
693         char DefaultModes[MAXBUF];
694
695         /** Custom version string, which if defined can replace the system info in VERSION.
696          */
697         char CustomVersion[MAXBUF];
698
699         /** List of u-lined servers
700          */
701         std::map<irc::string, bool> ulines;
702
703         /** Max banlist sizes for channels (the std::string is a glob)
704          */
705         std::map<std::string, int> maxbans;
706
707         /** Directory where the inspircd binary resides
708          */
709         std::string MyDir;
710
711         /** If set to true, no user DNS lookups are to be performed
712          */
713         bool NoUserDns;
714
715         /** If set to true, provide syntax hints for unknown commands
716          */
717         bool SyntaxHints;
718
719         /** If set to true, users appear to quit then rejoin when their hosts change.
720          * This keeps clients synchronized properly.
721          */
722         bool CycleHosts;
723
724         /** If set to true, prefixed channel NOTICEs and PRIVMSGs will have the prefix
725          *  added to the outgoing text for undernet style msg prefixing.
726          */
727         bool UndernetMsgPrefix;
728
729         /** If set to true, the full nick!user@host will be shown in the TOPIC command
730          * for who set the topic last. If false, only the nick is shown.
731          */
732         bool FullHostInTopic;
733
734         /** All oper type definitions from the config file
735          */
736         opertype_t opertypes;
737
738         /** All oper class definitions from the config file
739          */
740         operclass_t operclass;
741
742         /** Saved argv from startup
743          */
744         char** argv;
745
746         /** Saved argc from startup
747          */
748         int argc;
749
750         /** Max channels per user
751          */
752         unsigned int MaxChans;
753
754         /** Oper max channels per user
755          */
756         unsigned int OperMaxChans;
757
758         /** TS6-like server ID.
759          * NOTE: 000...999 are usable for InspIRCd servers. This
760          * makes code simpler. 0AA, 1BB etc with letters are reserved
761          * for services use.
762          */
763         char sid[MAXBUF];
764
765         /** True if we have been told to run the testsuite from the commandline,
766          * rather than entering the mainloop.
767          */
768         bool TestSuite;
769
770         /** Construct a new ServerConfig
771          */
772         ServerConfig(InspIRCd* Instance);
773
774         /** Clears the include stack in preperation for a Read() call.
775          */
776         void ClearStack();
777
778         /** Get server ID as string with required leading zeroes
779          */
780         std::string GetSID();
781
782         /** Update the 005 vector
783          */
784         void Update005();
785
786         /** Send the 005 numerics (ISUPPORT) to a user
787          */
788         void Send005(User* user);
789
790         /** Read the entire configuration into memory
791          * and initialize this class. All other methods
792          * should be used only by the core.
793          */
794         void Read(bool bail, const std::string &useruid);
795
796         /** Read a file into a file_cache object
797          */
798         bool ReadFile(file_cache &F, const char* fname);
799
800         /* Returns true if the given string starts with a windows drive letter
801          */
802         bool StartsWithWindowsDriveLetter(const std::string &path);
803
804         /** Report a configuration error given in errormessage.
805          * @param bail If this is set to true, the error is sent to the console, and the program exits
806          * @param useruid If this is set to a non-empty value which is a valid UID, and bail is false,
807          * the errors are spooled to this user as SNOTICEs.
808          * If the parameter is not a valid UID, the messages are spooled to all opers.
809          */
810         void ReportConfigError(const std::string &errormessage, bool bail, const std::string &useruid);
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 char* filename, std::ostringstream &errorstream);
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 std::string &filename, std::ostringstream &errorstream);
821         
822         /** Writes 'length' chars into 'result' as a string
823          */
824         bool ConfValue(ConfigDataHash &target, const char* tag, const char* var, int index, char* result, int length, bool allow_linefeeds = false);
825
826         /** Writes 'length' chars into 'result' as a string
827          */
828         bool ConfValue(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index, char* result, int length, bool allow_linefeeds = false);
829
830         /** Writes 'length' chars into 'result' as a string
831          */
832         bool ConfValue(ConfigDataHash &target, const std::string &tag, const std::string &var, int index, std::string &result, bool allow_linefeeds = false);
833
834         /** Writes 'length' chars into 'result' as a string
835          */
836         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);
837         
838         /** Tries to convert the value to an integer and write it to 'result'
839          */
840         bool ConfValueInteger(ConfigDataHash &target, const char* tag, const char* var, int index, int &result);
841
842         /** Tries to convert the value to an integer and write it to 'result'
843          */
844         bool ConfValueInteger(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index, int &result);
845
846         /** Tries to convert the value to an integer and write it to 'result'
847          */
848         bool ConfValueInteger(ConfigDataHash &target, const std::string &tag, const std::string &var, int index, int &result);
849
850         /** Tries to convert the value to an integer and write it to 'result'
851          */
852         bool ConfValueInteger(ConfigDataHash &target, const std::string &tag, const std::string &var, const std::string &default_value, int index, int &result);
853         
854         /** Returns true if the value exists and has a true value, false otherwise
855          */
856         bool ConfValueBool(ConfigDataHash &target, const char* tag, const char* var, int index);
857
858         /** Returns true if the value exists and has a true value, false otherwise
859          */
860         bool ConfValueBool(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index);
861
862         /** Returns true if the value exists and has a true value, false otherwise
863          */
864         bool ConfValueBool(ConfigDataHash &target, const std::string &tag, const std::string &var, int index);
865
866         /** Returns true if the value exists and has a true value, false otherwise
867          */
868         bool ConfValueBool(ConfigDataHash &target, const std::string &tag, const std::string &var, const std::string &default_value, int index);
869         
870         /** Returns the number of occurences of tag in the config file
871          */
872         int ConfValueEnum(ConfigDataHash &target, const char* tag);
873         /** Returns the number of occurences of tag in the config file
874          */
875         int ConfValueEnum(ConfigDataHash &target, const std::string &tag);
876         
877         /** Returns the numbers of vars inside the index'th 'tag in the config file
878          */
879         int ConfVarEnum(ConfigDataHash &target, const char* tag, int index);
880         /** Returns the numbers of vars inside the index'th 'tag in the config file
881          */
882         int ConfVarEnum(ConfigDataHash &target, const std::string &tag, int index);
883
884         /** Validates a hostname value, throwing ConfigException if it is not valid
885          */
886         void ValidateHostname(const char* p, const std::string &tag, const std::string &val);
887
888         /** Validates an IP address value, throwing ConfigException if it is not valid
889          */
890         void ValidateIP(const char* p, const std::string &tag, const std::string &val, bool wild);
891
892         /** Validates a value that should not contain spaces, throwing ConfigException of it is not valid
893          */
894         void ValidateNoSpaces(const char* p, const std::string &tag, const std::string &val);
895
896         /** Returns the fully qualified path to the inspircd directory
897          * @return The full program directory
898          */
899         std::string GetFullProgDir();
900
901         /** Returns true if a directory is valid (within the modules directory).
902          * @param dirandfile The directory and filename to check
903          * @return True if the directory is valid
904          */
905         static bool DirValid(const char* dirandfile);
906
907         /** Clean a filename, stripping the directories (and drives) from string.
908          * @param name Directory to tidy
909          * @return The cleaned filename
910          */
911         static char* CleanFilename(char* name);
912
913         /** Check if a file exists.
914          * @param file The full path to a file
915          * @return True if the file exists and is readable.
916          */
917         static bool FileExists(const char* file);
918
919         /** If this value is true, invites will bypass more than just +i
920          */
921         bool InvBypassModes;
922
923 };
924
925 /** Initialize the disabled commands list
926  */
927 CoreExport bool InitializeDisabledCommands(const char* data, InspIRCd* ServerInstance);
928
929 /** Initialize the oper types
930  */
931 bool InitTypes(ServerConfig* conf, const char* tag);
932
933 /** Initialize the oper classes
934  */
935 bool InitClasses(ServerConfig* conf, const char* tag);
936
937 /** Initialize an oper type 
938  */
939 bool DoType(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types);
940
941 /** Initialize an oper class
942  */
943 bool DoClass(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types);
944
945 /** Finish initializing the oper types and classes
946  */
947 bool DoneClassesAndTypes(ServerConfig* conf, const char* tag);
948
949
950
951 /** Initialize x line
952  */
953 bool InitXLine(ServerConfig* conf, const char* tag);
954  
955 /** Add a config-defined zline
956  */
957 bool DoZLine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types);
958
959 /** Add a config-defined qline
960  */
961 bool DoQLine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types);
962
963 /** Add a config-defined kline
964  */
965 bool DoKLine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types);
966
967 /** Add a config-defined eline
968  */
969 bool DoELine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types);
970
971
972
973
974 #endif
975