2 * charybdis: Advanced, scalable Internet Relay Chat.
3 * s_conf.h: A header for the configuration functions.
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
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.
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.
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
24 * $Id: s_conf.h 195 2006-12-19 01:11:35Z beu $
27 #ifndef INCLUDED_s_conf_h
28 #define INCLUDED_s_conf_h
32 #include <openssl/rsa.h>
35 #include "ircd_defs.h"
45 /* used by new parser */
46 /* yacc/lex love globals!!! */
50 struct irc_sockaddr_storage ip
;
55 extern FILE *conf_fbfile_in
;
56 extern char conf_line_in
[256];
60 struct ConfItem
*next
; /* list node pointer */
61 unsigned int status
; /* If CONF_ILLEGAL, delete when no clients */
63 int clients
; /* Number of *LOCAL* clients using this */
64 char *name
; /* IRC name, nick, server name, or original u@h */
65 char *host
; /* host part of user@host */
66 char *passwd
; /* doubles as kline reason *ugh* */
67 char *spasswd
; /* Password to send. */
68 char *user
; /* user part of user@host */
70 time_t hold
; /* Hold action until this time (calendar time) */
71 char *className
; /* Name of class */
72 struct Class
*c_class
; /* Class of connection */
73 patricia_node_t
*pnode
; /* Our patricia node */
76 #define CONF_ILLEGAL 0x80000000
77 #define CONF_QUARANTINED_NICK 0x0001
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)
85 #define CONF_CLASS 0x0400
86 #define CONF_LISTEN_PORT 0x1000
87 #define CONF_EXEMPTKLINE 0x4000
88 #define CONF_NOLIMIT 0x8000
89 #define CONF_DLINE 0x20000
90 #define CONF_EXEMPTDLINE 0x100000
92 #define IsIllegal(x) ((x)->status & CONF_ILLEGAL)
94 /* aConfItem->flags */
96 /* Generic flags... */
98 #define CONF_FLAGS_DO_IDENTD 0x00000001
99 #define CONF_FLAGS_LIMIT_IP 0x00000002
100 #define CONF_FLAGS_NO_TILDE 0x00000004
101 #define CONF_FLAGS_NEED_IDENTD 0x00000008
102 #define CONF_FLAGS_PASS_IDENTD 0x00000010
103 #define CONF_FLAGS_NOMATCH_IP 0x00000020
104 #define CONF_FLAGS_EXEMPTKLINE 0x00000040
105 #define CONF_FLAGS_NOLIMIT 0x00000080
106 #define CONF_FLAGS_IDLE_LINED 0x00000100
107 #define CONF_FLAGS_SPOOF_IP 0x00000200
108 #define CONF_FLAGS_SPOOF_NOTICE 0x00000400
109 #define CONF_FLAGS_REDIR 0x00000800
110 #define CONF_FLAGS_EXEMPTRESV 0x00002000 /* exempt from resvs */
111 #define CONF_FLAGS_EXEMPTFLOOD 0x00004000
112 #define CONF_FLAGS_EXEMPTSPAMBOT 0x00008000
113 #define CONF_FLAGS_EXEMPTSHIDE 0x00010000
114 #define CONF_FLAGS_EXEMPTJUPE 0x00020000 /* exempt from resv generating warnings */
115 #define CONF_FLAGS_NEED_SASL 0x00040000
117 #define CONF_FLAGS_ALLOW_AUTO_CONN 0x00080000
118 #define CONF_FLAGS_LAZY_LINK 0x00100000
119 #define CONF_FLAGS_ENCRYPTED 0x00200000
120 #define CONF_FLAGS_COMPRESSED 0x00400000
121 #define CONF_FLAGS_TEMPORARY 0x00800000
122 #define CONF_FLAGS_TB 0x01000000
123 #define CONF_FLAGS_VHOSTED 0x02000000
124 #define CONF_FLAGS_EXEMPTDNSBL 0x04000000
127 /* Macros for struct ConfItem */
128 #define IsLimitIp(x) ((x)->flags & CONF_FLAGS_LIMIT_IP)
129 #define IsNoTilde(x) ((x)->flags & CONF_FLAGS_NO_TILDE)
130 #define IsNeedIdentd(x) ((x)->flags & CONF_FLAGS_NEED_IDENTD)
131 #define IsPassIdentd(x) ((x)->flags & CONF_FLAGS_PASS_IDENTD)
132 #define IsNoMatchIp(x) ((x)->flags & CONF_FLAGS_NOMATCH_IP)
133 #define IsConfExemptKline(x) ((x)->flags & CONF_FLAGS_EXEMPTKLINE)
134 #define IsConfExemptLimits(x) ((x)->flags & CONF_FLAGS_NOLIMIT)
135 #define IsConfExemptFlood(x) ((x)->flags & CONF_FLAGS_EXEMPTFLOOD)
136 #define IsConfExemptSpambot(x) ((x)->flags & CONF_FLAGS_EXEMPTSPAMBOT)
137 #define IsConfExemptShide(x) ((x)->flags & CONF_FLAGS_EXEMPTSHIDE)
138 #define IsConfExemptJupe(x) ((x)->flags & CONF_FLAGS_EXEMPTJUPE)
139 #define IsConfExemptResv(x) ((x)->flags & CONF_FLAGS_EXEMPTRESV)
140 #define IsConfIdlelined(x) ((x)->flags & CONF_FLAGS_IDLE_LINED)
141 #define IsConfDoIdentd(x) ((x)->flags & CONF_FLAGS_DO_IDENTD)
142 #define IsConfDoSpoofIp(x) ((x)->flags & CONF_FLAGS_SPOOF_IP)
143 #define IsConfSpoofNotice(x) ((x)->flags & CONF_FLAGS_SPOOF_NOTICE)
144 #define IsConfEncrypted(x) ((x)->flags & CONF_FLAGS_ENCRYPTED)
145 #define IsConfCompressed(x) ((x)->flags & CONF_FLAGS_COMPRESSED)
146 #define IsConfVhosted(x) ((x)->flags & CONF_FLAGS_VHOSTED)
147 #define IsConfTburst(x) ((x)->flags & CONF_FLAGS_TB)
148 #define IsNeedSasl(x) ((x)->flags & CONF_FLAGS_NEED_SASL)
149 #define IsConfExemptDNSBL(x) ((x)->flags & CONF_FLAGS_EXEMPTDNSBL)
151 /* flag definitions for opers now in client.h */
153 struct config_file_entry
155 const char *dpath
; /* DPATH if set from command line */
156 const char *configfile
;
157 const char *klinefile
;
158 const char *dlinefile
;
159 const char *xlinefile
;
160 const char *resvfile
;
165 char *default_operstring
;
166 char *default_adminstring
;
169 char *identifyservice
;
170 char *identifycommand
;
173 char *fname_fuserlog
;
175 char *fname_foperlog
;
176 char *fname_serverlog
;
178 char *fname_klinelog
;
179 char *fname_ioerrorlog
;
181 unsigned char compression_level
;
182 int disable_fake_channels
;
185 int failed_oper_notice
;
187 int anti_spam_exit_message_time
;
191 int max_nick_changes
;
194 int dline_with_reason
;
195 int kline_with_reason
;
199 int non_redundant_klines
;
200 int stats_e_disabled
;
201 int stats_c_oper_only
;
202 int stats_y_oper_only
;
203 int stats_h_oper_only
;
204 int stats_o_oper_only
;
205 int stats_k_oper_only
;
206 int stats_i_oper_only
;
207 int stats_P_oper_only
;
210 int pace_wait_simple
;
216 int hide_error_messages
;
218 int oper_only_umodes
;
224 int min_nonwildcard_simple
;
225 int default_floodcount
;
229 int tkline_expire_notices
;
230 int use_whois_actually
;
235 int reject_after_count
;
247 char *idented_user_prefix
;
248 char *unidented_user_prefix
;
251 struct config_channel_entry
257 int knock_delay_channel
;
260 int max_chans_per_user
;
261 int max_chans_per_user_large
;
262 int no_create_on_split
;
263 int no_join_on_split
;
264 int default_split_server_count
;
265 int default_split_user_count
;
268 int kick_on_split_riding
;
271 struct config_server_hide
289 struct sockaddr_in ip
;
291 struct sockaddr_in6 ip6
;
293 int specific_ipv4_vhost
;
295 int specific_ipv6_vhost
;
310 int flags
; /* reserved for later use */
314 /* All variables are GLOBAL */
315 extern int specific_ipv4_vhost
; /* used in s_bsd.c */
316 extern int specific_ipv6_vhost
;
317 extern struct config_file_entry ConfigFileEntry
; /* defined in ircd.c */
318 extern struct config_channel_entry ConfigChannel
; /* defined in channel.c */
319 extern struct config_server_hide ConfigServerHide
; /* defined in s_conf.c */
320 extern struct server_info ServerInfo
; /* defined in ircd.c */
321 extern struct admin_info AdminInfo
; /* defined in ircd.c */
322 /* End GLOBAL section */
324 dlink_list service_list
;
326 typedef enum temp_list
335 dlink_list temp_klines
[LAST_TEMP_TYPE
];
336 dlink_list temp_dlines
[LAST_TEMP_TYPE
];
338 extern void init_s_conf(void);
340 extern struct ConfItem
*make_conf(void);
341 extern void free_conf(struct ConfItem
*);
343 extern void read_conf_files(int cold
);
345 extern int attach_conf(struct Client
*, struct ConfItem
*);
346 extern int check_client(struct Client
*client_p
, struct Client
*source_p
, const char *);
348 extern int detach_conf(struct Client
*);
350 extern struct ConfItem
*conf_connect_allowed(struct sockaddr
*addr
, int);
352 extern struct ConfItem
*find_tkline(const char *, const char *, struct sockaddr
*);
353 extern char *show_iline_prefix(struct Client
*, struct ConfItem
*, char *);
354 extern void get_printable_conf(struct ConfItem
*,
355 char **, char **, char **, char **, int *, char **);
356 extern void get_printable_kline(struct Client
*, struct ConfItem
*,
357 char **, char **, char **, char **);
359 extern void yyerror(const char *);
360 extern int conf_yy_fatal_error(const char *);
361 extern int conf_fgets(char *, int, FILE *);
372 extern void write_confitem(KlineType
, struct Client
*, char *, char *,
373 const char *, const char *, const char *, int);
374 extern void add_temp_kline(struct ConfItem
*);
375 extern void add_temp_dline(struct ConfItem
*);
376 extern void report_temp_klines(struct Client
*);
377 extern void show_temp_klines(struct Client
*, dlink_list
*);
379 extern const char *get_conf_name(KlineType
);
380 extern int rehash(int);
381 extern void rehash_bans(int);
383 extern int conf_add_server(struct ConfItem
*, int);
384 extern void conf_add_class_to_conf(struct ConfItem
*);
385 extern void conf_add_me(struct ConfItem
*);
386 extern void conf_add_class(struct ConfItem
*, int);
387 extern void conf_add_d_conf(struct ConfItem
*);
388 extern void flush_expired_ips(void *);
391 /* XXX consider moving these into kdparse.h */
392 extern void parse_k_file(FILE * fb
);
393 extern void parse_d_file(FILE * fb
);
394 extern void parse_x_file(FILE * fb
);
395 extern void parse_resv_file(FILE *);
396 extern char *getfield(char *newline
);
398 extern char *get_oper_name(struct Client
*client_p
);
400 extern int yylex(void);
402 extern unsigned long cidr_to_bitmask
[];
404 extern char conffilebuf
[IRCD_BUFSIZE
+ 1];
407 #define NOT_AUTHORISED (-1)
408 #define SOCKET_ERROR (-2)
409 #define I_LINE_FULL (-3)
410 #define BANNED_CLIENT (-4)
411 #define TOO_MANY_LOCAL (-6)
412 #define TOO_MANY_GLOBAL (-7)
413 #define TOO_MANY_IDENT (-8)
415 #endif /* INCLUDED_s_conf_h */