]> jfr.im git - irc/rqf/shadowircd.git/blob - include/s_conf.h
Add propagated xlines, like klines.
[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 unsigned int status; /* If CONF_ILLEGAL, delete when no clients */
60 unsigned int flags;
61 int clients; /* Number of *LOCAL* clients using this */
62 union
63 {
64 char *name; /* IRC name, nick, server name, or original u@h */
65 const char *oper;
66 } info;
67 char *host; /* host part of user@host */
68 char *passwd; /* doubles as kline reason *ugh* */
69 char *spasswd; /* Password to send. */
70 char *autojoin; /* channels for users to autojoin to on connect */
71 char *autojoin_opers; /* channels for opers to autojoin on oper-up */
72 char *user; /* user part of user@host */
73 int port;
74 time_t hold; /* Hold action until this time (calendar time) */
75 time_t created; /* Creation time (for klines etc) */
76 time_t lifetime; /* Propagated lines: remember until this time */
77 char *className; /* Name of class */
78 struct Class *c_class; /* Class of connection */
79 rb_patricia_node_t *pnode; /* Our patricia node */
80 };
81
82 #define CONF_ILLEGAL 0x80000000
83 #define CONF_CLIENT 0x0002
84 #define CONF_KILL 0x0040
85 #define CONF_XLINE 0x0080
86 #define CONF_RESV_CHANNEL 0x0100
87 #define CONF_RESV_NICK 0x0200
88 #define CONF_RESV (CONF_RESV_CHANNEL | CONF_RESV_NICK)
89
90 #define CONF_DLINE 0x20000
91 #define CONF_EXEMPTDLINE 0x100000
92
93 #define IsIllegal(x) ((x)->status & CONF_ILLEGAL)
94
95 /* aConfItem->flags */
96
97 /* Generic flags... */
98 #define CONF_FLAGS_TEMPORARY 0x00800000
99 #define CONF_FLAGS_NEED_SSL 0x00000002
100 #define CONF_FLAGS_MYOPER 0x00080000 /* need to rewrite info.oper on burst */
101 /* auth{} flags... */
102 #define CONF_FLAGS_NO_TILDE 0x00000004
103 #define CONF_FLAGS_NEED_IDENTD 0x00000008
104 #define CONF_FLAGS_EXEMPTKLINE 0x00000040
105 #define CONF_FLAGS_NOLIMIT 0x00000080
106 #define CONF_FLAGS_SPOOF_IP 0x00000200
107 #define CONF_FLAGS_SPOOF_NOTICE 0x00000400
108 #define CONF_FLAGS_REDIR 0x00000800
109 #define CONF_FLAGS_EXEMPTRESV 0x00002000 /* exempt from resvs */
110 #define CONF_FLAGS_EXEMPTFLOOD 0x00004000
111 #define CONF_FLAGS_EXEMPTSPAMBOT 0x00008000
112 #define CONF_FLAGS_EXEMPTSHIDE 0x00010000
113 #define CONF_FLAGS_EXEMPTJUPE 0x00020000 /* exempt from resv generating warnings */
114 #define CONF_FLAGS_NEED_SASL 0x00040000
115 #define CONF_FLAGS_ENCRYPTED 0x00200000
116 #define CONF_FLAGS_EXEMPTDNSBL 0x04000000
117
118
119 /* Macros for struct ConfItem */
120 #define IsConfBan(x) ((x)->status & (CONF_KILL|CONF_XLINE|CONF_DLINE|\
121 CONF_RESV_CHANNEL|CONF_RESV_NICK))
122
123 #define IsNoTilde(x) ((x)->flags & CONF_FLAGS_NO_TILDE)
124 #define IsNeedIdentd(x) ((x)->flags & CONF_FLAGS_NEED_IDENTD)
125 #define IsConfExemptKline(x) ((x)->flags & CONF_FLAGS_EXEMPTKLINE)
126 #define IsConfExemptLimits(x) ((x)->flags & CONF_FLAGS_NOLIMIT)
127 #define IsConfExemptFlood(x) ((x)->flags & CONF_FLAGS_EXEMPTFLOOD)
128 #define IsConfExemptSpambot(x) ((x)->flags & CONF_FLAGS_EXEMPTSPAMBOT)
129 #define IsConfExemptShide(x) ((x)->flags & CONF_FLAGS_EXEMPTSHIDE)
130 #define IsConfExemptJupe(x) ((x)->flags & CONF_FLAGS_EXEMPTJUPE)
131 #define IsConfExemptResv(x) ((x)->flags & CONF_FLAGS_EXEMPTRESV)
132 #define IsConfDoSpoofIp(x) ((x)->flags & CONF_FLAGS_SPOOF_IP)
133 #define IsConfSpoofNotice(x) ((x)->flags & CONF_FLAGS_SPOOF_NOTICE)
134 #define IsConfEncrypted(x) ((x)->flags & CONF_FLAGS_ENCRYPTED)
135 #define IsNeedSasl(x) ((x)->flags & CONF_FLAGS_NEED_SASL)
136 #define IsConfExemptDNSBL(x) ((x)->flags & CONF_FLAGS_EXEMPTDNSBL)
137 #define IsConfSSLNeeded(x) ((x)->flags & CONF_FLAGS_NEED_SSL)
138
139 /* flag definitions for opers now in client.h */
140
141 struct config_file_entry
142 {
143 const char *dpath; /* DPATH if set from command line */
144 const char *configfile;
145
146 char *egdpool_path;
147
148 char *default_operstring;
149 char *default_adminstring;
150 char *default_operhost;
151 char *static_quit;
152 char *servicestring;
153 char *kline_reason;
154
155 char *identifyservice;
156 char *identifycommand;
157
158 char *fname_userlog;
159 char *fname_fuserlog;
160 char *fname_operlog;
161 char *fname_foperlog;
162 char *fname_serverlog;
163 char *fname_killlog;
164 char *fname_klinelog;
165 char *fname_operspylog;
166 char *fname_ioerrorlog;
167
168 unsigned char compression_level;
169 int disable_fake_channels;
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 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;
225 int throttle_count;
226 int throttle_duration;
227 int target_change;
228 int collision_fnc;
229 int default_umodes;
230 int global_snotices;
231 int operspy_dont_care_user_info;
232 int use_propagated_bans;
233 int secret_channels_in_whois;
234 int expire_override_time;
235 };
236
237 struct config_channel_entry
238 {
239 char * autochanmodes;
240 char * exemptchanops;
241 int use_halfop;
242 int use_admin;
243 int use_except;
244 int use_invex;
245 int use_knock;
246 int use_forward;
247 int use_local_channels;
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;
258 int kick_on_split_riding;
259 int only_ascii_channels;
260 int cycle_host_change;
261 int host_in_topic;
262 int resv_forcepart;
263 int kick_no_rejoin_time;
264
265 int exempt_cmode_c;
266 int exempt_cmode_C;
267 int exempt_cmode_D;
268 int exempt_cmode_T;
269 int exempt_cmode_N;
270 int exempt_cmode_G;
271 int exempt_cmode_K;
272 };
273
274 struct config_server_hide
275 {
276 int flatten_links;
277 int links_delay;
278 int hidden;
279 int disable_hidden;
280 };
281
282 struct server_info
283 {
284 char *name;
285 char sid[4];
286 char *description;
287 char *network_name;
288 char *network_desc;
289 int hub;
290 struct sockaddr_in ip;
291 int default_max_clients;
292 #ifdef RB_IPV6
293 struct sockaddr_in6 ip6;
294 #endif
295 int specific_ipv4_vhost;
296 #ifdef RB_IPV6
297 int specific_ipv6_vhost;
298 #endif
299 char *ssl_private_key;
300 char *ssl_ca_cert;
301 char *ssl_cert;
302 char *ssl_dh_params;
303 int ssld_count;
304 };
305
306 struct admin_info
307 {
308 char *name;
309 char *description;
310 char *email;
311 };
312
313 struct alias_entry
314 {
315 char *name;
316 char *target;
317 int flags; /* reserved for later use */
318 int hits;
319 };
320
321 /* All variables are GLOBAL */
322 extern int specific_ipv4_vhost; /* used in s_bsd.c */
323 extern int specific_ipv6_vhost;
324 extern struct config_file_entry ConfigFileEntry; /* defined in ircd.c */
325 extern struct config_channel_entry ConfigChannel; /* defined in channel.c */
326 extern struct config_server_hide ConfigServerHide; /* defined in s_conf.c */
327 extern struct server_info ServerInfo; /* defined in ircd.c */
328 extern struct admin_info AdminInfo; /* defined in ircd.c */
329 /* End GLOBAL section */
330
331 extern rb_dlink_list service_list;
332
333 extern rb_dlink_list prop_bans;
334
335 typedef enum temp_list
336 {
337 TEMP_MIN,
338 TEMP_HOUR,
339 TEMP_DAY,
340 TEMP_WEEK,
341 LAST_TEMP_TYPE
342 } temp_list;
343
344 extern rb_dlink_list temp_klines[LAST_TEMP_TYPE];
345 extern rb_dlink_list temp_dlines[LAST_TEMP_TYPE];
346
347 extern void init_s_conf(void);
348
349 extern struct ConfItem *make_conf(void);
350 extern void free_conf(struct ConfItem *);
351
352 extern rb_dlink_node *find_prop_ban(unsigned int status, const char *user, const char *host);
353 extern void deactivate_conf(struct ConfItem *, rb_dlink_node *);
354 extern void replace_old_ban(struct ConfItem *);
355
356 extern void read_conf_files(int cold);
357
358 extern int attach_conf(struct Client *, struct ConfItem *);
359 extern int check_client(struct Client *client_p, struct Client *source_p, const char *);
360
361 extern int detach_conf(struct Client *);
362
363 extern struct ConfItem *find_tkline(const char *, const char *, struct sockaddr *);
364 extern char *show_iline_prefix(struct Client *, struct ConfItem *, char *);
365 extern void get_printable_conf(struct ConfItem *,
366 char **, char **, char **, char **, int *, char **);
367 extern char *get_user_ban_reason(struct ConfItem *aconf);
368 extern void get_printable_kline(struct Client *, struct ConfItem *,
369 char **, char **, char **, char **);
370
371 extern void yyerror(const char *);
372 extern int conf_yy_fatal_error(const char *);
373 extern int conf_fgets(char *, int, FILE *);
374
375 extern int valid_wild_card(const char *, const char *);
376 extern void add_temp_kline(struct ConfItem *);
377 extern void add_temp_dline(struct ConfItem *);
378 extern void report_temp_klines(struct Client *);
379 extern void show_temp_klines(struct Client *, rb_dlink_list *);
380
381 extern int rehash(int);
382 extern void rehash_bans(int);
383
384 extern int conf_add_server(struct ConfItem *, int);
385 extern void conf_add_class_to_conf(struct ConfItem *);
386 extern void conf_add_me(struct ConfItem *);
387 extern void conf_add_class(struct ConfItem *, int);
388 extern void conf_add_d_conf(struct ConfItem *);
389 extern void flush_expired_ips(void *);
390
391 extern char *get_oper_name(struct Client *client_p);
392
393 extern int yylex(void);
394
395 extern unsigned long cidr_to_bitmask[];
396
397 extern char conffilebuf[IRCD_BUFSIZE + 1];
398 extern int lineno;
399
400 #define NOT_AUTHORISED (-1)
401 #define SOCKET_ERROR (-2)
402 #define I_LINE_FULL (-3)
403 #define BANNED_CLIENT (-4)
404 #define TOO_MANY_LOCAL (-6)
405 #define TOO_MANY_GLOBAL (-7)
406 #define TOO_MANY_IDENT (-8)
407
408 #endif /* INCLUDED_s_conf_h */