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