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