]> jfr.im git - solanum.git/blame - include/s_conf.h
Add a configuration option for ident_timeout.
[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
23 *
cda8e9b8 24 * $Id: s_conf.h 3550 2007-08-09 06:47:26Z nenolod $
212380e3
AC
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"
212380e3
AC
39
40struct Client;
41struct DNSReply;
42struct hostent;
43
44/* used by new parser */
45/* yacc/lex love globals!!! */
46
47struct ip_value
48{
e7046ee5 49 struct rb_sockaddr_storage ip;
212380e3
AC
50 int ip_mask;
51 int type;
52};
53
54extern FILE *conf_fbfile_in;
55extern char conf_line_in[256];
56
54ac8b60
VY
57struct ConfItem
58{
54ac8b60
VY
59 unsigned int status; /* If CONF_ILLEGAL, delete when no clients */
60 unsigned int flags;
61 int clients; /* Number of *LOCAL* clients using this */
27f616dd
JT
62 union
63 {
64 char *name; /* IRC name, nick, server name, or original u@h */
65 const char *oper;
66 } info;
54ac8b60
VY
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) */
b52c2949 73 time_t created; /* Creation time (for klines etc) */
9197bc35 74 time_t lifetime; /* Propagated lines: remember until this time */
54ac8b60
VY
75 char *className; /* Name of class */
76 struct Class *c_class; /* Class of connection */
77 rb_patricia_node_t *pnode; /* Our patricia node */
212380e3
AC
78};
79
80#define CONF_ILLEGAL 0x80000000
212380e3
AC
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
212380e3
AC
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... */
ce3801b1 96#define CONF_FLAGS_TEMPORARY 0x00800000
b1594414 97#define CONF_FLAGS_NEED_SSL 0x00000002
431a1a27 98#define CONF_FLAGS_MYOPER 0x00080000 /* need to rewrite info.oper on burst */
ce3801b1 99/* auth{} flags... */
212380e3
AC
100#define CONF_FLAGS_NO_TILDE 0x00000004
101#define CONF_FLAGS_NEED_IDENTD 0x00000008
212380e3
AC
102#define CONF_FLAGS_EXEMPTKLINE 0x00000040
103#define CONF_FLAGS_NOLIMIT 0x00000080
212380e3
AC
104#define CONF_FLAGS_SPOOF_IP 0x00000200
105#define CONF_FLAGS_SPOOF_NOTICE 0x00000400
106#define CONF_FLAGS_REDIR 0x00000800
212380e3
AC
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
212380e3 113#define CONF_FLAGS_ENCRYPTED 0x00200000
212380e3
AC
114#define CONF_FLAGS_EXEMPTDNSBL 0x04000000
115
116
117/* Macros for struct ConfItem */
27f616dd
JT
118#define IsConfBan(x) ((x)->status & (CONF_KILL|CONF_XLINE|CONF_DLINE|\
119 CONF_RESV_CHANNEL|CONF_RESV_NICK))
120
212380e3
AC
121#define IsNoTilde(x) ((x)->flags & CONF_FLAGS_NO_TILDE)
122#define IsNeedIdentd(x) ((x)->flags & CONF_FLAGS_NEED_IDENTD)
212380e3
AC
123#define IsConfExemptKline(x) ((x)->flags & CONF_FLAGS_EXEMPTKLINE)
124#define IsConfExemptLimits(x) ((x)->flags & CONF_FLAGS_NOLIMIT)
212380e3
AC
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)
212380e3
AC
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)
212380e3
AC
133#define IsNeedSasl(x) ((x)->flags & CONF_FLAGS_NEED_SASL)
134#define IsConfExemptDNSBL(x) ((x)->flags & CONF_FLAGS_EXEMPTDNSBL)
b1594414 135#define IsConfSSLNeeded(x) ((x)->flags & CONF_FLAGS_NEED_SSL)
212380e3
AC
136
137/* flag definitions for opers now in client.h */
138
139struct config_file_entry
140{
141 const char *dpath; /* DPATH if set from command line */
142 const char *configfile;
212380e3 143
212380e3
AC
144 char *egdpool_path;
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 *fname_userlog;
155 char *fname_fuserlog;
156 char *fname_operlog;
157 char *fname_foperlog;
158 char *fname_serverlog;
159 char *fname_killlog;
212380e3
AC
160 char *fname_klinelog;
161 char *fname_operspylog;
162 char *fname_ioerrorlog;
163
164 unsigned char compression_level;
165 int disable_fake_channels;
212380e3
AC
166 int dots_in_ident;
167 int failed_oper_notice;
168 int anti_nick_flood;
169 int anti_spam_exit_message_time;
170 int max_accept;
171 int max_monitor;
172 int max_nick_time;
173 int max_nick_changes;
174 int ts_max_delta;
175 int ts_warn_delta;
176 int dline_with_reason;
177 int kline_with_reason;
178 int kline_delay;
179 int warn_no_nline;
180 int nick_delay;
181 int non_redundant_klines;
182 int stats_e_disabled;
183 int stats_c_oper_only;
184 int stats_y_oper_only;
185 int stats_h_oper_only;
186 int stats_o_oper_only;
187 int stats_k_oper_only;
188 int stats_i_oper_only;
189 int stats_P_oper_only;
190 int map_oper_only;
191 int operspy_admin_only;
192 int pace_wait;
193 int pace_wait_simple;
194 int short_motd;
195 int no_oper_flood;
212380e3
AC
196 int hide_server;
197 int hide_spoof_ips;
198 int hide_error_messages;
199 int client_exit;
200 int oper_only_umodes;
201 int oper_umodes;
202 int oper_snomask;
203 int max_targets;
204 int caller_id_wait;
205 int min_nonwildcard;
206 int min_nonwildcard_simple;
207 int default_floodcount;
208 int client_flood;
0ffb8106 209 int ident_timeout;
212380e3
AC
210 int use_egd;
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;
43946961
JT
220 int throttle_count;
221 int throttle_duration;
212380e3
AC
222 int target_change;
223 int collision_fnc;
224 int default_umodes;
225 int global_snotices;
226 int operspy_dont_care_user_info;
1702b694 227 int use_propagated_bans;
212380e3
AC
228};
229
230struct config_channel_entry
231{
232 int use_except;
233 int use_invex;
234 int use_knock;
235 int use_forward;
236 int knock_delay;
237 int knock_delay_channel;
238 int max_bans;
239 int max_bans_large;
240 int max_chans_per_user;
241 int no_create_on_split;
242 int no_join_on_split;
243 int default_split_server_count;
244 int default_split_user_count;
245 int burst_topicwho;
212380e3 246 int kick_on_split_riding;
6865c0b0 247 int only_ascii_channels;
c2c25552 248 int resv_forcepart;
212380e3
AC
249};
250
251struct config_server_hide
252{
253 int flatten_links;
254 int links_delay;
212380e3
AC
255 int hidden;
256 int disable_hidden;
257};
258
259struct server_info
260{
261 char *name;
d764f7ce 262 char sid[4];
212380e3
AC
263 char *description;
264 char *network_name;
265 char *network_desc;
266 int hub;
212380e3 267 struct sockaddr_in ip;
c6d72037 268 int default_max_clients;
9ea3ea10 269#ifdef RB_IPV6
212380e3
AC
270 struct sockaddr_in6 ip6;
271#endif
272 int specific_ipv4_vhost;
9ea3ea10 273#ifdef RB_IPV6
212380e3
AC
274 int specific_ipv6_vhost;
275#endif
8bd5767b
JT
276 char *ssl_private_key;
277 char *ssl_ca_cert;
278 char *ssl_cert;
279 char *ssl_dh_params;
c6d72037 280 int ssld_count;
212380e3
AC
281};
282
283struct admin_info
284{
285 char *name;
286 char *description;
287 char *email;
288};
289
290struct alias_entry
291{
292 char *name;
293 char *target;
294 int flags; /* reserved for later use */
295 int hits;
296};
297
298/* All variables are GLOBAL */
299extern int specific_ipv4_vhost; /* used in s_bsd.c */
300extern int specific_ipv6_vhost;
301extern struct config_file_entry ConfigFileEntry; /* defined in ircd.c */
302extern struct config_channel_entry ConfigChannel; /* defined in channel.c */
303extern struct config_server_hide ConfigServerHide; /* defined in s_conf.c */
304extern struct server_info ServerInfo; /* defined in ircd.c */
305extern struct admin_info AdminInfo; /* defined in ircd.c */
306/* End GLOBAL section */
307
2e819b6b 308extern rb_dlink_list service_list;
212380e3 309
9197bc35
JT
310extern rb_dlink_list prop_bans;
311
212380e3
AC
312typedef enum temp_list
313{
314 TEMP_MIN,
315 TEMP_HOUR,
316 TEMP_DAY,
317 TEMP_WEEK,
318 LAST_TEMP_TYPE
319} temp_list;
320
2e819b6b
JT
321extern rb_dlink_list temp_klines[LAST_TEMP_TYPE];
322extern rb_dlink_list temp_dlines[LAST_TEMP_TYPE];
212380e3
AC
323
324extern void init_s_conf(void);
325
326extern struct ConfItem *make_conf(void);
327extern void free_conf(struct ConfItem *);
328
431a1a27 329extern rb_dlink_node *find_prop_ban(unsigned int status, const char *user, const char *host);
9197bc35 330extern void deactivate_conf(struct ConfItem *, rb_dlink_node *);
3cbbfb25 331extern void replace_old_ban(struct ConfItem *);
9197bc35 332
212380e3
AC
333extern void read_conf_files(int cold);
334
335extern int attach_conf(struct Client *, struct ConfItem *);
336extern int check_client(struct Client *client_p, struct Client *source_p, const char *);
337
338extern int detach_conf(struct Client *);
339
212380e3
AC
340extern struct ConfItem *find_tkline(const char *, const char *, struct sockaddr *);
341extern char *show_iline_prefix(struct Client *, struct ConfItem *, char *);
342extern void get_printable_conf(struct ConfItem *,
343 char **, char **, char **, char **, int *, char **);
a12ad044 344extern char *get_user_ban_reason(struct ConfItem *aconf);
54ac8b60
VY
345extern void get_printable_kline(struct Client *, struct ConfItem *,
346 char **, char **, char **, char **);
212380e3
AC
347
348extern void yyerror(const char *);
349extern int conf_yy_fatal_error(const char *);
350extern int conf_fgets(char *, int, FILE *);
351
5c2b9eaf 352extern int valid_wild_card(const char *, const char *);
212380e3
AC
353extern void add_temp_kline(struct ConfItem *);
354extern void add_temp_dline(struct ConfItem *);
355extern void report_temp_klines(struct Client *);
5b96d9a6 356extern void show_temp_klines(struct Client *, rb_dlink_list *);
212380e3 357
212380e3
AC
358extern int rehash(int);
359extern void rehash_bans(int);
360
361extern int conf_add_server(struct ConfItem *, int);
362extern void conf_add_class_to_conf(struct ConfItem *);
363extern void conf_add_me(struct ConfItem *);
364extern void conf_add_class(struct ConfItem *, int);
365extern void conf_add_d_conf(struct ConfItem *);
366extern void flush_expired_ips(void *);
367
212380e3
AC
368extern char *get_oper_name(struct Client *client_p);
369
370extern int yylex(void);
371
372extern unsigned long cidr_to_bitmask[];
373
374extern char conffilebuf[IRCD_BUFSIZE + 1];
375extern int lineno;
376
377#define NOT_AUTHORISED (-1)
378#define SOCKET_ERROR (-2)
379#define I_LINE_FULL (-3)
380#define BANNED_CLIENT (-4)
381#define TOO_MANY_LOCAL (-6)
382#define TOO_MANY_GLOBAL (-7)
383#define TOO_MANY_IDENT (-8)
384
385#endif /* INCLUDED_s_conf_h */