ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/include/conf.h
Revision: 1946
Committed: Sun May 5 10:21:40 2013 UTC (10 years, 11 months ago) by michael
Content type: text/x-chdr
Original Path: ircd-hybrid/trunk/include/conf.h
File size: 12812 byte(s)
Log Message:
- Removed channel::quiet_on_ban configuration option. This feature is
  now enabled by default

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
3 * conf.h: A header for the configuration functions.
4 *
5 * Copyright (C) 2005 by the past and present ircd coders, and others.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 * USA
21 *
22 * $Id$
23 */
24
25 #ifndef INCLUDED_s_conf_h
26 #define INCLUDED_s_conf_h
27 #include "config.h"
28 #include "ircd_defs.h"
29 #include "motd.h" /* MessageFile */
30 #include "client.h"
31 #include "hook.h"
32 #include "conf_class.h"
33
34
35 #define CONF_NOREASON "<No reason supplied>"
36
37 #define IsConfOperator(x) ((x)->type == CONF_OPER)
38 #define IsConfKill(x) ((x)->type == CONF_KLINE)
39 #define IsConfClient(x) ((x)->type == CONF_CLIENT)
40 #define IsConfGline(x) ((x)->type == CONF_GLINE)
41
42 /* MaskItem->flags */
43 #define CONF_FLAGS_DO_IDENTD 0x00000001
44 #define CONF_FLAGS_LIMIT_IP 0x00000002
45 #define CONF_FLAGS_NO_TILDE 0x00000004
46 #define CONF_FLAGS_NEED_IDENTD 0x00000008
47 #define CONF_FLAGS_NOMATCH_IP 0x00000010
48 #define CONF_FLAGS_EXEMPTKLINE 0x00000020
49 #define CONF_FLAGS_NOLIMIT 0x00000040
50 #define CONF_FLAGS_SPOOF_IP 0x00000080
51 #define CONF_FLAGS_SPOOF_NOTICE 0x00000100
52 #define CONF_FLAGS_REDIR 0x00000200
53 #define CONF_FLAGS_EXEMPTGLINE 0x00000400
54 #define CONF_FLAGS_CAN_FLOOD 0x00000800
55 #define CONF_FLAGS_NEED_PASSWORD 0x00001000
56 #define CONF_FLAGS_ALLOW_AUTO_CONN 0x00002000
57 #define CONF_FLAGS_ENCRYPTED 0x00004000
58 #define CONF_FLAGS_IN_DATABASE 0x00008000
59 #define CONF_FLAGS_EXEMPTRESV 0x00010000
60 #define CONF_FLAGS_SSL 0x00020000
61 #define CONF_FLAGS_WEBIRC 0x00040000
62
63 /* Macros for struct MaskItem */
64 #define IsConfWebIRC(x) ((x)->flags & CONF_FLAGS_WEBIRC)
65 #define IsLimitIp(x) ((x)->flags & CONF_FLAGS_LIMIT_IP)
66 #define IsNoTilde(x) ((x)->flags & CONF_FLAGS_NO_TILDE)
67 #define IsConfCanFlood(x) ((x)->flags & CONF_FLAGS_CAN_FLOOD)
68 #define IsNeedPassword(x) ((x)->flags & CONF_FLAGS_NEED_PASSWORD)
69 #define IsNeedIdentd(x) ((x)->flags & CONF_FLAGS_NEED_IDENTD)
70 #define IsNoMatchIp(x) ((x)->flags & CONF_FLAGS_NOMATCH_IP)
71 #define IsConfExemptKline(x) ((x)->flags & CONF_FLAGS_EXEMPTKLINE)
72 #define IsConfExemptLimits(x) ((x)->flags & CONF_FLAGS_NOLIMIT)
73 #define IsConfExemptGline(x) ((x)->flags & CONF_FLAGS_EXEMPTGLINE)
74 #define IsConfExemptResv(x) ((x)->flags & CONF_FLAGS_EXEMPTRESV)
75 #define IsConfDoIdentd(x) ((x)->flags & CONF_FLAGS_DO_IDENTD)
76 #define IsConfDoSpoofIp(x) ((x)->flags & CONF_FLAGS_SPOOF_IP)
77 #define IsConfSpoofNotice(x) ((x)->flags & CONF_FLAGS_SPOOF_NOTICE)
78 #define IsConfEncrypted(x) ((x)->flags & CONF_FLAGS_ENCRYPTED)
79 #define SetConfEncrypted(x) ((x)->flags |= CONF_FLAGS_ENCRYPTED)
80 #define ClearConfEncrypted(x) ((x)->flags &= ~CONF_FLAGS_ENCRYPTED)
81 #define IsConfAllowAutoConn(x) ((x)->flags & CONF_FLAGS_ALLOW_AUTO_CONN)
82 #define SetConfAllowAutoConn(x) ((x)->flags |= CONF_FLAGS_ALLOW_AUTO_CONN)
83 #define ClearConfAllowAutoConn(x) ((x)->flags &= ~CONF_FLAGS_ALLOW_AUTO_CONN)
84 #define IsConfRedir(x) ((x)->flags & CONF_FLAGS_REDIR)
85 #define IsConfSSL(x) ((x)->flags & CONF_FLAGS_SSL)
86 #define SetConfSSL(x) ((x)->flags |= CONF_FLAGS_SSL)
87 #define ClearConfSSL(x) ((x)->flags &= ~CONF_FLAGS_SSL)
88 #define IsConfDatabase(x) ((x)->flags & CONF_FLAGS_IN_DATABASE)
89 #define SetConfDatabase(x) ((x)->flags |= CONF_FLAGS_IN_DATABASE)
90
91
92 /* shared/cluster server entry types
93 * These defines are used for both shared and cluster.
94 */
95 #define SHARED_KLINE 0x0001
96 #define SHARED_UNKLINE 0x0002
97 #define SHARED_XLINE 0x0004
98 #define SHARED_UNXLINE 0x0008
99 #define SHARED_RESV 0x0010
100 #define SHARED_UNRESV 0x0020
101 #define SHARED_LOCOPS 0x0040
102 #define SHARED_DLINE 0x0080
103 #define SHARED_UNDLINE 0x0100
104 #define SHARED_ALL (SHARED_KLINE | SHARED_UNKLINE |\
105 SHARED_XLINE | SHARED_UNXLINE |\
106 SHARED_RESV | SHARED_UNRESV |\
107 SHARED_LOCOPS | SHARED_DLINE | SHARED_UNDLINE)
108
109
110 enum maskitem_type
111 {
112 CONF_RESERVED = 1 << 0, /* XXX */
113 CONF_CLIENT = 1 << 1,
114 CONF_SERVER = 1 << 2,
115 CONF_KLINE = 1 << 3,
116 CONF_DLINE = 1 << 4,
117 CONF_EXEMPT = 1 << 5,
118 CONF_CLUSTER = 1 << 6,
119 CONF_XLINE = 1 << 7,
120 CONF_ULINE = 1 << 8,
121 CONF_GLINE = 1 << 9,
122 CONF_CRESV = 1 << 10,
123 CONF_NRESV = 1 << 11,
124 CONF_SERVICE = 1 << 12,
125 CONF_OPER = 1 << 13,
126 CONF_HUB = 1 << 14, /* XXX There are no separate hub/leaf configs anymore. This is just for /stats h */
127 CONF_CLASS = 1 << 15 /* XXX Same here; just for /stats Y|y */
128 };
129
130 struct conf_parser_context
131 {
132 unsigned int boot;
133 unsigned int pass;
134 FILE *conf_file;
135 };
136
137 struct split_nuh_item
138 {
139 dlink_node node;
140
141 char *nuhmask;
142 char *nickptr;
143 char *userptr;
144 char *hostptr;
145
146 size_t nicksize;
147 size_t usersize;
148 size_t hostsize;
149 };
150
151 struct MaskItem
152 {
153 dlink_node node;
154 dlink_list leaf_list;
155 dlink_list hub_list;
156 dlink_list exempt_list;
157 enum maskitem_type type;
158 unsigned int dns_failed;
159 unsigned int dns_pending;
160 unsigned int flags;
161 unsigned int modes;
162 unsigned int port;
163 unsigned int count;
164 unsigned int aftype;
165 unsigned int active;
166 unsigned int htype;
167 unsigned int ref_count; /* Number of *LOCAL* clients using this */
168 int bits;
169 time_t until; /* Hold action until this time (calendar time) */
170 time_t setat;
171 struct irc_ssaddr bind; /* ip to bind to for outgoing connect */
172 struct irc_ssaddr addr; /* ip to connect to */
173 struct ClassItem *class; /* Class of connection */
174 char *name;
175 char *user; /* user part of user@host */
176 char *host; /* host part of user@host */
177 char *passwd;
178 char *spasswd; /* Password to send. */
179 char *reason;
180 char *cipher_list;
181 void *rsa_public_key;
182 };
183
184 struct exempt
185 {
186 dlink_node node;
187 char *name;
188 char *user;
189 char *host;
190 size_t len;
191 time_t when;
192 struct irc_ssaddr addr;
193 int bits;
194 int type;
195 int coid;
196 };
197
198 struct CidrItem
199 {
200 dlink_node node;
201 struct irc_ssaddr mask;
202 unsigned int number_on_this_cidr;
203 };
204
205 struct config_file_entry
206 {
207 const char *dpath; /* DPATH if set from command line */
208 const char *configfile;
209 const char *klinefile;
210 const char *glinefile;
211 const char *xlinefile;
212 const char *dlinefile;
213 const char *resvfile;
214
215 char *egdpool_path;
216 char *service_name;
217
218 MessageFile motd;
219 MessageFile linksfile;
220
221 int gline_min_cidr;
222 int gline_min_cidr6;
223 int dots_in_ident;
224 int failed_oper_notice;
225 int anti_spam_exit_message_time;
226 unsigned int max_accept;
227 unsigned int max_watch;
228 int max_nick_time;
229 unsigned int max_nick_changes;
230 int ts_max_delta;
231 int ts_warn_delta;
232 int anti_nick_flood;
233 int warn_no_nline;
234 int invisible_on_connect;
235 int stats_e_disabled;
236 int stats_o_oper_only;
237 int stats_k_oper_only;
238 int stats_i_oper_only;
239 int stats_P_oper_only;
240 int short_motd;
241 int no_oper_flood;
242 int true_no_oper_flood;
243 int oper_pass_resv;
244 int glines;
245 int hide_spoof_ips;
246 int tkline_expire_notices;
247 int opers_bypass_callerid;
248 int ignore_bogus_ts;
249 int pace_wait;
250 int pace_wait_simple;
251 int gline_time;
252 int gline_request_time;
253 int oper_only_umodes;
254 int oper_umodes;
255 int max_targets;
256 int caller_id_wait;
257 int min_nonwildcard;
258 int min_nonwildcard_simple;
259 int kill_chase_time_limit;
260 int default_floodcount;
261 /* 0 == don't use throttle... */
262 int throttle_time;
263 int use_egd;
264 int ping_cookie;
265 int disable_auth;
266 int disable_remote;
267 };
268
269 struct config_channel_entry
270 {
271 int disable_fake_channels;
272 int knock_delay;
273 int knock_delay_channel;
274 unsigned int max_bans;
275 unsigned int max_chans_per_user;
276 unsigned int max_chans_per_oper;
277 int no_create_on_split;
278 int no_join_on_split;
279 int default_split_server_count;
280 int default_split_user_count;
281 };
282
283 struct config_server_hide
284 {
285 char *hidden_name;
286 int flatten_links;
287 int hide_servers;
288 int hide_services;
289 int links_delay;
290 int links_disabled;
291 int hidden;
292 int hide_server_ips;
293 };
294
295 struct server_info
296 {
297 char *sid;
298 char *name;
299 char *description;
300 char *network_name;
301 char *network_desc;
302 char *rsa_private_key_file;
303 void *rsa_private_key;
304 void *server_ctx;
305 void *client_ctx;
306 int hub;
307 struct irc_ssaddr ip;
308 struct irc_ssaddr ip6;
309 unsigned int max_clients;
310 unsigned int max_nick_length;
311 unsigned int max_topic_length;
312 int specific_ipv4_vhost;
313 int specific_ipv6_vhost;
314 struct sockaddr_in dns_host;
315 int can_use_v6;
316 };
317
318 struct admin_info
319 {
320 char *name;
321 char *description;
322 char *email;
323 };
324
325 struct logging_entry
326 {
327 unsigned int use_logging;
328 };
329
330 extern dlink_list server_items;
331 extern dlink_list cluster_items;
332 extern dlink_list xconf_items;
333 extern dlink_list uconf_items;
334 extern dlink_list oconf_items;
335 extern dlink_list service_items;
336 extern struct conf_parser_context conf_parser_ctx;
337 extern struct logging_entry ConfigLoggingEntry;
338 extern struct config_file_entry ConfigFileEntry;/* defined in ircd.c*/
339 extern struct config_channel_entry ConfigChannel;/* defined in channel.c*/
340 extern struct config_server_hide ConfigServerHide; /* defined in s_conf.c */
341 extern struct server_info ServerInfo; /* defined in ircd.c */
342 extern struct admin_info AdminInfo; /* defined in ircd.c */
343 extern int valid_wild_card(struct Client *, int, int, ...);
344 /* End GLOBAL section */
345
346 extern void init_ip_hash_table(void);
347 extern void count_ip_hash(unsigned int *, uint64_t *);
348 extern void remove_one_ip(struct irc_ssaddr *);
349 extern struct MaskItem *conf_make(enum maskitem_type);
350 extern void read_conf_files(int);
351 extern int attach_conf(struct Client *, struct MaskItem *);
352 extern int attach_connect_block(struct Client *, const char *, const char *);
353 extern int check_client(struct Client *);
354
355
356 extern void detach_conf(struct Client *, enum maskitem_type);
357 extern struct MaskItem *find_conf_name(dlink_list *, const char *, enum maskitem_type);
358 extern struct MaskItem *find_kill(struct Client *);
359 extern struct MaskItem *find_gline(struct Client *);
360 extern int conf_connect_allowed(struct irc_ssaddr *, int);
361 extern char *oper_privs_as_string(const unsigned int);
362 extern void split_nuh(struct split_nuh_item *);
363 extern struct MaskItem *find_matching_name_conf(enum maskitem_type, const char *,
364 const char *, const char *, unsigned int);
365 extern struct MaskItem *find_exact_name_conf(enum maskitem_type, const struct Client *, const char *,
366 const char *, const char *);
367 extern void conf_free(struct MaskItem *);
368 extern void yyerror(const char *);
369 extern void conf_error_report(const char *);
370 extern void cleanup_tklines(void *);
371 extern int rehash(int);
372 extern void lookup_confhost(struct MaskItem *);
373 extern void conf_add_class_to_conf(struct MaskItem *, const char *);
374
375 extern const char *get_oper_name(const struct Client *);
376
377 /* XXX should the parse_aline stuff go into another file ?? */
378 #define AWILD 0x1 /* check wild cards */
379 extern int parse_aline(const char *, struct Client *, int, char **,
380 int, char **, char **, time_t *, char **, char **);
381 extern int valid_comment(struct Client *, char *, int);
382
383
384 #define TK_SECONDS 0
385 #define TK_MINUTES 1
386 extern time_t valid_tkline(const char *, int);
387 extern int match_conf_password(const char *, const struct MaskItem *);
388
389 #define NOT_AUTHORIZED (-1)
390 #define I_LINE_FULL (-2)
391 #define TOO_MANY (-3)
392 #define BANNED_CLIENT (-4)
393 #define TOO_FAST (-5)
394
395 #define CLEANUP_TKLINES_TIME 60
396
397 extern void cluster_a_line(struct Client *,
398 const char *, int, int, const char *,...);
399 #endif /* INCLUDED_s_conf_h */

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision