| 1 |
adx |
30 |
/* |
| 2 |
|
|
* ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd). |
| 3 |
michael |
1309 |
* conf.h: A header for the configuration functions. |
| 4 |
adx |
30 |
* |
| 5 |
|
|
* Copyright (C) 2005 by the past and present ircd coders, and others. |
| 6 |
|
|
* |
| 7 |
|
|
* This program is free software; you can redistribute it and/or modify |
| 8 |
|
|
* it under the terms of the GNU General Public License as published by |
| 9 |
|
|
* the Free Software Foundation; either version 2 of the License, or |
| 10 |
|
|
* (at your option) any later version. |
| 11 |
|
|
* |
| 12 |
|
|
* This program is distributed in the hope that it will be useful, |
| 13 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 |
|
|
* GNU General Public License for more details. |
| 16 |
|
|
* |
| 17 |
|
|
* You should have received a copy of the GNU General Public License |
| 18 |
|
|
* along with this program; if not, write to the Free Software |
| 19 |
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 |
| 20 |
|
|
* USA |
| 21 |
|
|
* |
| 22 |
knight |
31 |
* $Id$ |
| 23 |
adx |
30 |
*/ |
| 24 |
|
|
|
| 25 |
|
|
#ifndef INCLUDED_s_conf_h |
| 26 |
|
|
#define INCLUDED_s_conf_h |
| 27 |
michael |
912 |
#include "config.h" |
| 28 |
adx |
30 |
#ifdef HAVE_LIBCRYPTO |
| 29 |
|
|
#include <openssl/rsa.h> |
| 30 |
|
|
#endif |
| 31 |
|
|
#include "ircd_defs.h" |
| 32 |
|
|
#include "motd.h" /* MessageFile */ |
| 33 |
|
|
#include "client.h" |
| 34 |
|
|
#include "hook.h" |
| 35 |
|
|
|
| 36 |
michael |
967 |
|
| 37 |
adx |
30 |
struct Client; |
| 38 |
|
|
|
| 39 |
|
|
extern struct Callback *client_check_cb; |
| 40 |
|
|
|
| 41 |
michael |
967 |
struct conf_parser_context |
| 42 |
|
|
{ |
| 43 |
|
|
unsigned int boot; |
| 44 |
|
|
unsigned int pass; |
| 45 |
michael |
1325 |
FILE *conf_file; |
| 46 |
michael |
967 |
}; |
| 47 |
|
|
|
| 48 |
|
|
extern struct conf_parser_context conf_parser_ctx; |
| 49 |
|
|
|
| 50 |
michael |
56 |
typedef enum |
| 51 |
|
|
{ |
| 52 |
adx |
30 |
CONF_TYPE, |
| 53 |
|
|
CLASS_TYPE, |
| 54 |
|
|
OPER_TYPE, |
| 55 |
|
|
CLIENT_TYPE, |
| 56 |
|
|
SERVER_TYPE, |
| 57 |
|
|
HUB_TYPE, |
| 58 |
|
|
LEAF_TYPE, |
| 59 |
|
|
KLINE_TYPE, |
| 60 |
|
|
DLINE_TYPE, |
| 61 |
|
|
EXEMPTDLINE_TYPE, |
| 62 |
|
|
CLUSTER_TYPE, |
| 63 |
|
|
RKLINE_TYPE, |
| 64 |
|
|
RXLINE_TYPE, |
| 65 |
|
|
XLINE_TYPE, |
| 66 |
|
|
ULINE_TYPE, |
| 67 |
|
|
GLINE_TYPE, |
| 68 |
|
|
CRESV_TYPE, |
| 69 |
|
|
NRESV_TYPE, |
| 70 |
michael |
1157 |
SERVICE_TYPE |
| 71 |
adx |
30 |
} ConfType; |
| 72 |
|
|
|
| 73 |
michael |
593 |
struct split_nuh_item |
| 74 |
|
|
{ |
| 75 |
|
|
dlink_node node; |
| 76 |
|
|
|
| 77 |
|
|
char *nuhmask; |
| 78 |
|
|
char *nickptr; |
| 79 |
|
|
char *userptr; |
| 80 |
|
|
char *hostptr; |
| 81 |
|
|
|
| 82 |
|
|
size_t nicksize; |
| 83 |
|
|
size_t usersize; |
| 84 |
|
|
size_t hostsize; |
| 85 |
|
|
}; |
| 86 |
|
|
|
| 87 |
adx |
30 |
struct ConfItem |
| 88 |
|
|
{ |
| 89 |
michael |
1009 |
dlink_node node; /* link into known ConfItems of this type */ |
| 90 |
|
|
|
| 91 |
adx |
30 |
char *name; /* Primary key */ |
| 92 |
michael |
1009 |
void *regexpname; |
| 93 |
adx |
30 |
unsigned int flags; |
| 94 |
|
|
ConfType type; |
| 95 |
|
|
}; |
| 96 |
|
|
|
| 97 |
|
|
/* |
| 98 |
|
|
* MatchItem - used for XLINE and ULINE types |
| 99 |
|
|
*/ |
| 100 |
|
|
struct MatchItem |
| 101 |
|
|
{ |
| 102 |
|
|
char *user; /* Used for ULINE only */ |
| 103 |
|
|
char *host; /* Used for ULINE only */ |
| 104 |
|
|
char *reason; |
| 105 |
|
|
char *oper_reason; |
| 106 |
|
|
int action; /* used for uline */ |
| 107 |
|
|
int count; /* How many times this matchitem has been matched */ |
| 108 |
|
|
int ref_count; /* How many times is this matchitem in use */ |
| 109 |
|
|
int illegal; /* Should it be deleted when possible? */ |
| 110 |
|
|
time_t hold; /* Hold action until this time (calendar time) */ |
| 111 |
|
|
}; |
| 112 |
|
|
|
| 113 |
|
|
struct AccessItem |
| 114 |
|
|
{ |
| 115 |
|
|
dlink_node node; |
| 116 |
michael |
992 |
unsigned int dns_failed; |
| 117 |
|
|
unsigned int dns_pending; |
| 118 |
adx |
30 |
unsigned int status; /* If CONF_ILLEGAL, delete when no clients */ |
| 119 |
|
|
unsigned int flags; |
| 120 |
michael |
56 |
unsigned int modes; |
| 121 |
michael |
1013 |
unsigned int port; |
| 122 |
adx |
30 |
int clients; /* Number of *LOCAL* clients using this */ |
| 123 |
michael |
1285 |
int bits; |
| 124 |
|
|
int type; |
| 125 |
michael |
1389 |
struct irc_ssaddr bind; /* ip to bind to for outgoing connect */ |
| 126 |
|
|
struct irc_ssaddr addr; /* ip to connect to */ |
| 127 |
adx |
30 |
char * host; /* host part of user@host */ |
| 128 |
|
|
char * passwd; |
| 129 |
|
|
char * spasswd; /* Password to send. */ |
| 130 |
|
|
char * reason; |
| 131 |
|
|
char * oper_reason; |
| 132 |
|
|
char * user; /* user part of user@host */ |
| 133 |
|
|
time_t hold; /* Hold action until this time (calendar time) */ |
| 134 |
|
|
struct ConfItem *class_ptr; /* Class of connection */ |
| 135 |
|
|
int aftype; |
| 136 |
|
|
#ifdef HAVE_LIBCRYPTO |
| 137 |
michael |
1302 |
/* certs */ |
| 138 |
michael |
1306 |
char *cipher_list; |
| 139 |
adx |
30 |
char * rsa_public_key_file; |
| 140 |
|
|
RSA * rsa_public_key; |
| 141 |
|
|
#endif |
| 142 |
michael |
1009 |
void *regexuser; |
| 143 |
|
|
void *regexhost; |
| 144 |
michael |
1383 |
dlink_list leaf_list; |
| 145 |
|
|
dlink_list hub_list; |
| 146 |
adx |
30 |
}; |
| 147 |
|
|
|
| 148 |
|
|
struct ClassItem |
| 149 |
|
|
{ |
| 150 |
michael |
1013 |
dlink_list list_ipv4; /* base of per cidr ipv4 client link list */ |
| 151 |
|
|
dlink_list list_ipv6; /* base of per cidr ipv6 client link list */ |
| 152 |
michael |
950 |
unsigned int max_sendq; |
| 153 |
michael |
1516 |
unsigned int max_recvq; |
| 154 |
adx |
30 |
int con_freq; |
| 155 |
|
|
int ping_freq; |
| 156 |
|
|
int ping_warning; |
| 157 |
|
|
int max_total; |
| 158 |
|
|
int max_local; |
| 159 |
|
|
int max_global; |
| 160 |
|
|
int max_ident; |
| 161 |
|
|
int max_perip; |
| 162 |
|
|
int curr_user_count; |
| 163 |
|
|
int cidr_bitlen_ipv4; |
| 164 |
|
|
int cidr_bitlen_ipv6; |
| 165 |
|
|
int number_per_cidr; |
| 166 |
michael |
671 |
int active; |
| 167 |
adx |
30 |
}; |
| 168 |
|
|
|
| 169 |
|
|
struct CidrItem |
| 170 |
|
|
{ |
| 171 |
michael |
1013 |
dlink_node node; |
| 172 |
adx |
30 |
struct irc_ssaddr mask; |
| 173 |
|
|
int number_on_this_cidr; |
| 174 |
|
|
}; |
| 175 |
|
|
|
| 176 |
|
|
|
| 177 |
|
|
#define CONF_ILLEGAL 0x80000000 |
| 178 |
|
|
#define CONF_RESERVED 0x00000001 |
| 179 |
|
|
#define CONF_CLIENT 0x00000002 |
| 180 |
|
|
#define CONF_SERVER 0x00000004 |
| 181 |
|
|
#define CONF_OPERATOR 0x00000008 |
| 182 |
michael |
1369 |
#define CONF_KLINE 0x00000010 |
| 183 |
adx |
30 |
#define CONF_CLASS 0x00000020 |
| 184 |
michael |
1393 |
#define CONF_DLINE 0x00000040 |
| 185 |
|
|
#define CONF_XLINE 0x00000080 |
| 186 |
|
|
#define CONF_ULINE 0x00000100 |
| 187 |
|
|
#define CONF_EXEMPTDLINE 0x00000200 |
| 188 |
|
|
#define CONF_GLINE 0x00000400 |
| 189 |
|
|
#define CONF_SERVICE 0x00000800 |
| 190 |
adx |
30 |
|
| 191 |
|
|
#define CONF_SERVER_MASK CONF_SERVER |
| 192 |
|
|
#define CONF_CLIENT_MASK (CONF_CLIENT | CONF_OPERATOR | CONF_SERVER_MASK) |
| 193 |
|
|
|
| 194 |
|
|
/* XXX temporary hack */ |
| 195 |
|
|
#define CONF_CRESV 0x80000001 |
| 196 |
|
|
#define CONF_NRESV 0x80000002 |
| 197 |
|
|
|
| 198 |
|
|
#define IsConfIllegal(x) ((x)->status & CONF_ILLEGAL) |
| 199 |
|
|
#define SetConfIllegal(x) ((x)->status |= CONF_ILLEGAL) |
| 200 |
|
|
#define IsConfServer(x) ((x)->status == CONF_SERVER) |
| 201 |
|
|
#define SetConfServer(x) ((x)->status = CONF_SERVER) |
| 202 |
|
|
#define IsConfOperator(x) ((x)->status & CONF_OPERATOR) |
| 203 |
michael |
1369 |
#define IsConfKill(x) ((x)->status == CONF_KLINE) |
| 204 |
adx |
30 |
#define IsConfClient(x) ((x)->status & CONF_CLIENT) |
| 205 |
|
|
#define IsConfUline(x) ((x)->status & CONF_ULINE) |
| 206 |
|
|
#define IsConfXline(x) ((x)->status & CONF_XLINE) |
| 207 |
|
|
#define IsConfGline(x) ((x)->status == CONF_GLINE) |
| 208 |
|
|
|
| 209 |
|
|
/* AccessItem->flags */ |
| 210 |
|
|
|
| 211 |
|
|
/* Generic flags... */ |
| 212 |
|
|
/* access flags... */ |
| 213 |
|
|
#define CONF_FLAGS_DO_IDENTD 0x00000001 |
| 214 |
|
|
#define CONF_FLAGS_LIMIT_IP 0x00000002 |
| 215 |
|
|
#define CONF_FLAGS_NO_TILDE 0x00000004 |
| 216 |
|
|
#define CONF_FLAGS_NEED_IDENTD 0x00000008 |
| 217 |
michael |
1335 |
#define CONF_FLAGS_NOMATCH_IP 0x00000010 |
| 218 |
|
|
#define CONF_FLAGS_EXEMPTKLINE 0x00000020 |
| 219 |
|
|
#define CONF_FLAGS_NOLIMIT 0x00000040 |
| 220 |
|
|
#define CONF_FLAGS_SPOOF_IP 0x00000080 |
| 221 |
|
|
#define CONF_FLAGS_SPOOF_NOTICE 0x00000100 |
| 222 |
|
|
#define CONF_FLAGS_REDIR 0x00000200 |
| 223 |
|
|
#define CONF_FLAGS_EXEMPTGLINE 0x00000400 |
| 224 |
|
|
#define CONF_FLAGS_CAN_FLOOD 0x00000800 |
| 225 |
|
|
#define CONF_FLAGS_NEED_PASSWORD 0x00001000 |
| 226 |
adx |
30 |
/* server flags */ |
| 227 |
michael |
1335 |
#define CONF_FLAGS_ALLOW_AUTO_CONN 0x00002000 |
| 228 |
|
|
#define CONF_FLAGS_ENCRYPTED 0x00004000 |
| 229 |
|
|
#define CONF_FLAGS_TEMPORARY 0x00008000 |
| 230 |
michael |
1519 |
#define CONF_FLAGS_EXEMPTRESV 0x00010000 |
| 231 |
|
|
#define CONF_FLAGS_SSL 0x00020000 |
| 232 |
adx |
30 |
|
| 233 |
|
|
/* Macros for struct AccessItem */ |
| 234 |
|
|
#define IsLimitIp(x) ((x)->flags & CONF_FLAGS_LIMIT_IP) |
| 235 |
|
|
#define IsNoTilde(x) ((x)->flags & CONF_FLAGS_NO_TILDE) |
| 236 |
|
|
#define IsConfCanFlood(x) ((x)->flags & CONF_FLAGS_CAN_FLOOD) |
| 237 |
|
|
#define IsNeedPassword(x) ((x)->flags & CONF_FLAGS_NEED_PASSWORD) |
| 238 |
|
|
#define IsNeedIdentd(x) ((x)->flags & CONF_FLAGS_NEED_IDENTD) |
| 239 |
|
|
#define IsNoMatchIp(x) ((x)->flags & CONF_FLAGS_NOMATCH_IP) |
| 240 |
|
|
#define IsConfExemptKline(x) ((x)->flags & CONF_FLAGS_EXEMPTKLINE) |
| 241 |
|
|
#define IsConfExemptLimits(x) ((x)->flags & CONF_FLAGS_NOLIMIT) |
| 242 |
|
|
#define IsConfExemptGline(x) ((x)->flags & CONF_FLAGS_EXEMPTGLINE) |
| 243 |
|
|
#define IsConfExemptResv(x) ((x)->flags & CONF_FLAGS_EXEMPTRESV) |
| 244 |
|
|
#define IsConfDoIdentd(x) ((x)->flags & CONF_FLAGS_DO_IDENTD) |
| 245 |
|
|
#define IsConfDoSpoofIp(x) ((x)->flags & CONF_FLAGS_SPOOF_IP) |
| 246 |
|
|
#define IsConfSpoofNotice(x) ((x)->flags & CONF_FLAGS_SPOOF_NOTICE) |
| 247 |
|
|
#define IsConfEncrypted(x) ((x)->flags & CONF_FLAGS_ENCRYPTED) |
| 248 |
|
|
#define SetConfEncrypted(x) ((x)->flags |= CONF_FLAGS_ENCRYPTED) |
| 249 |
|
|
#define ClearConfEncrypted(x) ((x)->flags &= ~CONF_FLAGS_ENCRYPTED) |
| 250 |
|
|
#define IsConfAllowAutoConn(x) ((x)->flags & CONF_FLAGS_ALLOW_AUTO_CONN) |
| 251 |
|
|
#define SetConfAllowAutoConn(x) ((x)->flags |= CONF_FLAGS_ALLOW_AUTO_CONN) |
| 252 |
|
|
#define ClearConfAllowAutoConn(x) ((x)->flags &= ~CONF_FLAGS_ALLOW_AUTO_CONN) |
| 253 |
|
|
#define IsConfTemporary(x) ((x)->flags & CONF_FLAGS_TEMPORARY) |
| 254 |
|
|
#define SetConfTemporary(x) ((x)->flags |= CONF_FLAGS_TEMPORARY) |
| 255 |
|
|
#define IsConfRedir(x) ((x)->flags & CONF_FLAGS_REDIR) |
| 256 |
michael |
1303 |
#define IsConfSSL(x) ((x)->flags & CONF_FLAGS_SSL) |
| 257 |
|
|
#define SetConfSSL(x) ((x)->flags |= CONF_FLAGS_SSL) |
| 258 |
|
|
#define ClearConfSSL(x) ((x)->flags &= ~CONF_FLAGS_SSL) |
| 259 |
adx |
30 |
|
| 260 |
|
|
/* shared/cluster server entry types |
| 261 |
|
|
* These defines are used for both shared and cluster. |
| 262 |
|
|
*/ |
| 263 |
|
|
#define SHARED_KLINE 0x0001 |
| 264 |
michael |
1301 |
#define SHARED_UNKLINE 0x0002 |
| 265 |
|
|
#define SHARED_XLINE 0x0004 |
| 266 |
|
|
#define SHARED_UNXLINE 0x0008 |
| 267 |
|
|
#define SHARED_RESV 0x0010 |
| 268 |
|
|
#define SHARED_UNRESV 0x0020 |
| 269 |
|
|
#define SHARED_LOCOPS 0x0040 |
| 270 |
|
|
#define SHARED_DLINE 0x0080 |
| 271 |
|
|
#define SHARED_UNDLINE 0x0100 |
| 272 |
|
|
#define SHARED_ALL (SHARED_KLINE | SHARED_UNKLINE |\ |
| 273 |
|
|
SHARED_XLINE | SHARED_UNXLINE |\ |
| 274 |
|
|
SHARED_RESV | SHARED_UNRESV |\ |
| 275 |
|
|
SHARED_LOCOPS | SHARED_DLINE | SHARED_UNDLINE) |
| 276 |
adx |
30 |
|
| 277 |
|
|
struct config_file_entry |
| 278 |
|
|
{ |
| 279 |
|
|
const char *dpath; /* DPATH if set from command line */ |
| 280 |
|
|
const char *configfile; |
| 281 |
|
|
const char *klinefile; |
| 282 |
|
|
const char *xlinefile; |
| 283 |
|
|
const char *dlinefile; |
| 284 |
|
|
const char *cresvfile; |
| 285 |
|
|
const char *nresvfile; |
| 286 |
|
|
|
| 287 |
|
|
char *egdpool_path; |
| 288 |
michael |
1157 |
char *service_name; |
| 289 |
adx |
30 |
|
| 290 |
|
|
MessageFile motd; |
| 291 |
|
|
MessageFile linksfile; |
| 292 |
|
|
|
| 293 |
|
|
int gline_min_cidr; |
| 294 |
|
|
int gline_min_cidr6; |
| 295 |
|
|
int dots_in_ident; |
| 296 |
|
|
int failed_oper_notice; |
| 297 |
|
|
int anti_spam_exit_message_time; |
| 298 |
michael |
950 |
unsigned int max_accept; |
| 299 |
|
|
unsigned int max_watch; |
| 300 |
adx |
30 |
int max_nick_time; |
| 301 |
michael |
950 |
unsigned int max_nick_changes; |
| 302 |
adx |
30 |
int ts_max_delta; |
| 303 |
|
|
int ts_warn_delta; |
| 304 |
|
|
int anti_nick_flood; |
| 305 |
|
|
int kline_with_reason; |
| 306 |
|
|
int warn_no_nline; |
| 307 |
|
|
int invisible_on_connect; |
| 308 |
michael |
584 |
int stats_e_disabled; |
| 309 |
adx |
30 |
int stats_o_oper_only; |
| 310 |
|
|
int stats_k_oper_only; |
| 311 |
|
|
int stats_i_oper_only; |
| 312 |
|
|
int stats_P_oper_only; |
| 313 |
|
|
int short_motd; |
| 314 |
|
|
int no_oper_flood; |
| 315 |
|
|
int true_no_oper_flood; |
| 316 |
|
|
int oper_pass_resv; |
| 317 |
|
|
int glines; |
| 318 |
|
|
int hide_spoof_ips; |
| 319 |
|
|
int tkline_expire_notices; |
| 320 |
|
|
int opers_bypass_callerid; |
| 321 |
|
|
int ignore_bogus_ts; |
| 322 |
|
|
char *kline_reason; |
| 323 |
|
|
int pace_wait; |
| 324 |
|
|
int pace_wait_simple; |
| 325 |
|
|
int gline_time; |
| 326 |
michael |
1459 |
int gline_request_time; |
| 327 |
adx |
30 |
int oper_only_umodes; |
| 328 |
|
|
int oper_umodes; |
| 329 |
|
|
int max_targets; |
| 330 |
|
|
int caller_id_wait; |
| 331 |
|
|
int min_nonwildcard; |
| 332 |
|
|
int min_nonwildcard_simple; |
| 333 |
|
|
int kill_chase_time_limit; |
| 334 |
|
|
int default_floodcount; |
| 335 |
|
|
/* 0 == don't use throttle... */ |
| 336 |
|
|
int throttle_time; |
| 337 |
|
|
int use_egd; |
| 338 |
|
|
int ping_cookie; |
| 339 |
|
|
int disable_auth; |
| 340 |
|
|
int disable_remote; |
| 341 |
|
|
}; |
| 342 |
|
|
|
| 343 |
|
|
struct config_channel_entry |
| 344 |
|
|
{ |
| 345 |
michael |
632 |
int disable_fake_channels; |
| 346 |
adx |
30 |
int restrict_channels; |
| 347 |
|
|
int knock_delay; |
| 348 |
|
|
int knock_delay_channel; |
| 349 |
|
|
unsigned int max_bans; |
| 350 |
|
|
unsigned int max_chans_per_user; |
| 351 |
michael |
1432 |
unsigned int max_chans_per_oper; |
| 352 |
adx |
30 |
int no_create_on_split; |
| 353 |
|
|
int no_join_on_split; |
| 354 |
|
|
int quiet_on_ban; |
| 355 |
|
|
int default_split_server_count; |
| 356 |
|
|
int default_split_user_count; |
| 357 |
|
|
}; |
| 358 |
|
|
|
| 359 |
|
|
struct config_server_hide |
| 360 |
|
|
{ |
| 361 |
michael |
1013 |
char *hidden_name; |
| 362 |
adx |
30 |
int flatten_links; |
| 363 |
|
|
int hide_servers; |
| 364 |
|
|
int links_delay; |
| 365 |
|
|
int links_disabled; |
| 366 |
|
|
int hidden; |
| 367 |
|
|
int hide_server_ips; |
| 368 |
|
|
}; |
| 369 |
|
|
|
| 370 |
|
|
struct server_info |
| 371 |
|
|
{ |
| 372 |
michael |
1013 |
char *sid; |
| 373 |
adx |
30 |
char *name; |
| 374 |
|
|
char *description; |
| 375 |
|
|
char *network_name; |
| 376 |
|
|
char *network_desc; |
| 377 |
|
|
#ifdef HAVE_LIBCRYPTO |
| 378 |
|
|
char *rsa_private_key_file; |
| 379 |
|
|
RSA *rsa_private_key; |
| 380 |
michael |
967 |
SSL_CTX *server_ctx; |
| 381 |
|
|
SSL_CTX *client_ctx; |
| 382 |
adx |
30 |
#endif |
| 383 |
|
|
int hub; |
| 384 |
|
|
struct irc_ssaddr ip; |
| 385 |
|
|
struct irc_ssaddr ip6; |
| 386 |
michael |
1013 |
unsigned int max_clients; |
| 387 |
adx |
30 |
int specific_ipv4_vhost; |
| 388 |
|
|
int specific_ipv6_vhost; |
| 389 |
|
|
struct sockaddr_in dns_host; |
| 390 |
|
|
int can_use_v6; |
| 391 |
|
|
}; |
| 392 |
|
|
|
| 393 |
|
|
struct admin_info |
| 394 |
|
|
{ |
| 395 |
|
|
char *name; |
| 396 |
|
|
char *description; |
| 397 |
|
|
char *email; |
| 398 |
|
|
}; |
| 399 |
|
|
|
| 400 |
|
|
struct logging_entry |
| 401 |
|
|
{ |
| 402 |
|
|
unsigned int use_logging; |
| 403 |
|
|
}; |
| 404 |
|
|
|
| 405 |
|
|
extern dlink_list class_items; |
| 406 |
|
|
extern dlink_list server_items; |
| 407 |
|
|
extern dlink_list cluster_items; |
| 408 |
|
|
extern dlink_list hub_items; |
| 409 |
|
|
extern dlink_list rxconf_items; |
| 410 |
|
|
extern dlink_list rkconf_items; |
| 411 |
|
|
extern dlink_list leaf_items; |
| 412 |
michael |
1157 |
extern dlink_list service_items; |
| 413 |
adx |
30 |
extern dlink_list temporary_xlines; |
| 414 |
|
|
extern struct logging_entry ConfigLoggingEntry; |
| 415 |
|
|
extern struct config_file_entry ConfigFileEntry;/* defined in ircd.c*/ |
| 416 |
|
|
extern struct config_channel_entry ConfigChannel;/* defined in channel.c*/ |
| 417 |
|
|
extern struct config_server_hide ConfigServerHide; /* defined in s_conf.c */ |
| 418 |
|
|
extern struct server_info ServerInfo; /* defined in ircd.c */ |
| 419 |
|
|
extern struct admin_info AdminInfo; /* defined in ircd.c */ |
| 420 |
|
|
extern int valid_wild_card(struct Client *, int, int, ...); |
| 421 |
|
|
/* End GLOBAL section */ |
| 422 |
|
|
|
| 423 |
michael |
948 |
extern unsigned int get_sendq(struct Client *); |
| 424 |
michael |
1516 |
extern unsigned int get_recvq(struct Client *); |
| 425 |
adx |
30 |
extern const char *get_client_class(struct Client *); |
| 426 |
|
|
extern int get_client_ping(struct Client *, int *); |
| 427 |
|
|
extern void check_class(void); |
| 428 |
|
|
extern void init_class(void); |
| 429 |
|
|
extern struct ConfItem *find_class(const char *); |
| 430 |
|
|
extern void init_ip_hash_table(void); |
| 431 |
michael |
948 |
extern void count_ip_hash(unsigned int *, uint64_t *); |
| 432 |
adx |
30 |
extern void remove_one_ip(struct irc_ssaddr *); |
| 433 |
|
|
extern struct ConfItem *make_conf_item(ConfType type); |
| 434 |
|
|
extern void free_access_item(struct AccessItem *); |
| 435 |
|
|
extern void read_conf_files(int); |
| 436 |
|
|
extern int attach_conf(struct Client *, struct ConfItem *); |
| 437 |
|
|
extern int attach_connect_block(struct Client *, const char *, const char *); |
| 438 |
|
|
|
| 439 |
|
|
extern int detach_conf(struct Client *, ConfType); |
| 440 |
|
|
|
| 441 |
|
|
extern struct ConfItem *find_conf_name(dlink_list *, const char *, ConfType); |
| 442 |
|
|
extern struct ConfItem *find_conf_exact(ConfType, const char *, const char *, const char *); |
| 443 |
|
|
extern struct AccessItem *find_kill(struct Client *); |
| 444 |
|
|
extern struct AccessItem *find_gline(struct Client *); |
| 445 |
|
|
extern int conf_connect_allowed(struct irc_ssaddr *, int); |
| 446 |
|
|
extern char *oper_privs_as_string(const unsigned int); |
| 447 |
michael |
593 |
extern void split_nuh(struct split_nuh_item *); |
| 448 |
adx |
30 |
extern struct ConfItem *find_matching_name_conf(ConfType, const char *, |
| 449 |
|
|
const char *, const char *, int); |
| 450 |
michael |
1285 |
extern struct ConfItem *find_exact_name_conf(ConfType, const struct Client *, const char *, |
| 451 |
adx |
30 |
const char *, const char *); |
| 452 |
|
|
extern void delete_conf_item(struct ConfItem *); |
| 453 |
michael |
1368 |
extern void report_confitem_types(struct Client *, ConfType); |
| 454 |
adx |
30 |
extern void yyerror(const char *); |
| 455 |
|
|
extern void write_conf_line(struct Client *, struct ConfItem *, |
| 456 |
|
|
const char *, time_t); |
| 457 |
|
|
extern int remove_conf_line(ConfType, struct Client *, const char *, |
| 458 |
|
|
const char *); |
| 459 |
|
|
extern void add_temp_line(struct ConfItem *); |
| 460 |
|
|
extern void cleanup_tklines(void *); |
| 461 |
|
|
extern const char *get_conf_name(ConfType); |
| 462 |
|
|
extern int rehash(int); |
| 463 |
michael |
593 |
extern int conf_add_server(struct ConfItem *, const char *); |
| 464 |
adx |
30 |
extern void conf_add_class_to_conf(struct ConfItem *, const char *); |
| 465 |
|
|
|
| 466 |
|
|
/* XXX consider moving these into csvlib.h */ |
| 467 |
michael |
1325 |
extern void parse_csv_file(FILE *, ConfType); |
| 468 |
michael |
1369 |
extern int find_and_delete_temporary(const char *, const char *, int); |
| 469 |
michael |
1364 |
extern const char *get_oper_name(const struct Client *); |
| 470 |
adx |
30 |
|
| 471 |
|
|
extern void *map_to_conf(struct ConfItem *); |
| 472 |
|
|
extern struct ConfItem *unmap_conf_item(void *); |
| 473 |
|
|
/* XXX should the parse_aline stuff go into another file ?? */ |
| 474 |
|
|
#define AWILD 0x1 /* check wild cards */ |
| 475 |
|
|
extern int parse_aline(const char *, struct Client *, int, char **, |
| 476 |
|
|
int, char **, char **, time_t *, char **, char **); |
| 477 |
|
|
extern int valid_comment(struct Client *, char *, int); |
| 478 |
|
|
|
| 479 |
|
|
|
| 480 |
|
|
#define TK_SECONDS 0 |
| 481 |
|
|
#define TK_MINUTES 1 |
| 482 |
michael |
1120 |
extern time_t valid_tkline(const char *, int); |
| 483 |
adx |
30 |
extern int match_conf_password(const char *, const struct AccessItem *); |
| 484 |
|
|
|
| 485 |
|
|
#define NOT_AUTHORIZED (-1) |
| 486 |
michael |
618 |
#define I_LINE_FULL (-2) |
| 487 |
|
|
#define TOO_MANY (-3) |
| 488 |
|
|
#define BANNED_CLIENT (-4) |
| 489 |
|
|
#define TOO_FAST (-5) |
| 490 |
adx |
30 |
|
| 491 |
michael |
1370 |
#define CLEANUP_TKLINES_TIME 60 |
| 492 |
adx |
30 |
|
| 493 |
|
|
extern void cluster_a_line(struct Client *, |
| 494 |
|
|
const char *, int, int, const char *,...); |
| 495 |
|
|
extern void rebuild_cidr_class(struct ConfItem *, struct ClassItem *); |
| 496 |
|
|
#endif /* INCLUDED_s_conf_h */ |