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