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