2007-01-25 07:40:21 +01:00
|
|
|
/*
|
2016-09-01 17:50:48 +02:00
|
|
|
* Copyright (C) 2016 Charybdis Development Team
|
|
|
|
* Copyright (C) 2016 Jason Volk <jason@zemos.net>
|
2007-01-25 07:40:21 +01:00
|
|
|
*
|
2016-09-01 17:50:48 +02:00
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice is present in all copies.
|
2007-01-25 07:40:21 +01:00
|
|
|
*
|
2016-09-01 17:50:48 +02:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
|
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
2007-01-25 07:40:21 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-08-13 05:05:54 +02:00
|
|
|
#pragma once
|
2016-09-01 17:50:48 +02:00
|
|
|
#define HAVE_IRCD_CONF_H
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-08-13 05:05:54 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
namespace ircd {
|
2016-09-01 17:50:48 +02:00
|
|
|
namespace conf {
|
2016-08-13 05:05:54 +02:00
|
|
|
|
2016-09-03 00:08:33 +02:00
|
|
|
IRCD_EXCEPTION(ircd::error, error)
|
2016-09-06 01:10:30 +02:00
|
|
|
IRCD_EXCEPTION(error, already_exists)
|
|
|
|
IRCD_EXCEPTION(error, bad_topconf)
|
|
|
|
IRCD_EXCEPTION(error, not_found)
|
|
|
|
IRCD_EXCEPTION(error, bad_cast)
|
2016-09-03 00:08:33 +02:00
|
|
|
|
2016-09-06 01:10:30 +02:00
|
|
|
struct item
|
|
|
|
{
|
|
|
|
uint8_t *ptr;
|
|
|
|
std::type_index type;
|
2016-09-03 00:08:33 +02:00
|
|
|
|
2016-09-06 01:10:30 +02:00
|
|
|
template<class T> item(T *ptr);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct top
|
|
|
|
:cmd
|
2016-09-03 00:08:33 +02:00
|
|
|
{
|
2016-09-06 01:10:30 +02:00
|
|
|
using items = std::initializer_list<std::pair<std::string, item>>;
|
|
|
|
|
|
|
|
char letter;
|
|
|
|
std::string name;
|
|
|
|
std::unordered_map<std::string, item> map;
|
2016-09-03 00:08:33 +02:00
|
|
|
|
2016-09-06 01:10:30 +02:00
|
|
|
// Override to provide custom type handling
|
|
|
|
virtual void assign(item &item, std::string val) const;
|
2016-09-03 00:08:33 +02:00
|
|
|
|
2016-09-06 01:10:30 +02:00
|
|
|
// Override to provide operations on singleton blocks
|
2016-09-11 08:05:38 +02:00
|
|
|
virtual const uint8_t *get(client &, const std::string &key) const;
|
|
|
|
virtual void set(client &, std::string key, std::string val);
|
|
|
|
virtual void del(client &, const std::string &key);
|
|
|
|
virtual void enu(client &, const std::string &key);
|
2016-09-06 01:10:30 +02:00
|
|
|
|
|
|
|
// Override to provide operations on named blocks
|
2016-09-11 08:05:38 +02:00
|
|
|
virtual const uint8_t *get(client &, const std::string &label, const std::string &key) const;
|
|
|
|
virtual void set(client &, std::string label, std::string key, std::string val);
|
|
|
|
virtual void del(client &, const std::string &label, const std::string &key);
|
|
|
|
virtual void enu(client &, const std::string &label, const std::string &key);
|
2016-09-06 01:10:30 +02:00
|
|
|
|
|
|
|
// Override to handle the raw line
|
2016-09-11 08:05:38 +02:00
|
|
|
virtual void operator()(client &, line) override;
|
2016-09-06 01:10:30 +02:00
|
|
|
|
|
|
|
top(const char &letter, const std::string &name, const items & = {});
|
|
|
|
~top() noexcept;
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace newconf
|
|
|
|
{
|
2016-09-03 00:08:33 +02:00
|
|
|
extern topconf current; // The latest newconf parse map after startup or rehash
|
|
|
|
extern topconf last; // The current is moved to last for differentiation
|
|
|
|
}
|
|
|
|
|
2016-09-06 01:10:30 +02:00
|
|
|
extern struct log::log log;
|
|
|
|
extern std::array<top *, 256> confs;
|
|
|
|
|
|
|
|
// Dynamic casting closure
|
|
|
|
using type_handler = std::function<void (uint8_t *const &ptr, std::string text)>;
|
|
|
|
extern std::map<std::type_index, type_handler> type_handlers;
|
|
|
|
|
|
|
|
template<class T> std::type_index make_index();
|
2016-09-11 08:05:38 +02:00
|
|
|
template<class T = std::string> const T &get(client &, const char &, const std::string &label, const std::string &key);
|
|
|
|
template<class T = std::string> const T &get(client &, const char &, const std::string &key);
|
2016-09-06 01:10:30 +02:00
|
|
|
|
2016-09-08 22:29:02 +02:00
|
|
|
void execute();
|
|
|
|
void parse(const std::string &path);
|
2016-09-03 00:08:33 +02:00
|
|
|
|
2016-09-06 01:10:30 +02:00
|
|
|
|
|
|
|
template<class T>
|
|
|
|
const T &
|
2016-09-11 08:05:38 +02:00
|
|
|
get(client &client,
|
2016-09-06 01:10:30 +02:00
|
|
|
const char &letter,
|
|
|
|
const std::string &key)
|
|
|
|
{
|
|
|
|
const uint8_t &idx(letter);
|
|
|
|
const auto &conf(confs[idx]);
|
|
|
|
if(unlikely(!conf))
|
|
|
|
throw not_found("conf[%c] is not registered", letter);
|
|
|
|
|
|
|
|
return *reinterpret_cast<const T *>(conf->get(client, key));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
const T &
|
2016-09-11 08:05:38 +02:00
|
|
|
get(client &client,
|
2016-09-06 01:10:30 +02:00
|
|
|
const char &letter,
|
|
|
|
const std::string &label,
|
|
|
|
const std::string &key)
|
|
|
|
{
|
|
|
|
const uint8_t &idx(letter);
|
|
|
|
const auto &conf(confs[idx]);
|
|
|
|
if(unlikely(!conf))
|
|
|
|
throw not_found("conf[%c] is not registered", letter);
|
|
|
|
|
|
|
|
return *reinterpret_cast<const T *>(conf->get(client, label, key));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
std::type_index
|
|
|
|
make_index()
|
|
|
|
{
|
|
|
|
return typeid(typename std::add_pointer<T>::type);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
item::item(T *ptr):
|
|
|
|
ptr{reinterpret_cast<uint8_t *>(ptr)},
|
|
|
|
type{typeid(ptr)}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-09-03 00:08:33 +02:00
|
|
|
} // namespace conf
|
|
|
|
} // namespace ircd
|
|
|
|
#endif // __cplusplus
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-09-06 01:10:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-09-03 00:08:33 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
namespace ircd {
|
|
|
|
namespace conf {
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-09-01 17:50:48 +02:00
|
|
|
#define NOT_AUTHORISED (-1)
|
|
|
|
#define I_SOCKET_ERROR (-2)
|
|
|
|
#define I_LINE_FULL (-3)
|
|
|
|
#define BANNED_CLIENT (-4)
|
|
|
|
#define TOO_MANY_LOCAL (-6)
|
|
|
|
#define TOO_MANY_GLOBAL (-7)
|
|
|
|
#define TOO_MANY_IDENT (-8)
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-04-07 14:40:55 +02:00
|
|
|
#define CONF_ILLEGAL 0x80000000
|
|
|
|
#define CONF_CLIENT 0x0002
|
|
|
|
#define CONF_KILL 0x0040
|
2007-01-25 07:40:21 +01:00
|
|
|
#define CONF_XLINE 0x0080
|
|
|
|
#define CONF_RESV_CHANNEL 0x0100
|
|
|
|
#define CONF_RESV_NICK 0x0200
|
|
|
|
#define CONF_RESV (CONF_RESV_CHANNEL | CONF_RESV_NICK)
|
|
|
|
|
2016-04-07 14:40:55 +02:00
|
|
|
#define CONF_DLINE 0x020000
|
|
|
|
#define CONF_EXEMPTDLINE 0x100000
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
#define IsIllegal(x) ((x)->status & CONF_ILLEGAL)
|
|
|
|
|
|
|
|
/* aConfItem->flags */
|
|
|
|
|
|
|
|
/* Generic flags... */
|
2016-04-07 14:40:55 +02:00
|
|
|
#define CONF_FLAGS_TEMPORARY 0x00800000
|
2008-09-07 01:18:58 +02:00
|
|
|
#define CONF_FLAGS_NEED_SSL 0x00000002
|
2016-04-07 14:40:55 +02:00
|
|
|
#define CONF_FLAGS_MYOPER 0x00080000 /* need to rewrite info.oper on burst */
|
2008-07-04 17:05:18 +02:00
|
|
|
/* auth{} flags... */
|
2016-04-07 14:40:55 +02:00
|
|
|
#define CONF_FLAGS_NO_TILDE 0x00000004
|
|
|
|
#define CONF_FLAGS_NEED_IDENTD 0x00000008
|
|
|
|
#define CONF_FLAGS_EXEMPTKLINE 0x00000040
|
|
|
|
#define CONF_FLAGS_NOLIMIT 0x00000080
|
|
|
|
#define CONF_FLAGS_SPOOF_IP 0x00000200
|
2007-01-25 07:40:21 +01:00
|
|
|
#define CONF_FLAGS_SPOOF_NOTICE 0x00000400
|
2016-04-07 14:40:55 +02:00
|
|
|
#define CONF_FLAGS_REDIR 0x00000800
|
2007-01-25 07:40:21 +01:00
|
|
|
#define CONF_FLAGS_EXEMPTRESV 0x00002000 /* exempt from resvs */
|
2016-04-07 14:40:55 +02:00
|
|
|
#define CONF_FLAGS_EXEMPTFLOOD 0x00004000
|
2007-01-25 07:40:21 +01:00
|
|
|
#define CONF_FLAGS_EXEMPTSPAMBOT 0x00008000
|
|
|
|
#define CONF_FLAGS_EXEMPTSHIDE 0x00010000
|
|
|
|
#define CONF_FLAGS_EXEMPTJUPE 0x00020000 /* exempt from resv generating warnings */
|
|
|
|
#define CONF_FLAGS_NEED_SASL 0x00040000
|
2016-01-12 06:32:23 +01:00
|
|
|
#define CONF_FLAGS_EXTEND_CHANS 0x00080000
|
2016-04-07 14:40:55 +02:00
|
|
|
#define CONF_FLAGS_ENCRYPTED 0x00200000
|
2007-01-25 07:40:21 +01:00
|
|
|
#define CONF_FLAGS_EXEMPTDNSBL 0x04000000
|
2016-04-02 09:42:11 +02:00
|
|
|
#define CONF_FLAGS_EXEMPTPROXY 0x08000000
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
|
2016-09-01 17:50:48 +02:00
|
|
|
struct ConfItem
|
|
|
|
{
|
|
|
|
unsigned int status; /* If CONF_ILLEGAL, delete when no clients */
|
|
|
|
unsigned int flags;
|
|
|
|
int clients; /* Number of *LOCAL* clients using this */
|
|
|
|
union
|
|
|
|
{
|
|
|
|
char *name; /* IRC name, nick, server name, or original u@h */
|
|
|
|
const char *oper;
|
|
|
|
} info;
|
|
|
|
char *host; /* host part of user@host */
|
|
|
|
char *passwd; /* doubles as kline reason *ugh* */
|
|
|
|
char *spasswd; /* Password to send. */
|
|
|
|
char *user; /* user part of user@host */
|
|
|
|
int port;
|
|
|
|
time_t hold; /* Hold action until this time (calendar time) */
|
|
|
|
time_t created; /* Creation time (for klines etc) */
|
|
|
|
time_t lifetime; /* Propagated lines: remember until this time */
|
|
|
|
char *className; /* Name of class */
|
|
|
|
struct Class *c_class; /* Class of connection */
|
|
|
|
rb_patricia_node_t *pnode; /* Our patricia node */
|
|
|
|
};
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
/* Macros for struct ConfItem */
|
2010-03-01 01:23:22 +01:00
|
|
|
#define IsConfBan(x) ((x)->status & (CONF_KILL|CONF_XLINE|CONF_DLINE|\
|
|
|
|
CONF_RESV_CHANNEL|CONF_RESV_NICK))
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
#define IsNoTilde(x) ((x)->flags & CONF_FLAGS_NO_TILDE)
|
|
|
|
#define IsNeedIdentd(x) ((x)->flags & CONF_FLAGS_NEED_IDENTD)
|
|
|
|
#define IsConfExemptKline(x) ((x)->flags & CONF_FLAGS_EXEMPTKLINE)
|
|
|
|
#define IsConfExemptLimits(x) ((x)->flags & CONF_FLAGS_NOLIMIT)
|
|
|
|
#define IsConfExemptFlood(x) ((x)->flags & CONF_FLAGS_EXEMPTFLOOD)
|
|
|
|
#define IsConfExemptSpambot(x) ((x)->flags & CONF_FLAGS_EXEMPTSPAMBOT)
|
|
|
|
#define IsConfExemptShide(x) ((x)->flags & CONF_FLAGS_EXEMPTSHIDE)
|
|
|
|
#define IsConfExemptJupe(x) ((x)->flags & CONF_FLAGS_EXEMPTJUPE)
|
|
|
|
#define IsConfExemptResv(x) ((x)->flags & CONF_FLAGS_EXEMPTRESV)
|
|
|
|
#define IsConfDoSpoofIp(x) ((x)->flags & CONF_FLAGS_SPOOF_IP)
|
|
|
|
#define IsConfSpoofNotice(x) ((x)->flags & CONF_FLAGS_SPOOF_NOTICE)
|
|
|
|
#define IsConfEncrypted(x) ((x)->flags & CONF_FLAGS_ENCRYPTED)
|
|
|
|
#define IsNeedSasl(x) ((x)->flags & CONF_FLAGS_NEED_SASL)
|
|
|
|
#define IsConfExemptDNSBL(x) ((x)->flags & CONF_FLAGS_EXEMPTDNSBL)
|
2016-04-02 09:42:11 +02:00
|
|
|
#define IsConfExemptProxy(x) ((x)->flags & CONF_FLAGS_EXEMPTPROXY)
|
2016-01-12 06:32:23 +01:00
|
|
|
#define IsConfExtendChans(x) ((x)->flags & CONF_FLAGS_EXTEND_CHANS)
|
2008-09-07 01:18:58 +02:00
|
|
|
#define IsConfSSLNeeded(x) ((x)->flags & CONF_FLAGS_NEED_SSL)
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
/* flag definitions for opers now in client.h */
|
|
|
|
|
|
|
|
struct config_file_entry
|
|
|
|
{
|
|
|
|
const char *dpath; /* DPATH if set from command line */
|
|
|
|
const char *configfile;
|
|
|
|
|
|
|
|
char *default_operstring;
|
|
|
|
char *default_adminstring;
|
|
|
|
char *servicestring;
|
|
|
|
char *kline_reason;
|
|
|
|
|
|
|
|
char *identifyservice;
|
|
|
|
char *identifycommand;
|
2014-03-03 05:25:47 +01:00
|
|
|
|
2015-02-14 10:41:10 +01:00
|
|
|
char *sasl_service;
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
unsigned char compression_level;
|
|
|
|
int disable_fake_channels;
|
|
|
|
int dots_in_ident;
|
|
|
|
int failed_oper_notice;
|
|
|
|
int anti_nick_flood;
|
|
|
|
int anti_spam_exit_message_time;
|
|
|
|
int max_accept;
|
|
|
|
int max_monitor;
|
|
|
|
int max_nick_time;
|
|
|
|
int max_nick_changes;
|
|
|
|
int ts_max_delta;
|
|
|
|
int ts_warn_delta;
|
|
|
|
int dline_with_reason;
|
|
|
|
int kline_with_reason;
|
|
|
|
int kline_delay;
|
|
|
|
int warn_no_nline;
|
|
|
|
int nick_delay;
|
|
|
|
int non_redundant_klines;
|
|
|
|
int stats_e_disabled;
|
|
|
|
int stats_c_oper_only;
|
|
|
|
int stats_y_oper_only;
|
|
|
|
int stats_h_oper_only;
|
|
|
|
int stats_o_oper_only;
|
|
|
|
int stats_k_oper_only;
|
|
|
|
int stats_i_oper_only;
|
|
|
|
int stats_P_oper_only;
|
|
|
|
int map_oper_only;
|
|
|
|
int operspy_admin_only;
|
|
|
|
int pace_wait;
|
|
|
|
int pace_wait_simple;
|
|
|
|
int short_motd;
|
|
|
|
int no_oper_flood;
|
|
|
|
int hide_server;
|
|
|
|
int hide_spoof_ips;
|
|
|
|
int hide_error_messages;
|
|
|
|
int client_exit;
|
|
|
|
int oper_only_umodes;
|
|
|
|
int oper_umodes;
|
|
|
|
int oper_snomask;
|
|
|
|
int max_targets;
|
|
|
|
int caller_id_wait;
|
|
|
|
int min_nonwildcard;
|
|
|
|
int min_nonwildcard_simple;
|
|
|
|
int default_floodcount;
|
2010-04-05 22:29:11 +02:00
|
|
|
int default_ident_timeout;
|
2007-01-25 07:40:21 +01:00
|
|
|
int ping_cookie;
|
|
|
|
int tkline_expire_notices;
|
|
|
|
int use_whois_actually;
|
|
|
|
int disable_auth;
|
|
|
|
int connect_timeout;
|
|
|
|
int burst_away;
|
|
|
|
int reject_ban_time;
|
|
|
|
int reject_after_count;
|
|
|
|
int reject_duration;
|
2008-08-01 01:59:08 +02:00
|
|
|
int throttle_count;
|
|
|
|
int throttle_duration;
|
2007-01-25 07:40:21 +01:00
|
|
|
int target_change;
|
|
|
|
int collision_fnc;
|
2012-03-25 03:34:45 +02:00
|
|
|
int resv_fnc;
|
2007-01-25 07:40:21 +01:00
|
|
|
int default_umodes;
|
|
|
|
int global_snotices;
|
|
|
|
int operspy_dont_care_user_info;
|
2010-03-14 17:21:20 +01:00
|
|
|
int use_propagated_bans;
|
2012-02-18 04:54:44 +01:00
|
|
|
int max_ratelimit_tokens;
|
2012-02-18 16:32:57 +01:00
|
|
|
int away_interval;
|
2011-03-27 22:35:26 +02:00
|
|
|
|
|
|
|
int client_flood_max_lines;
|
|
|
|
int client_flood_burst_rate;
|
|
|
|
int client_flood_burst_max;
|
|
|
|
int client_flood_message_time;
|
|
|
|
int client_flood_message_num;
|
|
|
|
|
2011-11-29 23:10:21 +01:00
|
|
|
unsigned int nicklen;
|
2015-12-07 08:49:30 +01:00
|
|
|
int certfp_method;
|
2016-01-15 20:38:40 +01:00
|
|
|
|
|
|
|
int hide_opers_in_whois;
|
2007-01-25 07:40:21 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct config_channel_entry
|
|
|
|
{
|
|
|
|
int use_except;
|
|
|
|
int use_invex;
|
2011-09-25 16:22:29 +02:00
|
|
|
int use_forward;
|
2007-01-25 07:40:21 +01:00
|
|
|
int use_knock;
|
|
|
|
int knock_delay;
|
|
|
|
int knock_delay_channel;
|
|
|
|
int max_bans;
|
|
|
|
int max_bans_large;
|
|
|
|
int max_chans_per_user;
|
2016-01-12 06:32:23 +01:00
|
|
|
int max_chans_per_user_large;
|
2007-01-25 07:40:21 +01:00
|
|
|
int no_create_on_split;
|
|
|
|
int no_join_on_split;
|
|
|
|
int default_split_server_count;
|
|
|
|
int default_split_user_count;
|
|
|
|
int burst_topicwho;
|
|
|
|
int kick_on_split_riding;
|
2009-02-22 00:12:21 +01:00
|
|
|
int only_ascii_channels;
|
2009-09-19 21:24:35 +02:00
|
|
|
int resv_forcepart;
|
2010-08-29 01:26:00 +02:00
|
|
|
int channel_target_change;
|
2010-12-21 21:38:04 +01:00
|
|
|
int disable_local_channels;
|
2015-12-11 22:36:53 +01:00
|
|
|
unsigned int autochanmodes;
|
2015-12-27 05:23:28 +01:00
|
|
|
int displayed_usercount;
|
2016-01-14 00:03:40 +01:00
|
|
|
int strip_topic_colors;
|
2007-01-25 07:40:21 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct config_server_hide
|
|
|
|
{
|
|
|
|
int flatten_links;
|
|
|
|
int links_delay;
|
|
|
|
int hidden;
|
|
|
|
int disable_hidden;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct admin_info
|
|
|
|
{
|
|
|
|
char *name;
|
|
|
|
char *description;
|
|
|
|
char *email;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct alias_entry
|
|
|
|
{
|
2016-07-31 08:57:04 +02:00
|
|
|
std::string name;
|
|
|
|
std::string target;
|
2007-01-25 07:40:21 +01:00
|
|
|
int flags; /* reserved for later use */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* All variables are GLOBAL */
|
|
|
|
extern struct config_file_entry ConfigFileEntry; /* defined in ircd.c */
|
|
|
|
extern struct config_channel_entry ConfigChannel; /* defined in channel.c */
|
|
|
|
extern struct config_server_hide ConfigServerHide; /* defined in s_conf.c */
|
|
|
|
extern struct server_info ServerInfo; /* defined in ircd.c */
|
|
|
|
extern struct admin_info AdminInfo; /* defined in ircd.c */
|
|
|
|
/* End GLOBAL section */
|
|
|
|
|
2008-04-20 15:20:10 +02:00
|
|
|
extern rb_dlink_list service_list;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2010-03-04 00:21:22 +01:00
|
|
|
extern rb_dlink_list prop_bans;
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
typedef enum temp_list
|
|
|
|
{
|
|
|
|
TEMP_MIN,
|
|
|
|
TEMP_HOUR,
|
|
|
|
TEMP_DAY,
|
|
|
|
TEMP_WEEK,
|
|
|
|
LAST_TEMP_TYPE
|
|
|
|
} temp_list;
|
|
|
|
|
2008-04-20 15:20:10 +02:00
|
|
|
extern rb_dlink_list temp_klines[LAST_TEMP_TYPE];
|
|
|
|
extern rb_dlink_list temp_dlines[LAST_TEMP_TYPE];
|
2016-09-01 17:50:48 +02:00
|
|
|
extern unsigned long cidr_to_bitmask[];
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-09-01 17:50:48 +02:00
|
|
|
void init_s_conf(void);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-09-01 17:50:48 +02:00
|
|
|
struct ConfItem *make_conf(void);
|
|
|
|
void free_conf(struct ConfItem *);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-09-01 17:50:48 +02:00
|
|
|
rb_dlink_node *find_prop_ban(unsigned int status, const char *user, const char *host);
|
|
|
|
void deactivate_conf(struct ConfItem *, rb_dlink_node *, time_t);
|
|
|
|
void replace_old_ban(struct ConfItem *);
|
2010-03-04 00:21:22 +01:00
|
|
|
|
2016-09-01 17:50:48 +02:00
|
|
|
void read_conf_files(bool cold);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-09-11 08:05:38 +02:00
|
|
|
int attach_conf(client *, struct ConfItem *);
|
|
|
|
int check_client(client *client_p, client *source_p, const char *);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-09-11 08:05:38 +02:00
|
|
|
int detach_conf(client *);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-09-01 17:50:48 +02:00
|
|
|
struct ConfItem *find_tkline(const char *, const char *, struct sockaddr *);
|
2016-09-11 08:05:38 +02:00
|
|
|
char *show_iline_prefix(client *, struct ConfItem *, char *);
|
2016-09-01 17:50:48 +02:00
|
|
|
void get_printable_conf(struct ConfItem *,
|
2015-04-20 07:55:20 +02:00
|
|
|
char **, char **, const char **, char **, int *, char **);
|
2016-09-01 17:50:48 +02:00
|
|
|
char *get_user_ban_reason(struct ConfItem *aconf);
|
2016-09-11 08:05:38 +02:00
|
|
|
void get_printable_kline(client *, struct ConfItem *,
|
2008-04-02 17:37:50 +02:00
|
|
|
char **, char **, char **, char **);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-07-25 01:11:34 +02:00
|
|
|
int conf_yy_fatal_error(const char *);
|
|
|
|
int conf_fgets(char *, int, FILE *);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-09-01 17:50:48 +02:00
|
|
|
int valid_wild_card(const char *, const char *);
|
|
|
|
void add_temp_kline(struct ConfItem *);
|
|
|
|
void add_temp_dline(struct ConfItem *);
|
2016-09-11 08:05:38 +02:00
|
|
|
void report_temp_klines(client *);
|
|
|
|
void show_temp_klines(client *, rb_dlink_list *);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-09-01 17:50:48 +02:00
|
|
|
bool rehash(bool);
|
|
|
|
void rehash_bans(void);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-09-01 17:50:48 +02:00
|
|
|
int conf_add_server(struct ConfItem *, int);
|
|
|
|
void conf_add_class_to_conf(struct ConfItem *);
|
|
|
|
void conf_add_me(struct ConfItem *);
|
|
|
|
void conf_add_class(struct ConfItem *, int);
|
|
|
|
void conf_add_d_conf(struct ConfItem *);
|
|
|
|
void flush_expired_ips(void *);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-09-11 08:05:38 +02:00
|
|
|
char *get_oper_name(client *client_p);
|
2016-08-13 05:05:54 +02:00
|
|
|
|
2016-09-01 17:50:48 +02:00
|
|
|
} // namespace conf
|
2016-08-13 05:05:54 +02:00
|
|
|
} // namespace ircd
|
|
|
|
#endif // __cplusplus
|