ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/include/conf.h
Revision: 1623
Committed: Thu Nov 1 13:24:43 2012 UTC (11 years, 5 months ago) by michael
Content type: text/x-chdr
File size: 15626 byte(s)
Log Message:
- Removed temporary_xlines list

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 #ifdef HAVE_LIBCRYPTO
29 #include <openssl/rsa.h>
30 #endif
31 #include "ircd_defs.h"
32 #include "motd.h" /* MessageFile */
33 #include "client.h"
34 #include "hook.h"
35
36
37 struct Client;
38
39 extern struct Callback *client_check_cb;
40
41 struct conf_parser_context
42 {
43 unsigned int boot;
44 unsigned int pass;
45 FILE *conf_file;
46 };
47
48 extern struct conf_parser_context conf_parser_ctx;
49
50 typedef enum
51 {
52 CONF_TYPE,
53 CLASS_TYPE,
54 OPER_TYPE,
55 CLIENT_TYPE,
56 SERVER_TYPE,
57 HUB_TYPE,
58 LEAF_TYPE,
59 KLINE_TYPE,
60 DLINE_TYPE,
61 EXEMPTDLINE_TYPE,
62 CLUSTER_TYPE,
63 RKLINE_TYPE,
64 RXLINE_TYPE,
65 XLINE_TYPE,
66 ULINE_TYPE,
67 GLINE_TYPE,
68 CRESV_TYPE,
69 NRESV_TYPE,
70 SERVICE_TYPE
71 } ConfType;
72
73 struct split_nuh_item
74 {
75 dlink_node node;
76
77 char *nuhmask;
78 char *nickptr;
79 char *userptr;
80 char *hostptr;
81
82 size_t nicksize;
83 size_t usersize;
84 size_t hostsize;
85 };
86
87 struct ConfItem
88 {
89 dlink_node node; /* link into known ConfItems of this type */
90
91 char *name; /* Primary key */
92 void *regexpname;
93 unsigned int flags;
94 ConfType type;
95 };
96
97 /*
98 * MatchItem - used for XLINE and ULINE types
99 */
100 struct MatchItem
101 {
102 char *user; /* Used for ULINE only */
103 char *host; /* Used for ULINE only */
104 char *reason;
105 char *oper_reason;
106 int action; /* used for uline */
107 int count; /* How many times this matchitem has been matched */
108 int ref_count; /* How many times is this matchitem in use */
109 int illegal; /* Should it be deleted when possible? */
110 time_t hold; /* Hold action until this time (calendar time) */
111 time_t setat;
112 };
113
114 struct AccessItem
115 {
116 dlink_node node;
117 unsigned int dns_failed;
118 unsigned int dns_pending;
119 unsigned int status; /* If CONF_ILLEGAL, delete when no clients */
120 unsigned int flags;
121 unsigned int modes;
122 unsigned int port;
123 int clients; /* Number of *LOCAL* clients using this */
124 int bits;
125 int type;
126 struct irc_ssaddr bind; /* ip to bind to for outgoing connect */
127 struct irc_ssaddr addr; /* ip to connect to */
128 char * host; /* host part of user@host */
129 char * passwd;
130 char * spasswd; /* Password to send. */
131 char * reason;
132 char * user; /* user part of user@host */
133 time_t hold; /* Hold action until this time (calendar time) */
134 time_t setat;
135 struct ConfItem *class_ptr; /* Class of connection */
136 int aftype;
137 #ifdef HAVE_LIBCRYPTO
138 /* certs */
139 char *cipher_list;
140 char * rsa_public_key_file;
141 RSA * rsa_public_key;
142 #endif
143 void *regexuser;
144 void *regexhost;
145 dlink_list leaf_list;
146 dlink_list hub_list;
147 };
148
149 struct ClassItem
150 {
151 dlink_list list_ipv4; /* base of per cidr ipv4 client link list */
152 dlink_list list_ipv6; /* base of per cidr ipv6 client link list */
153 unsigned int max_sendq;
154 unsigned int max_recvq;
155 int con_freq;
156 int ping_freq;
157 int ping_warning;
158 int max_total;
159 int max_local;
160 int max_global;
161 int max_ident;
162 int max_perip;
163 int curr_user_count;
164 int cidr_bitlen_ipv4;
165 int cidr_bitlen_ipv6;
166 int number_per_cidr;
167 int active;
168 };
169
170 struct CidrItem
171 {
172 dlink_node node;
173 struct irc_ssaddr mask;
174 int number_on_this_cidr;
175 };
176
177
178 #define CONF_ILLEGAL 0x80000000
179 #define CONF_RESERVED 0x00000001
180 #define CONF_CLIENT 0x00000002
181 #define CONF_SERVER 0x00000004
182 #define CONF_OPERATOR 0x00000008
183 #define CONF_KLINE 0x00000010
184 #define CONF_CLASS 0x00000020
185 #define CONF_DLINE 0x00000040
186 #define CONF_XLINE 0x00000080
187 #define CONF_ULINE 0x00000100
188 #define CONF_EXEMPTDLINE 0x00000200
189 #define CONF_GLINE 0x00000400
190 #define CONF_SERVICE 0x00000800
191
192 #define CONF_SERVER_MASK CONF_SERVER
193 #define CONF_CLIENT_MASK (CONF_CLIENT | CONF_OPERATOR | CONF_SERVER_MASK)
194
195 /* XXX temporary hack */
196 #define CONF_CRESV 0x80000001
197 #define CONF_NRESV 0x80000002
198
199 #define IsConfIllegal(x) ((x)->status & CONF_ILLEGAL)
200 #define SetConfIllegal(x) ((x)->status |= CONF_ILLEGAL)
201 #define IsConfServer(x) ((x)->status == CONF_SERVER)
202 #define SetConfServer(x) ((x)->status = CONF_SERVER)
203 #define IsConfOperator(x) ((x)->status & CONF_OPERATOR)
204 #define IsConfKill(x) ((x)->status == CONF_KLINE)
205 #define IsConfClient(x) ((x)->status & CONF_CLIENT)
206 #define IsConfUline(x) ((x)->status & CONF_ULINE)
207 #define IsConfXline(x) ((x)->status & CONF_XLINE)
208 #define IsConfGline(x) ((x)->status == CONF_GLINE)
209
210 /* AccessItem->flags */
211
212 /* Generic flags... */
213 /* access flags... */
214 #define CONF_FLAGS_DO_IDENTD 0x00000001
215 #define CONF_FLAGS_LIMIT_IP 0x00000002
216 #define CONF_FLAGS_NO_TILDE 0x00000004
217 #define CONF_FLAGS_NEED_IDENTD 0x00000008
218 #define CONF_FLAGS_NOMATCH_IP 0x00000010
219 #define CONF_FLAGS_EXEMPTKLINE 0x00000020
220 #define CONF_FLAGS_NOLIMIT 0x00000040
221 #define CONF_FLAGS_SPOOF_IP 0x00000080
222 #define CONF_FLAGS_SPOOF_NOTICE 0x00000100
223 #define CONF_FLAGS_REDIR 0x00000200
224 #define CONF_FLAGS_EXEMPTGLINE 0x00000400
225 #define CONF_FLAGS_CAN_FLOOD 0x00000800
226 #define CONF_FLAGS_NEED_PASSWORD 0x00001000
227 /* server flags */
228 #define CONF_FLAGS_ALLOW_AUTO_CONN 0x00002000
229 #define CONF_FLAGS_ENCRYPTED 0x00004000
230 #define CONF_FLAGS_TEMPORARY 0x00008000
231 #define CONF_FLAGS_EXEMPTRESV 0x00010000
232 #define CONF_FLAGS_SSL 0x00020000
233 #define CONF_FLAGS_MAINCONF 0x00040000
234
235 /* Macros for struct AccessItem */
236 #define IsLimitIp(x) ((x)->flags & CONF_FLAGS_LIMIT_IP)
237 #define IsNoTilde(x) ((x)->flags & CONF_FLAGS_NO_TILDE)
238 #define IsConfCanFlood(x) ((x)->flags & CONF_FLAGS_CAN_FLOOD)
239 #define IsNeedPassword(x) ((x)->flags & CONF_FLAGS_NEED_PASSWORD)
240 #define IsNeedIdentd(x) ((x)->flags & CONF_FLAGS_NEED_IDENTD)
241 #define IsNoMatchIp(x) ((x)->flags & CONF_FLAGS_NOMATCH_IP)
242 #define IsConfExemptKline(x) ((x)->flags & CONF_FLAGS_EXEMPTKLINE)
243 #define IsConfExemptLimits(x) ((x)->flags & CONF_FLAGS_NOLIMIT)
244 #define IsConfExemptGline(x) ((x)->flags & CONF_FLAGS_EXEMPTGLINE)
245 #define IsConfExemptResv(x) ((x)->flags & CONF_FLAGS_EXEMPTRESV)
246 #define IsConfDoIdentd(x) ((x)->flags & CONF_FLAGS_DO_IDENTD)
247 #define IsConfDoSpoofIp(x) ((x)->flags & CONF_FLAGS_SPOOF_IP)
248 #define IsConfSpoofNotice(x) ((x)->flags & CONF_FLAGS_SPOOF_NOTICE)
249 #define IsConfEncrypted(x) ((x)->flags & CONF_FLAGS_ENCRYPTED)
250 #define SetConfEncrypted(x) ((x)->flags |= CONF_FLAGS_ENCRYPTED)
251 #define ClearConfEncrypted(x) ((x)->flags &= ~CONF_FLAGS_ENCRYPTED)
252 #define IsConfAllowAutoConn(x) ((x)->flags & CONF_FLAGS_ALLOW_AUTO_CONN)
253 #define SetConfAllowAutoConn(x) ((x)->flags |= CONF_FLAGS_ALLOW_AUTO_CONN)
254 #define ClearConfAllowAutoConn(x) ((x)->flags &= ~CONF_FLAGS_ALLOW_AUTO_CONN)
255 #define IsConfTemporary(x) ((x)->flags & CONF_FLAGS_TEMPORARY)
256 #define SetConfTemporary(x) ((x)->flags |= CONF_FLAGS_TEMPORARY)
257 #define IsConfRedir(x) ((x)->flags & CONF_FLAGS_REDIR)
258 #define IsConfSSL(x) ((x)->flags & CONF_FLAGS_SSL)
259 #define SetConfSSL(x) ((x)->flags |= CONF_FLAGS_SSL)
260 #define ClearConfSSL(x) ((x)->flags &= ~CONF_FLAGS_SSL)
261 #define IsConfMain(x) ((x)->flags & CONF_FLAGS_MAINCONF)
262 #define SetConfMain(x) ((x)->flags |= CONF_FLAGS_MAINCONF)
263 #define ClearConfMain(x) ((x)->flags &= ~CONF_FLAGS_MAINCONF)
264
265 /* shared/cluster server entry types
266 * These defines are used for both shared and cluster.
267 */
268 #define SHARED_KLINE 0x0001
269 #define SHARED_UNKLINE 0x0002
270 #define SHARED_XLINE 0x0004
271 #define SHARED_UNXLINE 0x0008
272 #define SHARED_RESV 0x0010
273 #define SHARED_UNRESV 0x0020
274 #define SHARED_LOCOPS 0x0040
275 #define SHARED_DLINE 0x0080
276 #define SHARED_UNDLINE 0x0100
277 #define SHARED_ALL (SHARED_KLINE | SHARED_UNKLINE |\
278 SHARED_XLINE | SHARED_UNXLINE |\
279 SHARED_RESV | SHARED_UNRESV |\
280 SHARED_LOCOPS | SHARED_DLINE | SHARED_UNDLINE)
281
282 struct config_file_entry
283 {
284 const char *dpath; /* DPATH if set from command line */
285 const char *configfile;
286 const char *klinefile;
287 const char *xlinefile;
288 const char *dlinefile;
289 const char *cresvfile;
290 const char *nresvfile;
291
292 char *egdpool_path;
293 char *service_name;
294
295 MessageFile motd;
296 MessageFile linksfile;
297
298 int gline_min_cidr;
299 int gline_min_cidr6;
300 int dots_in_ident;
301 int failed_oper_notice;
302 int anti_spam_exit_message_time;
303 unsigned int max_accept;
304 unsigned int max_watch;
305 int max_nick_time;
306 unsigned int max_nick_changes;
307 int ts_max_delta;
308 int ts_warn_delta;
309 int anti_nick_flood;
310 int warn_no_nline;
311 int invisible_on_connect;
312 int stats_e_disabled;
313 int stats_o_oper_only;
314 int stats_k_oper_only;
315 int stats_i_oper_only;
316 int stats_P_oper_only;
317 int short_motd;
318 int no_oper_flood;
319 int true_no_oper_flood;
320 int oper_pass_resv;
321 int glines;
322 int hide_spoof_ips;
323 int tkline_expire_notices;
324 int opers_bypass_callerid;
325 int ignore_bogus_ts;
326 int pace_wait;
327 int pace_wait_simple;
328 int gline_time;
329 int gline_request_time;
330 int oper_only_umodes;
331 int oper_umodes;
332 int max_targets;
333 int caller_id_wait;
334 int min_nonwildcard;
335 int min_nonwildcard_simple;
336 int kill_chase_time_limit;
337 int default_floodcount;
338 /* 0 == don't use throttle... */
339 int throttle_time;
340 int use_egd;
341 int ping_cookie;
342 int disable_auth;
343 int disable_remote;
344 };
345
346 struct config_channel_entry
347 {
348 int disable_fake_channels;
349 int restrict_channels;
350 int knock_delay;
351 int knock_delay_channel;
352 unsigned int max_bans;
353 unsigned int max_chans_per_user;
354 unsigned int max_chans_per_oper;
355 int no_create_on_split;
356 int no_join_on_split;
357 int quiet_on_ban;
358 int default_split_server_count;
359 int default_split_user_count;
360 };
361
362 struct config_server_hide
363 {
364 char *hidden_name;
365 int flatten_links;
366 int hide_servers;
367 int links_delay;
368 int links_disabled;
369 int hidden;
370 int hide_server_ips;
371 };
372
373 struct server_info
374 {
375 char *sid;
376 char *name;
377 char *description;
378 char *network_name;
379 char *network_desc;
380 #ifdef HAVE_LIBCRYPTO
381 char *rsa_private_key_file;
382 RSA *rsa_private_key;
383 SSL_CTX *server_ctx;
384 SSL_CTX *client_ctx;
385 #endif
386 int hub;
387 struct irc_ssaddr ip;
388 struct irc_ssaddr ip6;
389 unsigned int max_clients;
390 int specific_ipv4_vhost;
391 int specific_ipv6_vhost;
392 struct sockaddr_in dns_host;
393 int can_use_v6;
394 };
395
396 struct admin_info
397 {
398 char *name;
399 char *description;
400 char *email;
401 };
402
403 struct logging_entry
404 {
405 unsigned int use_logging;
406 };
407
408 extern dlink_list class_items;
409 extern dlink_list server_items;
410 extern dlink_list cluster_items;
411 extern dlink_list hub_items;
412 extern dlink_list xconf_items;
413 extern dlink_list rxconf_items;
414 extern dlink_list rkconf_items;
415 extern dlink_list leaf_items;
416 extern dlink_list service_items;
417 extern struct logging_entry ConfigLoggingEntry;
418 extern struct config_file_entry ConfigFileEntry;/* defined in ircd.c*/
419 extern struct config_channel_entry ConfigChannel;/* defined in channel.c*/
420 extern struct config_server_hide ConfigServerHide; /* defined in s_conf.c */
421 extern struct server_info ServerInfo; /* defined in ircd.c */
422 extern struct admin_info AdminInfo; /* defined in ircd.c */
423 extern int valid_wild_card(struct Client *, int, int, ...);
424 /* End GLOBAL section */
425
426 extern unsigned int get_sendq(struct Client *);
427 extern unsigned int get_recvq(struct Client *);
428 extern const char *get_client_class(struct Client *);
429 extern int get_client_ping(struct Client *, int *);
430 extern void check_class(void);
431 extern void init_class(void);
432 extern struct ConfItem *find_class(const char *);
433 extern void init_ip_hash_table(void);
434 extern void count_ip_hash(unsigned int *, uint64_t *);
435 extern void remove_one_ip(struct irc_ssaddr *);
436 extern struct ConfItem *make_conf_item(ConfType type);
437 extern void free_access_item(struct AccessItem *);
438 extern void read_conf_files(int);
439 extern int attach_conf(struct Client *, struct ConfItem *);
440 extern int attach_connect_block(struct Client *, const char *, const char *);
441
442 extern int detach_conf(struct Client *, ConfType);
443
444 extern struct ConfItem *find_conf_name(dlink_list *, const char *, ConfType);
445 extern struct ConfItem *find_conf_exact(ConfType, const char *, const char *, const char *);
446 extern struct AccessItem *find_kill(struct Client *);
447 extern struct AccessItem *find_gline(struct Client *);
448 extern int conf_connect_allowed(struct irc_ssaddr *, int);
449 extern char *oper_privs_as_string(const unsigned int);
450 extern void split_nuh(struct split_nuh_item *);
451 extern struct ConfItem *find_matching_name_conf(ConfType, const char *,
452 const char *, const char *, int);
453 extern struct ConfItem *find_exact_name_conf(ConfType, const struct Client *, const char *,
454 const char *, const char *);
455 extern void delete_conf_item(struct ConfItem *);
456 extern void report_confitem_types(struct Client *, ConfType);
457 extern void yyerror(const char *);
458 extern void write_conf_line(struct Client *, struct ConfItem *,
459 const char *, time_t);
460 extern int remove_conf_line(ConfType, struct Client *, const char *,
461 const char *);
462 extern void add_temp_line(struct ConfItem *);
463 extern void cleanup_tklines(void *);
464 extern int rehash(int);
465 extern int conf_add_server(struct ConfItem *, const char *);
466 extern void conf_add_class_to_conf(struct ConfItem *, const char *);
467
468 extern const char *get_oper_name(const struct Client *);
469
470 extern void *map_to_conf(struct ConfItem *);
471 extern struct ConfItem *unmap_conf_item(void *);
472 /* XXX should the parse_aline stuff go into another file ?? */
473 #define AWILD 0x1 /* check wild cards */
474 extern int parse_aline(const char *, struct Client *, int, char **,
475 int, char **, char **, time_t *, char **, char **);
476 extern int valid_comment(struct Client *, char *, int);
477
478
479 #define TK_SECONDS 0
480 #define TK_MINUTES 1
481 extern time_t valid_tkline(const char *, int);
482 extern int match_conf_password(const char *, const struct AccessItem *);
483
484 #define NOT_AUTHORIZED (-1)
485 #define I_LINE_FULL (-2)
486 #define TOO_MANY (-3)
487 #define BANNED_CLIENT (-4)
488 #define TOO_FAST (-5)
489
490 #define CLEANUP_TKLINES_TIME 60
491
492 extern void cluster_a_line(struct Client *,
493 const char *, int, int, const char *,...);
494 extern void rebuild_cidr_class(struct ConfItem *, struct ClassItem *);
495 #endif /* INCLUDED_s_conf_h */

Properties

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