]> jfr.im git - solanum.git/blame - include/client.h
extensions/invite_notify: make the NOTICE optional, configurable
[solanum.git] / include / client.h
CommitLineData
212380e3 1/*
a6f63a82 2 * Solanum: a slightly advanced ircd
212380e3
AC
3 * client.h: The ircd client header.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2004 ircd-ratbox development team
3fc0499e 8 * Copyright (C) 2005 Ariadne Conill and Jilles Tjoelker
212380e3
AC
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
23 * USA
212380e3
AC
24 */
25
26#ifndef INCLUDED_client_h
27#define INCLUDED_client_h
28
9b8e9eb3 29#include "defaults.h"
212380e3
AC
30
31#include "ircd_defs.h"
212380e3 32#include "channel.h"
1eeb0469 33#include "dns.h"
212380e3 34#include "snomask.h"
4562c604 35#include "match.h"
212380e3 36#include "ircd.h"
ef242716 37#include "privilege.h"
212380e3 38
212380e3
AC
39/* we store ipv6 ips for remote clients, so this needs to be v6 always */
40#define HOSTIPLEN 53 /* sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255.ipv6") */
154dc91e
EM
41#define PASSWDLEN 128
42#define CIPHERKEYLEN 64 /* 512bit */
212380e3
AC
43
44#define IDLEN 10
45
179becdf 46#define TGCHANGE_NUM 10 /* how many targets we keep track of */
c9f01c4f 47#define TGCHANGE_REPLY 5 /* how many reply targets */
179becdf
JT
48#define TGCHANGE_INITIAL 10 /* initial free targets (normal) */
49#define TGCHANGE_INITIAL_LOW 4 /* initial free targets (possible spambot) */
ad1d39a7 50
212380e3
AC
51/*
52 * pre declare structs
53 */
54struct ConfItem;
55struct Whowas;
56struct DNSReply;
57struct Listener;
58struct Client;
59struct User;
60struct Server;
61struct LocalUser;
212380e3 62struct PreClient;
999fab77 63struct ListClient;
994544c2 64struct scache_entry;
c53ca1e0 65struct ws_ctl;
212380e3 66
53789fdd
SA
67typedef int SSL_OPEN_CB(struct Client *, int status);
68
212380e3
AC
69/*
70 * Client structures
71 */
72struct User
73{
5b96d9a6
AC
74 rb_dlink_list channel; /* chain of channel pointer blocks */
75 rb_dlink_list invited; /* chain of invite pointer blocks */
c127b45b 76 char *away; /* pointer to away message */
212380e3 77 int refcnt; /* Number of times this block is referenced */
212380e3 78
ed3ca2ff
EK
79 char *opername; /* name of operator{} block being used or tried (challenge) */
80 struct PrivilegeSet *privset;
81
212380e3
AC
82 char suser[NICKLEN+1];
83};
84
85struct Server
86{
8f103562 87 struct User *user; /* who activated this connection */
212380e3 88 char by[NICKLEN];
5b96d9a6
AC
89 rb_dlink_list servers;
90 rb_dlink_list users;
212380e3
AC
91 int caps; /* capabilities bit-field */
92 char *fullcaps;
994544c2 93 struct scache_entry *nameinfo;
212380e3
AC
94};
95
212380e3
AC
96struct Client
97{
5b96d9a6
AC
98 rb_dlink_node node;
99 rb_dlink_node lnode;
8f103562
JT
100 struct User *user; /* ...defined, if this is a User */
101 struct Server *serv; /* ...defined, if this is a server */
102 struct Client *servptr; /* Points to server this Client is on */
103 struct Client *from; /* == self, if Local Client, *NEVER* NULL! */
212380e3 104
b47f8a4f
AC
105 rb_dlink_list whowas_clist;
106
212380e3
AC
107 time_t tsinfo; /* TS on the nick, SVINFO on server */
108 unsigned int umodes; /* opers, normal users subset */
66f7fe67 109 uint64_t flags; /* client flags */
212380e3
AC
110
111 unsigned int snomask; /* server notice mask */
112
113 int hopcount; /* number of servers to this 0 = local */
114 unsigned short status; /* Client type */
115 unsigned char handler; /* Handler index */
116 unsigned long serial; /* used to enforce 1 send per nick */
117
118 /* client->name is the unique name for a client nick or host */
fe5fc851 119 char name[NAMELEN + 1];
212380e3 120
55abcbb2
KB
121 /*
122 * client->username is the username from ident or the USER message,
123 * If the client is idented the USER message is ignored, otherwise
124 * the username part of the USER message is put here prefixed with a
212380e3
AC
125 * tilde depending on the I:line, Once a client has registered, this
126 * field should be considered read-only.
127 */
128 char username[USERLEN + 1]; /* client's username */
129
130 /*
131 * client->host contains the resolved name or ip address
132 * as a string for the user, it may be fiddled with for oper spoofing etc.
133 */
134 char host[HOSTLEN + 1]; /* client's hostname */
135 char orighost[HOSTLEN + 1]; /* original hostname (before dynamic spoofing) */
136 char sockhost[HOSTIPLEN + 1]; /* clients ip */
137 char info[REALLEN + 1]; /* Free form additional client info */
138
139 char id[IDLEN]; /* UID/SID, unique on the network */
140
141 /* list of who has this client on their allow list, its counterpart
142 * is in LocalUser
143 */
5b96d9a6 144 rb_dlink_list on_allow_list;
212380e3 145
c24efdc0
JT
146 time_t first_received_message_time;
147 int received_number_of_privmsgs;
148 int flood_noticed;
149
8f103562
JT
150 struct LocalUser *localClient;
151 struct PreClient *preClient;
aa9c9ed2
JT
152
153 time_t large_ctcp_sent; /* ctcp to large group sent, relax flood checks */
8eda114a 154 char *certfp; /* client certificate fingerprint */
212380e3
AC
155};
156
157struct LocalUser
158{
de7cf7e0
AC
159 rb_dlink_node tnode; /* This is the node for the local list type the client is on */
160 rb_dlink_list connids; /* This is the list of connids to free */
161
212380e3
AC
162 /*
163 * The following fields are allocated only for local clients
164 * (directly connected to *this* server with a socket.
165 */
166 /* Anti flooding part, all because of lamers... */
55abcbb2 167 time_t last_join_time; /* when this client last
212380e3 168 joined a channel */
55abcbb2 169 time_t last_leave_time; /* when this client last
212380e3 170 * left a channel */
55abcbb2 171 int join_leave_count; /* count of JOIN/LEAVE in less than
212380e3 172 MIN_JOIN_LEAVE_TIME seconds */
55abcbb2 173 int oper_warn_count_down; /* warn opers of this possible
212380e3
AC
174 spambot every time this gets to 0 */
175 time_t last_caller_id_time;
212380e3
AC
176
177 time_t lasttime; /* last time we parsed something */
178 time_t firsttime; /* time client was created */
179
180 /* Send and receive linebuf queues .. */
181 buf_head_t buf_sendq;
182 buf_head_t buf_recvq;
d3f6b808 183
212380e3
AC
184 /*
185 * we want to use unsigned int here so the sizes have a better chance of
186 * staying the same on 64 bit machines. The current trend is to use
187 * I32LP64, (32 bit ints, 64 bit longs and pointers) and since ircd
55abcbb2 188 * will NEVER run on an operating system where ints are less than 32 bits,
212380e3 189 * it's a relatively safe bet to use ints. Since right shift operations are
55abcbb2
KB
190 * performed on these, it's not safe to allow them to become negative,
191 * which is possible for long running server connections. Unsigned values
212380e3 192 * generally overflow gracefully. --Bleep
d3f6b808
EM
193 *
194 * We have modern conveniences. Let's use uint32_t. --Elizafox
212380e3 195 */
d3f6b808
EM
196 uint32_t sendM; /* Statistics: protocol messages send */
197 uint32_t sendK; /* Statistics: total k-bytes send */
198 uint32_t receiveM; /* Statistics: protocol messages received */
199 uint32_t receiveK; /* Statistics: total k-bytes received */
200 uint16_t sendB; /* counters to count upto 1-k lots of bytes */
201 uint16_t receiveB; /* sent and received. */
8f103562
JT
202 struct Listener *listener; /* listener accepted from */
203 struct ConfItem *att_conf; /* attached conf */
212380e3
AC
204 struct server_conf *att_sconf;
205
e7046ee5 206 struct rb_sockaddr_storage ip;
212380e3
AC
207 time_t last_nick_change;
208 int number_of_nick_changes;
209
210 /*
211 * XXX - there is no reason to save this, it should be checked when it's
212 * received and not stored, this is not used after registration
213 *
214 * agreed. lets get rid of it someday! --nenolod
215 */
216 char *passwd;
40c1fd47 217 char *auth_user;
8e9a7418 218 unsigned char *challenge;
212380e3 219 char *fullcaps;
ebe33dbf 220 char *cipher_string;
212380e3
AC
221
222 int caps; /* capabilities bit-field */
5b96d9a6 223 rb_fde_t *F; /* >= 0, for local clients */
212380e3
AC
224
225 /* time challenge response is valid for */
226 time_t chal_time;
227
d42e6915 228 time_t next_away; /* Don't allow next away before... */
212380e3
AC
229 time_t last;
230
231 /* clients allowed to talk through +g */
5b96d9a6 232 rb_dlink_list allow_list;
212380e3
AC
233
234 /* nicknames theyre monitoring */
5b96d9a6 235 rb_dlink_list monitor_list;
212380e3
AC
236
237 /*
238 * Anti-flood stuff. We track how many messages were parsed and how
239 * many we were allowed in the current second, and apply a simple decay
240 * to avoid flooding.
241 * -- adrian
242 */
212380e3
AC
243 int sent_parsed; /* how many messages we've parsed in this second */
244 time_t last_knock; /* time of last knock */
da20854e 245 uint32_t random_ping;
212380e3 246
ae78a571 247 /* target change stuff */
c9f01c4f
JT
248 /* targets we're aware of (fnv32(use_id(target_p))):
249 * 0..TGCHANGE_NUM-1 regular slots
250 * TGCHANGE_NUM..TGCHANGE_NUM+TGCHANGE_REPLY-1 reply slots
251 */
252 uint32_t targets[TGCHANGE_NUM + TGCHANGE_REPLY];
179becdf 253 unsigned int targets_free; /* free targets */
212380e3
AC
254 time_t target_last; /* last time we cleared a slot */
255
e88a1f1b
KB
256 /* ratelimit items */
257 time_t ratelimit;
258 unsigned int join_who_credits;
259
999fab77
AC
260 struct ListClient *safelist_data;
261
212380e3
AC
262 char *mangledhost; /* non-NULL if host mangling module loaded and
263 applicable to this client */
c6d72037 264
3318e109 265 struct _ssl_ctl *ssl_ctl; /* which ssl daemon we're associate with */
32eadd33 266 struct _ssl_ctl *z_ctl; /* second ctl for ssl+zlib */
c53ca1e0 267 struct ws_ctl *ws_ctl; /* ctl for wsockd */
53789fdd 268 SSL_OPEN_CB *ssl_callback; /* ssl connection is now open */
104c6d46 269 uint32_t localflags;
104c6d46 270 uint16_t cork_count; /* used for corking/uncorking connections */
c6d72037 271 struct ev_entry *event; /* used for associated events */
ef242716 272
c6bc97fd
AC
273 char sasl_agent[IDLEN];
274 unsigned char sasl_out;
275 unsigned char sasl_complete;
9d07a42d
MM
276
277 unsigned int sasl_messages;
278 unsigned int sasl_failures;
279 time_t sasl_next_retry;
212380e3
AC
280};
281
762468f8
SA
282#define AUTHC_F_DEFERRED 0x01
283#define AUTHC_F_COMPLETE 0x02
284
154dc91e
EM
285struct AuthClient
286{
287 uint32_t cid; /* authd id */
288 time_t timeout; /* When to terminate authd query */
289 bool accepted; /* did authd accept us? */
290 char cause; /* rejection cause */
291 char *data; /* reason data */
292 char *reason; /* reason we were rejected */
762468f8 293 int flags;
154dc91e
EM
294};
295
212380e3
AC
296struct PreClient
297{
298 char spoofnick[NICKLEN + 1];
299 char spoofuser[USERLEN + 1];
300 char spoofhost[HOSTLEN + 1];
301
154dc91e 302 struct AuthClient auth;
3540120a
JT
303
304 struct rb_sockaddr_storage lip; /* address of our side of the connection */
d4b2529a
SA
305
306 char id[IDLEN]; /* UID/SID, unique on the network (unverified) */
212380e3
AC
307};
308
999fab77
AC
309struct ListClient
310{
1788e557 311 char *chname, *mask, *nomask;
999fab77
AC
312 unsigned int users_min, users_max;
313 time_t created_min, created_max, topic_min, topic_max;
314 int operspy;
315};
316
212380e3
AC
317/*
318 * status macros.
319 */
320#define STAT_CONNECTING 0x01
321#define STAT_HANDSHAKE 0x02
322#define STAT_ME 0x04
323#define STAT_UNKNOWN 0x08
324#define STAT_REJECT 0x10
325#define STAT_SERVER 0x20
326#define STAT_CLIENT 0x40
327
328
329#define IsRegisteredUser(x) ((x)->status == STAT_CLIENT)
330#define IsRegistered(x) (((x)->status > STAT_UNKNOWN) && ((x)->status != STAT_REJECT))
331#define IsConnecting(x) ((x)->status == STAT_CONNECTING)
332#define IsHandshake(x) ((x)->status == STAT_HANDSHAKE)
333#define IsMe(x) ((x)->status == STAT_ME)
334#define IsUnknown(x) ((x)->status == STAT_UNKNOWN)
335#define IsServer(x) ((x)->status == STAT_SERVER)
336#define IsClient(x) ((x)->status == STAT_CLIENT)
337#define IsReject(x) ((x)->status == STAT_REJECT)
338
339#define IsAnyServer(x) (IsServer(x) || IsHandshake(x) || IsConnecting(x))
340
341#define IsOper(x) ((x)->umodes & UMODE_OPER)
342#define IsAdmin(x) ((x)->umodes & UMODE_ADMIN)
343
344#define SetReject(x) {(x)->status = STAT_REJECT; \
345 (x)->handler = UNREGISTERED_HANDLER; }
346
347#define SetConnecting(x) {(x)->status = STAT_CONNECTING; \
348 (x)->handler = UNREGISTERED_HANDLER; }
349
350#define SetHandshake(x) {(x)->status = STAT_HANDSHAKE; \
351 (x)->handler = UNREGISTERED_HANDLER; }
352
353#define SetMe(x) {(x)->status = STAT_ME; \
354 (x)->handler = UNREGISTERED_HANDLER; }
355
356#define SetUnknown(x) {(x)->status = STAT_UNKNOWN; \
357 (x)->handler = UNREGISTERED_HANDLER; }
358
359#define SetServer(x) {(x)->status = STAT_SERVER; \
360 (x)->handler = SERVER_HANDLER; }
361
362#define SetClient(x) {(x)->status = STAT_CLIENT; \
d4f7eb4c 363 (x)->handler = IsOperGeneral((x)) ? \
212380e3
AC
364 OPER_HANDLER : CLIENT_HANDLER; }
365#define SetRemoteClient(x) {(x)->status = STAT_CLIENT; \
366 (x)->handler = RCLIENT_HANDLER; }
367
368#define STAT_CLIENT_PARSE (STAT_UNKNOWN | STAT_CLIENT)
369#define STAT_SERVER_PARSE (STAT_CONNECTING | STAT_HANDSHAKE | STAT_SERVER)
370
371#define PARSE_AS_CLIENT(x) ((x)->status & STAT_CLIENT_PARSE)
372#define PARSE_AS_SERVER(x) ((x)->status & STAT_SERVER_PARSE)
373
374
375/*
376 * ts stuff
377 */
378#define TS_CURRENT 6
212380e3 379#define TS_MIN 6
212380e3
AC
380
381#define TS_DOESTS 0x10000000
382#define DoesTS(x) ((x)->tsinfo & TS_DOESTS)
383
384#define has_id(source) ((source)->id[0] != '\0')
385#define use_id(source) ((source)->id[0] != '\0' ? (source)->id : (source)->name)
386
387/* if target is TS6, use id if it has one, else name */
388#define get_id(source, target) ((IsServer(target->from) && has_id(target->from)) ? \
389 use_id(source) : (source)->name)
390
391/* housekeeping flags */
392
66f7fe67
EM
393#define FLAGS_PINGSENT 0x00000001 /* Unreplied ping sent */
394#define FLAGS_DEAD 0x00000002 /* Local socket is dead--Exiting soon */
395#define FLAGS_KILLED 0x00000004 /* Prevents "QUIT" from being sent for this */
396#define FLAGS_SENTUSER 0x00000008 /* Client sent a USER command. */
397#define FLAGS_CLICAP 0x00000010 /* In CAP negotiation, wait for CAP END */
398#define FLAGS_CLOSING 0x00000020 /* set when closing to suppress errors */
399#define FLAGS_PING_COOKIE 0x00000040 /* has sent ping cookie */
400#define FLAGS_GOTID 0x00000080 /* successful ident lookup achieved */
401#define FLAGS_FLOODDONE 0x00000100 /* flood grace period over / reported */
402#define FLAGS_NORMALEX 0x00000200 /* Client exited normally */
403#define FLAGS_MARK 0x00000400 /* marked client */
404#define FLAGS_HIDDEN 0x00000800 /* hidden server */
405#define FLAGS_EOB 0x00001000 /* EOB */
406#define FLAGS_MYCONNECT 0x00002000 /* MyConnect */
407#define FLAGS_IOERROR 0x00004000 /* IO error */
408#define FLAGS_SERVICE 0x00008000 /* network service */
409#define FLAGS_TGCHANGE 0x00010000 /* we're allowed to clear something */
410#define FLAGS_DYNSPOOF 0x00020000 /* dynamic spoof, only opers see ip */
411#define FLAGS_TGEXCESSIVE 0x00040000 /* whether the client has attemped to change targets excessively fast */
412#define FLAGS_CLICAP_DATA 0x00080000 /* requested CAP LS 302 */
413#define FLAGS_EXTENDCHANS 0x00100000
414#define FLAGS_EXEMPTRESV 0x00200000
415#define FLAGS_EXEMPTKLINE 0x00400000
416#define FLAGS_EXEMPTFLOOD 0x00800000
417#define FLAGS_IP_SPOOFING 0x01000000
418#define FLAGS_EXEMPTSPAMBOT 0x02000000
419#define FLAGS_EXEMPTSHIDE 0x04000000
420#define FLAGS_EXEMPTJUPE 0x08000000
94613c78 421#define FLAGS_IDENTIFIED 0x10000000 /* owns their current nick */
d1c028f2 422#define FLAGS_PINGWARN 0x20000000 /* whether we've warned about this client being unresponsive */
66f7fe67 423
212380e3 424
3318e109
AC
425/* flags for local clients, this needs stuff moved from above to here at some point */
426#define LFLAGS_SSL 0x00000001
427#define LFLAGS_FLUSH 0x00000002
c6d72037 428#define LFLAGS_CORK 0x00000004
c6ad9b0c 429#define LFLAGS_SCTP 0x00000008
bbdc439a 430#define LFLAGS_SECURE 0x00000010 /* for marking SSL clients as secure before registration */
05e3afc8 431/* LFLAGS_FAKE: client may not have the usually expected machinery plugged in; don't assert on it. For tests only. */
5409fbc0 432#define LFLAGS_FAKE 0x00000020
c6d72037 433
212380e3
AC
434/* umodes, settable flags */
435/* lots of this moved to snomask -- jilles */
436#define UMODE_SERVNOTICE 0x0001 /* server notices */
044aa2c7
VY
437#define UMODE_WALLOP 0x0002 /* send wallops to them */
438#define UMODE_OPERWALL 0x0004 /* Operwalls */
439#define UMODE_INVISIBLE 0x0008 /* makes user invisible */
044aa2c7
VY
440#define UMODE_LOCOPS 0x0020 /* show locops */
441#define UMODE_SERVICE 0x0040
442#define UMODE_DEAF 0x0080
443#define UMODE_NOFORWARD 0x0100 /* don't forward */
212380e3
AC
444
445/* user information flags, only settable by remote mode or local oper */
044aa2c7
VY
446#define UMODE_OPER 0x1000 /* Operator */
447#define UMODE_ADMIN 0x2000 /* Admin on server */
35eccf49 448#define UMODE_SECURE 0x4000 /* has a secure connection */
212380e3 449
212380e3
AC
450#define DEFAULT_OPER_UMODES (UMODE_SERVNOTICE | UMODE_OPERWALL | \
451 UMODE_WALLOP | UMODE_LOCOPS)
452#define DEFAULT_OPER_SNOMASK SNO_GENERAL
453
212380e3
AC
454/*
455 * flags macros.
456 */
457#define IsPerson(x) (IsClient(x) && (x)->user != NULL)
212380e3
AC
458#define HasServlink(x) ((x)->flags & FLAGS_SERVLINK)
459#define SetServlink(x) ((x)->flags |= FLAGS_SERVLINK)
460#define MyConnect(x) ((x)->flags & FLAGS_MYCONNECT)
461#define SetMyConnect(x) ((x)->flags |= FLAGS_MYCONNECT)
462#define ClearMyConnect(x) ((x)->flags &= ~FLAGS_MYCONNECT)
463
464#define MyClient(x) (MyConnect(x) && IsClient(x))
465#define SetMark(x) ((x)->flags |= FLAGS_MARK)
466#define ClearMark(x) ((x)->flags &= ~FLAGS_MARK)
467#define IsMarked(x) ((x)->flags & FLAGS_MARK)
468#define SetHidden(x) ((x)->flags |= FLAGS_HIDDEN)
469#define ClearHidden(x) ((x)->flags &= ~FLAGS_HIDDEN)
470#define IsHidden(x) ((x)->flags & FLAGS_HIDDEN)
471#define ClearEob(x) ((x)->flags &= ~FLAGS_EOB)
472#define SetEob(x) ((x)->flags |= FLAGS_EOB)
473#define HasSentEob(x) ((x)->flags & FLAGS_EOB)
474#define IsDead(x) ((x)->flags & FLAGS_DEAD)
475#define SetDead(x) ((x)->flags |= FLAGS_DEAD)
476#define IsClosing(x) ((x)->flags & FLAGS_CLOSING)
477#define SetClosing(x) ((x)->flags |= FLAGS_CLOSING)
478#define IsIOError(x) ((x)->flags & FLAGS_IOERROR)
479#define SetIOError(x) ((x)->flags |= FLAGS_IOERROR)
480#define IsAnyDead(x) (IsIOError(x) || IsDead(x) || IsClosing(x))
481#define IsTGChange(x) ((x)->flags & FLAGS_TGCHANGE)
482#define SetTGChange(x) ((x)->flags |= FLAGS_TGCHANGE)
483#define ClearTGChange(x) ((x)->flags &= ~FLAGS_TGCHANGE)
484#define IsDynSpoof(x) ((x)->flags & FLAGS_DYNSPOOF)
485#define SetDynSpoof(x) ((x)->flags |= FLAGS_DYNSPOOF)
486#define ClearDynSpoof(x) ((x)->flags &= ~FLAGS_DYNSPOOF)
ab894d74
KB
487#define IsTGExcessive(x) ((x)->flags & FLAGS_TGEXCESSIVE)
488#define SetTGExcessive(x) ((x)->flags |= FLAGS_TGEXCESSIVE)
489#define ClearTGExcessive(x) ((x)->flags &= ~FLAGS_TGEXCESSIVE)
94613c78
EK
490#define IsIdentified(x) ((x)->flags & FLAGS_IDENTIFIED)
491#define SetIdentified(x) ((x)->flags |= FLAGS_IDENTIFIED)
492#define ClearIdentified(x) ((x)->flags &= ~FLAGS_IDENTIFIED)
212380e3 493
3318e109
AC
494/* local flags */
495
496#define IsSSL(x) ((x)->localClient->localflags & LFLAGS_SSL)
497#define SetSSL(x) ((x)->localClient->localflags |= LFLAGS_SSL)
498#define ClearSSL(x) ((x)->localClient->localflags &= ~LFLAGS_SSL)
499
500#define IsFlush(x) ((x)->localClient->localflags & LFLAGS_FLUSH)
501#define SetFlush(x) ((x)->localClient->localflags |= LFLAGS_FLUSH)
c6d72037
VY
502#define ClearFlush(x) ((x)->localClient->localflags &= ~LFLAGS_FLUSH)
503
c6ad9b0c
SA
504#define IsSCTP(x) ((x)->localClient->localflags & LFLAGS_SCTP)
505#define SetSCTP(x) ((x)->localClient->localflags |= LFLAGS_SCTP)
506#define ClearSCTP(x) ((x)->localClient->localflags &= ~LFLAGS_SCTP)
507
bbdc439a
EK
508#define IsSecure(x) ((x)->localClient->localflags & LFLAGS_SECURE)
509#define SetSecure(x) ((x)->localClient->localflags |= LFLAGS_SECURE)
510#define ClearSecure(x) ((x)->localClient->localflags &= ~LFLAGS_SECURE)
d6c81378 511
212380e3
AC
512/* oper flags */
513#define MyOper(x) (MyConnect(x) && IsOper(x))
514
d4f7eb4c
EK
515#define SetOper(x) ((x)->umodes |= UMODE_OPER)
516#define ClearOper(x) ((x)->umodes &= ~(UMODE_OPER|UMODE_ADMIN))
212380e3 517
212380e3
AC
518/* umode flags */
519#define IsInvisible(x) ((x)->umodes & UMODE_INVISIBLE)
520#define SetInvisible(x) ((x)->umodes |= UMODE_INVISIBLE)
521#define ClearInvisible(x) ((x)->umodes &= ~UMODE_INVISIBLE)
35eccf49 522#define IsSecureClient(x) ((x)->umodes & UMODE_SECURE)
212380e3 523#define SendWallops(x) ((x)->umodes & UMODE_WALLOP)
212380e3
AC
524#define SendLocops(x) ((x)->umodes & UMODE_LOCOPS)
525#define SendServNotice(x) ((x)->umodes & UMODE_SERVNOTICE)
526#define SendOperwall(x) ((x)->umodes & UMODE_OPERWALL)
35eccf49
EK
527#define IsService(x) ((x)->umodes & UMODE_SERVICE)
528#define IsDeaf(x) ((x)->umodes & UMODE_DEAF)
529#define IsNoForward(x) ((x)->umodes & UMODE_NOFORWARD)
212380e3 530
212380e3 531#define SetGotId(x) ((x)->flags |= FLAGS_GOTID)
861a5445 532#define ClearGotId(x) ((x)->flags &= ~FLAGS_GOTID)
212380e3
AC
533#define IsGotId(x) (((x)->flags & FLAGS_GOTID) != 0)
534
66f7fe67
EM
535#define IsExemptKline(x) ((x)->flags & FLAGS_EXEMPTKLINE)
536#define SetExemptKline(x) ((x)->flags |= FLAGS_EXEMPTKLINE)
537#define IsExemptFlood(x) ((x)->flags & FLAGS_EXEMPTFLOOD)
538#define SetExemptFlood(x) ((x)->flags |= FLAGS_EXEMPTFLOOD)
539#define IsExemptSpambot(x) ((x)->flags & FLAGS_EXEMPTSPAMBOT)
540#define SetExemptSpambot(x) ((x)->flags |= FLAGS_EXEMPTSPAMBOT)
541#define IsExemptShide(x) ((x)->flags & FLAGS_EXEMPTSHIDE)
542#define SetExemptShide(x) ((x)->flags |= FLAGS_EXEMPTSHIDE)
543#define IsExemptJupe(x) ((x)->flags & FLAGS_EXEMPTJUPE)
544#define SetExemptJupe(x) ((x)->flags |= FLAGS_EXEMPTJUPE)
545#define IsExemptResv(x) ((x)->flags & FLAGS_EXEMPTRESV)
546#define SetExemptResv(x) ((x)->flags |= FLAGS_EXEMPTRESV)
547#define IsIPSpoof(x) ((x)->flags & FLAGS_IP_SPOOFING)
548#define SetIPSpoof(x) ((x)->flags |= FLAGS_IP_SPOOFING)
549#define IsExtendChans(x) ((x)->flags & FLAGS_EXTENDCHANS)
550#define SetExtendChans(x) ((x)->flags |= FLAGS_EXTENDCHANS)
212380e3 551
212380e3
AC
552/* for local users: flood grace period is over
553 * for servers: mentioned in networknotice.c notice
554 */
095328a7
JT
555#define IsFloodDone(x) ((x)->flags & FLAGS_FLOODDONE)
556#define SetFloodDone(x) ((x)->flags |= FLAGS_FLOODDONE)
212380e3 557
3318e109
AC
558/* These also operate on the uplink from which it came */
559#define IsCork(x) (MyConnect(x) ? (x)->localClient->cork_count : (x)->from->localClient->cork_count)
560#define SetCork(x) (MyConnect(x) ? (x)->localClient->cork_count++ : (x)->from->localClient->cork_count++ )
c6d72037
VY
561#define ClearCork(x) (MyConnect(x) ? (x)->localClient->cork_count-- : (x)->from->localClient->cork_count--)
562
212380e3
AC
563/*
564 * definitions for get_client_name
565 */
566#define HIDE_IP 0
567#define SHOW_IP 1
568#define MASK_IP 2
569
10df26d0
EK
570enum
571{
572 D_LINED,
573 K_LINED
574};
575
212380e3 576extern void check_banned_lines(void);
212380e3 577extern void check_klines(void);
10df26d0 578extern void check_one_kline(struct ConfItem *kline);
212380e3
AC
579extern void check_dlines(void);
580extern void check_xlines(void);
330692a1 581extern void resv_nick_fnc(const char *mask, const char *reason, int temp_time);
212380e3
AC
582
583extern const char *get_client_name(struct Client *client, int show_ip);
212380e3
AC
584extern const char *log_client_name(struct Client *, int);
585extern int is_remote_connect(struct Client *);
586extern void init_client(void);
8f103562 587extern struct Client *make_client(struct Client *from);
212380e3 588extern void free_pre_client(struct Client *client);
212380e3 589
10df26d0 590extern void notify_banned_client(struct Client *, struct ConfItem *, int ban);
212380e3
AC
591extern int exit_client(struct Client *, struct Client *, struct Client *, const char *);
592
593extern void error_exit_client(struct Client *, int);
594
212380e3
AC
595extern void count_local_client_memory(size_t * count, size_t * memory);
596extern void count_remote_client_memory(size_t * count, size_t * memory);
597
2d28539c
JT
598extern int clean_nick(const char *, int loc_client);
599
8f103562
JT
600extern struct Client *find_chasing(struct Client *, const char *, int *);
601extern struct Client *find_person(const char *);
602extern struct Client *find_named_person(const char *);
603extern struct Client *next_client(struct Client *, const char *);
212380e3 604
0e7cb7e6 605#define accept_message(s, t) ((s) == (t) || (rb_dlinkFind((s), &((t)->localClient->allow_list))))
c1b01bf5 606extern void del_all_accepts(struct Client *client_p, bool self_too);
212380e3 607
cef7a7bc 608extern void dead_link(struct Client *client_p, int sendqex);
212380e3 609extern int show_ip(struct Client *source_p, struct Client *target_p);
2635cc80 610extern int show_ip_conf(struct ConfItem *aconf, struct Client *source_p);
364e59f8 611extern int show_ip_whowas(struct Whowas *whowas, struct Client *source_p);
212380e3 612
212380e3 613extern void free_user(struct User *, struct Client *);
8f103562
JT
614extern struct User *make_user(struct Client *);
615extern struct Server *make_server(struct Client *);
212380e3
AC
616extern void close_connection(struct Client *);
617extern void init_uid(void);
618extern char *generate_uid(void);
619
3318e109 620void allocate_away(struct Client *);
300a5433
VY
621void free_away(struct Client *);
622
de7cf7e0
AC
623uint32_t connid_get(struct Client *client_p);
624void connid_put(uint32_t id);
625void client_release_connids(struct Client *client_p);
626
212380e3 627#endif /* INCLUDED_client_h */