ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/include/conf.h
Revision: 3377
Committed: Thu Apr 24 16:15:51 2014 UTC (9 years, 11 months ago) by michael
Content type: text/x-chdr
File size: 12430 byte(s)
Log Message:
- Create 8.2.x branch

File Contents

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

Properties

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