]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/inspircd.h
Make the default ProtocolInterface instance part of class InspIRCd
[user/henk/code/inspircd.git] / include / inspircd.h
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007-2008 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2008 Pippijn van Steenhoven <pip88nl@gmail.com>
7  *   Copyright (C) 2003-2008 Craig Edwards <craigedwards@brainbox.cc>
8  *   Copyright (C) 2006-2007 Oliver Lupton <oliverlupton@gmail.com>
9  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
10  *   Copyright (C) 2003 randomdan <???@???>
11  *
12  * This file is part of InspIRCd.  InspIRCd is free software: you can
13  * redistribute it and/or modify it under the terms of the GNU General Public
14  * License as published by the Free Software Foundation, version 2.
15  *
16  * This program is distributed in the hope that it will be useful, but WITHOUT
17  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
19  * details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23  */
24
25
26 #pragma once
27
28 #include <climits>
29 #include <cmath>
30 #include <csignal>
31 #include <cstdarg>
32 #include <cstdio>
33 #include <cstring>
34 #include <ctime>
35
36 #include <algorithm>
37 #include <bitset>
38 #include <deque>
39 #include <list>
40 #include <map>
41 #include <set>
42 #include <sstream>
43 #include <string>
44 #include <vector>
45
46 #include "intrusive_list.h"
47 #include "compat.h"
48 #include "typedefs.h"
49 #include "stdalgo.h"
50
51 CoreExport extern InspIRCd* ServerInstance;
52
53 #include "config.h"
54 #include "dynref.h"
55 #include "consolecolors.h"
56 #include "caller.h"
57 #include "cull_list.h"
58 #include "extensible.h"
59 #include "fileutils.h"
60 #include "numerics.h"
61 #include "uid.h"
62 #include "server.h"
63 #include "users.h"
64 #include "channels.h"
65 #include "timer.h"
66 #include "hashcomp.h"
67 #include "logger.h"
68 #include "usermanager.h"
69 #include "socket.h"
70 #include "ctables.h"
71 #include "command_parse.h"
72 #include "mode.h"
73 #include "socketengine.h"
74 #include "snomasks.h"
75 #include "filelogger.h"
76 #include "modules.h"
77 #include "threadengine.h"
78 #include "configreader.h"
79 #include "inspstring.h"
80 #include "protocol.h"
81 #include "bancache.h"
82
83 /** Returned by some functions to indicate failure.
84  */
85 #define ERROR -1
86
87 /** Template function to convert any input type to std::string
88  */
89 template<typename T> inline std::string ConvNumeric(const T &in)
90 {
91         if (in == 0)
92                 return "0";
93         T quotient = in;
94         std::string out;
95         while (quotient)
96         {
97                 out += "0123456789"[ std::abs( (long)quotient % 10 ) ];
98                 quotient /= 10;
99         }
100         if (in < 0)
101                 out += '-';
102         std::reverse(out.begin(), out.end());
103         return out;
104 }
105
106 /** Template function to convert any input type to std::string
107  */
108 inline std::string ConvToStr(const int in)
109 {
110         return ConvNumeric(in);
111 }
112
113 /** Template function to convert any input type to std::string
114  */
115 inline std::string ConvToStr(const long in)
116 {
117         return ConvNumeric(in);
118 }
119
120 /** Template function to convert any input type to std::string
121  */
122 inline std::string ConvToStr(const char* in)
123 {
124         return in;
125 }
126
127 /** Template function to convert any input type to std::string
128  */
129 inline std::string ConvToStr(const bool in)
130 {
131         return (in ? "1" : "0");
132 }
133
134 /** Template function to convert any input type to std::string
135  */
136 inline std::string ConvToStr(char in)
137 {
138         return std::string(1, in);
139 }
140
141 /** Template function to convert any input type to std::string
142  */
143 template <class T> inline std::string ConvToStr(const T &in)
144 {
145         std::stringstream tmp;
146         if (!(tmp << in)) return std::string();
147         return tmp.str();
148 }
149
150 /** Template function to convert any input type to any other type
151  * (usually an integer or numeric type)
152  */
153 template<typename T> inline long ConvToInt(const T &in)
154 {
155         std::stringstream tmp;
156         if (!(tmp << in)) return 0;
157         return atol(tmp.str().c_str());
158 }
159
160 inline uint64_t ConvToUInt64(const std::string& in)
161 {
162         uint64_t ret;
163         std::istringstream tmp(in);
164         if (!(tmp >> ret))
165                 return 0;
166         return ret;
167 }
168
169 /** This class contains various STATS counters
170  * It is used by the InspIRCd class, which internally
171  * has an instance of it.
172  */
173 class serverstats
174 {
175   public:
176         /** Number of accepted connections
177          */
178         unsigned long Accept;
179         /** Number of failed accepts
180          */
181         unsigned long Refused;
182         /** Number of unknown commands seen
183          */
184         unsigned long Unknown;
185         /** Number of nickname collisions handled
186          */
187         unsigned long Collisions;
188         /** Number of DNS queries sent out
189          */
190         unsigned long Dns;
191         /** Number of good DNS replies received
192          * NOTE: This may not tally to the number sent out,
193          * due to timeouts and other latency issues.
194          */
195         unsigned long DnsGood;
196         /** Number of bad (negative) DNS replies received
197          * NOTE: This may not tally to the number sent out,
198          * due to timeouts and other latency issues.
199          */
200         unsigned long DnsBad;
201         /** Number of inbound connections seen
202          */
203         unsigned long Connects;
204         /** Total bytes of data transmitted
205          */
206         unsigned long Sent;
207         /** Total bytes of data received
208          */
209         unsigned long Recv;
210 #ifdef _WIN32
211         /** Cpu usage at last sample
212         */
213         FILETIME LastCPU;
214         /** Time QP sample was read
215         */
216         LARGE_INTEGER LastSampled;
217         /** QP frequency
218         */
219         LARGE_INTEGER QPFrequency;
220 #else
221         /** Cpu usage at last sample
222          */
223         timeval LastCPU;
224         /** Time last sample was read
225          */
226         timespec LastSampled;
227 #endif
228         /** The constructor initializes all the counts to zero
229          */
230         serverstats()
231                 : Accept(0), Refused(0), Unknown(0), Collisions(0), Dns(0),
232                 DnsGood(0), DnsBad(0), Connects(0), Sent(0), Recv(0)
233         {
234         }
235 };
236
237 /** This class manages the generation and transmission of ISUPPORT. */
238 class CoreExport ISupportManager
239 {
240 private:
241         /** The generated lines which are sent to clients. */
242         std::vector<std::string> Lines;
243
244 public:
245         /** (Re)build the ISUPPORT vector. */
246         void Build();
247
248         /** Returns the std::vector of ISUPPORT lines. */
249         const std::vector<std::string>& GetLines()
250         {
251                 return this->Lines;
252         }
253
254         /** Send the 005 numerics (ISUPPORT) to a user. */
255         void SendTo(LocalUser* user);
256 };
257
258 DEFINE_HANDLER1(IsNickHandler, bool, const std::string&);
259 DEFINE_HANDLER2(GenRandomHandler, void, char*, size_t);
260 DEFINE_HANDLER1(IsIdentHandler, bool, const std::string&);
261 DEFINE_HANDLER1(IsChannelHandler, bool, const std::string&);
262 DEFINE_HANDLER3(OnCheckExemptionHandler, ModResult, User*, Channel*, const std::string&);
263
264 /** The main class of the irc server.
265  * This class contains instances of all the other classes in this software.
266  * Amongst other things, it contains a ModeParser, a DNS object, a CommandParser
267  * object, and a list of active Module objects, and facilities for Module
268  * objects to interact with the core system it implements.
269  */
270 class CoreExport InspIRCd
271 {
272  private:
273         /** Set up the signal handlers
274          */
275         void SetSignals();
276
277         /** Daemonize the ircd and close standard input/output streams
278          * @return True if the program daemonized succesfully
279          */
280         bool DaemonSeed();
281
282         /** The current time, updated in the mainloop
283          */
284         struct timespec TIME;
285
286         /** A 64k buffer used to read socket data into
287          * NOTE: update ValidateNetBufferSize if you change this
288          */
289         char ReadBuffer[65535];
290
291         /** Check we aren't running as root, and exit if we are
292          * with exit code EXIT_STATUS_ROOT.
293          */
294         void CheckRoot();
295
296  public:
297
298         UIDGenerator UIDGen;
299
300         /** Global cull list, will be processed on next iteration
301          */
302         CullList GlobalCulls;
303         /** Actions that must happen outside of the current call stack */
304         ActionList AtomicActions;
305
306         /**** Functors ****/
307
308         IsNickHandler HandleIsNick;
309         IsIdentHandler HandleIsIdent;
310         OnCheckExemptionHandler HandleOnCheckExemption;
311         IsChannelHandler HandleIsChannel;
312         GenRandomHandler HandleGenRandom;
313
314         /** Globally accessible fake user record. This is used to force mode changes etc across s2s, etc.. bit ugly, but.. better than how this was done in 1.1
315          * Reason for it:
316          * kludge alert!
317          * SendMode expects a User* to send the numeric replies
318          * back to, so we create it a fake user that isnt in the user
319          * hash and set its descriptor to FD_MAGIC_NUMBER so the data
320          * falls into the abyss :p
321          */
322         FakeUser* FakeClient;
323
324         /** Find a user in the UUID hash
325          * @param uid The UUID to find
326          * @return A pointer to the user, or NULL if the user does not exist
327          */
328         User* FindUUID(const std::string &uid);
329
330         /** Time this ircd was booted
331          */
332         time_t startup_time;
333
334         /** Config file pathname specified on the commandline or via ./configure
335          */
336         std::string ConfigFileName;
337
338         ExtensionManager Extensions;
339
340         /** Mode handler, handles mode setting and removal
341          */
342         ModeParser* Modes;
343
344         /** Command parser, handles client to server commands
345          */
346         CommandParser Parser;
347
348         /** Thread engine, Handles threading where required
349          */
350         ThreadEngine Threads;
351
352         /** The thread/class used to read config files in REHASH and on startup
353          */
354         ConfigReaderThread* ConfigThread;
355
356         /** LogManager handles logging.
357          */
358         LogManager *Logs;
359
360         /** ModuleManager contains everything related to loading/unloading
361          * modules.
362          */
363         ModuleManager* Modules;
364
365         /** BanCacheManager is used to speed up checking of restrictions on connection
366          * to the IRCd.
367          */
368         BanCacheManager BanCache;
369
370         /** Stats class, holds miscellaneous stats counters
371          */
372         serverstats stats;
373
374         /**  Server Config class, holds configuration file data
375          */
376         ServerConfig* Config;
377
378         /** Snomask manager - handles routing of snomask messages
379          * to opers.
380          */
381         SnomaskManager* SNO;
382
383         /** Timer manager class, triggers Timer timer events
384          */
385         TimerManager Timers;
386
387         /** X-Line manager. Handles G/K/Q/E line setting, removal and matching
388          */
389         XLineManager* XLines;
390
391         /** User manager. Various methods and data associated with users.
392          */
393         UserManager *Users;
394
395         /** Channel list, a hash_map containing all channels XXX move to channel manager class
396          */
397         chan_hash chanlist;
398
399         /** List of the open ports
400          */
401         std::vector<ListenSocket*> ports;
402
403         /** Set to the current signal recieved
404          */
405         static sig_atomic_t s_signal;
406
407         /** Protocol interface, overridden by server protocol modules
408          */
409         ProtocolInterface* PI;
410
411         /** Default implementation of the ProtocolInterface, does nothing
412          */
413         ProtocolInterface DefaultProtocolInterface;
414
415         /** Holds extensible for user operquit
416          */
417         StringExtItem OperQuit;
418
419         /** Manages the generation and transmission of ISUPPORT. */
420         ISupportManager ISupport;
421
422         /** Get the current time
423          * Because this only calls time() once every time around the mainloop,
424          * it is much faster than calling time() directly.
425          * @return The current time as an epoch value (time_t)
426          */
427         inline time_t Time() { return TIME.tv_sec; }
428         /** The fractional time at the start of this mainloop iteration (nanoseconds) */
429         inline long Time_ns() { return TIME.tv_nsec; }
430         /** Update the current time. Don't call this unless you have reason to do so. */
431         void UpdateTime();
432
433         /** Generate a random string with the given length
434          * @param length The length in bytes
435          * @param printable if false, the string will use characters 0-255; otherwise,
436          * it will be limited to 0x30-0x7E ('0'-'~', nonspace printable characters)
437          */
438         std::string GenRandomStr(int length, bool printable = true);
439         /** Generate a random integer.
440          * This is generally more secure than rand()
441          */
442         unsigned long GenRandomInt(unsigned long max);
443
444         /** Fill a buffer with random bits */
445         caller2<void, char*, size_t> GenRandom;
446
447         /** Bind all ports specified in the configuration file.
448          * @return The number of ports bound without error
449          */
450         int BindPorts(FailedPortList &failed_ports);
451
452         /** Binds a socket on an already open file descriptor
453          * @param sockfd A valid file descriptor of an open socket
454          * @param port The port number to bind to
455          * @param addr The address to bind to (IP only)
456          * @param dolisten Should this port be listened on?
457          * @return True if the port was bound successfully
458          */
459         bool BindSocket(int sockfd, int port, const char* addr, bool dolisten = true);
460
461         /** Find a user in the nick hash.
462          * If the user cant be found in the nick hash check the uuid hash
463          * @param nick The nickname to find
464          * @return A pointer to the user, or NULL if the user does not exist
465          */
466         User* FindNick(const std::string &nick);
467
468         /** Find a user in the nick hash ONLY
469          */
470         User* FindNickOnly(const std::string &nick);
471
472         /** Find a channel in the channels hash
473          * @param chan The channel to find
474          * @return A pointer to the channel, or NULL if the channel does not exist
475          */
476         Channel* FindChan(const std::string &chan);
477
478         /** Get a hash map containing all channels, keyed by their name
479          * @return A hash map mapping channel names to Channel pointers
480          */
481         chan_hash& GetChans() { return chanlist; }
482
483         /** Return true if a channel name is valid
484          * @param chname A channel name to verify
485          * @return True if the name is valid
486          */
487         caller1<bool, const std::string&> IsChannel;
488
489         /** Return true if str looks like a server ID
490          * @param sid string to check against
491          */
492         static bool IsSID(const std::string& sid);
493
494         /** Handles incoming signals after being set
495          * @param signal the signal recieved
496          */
497         void SignalHandler(int signal);
498
499         /** Sets the signal recieved
500          * @param signal the signal recieved
501          */
502         static void SetSignal(int signal);
503
504         /** Causes the server to exit after unloading modules and
505          * closing all open file descriptors.
506          *
507          * @param status The exit code to give to the operating system
508          * (See the ExitStatus enum for valid values)
509          */
510         void Exit(int status);
511
512         /** Causes the server to exit immediately with exit code 0.
513          * The status code is required for signal handlers, and ignored.
514          */
515         static void QuickExit(int status);
516
517         /** Formats the input string with the specified arguments.
518         * @param formatString The string to format
519         * @param ... A variable number of format arguments.
520         * @return The formatted string
521         */
522         static const char* Format(const char* formatString, ...) CUSTOM_PRINTF(1, 2);
523         static const char* Format(va_list &vaList, const char* formatString) CUSTOM_PRINTF(2, 0);
524
525         /** Send an error notice to all local users, opered and unopered
526          * @param s The error string to send
527          */
528         void SendError(const std::string &s);
529
530         /** Return true if a nickname is valid
531          * @param n A nickname to verify
532          * @return True if the nick is valid
533          */
534         caller1<bool, const std::string&> IsNick;
535
536         /** Return true if an ident is valid
537          * @param An ident to verify
538          * @return True if the ident is valid
539          */
540         caller1<bool, const std::string&> IsIdent;
541
542         /** Match two strings using pattern matching, optionally, with a map
543          * to check case against (may be NULL). If map is null, match will be case insensitive.
544          * @param str The literal string to match against
545          * @param mask The glob pattern to match against.
546          * @param map The character map to use when matching.
547          */
548         static bool Match(const std::string& str, const std::string& mask, unsigned const char* map = NULL);
549         static bool Match(const char* str, const char* mask, unsigned const char* map = NULL);
550
551         /** Match two strings using pattern matching, optionally, with a map
552          * to check case against (may be NULL). If map is null, match will be case insensitive.
553          * Supports CIDR patterns as well as globs.
554          * @param str The literal string to match against
555          * @param mask The glob or CIDR pattern to match against.
556          * @param map The character map to use when matching.
557          */
558         static bool MatchCIDR(const std::string& str, const std::string& mask, unsigned const char* map = NULL);
559         static bool MatchCIDR(const char* str, const char* mask, unsigned const char* map = NULL);
560
561         /** Matches a hostname and IP against a space delimited list of hostmasks.
562          * @param masks The space delimited masks to match against.
563          * @param hostname The hostname to try and match.
564          * @param ipaddr The IP address to try and match.
565          */
566         static bool MatchMask(const std::string& masks, const std::string& hostname, const std::string& ipaddr);
567
568         /** Return true if the given parameter is a valid nick!user\@host mask
569          * @param mask A nick!user\@host masak to match against
570          * @return True i the mask is valid
571          */
572         static bool IsValidMask(const std::string& mask);
573
574         /** Strips all color codes from the given string
575          * @param sentence The string to strip from
576          */
577         static void StripColor(std::string &sentence);
578
579         /** Parses color codes from string values to actual color codes
580          * @param input The data to process
581          */
582         static void ProcessColors(file_cache& input);
583
584         /** Rehash the local server
585          * @param uuid The uuid of the user who started the rehash, can be empty
586          */
587         void Rehash(const std::string& uuid = "");
588
589         /** Calculate a duration in seconds from a string in the form 1y2w3d4h6m5s
590          * @param str A string containing a time in the form 1y2w3d4h6m5s
591          * (one year, two weeks, three days, four hours, six minutes and five seconds)
592          * @return The total number of seconds
593          */
594         static unsigned long Duration(const std::string& str);
595
596         /** Attempt to compare a password to a string from the config file.
597          * This will be passed to handling modules which will compare the data
598          * against possible hashed equivalents in the input string.
599          * @param ex The object (user, server, whatever) causing the comparison.
600          * @param data The data from the config file
601          * @param input The data input by the oper
602          * @param hashtype The hash from the config file
603          * @return True if the strings match, false if they do not
604          */
605         bool PassCompare(Extensible* ex, const std::string& data, const std::string& input, const std::string& hashtype);
606
607         /** Returns the full version string of this ircd
608          * @return The version string
609          */
610         std::string GetVersionString(bool getFullVersion = false);
611
612         /** Attempt to write the process id to a given file
613          * @param filename The PID file to attempt to write to
614          * @return This function may bail if the file cannot be written
615          */
616         void WritePID(const std::string &filename);
617
618         /** This constructor initialises all the subsystems and reads the config file.
619          * @param argc The argument count passed to main()
620          * @param argv The argument list passed to main()
621          * @throw <anything> If anything is thrown from here and makes it to
622          * you, you should probably just give up and go home. Yes, really.
623          * It's that bad. Higher level classes should catch any non-fatal exceptions.
624          */
625         InspIRCd(int argc, char** argv);
626
627         /** Send a line of WHOIS data to a user.
628          * @param user user to send the line to
629          * @param dest user being WHOISed
630          * @param numeric Numeric to send
631          * @param text Text of the numeric
632          */
633         void SendWhoisLine(User* user, User* dest, int numeric, const std::string &text);
634
635         /** Send a line of WHOIS data to a user.
636          * @param user user to send the line to
637          * @param dest user being WHOISed
638          * @param numeric Numeric to send
639          * @param format Format string for the numeric
640          * @param ... Parameters for the format string
641          */
642         void SendWhoisLine(User* user, User* dest, int numeric, const char* format, ...) CUSTOM_PRINTF(5, 6);
643
644         /** Called to check whether a channel restriction mode applies to a user
645          * @param User that is attempting some action
646          * @param Channel that the action is being performed on
647          * @param Action name
648          */
649         caller3<ModResult, User*, Channel*, const std::string&> OnCheckExemption;
650
651         /** Prepare the ircd for restart or shutdown.
652          * This function unloads all modules which can be unloaded,
653          * closes all open sockets, and closes the logfile.
654          */
655         void Cleanup();
656
657         /** Return a time_t as a human-readable string.
658          */
659         static std::string TimeString(time_t curtime);
660
661         /** Begin execution of the server.
662          * NOTE: this function NEVER returns. Internally,
663          * it will repeatedly loop.
664          */
665         void Run();
666
667         char* GetReadBuffer()
668         {
669                 return this->ReadBuffer;
670         }
671 };
672
673 ENTRYPOINT;
674
675 template<class Cmd>
676 class CommandModule : public Module
677 {
678         Cmd cmd;
679  public:
680         CommandModule() : cmd(this)
681         {
682         }
683
684         Version GetVersion()
685         {
686                 return Version(cmd.name, VF_VENDOR|VF_CORE);
687         }
688 };
689
690 inline void stdalgo::culldeleter::operator()(classbase* item)
691 {
692         if (item)
693                 ServerInstance->GlobalCulls.AddItem(item);
694 }