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