/usr/include/ircd-hybrid-8/conf.h is in hybrid-dev 1:8.2.12+dfsg.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
* ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
*
* Copyright (c) 1997-2016 ircd-hybrid development team
*
* This program 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; either version 2 of the License, or
* (at your option) any later version.
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
* USA
*/
/*! \file conf.h
* \brief A header for the configuration functions.
* \version $Id: conf.h 7007 2016-01-01 00:09:08Z michael $
*/
#ifndef INCLUDED_conf_h
#define INCLUDED_conf_h
#include "config.h"
#include "client.h"
#include "conf_class.h"
#define CONF_NOREASON "<No reason supplied>"
/* MaskItem->flags */
enum
{
CONF_FLAGS_NO_TILDE = 0x00000001U,
CONF_FLAGS_NEED_IDENTD = 0x00000002U,
CONF_FLAGS_EXEMPTKLINE = 0x00000004U,
CONF_FLAGS_NOLIMIT = 0x00000008U,
CONF_FLAGS_SPOOF_IP = 0x00000010U,
CONF_FLAGS_SPOOF_NOTICE = 0x00000020U,
CONF_FLAGS_REDIR = 0x00000040U,
CONF_FLAGS_CAN_FLOOD = 0x00000080U,
CONF_FLAGS_NEED_PASSWORD = 0x00000100U,
CONF_FLAGS_ALLOW_AUTO_CONN = 0x00000200U,
CONF_FLAGS_ENCRYPTED = 0x00000400U,
CONF_FLAGS_IN_DATABASE = 0x00000800U,
CONF_FLAGS_EXEMPTRESV = 0x00001000U,
CONF_FLAGS_SSL = 0x00002000U,
CONF_FLAGS_WEBIRC = 0x00004000U,
CONF_FLAGS_EXEMPTXLINE = 0x00008000U
};
/* Macros for struct MaskItem */
#define IsConfWebIRC(x) ((x)->flags & CONF_FLAGS_WEBIRC)
#define IsNoTilde(x) ((x)->flags & CONF_FLAGS_NO_TILDE)
#define IsConfCanFlood(x) ((x)->flags & CONF_FLAGS_CAN_FLOOD)
#define IsNeedPassword(x) ((x)->flags & CONF_FLAGS_NEED_PASSWORD)
#define IsNeedIdentd(x) ((x)->flags & CONF_FLAGS_NEED_IDENTD)
#define IsConfExemptKline(x) ((x)->flags & CONF_FLAGS_EXEMPTKLINE)
#define IsConfExemptXline(x) ((x)->flags & CONF_FLAGS_EXEMPTXLINE)
#define IsConfExemptLimits(x) ((x)->flags & CONF_FLAGS_NOLIMIT)
#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 IsConfAllowAutoConn(x) ((x)->flags & CONF_FLAGS_ALLOW_AUTO_CONN)
#define SetConfAllowAutoConn(x) ((x)->flags |= CONF_FLAGS_ALLOW_AUTO_CONN)
#define ClearConfAllowAutoConn(x) ((x)->flags &= ~CONF_FLAGS_ALLOW_AUTO_CONN)
#define IsConfRedir(x) ((x)->flags & CONF_FLAGS_REDIR)
#define IsConfSSL(x) ((x)->flags & CONF_FLAGS_SSL)
#define IsConfDatabase(x) ((x)->flags & CONF_FLAGS_IN_DATABASE)
#define SetConfDatabase(x) ((x)->flags |= CONF_FLAGS_IN_DATABASE)
/* shared/cluster server entry types
* These defines are used for both shared and cluster.
*/
enum
{
SHARED_KLINE = 0x00000001U,
SHARED_UNKLINE = 0x00000002U,
SHARED_XLINE = 0x00000004U,
SHARED_UNXLINE = 0x00000008U,
SHARED_RESV = 0x00000010U,
SHARED_UNRESV = 0x00000020U,
SHARED_LOCOPS = 0x00000040U,
SHARED_DLINE = 0x00000080U,
SHARED_UNDLINE = 0x00000100U,
SHARED_ALL = 0xFFFFFFFFU
};
enum maskitem_type
{
CONF_CLIENT = 1 << 0,
CONF_SERVER = 1 << 1,
CONF_KLINE = 1 << 2,
CONF_DLINE = 1 << 3,
CONF_EXEMPT = 1 << 4,
CONF_CLUSTER = 1 << 5,
CONF_XLINE = 1 << 6,
CONF_SHARED = 1 << 7,
CONF_CRESV = 1 << 8,
CONF_NRESV = 1 << 9,
CONF_SERVICE = 1 << 10,
CONF_OPER = 1 << 11
};
#define IsConfKill(x) ((x)->type == CONF_KLINE)
#define IsConfClient(x) ((x)->type == CONF_CLIENT)
enum
{
NOT_AUTHORIZED = -1,
I_LINE_FULL = -2,
TOO_MANY = -3,
BANNED_CLIENT = -4,
TOO_FAST = -5
};
struct split_nuh_item
{
dlink_node node;
char *nuhmask;
char *nickptr;
char *userptr;
char *hostptr;
size_t nicksize;
size_t usersize;
size_t hostsize;
};
struct MaskItem
{
dlink_node node;
dlink_list leaf_list;
dlink_list hub_list;
dlink_list exempt_list;
enum maskitem_type type;
unsigned int dns_failed;
unsigned int dns_pending;
unsigned int flags;
unsigned int modes;
unsigned int port;
unsigned int count;
unsigned int aftype;
unsigned int active;
unsigned int htype;
unsigned int ref_count; /* Number of *LOCAL* clients using this */
int bits;
time_t until; /* Hold action until this time (calendar time) */
time_t setat;
struct irc_ssaddr bind; /* ip to bind to for outgoing connect */
struct irc_ssaddr addr; /* ip to connect to */
struct ClassItem *class; /* Class of connection */
char *name;
char *user; /* user part of user@host */
char *host; /* host part of user@host */
char *passwd;
char *spasswd; /* Password to send. */
char *reason;
char *certfp;
char *whois;
char *cipher_list;
void *rsa_public_key;
};
struct exempt
{
dlink_node node;
char *name;
char *user;
char *host;
size_t len;
time_t when;
struct irc_ssaddr addr;
int bits;
int type;
int country_id;
};
struct CidrItem
{
dlink_node node;
struct irc_ssaddr mask;
unsigned int number_on_this_cidr;
};
struct conf_parser_context
{
unsigned int boot;
unsigned int pass;
FILE *conf_file;
};
struct config_general_entry
{
const char *dpath;
const char *mpath;
const char *spath;
const char *configfile;
const char *klinefile;
const char *xlinefile;
const char *dlinefile;
const char *resvfile;
unsigned int dline_min_cidr;
unsigned int dline_min_cidr6;
unsigned int kline_min_cidr;
unsigned int kline_min_cidr6;
unsigned int dots_in_ident;
unsigned int failed_oper_notice;
unsigned int anti_spam_exit_message_time;
unsigned int max_accept;
unsigned int max_watch;
unsigned int away_time;
unsigned int away_count;
unsigned int max_nick_time;
unsigned int max_nick_changes;
unsigned int ts_max_delta;
unsigned int ts_warn_delta;
unsigned int anti_nick_flood;
unsigned int warn_no_connect_block;
unsigned int invisible_on_connect;
unsigned int stats_e_disabled;
unsigned int stats_i_oper_only;
unsigned int stats_k_oper_only;
unsigned int stats_m_oper_only;
unsigned int stats_o_oper_only;
unsigned int stats_P_oper_only;
unsigned int stats_u_oper_only;
unsigned int short_motd;
unsigned int no_oper_flood;
unsigned int tkline_expire_notices;
unsigned int opers_bypass_callerid;
unsigned int ignore_bogus_ts;
unsigned int pace_wait;
unsigned int pace_wait_simple;
unsigned int oper_only_umodes;
unsigned int oper_umodes;
unsigned int max_targets;
unsigned int caller_id_wait;
unsigned int min_nonwildcard;
unsigned int min_nonwildcard_simple;
unsigned int kill_chase_time_limit;
unsigned int default_floodcount;
unsigned int throttle_count;
unsigned int throttle_time;
unsigned int ping_cookie;
unsigned int disable_auth;
unsigned int cycle_on_host_change;
};
struct config_channel_entry
{
unsigned int disable_fake_channels;
unsigned int invite_client_count;
unsigned int invite_client_time;
unsigned int invite_delay_channel;
unsigned int knock_client_count;
unsigned int knock_client_time;
unsigned int knock_delay_channel;
unsigned int max_bans;
unsigned int max_channels;
unsigned int default_join_flood_count;
unsigned int default_join_flood_time;
};
struct config_serverhide_entry
{
char *hidden_name;
char *flatten_links_file;
unsigned int flatten_links;
unsigned int flatten_links_delay;
unsigned int disable_remote_commands;
unsigned int hide_servers;
unsigned int hide_services;
unsigned int hidden;
unsigned int hide_server_ips;
};
struct config_serverinfo_entry
{
#ifdef HAVE_LIBCRYPTO
const EVP_MD *message_digest_algorithm;
#endif
char *sid;
char *name;
char *description;
char *network_name;
char *network_desc;
char *rsa_private_key_file;
void *rsa_private_key;
void *server_ctx;
void *client_ctx;
unsigned int hub;
unsigned int default_max_clients;
unsigned int max_nick_length;
unsigned int max_topic_length;
unsigned int specific_ipv4_vhost;
unsigned int specific_ipv6_vhost;
struct irc_ssaddr ip;
struct irc_ssaddr ip6;
};
struct config_admin_entry
{
char *name;
char *description;
char *email;
};
struct config_log_entry
{
unsigned int use_logging;
};
extern dlink_list flatten_links;
extern dlink_list server_items;
extern dlink_list cluster_items;
extern dlink_list gecos_items;
extern dlink_list shared_items;
extern dlink_list operator_items;
extern dlink_list service_items;
extern dlink_list nresv_items;
extern dlink_list cresv_items;
extern struct conf_parser_context conf_parser_ctx;
extern struct config_log_entry ConfigLog;
extern struct config_general_entry ConfigGeneral;
extern struct config_channel_entry ConfigChannel;
extern struct config_serverhide_entry ConfigServerHide;
extern struct config_serverinfo_entry ConfigServerInfo;
extern struct config_admin_entry ConfigAdminInfo;
extern int valid_wild_card_simple(const char *);
extern int valid_wild_card(struct Client *, int, ...);
/* End GLOBAL section */
extern struct MaskItem *conf_make(enum maskitem_type);
extern void read_conf_files(int);
extern int attach_conf(struct Client *, struct MaskItem *);
extern int attach_connect_block(struct Client *, const char *, const char *);
extern int check_client(struct Client *);
extern void detach_conf(struct Client *, enum maskitem_type);
extern struct MaskItem *find_conf_name(dlink_list *, const char *, enum maskitem_type);
extern int conf_connect_allowed(struct irc_ssaddr *, int);
extern const char *oper_privs_as_string(const unsigned int);
extern void split_nuh(struct split_nuh_item *);
extern struct MaskItem *find_matching_name_conf(enum maskitem_type, const char *,
const char *, const char *, unsigned int);
extern struct MaskItem *find_exact_name_conf(enum maskitem_type, const struct Client *, const char *,
const char *, const char *);
extern void conf_free(struct MaskItem *);
extern void yyerror(const char *);
extern void conf_error_report(const char *);
extern void cleanup_tklines(void *);
extern void conf_rehash(int);
extern void lookup_confhost(struct MaskItem *);
extern void conf_add_class_to_conf(struct MaskItem *, const char *);
extern const char *get_oper_name(const struct Client *);
/* XXX should the parse_aline stuff go into another file ?? */
#define AWILD 0x1 /* check wild cards */
extern int parse_aline(const char *, struct Client *, int, char **,
int, char **, char **, time_t *, char **, char **);
#define TK_SECONDS 0
#define TK_MINUTES 1
extern time_t valid_tkline(const char *, const int);
extern int match_conf_password(const char *, const struct MaskItem *);
enum { CLEANUP_TKLINES_TIME = 60 };
extern void cluster_a_line(struct Client *, const char *, unsigned int, unsigned int, const char *,...);
#endif /* INCLUDED_s_conf_h */
|