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