]> jfr.im git - solanum.git/blame - include/s_newconf.h
ircd/authd: remove rb_free no longer needed.
[solanum.git] / include / s_newconf.h
CommitLineData
212380e3
AC
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.
212380e3
AC
31 */
32
33#ifndef INCLUDED_s_newconf_h
34#define INCLUDED_s_newconf_h
35
36#include "setup.h"
a2e1310c 37#include "privilege.h"
212380e3
AC
38
39#ifdef HAVE_LIBCRYPTO
40#include <openssl/rsa.h>
41#endif
42
43struct ConfItem;
44
5b96d9a6
AC
45extern rb_dlink_list cluster_conf_list;
46extern rb_dlink_list shared_conf_list;
47extern rb_dlink_list oper_conf_list;
48extern rb_dlink_list hubleaf_conf_list;
49extern rb_dlink_list server_conf_list;
50extern rb_dlink_list xline_conf_list;
51extern rb_dlink_list resv_conf_list;
52extern rb_dlink_list nd_list;
53extern rb_dlink_list tgchange_list;
212380e3 54
2e819b6b 55extern struct _rb_patricia_tree_t *tgchange_tree;
212380e3
AC
56
57extern void init_s_newconf(void);
58extern void clear_s_newconf(void);
59extern void clear_s_newconf_bans(void);
60
212380e3
AC
61typedef struct
62{
63 char *ip;
64 time_t expiry;
5b96d9a6
AC
65 rb_patricia_node_t *pnode;
66 rb_dlink_node node;
212380e3
AC
67} tgchange;
68
69void add_tgchange(const char *host);
70tgchange *find_tgchange(const char *host);
71
72/* shared/cluster/hub/leaf confs */
73struct remote_conf
74{
75 char *username;
76 char *host;
77 char *server;
78 int flags;
5b96d9a6 79 rb_dlink_node node;
212380e3
AC
80};
81
82/* flags used in shared/cluster */
15feac53
AC
83#define SHARED_TKLINE 0x00001
84#define SHARED_PKLINE 0x00002
85#define SHARED_UNKLINE 0x00004
86#define SHARED_LOCOPS 0x00008
87#define SHARED_TXLINE 0x00010
88#define SHARED_PXLINE 0x00020
89#define SHARED_UNXLINE 0x00040
90#define SHARED_TRESV 0x00080
91#define SHARED_PRESV 0x00100
92#define SHARED_UNRESV 0x00200
93#define SHARED_REHASH 0x00400
94#define SHARED_TDLINE 0x00800
95#define SHARED_PDLINE 0x01000
96#define SHARED_UNDLINE 0x02000
97#define SHARED_GRANT 0x04000
98#define SHARED_DIE 0x08000
99#define SHARED_MODULE 0x10000
212380e3
AC
100
101#define SHARED_ALL (SHARED_TKLINE | SHARED_PKLINE | SHARED_UNKLINE |\
102 SHARED_PXLINE | SHARED_TXLINE | SHARED_UNXLINE |\
fe749d37 103 SHARED_TRESV | SHARED_PRESV | SHARED_UNRESV | SHARED_GRANT)
212380e3
AC
104#define CLUSTER_ALL (SHARED_ALL | SHARED_LOCOPS)
105
106/* flags used in hub/leaf */
107#define CONF_HUB 0x0001
108#define CONF_LEAF 0x0002
109
110struct oper_conf
111{
112 char *name;
113 char *username;
114 char *host;
115 char *passwd;
ff31db84 116 char *certfp;
212380e3
AC
117
118 int flags;
119 int umodes;
120
121 unsigned int snomask;
122
a2e1310c
AC
123 struct PrivilegeSet *privset;
124
212380e3
AC
125#ifdef HAVE_LIBCRYPTO
126 char *rsa_pubkey_file;
127 RSA *rsa_pubkey;
128#endif
129};
130
131extern struct remote_conf *make_remote_conf(void);
132extern void free_remote_conf(struct remote_conf *);
133
bd43a444 134extern bool find_shared_conf(const char *username, const char *host,
212380e3
AC
135 const char *server, int flags);
136extern void propagate_generic(struct Client *source_p, const char *command,
137 const char *target, int cap, const char *format, ...);
138extern void cluster_generic(struct Client *, const char *, int cltype,
139 int cap, const char *format, ...);
140
141#define OPER_ENCRYPTED 0x00001
b1594414 142#define OPER_NEEDSSL 0x80000
3fec9477 143/* 0x400000 and above are in client.h */
212380e3 144
10847f65 145#define OPER_FLAGS 0 /* no oper privs in Client.flags2/oper_conf.flags currently */
212380e3
AC
146
147#define IsOperConfEncrypted(x) ((x)->flags & OPER_ENCRYPTED)
b1594414 148#define IsOperConfNeedSSL(x) ((x)->flags & OPER_NEEDSSL)
212380e3 149
f37fc938 150#define HasPrivilege(x, y) ((x)->localClient != NULL && (x)->localClient->privset != NULL && privilegeset_in_set((x)->localClient->privset, (y)))
6ac9e53e
AC
151
152#define IsOperGlobalKill(x) (HasPrivilege((x), "oper:global_kill"))
153#define IsOperLocalKill(x) (HasPrivilege((x), "oper:local_kill"))
154#define IsOperRemote(x) (HasPrivilege((x), "oper:routing"))
155#define IsOperUnkline(x) (HasPrivilege((x), "oper:unkline"))
156#define IsOperN(x) (HasPrivilege((x), "snomask:nick_changes"))
157#define IsOperK(x) (HasPrivilege((x), "oper:kline"))
158#define IsOperXline(x) (HasPrivilege((x), "oper:xline"))
159#define IsOperResv(x) (HasPrivilege((x), "oper:resv"))
160#define IsOperDie(x) (HasPrivilege((x), "oper:die"))
161#define IsOperRehash(x) (HasPrivilege((x), "oper:rehash"))
162#define IsOperHiddenAdmin(x) (HasPrivilege((x), "oper:hidden_admin"))
163#define IsOperAdmin(x) (HasPrivilege((x), "oper:admin") || HasPrivilege((x), "oper:hidden_admin"))
164#define IsOperOperwall(x) (HasPrivilege((x), "oper:operwall"))
165#define IsOperSpy(x) (HasPrivilege((x), "oper:spy"))
166#define IsOperInvis(x) (HasPrivilege((x), "oper:hidden"))
167#define IsOperRemoteBan(x) (HasPrivilege((x), "oper:remoteban"))
168#define IsOperMassNotice(x) (HasPrivilege((x), "oper:mass_notice"))
212380e3
AC
169
170extern struct oper_conf *make_oper_conf(void);
171extern void free_oper_conf(struct oper_conf *);
172extern void clear_oper_conf(void);
173
174extern struct oper_conf *find_oper_conf(const char *username, const char *host,
175 const char *locip, const char *oname);
176
177extern const char *get_oper_privs(int flags);
178
179struct server_conf
180{
181 char *name;
182 char *host;
183 char *passwd;
184 char *spasswd;
ff0cc1e6 185 char *certfp;
212380e3
AC
186 int port;
187 int flags;
188 int servers;
189 time_t hold;
190
191 int aftype;
e7046ee5 192 struct rb_sockaddr_storage my_ipnum;
212380e3
AC
193
194 char *class_name;
195 struct Class *class;
5b96d9a6 196 rb_dlink_node node;
1d02144f
AC
197
198 uint16_t dns_query;
212380e3
AC
199};
200
201#define SERVER_ILLEGAL 0x0001
202#define SERVER_VHOSTED 0x0002
203#define SERVER_ENCRYPTED 0x0004
204#define SERVER_COMPRESSED 0x0008
205#define SERVER_TB 0x0010
206#define SERVER_AUTOCONN 0x0020
c6d72037 207#define SERVER_SSL 0x0040
212380e3
AC
208
209#define ServerConfIllegal(x) ((x)->flags & SERVER_ILLEGAL)
210#define ServerConfVhosted(x) ((x)->flags & SERVER_VHOSTED)
211#define ServerConfEncrypted(x) ((x)->flags & SERVER_ENCRYPTED)
212#define ServerConfCompressed(x) ((x)->flags & SERVER_COMPRESSED)
213#define ServerConfTb(x) ((x)->flags & SERVER_TB)
214#define ServerConfAutoconn(x) ((x)->flags & SERVER_AUTOCONN)
c6d72037 215#define ServerConfSSL(x) ((x)->flags & SERVER_SSL)
212380e3
AC
216
217extern struct server_conf *make_server_conf(void);
218extern void free_server_conf(struct server_conf *);
219extern void clear_server_conf(void);
220extern void add_server_conf(struct server_conf *);
221
222extern struct server_conf *find_server_conf(const char *name);
223
224extern void attach_server_conf(struct Client *, struct server_conf *);
225extern void detach_server_conf(struct Client *);
55abcbb2 226extern void set_server_conf_autoconn(struct Client *source_p, const char *name,
212380e3 227 int newval);
53307da8 228extern void disable_server_conf_autoconn(const char *name);
212380e3
AC
229
230
231extern struct ConfItem *find_xline(const char *, int);
0fdb2570 232extern struct ConfItem *find_xline_mask(const char *);
212380e3 233extern struct ConfItem *find_nick_resv(const char *name);
0fdb2570 234extern struct ConfItem *find_nick_resv_mask(const char *name);
212380e3
AC
235
236extern int valid_wild_card_simple(const char *);
237extern int clean_resv_nick(const char *);
238time_t valid_temp_time(const char *p);
239
ae78a571
VY
240struct nd_entry
241{
242 char name[NICKLEN+1];
243 time_t expire;
244 rb_dlink_node lnode; /* node in ll */
212380e3
AC
245};
246
247extern void add_nd_entry(const char *name);
248extern void free_nd_entry(struct nd_entry *);
249extern unsigned long get_nd_count(void);
250
251#endif
252