]> jfr.im git - irc/rqf/shadowircd.git/blame - include/s_conf.h
Make it so that halfops cannot set +-h
[irc/rqf/shadowircd.git] / include / s_conf.h
CommitLineData
212380e3 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 *
cda8e9b8 24 * $Id: s_conf.h 3550 2007-08-09 06:47:26Z nenolod $
212380e3 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"
212380e3 39
40struct Client;
41struct DNSReply;
42struct hostent;
43
44/* used by new parser */
45/* yacc/lex love globals!!! */
46
47struct ip_value
48{
3ea5fee7 49 struct rb_sockaddr_storage ip;
212380e3 50 int ip_mask;
51 int type;
52};
53
54extern FILE *conf_fbfile_in;
55extern char conf_line_in[256];
56
21c9d815
VY
57struct 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. */
fa72cee1 67 char *autojoin; /* channels for users to autojoin to on connect */
87f58b4f 68 char *autojoin_opers; /* channels for opers to autojoin on oper-up */
21c9d815
VY
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 */
212380e3 75};
76
77#define CONF_ILLEGAL 0x80000000
212380e3 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
212380e3 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... */
60817ff4 93#define CONF_FLAGS_TEMPORARY 0x00800000
663bbb28 94#define CONF_FLAGS_NEED_SSL 0x00000002
60817ff4 95/* auth{} flags... */
212380e3 96#define CONF_FLAGS_NO_TILDE 0x00000004
97#define CONF_FLAGS_NEED_IDENTD 0x00000008
212380e3 98#define CONF_FLAGS_EXEMPTKLINE 0x00000040
99#define CONF_FLAGS_NOLIMIT 0x00000080
212380e3 100#define CONF_FLAGS_SPOOF_IP 0x00000200
101#define CONF_FLAGS_SPOOF_NOTICE 0x00000400
102#define CONF_FLAGS_REDIR 0x00000800
212380e3 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
212380e3 109#define CONF_FLAGS_ENCRYPTED 0x00200000
212380e3 110#define CONF_FLAGS_EXEMPTDNSBL 0x04000000
111
112
113/* Macros for struct ConfItem */
212380e3 114#define IsNoTilde(x) ((x)->flags & CONF_FLAGS_NO_TILDE)
115#define IsNeedIdentd(x) ((x)->flags & CONF_FLAGS_NEED_IDENTD)
212380e3 116#define IsConfExemptKline(x) ((x)->flags & CONF_FLAGS_EXEMPTKLINE)
117#define IsConfExemptLimits(x) ((x)->flags & CONF_FLAGS_NOLIMIT)
212380e3 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)
212380e3 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)
212380e3 126#define IsNeedSasl(x) ((x)->flags & CONF_FLAGS_NEED_SASL)
127#define IsConfExemptDNSBL(x) ((x)->flags & CONF_FLAGS_EXEMPTDNSBL)
663bbb28 128#define IsConfSSLNeeded(x) ((x)->flags & CONF_FLAGS_NEED_SSL)
212380e3 129
130/* flag definitions for opers now in client.h */
131
132struct config_file_entry
133{
134 const char *dpath; /* DPATH if set from command line */
135 const char *configfile;
212380e3 136
212380e3 137 char *egdpool_path;
138
139 char *default_operstring;
140 char *default_adminstring;
141 char *servicestring;
142 char *kline_reason;
143
144 char *identifyservice;
145 char *identifycommand;
146
147 char *fname_userlog;
148 char *fname_fuserlog;
149 char *fname_operlog;
150 char *fname_foperlog;
151 char *fname_serverlog;
152 char *fname_killlog;
212380e3 153 char *fname_klinelog;
154 char *fname_operspylog;
155 char *fname_ioerrorlog;
156
157 unsigned char compression_level;
158 int disable_fake_channels;
212380e3 159 int dots_in_ident;
160 int failed_oper_notice;
161 int anti_nick_flood;
162 int anti_spam_exit_message_time;
163 int max_accept;
164 int max_monitor;
165 int max_nick_time;
166 int max_nick_changes;
167 int ts_max_delta;
168 int ts_warn_delta;
169 int dline_with_reason;
170 int kline_with_reason;
171 int kline_delay;
172 int warn_no_nline;
173 int nick_delay;
174 int non_redundant_klines;
175 int stats_e_disabled;
176 int stats_c_oper_only;
177 int stats_y_oper_only;
178 int stats_h_oper_only;
179 int stats_o_oper_only;
180 int stats_k_oper_only;
181 int stats_i_oper_only;
182 int stats_P_oper_only;
183 int map_oper_only;
184 int operspy_admin_only;
185 int pace_wait;
186 int pace_wait_simple;
187 int short_motd;
188 int no_oper_flood;
212380e3 189 int hide_server;
190 int hide_spoof_ips;
191 int hide_error_messages;
192 int client_exit;
193 int oper_only_umodes;
194 int oper_umodes;
195 int oper_snomask;
196 int max_targets;
197 int caller_id_wait;
198 int min_nonwildcard;
199 int min_nonwildcard_simple;
200 int default_floodcount;
201 int client_flood;
202 int use_egd;
203 int ping_cookie;
204 int tkline_expire_notices;
205 int use_whois_actually;
206 int disable_auth;
207 int connect_timeout;
208 int burst_away;
209 int reject_ban_time;
210 int reject_after_count;
211 int reject_duration;
d1275a8f
JT
212 int throttle_count;
213 int throttle_duration;
212380e3 214 int target_change;
215 int collision_fnc;
216 int default_umodes;
217 int global_snotices;
218 int operspy_dont_care_user_info;
837a020a 219 int secret_channels_in_whois;
212380e3 220};
221
222struct config_channel_entry
223{
13ec57db 224 char * autochanmodes;
5ad94b50 225 char * exemptchanops;
46f0c518
G
226 int use_halfop;
227 int use_owner;
212380e3 228 int use_except;
229 int use_invex;
230 int use_knock;
231 int use_forward;
0eceaff1 232 int use_local_channels;
212380e3 233 int knock_delay;
234 int knock_delay_channel;
235 int max_bans;
236 int max_bans_large;
237 int max_chans_per_user;
238 int no_create_on_split;
239 int no_join_on_split;
240 int default_split_server_count;
241 int default_split_user_count;
242 int burst_topicwho;
212380e3 243 int kick_on_split_riding;
dea418e9 244 int only_ascii_channels;
c3a0fde2 245 int cycle_host_change;
45b9f1cb 246 int host_in_topic;
100563e8 247 int resv_forcepart;
846aa234 248 int kick_no_rejoin_time;
5ad94b50
G
249
250 int exempt_cmode_c;
251 int exempt_cmode_C;
252 int exempt_cmode_D;
253 int exempt_cmode_T;
254 int exempt_cmode_N;
255 int exempt_cmode_G;
256 int exempt_cmode_K;
212380e3 257};
258
259struct config_server_hide
260{
261 int flatten_links;
262 int links_delay;
212380e3 263 int hidden;
264 int disable_hidden;
265};
266
267struct server_info
268{
269 char *name;
660debfa 270 char sid[4];
212380e3 271 char *description;
272 char *network_name;
273 char *network_desc;
274 int hub;
212380e3 275 struct sockaddr_in ip;
8db00894 276 int default_max_clients;
2f5fa921 277#ifdef RB_IPV6
212380e3 278 struct sockaddr_in6 ip6;
279#endif
280 int specific_ipv4_vhost;
2f5fa921 281#ifdef RB_IPV6
212380e3 282 int specific_ipv6_vhost;
283#endif
b717a466
JT
284 char *ssl_private_key;
285 char *ssl_ca_cert;
286 char *ssl_cert;
287 char *ssl_dh_params;
8db00894 288 int ssld_count;
212380e3 289};
290
291struct admin_info
292{
293 char *name;
294 char *description;
295 char *email;
296};
297
298struct alias_entry
299{
300 char *name;
301 char *target;
302 int flags; /* reserved for later use */
303 int hits;
304};
305
306/* All variables are GLOBAL */
307extern int specific_ipv4_vhost; /* used in s_bsd.c */
308extern int specific_ipv6_vhost;
309extern struct config_file_entry ConfigFileEntry; /* defined in ircd.c */
310extern struct config_channel_entry ConfigChannel; /* defined in channel.c */
311extern struct config_server_hide ConfigServerHide; /* defined in s_conf.c */
312extern struct server_info ServerInfo; /* defined in ircd.c */
313extern struct admin_info AdminInfo; /* defined in ircd.c */
314/* End GLOBAL section */
315
aa65834c 316extern rb_dlink_list service_list;
212380e3 317
318typedef enum temp_list
319{
320 TEMP_MIN,
321 TEMP_HOUR,
322 TEMP_DAY,
323 TEMP_WEEK,
324 LAST_TEMP_TYPE
325} temp_list;
326
aa65834c
JT
327extern rb_dlink_list temp_klines[LAST_TEMP_TYPE];
328extern rb_dlink_list temp_dlines[LAST_TEMP_TYPE];
212380e3 329
330extern void init_s_conf(void);
331
332extern struct ConfItem *make_conf(void);
333extern void free_conf(struct ConfItem *);
334
335extern void read_conf_files(int cold);
336
337extern int attach_conf(struct Client *, struct ConfItem *);
338extern int check_client(struct Client *client_p, struct Client *source_p, const char *);
339
340extern int detach_conf(struct Client *);
341
212380e3 342extern struct ConfItem *find_tkline(const char *, const char *, struct sockaddr *);
343extern char *show_iline_prefix(struct Client *, struct ConfItem *, char *);
344extern void get_printable_conf(struct ConfItem *,
345 char **, char **, char **, char **, int *, char **);
21c9d815
VY
346extern void get_printable_kline(struct Client *, struct ConfItem *,
347 char **, char **, char **, char **);
212380e3 348
349extern void yyerror(const char *);
350extern int conf_yy_fatal_error(const char *);
351extern int conf_fgets(char *, int, FILE *);
352
212380e3 353extern void add_temp_kline(struct ConfItem *);
354extern void add_temp_dline(struct ConfItem *);
355extern void report_temp_klines(struct Client *);
08d11e34 356extern void show_temp_klines(struct Client *, rb_dlink_list *);
212380e3 357
212380e3 358extern int rehash(int);
359extern void rehash_bans(int);
360
361extern int conf_add_server(struct ConfItem *, int);
362extern void conf_add_class_to_conf(struct ConfItem *);
363extern void conf_add_me(struct ConfItem *);
364extern void conf_add_class(struct ConfItem *, int);
365extern void conf_add_d_conf(struct ConfItem *);
366extern void flush_expired_ips(void *);
367
212380e3 368extern char *get_oper_name(struct Client *client_p);
369
370extern int yylex(void);
371
372extern unsigned long cidr_to_bitmask[];
373
374extern char conffilebuf[IRCD_BUFSIZE + 1];
375extern int lineno;
376
377#define NOT_AUTHORISED (-1)
378#define SOCKET_ERROR (-2)
379#define I_LINE_FULL (-3)
380#define BANNED_CLIENT (-4)
381#define TOO_MANY_LOCAL (-6)
382#define TOO_MANY_GLOBAL (-7)
383#define TOO_MANY_IDENT (-8)
384
385#endif /* INCLUDED_s_conf_h */