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