]> jfr.im git - solanum.git/blob - include/s_conf.h
Add basic SCTP listener support that binds to multiple addresses
[solanum.git] / include / s_conf.h
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
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"
36
37 struct Client;
38 struct DNSReply;
39 struct hostent;
40
41 /* used by new parser */
42 /* yacc/lex love globals!!! */
43
44 struct ip_value
45 {
46 struct rb_sockaddr_storage ip;
47 int ip_mask;
48 int type;
49 };
50
51 extern FILE *conf_fbfile_in;
52 extern char conf_line_in[256];
53
54 struct ConfItem
55 {
56 unsigned int status; /* If CONF_ILLEGAL, delete when no clients */
57 unsigned int flags;
58 int clients; /* Number of *LOCAL* clients using this */
59 union
60 {
61 char *name; /* IRC name, nick, server name, or original u@h */
62 const char *oper;
63 } info;
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) */
70 time_t created; /* Creation time (for klines etc) */
71 time_t lifetime; /* Propagated lines: remember until this time */
72 char *className; /* Name of class */
73 struct Class *c_class; /* Class of connection */
74 rb_patricia_node_t *pnode; /* Our patricia node */
75 };
76
77 #define CONF_ILLEGAL 0x80000000
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
85 #define CONF_DLINE 0x020000
86 #define CONF_EXEMPTDLINE 0x100000
87
88 #define IsIllegal(x) ((x)->status & CONF_ILLEGAL)
89
90 /* aConfItem->flags */
91
92 /* Generic flags... */
93 #define CONF_FLAGS_TEMPORARY 0x00800000
94 #define CONF_FLAGS_NEED_SSL 0x00000002
95 #define CONF_FLAGS_MYOPER 0x00080000 /* need to rewrite info.oper on burst */
96 /* auth{} flags... */
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
102 #define CONF_FLAGS_SPOOF_NOTICE 0x00000400
103 #define CONF_FLAGS_REDIR 0x00000800
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
110 #define CONF_FLAGS_EXTEND_CHANS 0x00080000
111 #define CONF_FLAGS_ENCRYPTED 0x00200000
112 #define CONF_FLAGS_EXEMPTDNSBL 0x04000000
113 #define CONF_FLAGS_EXEMPTPROXY 0x08000000
114 #define CONF_FLAGS_ALLOW_SCTP 0x10000000
115
116
117 /* Macros for struct ConfItem */
118 #define IsConfBan(x) ((x)->status & (CONF_KILL|CONF_XLINE|CONF_DLINE|\
119 CONF_RESV_CHANNEL|CONF_RESV_NICK))
120
121 #define IsNoTilde(x) ((x)->flags & CONF_FLAGS_NO_TILDE)
122 #define IsNeedIdentd(x) ((x)->flags & CONF_FLAGS_NEED_IDENTD)
123 #define IsConfExemptKline(x) ((x)->flags & CONF_FLAGS_EXEMPTKLINE)
124 #define IsConfExemptLimits(x) ((x)->flags & CONF_FLAGS_NOLIMIT)
125 #define IsConfExemptFlood(x) ((x)->flags & CONF_FLAGS_EXEMPTFLOOD)
126 #define IsConfExemptSpambot(x) ((x)->flags & CONF_FLAGS_EXEMPTSPAMBOT)
127 #define IsConfExemptShide(x) ((x)->flags & CONF_FLAGS_EXEMPTSHIDE)
128 #define IsConfExemptJupe(x) ((x)->flags & CONF_FLAGS_EXEMPTJUPE)
129 #define IsConfExemptResv(x) ((x)->flags & CONF_FLAGS_EXEMPTRESV)
130 #define IsConfDoSpoofIp(x) ((x)->flags & CONF_FLAGS_SPOOF_IP)
131 #define IsConfSpoofNotice(x) ((x)->flags & CONF_FLAGS_SPOOF_NOTICE)
132 #define IsConfEncrypted(x) ((x)->flags & CONF_FLAGS_ENCRYPTED)
133 #define IsNeedSasl(x) ((x)->flags & CONF_FLAGS_NEED_SASL)
134 #define IsConfExemptDNSBL(x) ((x)->flags & CONF_FLAGS_EXEMPTDNSBL)
135 #define IsConfExemptProxy(x) ((x)->flags & CONF_FLAGS_EXEMPTPROXY)
136 #define IsConfExtendChans(x) ((x)->flags & CONF_FLAGS_EXTEND_CHANS)
137 #define IsConfSSLNeeded(x) ((x)->flags & CONF_FLAGS_NEED_SSL)
138 #define IsConfAllowSCTP(x) ((x)->flags & CONF_FLAGS_ALLOW_SCTP)
139
140 /* flag definitions for opers now in client.h */
141
142 struct config_file_entry
143 {
144 const char *dpath; /* DPATH if set from command line */
145 const char *configfile;
146
147 char *default_operstring;
148 char *default_adminstring;
149 char *servicestring;
150 char *kline_reason;
151
152 char *identifyservice;
153 char *identifycommand;
154
155 char *sasl_service;
156
157 char *fname_userlog;
158 char *fname_fuserlog;
159 char *fname_operlog;
160 char *fname_foperlog;
161 char *fname_serverlog;
162 char *fname_killlog;
163 char *fname_klinelog;
164 char *fname_operspylog;
165 char *fname_ioerrorlog;
166
167 unsigned char compression_level;
168 int disable_fake_channels;
169 int dots_in_ident;
170 int failed_oper_notice;
171 int anti_nick_flood;
172 int anti_spam_exit_message_time;
173 int max_accept;
174 int max_monitor;
175 int max_nick_time;
176 int max_nick_changes;
177 int ts_max_delta;
178 int ts_warn_delta;
179 int dline_with_reason;
180 int kline_with_reason;
181 int kline_delay;
182 int warn_no_nline;
183 int nick_delay;
184 int non_redundant_klines;
185 int stats_e_disabled;
186 int stats_c_oper_only;
187 int stats_y_oper_only;
188 int stats_h_oper_only;
189 int stats_o_oper_only;
190 int stats_k_oper_only;
191 int stats_i_oper_only;
192 int stats_P_oper_only;
193 int map_oper_only;
194 int operspy_admin_only;
195 int pace_wait;
196 int pace_wait_simple;
197 int short_motd;
198 int no_oper_flood;
199 int hide_server;
200 int hide_spoof_ips;
201 int hide_error_messages;
202 int client_exit;
203 int oper_only_umodes;
204 int oper_umodes;
205 int oper_snomask;
206 int max_targets;
207 int caller_id_wait;
208 int min_nonwildcard;
209 int min_nonwildcard_simple;
210 int default_floodcount;
211 int default_ident_timeout;
212 int ping_cookie;
213 int tkline_expire_notices;
214 int use_whois_actually;
215 int disable_auth;
216 int connect_timeout;
217 int burst_away;
218 int reject_ban_time;
219 int reject_after_count;
220 int reject_duration;
221 int throttle_count;
222 int throttle_duration;
223 int target_change;
224 int collision_fnc;
225 int resv_fnc;
226 int default_umodes;
227 int global_snotices;
228 int operspy_dont_care_user_info;
229 int use_propagated_bans;
230 int max_ratelimit_tokens;
231 int away_interval;
232
233 int client_flood_max_lines;
234 int client_flood_burst_rate;
235 int client_flood_burst_max;
236 int client_flood_message_time;
237 int client_flood_message_num;
238
239 unsigned int nicklen;
240 int certfp_method;
241
242 int hide_opers_in_whois;
243 };
244
245 struct config_channel_entry
246 {
247 int use_except;
248 int use_invex;
249 int use_forward;
250 int use_knock;
251 int knock_delay;
252 int knock_delay_channel;
253 int max_bans;
254 int max_bans_large;
255 int max_chans_per_user;
256 int max_chans_per_user_large;
257 int no_create_on_split;
258 int no_join_on_split;
259 int default_split_server_count;
260 int default_split_user_count;
261 int burst_topicwho;
262 int kick_on_split_riding;
263 int only_ascii_channels;
264 int resv_forcepart;
265 int channel_target_change;
266 int disable_local_channels;
267 unsigned int autochanmodes;
268 int displayed_usercount;
269 int strip_topic_colors;
270 };
271
272 struct config_server_hide
273 {
274 int flatten_links;
275 int links_delay;
276 int hidden;
277 int disable_hidden;
278 };
279
280 struct server_info
281 {
282 char *name;
283 char sid[4];
284 char *description;
285 char *network_name;
286 int hub;
287 struct rb_sockaddr_storage bind4;
288 struct rb_sockaddr_storage bind6;
289 int default_max_clients;
290 char *ssl_private_key;
291 char *ssl_ca_cert;
292 char *ssl_cert;
293 char *ssl_dh_params;
294 char *ssl_cipher_list;
295 int ssld_count;
296 int wsockd_count;
297 };
298
299 struct admin_info
300 {
301 char *name;
302 char *description;
303 char *email;
304 };
305
306 struct alias_entry
307 {
308 char *name;
309 char *target;
310 int flags; /* reserved for later use */
311 };
312
313 /* All variables are GLOBAL */
314 extern struct config_file_entry ConfigFileEntry; /* defined in ircd.c */
315 extern struct config_channel_entry ConfigChannel; /* defined in channel.c */
316 extern struct config_server_hide ConfigServerHide; /* defined in s_conf.c */
317 extern struct server_info ServerInfo; /* defined in ircd.c */
318 extern struct admin_info AdminInfo; /* defined in ircd.c */
319 /* End GLOBAL section */
320
321 extern rb_dlink_list service_list;
322
323 extern rb_dlink_list prop_bans;
324
325 typedef enum temp_list
326 {
327 TEMP_MIN,
328 TEMP_HOUR,
329 TEMP_DAY,
330 TEMP_WEEK,
331 LAST_TEMP_TYPE
332 } temp_list;
333
334 extern rb_dlink_list temp_klines[LAST_TEMP_TYPE];
335 extern rb_dlink_list temp_dlines[LAST_TEMP_TYPE];
336
337 extern void init_s_conf(void);
338
339 extern struct ConfItem *make_conf(void);
340 extern void free_conf(struct ConfItem *);
341
342 extern rb_dlink_node *find_prop_ban(unsigned int status, const char *user, const char *host);
343 extern void deactivate_conf(struct ConfItem *, rb_dlink_node *, time_t);
344 extern void replace_old_ban(struct ConfItem *);
345
346 extern void read_conf_files(bool cold);
347
348 extern int attach_conf(struct Client *, struct ConfItem *);
349 extern int check_client(struct Client *client_p, struct Client *source_p, const char *);
350
351 extern int detach_conf(struct Client *);
352
353 extern struct ConfItem *find_tkline(const char *, const char *, struct sockaddr *);
354 extern char *show_iline_prefix(struct Client *, struct ConfItem *, char *);
355 extern void get_printable_conf(struct ConfItem *,
356 char **, char **, const char **, char **, int *, char **);
357 extern char *get_user_ban_reason(struct ConfItem *aconf);
358 extern void get_printable_kline(struct Client *, struct ConfItem *,
359 char **, char **, char **, char **);
360
361 extern void yyerror(const char *);
362 extern int conf_yy_fatal_error(const char *);
363 extern int conf_fgets(char *, int, FILE *);
364
365 extern int valid_wild_card(const char *, const char *);
366 extern void add_temp_kline(struct ConfItem *);
367 extern void add_temp_dline(struct ConfItem *);
368 extern void report_temp_klines(struct Client *);
369 extern void show_temp_klines(struct Client *, rb_dlink_list *);
370
371 extern bool rehash(bool);
372 extern void rehash_bans(void);
373
374 extern int conf_add_server(struct ConfItem *, int);
375 extern void conf_add_class_to_conf(struct ConfItem *);
376 extern void conf_add_me(struct ConfItem *);
377 extern void conf_add_class(struct ConfItem *, int);
378 extern void conf_add_d_conf(struct ConfItem *);
379 extern void flush_expired_ips(void *);
380
381 extern char *get_oper_name(struct Client *client_p);
382
383 extern int yylex(void);
384
385 extern unsigned long cidr_to_bitmask[];
386
387 extern char conffilebuf[BUFSIZE + 1];
388 extern int lineno;
389
390 #define NOT_AUTHORISED (-1)
391 #define I_SOCKET_ERROR (-2)
392 #define I_LINE_FULL (-3)
393 #define BANNED_CLIENT (-4)
394 #define TOO_MANY_LOCAL (-6)
395 #define TOO_MANY_GLOBAL (-7)
396 #define TOO_MANY_IDENT (-8)
397
398 #endif /* INCLUDED_s_conf_h */