]> jfr.im git - irc/rqf/shadowircd.git/blob - include/s_conf.h
Add explicit support for being installed into a system triggered with --enable-fhs...
[irc/rqf/shadowircd.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
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"
38
39 struct Client;
40 struct DNSReply;
41 struct hostent;
42
43 /* used by new parser */
44 /* yacc/lex love globals!!! */
45
46 struct ip_value
47 {
48 struct rb_sockaddr_storage ip;
49 int ip_mask;
50 int type;
51 };
52
53 extern FILE *conf_fbfile_in;
54 extern char conf_line_in[256];
55
56 struct ConfItem
57 {
58 unsigned int status; /* If CONF_ILLEGAL, delete when no clients */
59 unsigned int flags;
60 int clients; /* Number of *LOCAL* clients using this */
61 union
62 {
63 char *name; /* IRC name, nick, server name, or original u@h */
64 const char *oper;
65 } info;
66 char *host; /* host part of user@host */
67 char *passwd; /* doubles as kline reason *ugh* */
68 char *spasswd; /* Password to send. */
69 char *autojoin; /* channels for users to autojoin to on connect */
70 char *autojoin_opers; /* channels for opers to autojoin on oper-up */
71 char *user; /* user part of user@host */
72 int port;
73 time_t hold; /* Hold action until this time (calendar time) */
74 time_t created; /* Creation time (for klines etc) */
75 time_t lifetime; /* Propagated lines: remember until this time */
76 char *className; /* Name of class */
77 struct Class *c_class; /* Class of connection */
78 rb_patricia_node_t *pnode; /* Our patricia node */
79 };
80
81 #define CONF_ILLEGAL 0x80000000
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
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... */
97 #define CONF_FLAGS_TEMPORARY 0x00800000
98 #define CONF_FLAGS_NEED_SSL 0x00000002
99 #define CONF_FLAGS_MYOPER 0x00080000 /* need to rewrite info.oper on burst */
100 /* auth{} flags... */
101 #define CONF_FLAGS_NO_TILDE 0x00000004
102 #define CONF_FLAGS_NEED_IDENTD 0x00000008
103 #define CONF_FLAGS_EXEMPTKLINE 0x00000040
104 #define CONF_FLAGS_NOLIMIT 0x00000080
105 #define CONF_FLAGS_SPOOF_IP 0x00000200
106 #define CONF_FLAGS_SPOOF_NOTICE 0x00000400
107 #define CONF_FLAGS_REDIR 0x00000800
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
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 IsConfSSLNeeded(x) ((x)->flags & CONF_FLAGS_NEED_SSL)
137
138 /* flag definitions for opers now in client.h */
139
140 struct config_file_entry
141 {
142 const char *dpath; /* DPATH if set from command line */
143 const char *configfile;
144
145 char *egdpool_path;
146
147 char *default_operstring;
148 char *default_adminstring;
149 char *default_operhost;
150 char *static_quit;
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;
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 hide_channel_below_users;
170 int dots_in_ident;
171 int failed_oper_notice;
172 int anti_nick_flood;
173 int use_part_messages;
174 int anti_spam_exit_message_time;
175 int max_accept;
176 int max_monitor;
177 int max_nick_time;
178 int max_nick_changes;
179 int ts_max_delta;
180 int ts_warn_delta;
181 int dline_with_reason;
182 int kline_with_reason;
183 int kline_delay;
184 int warn_no_nline;
185 int nick_delay;
186 int non_redundant_klines;
187 int stats_e_disabled;
188 int stats_c_oper_only;
189 int stats_y_oper_only;
190 int stats_h_oper_only;
191 int stats_o_oper_only;
192 int stats_k_oper_only;
193 int stats_i_oper_only;
194 int stats_P_oper_only;
195 int map_oper_only;
196 int operspy_admin_only;
197 int pace_wait;
198 int pace_wait_simple;
199 int short_motd;
200 int no_oper_flood;
201 int true_no_oper_flood;
202 int hide_server;
203 int hide_spoof_ips;
204 int hide_error_messages;
205 int client_exit;
206 int oper_only_umodes;
207 int oper_umodes;
208 int oper_snomask;
209 int max_targets;
210 int caller_id_wait;
211 int min_nonwildcard;
212 int min_nonwildcard_simple;
213 int default_floodcount;
214 int client_flood;
215 int default_ident_timeout;
216 int use_egd;
217 int ping_cookie;
218 int tkline_expire_notices;
219 int use_whois_actually;
220 int disable_auth;
221 int connect_timeout;
222 int burst_away;
223 int reject_ban_time;
224 int reject_after_count;
225 int reject_duration;
226 int throttle_count;
227 int throttle_duration;
228 int target_change;
229 int collision_fnc;
230 int default_umodes;
231 int global_snotices;
232 int operspy_dont_care_user_info;
233 int use_propagated_bans;
234 int secret_channels_in_whois;
235 int expire_override_time;
236 };
237
238 struct config_channel_entry
239 {
240 char * autochanmodes;
241 char * exemptchanops;
242 char * disabledmodes;
243 int admin_on_channel_create;
244 int use_halfop;
245 int use_admin;
246 int use_except;
247 int use_invex;
248 int use_knock;
249 int use_forward;
250 int use_local_channels;
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 no_create_on_split;
257 int no_join_on_split;
258 int default_split_server_count;
259 int default_split_user_count;
260 int burst_topicwho;
261 int kick_on_split_riding;
262 int only_ascii_channels;
263 int cycle_host_change;
264 int host_in_topic;
265 int resv_forcepart;
266 int channel_target_change;
267
268 int exempt_cmode_c;
269 int exempt_cmode_C;
270 int exempt_cmode_D;
271 int exempt_cmode_T;
272 int exempt_cmode_N;
273 int exempt_cmode_G;
274 int exempt_cmode_K;
275 };
276
277 struct config_server_hide
278 {
279 int flatten_links;
280 int links_delay;
281 int hidden;
282 int disable_hidden;
283 };
284
285 struct server_info
286 {
287 char *name;
288 char sid[4];
289 char *description;
290 char *network_name;
291 char *network_desc;
292 char *helpchan;
293 char *helpurl;
294 int hub;
295 struct sockaddr_in ip;
296 int default_max_clients;
297 #ifdef RB_IPV6
298 struct sockaddr_in6 ip6;
299 #endif
300 int specific_ipv4_vhost;
301 #ifdef RB_IPV6
302 int specific_ipv6_vhost;
303 #endif
304 char *ssl_private_key;
305 char *ssl_ca_cert;
306 char *ssl_cert;
307 char *ssl_dh_params;
308 int ssld_count;
309 };
310
311 struct admin_info
312 {
313 char *name;
314 char *description;
315 char *email;
316 };
317
318 struct alias_entry
319 {
320 char *name;
321 char *target;
322 int flags; /* reserved for later use */
323 int hits;
324 };
325
326 /* All variables are GLOBAL */
327 extern int specific_ipv4_vhost; /* used in s_bsd.c */
328 extern int specific_ipv6_vhost;
329 extern struct config_file_entry ConfigFileEntry; /* defined in ircd.c */
330 extern struct config_channel_entry ConfigChannel; /* defined in channel.c */
331 extern struct config_server_hide ConfigServerHide; /* defined in s_conf.c */
332 extern struct server_info ServerInfo; /* defined in ircd.c */
333 extern struct admin_info AdminInfo; /* defined in ircd.c */
334 /* End GLOBAL section */
335
336 extern rb_dlink_list service_list;
337
338 extern rb_dlink_list prop_bans;
339
340 typedef enum temp_list
341 {
342 TEMP_MIN,
343 TEMP_HOUR,
344 TEMP_DAY,
345 TEMP_WEEK,
346 LAST_TEMP_TYPE
347 } temp_list;
348
349 extern rb_dlink_list temp_klines[LAST_TEMP_TYPE];
350 extern rb_dlink_list temp_dlines[LAST_TEMP_TYPE];
351
352 extern void init_s_conf(void);
353
354 extern struct ConfItem *make_conf(void);
355 extern void free_conf(struct ConfItem *);
356
357 extern rb_dlink_node *find_prop_ban(unsigned int status, const char *user, const char *host);
358 extern void deactivate_conf(struct ConfItem *, rb_dlink_node *);
359 extern void replace_old_ban(struct ConfItem *);
360
361 extern void read_conf_files(int cold);
362
363 extern int attach_conf(struct Client *, struct ConfItem *);
364 extern int check_client(struct Client *client_p, struct Client *source_p, const char *);
365
366 extern int detach_conf(struct Client *);
367
368 extern struct ConfItem *find_tkline(const char *, const char *, struct sockaddr *);
369 extern char *show_iline_prefix(struct Client *, struct ConfItem *, char *);
370 extern void get_printable_conf(struct ConfItem *,
371 char **, char **, char **, char **, int *, char **);
372 extern char *get_user_ban_reason(struct ConfItem *aconf);
373 extern void get_printable_kline(struct Client *, struct ConfItem *,
374 char **, char **, char **, char **);
375
376 extern void yyerror(const char *);
377 extern int conf_yy_fatal_error(const char *);
378 extern int conf_fgets(char *, int, FILE *);
379
380 extern int valid_wild_card(const char *, const char *);
381 extern void add_temp_kline(struct ConfItem *);
382 extern void add_temp_dline(struct ConfItem *);
383 extern void report_temp_klines(struct Client *);
384 extern void show_temp_klines(struct Client *, rb_dlink_list *);
385
386 extern int rehash(int);
387 extern void rehash_bans(int);
388
389 extern int conf_add_server(struct ConfItem *, int);
390 extern void conf_add_class_to_conf(struct ConfItem *);
391 extern void conf_add_me(struct ConfItem *);
392 extern void conf_add_class(struct ConfItem *, int);
393 extern void conf_add_d_conf(struct ConfItem *);
394 extern void flush_expired_ips(void *);
395
396 extern char *get_oper_name(struct Client *client_p);
397
398 extern int yylex(void);
399
400 extern unsigned long cidr_to_bitmask[];
401
402 extern char conffilebuf[IRCD_BUFSIZE + 1];
403 extern int lineno;
404
405 #define NOT_AUTHORISED (-1)
406 #define SOCKET_ERROR (-2)
407 #define I_LINE_FULL (-3)
408 #define BANNED_CLIENT (-4)
409 #define TOO_MANY_LOCAL (-6)
410 #define TOO_MANY_GLOBAL (-7)
411 #define TOO_MANY_IDENT (-8)
412
413 #endif /* INCLUDED_s_conf_h */