]> jfr.im git - irc/rqf/shadowircd.git/blame - include/s_conf.h
SVN Id removal part two
[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 *
212380e3 24 */
25
26#ifndef INCLUDED_s_conf_h
27#define INCLUDED_s_conf_h
28#include "setup.h"
29
30#ifdef HAVE_LIBCRYPTO
31#include <openssl/rsa.h>
32#endif
33
34#include "ircd_defs.h"
35#include "class.h"
36#include "client.h"
37#include "common.h"
212380e3 38
39struct Client;
40struct DNSReply;
41struct hostent;
42
43/* used by new parser */
44/* yacc/lex love globals!!! */
45
46struct ip_value
47{
3ea5fee7 48 struct rb_sockaddr_storage ip;
212380e3 49 int ip_mask;
50 int type;
51};
52
53extern FILE *conf_fbfile_in;
54extern char conf_line_in[256];
55
21c9d815
VY
56struct ConfItem
57{
21c9d815
VY
58 unsigned int status; /* If CONF_ILLEGAL, delete when no clients */
59 unsigned int flags;
60 int clients; /* Number of *LOCAL* clients using this */
a0f4c418
JT
61 union
62 {
63 char *name; /* IRC name, nick, server name, or original u@h */
64 const char *oper;
65 } info;
21c9d815
VY
66 char *host; /* host part of user@host */
67 char *passwd; /* doubles as kline reason *ugh* */
68 char *spasswd; /* Password to send. */
fa72cee1 69 char *autojoin; /* channels for users to autojoin to on connect */
87f58b4f 70 char *autojoin_opers; /* channels for opers to autojoin on oper-up */
21c9d815
VY
71 char *user; /* user part of user@host */
72 int port;
73 time_t hold; /* Hold action until this time (calendar time) */
ce60772d 74 time_t created; /* Creation time (for klines etc) */
12894c88 75 time_t lifetime; /* Propagated lines: remember until this time */
21c9d815
VY
76 char *className; /* Name of class */
77 struct Class *c_class; /* Class of connection */
78 rb_patricia_node_t *pnode; /* Our patricia node */
212380e3 79};
80
81#define CONF_ILLEGAL 0x80000000
212380e3 82#define CONF_CLIENT 0x0002
83#define CONF_KILL 0x0040
84#define CONF_XLINE 0x0080
85#define CONF_RESV_CHANNEL 0x0100
86#define CONF_RESV_NICK 0x0200
87#define CONF_RESV (CONF_RESV_CHANNEL | CONF_RESV_NICK)
88
212380e3 89#define CONF_DLINE 0x20000
90#define CONF_EXEMPTDLINE 0x100000
91
92#define IsIllegal(x) ((x)->status & CONF_ILLEGAL)
93
94/* aConfItem->flags */
95
96/* Generic flags... */
60817ff4 97#define CONF_FLAGS_TEMPORARY 0x00800000
663bbb28 98#define CONF_FLAGS_NEED_SSL 0x00000002
65b8e002 99#define CONF_FLAGS_MYOPER 0x00080000 /* need to rewrite info.oper on burst */
60817ff4 100/* auth{} flags... */
212380e3 101#define CONF_FLAGS_NO_TILDE 0x00000004
102#define CONF_FLAGS_NEED_IDENTD 0x00000008
212380e3 103#define CONF_FLAGS_EXEMPTKLINE 0x00000040
104#define CONF_FLAGS_NOLIMIT 0x00000080
212380e3 105#define CONF_FLAGS_SPOOF_IP 0x00000200
106#define CONF_FLAGS_SPOOF_NOTICE 0x00000400
107#define CONF_FLAGS_REDIR 0x00000800
212380e3 108#define CONF_FLAGS_EXEMPTRESV 0x00002000 /* exempt from resvs */
109#define CONF_FLAGS_EXEMPTFLOOD 0x00004000
110#define CONF_FLAGS_EXEMPTSPAMBOT 0x00008000
111#define CONF_FLAGS_EXEMPTSHIDE 0x00010000
112#define CONF_FLAGS_EXEMPTJUPE 0x00020000 /* exempt from resv generating warnings */
113#define CONF_FLAGS_NEED_SASL 0x00040000
212380e3 114#define CONF_FLAGS_ENCRYPTED 0x00200000
212380e3 115#define CONF_FLAGS_EXEMPTDNSBL 0x04000000
116
117
118/* Macros for struct ConfItem */
a0f4c418
JT
119#define IsConfBan(x) ((x)->status & (CONF_KILL|CONF_XLINE|CONF_DLINE|\
120 CONF_RESV_CHANNEL|CONF_RESV_NICK))
121
212380e3 122#define IsNoTilde(x) ((x)->flags & CONF_FLAGS_NO_TILDE)
123#define IsNeedIdentd(x) ((x)->flags & CONF_FLAGS_NEED_IDENTD)
212380e3 124#define IsConfExemptKline(x) ((x)->flags & CONF_FLAGS_EXEMPTKLINE)
125#define IsConfExemptLimits(x) ((x)->flags & CONF_FLAGS_NOLIMIT)
212380e3 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)
212380e3 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)
212380e3 134#define IsNeedSasl(x) ((x)->flags & CONF_FLAGS_NEED_SASL)
135#define IsConfExemptDNSBL(x) ((x)->flags & CONF_FLAGS_EXEMPTDNSBL)
663bbb28 136#define IsConfSSLNeeded(x) ((x)->flags & CONF_FLAGS_NEED_SSL)
212380e3 137
138/* flag definitions for opers now in client.h */
139
140struct config_file_entry
141{
142 const char *dpath; /* DPATH if set from command line */
143 const char *configfile;
212380e3 144
212380e3 145 char *egdpool_path;
146
147 char *default_operstring;
148 char *default_adminstring;
220c9db5 149 char *default_operhost;
c0e2aa60 150 char *static_quit;
212380e3 151 char *servicestring;
152 char *kline_reason;
153
154 char *identifyservice;
155 char *identifycommand;
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;
212380e3 163 char *fname_klinelog;
164 char *fname_operspylog;
165 char *fname_ioerrorlog;
166
167 unsigned char compression_level;
168 int disable_fake_channels;
212380e3 169 int dots_in_ident;
170 int failed_oper_notice;
171 int anti_nick_flood;
e78f6850 172 int use_part_messages;
212380e3 173 int anti_spam_exit_message_time;
174 int max_accept;
175 int max_monitor;
176 int max_nick_time;
177 int max_nick_changes;
178 int ts_max_delta;
179 int ts_warn_delta;
180 int dline_with_reason;
181 int kline_with_reason;
182 int kline_delay;
183 int warn_no_nline;
184 int nick_delay;
185 int non_redundant_klines;
186 int stats_e_disabled;
187 int stats_c_oper_only;
188 int stats_y_oper_only;
189 int stats_h_oper_only;
190 int stats_o_oper_only;
191 int stats_k_oper_only;
192 int stats_i_oper_only;
193 int stats_P_oper_only;
194 int map_oper_only;
195 int operspy_admin_only;
196 int pace_wait;
197 int pace_wait_simple;
198 int short_motd;
199 int no_oper_flood;
1cc810d3 200 int true_no_oper_flood;
212380e3 201 int hide_server;
202 int hide_spoof_ips;
203 int hide_error_messages;
204 int client_exit;
205 int oper_only_umodes;
206 int oper_umodes;
207 int oper_snomask;
208 int max_targets;
209 int caller_id_wait;
210 int min_nonwildcard;
211 int min_nonwildcard_simple;
212 int default_floodcount;
213 int client_flood;
14340828 214 int default_ident_timeout;
212380e3 215 int use_egd;
216 int ping_cookie;
217 int tkline_expire_notices;
218 int use_whois_actually;
219 int disable_auth;
220 int connect_timeout;
221 int burst_away;
222 int reject_ban_time;
223 int reject_after_count;
224 int reject_duration;
d1275a8f
JT
225 int throttle_count;
226 int throttle_duration;
212380e3 227 int target_change;
228 int collision_fnc;
229 int default_umodes;
230 int global_snotices;
231 int operspy_dont_care_user_info;
504f309e 232 int use_propagated_bans;
837a020a 233 int secret_channels_in_whois;
9ace21a7 234 int expire_override_time;
212380e3 235};
236
237struct config_channel_entry
238{
13ec57db 239 char * autochanmodes;
5ad94b50 240 char * exemptchanops;
46f0c518 241 int use_halfop;
c1c91f94 242 int use_admin;
212380e3 243 int use_except;
244 int use_invex;
245 int use_knock;
246 int use_forward;
0eceaff1 247 int use_local_channels;
212380e3 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 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;
dea418e9 259 int only_ascii_channels;
c3a0fde2 260 int cycle_host_change;
45b9f1cb 261 int host_in_topic;
100563e8 262 int resv_forcepart;
5ad94b50
G
263
264 int exempt_cmode_c;
265 int exempt_cmode_C;
266 int exempt_cmode_D;
267 int exempt_cmode_T;
268 int exempt_cmode_N;
269 int exempt_cmode_G;
270 int exempt_cmode_K;
212380e3 271};
272
273struct config_server_hide
274{
275 int flatten_links;
276 int links_delay;
212380e3 277 int hidden;
278 int disable_hidden;
279};
280
281struct server_info
282{
283 char *name;
660debfa 284 char sid[4];
212380e3 285 char *description;
286 char *network_name;
287 char *network_desc;
ef07b59a
JH
288 char *helpchan;
289 char *helpurl;
212380e3 290 int hub;
212380e3 291 struct sockaddr_in ip;
8db00894 292 int default_max_clients;
2f5fa921 293#ifdef RB_IPV6
212380e3 294 struct sockaddr_in6 ip6;
295#endif
296 int specific_ipv4_vhost;
2f5fa921 297#ifdef RB_IPV6
212380e3 298 int specific_ipv6_vhost;
299#endif
b717a466
JT
300 char *ssl_private_key;
301 char *ssl_ca_cert;
302 char *ssl_cert;
303 char *ssl_dh_params;
8db00894 304 int ssld_count;
212380e3 305};
306
307struct admin_info
308{
309 char *name;
310 char *description;
311 char *email;
312};
313
314struct alias_entry
315{
316 char *name;
317 char *target;
318 int flags; /* reserved for later use */
319 int hits;
320};
321
322/* All variables are GLOBAL */
323extern int specific_ipv4_vhost; /* used in s_bsd.c */
324extern int specific_ipv6_vhost;
325extern struct config_file_entry ConfigFileEntry; /* defined in ircd.c */
326extern struct config_channel_entry ConfigChannel; /* defined in channel.c */
327extern struct config_server_hide ConfigServerHide; /* defined in s_conf.c */
328extern struct server_info ServerInfo; /* defined in ircd.c */
329extern struct admin_info AdminInfo; /* defined in ircd.c */
330/* End GLOBAL section */
331
aa65834c 332extern rb_dlink_list service_list;
212380e3 333
12894c88
JT
334extern rb_dlink_list prop_bans;
335
212380e3 336typedef enum temp_list
337{
338 TEMP_MIN,
339 TEMP_HOUR,
340 TEMP_DAY,
341 TEMP_WEEK,
342 LAST_TEMP_TYPE
343} temp_list;
344
aa65834c
JT
345extern rb_dlink_list temp_klines[LAST_TEMP_TYPE];
346extern rb_dlink_list temp_dlines[LAST_TEMP_TYPE];
212380e3 347
348extern void init_s_conf(void);
349
350extern struct ConfItem *make_conf(void);
351extern void free_conf(struct ConfItem *);
352
65b8e002 353extern rb_dlink_node *find_prop_ban(unsigned int status, const char *user, const char *host);
12894c88 354extern void deactivate_conf(struct ConfItem *, rb_dlink_node *);
112e8a66 355extern void replace_old_ban(struct ConfItem *);
12894c88 356
212380e3 357extern void read_conf_files(int cold);
358
359extern int attach_conf(struct Client *, struct ConfItem *);
360extern int check_client(struct Client *client_p, struct Client *source_p, const char *);
361
362extern int detach_conf(struct Client *);
363
212380e3 364extern struct ConfItem *find_tkline(const char *, const char *, struct sockaddr *);
365extern char *show_iline_prefix(struct Client *, struct ConfItem *, char *);
366extern void get_printable_conf(struct ConfItem *,
367 char **, char **, char **, char **, int *, char **);
157c1f04 368extern char *get_user_ban_reason(struct ConfItem *aconf);
21c9d815
VY
369extern void get_printable_kline(struct Client *, struct ConfItem *,
370 char **, char **, char **, char **);
212380e3 371
372extern void yyerror(const char *);
373extern int conf_yy_fatal_error(const char *);
374extern int conf_fgets(char *, int, FILE *);
375
70fd7fc9 376extern int valid_wild_card(const char *, const char *);
212380e3 377extern void add_temp_kline(struct ConfItem *);
378extern void add_temp_dline(struct ConfItem *);
379extern void report_temp_klines(struct Client *);
08d11e34 380extern void show_temp_klines(struct Client *, rb_dlink_list *);
212380e3 381
212380e3 382extern int rehash(int);
383extern void rehash_bans(int);
384
385extern int conf_add_server(struct ConfItem *, int);
386extern void conf_add_class_to_conf(struct ConfItem *);
387extern void conf_add_me(struct ConfItem *);
388extern void conf_add_class(struct ConfItem *, int);
389extern void conf_add_d_conf(struct ConfItem *);
390extern void flush_expired_ips(void *);
391
212380e3 392extern char *get_oper_name(struct Client *client_p);
393
394extern int yylex(void);
395
396extern unsigned long cidr_to_bitmask[];
397
398extern char conffilebuf[IRCD_BUFSIZE + 1];
399extern int lineno;
400
401#define NOT_AUTHORISED (-1)
402#define SOCKET_ERROR (-2)
403#define I_LINE_FULL (-3)
404#define BANNED_CLIENT (-4)
405#define TOO_MANY_LOCAL (-6)
406#define TOO_MANY_GLOBAL (-7)
407#define TOO_MANY_IDENT (-8)
408
409#endif /* INCLUDED_s_conf_h */