1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
|
/*
* InspIRCd -- Internet Relay Chat Daemon
*
* Copyright (C) 2019 Matt Schatz <genius3000@g3k.solutions>
* Copyright (C) 2018 Chris Novakovic
* Copyright (C) 2013-2014, 2016 Attila Molnar <attilamolnar@hush.com>
* Copyright (C) 2013 Daniel Vassdal <shutter@canternet.org>
* Copyright (C) 2012-2014, 2016-2022 Sadie Powell <sadie@witchery.services>
* Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
* Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
* Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
* Copyright (C) 2007-2008 Robin Burchell <robin+git@viroteck.net>
* Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
* Copyright (C) 2006-2008 Craig Edwards <brain@inspircd.org>
* Copyright (C) 2006 Oliver Lupton <om@inspircd.org>
*
* This file is part of InspIRCd. InspIRCd is free software: you can
* redistribute it and/or modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation, version 2.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include "inspircd.h"
/** Represents the position within a file. */
class CoreExport FilePosition final
{
public:
/** The name of the file that the position points to. */
std::string name;
/** The line of the file that this position points to. */
unsigned long line;
/** The column of the file that this position points to. */
unsigned long column;
/** Initialises a new file position with the specified name, line, and column.
* @param Name The name of the file that the position points to.
* @param Line The line of the file that this position points to.
* @param Column The column of the file that this position points to.
*/
FilePosition(const std::string& Name, unsigned long Line, unsigned long Column);
/** Returns a string that represents this file position. */
std::string str() const;
};
/** Structure representing a single \<tag> in config */
class CoreExport ConfigTag final
{
public:
/** A mapping of configuration keys to their assigned values. */
typedef insp::flat_map<std::string, std::string, irc::insensitive_swo> Items;
private:
Items items;
/** Retrieves the value of a signed integer from the server config.
* @param key The config key to retrieve.
* @param def The default value to return if not set, empty, or out of range.
* @param min The minimum valid value.
* @param max The maximum valid value.
*/
long double getFloat(const std::string& key, long double def, long double min, long double max) const;
/** Retrieves the value of a signed integer from the server config.
* @param key The config key to retrieve.
* @param def The default value to return if not set, empty, or out of range.
* @param min The minimum valid value.
* @param max The maximum valid value.
*/
intmax_t getSInt(const std::string& key, intmax_t def, intmax_t min, intmax_t max) const;
/** Retrieves the value of an unsigned integer from the server config.
* @param key The config key to retrieve.
* @param def The default value to return if not set, empty, or out of range.
* @param min The minimum valid value.
* @param max The maximum valid value.
*/
uintmax_t getUInt(const std::string& key, uintmax_t def, uintmax_t min, uintmax_t max) const;
public:
/** The name of the configuration tag (e.g. "foo" for \<foo bar="baz">). */
const std::string name;
/** The position within the source file that this tag was read from. */
const FilePosition source;
/** Creates a new ConfigTag instance with the specified tag name, file, and line.
* @param Name The name of this config tag (e.g. "foo" for \<foo bar="baz">).
* @param Source The source of this config tag.
*/
ConfigTag(const std::string& Name, const FilePosition& Source);
/** @copydoc getFloat */
template<typename T>
std::enable_if_t<std::is_floating_point_v<T>, T> getNum(const std::string& key, T def, T min = std::numeric_limits<T>::min(), T max = std::numeric_limits<T>::max()) const
{
return static_cast<T>(getFloat(key, def, min, max));
}
/** @copydoc getSInt */
template<typename T>
std::enable_if_t<std::is_signed_v<T> && !std::is_floating_point_v<T>, T> getNum(const std::string& key, T def, T min = std::numeric_limits<T>::min(), T max = std::numeric_limits<T>::max()) const
{
return static_cast<T>(getSInt(key, def, min, max));
}
/** @copydoc getUInt */
template<typename T>
std::enable_if_t<std::is_unsigned_v<T> && !std::is_floating_point_v<T>, T> getNum(const std::string& key, T def, T min = std::numeric_limits<T>::min(), T max = std::numeric_limits<T>::max()) const
{
return static_cast<T>(getUInt(key, def, min, max));
}
/** Get the value of an option, using def if it does not exist */
std::string getString(const std::string& key, const std::string& def, const std::function<bool(const std::string&)>& validator) const;
/** Get the value of an option, using def if it does not exist */
std::string getString(const std::string& key, const std::string& def = "", size_t minlen = 0, size_t maxlen = UINT32_MAX) const;
/** Get the value of an option, using def if it does not exist */
bool getBool(const std::string& key, bool def = false) const;
/** Get the value of an option, using def if it does not exist */
unsigned char getCharacter(const std::string& key, unsigned char def = '\0') const;
/** Get the value in seconds of a duration that is in the user-friendly "1h2m3s" format,
* using a default value if it does not exist or is out of bounds.
* @param key The config key name
* @param def Default value (optional)
* @param min Minimum acceptable value (optional)
* @param max Maximum acceptable value (optional)
* @return The duration in seconds
*/
unsigned long getDuration(const std::string& key, unsigned long def, unsigned long min = 0, unsigned long max = ULONG_MAX) const;
template<typename TReturn>
TReturn getEnum(const std::string& key, TReturn def, std::initializer_list<std::pair<const char*, TReturn>> enumvals)
{
const std::string val = getString(key);
if (val.empty())
return def;
for (const auto& [enumkey, enumval] : enumvals)
if (strcasecmp(val.c_str(), enumkey) == 0)
return enumval;
// Unfortunately we have to iterate this twice.
std::string enumdef = "(unknown)";
std::string enumkeys;
for (const auto& [enumkey, enumval] : enumvals)
{
enumkeys.append(enumkey).append(", ");
if (enumval == def)
enumdef = enumkey;
}
if (!enumkeys.empty())
enumkeys.erase(enumkeys.length() - 2);
LogMalformed(key, val, enumdef, "not one of " + enumkeys);
return def;
}
/** Get the value of an option
* @param key The option to get
* @param value The location to store the value (unmodified if does not exist)
* @param allow_newline Allow newlines in the option (normally replaced with spaces)
* @return true if the option exists
*/
bool readString(const std::string& key, std::string& value, bool allow_newline = false) const;
/** Retrieves the underlying map of config entries. */
inline const Items& GetItems() const { return items; }
inline Items& GetItems() { return items; }
/** @internal Logs that the value of a config field is malformed. */
void LogMalformed(const std::string& key, const std::string& val, const std::string& def, const std::string& reason) const;
};
struct CommandLineConf final
{
/** If this value is true, the owner of the
* server specified -nofork on the command
* line, causing the daemon to stay in the
* foreground.
*/
bool nofork;
/** If this value if true then all log
* messages will be output, regardless of
* the level given in the config file.
* This is set with the -debug commandline
* option.
*/
bool forcedebug;
/** If this is true then log output will be
* written to the logfile. This is the default.
* If you put -nolog on the commandline then
* the logfile will not be written.
* This is meant to be used in conjunction with
* -debug for debugging without filling up the
* hard disk.
*/
bool writelog;
/** If this is true, a PID file will be written
* to the file given in the "file" variable of
* the \<pid> tag in the config file. This is
* the default.
* Passing --nopid as a command line argument
* sets this to false; in this case, a PID file
* will not be written, even the default PID
* file that is usually written when the \<pid>
* tag is not defined in the config file.
*/
bool writepid;
/* Whether the --runasroot option was specified at boot. */
bool runasroot;
/** Saved argc from startup. */
int argc;
/** Saved argv from startup. */
char** argv;
};
/** This class holds the bulk of the runtime configuration for the ircd.
* It allows for reading new config values, accessing configuration files,
* and storage of the configuration data needed to run the ircd, such as
* the servername, connect classes, /ADMIN data, MOTDs and filenames etc.
*/
class CoreExport ServerConfig final
{
private:
friend class ConfigReaderThread; // valid
friend struct ParseStack; // config_data, errstr, filesources
/** Holds the contents of a cached file. */
typedef insp::flat_map<std::string, std::pair<std::string, time_t>> FileCache;
/** Holds the contents of a cached file. */
typedef insp::flat_map<std::string, std::pair<std::string, bool>, irc::insensitive_swo> FileSource;
/** Holds the server config. */
typedef std::multimap<std::string, std::shared_ptr<ConfigTag>, irc::insensitive_swo> TagMap;
/** The server config. */
TagMap config_data;
/** Whether any errors occurred whilst reading the server config. */
std::stringstream errstr;
/** Files which have been read from disk. */
FileCache filecontents;
/** The location of files from \<[exec]files>. */
FileSource filesources;
/** Whether the server config is valid. */
bool valid;
/** Loads added modules and unloads any removed ones.
* @param user If non-nullptr then the user who initiated this config load.
*/
void ApplyModules(User* user) const;
/** Ensures that connect classes are well formed.
* @param current The current server config that is about to be replaced.
*/
void CrossCheckConnectBlocks(ServerConfig* current);
/** Ensures that oper accounts, oper types, and oper classes are well formed. */
void CrossCheckOperBlocks();
/** Reads the core server config. */
void Fill();
public:
/** How to treat a user in a channel who is banned. */
enum BannedUserTreatment
: uint8_t
{
/** Don't treat a banned user any different to normal. */
BUT_NORMAL,
/** Restrict the actions of a banned user. */
BUT_RESTRICT_SILENT,
/** Restrict the actions of a banned user and notify them of their treatment. */
BUT_RESTRICT_NOTIFY
};
/** Encapsulates the result of calling ReadFile. */
class CoreExport ReadResult final
: private insp::uncopiable
{
public:
/* If the read succeeded then the contents of the file. */
const std::string& contents;
/* If the read failed then the reason why. */
const std::string error;
ReadResult(const std::string& c, const std::string& e);
/** Allows nicer evaluation of a read result */
inline operator bool() const { return error.empty(); }
};
/** Holds the limits for how long various fields can be. Read from the \<limits> tag. */
class CoreExport ServerLimits final
{
public:
/** Maximum line length */
size_t MaxLine;
/** Maximum nickname length */
size_t MaxNick;
/** Maximum channel length */
size_t MaxChannel;
/** Maximum number of modes per line */
size_t MaxModes;
/** Maximum length of a username */
size_t MaxUser;
/** Maximum length of a quit message */
size_t MaxQuit;
/** Maximum topic length */
size_t MaxTopic;
/** Maximum kick message length */
size_t MaxKick;
/** Maximum real name length */
size_t MaxReal;
/** Maximum away message length */
size_t MaxAway;
/** Maximum hostname length */
size_t MaxHost;
/** Read all limits from a config tag. Limits which aren't specified in the tag are set to a default value.
* @param tag Configuration tag to read the limits from
*/
ServerLimits(const std::shared_ptr<ConfigTag>& tag);
/** Maximum length of a n!u\@h mask */
size_t GetMaxMask() const { return MaxNick + 1 + MaxUser + 1 + MaxHost; }
};
/** Holds the location of various directories. Read from the \<path> tag */
class CoreExport ServerPaths final
{
private:
/** Expands a path fragment to a full path.
* @param base The base path to expand from
* @param fragment The path fragment to expand on top of base.
*/
static std::string ExpandPath(const std::string& base, const std::string& fragment);
public:
/** Config path */
std::string Config;
/** Data path */
std::string Data;
/** Log path */
std::string Log;
/** Module path */
std::string Module;
/** Runtime path */
std::string Runtime;
ServerPaths(const std::shared_ptr<ConfigTag>& tag);
inline std::string PrependConfig(const std::string& fn) const { return ExpandPath(Config, fn); }
inline std::string PrependData(const std::string& fn) const { return ExpandPath(Data, fn); }
inline std::string PrependLog(const std::string& fn) const { return ExpandPath(Log, fn); }
inline std::string PrependModule(const std::string& fn) const { return ExpandPath(Module, fn); }
inline std::string PrependRuntime(const std::string& fn) const { return ExpandPath(Runtime, fn); }
};
/** Holds the connect classes from the server config. */
typedef std::vector<std::shared_ptr<ConnectClass>> ClassVector;
/** Holds the oper accounts from the server config. */
typedef insp::flat_map<std::string, std::shared_ptr<OperAccount>> OperAccountMap;
/** Holds the oper types from the server config. */
typedef insp::flat_map<std::string, std::shared_ptr<OperType>> OperTypeMap;
/** Holds iterators to a subsection of the server config map. */
typedef insp::iterator_range<TagMap::const_iterator> TagList;
/** The connect classes from the server config. */
ClassVector Classes;
/** The configuration read from the command line. */
CommandLineConf CommandLine;
/** An empty configuration tag. */
std::shared_ptr<ConfigTag> EmptyTag;
/** The limits for how long various fields can be. */
ServerLimits Limits;
/** The location of various directories. */
ServerPaths Paths;
/** Oper accounts keyed by their name. */
OperAccountMap OperAccounts;
/** Oper types keyed by their name. */
OperTypeMap OperTypes;
/** The name of the casemapping method used by this server. */
std::string CaseMapping = "ascii";
/** The value to show in the comment field of the RPL_VERSION. */
std::string CustomVersion;
/** The modes to set on a new channel. May contain channel prefix modes to set on the channel creator. */
std::string DefaultModes;
/** If non-empty then the value to replace the server name with in public messages. */
std::string HideServer;
/* The name of the IRC network (e.g. ExampleNet). */
std::string Network;
/** The description of the IRC server (e.g. ExampleNet European Server). */
std::string ServerDesc;
/** The unique identifier for this server. Must be in the format [0-9][A-Z0-9][A-Z0-9]. */
std::string ServerId;
/** The hostname of the IRC server (e.g. irc.example.com). */
std::string ServerName;
/** The message to send to users when they are banned by an X-line. */
std::string XLineMessage;
/** The quit message to use when killing an X-lined user. */
std::string XLineQuit;
/** If non-empty then the public quit message to use when killing an X-lined user. */
std::string XLineQuitPublic;
/** The CIDR range to use when determining if IPv4 clients are from the same origin. */
unsigned char IPv4Range;
/** The CIDR range to use when determining if IPv4 clients are from the same origin. */
unsigned char IPv6Range;
/** How to treat a user in a channel who is banned. */
BannedUserTreatment RestrictBannedUsers;
/** The maximum number of connections that can be waiting in the server accept queue. */
int MaxConn;
/** The number of seconds that the server clock can skip by before server operators are warned. */
time_t TimeSkipWarn;
/** The maximum number of targets for a multi-target command (e.g. KICK). */
size_t MaxTargets;
/** The maximum amount of data to read from a socket in one go. */
size_t NetBufferSize;
/** The maximum number of local connections that can be made to the IRC server. */
size_t SoftLimit;
/** Whether to store the full nick!duser\@dhost as a list mode setter instead of just their nick. */
bool MaskInList;
/** Whether to store the full nick!duser\@dhost as a topic setter instead of just their nick. */
bool MaskInTopic;
/** Whether to disable stacking snotices when multiple identical messages are sent. */
bool NoSnoticeStack;
/** Whether raw I/O traffic is being logged. */
bool RawLog = false;
/** Whether to show syntax hints when a user does not provide enough parameters for a command. */
bool SyntaxHints;
/** Whether to bind to IPv6 by default. */
bool WildcardIPv6;
ServerConfig();
/** Apply configuration changes from the old configuration. */
void Apply(ServerConfig* old, const std::string& useruid);
/** Get a list of configuration tags by name.
* @param tag The name of the tags to get.
* @param def The value to return if the tag doesn't exist.
* @returns Either a list of tags from the config or an empty TagList.
*/
TagList ConfTags(const std::string& tag, std::optional<TagList> def = std::nullopt) const;
/** Get a configuration tag by name. If one or more tags are present then the first is returned.
* @param tag The name of the tag to get.
* @param def The value to return if the tag doesn't exist.
* @returns Either a tag from the config or EmptyTag.
*/
const std::shared_ptr<ConfigTag>& ConfValue(const std::string& tag, const std::shared_ptr<ConfigTag>& def = nullptr) const;
/** Escapes a value for storage in a configuration key.
* @param str The string to escape.
*/
static std::string Escape(const std::string& str);
/** Retrieves the entire server config. */
const auto& GetConfig() const { return config_data; }
/** Retrieves the list of modules that were specified in the config. */
std::vector<std::string> GetModules() const;
/** Retrieves the server description which should be shown to users. */
const auto& GetServerDesc() const { return HideServer.empty() ? ServerDesc : Network; }
/** Retrieves the server name which should be shown to users. */
const auto& GetServerName() const { return HideServer.empty() ? ServerName : HideServer; }
/** Attempt to read the configuration from disk. */
void Read();
/** Reads a file from disk.
* @param file The file to read from. May also be an \<[exec]files> key.
* @param mincache If non-zero then invalidate cached copies from before the specified time.
* @return The result of the read operation.
*/
ReadResult ReadFile(const std::string& file, time_t mincache = 0);
};
/** The background thread for config reading, so that reading from executable includes
* does not block.
*/
class CoreExport ConfigReaderThread final
: public Thread
{
private:
/** The new server configuration. */
ServerConfig* Config = new ServerConfig();
/** Whether the config has been read yet. */
std::atomic_bool done = { false };
protected:
/** @copydoc Thread::OnStart */
void OnStart() override;
/** @copydoc Thread::OnStop */
void OnStop() override;
public:
const std::string UUID;
ConfigReaderThread(const std::string& uuid)
: UUID(uuid)
{
}
~ConfigReaderThread() override
{
delete Config;
}
/** Whether the configuration has been read yet. */
bool IsDone() { return done.load(); }
};
/** Represents the status of a config load. */
class CoreExport ConfigStatus final
{
public:
/** Whether this is the initial config load. */
bool const initial;
/** The user who initiated the config load or NULL if not initiated by a user. */
User* const srcuser;
/** Initializes a new instance of the ConfigStatus class.
* @param user The user who initiated the config load or NULL if not initiated by a user.
* @param isinitial Whether this is the initial config load.
*/
ConfigStatus(User* user = nullptr, bool isinitial = false)
: initial(isinitial)
, srcuser(user)
{
}
};
|