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