]> jfr.im git - irc/rqf/shadowircd.git/blob - include/s_conf.h
Branch merge.
[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 * $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 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 */
73 };
74
75 #define CONF_ILLEGAL 0x80000000
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
83 #define CONF_GLINE 0x10000
84 #define CONF_DLINE 0x20000
85 #define CONF_EXEMPTDLINE 0x100000
86
87 #define IsIllegal(x) ((x)->status & CONF_ILLEGAL)
88
89 /* aConfItem->flags */
90
91 /* Generic flags... */
92 /* access flags... */
93 #define CONF_FLAGS_NO_TILDE 0x00000004
94 #define CONF_FLAGS_NEED_IDENTD 0x00000008
95 #define CONF_FLAGS_EXEMPTKLINE 0x00000040
96 #define CONF_FLAGS_NOLIMIT 0x00000080
97 #define CONF_FLAGS_SPOOF_IP 0x00000200
98 #define CONF_FLAGS_SPOOF_NOTICE 0x00000400
99 #define CONF_FLAGS_REDIR 0x00000800
100 #define CONF_FLAGS_EXEMPTGLINE 0x00001000
101 #define CONF_FLAGS_EXEMPTRESV 0x00002000 /* exempt from resvs */
102 #define CONF_FLAGS_EXEMPTFLOOD 0x00004000
103 #define CONF_FLAGS_EXEMPTSPAMBOT 0x00008000
104 #define CONF_FLAGS_EXEMPTSHIDE 0x00010000
105 #define CONF_FLAGS_EXEMPTJUPE 0x00020000 /* exempt from resv generating warnings */
106 #define CONF_FLAGS_NEED_SASL 0x00040000
107 /* server flags */
108 #define CONF_FLAGS_ALLOW_AUTO_CONN 0x00080000
109 #define CONF_FLAGS_LAZY_LINK 0x00100000
110 #define CONF_FLAGS_ENCRYPTED 0x00200000
111 #define CONF_FLAGS_COMPRESSED 0x00400000
112 #define CONF_FLAGS_TEMPORARY 0x00800000
113 #define CONF_FLAGS_TB 0x01000000
114 #define CONF_FLAGS_VHOSTED 0x02000000
115 #define CONF_FLAGS_EXEMPTDNSBL 0x04000000
116
117
118 /* Macros for struct ConfItem */
119 #define IsNoTilde(x) ((x)->flags & CONF_FLAGS_NO_TILDE)
120 #define IsNeedIdentd(x) ((x)->flags & CONF_FLAGS_NEED_IDENTD)
121 #define IsConfExemptKline(x) ((x)->flags & CONF_FLAGS_EXEMPTKLINE)
122 #define IsConfExemptLimits(x) ((x)->flags & CONF_FLAGS_NOLIMIT)
123 #define IsConfExemptGline(x) ((x)->flags & CONF_FLAGS_EXEMPTGLINE)
124 #define IsConfExemptFlood(x) ((x)->flags & CONF_FLAGS_EXEMPTFLOOD)
125 #define IsConfExemptSpambot(x) ((x)->flags & CONF_FLAGS_EXEMPTSPAMBOT)
126 #define IsConfExemptShide(x) ((x)->flags & CONF_FLAGS_EXEMPTSHIDE)
127 #define IsConfExemptJupe(x) ((x)->flags & CONF_FLAGS_EXEMPTJUPE)
128 #define IsConfExemptResv(x) ((x)->flags & CONF_FLAGS_EXEMPTRESV)
129 #define IsConfDoSpoofIp(x) ((x)->flags & CONF_FLAGS_SPOOF_IP)
130 #define IsConfSpoofNotice(x) ((x)->flags & CONF_FLAGS_SPOOF_NOTICE)
131 #define IsConfEncrypted(x) ((x)->flags & CONF_FLAGS_ENCRYPTED)
132 #define IsConfCompressed(x) ((x)->flags & CONF_FLAGS_COMPRESSED)
133 #define IsConfVhosted(x) ((x)->flags & CONF_FLAGS_VHOSTED)
134 #define IsConfTburst(x) ((x)->flags & CONF_FLAGS_TB)
135 #define IsNeedSasl(x) ((x)->flags & CONF_FLAGS_NEED_SASL)
136 #define IsConfExemptDNSBL(x) ((x)->flags & CONF_FLAGS_EXEMPTDNSBL)
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 const char *klinefile;
145 const char *dlinefile;
146 const char *xlinefile;
147 const char *resvfile;
148
149 char *servlink_path;
150 char *egdpool_path;
151
152 char *default_operstring;
153 char *default_adminstring;
154 char *servicestring;
155 char *kline_reason;
156
157 char *identifyservice;
158 char *identifycommand;
159
160 char *fname_userlog;
161 char *fname_fuserlog;
162 char *fname_operlog;
163 char *fname_foperlog;
164 char *fname_serverlog;
165 char *fname_killlog;
166 char *fname_glinelog;
167 char *fname_klinelog;
168 char *fname_operspylog;
169 char *fname_ioerrorlog;
170
171 unsigned char compression_level;
172 int disable_fake_channels;
173 int dots_in_ident;
174 int failed_oper_notice;
175 int anti_nick_flood;
176 int anti_spam_exit_message_time;
177 int max_accept;
178 int max_monitor;
179 int max_nick_time;
180 int max_nick_changes;
181 int ts_max_delta;
182 int ts_warn_delta;
183 int dline_with_reason;
184 int kline_with_reason;
185 int kline_delay;
186 int warn_no_nline;
187 int nick_delay;
188 int non_redundant_klines;
189 int stats_e_disabled;
190 int stats_c_oper_only;
191 int stats_y_oper_only;
192 int stats_h_oper_only;
193 int stats_o_oper_only;
194 int stats_k_oper_only;
195 int stats_i_oper_only;
196 int stats_P_oper_only;
197 int map_oper_only;
198 int operspy_admin_only;
199 int pace_wait;
200 int pace_wait_simple;
201 int short_motd;
202 int no_oper_flood;
203 int glines;
204 int gline_time;
205 int gline_min_cidr;
206 int gline_min_cidr6;
207 int hide_server;
208 int hide_spoof_ips;
209 int hide_error_messages;
210 int client_exit;
211 int oper_only_umodes;
212 int oper_umodes;
213 int oper_snomask;
214 int max_targets;
215 int caller_id_wait;
216 int min_nonwildcard;
217 int min_nonwildcard_simple;
218 int default_floodcount;
219 int client_flood;
220 int use_egd;
221 int ping_cookie;
222 int tkline_expire_notices;
223 int use_whois_actually;
224 int disable_auth;
225 int connect_timeout;
226 int burst_away;
227 int reject_ban_time;
228 int reject_after_count;
229 int reject_duration;
230 int target_change;
231 int collision_fnc;
232 int default_umodes;
233 int global_snotices;
234 int operspy_dont_care_user_info;
235 int max_unknown_ip;
236 };
237
238 struct config_channel_entry
239 {
240 int use_except;
241 int use_invex;
242 int use_knock;
243 int use_forward;
244 int knock_delay;
245 int knock_delay_channel;
246 int max_bans;
247 int max_bans_large;
248 int max_chans_per_user;
249 int no_create_on_split;
250 int no_join_on_split;
251 int default_split_server_count;
252 int default_split_user_count;
253 int burst_topicwho;
254 int kick_on_split_riding;
255 };
256
257 struct config_server_hide
258 {
259 int flatten_links;
260 int links_delay;
261 int hidden;
262 int disable_hidden;
263 };
264
265 struct server_info
266 {
267 char *name;
268 char sid[3];
269 char *description;
270 char *network_name;
271 char *network_desc;
272 int hub;
273 struct sockaddr_in ip;
274 #ifdef RB_IPV6
275 struct sockaddr_in6 ip6;
276 #endif
277 int specific_ipv4_vhost;
278 #ifdef RB_IPV6
279 int specific_ipv6_vhost;
280 #endif
281
282 int default_max_clients;
283 };
284
285 struct admin_info
286 {
287 char *name;
288 char *description;
289 char *email;
290 };
291
292 struct alias_entry
293 {
294 char *name;
295 char *target;
296 int flags; /* reserved for later use */
297 int hits;
298 };
299
300 /* All variables are GLOBAL */
301 extern int specific_ipv4_vhost; /* used in s_bsd.c */
302 extern int specific_ipv6_vhost;
303 extern struct config_file_entry ConfigFileEntry; /* defined in ircd.c */
304 extern struct config_channel_entry ConfigChannel; /* defined in channel.c */
305 extern struct config_server_hide ConfigServerHide; /* defined in s_conf.c */
306 extern struct server_info ServerInfo; /* defined in ircd.c */
307 extern struct admin_info AdminInfo; /* defined in ircd.c */
308 /* End GLOBAL section */
309
310 rb_dlink_list service_list;
311
312 typedef enum temp_list
313 {
314 TEMP_MIN,
315 TEMP_HOUR,
316 TEMP_DAY,
317 TEMP_WEEK,
318 LAST_TEMP_TYPE
319 } temp_list;
320
321 rb_dlink_list temp_klines[LAST_TEMP_TYPE];
322 rb_dlink_list temp_dlines[LAST_TEMP_TYPE];
323
324 extern void init_s_conf(void);
325
326 extern struct ConfItem *make_conf(void);
327 extern void free_conf(struct ConfItem *);
328
329 extern void read_conf_files(int cold);
330
331 extern int attach_conf(struct Client *, struct ConfItem *);
332 extern int check_client(struct Client *client_p, struct Client *source_p, const char *);
333
334 extern int detach_conf(struct Client *);
335
336 extern struct ConfItem *find_tkline(const char *, const char *, struct sockaddr *);
337 extern char *show_iline_prefix(struct Client *, struct ConfItem *, char *);
338 extern void get_printable_conf(struct ConfItem *,
339 char **, char **, char **, char **, int *, char **);
340 extern void get_printable_kline(struct Client *, struct ConfItem *,
341 char **, char **, char **, char **);
342
343 extern void yyerror(const char *);
344 extern int conf_yy_fatal_error(const char *);
345 extern int conf_fgets(char *, int, FILE *);
346
347 typedef enum
348 {
349 CONF_TYPE,
350 KLINE_TYPE,
351 DLINE_TYPE,
352 RESV_TYPE
353 }
354 KlineType;
355
356 extern void write_confitem(KlineType, struct Client *, char *, char *,
357 const char *, const char *, const char *, int);
358 extern void add_temp_kline(struct ConfItem *);
359 extern void add_temp_dline(struct ConfItem *);
360 extern void report_temp_klines(struct Client *);
361 extern void show_temp_klines(struct Client *, rb_dlink_list *);
362
363 extern const char *get_conf_name(KlineType);
364 extern int rehash(int);
365 extern void rehash_bans(int);
366
367 extern int conf_add_server(struct ConfItem *, int);
368 extern void conf_add_class_to_conf(struct ConfItem *);
369 extern void conf_add_me(struct ConfItem *);
370 extern void conf_add_class(struct ConfItem *, int);
371 extern void conf_add_d_conf(struct ConfItem *);
372 extern void flush_expired_ips(void *);
373
374
375 /* XXX consider moving these into kdparse.h */
376 extern void parse_k_file(FILE * fb);
377 extern void parse_d_file(FILE * fb);
378 extern void parse_x_file(FILE * fb);
379 extern void parse_resv_file(FILE *);
380 extern char *getfield(char *newline);
381
382 extern char *get_oper_name(struct Client *client_p);
383
384 extern int yylex(void);
385
386 extern unsigned long cidr_to_bitmask[];
387
388 extern char conffilebuf[IRCD_BUFSIZE + 1];
389 extern int lineno;
390
391 #define NOT_AUTHORISED (-1)
392 #define SOCKET_ERROR (-2)
393 #define I_LINE_FULL (-3)
394 #define BANNED_CLIENT (-4)
395 #define TOO_MANY_LOCAL (-6)
396 #define TOO_MANY_GLOBAL (-7)
397 #define TOO_MANY_IDENT (-8)
398
399 #endif /* INCLUDED_s_conf_h */