]> jfr.im git - solanum.git/blame - include/s_conf.h
opm: allow scanners to be configurable
[solanum.git] / include / s_conf.h
CommitLineData
212380e3
AC
1/*
2 * charybdis: Advanced, scalable Internet Relay Chat.
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
77#define CONF_ILLEGAL 0x80000000
212380e3
AC
78#define CONF_CLIENT 0x0002
79#define CONF_KILL 0x0040
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
212380e3
AC
85#define CONF_DLINE 0x20000
86#define CONF_EXEMPTDLINE 0x100000
87
88#define IsIllegal(x) ((x)->status & CONF_ILLEGAL)
89
90/* aConfItem->flags */
91
92/* Generic flags... */
ce3801b1 93#define CONF_FLAGS_TEMPORARY 0x00800000
b1594414 94#define CONF_FLAGS_NEED_SSL 0x00000002
431a1a27 95#define CONF_FLAGS_MYOPER 0x00080000 /* need to rewrite info.oper on burst */
ce3801b1 96/* auth{} flags... */
212380e3
AC
97#define CONF_FLAGS_NO_TILDE 0x00000004
98#define CONF_FLAGS_NEED_IDENTD 0x00000008
212380e3
AC
99#define CONF_FLAGS_EXEMPTKLINE 0x00000040
100#define CONF_FLAGS_NOLIMIT 0x00000080
212380e3
AC
101#define CONF_FLAGS_SPOOF_IP 0x00000200
102#define CONF_FLAGS_SPOOF_NOTICE 0x00000400
103#define CONF_FLAGS_REDIR 0x00000800
212380e3
AC
104#define CONF_FLAGS_EXEMPTRESV 0x00002000 /* exempt from resvs */
105#define CONF_FLAGS_EXEMPTFLOOD 0x00004000
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
212380e3 111#define CONF_FLAGS_ENCRYPTED 0x00200000
212380e3
AC
112#define CONF_FLAGS_EXEMPTDNSBL 0x04000000
113
114
115/* Macros for struct ConfItem */
27f616dd
JT
116#define IsConfBan(x) ((x)->status & (CONF_KILL|CONF_XLINE|CONF_DLINE|\
117 CONF_RESV_CHANNEL|CONF_RESV_NICK))
118
212380e3
AC
119#define IsNoTilde(x) ((x)->flags & CONF_FLAGS_NO_TILDE)
120#define IsNeedIdentd(x) ((x)->flags & CONF_FLAGS_NEED_IDENTD)
212380e3
AC
121#define IsConfExemptKline(x) ((x)->flags & CONF_FLAGS_EXEMPTKLINE)
122#define IsConfExemptLimits(x) ((x)->flags & CONF_FLAGS_NOLIMIT)
212380e3
AC
123#define IsConfExemptFlood(x) ((x)->flags & CONF_FLAGS_EXEMPTFLOOD)
124#define IsConfExemptSpambot(x) ((x)->flags & CONF_FLAGS_EXEMPTSPAMBOT)
125#define IsConfExemptShide(x) ((x)->flags & CONF_FLAGS_EXEMPTSHIDE)
126#define IsConfExemptJupe(x) ((x)->flags & CONF_FLAGS_EXEMPTJUPE)
127#define IsConfExemptResv(x) ((x)->flags & CONF_FLAGS_EXEMPTRESV)
212380e3
AC
128#define IsConfDoSpoofIp(x) ((x)->flags & CONF_FLAGS_SPOOF_IP)
129#define IsConfSpoofNotice(x) ((x)->flags & CONF_FLAGS_SPOOF_NOTICE)
130#define IsConfEncrypted(x) ((x)->flags & CONF_FLAGS_ENCRYPTED)
212380e3
AC
131#define IsNeedSasl(x) ((x)->flags & CONF_FLAGS_NEED_SASL)
132#define IsConfExemptDNSBL(x) ((x)->flags & CONF_FLAGS_EXEMPTDNSBL)
a4721f5e 133#define IsConfExtendChans(x) ((x)->flags & CONF_FLAGS_EXTEND_CHANS)
b1594414 134#define IsConfSSLNeeded(x) ((x)->flags & CONF_FLAGS_NEED_SSL)
212380e3
AC
135
136/* flag definitions for opers now in client.h */
137
138struct config_file_entry
139{
140 const char *dpath; /* DPATH if set from command line */
141 const char *configfile;
212380e3 142
212380e3
AC
143 char *default_operstring;
144 char *default_adminstring;
145 char *servicestring;
146 char *kline_reason;
147
148 char *identifyservice;
149 char *identifycommand;
55abcbb2 150
7d33cce8
MT
151 char *sasl_service;
152
212380e3
AC
153 char *fname_userlog;
154 char *fname_fuserlog;
155 char *fname_operlog;
156 char *fname_foperlog;
157 char *fname_serverlog;
158 char *fname_killlog;
212380e3
AC
159 char *fname_klinelog;
160 char *fname_operspylog;
161 char *fname_ioerrorlog;
162
163 unsigned char compression_level;
164 int disable_fake_channels;
212380e3
AC
165 int dots_in_ident;
166 int failed_oper_notice;
167 int anti_nick_flood;
168 int anti_spam_exit_message_time;
169 int max_accept;
170 int max_monitor;
171 int max_nick_time;
172 int max_nick_changes;
173 int ts_max_delta;
174 int ts_warn_delta;
175 int dline_with_reason;
176 int kline_with_reason;
177 int kline_delay;
178 int warn_no_nline;
179 int nick_delay;
180 int non_redundant_klines;
181 int stats_e_disabled;
182 int stats_c_oper_only;
183 int stats_y_oper_only;
184 int stats_h_oper_only;
185 int stats_o_oper_only;
186 int stats_k_oper_only;
187 int stats_i_oper_only;
188 int stats_P_oper_only;
189 int map_oper_only;
190 int operspy_admin_only;
191 int pace_wait;
192 int pace_wait_simple;
193 int short_motd;
194 int no_oper_flood;
212380e3
AC
195 int hide_server;
196 int hide_spoof_ips;
197 int hide_error_messages;
198 int client_exit;
199 int oper_only_umodes;
200 int oper_umodes;
201 int oper_snomask;
202 int max_targets;
203 int caller_id_wait;
204 int min_nonwildcard;
205 int min_nonwildcard_simple;
206 int default_floodcount;
944b0584 207 int default_ident_timeout;
212380e3
AC
208 int ping_cookie;
209 int tkline_expire_notices;
210 int use_whois_actually;
211 int disable_auth;
212 int connect_timeout;
213 int burst_away;
214 int reject_ban_time;
215 int reject_after_count;
216 int reject_duration;
43946961
JT
217 int throttle_count;
218 int throttle_duration;
212380e3
AC
219 int target_change;
220 int collision_fnc;
330692a1 221 int resv_fnc;
212380e3
AC
222 int default_umodes;
223 int global_snotices;
224 int operspy_dont_care_user_info;
1702b694 225 int use_propagated_bans;
e88a1f1b 226 int max_ratelimit_tokens;
d42e6915 227 int away_interval;
e6e54763
SB
228
229 int client_flood_max_lines;
230 int client_flood_burst_rate;
231 int client_flood_burst_max;
232 int client_flood_message_time;
233 int client_flood_message_num;
234
b583faf9 235 unsigned int nicklen;
13d8f0ed 236 int certfp_method;
71c95533
AC
237
238 int hide_opers_in_whois;
212380e3
AC
239};
240
241struct config_channel_entry
242{
243 int use_except;
244 int use_invex;
2da6f6eb 245 int use_forward;
212380e3 246 int use_knock;
212380e3
AC
247 int knock_delay;
248 int knock_delay_channel;
249 int max_bans;
250 int max_bans_large;
251 int max_chans_per_user;
a4721f5e 252 int max_chans_per_user_large;
212380e3
AC
253 int no_create_on_split;
254 int no_join_on_split;
255 int default_split_server_count;
256 int default_split_user_count;
257 int burst_topicwho;
212380e3 258 int kick_on_split_riding;
6865c0b0 259 int only_ascii_channels;
c2c25552 260 int resv_forcepart;
717238d2 261 int channel_target_change;
341f971e 262 int disable_local_channels;
63eb8567 263 unsigned int autochanmodes;
d513218a 264 int displayed_usercount;
14482679 265 int strip_topic_colors;
212380e3
AC
266};
267
268struct config_server_hide
269{
270 int flatten_links;
271 int links_delay;
212380e3
AC
272 int hidden;
273 int disable_hidden;
274};
275
276struct server_info
277{
278 char *name;
d764f7ce 279 char sid[4];
212380e3
AC
280 char *description;
281 char *network_name;
212380e3 282 int hub;
212380e3 283 struct sockaddr_in ip;
c6d72037 284 int default_max_clients;
9ea3ea10 285#ifdef RB_IPV6
212380e3
AC
286 struct sockaddr_in6 ip6;
287#endif
288 int specific_ipv4_vhost;
9ea3ea10 289#ifdef RB_IPV6
212380e3
AC
290 int specific_ipv6_vhost;
291#endif
8bd5767b
JT
292 char *ssl_private_key;
293 char *ssl_ca_cert;
294 char *ssl_cert;
295 char *ssl_dh_params;
c1725bda 296 char *ssl_cipher_list;
c6d72037 297 int ssld_count;
212380e3
AC
298};
299
300struct admin_info
301{
302 char *name;
303 char *description;
304 char *email;
305};
306
307struct alias_entry
308{
309 char *name;
310 char *target;
311 int flags; /* reserved for later use */
312 int hits;
313};
314
315/* All variables are GLOBAL */
316extern int specific_ipv4_vhost; /* used in s_bsd.c */
317extern int specific_ipv6_vhost;
318extern struct config_file_entry ConfigFileEntry; /* defined in ircd.c */
319extern struct config_channel_entry ConfigChannel; /* defined in channel.c */
320extern struct config_server_hide ConfigServerHide; /* defined in s_conf.c */
321extern struct server_info ServerInfo; /* defined in ircd.c */
322extern struct admin_info AdminInfo; /* defined in ircd.c */
323/* End GLOBAL section */
324
2e819b6b 325extern rb_dlink_list service_list;
212380e3 326
9197bc35
JT
327extern rb_dlink_list prop_bans;
328
212380e3
AC
329typedef enum temp_list
330{
331 TEMP_MIN,
332 TEMP_HOUR,
333 TEMP_DAY,
334 TEMP_WEEK,
335 LAST_TEMP_TYPE
336} temp_list;
337
2e819b6b
JT
338extern rb_dlink_list temp_klines[LAST_TEMP_TYPE];
339extern rb_dlink_list temp_dlines[LAST_TEMP_TYPE];
212380e3
AC
340
341extern void init_s_conf(void);
342
343extern struct ConfItem *make_conf(void);
344extern void free_conf(struct ConfItem *);
345
431a1a27 346extern rb_dlink_node *find_prop_ban(unsigned int status, const char *user, const char *host);
483987a4 347extern void deactivate_conf(struct ConfItem *, rb_dlink_node *, time_t);
3cbbfb25 348extern void replace_old_ban(struct ConfItem *);
9197bc35 349
ea111ea5 350extern void read_conf_files(bool cold);
212380e3
AC
351
352extern int attach_conf(struct Client *, struct ConfItem *);
353extern int check_client(struct Client *client_p, struct Client *source_p, const char *);
354
355extern int detach_conf(struct Client *);
356
212380e3
AC
357extern struct ConfItem *find_tkline(const char *, const char *, struct sockaddr *);
358extern char *show_iline_prefix(struct Client *, struct ConfItem *, char *);
359extern void get_printable_conf(struct ConfItem *,
29c92cf9 360 char **, char **, const char **, char **, int *, char **);
a12ad044 361extern char *get_user_ban_reason(struct ConfItem *aconf);
54ac8b60
VY
362extern void get_printable_kline(struct Client *, struct ConfItem *,
363 char **, char **, char **, char **);
212380e3
AC
364
365extern void yyerror(const char *);
366extern int conf_yy_fatal_error(const char *);
367extern int conf_fgets(char *, int, FILE *);
368
5c2b9eaf 369extern int valid_wild_card(const char *, const char *);
212380e3
AC
370extern void add_temp_kline(struct ConfItem *);
371extern void add_temp_dline(struct ConfItem *);
372extern void report_temp_klines(struct Client *);
5b96d9a6 373extern void show_temp_klines(struct Client *, rb_dlink_list *);
212380e3 374
ab31d2b0
EM
375extern bool rehash(bool);
376extern void rehash_bans(void);
212380e3
AC
377
378extern int conf_add_server(struct ConfItem *, int);
379extern void conf_add_class_to_conf(struct ConfItem *);
380extern void conf_add_me(struct ConfItem *);
381extern void conf_add_class(struct ConfItem *, int);
382extern void conf_add_d_conf(struct ConfItem *);
383extern void flush_expired_ips(void *);
384
212380e3
AC
385extern char *get_oper_name(struct Client *client_p);
386
387extern int yylex(void);
388
389extern unsigned long cidr_to_bitmask[];
390
82236a2a 391extern char conffilebuf[BUFSIZE + 1];
212380e3
AC
392extern int lineno;
393
394#define NOT_AUTHORISED (-1)
85368a13 395#define I_SOCKET_ERROR (-2)
212380e3
AC
396#define I_LINE_FULL (-3)
397#define BANNED_CLIENT (-4)
398#define TOO_MANY_LOCAL (-6)
399#define TOO_MANY_GLOBAL (-7)
400#define TOO_MANY_IDENT (-8)
401
402#endif /* INCLUDED_s_conf_h */