]> jfr.im git - irc/rqf/shadowircd.git/blob - include/s_newconf.h
Fix a typo in configure (glad it was only a minor typo in the help text)
[irc/rqf/shadowircd.git] / include / s_newconf.h
1 /*
2 * ircd-ratbox: an advanced Internet Relay Chat Daemon(ircd).
3 * s_newconf.h: code for dealing with conf stuff
4 *
5 * Copyright (C) 2004 Lee Hardy <lee@leeh.co.uk>
6 * Copyright (C) 2004 ircd-ratbox development team
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
10 * met:
11 *
12 * 1.Redistributions of source code must retain the above copyright notice,
13 * this list of conditions and the following disclaimer.
14 * 2.Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3.The name of the author may not be used to endorse or promote products
18 * derived from this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
24 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
29 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
31 *
32 * $Id: s_newconf.h 1747 2006-07-25 21:22:45Z jilles $
33 */
34
35 #ifndef INCLUDED_s_newconf_h
36 #define INCLUDED_s_newconf_h
37
38 #include "setup.h"
39 #include "privilege.h"
40
41 #ifdef HAVE_LIBCRYPTO
42 #include <openssl/rsa.h>
43 #endif
44
45 struct ConfItem;
46
47 extern rb_dlink_list cluster_conf_list;
48 extern rb_dlink_list shared_conf_list;
49 extern rb_dlink_list oper_conf_list;
50 extern rb_dlink_list hubleaf_conf_list;
51 extern rb_dlink_list server_conf_list;
52 extern rb_dlink_list xline_conf_list;
53 extern rb_dlink_list resv_conf_list;
54 extern rb_dlink_list nd_list;
55 extern rb_dlink_list tgchange_list;
56
57 extern struct _rb_patricia_tree_t *tgchange_tree;
58
59 extern void init_s_newconf(void);
60 extern void clear_s_newconf(void);
61 extern void clear_s_newconf_bans(void);
62
63 typedef struct
64 {
65 char *ip;
66 time_t expiry;
67 rb_patricia_node_t *pnode;
68 rb_dlink_node node;
69 } tgchange;
70
71 void add_tgchange(const char *host);
72 tgchange *find_tgchange(const char *host);
73
74 /* shared/cluster/hub/leaf confs */
75 struct remote_conf
76 {
77 char *username;
78 char *host;
79 char *server;
80 int flags;
81 rb_dlink_node node;
82 };
83
84 /* flags used in shared/cluster */
85 #define SHARED_TKLINE 0x0001
86 #define SHARED_PKLINE 0x0002
87 #define SHARED_UNKLINE 0x0004
88 #define SHARED_LOCOPS 0x0008
89 #define SHARED_TXLINE 0x0010
90 #define SHARED_PXLINE 0x0020
91 #define SHARED_UNXLINE 0x0040
92 #define SHARED_TRESV 0x0080
93 #define SHARED_PRESV 0x0100
94 #define SHARED_UNRESV 0x0200
95 #define SHARED_REHASH 0x0400
96 #define SHARED_TDLINE 0x0800
97 #define SHARED_PDLINE 0x1000
98 #define SHARED_UNDLINE 0x2000
99 #define SHARED_DIE 0x4000
100 #define SHARED_MODULE 0x8000
101
102 #define SHARED_ALL (SHARED_TKLINE | SHARED_PKLINE | SHARED_UNKLINE |\
103 SHARED_PXLINE | SHARED_TXLINE | SHARED_UNXLINE |\
104 SHARED_TRESV | SHARED_PRESV | SHARED_UNRESV | SHARED_REHASH)
105 #define CLUSTER_ALL (SHARED_ALL | SHARED_LOCOPS)
106
107 /* flags used in hub/leaf */
108 #define CONF_HUB 0x0001
109 #define CONF_LEAF 0x0002
110
111 struct oper_conf
112 {
113 char *name;
114 char *username;
115 char *host;
116 char *passwd;
117 char *certfp;
118
119 int flags;
120 int umodes;
121
122 unsigned int snomask;
123
124 char *vhost;
125 char *swhois;
126 char *operstring;
127
128 struct PrivilegeSet *privset;
129
130 #ifdef HAVE_LIBCRYPTO
131 char *rsa_pubkey_file;
132 RSA *rsa_pubkey;
133 #endif
134 };
135
136 extern struct remote_conf *make_remote_conf(void);
137 extern void free_remote_conf(struct remote_conf *);
138
139 extern int find_shared_conf(const char *username, const char *host,
140 const char *server, int flags);
141 extern void propagate_generic(struct Client *source_p, const char *command,
142 const char *target, int cap, const char *format, ...);
143 extern void cluster_generic(struct Client *, const char *, int cltype,
144 int cap, const char *format, ...);
145
146 #define OPER_ENCRYPTED 0x00001
147 #define OPER_NEEDSSL 0x80000
148 /* 0x400000 and above are in client.h */
149
150 #define OPER_FLAGS 0 /* no oper privs in Client.flags2/oper_conf.flags currently */
151
152 #define IsOperConfEncrypted(x) ((x)->flags & OPER_ENCRYPTED)
153 #define IsOperConfNeedSSL(x) ((x)->flags & OPER_NEEDSSL)
154
155 #define HasPrivilege(x, y) ((x)->localClient != NULL && (x)->localClient->privset != NULL && privilegeset_in_set((x)->localClient->privset, (y)))
156
157 #define IsOperGlobalKill(x) (HasPrivilege((x), "oper:global_kill"))
158 #define IsOperLocalKill(x) (HasPrivilege((x), "oper:local_kill"))
159 #define IsOperRemote(x) (HasPrivilege((x), "oper:routing"))
160 #define IsOperUnkline(x) (HasPrivilege((x), "oper:unkline"))
161 #define IsOperN(x) (HasPrivilege((x), "snomask:nick_changes"))
162 #define IsOperK(x) (HasPrivilege((x), "oper:kline"))
163 #define IsOperXline(x) (HasPrivilege((x), "oper:xline"))
164 #define IsOperResv(x) (HasPrivilege((x), "oper:resv"))
165 #define IsOperDie(x) (HasPrivilege((x), "oper:die"))
166 #define IsOperRehash(x) (HasPrivilege((x), "oper:rehash"))
167 #define IsOperHiddenAdmin(x) (HasPrivilege((x), "oper:hidden_admin"))
168 #define IsOperAdmin(x) (HasPrivilege((x), "oper:admin") || HasPrivilege((x), "oper:hidden_admin"))
169 #define IsOperOperwall(x) (HasPrivilege((x), "oper:operwall"))
170 #define IsOperSpy(x) (HasPrivilege((x), "oper:spy"))
171 #define IsOperOverride(x) (HasPrivilege((x), "oper:override"))
172 #define IsOperInvis(x) (HasPrivilege((x), "oper:hidden"))
173 #define IsOperRemoteBan(x) (HasPrivilege((x), "oper:remoteban"))
174 #define IsOperMassNotice(x) (HasPrivilege((x), "oper:mass_notice"))
175
176 extern struct oper_conf *make_oper_conf(void);
177 extern void free_oper_conf(struct oper_conf *);
178 extern void clear_oper_conf(void);
179
180 extern struct oper_conf *find_oper_conf(const char *username, const char *host,
181 const char *locip, const char *oname);
182
183 extern const char *get_oper_privs(int flags);
184
185 struct server_conf
186 {
187 char *name;
188 char *host;
189 char *passwd;
190 char *spasswd;
191 int port;
192 int flags;
193 int servers;
194 time_t hold;
195
196 int aftype;
197 struct rb_sockaddr_storage my_ipnum;
198
199 char *class_name;
200 struct Class *class;
201 rb_dlink_node node;
202 };
203
204 #define SERVER_ILLEGAL 0x0001
205 #define SERVER_VHOSTED 0x0002
206 #define SERVER_ENCRYPTED 0x0004
207 #define SERVER_COMPRESSED 0x0008
208 #define SERVER_TB 0x0010
209 #define SERVER_AUTOCONN 0x0020
210 #define SERVER_SSL 0x0040
211
212 #define ServerConfIllegal(x) ((x)->flags & SERVER_ILLEGAL)
213 #define ServerConfVhosted(x) ((x)->flags & SERVER_VHOSTED)
214 #define ServerConfEncrypted(x) ((x)->flags & SERVER_ENCRYPTED)
215 #define ServerConfCompressed(x) ((x)->flags & SERVER_COMPRESSED)
216 #define ServerConfTb(x) ((x)->flags & SERVER_TB)
217 #define ServerConfAutoconn(x) ((x)->flags & SERVER_AUTOCONN)
218 #define ServerConfSSL(x) ((x)->flags & SERVER_SSL)
219
220 extern struct server_conf *make_server_conf(void);
221 extern void free_server_conf(struct server_conf *);
222 extern void clear_server_conf(void);
223 extern void add_server_conf(struct server_conf *);
224
225 extern struct server_conf *find_server_conf(const char *name);
226
227 extern void attach_server_conf(struct Client *, struct server_conf *);
228 extern void detach_server_conf(struct Client *);
229 extern void set_server_conf_autoconn(struct Client *source_p, const char *name,
230 int newval);
231 extern void disable_server_conf_autoconn(const char *name);
232
233
234 extern struct ConfItem *find_xline(const char *, int);
235 extern struct ConfItem *find_xline_mask(const char *);
236 extern struct ConfItem *find_nick_resv(const char *name);
237 extern struct ConfItem *find_nick_resv_mask(const char *name);
238
239 extern int valid_wild_card_simple(const char *);
240 extern int clean_resv_nick(const char *);
241 time_t valid_temp_time(const char *p);
242
243 struct nd_entry
244 {
245 char name[NICKLEN+1];
246 time_t expire;
247 rb_dlink_node lnode; /* node in ll */
248 };
249
250 extern void add_nd_entry(const char *name);
251 extern void free_nd_entry(struct nd_entry *);
252 extern unsigned long get_nd_count(void);
253
254 #endif
255