]> jfr.im git - solanum.git/blame - include/client.h
struct Client: add a dictionary to contain presence metadata.
[solanum.git] / include / client.h
CommitLineData
212380e3
AC
1/*
2 * charybdis: A useful 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 William Pitcock 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 *
54015b5f 25 * $Id: client.h 3446 2007-05-14 22:21:16Z jilles $
212380e3
AC
26 */
27
28#ifndef INCLUDED_client_h
29#define INCLUDED_client_h
30
31#include "config.h"
32
33#if !defined(CONFIG_RATBOX_LEVEL_1)
34#error Incorrect config.h for this revision of ircd.
35#endif
36
37#include "ircd_defs.h"
212380e3
AC
38#include "channel.h"
39#include "res.h"
40#include "snomask.h"
4562c604 41#include "match.h"
212380e3 42#include "ircd.h"
ef242716 43#include "privilege.h"
212380e3
AC
44
45/* other structs */
46struct Blacklist;
47
48/* we store ipv6 ips for remote clients, so this needs to be v6 always */
49#define HOSTIPLEN 53 /* sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255.ipv6") */
50#define PASSWDLEN 128
51#define CIPHERKEYLEN 64 /* 512bit */
52#define CLIENT_BUFSIZE 512 /* must be at least 512 bytes */
53
54#define IDLEN 10
55
56/*
57 * pre declare structs
58 */
59struct ConfItem;
60struct Whowas;
61struct DNSReply;
62struct Listener;
63struct Client;
64struct User;
65struct Server;
66struct LocalUser;
67struct AuthRequest;
68struct PreClient;
69struct ListClient;
994544c2 70struct scache_entry;
212380e3
AC
71
72/*
73 * Atheme's coding standards require that we use BSD-style user-defined types
74 * for stuff. Fun! --nenolod
75 */
76typedef struct User user_t;
77typedef struct Server server_t;
78typedef struct Client client_t;
79typedef struct LocalUser local_user_t;
80typedef struct Listener listener_t;
81typedef struct DNSReply dns_reply_t;
82typedef struct Whowas whowas_entry_t;
83typedef struct ConfItem conf_item_t;
84typedef struct AuthRequest auth_request_t;
85typedef struct PreClient pre_client_t;
86typedef struct ListClient list_client_t;
87
88/*
89 * Client structures
90 */
91struct User
92{
5b96d9a6
AC
93 rb_dlink_list channel; /* chain of channel pointer blocks */
94 rb_dlink_list invited; /* chain of invite pointer blocks */
212380e3
AC
95 char *away; /* pointer to away message */
96 int refcnt; /* Number of times this block is referenced */
212380e3
AC
97
98 char suser[NICKLEN+1];
99};
100
101struct Server
102{
103 user_t *user; /* who activated this connection */
212380e3 104 char by[NICKLEN];
5b96d9a6
AC
105 rb_dlink_list servers;
106 rb_dlink_list users;
212380e3
AC
107 int caps; /* capabilities bit-field */
108 char *fullcaps;
994544c2 109 struct scache_entry *nameinfo;
212380e3
AC
110};
111
212380e3
AC
112struct ZipStats
113{
8bd5767b
JT
114 unsigned long long in;
115 unsigned long long in_wire;
116 unsigned long long out;
117 unsigned long long out_wire;
118 double in_ratio;
212380e3
AC
119 double out_ratio;
120};
121
122struct Client
123{
5b96d9a6
AC
124 rb_dlink_node node;
125 rb_dlink_node lnode;
212380e3
AC
126 user_t *user; /* ...defined, if this is a User */
127 server_t *serv; /* ...defined, if this is a server */
128 client_t *servptr; /* Points to server this Client is on */
129 client_t *from; /* == self, if Local Client, *NEVER* NULL! */
130
131 whowas_entry_t *whowas; /* Pointers to whowas structs */
132 time_t tsinfo; /* TS on the nick, SVINFO on server */
133 unsigned int umodes; /* opers, normal users subset */
134 unsigned int flags; /* client flags */
135 unsigned int flags2; /* ugh. overflow */
136
137 unsigned int snomask; /* server notice mask */
138
139 int hopcount; /* number of servers to this 0 = local */
140 unsigned short status; /* Client type */
141 unsigned char handler; /* Handler index */
142 unsigned long serial; /* used to enforce 1 send per nick */
143
144 /* client->name is the unique name for a client nick or host */
145 char name[HOSTLEN + 1];
146
147 /*
148 * client->username is the username from ident or the USER message,
149 * If the client is idented the USER message is ignored, otherwise
150 * the username part of the USER message is put here prefixed with a
151 * tilde depending on the I:line, Once a client has registered, this
152 * field should be considered read-only.
153 */
154 char username[USERLEN + 1]; /* client's username */
155
156 /*
157 * client->host contains the resolved name or ip address
158 * as a string for the user, it may be fiddled with for oper spoofing etc.
159 */
160 char host[HOSTLEN + 1]; /* client's hostname */
161 char orighost[HOSTLEN + 1]; /* original hostname (before dynamic spoofing) */
162 char sockhost[HOSTIPLEN + 1]; /* clients ip */
163 char info[REALLEN + 1]; /* Free form additional client info */
164
165 char id[IDLEN]; /* UID/SID, unique on the network */
166
167 /* list of who has this client on their allow list, its counterpart
168 * is in LocalUser
169 */
5b96d9a6 170 rb_dlink_list on_allow_list;
212380e3 171
c24efdc0
JT
172 time_t first_received_message_time;
173 int received_number_of_privmsgs;
174 int flood_noticed;
175
212380e3
AC
176 local_user_t *localClient;
177 pre_client_t *preClient;
aa9c9ed2
JT
178
179 time_t large_ctcp_sent; /* ctcp to large group sent, relax flood checks */
d7ca5991
AC
180
181 struct Dictionary *metadata;
212380e3
AC
182};
183
184struct LocalUser
185{
5b96d9a6 186 rb_dlink_node tnode; /* This is the node for the local list type the client is on*/
212380e3
AC
187 /*
188 * The following fields are allocated only for local clients
189 * (directly connected to *this* server with a socket.
190 */
191 /* Anti flooding part, all because of lamers... */
192 time_t last_join_time; /* when this client last
193 joined a channel */
194 time_t last_leave_time; /* when this client last
195 * left a channel */
196 int join_leave_count; /* count of JOIN/LEAVE in less than
197 MIN_JOIN_LEAVE_TIME seconds */
198 int oper_warn_count_down; /* warn opers of this possible
199 spambot every time this gets to 0 */
200 time_t last_caller_id_time;
212380e3
AC
201
202 time_t lasttime; /* last time we parsed something */
203 time_t firsttime; /* time client was created */
204
205 /* Send and receive linebuf queues .. */
206 buf_head_t buf_sendq;
207 buf_head_t buf_recvq;
208 /*
209 * we want to use unsigned int here so the sizes have a better chance of
210 * staying the same on 64 bit machines. The current trend is to use
211 * I32LP64, (32 bit ints, 64 bit longs and pointers) and since ircd
212 * will NEVER run on an operating system where ints are less than 32 bits,
213 * it's a relatively safe bet to use ints. Since right shift operations are
214 * performed on these, it's not safe to allow them to become negative,
215 * which is possible for long running server connections. Unsigned values
216 * generally overflow gracefully. --Bleep
217 */
218 unsigned int sendM; /* Statistics: protocol messages send */
219 unsigned int sendK; /* Statistics: total k-bytes send */
220 unsigned int receiveM; /* Statistics: protocol messages received */
221 unsigned int receiveK; /* Statistics: total k-bytes received */
222 unsigned short sendB; /* counters to count upto 1-k lots of bytes */
223 unsigned short receiveB; /* sent and received. */
224 listener_t *listener; /* listener accepted from */
225 conf_item_t *att_conf; /* attached conf */
226 struct server_conf *att_sconf;
227
e7046ee5 228 struct rb_sockaddr_storage ip;
212380e3
AC
229 time_t last_nick_change;
230 int number_of_nick_changes;
231
232 /*
233 * XXX - there is no reason to save this, it should be checked when it's
234 * received and not stored, this is not used after registration
235 *
236 * agreed. lets get rid of it someday! --nenolod
237 */
238 char *passwd;
40c1fd47 239 char *auth_user;
212380e3
AC
240 char *opername; /* name of operator{} block being used or tried (challenge) */
241 char *challenge;
242 char *fullcaps;
243
244 int caps; /* capabilities bit-field */
5b96d9a6 245 rb_fde_t *F; /* >= 0, for local clients */
212380e3
AC
246
247 /* time challenge response is valid for */
248 time_t chal_time;
249
abe5dd20
JT
250 struct DNSQuery *dnsquery; /* for outgoing server's name lookup */
251
212380e3
AC
252 time_t last_away; /* Away since... */
253 time_t last;
254
255 /* clients allowed to talk through +g */
5b96d9a6 256 rb_dlink_list allow_list;
212380e3
AC
257
258 /* nicknames theyre monitoring */
5b96d9a6 259 rb_dlink_list monitor_list;
212380e3
AC
260
261 /*
262 * Anti-flood stuff. We track how many messages were parsed and how
263 * many we were allowed in the current second, and apply a simple decay
264 * to avoid flooding.
265 * -- adrian
266 */
267 int allow_read; /* how many we're allowed to read in this second */
268 int actually_read; /* how many we've actually read in this second */
269 int sent_parsed; /* how many messages we've parsed in this second */
270 time_t last_knock; /* time of last knock */
271 unsigned long random_ping;
272 auth_request_t *auth_request;
273
ae78a571
VY
274 /* target change stuff */
275 uint32_t targets[10]; /* targets were aware of (fnv32(use_id(target_p))) */
276 unsigned int targinfo[2]; /* cyclic array, no in use */
212380e3
AC
277 time_t target_last; /* last time we cleared a slot */
278
279 list_client_t *safelist_data;
280
281 char *mangledhost; /* non-NULL if host mangling module loaded and
282 applicable to this client */
c6d72037 283
3318e109 284 struct _ssl_ctl *ssl_ctl; /* which ssl daemon we're associate with */
32eadd33 285 struct _ssl_ctl *z_ctl; /* second ctl for ssl+zlib */
104c6d46 286 uint32_t localflags;
c6d72037 287 struct ZipStats *zipstats; /* zipstats */
104c6d46 288 uint16_t cork_count; /* used for corking/uncorking connections */
c6d72037 289 struct ev_entry *event; /* used for associated events */
ef242716
AC
290
291 struct PrivilegeSet *privset; /* privset... */
212380e3
AC
292};
293
294struct PreClient
295{
296 char spoofnick[NICKLEN + 1];
297 char spoofuser[USERLEN + 1];
298 char spoofhost[HOSTLEN + 1];
299
300 char sasl_agent[IDLEN];
301 unsigned char sasl_out;
302 unsigned char sasl_complete;
303
5b96d9a6 304 rb_dlink_list dnsbl_queries; /* list of struct BlacklistClient * */
212380e3 305 struct Blacklist *dnsbl_listed; /* first dnsbl where it's listed */
3540120a
JT
306
307 struct rb_sockaddr_storage lip; /* address of our side of the connection */
212380e3
AC
308};
309
310struct ListClient
311{
312 unsigned int hash_indice;
313 unsigned int users_min, users_max;
314
315 /* It would be nice to add other modifiers,
316 * but not for 1.1 --nenolod
317 */
318};
319
212380e3
AC
320/*
321 * status macros.
322 */
323#define STAT_CONNECTING 0x01
324#define STAT_HANDSHAKE 0x02
325#define STAT_ME 0x04
326#define STAT_UNKNOWN 0x08
327#define STAT_REJECT 0x10
328#define STAT_SERVER 0x20
329#define STAT_CLIENT 0x40
330
331
332#define IsRegisteredUser(x) ((x)->status == STAT_CLIENT)
333#define IsRegistered(x) (((x)->status > STAT_UNKNOWN) && ((x)->status != STAT_REJECT))
334#define IsConnecting(x) ((x)->status == STAT_CONNECTING)
335#define IsHandshake(x) ((x)->status == STAT_HANDSHAKE)
336#define IsMe(x) ((x)->status == STAT_ME)
337#define IsUnknown(x) ((x)->status == STAT_UNKNOWN)
338#define IsServer(x) ((x)->status == STAT_SERVER)
339#define IsClient(x) ((x)->status == STAT_CLIENT)
340#define IsReject(x) ((x)->status == STAT_REJECT)
341
342#define IsAnyServer(x) (IsServer(x) || IsHandshake(x) || IsConnecting(x))
343
344#define IsOper(x) ((x)->umodes & UMODE_OPER)
345#define IsAdmin(x) ((x)->umodes & UMODE_ADMIN)
346
347#define SetReject(x) {(x)->status = STAT_REJECT; \
348 (x)->handler = UNREGISTERED_HANDLER; }
349
350#define SetConnecting(x) {(x)->status = STAT_CONNECTING; \
351 (x)->handler = UNREGISTERED_HANDLER; }
352
353#define SetHandshake(x) {(x)->status = STAT_HANDSHAKE; \
354 (x)->handler = UNREGISTERED_HANDLER; }
355
356#define SetMe(x) {(x)->status = STAT_ME; \
357 (x)->handler = UNREGISTERED_HANDLER; }
358
359#define SetUnknown(x) {(x)->status = STAT_UNKNOWN; \
360 (x)->handler = UNREGISTERED_HANDLER; }
361
362#define SetServer(x) {(x)->status = STAT_SERVER; \
363 (x)->handler = SERVER_HANDLER; }
364
365#define SetClient(x) {(x)->status = STAT_CLIENT; \
366 (x)->handler = IsOper((x)) ? \
367 OPER_HANDLER : CLIENT_HANDLER; }
368#define SetRemoteClient(x) {(x)->status = STAT_CLIENT; \
369 (x)->handler = RCLIENT_HANDLER; }
370
371#define STAT_CLIENT_PARSE (STAT_UNKNOWN | STAT_CLIENT)
372#define STAT_SERVER_PARSE (STAT_CONNECTING | STAT_HANDSHAKE | STAT_SERVER)
373
374#define PARSE_AS_CLIENT(x) ((x)->status & STAT_CLIENT_PARSE)
375#define PARSE_AS_SERVER(x) ((x)->status & STAT_SERVER_PARSE)
376
377
378/*
379 * ts stuff
380 */
381#define TS_CURRENT 6
212380e3 382#define TS_MIN 6
212380e3
AC
383
384#define TS_DOESTS 0x10000000
385#define DoesTS(x) ((x)->tsinfo & TS_DOESTS)
386
387#define has_id(source) ((source)->id[0] != '\0')
388#define use_id(source) ((source)->id[0] != '\0' ? (source)->id : (source)->name)
389
390/* if target is TS6, use id if it has one, else name */
391#define get_id(source, target) ((IsServer(target->from) && has_id(target->from)) ? \
392 use_id(source) : (source)->name)
393
394/* housekeeping flags */
395
396#define FLAGS_PINGSENT 0x0001 /* Unreplied ping sent */
397#define FLAGS_DEAD 0x0002 /* Local socket is dead--Exiting soon */
398#define FLAGS_KILLED 0x0004 /* Prevents "QUIT" from being sent for this */
399#define FLAGS_SENTUSER 0x0008 /* Client sent a USER command. */
095328a7 400#define FLAGS_CLICAP 0x0010 /* In CAP negotiation, wait for CAP END */
212380e3 401#define FLAGS_CLOSING 0x0020 /* set when closing to suppress errors */
095328a7 402#define FLAGS_PING_COOKIE 0x0040 /* has sent ping cookie */
212380e3 403#define FLAGS_GOTID 0x0080 /* successful ident lookup achieved */
095328a7 404#define FLAGS_FLOODDONE 0x0100 /* flood grace period over / reported */
212380e3
AC
405#define FLAGS_NORMALEX 0x0400 /* Client exited normally */
406#define FLAGS_SENDQEX 0x0800 /* Sendq exceeded */
33e65f00
VY
407#define FLAGS_MARK 0x10000 /* marked client */
408#define FLAGS_HIDDEN 0x20000 /* hidden server */
409#define FLAGS_EOB 0x40000 /* EOB */
410#define FLAGS_MYCONNECT 0x80000 /* MyConnect */
411#define FLAGS_IOERROR 0x100000 /* IO error */
412#define FLAGS_SERVICE 0x200000 /* network service */
413#define FLAGS_TGCHANGE 0x400000 /* we're allowed to clear something */
414#define FLAGS_DYNSPOOF 0x800000 /* dynamic spoof, only opers see ip */
212380e3 415
3318e109
AC
416/* flags for local clients, this needs stuff moved from above to here at some point */
417#define LFLAGS_SSL 0x00000001
418#define LFLAGS_FLUSH 0x00000002
c6d72037
VY
419#define LFLAGS_CORK 0x00000004
420
212380e3
AC
421/* umodes, settable flags */
422/* lots of this moved to snomask -- jilles */
423#define UMODE_SERVNOTICE 0x0001 /* server notices */
044aa2c7
VY
424#define UMODE_WALLOP 0x0002 /* send wallops to them */
425#define UMODE_OPERWALL 0x0004 /* Operwalls */
426#define UMODE_INVISIBLE 0x0008 /* makes user invisible */
427#define UMODE_CALLERID 0x0010 /* block unless caller id's */
428#define UMODE_LOCOPS 0x0020 /* show locops */
429#define UMODE_SERVICE 0x0040
430#define UMODE_DEAF 0x0080
431#define UMODE_NOFORWARD 0x0100 /* don't forward */
432#define UMODE_REGONLYMSG 0x0200 /* only allow logged in users to msg */
212380e3
AC
433
434/* user information flags, only settable by remote mode or local oper */
044aa2c7
VY
435#define UMODE_OPER 0x1000 /* Operator */
436#define UMODE_ADMIN 0x2000 /* Admin on server */
437#define UMODE_SSLCLIENT 0x4000 /* using SSL */
212380e3 438
212380e3
AC
439/* overflow flags */
440/* EARLIER FLAGS ARE IN s_newconf.h */
3fec9477 441#define FLAGS2_EXEMPTRESV 0x00400000
170703fe
VY
442#define FLAGS2_EXEMPTKLINE 0x00800000
443#define FLAGS2_EXEMPTFLOOD 0x01000000
3fec9477 444#define FLAGS2_IP_SPOOFING 0x10000000
212380e3
AC
445#define FLAGS2_EXEMPTSPAMBOT 0x20000000
446#define FLAGS2_EXEMPTSHIDE 0x40000000
447#define FLAGS2_EXEMPTJUPE 0x80000000
448
449#define DEFAULT_OPER_UMODES (UMODE_SERVNOTICE | UMODE_OPERWALL | \
450 UMODE_WALLOP | UMODE_LOCOPS)
451#define DEFAULT_OPER_SNOMASK SNO_GENERAL
452
212380e3
AC
453#define CLICAP_MULTI_PREFIX 0x0001
454#define CLICAP_SASL 0x0002
455
456/*
457 * flags macros.
458 */
459#define IsPerson(x) (IsClient(x) && (x)->user != NULL)
212380e3
AC
460#define HasServlink(x) ((x)->flags & FLAGS_SERVLINK)
461#define SetServlink(x) ((x)->flags |= FLAGS_SERVLINK)
462#define MyConnect(x) ((x)->flags & FLAGS_MYCONNECT)
463#define SetMyConnect(x) ((x)->flags |= FLAGS_MYCONNECT)
464#define ClearMyConnect(x) ((x)->flags &= ~FLAGS_MYCONNECT)
465
466#define MyClient(x) (MyConnect(x) && IsClient(x))
467#define SetMark(x) ((x)->flags |= FLAGS_MARK)
468#define ClearMark(x) ((x)->flags &= ~FLAGS_MARK)
469#define IsMarked(x) ((x)->flags & FLAGS_MARK)
470#define SetHidden(x) ((x)->flags |= FLAGS_HIDDEN)
471#define ClearHidden(x) ((x)->flags &= ~FLAGS_HIDDEN)
472#define IsHidden(x) ((x)->flags & FLAGS_HIDDEN)
473#define ClearEob(x) ((x)->flags &= ~FLAGS_EOB)
474#define SetEob(x) ((x)->flags |= FLAGS_EOB)
475#define HasSentEob(x) ((x)->flags & FLAGS_EOB)
476#define IsDead(x) ((x)->flags & FLAGS_DEAD)
477#define SetDead(x) ((x)->flags |= FLAGS_DEAD)
478#define IsClosing(x) ((x)->flags & FLAGS_CLOSING)
479#define SetClosing(x) ((x)->flags |= FLAGS_CLOSING)
480#define IsIOError(x) ((x)->flags & FLAGS_IOERROR)
481#define SetIOError(x) ((x)->flags |= FLAGS_IOERROR)
482#define IsAnyDead(x) (IsIOError(x) || IsDead(x) || IsClosing(x))
483#define IsTGChange(x) ((x)->flags & FLAGS_TGCHANGE)
484#define SetTGChange(x) ((x)->flags |= FLAGS_TGCHANGE)
485#define ClearTGChange(x) ((x)->flags &= ~FLAGS_TGCHANGE)
486#define IsDynSpoof(x) ((x)->flags & FLAGS_DYNSPOOF)
487#define SetDynSpoof(x) ((x)->flags |= FLAGS_DYNSPOOF)
488#define ClearDynSpoof(x) ((x)->flags &= ~FLAGS_DYNSPOOF)
489
3318e109
AC
490/* local flags */
491
492#define IsSSL(x) ((x)->localClient->localflags & LFLAGS_SSL)
493#define SetSSL(x) ((x)->localClient->localflags |= LFLAGS_SSL)
494#define ClearSSL(x) ((x)->localClient->localflags &= ~LFLAGS_SSL)
495
496#define IsFlush(x) ((x)->localClient->localflags & LFLAGS_FLUSH)
497#define SetFlush(x) ((x)->localClient->localflags |= LFLAGS_FLUSH)
c6d72037
VY
498#define ClearFlush(x) ((x)->localClient->localflags &= ~LFLAGS_FLUSH)
499
212380e3
AC
500/* oper flags */
501#define MyOper(x) (MyConnect(x) && IsOper(x))
502
503#define SetOper(x) {(x)->umodes |= UMODE_OPER; \
504 if (MyClient((x))) (x)->handler = OPER_HANDLER;}
505
506#define ClearOper(x) {(x)->umodes &= ~(UMODE_OPER|UMODE_ADMIN); \
507 if (MyClient((x)) && !IsOper((x)) && !IsServer((x))) \
508 (x)->handler = CLIENT_HANDLER; }
509
212380e3
AC
510/* umode flags */
511#define IsInvisible(x) ((x)->umodes & UMODE_INVISIBLE)
512#define SetInvisible(x) ((x)->umodes |= UMODE_INVISIBLE)
513#define ClearInvisible(x) ((x)->umodes &= ~UMODE_INVISIBLE)
af7aaa84
AC
514#define IsSSLClient(x) ((x)->umodes & UMODE_SSLCLIENT)
515#define SetSSLClient(x) ((x)->umodes |= UMODE_SSLCLIENT)
516#define ClearSSLClient(x) ((x)->umodes &= ~UMODE_SSLCLIENT)
212380e3 517#define SendWallops(x) ((x)->umodes & UMODE_WALLOP)
212380e3
AC
518#define SendLocops(x) ((x)->umodes & UMODE_LOCOPS)
519#define SendServNotice(x) ((x)->umodes & UMODE_SERVNOTICE)
520#define SendOperwall(x) ((x)->umodes & UMODE_OPERWALL)
212380e3
AC
521#define IsSetCallerId(x) ((x)->umodes & UMODE_CALLERID)
522#define IsService(x) ((x)->umodes & UMODE_SERVICE)
523#define IsDeaf(x) ((x)->umodes & UMODE_DEAF)
524#define IsNoForward(x) ((x)->umodes & UMODE_NOFORWARD)
525#define IsSetRegOnlyMsg(x) ((x)->umodes & UMODE_REGONLYMSG)
526
212380e3
AC
527#define SetGotId(x) ((x)->flags |= FLAGS_GOTID)
528#define IsGotId(x) (((x)->flags & FLAGS_GOTID) != 0)
529
530/*
531 * flags2 macros.
532 */
533#define IsExemptKline(x) ((x)->flags2 & FLAGS2_EXEMPTKLINE)
534#define SetExemptKline(x) ((x)->flags2 |= FLAGS2_EXEMPTKLINE)
212380e3
AC
535#define IsExemptFlood(x) ((x)->flags2 & FLAGS2_EXEMPTFLOOD)
536#define SetExemptFlood(x) ((x)->flags2 |= FLAGS2_EXEMPTFLOOD)
537#define IsExemptSpambot(x) ((x)->flags2 & FLAGS2_EXEMPTSPAMBOT)
538#define SetExemptSpambot(x) ((x)->flags2 |= FLAGS2_EXEMPTSPAMBOT)
539#define IsExemptShide(x) ((x)->flags2 & FLAGS2_EXEMPTSHIDE)
540#define SetExemptShide(x) ((x)->flags2 |= FLAGS2_EXEMPTSHIDE)
541#define IsExemptJupe(x) ((x)->flags2 & FLAGS2_EXEMPTJUPE)
542#define SetExemptJupe(x) ((x)->flags2 |= FLAGS2_EXEMPTJUPE)
543#define IsExemptResv(x) ((x)->flags2 & FLAGS2_EXEMPTRESV)
544#define SetExemptResv(x) ((x)->flags2 |= FLAGS2_EXEMPTRESV)
545#define IsIPSpoof(x) ((x)->flags2 & FLAGS2_IP_SPOOFING)
546#define SetIPSpoof(x) ((x)->flags2 |= FLAGS2_IP_SPOOFING)
547
212380e3
AC
548/* for local users: flood grace period is over
549 * for servers: mentioned in networknotice.c notice
550 */
095328a7
JT
551#define IsFloodDone(x) ((x)->flags & FLAGS_FLOODDONE)
552#define SetFloodDone(x) ((x)->flags |= FLAGS_FLOODDONE)
212380e3 553
3318e109
AC
554/* These also operate on the uplink from which it came */
555#define IsCork(x) (MyConnect(x) ? (x)->localClient->cork_count : (x)->from->localClient->cork_count)
556#define SetCork(x) (MyConnect(x) ? (x)->localClient->cork_count++ : (x)->from->localClient->cork_count++ )
c6d72037
VY
557#define ClearCork(x) (MyConnect(x) ? (x)->localClient->cork_count-- : (x)->from->localClient->cork_count--)
558
212380e3
AC
559/*
560 * definitions for get_client_name
561 */
562#define HIDE_IP 0
563#define SHOW_IP 1
564#define MASK_IP 2
565
566extern void check_banned_lines(void);
567extern void check_klines_event(void *unused);
568extern void check_klines(void);
212380e3
AC
569extern void check_dlines(void);
570extern void check_xlines(void);
571
572extern const char *get_client_name(struct Client *client, int show_ip);
212380e3
AC
573extern const char *log_client_name(struct Client *, int);
574extern int is_remote_connect(struct Client *);
575extern void init_client(void);
576extern client_t *make_client(struct Client *from);
577extern void free_pre_client(struct Client *client);
578extern void free_client(struct Client *client);
579
580extern int exit_client(struct Client *, struct Client *, struct Client *, const char *);
581
582extern void error_exit_client(struct Client *, int);
583
584
585
586extern void count_local_client_memory(size_t * count, size_t * memory);
587extern void count_remote_client_memory(size_t * count, size_t * memory);
588
589extern client_t *find_chasing(struct Client *, const char *, int *);
590extern client_t *find_person(const char *);
591extern client_t *find_named_person(const char *);
592extern client_t *next_client(struct Client *, const char *);
593
0e7cb7e6 594#define accept_message(s, t) ((s) == (t) || (rb_dlinkFind((s), &((t)->localClient->allow_list))))
212380e3
AC
595extern void del_all_accepts(struct Client *client_p);
596
597extern void dead_link(struct Client *client_p);
598extern int show_ip(struct Client *source_p, struct Client *target_p);
599extern int show_ip_conf(struct ConfItem *aconf, struct Client *target_p);
600
601extern void initUser(void);
602extern void free_user(struct User *, struct Client *);
603extern user_t *make_user(struct Client *);
604extern server_t *make_server(struct Client *);
605extern void close_connection(struct Client *);
606extern void init_uid(void);
607extern char *generate_uid(void);
608
3318e109 609void allocate_away(struct Client *);
300a5433
VY
610void free_away(struct Client *);
611
212380e3 612#endif /* INCLUDED_client_h */