]> jfr.im git - solanum.git/blame - include/s_conf.h
Replace IsInsecure with IsSecure
[solanum.git] / include / s_conf.h
CommitLineData
212380e3 1/*
a6f63a82 2 * solanum: Advanced, scalable Internet Relay Chat.
212380e3
AC
3 * s_conf.h: A header for the configuration functions.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2004 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
212380e3
AC
23 */
24
25#ifndef INCLUDED_s_conf_h
26#define INCLUDED_s_conf_h
27#include "setup.h"
28
29#ifdef HAVE_LIBCRYPTO
30#include <openssl/rsa.h>
31#endif
32
33#include "ircd_defs.h"
34#include "class.h"
35#include "client.h"
212380e3
AC
36
37struct Client;
38struct DNSReply;
39struct hostent;
40
41/* used by new parser */
42/* yacc/lex love globals!!! */
43
44struct ip_value
45{
e7046ee5 46 struct rb_sockaddr_storage ip;
212380e3
AC
47 int ip_mask;
48 int type;
49};
50
51extern FILE *conf_fbfile_in;
52extern char conf_line_in[256];
53
54ac8b60
VY
54struct ConfItem
55{
54ac8b60
VY
56 unsigned int status; /* If CONF_ILLEGAL, delete when no clients */
57 unsigned int flags;
58 int clients; /* Number of *LOCAL* clients using this */
27f616dd
JT
59 union
60 {
61 char *name; /* IRC name, nick, server name, or original u@h */
62 const char *oper;
63 } info;
54ac8b60
VY
64 char *host; /* host part of user@host */
65 char *passwd; /* doubles as kline reason *ugh* */
66 char *spasswd; /* Password to send. */
67 char *user; /* user part of user@host */
68 int port;
69 time_t hold; /* Hold action until this time (calendar time) */
b52c2949 70 time_t created; /* Creation time (for klines etc) */
9197bc35 71 time_t lifetime; /* Propagated lines: remember until this time */
54ac8b60
VY
72 char *className; /* Name of class */
73 struct Class *c_class; /* Class of connection */
74 rb_patricia_node_t *pnode; /* Our patricia node */
212380e3
AC
75};
76
66f7fe67
EM
77#define CONF_ILLEGAL 0x80000000
78#define CONF_CLIENT 0x0002
79#define CONF_KILL 0x0040
212380e3
AC
80#define CONF_XLINE 0x0080
81#define CONF_RESV_CHANNEL 0x0100
82#define CONF_RESV_NICK 0x0200
83#define CONF_RESV (CONF_RESV_CHANNEL | CONF_RESV_NICK)
84
66f7fe67
EM
85#define CONF_DLINE 0x020000
86#define CONF_EXEMPTDLINE 0x100000
212380e3
AC
87
88#define IsIllegal(x) ((x)->status & CONF_ILLEGAL)
89
90/* aConfItem->flags */
91
92/* Generic flags... */
66f7fe67 93#define CONF_FLAGS_TEMPORARY 0x00800000
b1594414 94#define CONF_FLAGS_NEED_SSL 0x00000002
66f7fe67 95#define CONF_FLAGS_MYOPER 0x00080000 /* need to rewrite info.oper on burst */
ce3801b1 96/* auth{} flags... */
66f7fe67
EM
97#define CONF_FLAGS_NO_TILDE 0x00000004
98#define CONF_FLAGS_NEED_IDENTD 0x00000008
99#define CONF_FLAGS_EXEMPTKLINE 0x00000040
100#define CONF_FLAGS_NOLIMIT 0x00000080
101#define CONF_FLAGS_SPOOF_IP 0x00000200
212380e3 102#define CONF_FLAGS_SPOOF_NOTICE 0x00000400
66f7fe67 103#define CONF_FLAGS_REDIR 0x00000800
212380e3 104#define CONF_FLAGS_EXEMPTRESV 0x00002000 /* exempt from resvs */
66f7fe67 105#define CONF_FLAGS_EXEMPTFLOOD 0x00004000
212380e3
AC
106#define CONF_FLAGS_EXEMPTSPAMBOT 0x00008000
107#define CONF_FLAGS_EXEMPTSHIDE 0x00010000
108#define CONF_FLAGS_EXEMPTJUPE 0x00020000 /* exempt from resv generating warnings */
109#define CONF_FLAGS_NEED_SASL 0x00040000
a4721f5e 110#define CONF_FLAGS_EXTEND_CHANS 0x00080000
66f7fe67 111#define CONF_FLAGS_ENCRYPTED 0x00200000
212380e3 112#define CONF_FLAGS_EXEMPTDNSBL 0x04000000
fbe8d087 113#define CONF_FLAGS_EXEMPTPROXY 0x08000000
c6ad9b0c 114#define CONF_FLAGS_ALLOW_SCTP 0x10000000
67e05d5b 115#define CONF_FLAGS_KLINE_SPOOF 0x20000000
212380e3
AC
116
117
118/* Macros for struct ConfItem */
27f616dd
JT
119#define IsConfBan(x) ((x)->status & (CONF_KILL|CONF_XLINE|CONF_DLINE|\
120 CONF_RESV_CHANNEL|CONF_RESV_NICK))
121
212380e3
AC
122#define IsNoTilde(x) ((x)->flags & CONF_FLAGS_NO_TILDE)
123#define IsNeedIdentd(x) ((x)->flags & CONF_FLAGS_NEED_IDENTD)
212380e3
AC
124#define IsConfExemptKline(x) ((x)->flags & CONF_FLAGS_EXEMPTKLINE)
125#define IsConfExemptLimits(x) ((x)->flags & CONF_FLAGS_NOLIMIT)
212380e3
AC
126#define IsConfExemptFlood(x) ((x)->flags & CONF_FLAGS_EXEMPTFLOOD)
127#define IsConfExemptSpambot(x) ((x)->flags & CONF_FLAGS_EXEMPTSPAMBOT)
128#define IsConfExemptShide(x) ((x)->flags & CONF_FLAGS_EXEMPTSHIDE)
129#define IsConfExemptJupe(x) ((x)->flags & CONF_FLAGS_EXEMPTJUPE)
130#define IsConfExemptResv(x) ((x)->flags & CONF_FLAGS_EXEMPTRESV)
212380e3
AC
131#define IsConfDoSpoofIp(x) ((x)->flags & CONF_FLAGS_SPOOF_IP)
132#define IsConfSpoofNotice(x) ((x)->flags & CONF_FLAGS_SPOOF_NOTICE)
133#define IsConfEncrypted(x) ((x)->flags & CONF_FLAGS_ENCRYPTED)
212380e3
AC
134#define IsNeedSasl(x) ((x)->flags & CONF_FLAGS_NEED_SASL)
135#define IsConfExemptDNSBL(x) ((x)->flags & CONF_FLAGS_EXEMPTDNSBL)
fbe8d087 136#define IsConfExemptProxy(x) ((x)->flags & CONF_FLAGS_EXEMPTPROXY)
a4721f5e 137#define IsConfExtendChans(x) ((x)->flags & CONF_FLAGS_EXTEND_CHANS)
b1594414 138#define IsConfSSLNeeded(x) ((x)->flags & CONF_FLAGS_NEED_SSL)
c6ad9b0c 139#define IsConfAllowSCTP(x) ((x)->flags & CONF_FLAGS_ALLOW_SCTP)
67e05d5b 140#define IsConfKlineSpoof(x) ((x)->flags & CONF_FLAGS_KLINE_SPOOF)
212380e3
AC
141
142/* flag definitions for opers now in client.h */
143
144struct config_file_entry
145{
146 const char *dpath; /* DPATH if set from command line */
147 const char *configfile;
212380e3 148
212380e3
AC
149 char *default_operstring;
150 char *default_adminstring;
151 char *servicestring;
152 char *kline_reason;
153
154 char *identifyservice;
155 char *identifycommand;
55abcbb2 156
7d33cce8
MT
157 char *sasl_service;
158
212380e3
AC
159 char *fname_userlog;
160 char *fname_fuserlog;
161 char *fname_operlog;
162 char *fname_foperlog;
163 char *fname_serverlog;
164 char *fname_killlog;
212380e3
AC
165 char *fname_klinelog;
166 char *fname_operspylog;
167 char *fname_ioerrorlog;
168
169 unsigned char compression_level;
170 int disable_fake_channels;
212380e3
AC
171 int dots_in_ident;
172 int failed_oper_notice;
173 int anti_nick_flood;
174 int anti_spam_exit_message_time;
175 int max_accept;
176 int max_monitor;
177 int max_nick_time;
178 int max_nick_changes;
179 int ts_max_delta;
180 int ts_warn_delta;
181 int dline_with_reason;
182 int kline_with_reason;
9914c013 183 int hide_tkdline_duration;
212380e3
AC
184 int warn_no_nline;
185 int nick_delay;
186 int non_redundant_klines;
187 int stats_e_disabled;
188 int stats_c_oper_only;
189 int stats_y_oper_only;
190 int stats_h_oper_only;
191 int stats_o_oper_only;
192 int stats_k_oper_only;
193 int stats_i_oper_only;
194 int stats_P_oper_only;
195 int map_oper_only;
196 int operspy_admin_only;
197 int pace_wait;
198 int pace_wait_simple;
199 int short_motd;
200 int no_oper_flood;
212380e3
AC
201 int hide_server;
202 int hide_spoof_ips;
203 int hide_error_messages;
204 int client_exit;
205 int oper_only_umodes;
206 int oper_umodes;
207 int oper_snomask;
208 int max_targets;
209 int caller_id_wait;
210 int min_nonwildcard;
211 int min_nonwildcard_simple;
212 int default_floodcount;
944b0584 213 int default_ident_timeout;
212380e3
AC
214 int ping_cookie;
215 int tkline_expire_notices;
216 int use_whois_actually;
217 int disable_auth;
b3a00991 218 int post_registration_delay;
212380e3
AC
219 int connect_timeout;
220 int burst_away;
221 int reject_ban_time;
222 int reject_after_count;
223 int reject_duration;
43946961
JT
224 int throttle_count;
225 int throttle_duration;
212380e3
AC
226 int target_change;
227 int collision_fnc;
330692a1 228 int resv_fnc;
212380e3
AC
229 int default_umodes;
230 int global_snotices;
231 int operspy_dont_care_user_info;
1702b694 232 int use_propagated_bans;
e88a1f1b 233 int max_ratelimit_tokens;
d42e6915 234 int away_interval;
fff4f763 235 int tls_ciphers_oper_only;
e6e54763
SB
236
237 int client_flood_max_lines;
238 int client_flood_burst_rate;
239 int client_flood_burst_max;
240 int client_flood_message_time;
241 int client_flood_message_num;
242
b583faf9 243 unsigned int nicklen;
13d8f0ed 244 int certfp_method;
71c95533
AC
245
246 int hide_opers_in_whois;
1123eefc 247 int hide_opers;
b674a619
EK
248
249 char *drain_reason;
212380e3
AC
250};
251
252struct config_channel_entry
253{
254 int use_except;
255 int use_invex;
2da6f6eb 256 int use_forward;
212380e3 257 int use_knock;
212380e3
AC
258 int knock_delay;
259 int knock_delay_channel;
260 int max_bans;
261 int max_bans_large;
262 int max_chans_per_user;
a4721f5e 263 int max_chans_per_user_large;
212380e3
AC
264 int no_create_on_split;
265 int no_join_on_split;
266 int default_split_server_count;
267 int default_split_user_count;
268 int burst_topicwho;
212380e3 269 int kick_on_split_riding;
6865c0b0 270 int only_ascii_channels;
c2c25552 271 int resv_forcepart;
717238d2 272 int channel_target_change;
341f971e 273 int disable_local_channels;
63eb8567 274 unsigned int autochanmodes;
d513218a 275 int displayed_usercount;
14482679 276 int strip_topic_colors;
04e5ed6c 277 int opmod_send_statusmsg;
212380e3
AC
278};
279
280struct config_server_hide
281{
282 int flatten_links;
283 int links_delay;
212380e3
AC
284 int hidden;
285 int disable_hidden;
286};
287
288struct server_info
289{
290 char *name;
d764f7ce 291 char sid[4];
212380e3
AC
292 char *description;
293 char *network_name;
212380e3 294 int hub;
d4214e94 295 struct rb_sockaddr_storage bind4;
d4214e94 296 struct rb_sockaddr_storage bind6;
de293496 297 int default_max_clients;
8bd5767b
JT
298 char *ssl_private_key;
299 char *ssl_ca_cert;
300 char *ssl_cert;
301 char *ssl_dh_params;
c1725bda 302 char *ssl_cipher_list;
c6d72037 303 int ssld_count;
c53ca1e0 304 int wsockd_count;
212380e3
AC
305};
306
307struct admin_info
308{
309 char *name;
310 char *description;
311 char *email;
312};
313
314struct alias_entry
315{
316 char *name;
317 char *target;
318 int flags; /* reserved for later use */
212380e3
AC
319};
320
321/* All variables are GLOBAL */
212380e3
AC
322extern struct config_file_entry ConfigFileEntry; /* defined in ircd.c */
323extern struct config_channel_entry ConfigChannel; /* defined in channel.c */
324extern struct config_server_hide ConfigServerHide; /* defined in s_conf.c */
325extern struct server_info ServerInfo; /* defined in ircd.c */
326extern struct admin_info AdminInfo; /* defined in ircd.c */
327/* End GLOBAL section */
328
2e819b6b 329extern rb_dlink_list service_list;
212380e3 330
9197bc35
JT
331extern rb_dlink_list prop_bans;
332
212380e3
AC
333typedef enum temp_list
334{
335 TEMP_MIN,
336 TEMP_HOUR,
337 TEMP_DAY,
338 TEMP_WEEK,
339 LAST_TEMP_TYPE
340} temp_list;
341
2e819b6b
JT
342extern rb_dlink_list temp_klines[LAST_TEMP_TYPE];
343extern rb_dlink_list temp_dlines[LAST_TEMP_TYPE];
212380e3
AC
344
345extern void init_s_conf(void);
346
347extern struct ConfItem *make_conf(void);
348extern void free_conf(struct ConfItem *);
349
431a1a27 350extern rb_dlink_node *find_prop_ban(unsigned int status, const char *user, const char *host);
483987a4 351extern void deactivate_conf(struct ConfItem *, rb_dlink_node *, time_t);
3cbbfb25 352extern void replace_old_ban(struct ConfItem *);
9197bc35 353
ea111ea5 354extern void read_conf_files(bool cold);
212380e3
AC
355
356extern int attach_conf(struct Client *, struct ConfItem *);
357extern int check_client(struct Client *client_p, struct Client *source_p, const char *);
358
a9536f75 359extern void deref_conf(struct ConfItem *);
212380e3
AC
360extern int detach_conf(struct Client *);
361
212380e3
AC
362extern struct ConfItem *find_tkline(const char *, const char *, struct sockaddr *);
363extern char *show_iline_prefix(struct Client *, struct ConfItem *, char *);
364extern void get_printable_conf(struct ConfItem *,
29c92cf9 365 char **, char **, const char **, char **, int *, char **);
a12ad044 366extern char *get_user_ban_reason(struct ConfItem *aconf);
54ac8b60
VY
367extern void get_printable_kline(struct Client *, struct ConfItem *,
368 char **, char **, char **, char **);
212380e3
AC
369
370extern void yyerror(const char *);
371extern int conf_yy_fatal_error(const char *);
372extern int conf_fgets(char *, int, FILE *);
373
5c2b9eaf 374extern int valid_wild_card(const char *, const char *);
212380e3
AC
375extern void add_temp_kline(struct ConfItem *);
376extern void add_temp_dline(struct ConfItem *);
377extern void report_temp_klines(struct Client *);
5b96d9a6 378extern void show_temp_klines(struct Client *, rb_dlink_list *);
212380e3 379
ab31d2b0
EM
380extern bool rehash(bool);
381extern void rehash_bans(void);
212380e3
AC
382
383extern int conf_add_server(struct ConfItem *, int);
384extern void conf_add_class_to_conf(struct ConfItem *);
385extern void conf_add_me(struct ConfItem *);
386extern void conf_add_class(struct ConfItem *, int);
387extern void conf_add_d_conf(struct ConfItem *);
388extern void flush_expired_ips(void *);
389
212380e3
AC
390extern char *get_oper_name(struct Client *client_p);
391
392extern int yylex(void);
393
394extern unsigned long cidr_to_bitmask[];
395
82236a2a 396extern char conffilebuf[BUFSIZE + 1];
212380e3
AC
397extern int lineno;
398
399#define NOT_AUTHORISED (-1)
85368a13 400#define I_SOCKET_ERROR (-2)
212380e3
AC
401#define I_LINE_FULL (-3)
402#define BANNED_CLIENT (-4)
403#define TOO_MANY_LOCAL (-6)
404#define TOO_MANY_GLOBAL (-7)
405#define TOO_MANY_IDENT (-8)
406
407#endif /* INCLUDED_s_conf_h */