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