]> jfr.im git - irc/rqf/shadowircd.git/blame - include/s_conf.h
Move to ratbox3 reject and throttle code.
[irc/rqf/shadowircd.git] / include / s_conf.h
CommitLineData
212380e3 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 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 39
40struct Client;
41struct DNSReply;
42struct hostent;
43
44/* used by new parser */
45/* yacc/lex love globals!!! */
46
47struct ip_value
48{
3ea5fee7 49 struct rb_sockaddr_storage ip;
212380e3 50 int ip_mask;
51 int type;
52};
53
54extern FILE *conf_fbfile_in;
55extern char conf_line_in[256];
56
21c9d815
VY
57struct ConfItem
58{
59 struct ConfItem *next; /* list node pointer */
60 unsigned int status; /* If CONF_ILLEGAL, delete when no clients */
61 unsigned int flags;
62 int clients; /* Number of *LOCAL* clients using this */
63 char *name; /* IRC name, nick, server name, or original u@h */
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 char *className; /* Name of class */
71 struct Class *c_class; /* Class of connection */
72 rb_patricia_node_t *pnode; /* Our patricia node */
212380e3 73};
74
75#define CONF_ILLEGAL 0x80000000
212380e3 76#define CONF_CLIENT 0x0002
77#define CONF_KILL 0x0040
78#define CONF_XLINE 0x0080
79#define CONF_RESV_CHANNEL 0x0100
80#define CONF_RESV_NICK 0x0200
81#define CONF_RESV (CONF_RESV_CHANNEL | CONF_RESV_NICK)
82
212380e3 83#define CONF_DLINE 0x20000
84#define CONF_EXEMPTDLINE 0x100000
85
86#define IsIllegal(x) ((x)->status & CONF_ILLEGAL)
87
88/* aConfItem->flags */
89
90/* Generic flags... */
60817ff4
JT
91#define CONF_FLAGS_TEMPORARY 0x00800000
92/* auth{} flags... */
212380e3 93#define CONF_FLAGS_NO_TILDE 0x00000004
94#define CONF_FLAGS_NEED_IDENTD 0x00000008
212380e3 95#define CONF_FLAGS_EXEMPTKLINE 0x00000040
96#define CONF_FLAGS_NOLIMIT 0x00000080
212380e3 97#define CONF_FLAGS_SPOOF_IP 0x00000200
98#define CONF_FLAGS_SPOOF_NOTICE 0x00000400
99#define CONF_FLAGS_REDIR 0x00000800
212380e3 100#define CONF_FLAGS_EXEMPTRESV 0x00002000 /* exempt from resvs */
101#define CONF_FLAGS_EXEMPTFLOOD 0x00004000
102#define CONF_FLAGS_EXEMPTSPAMBOT 0x00008000
103#define CONF_FLAGS_EXEMPTSHIDE 0x00010000
104#define CONF_FLAGS_EXEMPTJUPE 0x00020000 /* exempt from resv generating warnings */
105#define CONF_FLAGS_NEED_SASL 0x00040000
212380e3 106#define CONF_FLAGS_ENCRYPTED 0x00200000
212380e3 107#define CONF_FLAGS_EXEMPTDNSBL 0x04000000
108
109
110/* Macros for struct ConfItem */
212380e3 111#define IsNoTilde(x) ((x)->flags & CONF_FLAGS_NO_TILDE)
112#define IsNeedIdentd(x) ((x)->flags & CONF_FLAGS_NEED_IDENTD)
212380e3 113#define IsConfExemptKline(x) ((x)->flags & CONF_FLAGS_EXEMPTKLINE)
114#define IsConfExemptLimits(x) ((x)->flags & CONF_FLAGS_NOLIMIT)
212380e3 115#define IsConfExemptFlood(x) ((x)->flags & CONF_FLAGS_EXEMPTFLOOD)
116#define IsConfExemptSpambot(x) ((x)->flags & CONF_FLAGS_EXEMPTSPAMBOT)
117#define IsConfExemptShide(x) ((x)->flags & CONF_FLAGS_EXEMPTSHIDE)
118#define IsConfExemptJupe(x) ((x)->flags & CONF_FLAGS_EXEMPTJUPE)
119#define IsConfExemptResv(x) ((x)->flags & CONF_FLAGS_EXEMPTRESV)
212380e3 120#define IsConfDoSpoofIp(x) ((x)->flags & CONF_FLAGS_SPOOF_IP)
121#define IsConfSpoofNotice(x) ((x)->flags & CONF_FLAGS_SPOOF_NOTICE)
122#define IsConfEncrypted(x) ((x)->flags & CONF_FLAGS_ENCRYPTED)
212380e3 123#define IsNeedSasl(x) ((x)->flags & CONF_FLAGS_NEED_SASL)
124#define IsConfExemptDNSBL(x) ((x)->flags & CONF_FLAGS_EXEMPTDNSBL)
125
126/* flag definitions for opers now in client.h */
127
128struct config_file_entry
129{
130 const char *dpath; /* DPATH if set from command line */
131 const char *configfile;
132 const char *klinefile;
133 const char *dlinefile;
134 const char *xlinefile;
135 const char *resvfile;
136
137 char *servlink_path;
138 char *egdpool_path;
139
140 char *default_operstring;
141 char *default_adminstring;
142 char *servicestring;
143 char *kline_reason;
144
145 char *identifyservice;
146 char *identifycommand;
147
148 char *fname_userlog;
149 char *fname_fuserlog;
150 char *fname_operlog;
151 char *fname_foperlog;
152 char *fname_serverlog;
153 char *fname_killlog;
212380e3 154 char *fname_klinelog;
155 char *fname_operspylog;
156 char *fname_ioerrorlog;
157
158 unsigned char compression_level;
159 int disable_fake_channels;
212380e3 160 int dots_in_ident;
161 int failed_oper_notice;
162 int anti_nick_flood;
163 int anti_spam_exit_message_time;
164 int max_accept;
165 int max_monitor;
166 int max_nick_time;
167 int max_nick_changes;
168 int ts_max_delta;
169 int ts_warn_delta;
170 int dline_with_reason;
171 int kline_with_reason;
172 int kline_delay;
173 int warn_no_nline;
174 int nick_delay;
175 int non_redundant_klines;
176 int stats_e_disabled;
177 int stats_c_oper_only;
178 int stats_y_oper_only;
179 int stats_h_oper_only;
180 int stats_o_oper_only;
181 int stats_k_oper_only;
182 int stats_i_oper_only;
183 int stats_P_oper_only;
184 int map_oper_only;
185 int operspy_admin_only;
186 int pace_wait;
187 int pace_wait_simple;
188 int short_motd;
189 int no_oper_flood;
212380e3 190 int hide_server;
191 int hide_spoof_ips;
192 int hide_error_messages;
193 int client_exit;
194 int oper_only_umodes;
195 int oper_umodes;
196 int oper_snomask;
197 int max_targets;
198 int caller_id_wait;
199 int min_nonwildcard;
200 int min_nonwildcard_simple;
201 int default_floodcount;
202 int client_flood;
203 int use_egd;
204 int ping_cookie;
205 int tkline_expire_notices;
206 int use_whois_actually;
207 int disable_auth;
208 int connect_timeout;
209 int burst_away;
210 int reject_ban_time;
211 int reject_after_count;
212 int reject_duration;
d1275a8f
JT
213 int throttle_count;
214 int throttle_duration;
212380e3 215 int target_change;
216 int collision_fnc;
217 int default_umodes;
218 int global_snotices;
219 int operspy_dont_care_user_info;
220};
221
222struct config_channel_entry
223{
224 int use_except;
225 int use_invex;
226 int use_knock;
227 int use_forward;
228 int knock_delay;
229 int knock_delay_channel;
230 int max_bans;
231 int max_bans_large;
232 int max_chans_per_user;
233 int no_create_on_split;
234 int no_join_on_split;
235 int default_split_server_count;
236 int default_split_user_count;
237 int burst_topicwho;
212380e3 238 int kick_on_split_riding;
239};
240
241struct config_server_hide
242{
243 int flatten_links;
244 int links_delay;
212380e3 245 int hidden;
246 int disable_hidden;
247};
248
249struct server_info
250{
251 char *name;
252 char sid[3];
253 char *description;
254 char *network_name;
255 char *network_desc;
256 int hub;
212380e3 257 struct sockaddr_in ip;
8db00894 258 int default_max_clients;
2f5fa921 259#ifdef RB_IPV6
212380e3 260 struct sockaddr_in6 ip6;
261#endif
262 int specific_ipv4_vhost;
2f5fa921 263#ifdef RB_IPV6
212380e3 264 int specific_ipv6_vhost;
265#endif
b717a466
JT
266 char *ssl_private_key;
267 char *ssl_ca_cert;
268 char *ssl_cert;
269 char *ssl_dh_params;
8db00894 270 int ssld_count;
212380e3 271};
272
273struct admin_info
274{
275 char *name;
276 char *description;
277 char *email;
278};
279
280struct alias_entry
281{
282 char *name;
283 char *target;
284 int flags; /* reserved for later use */
285 int hits;
286};
287
288/* All variables are GLOBAL */
289extern int specific_ipv4_vhost; /* used in s_bsd.c */
290extern int specific_ipv6_vhost;
291extern struct config_file_entry ConfigFileEntry; /* defined in ircd.c */
292extern struct config_channel_entry ConfigChannel; /* defined in channel.c */
293extern struct config_server_hide ConfigServerHide; /* defined in s_conf.c */
294extern struct server_info ServerInfo; /* defined in ircd.c */
295extern struct admin_info AdminInfo; /* defined in ircd.c */
296/* End GLOBAL section */
297
aa65834c 298extern rb_dlink_list service_list;
212380e3 299
300typedef enum temp_list
301{
302 TEMP_MIN,
303 TEMP_HOUR,
304 TEMP_DAY,
305 TEMP_WEEK,
306 LAST_TEMP_TYPE
307} temp_list;
308
aa65834c
JT
309extern rb_dlink_list temp_klines[LAST_TEMP_TYPE];
310extern rb_dlink_list temp_dlines[LAST_TEMP_TYPE];
212380e3 311
312extern void init_s_conf(void);
313
314extern struct ConfItem *make_conf(void);
315extern void free_conf(struct ConfItem *);
316
317extern void read_conf_files(int cold);
318
319extern int attach_conf(struct Client *, struct ConfItem *);
320extern int check_client(struct Client *client_p, struct Client *source_p, const char *);
321
322extern int detach_conf(struct Client *);
323
212380e3 324extern struct ConfItem *find_tkline(const char *, const char *, struct sockaddr *);
325extern char *show_iline_prefix(struct Client *, struct ConfItem *, char *);
326extern void get_printable_conf(struct ConfItem *,
327 char **, char **, char **, char **, int *, char **);
21c9d815
VY
328extern void get_printable_kline(struct Client *, struct ConfItem *,
329 char **, char **, char **, char **);
212380e3 330
331extern void yyerror(const char *);
332extern int conf_yy_fatal_error(const char *);
333extern int conf_fgets(char *, int, FILE *);
334
335typedef enum
336{
337 CONF_TYPE,
338 KLINE_TYPE,
339 DLINE_TYPE,
340 RESV_TYPE
341}
342KlineType;
343
344extern void write_confitem(KlineType, struct Client *, char *, char *,
345 const char *, const char *, const char *, int);
346extern void add_temp_kline(struct ConfItem *);
347extern void add_temp_dline(struct ConfItem *);
348extern void report_temp_klines(struct Client *);
08d11e34 349extern void show_temp_klines(struct Client *, rb_dlink_list *);
212380e3 350
351extern const char *get_conf_name(KlineType);
352extern int rehash(int);
353extern void rehash_bans(int);
354
355extern int conf_add_server(struct ConfItem *, int);
356extern void conf_add_class_to_conf(struct ConfItem *);
357extern void conf_add_me(struct ConfItem *);
358extern void conf_add_class(struct ConfItem *, int);
359extern void conf_add_d_conf(struct ConfItem *);
360extern void flush_expired_ips(void *);
361
362
363/* XXX consider moving these into kdparse.h */
364extern void parse_k_file(FILE * fb);
365extern void parse_d_file(FILE * fb);
366extern void parse_x_file(FILE * fb);
367extern void parse_resv_file(FILE *);
368extern char *getfield(char *newline);
369
370extern char *get_oper_name(struct Client *client_p);
371
372extern int yylex(void);
373
374extern unsigned long cidr_to_bitmask[];
375
376extern char conffilebuf[IRCD_BUFSIZE + 1];
377extern int lineno;
378
379#define NOT_AUTHORISED (-1)
380#define SOCKET_ERROR (-2)
381#define I_LINE_FULL (-3)
382#define BANNED_CLIENT (-4)
383#define TOO_MANY_LOCAL (-6)
384#define TOO_MANY_GLOBAL (-7)
385#define TOO_MANY_IDENT (-8)
386
387#endif /* INCLUDED_s_conf_h */