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