]> jfr.im git - solanum.git/blame - include/client.h
Add .travis.yml
[solanum.git] / include / client.h
CommitLineData
212380e3
AC
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
AC
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"
1eeb0469 39#include "dns.h"
212380e3 40#include "snomask.h"
4562c604 41#include "match.h"
212380e3 42#include "ircd.h"
ef242716 43#include "privilege.h"
212380e3
AC
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
179becdf 56#define TGCHANGE_NUM 10 /* how many targets we keep track of */
c9f01c4f 57#define TGCHANGE_REPLY 5 /* how many reply targets */
179becdf
JT
58#define TGCHANGE_INITIAL 10 /* initial free targets (normal) */
59#define TGCHANGE_INITIAL_LOW 4 /* initial free targets (possible spambot) */
ad1d39a7 60
212380e3
AC
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;
999fab77 74struct ListClient;
994544c2 75struct scache_entry;
212380e3 76
212380e3
AC
77/*
78 * Client structures
79 */
80struct User
81{
5b96d9a6
AC
82 rb_dlink_list channel; /* chain of channel pointer blocks */
83 rb_dlink_list invited; /* chain of invite pointer blocks */
c127b45b 84 char *away; /* pointer to away message */
212380e3 85 int refcnt; /* Number of times this block is referenced */
212380e3
AC
86
87 char suser[NICKLEN+1];
88};
89
90struct Server
91{
8f103562 92 struct User *user; /* who activated this connection */
212380e3 93 char by[NICKLEN];
5b96d9a6
AC
94 rb_dlink_list servers;
95 rb_dlink_list users;
212380e3
AC
96 int caps; /* capabilities bit-field */
97 char *fullcaps;
994544c2 98 struct scache_entry *nameinfo;
212380e3
AC
99};
100
212380e3
AC
101struct ZipStats
102{
8bd5767b
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
AC
108 double out_ratio;
109};
110
111struct Client
112{
5b96d9a6
AC
113 rb_dlink_node node;
114 rb_dlink_node lnode;
8f103562
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
b47f8a4f
AC
120 rb_dlink_list whowas_clist;
121
212380e3
AC
122 time_t tsinfo; /* TS on the nick, SVINFO on server */
123 unsigned int umodes; /* opers, normal users subset */
124 unsigned int flags; /* client flags */
125 unsigned int flags2; /* ugh. overflow */
126
127 unsigned int snomask; /* server notice mask */
128
129 int hopcount; /* number of servers to this 0 = local */
130 unsigned short status; /* Client type */
131 unsigned char handler; /* Handler index */
132 unsigned long serial; /* used to enforce 1 send per nick */
133
134 /* client->name is the unique name for a client nick or host */
135 char name[HOSTLEN + 1];
136
55abcbb2
KB
137 /*
138 * client->username is the username from ident or the USER message,
139 * If the client is idented the USER message is ignored, otherwise
140 * the username part of the USER message is put here prefixed with a
212380e3
AC
141 * tilde depending on the I:line, Once a client has registered, this
142 * field should be considered read-only.
143 */
144 char username[USERLEN + 1]; /* client's username */
145
146 /*
147 * client->host contains the resolved name or ip address
148 * as a string for the user, it may be fiddled with for oper spoofing etc.
149 */
150 char host[HOSTLEN + 1]; /* client's hostname */
151 char orighost[HOSTLEN + 1]; /* original hostname (before dynamic spoofing) */
152 char sockhost[HOSTIPLEN + 1]; /* clients ip */
153 char info[REALLEN + 1]; /* Free form additional client info */
154
155 char id[IDLEN]; /* UID/SID, unique on the network */
156
157 /* list of who has this client on their allow list, its counterpart
158 * is in LocalUser
159 */
5b96d9a6 160 rb_dlink_list on_allow_list;
212380e3 161
c24efdc0
JT
162 time_t first_received_message_time;
163 int received_number_of_privmsgs;
164 int flood_noticed;
165
8f103562
JT
166 struct LocalUser *localClient;
167 struct PreClient *preClient;
aa9c9ed2
JT
168
169 time_t large_ctcp_sent; /* ctcp to large group sent, relax flood checks */
8eda114a 170 char *certfp; /* client certificate fingerprint */
212380e3
AC
171};
172
173struct LocalUser
174{
5b96d9a6 175 rb_dlink_node tnode; /* This is the node for the local list type the client is on*/
212380e3
AC
176 /*
177 * The following fields are allocated only for local clients
178 * (directly connected to *this* server with a socket.
179 */
180 /* Anti flooding part, all because of lamers... */
55abcbb2 181 time_t last_join_time; /* when this client last
212380e3 182 joined a channel */
55abcbb2 183 time_t last_leave_time; /* when this client last
212380e3 184 * left a channel */
55abcbb2 185 int join_leave_count; /* count of JOIN/LEAVE in less than
212380e3 186 MIN_JOIN_LEAVE_TIME seconds */
55abcbb2 187 int oper_warn_count_down; /* warn opers of this possible
212380e3
AC
188 spambot every time this gets to 0 */
189 time_t last_caller_id_time;
212380e3
AC
190
191 time_t lasttime; /* last time we parsed something */
192 time_t firsttime; /* time client was created */
193
194 /* Send and receive linebuf queues .. */
195 buf_head_t buf_sendq;
196 buf_head_t buf_recvq;
197 /*
198 * we want to use unsigned int here so the sizes have a better chance of
199 * staying the same on 64 bit machines. The current trend is to use
200 * I32LP64, (32 bit ints, 64 bit longs and pointers) and since ircd
55abcbb2 201 * will NEVER run on an operating system where ints are less than 32 bits,
212380e3 202 * it's a relatively safe bet to use ints. Since right shift operations are
55abcbb2
KB
203 * performed on these, it's not safe to allow them to become negative,
204 * which is possible for long running server connections. Unsigned values
212380e3
AC
205 * generally overflow gracefully. --Bleep
206 */
207 unsigned int sendM; /* Statistics: protocol messages send */
208 unsigned int sendK; /* Statistics: total k-bytes send */
209 unsigned int receiveM; /* Statistics: protocol messages received */
210 unsigned int receiveK; /* Statistics: total k-bytes received */
211 unsigned short sendB; /* counters to count upto 1-k lots of bytes */
212 unsigned short receiveB; /* sent and received. */
8f103562
JT
213 struct Listener *listener; /* listener accepted from */
214 struct ConfItem *att_conf; /* attached conf */
212380e3
AC
215 struct server_conf *att_sconf;
216
e7046ee5 217 struct rb_sockaddr_storage ip;
212380e3
AC
218 time_t last_nick_change;
219 int number_of_nick_changes;
220
221 /*
222 * XXX - there is no reason to save this, it should be checked when it's
223 * received and not stored, this is not used after registration
224 *
225 * agreed. lets get rid of it someday! --nenolod
226 */
227 char *passwd;
40c1fd47 228 char *auth_user;
212380e3
AC
229 char *opername; /* name of operator{} block being used or tried (challenge) */
230 char *challenge;
231 char *fullcaps;
ebe33dbf 232 char *cipher_string;
212380e3
AC
233
234 int caps; /* capabilities bit-field */
5b96d9a6 235 rb_fde_t *F; /* >= 0, for local clients */
212380e3
AC
236
237 /* time challenge response is valid for */
238 time_t chal_time;
239
d42e6915 240 time_t next_away; /* Don't allow next away before... */
212380e3 241 time_t last;
b5b4a0e7 242 uint32_t connid;
212380e3
AC
243
244 /* clients allowed to talk through +g */
5b96d9a6 245 rb_dlink_list allow_list;
212380e3
AC
246
247 /* nicknames theyre monitoring */
5b96d9a6 248 rb_dlink_list monitor_list;
212380e3
AC
249
250 /*
251 * Anti-flood stuff. We track how many messages were parsed and how
252 * many we were allowed in the current second, and apply a simple decay
253 * to avoid flooding.
254 * -- adrian
255 */
212380e3
AC
256 int sent_parsed; /* how many messages we've parsed in this second */
257 time_t last_knock; /* time of last knock */
258 unsigned long random_ping;
8f103562 259 struct AuthRequest *auth_request;
212380e3 260
ae78a571 261 /* target change stuff */
c9f01c4f
JT
262 /* targets we're aware of (fnv32(use_id(target_p))):
263 * 0..TGCHANGE_NUM-1 regular slots
264 * TGCHANGE_NUM..TGCHANGE_NUM+TGCHANGE_REPLY-1 reply slots
265 */
266 uint32_t targets[TGCHANGE_NUM + TGCHANGE_REPLY];
179becdf 267 unsigned int targets_free; /* free targets */
212380e3
AC
268 time_t target_last; /* last time we cleared a slot */
269
e88a1f1b
KB
270 /* ratelimit items */
271 time_t ratelimit;
272 unsigned int join_who_credits;
273
999fab77
AC
274 struct ListClient *safelist_data;
275
212380e3
AC
276 char *mangledhost; /* non-NULL if host mangling module loaded and
277 applicable to this client */
c6d72037 278
3318e109 279 struct _ssl_ctl *ssl_ctl; /* which ssl daemon we're associate with */
32eadd33 280 struct _ssl_ctl *z_ctl; /* second ctl for ssl+zlib */
b5b4a0e7 281 uint32_t zconnid;
104c6d46 282 uint32_t localflags;
c6d72037 283 struct ZipStats *zipstats; /* zipstats */
104c6d46 284 uint16_t cork_count; /* used for corking/uncorking connections */
c6d72037 285 struct ev_entry *event; /* used for associated events */
ef242716
AC
286
287 struct PrivilegeSet *privset; /* privset... */
c6bc97fd
AC
288
289 char sasl_agent[IDLEN];
290 unsigned char sasl_out;
291 unsigned char sasl_complete;
212380e3
AC
292};
293
294struct PreClient
295{
296 char spoofnick[NICKLEN + 1];
297 char spoofuser[USERLEN + 1];
298 char spoofhost[HOSTLEN + 1];
299
5b96d9a6 300 rb_dlink_list dnsbl_queries; /* list of struct BlacklistClient * */
212380e3 301 struct Blacklist *dnsbl_listed; /* first dnsbl where it's listed */
3540120a
JT
302
303 struct rb_sockaddr_storage lip; /* address of our side of the connection */
212380e3
AC
304};
305
999fab77
AC
306struct ListClient
307{
308 char *chname;
309 unsigned int users_min, users_max;
310 time_t created_min, created_max, topic_min, topic_max;
311 int operspy;
312};
313
212380e3
AC
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
AC
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. */
095328a7 394#define FLAGS_CLICAP 0x0010 /* In CAP negotiation, wait for CAP END */
212380e3 395#define FLAGS_CLOSING 0x0020 /* set when closing to suppress errors */
095328a7 396#define FLAGS_PING_COOKIE 0x0040 /* has sent ping cookie */
212380e3 397#define FLAGS_GOTID 0x0080 /* successful ident lookup achieved */
095328a7 398#define FLAGS_FLOODDONE 0x0100 /* flood grace period over / reported */
212380e3 399#define FLAGS_NORMALEX 0x0400 /* Client exited normally */
33e65f00
VY
400#define FLAGS_MARK 0x10000 /* marked client */
401#define FLAGS_HIDDEN 0x20000 /* hidden server */
402#define FLAGS_EOB 0x40000 /* EOB */
403#define FLAGS_MYCONNECT 0x80000 /* MyConnect */
404#define FLAGS_IOERROR 0x100000 /* IO error */
405#define FLAGS_SERVICE 0x200000 /* network service */
406#define FLAGS_TGCHANGE 0x400000 /* we're allowed to clear something */
407#define FLAGS_DYNSPOOF 0x800000 /* dynamic spoof, only opers see ip */
ab894d74 408#define FLAGS_TGEXCESSIVE 0x1000000 /* whether the client has attemped to change targets excessively fast */
212380e3 409
3318e109
AC
410/* flags for local clients, this needs stuff moved from above to here at some point */
411#define LFLAGS_SSL 0x00000001
412#define LFLAGS_FLUSH 0x00000002
c6d72037
VY
413#define LFLAGS_CORK 0x00000004
414
212380e3
AC
415/* umodes, settable flags */
416/* lots of this moved to snomask -- jilles */
417#define UMODE_SERVNOTICE 0x0001 /* server notices */
044aa2c7
VY
418#define UMODE_WALLOP 0x0002 /* send wallops to them */
419#define UMODE_OPERWALL 0x0004 /* Operwalls */
420#define UMODE_INVISIBLE 0x0008 /* makes user invisible */
421#define UMODE_CALLERID 0x0010 /* block unless caller id's */
422#define UMODE_LOCOPS 0x0020 /* show locops */
423#define UMODE_SERVICE 0x0040
424#define UMODE_DEAF 0x0080
425#define UMODE_NOFORWARD 0x0100 /* don't forward */
426#define UMODE_REGONLYMSG 0x0200 /* only allow logged in users to msg */
212380e3
AC
427
428/* user information flags, only settable by remote mode or local oper */
044aa2c7
VY
429#define UMODE_OPER 0x1000 /* Operator */
430#define UMODE_ADMIN 0x2000 /* Admin on server */
431#define UMODE_SSLCLIENT 0x4000 /* using SSL */
212380e3 432
212380e3
AC
433/* overflow flags */
434/* EARLIER FLAGS ARE IN s_newconf.h */
a4721f5e 435#define FLAGS2_EXTENDCHANS 0x00200000
3fec9477 436#define FLAGS2_EXEMPTRESV 0x00400000
170703fe
VY
437#define FLAGS2_EXEMPTKLINE 0x00800000
438#define FLAGS2_EXEMPTFLOOD 0x01000000
3fec9477 439#define FLAGS2_IP_SPOOFING 0x10000000
212380e3
AC
440#define FLAGS2_EXEMPTSPAMBOT 0x20000000
441#define FLAGS2_EXEMPTSHIDE 0x40000000
442#define FLAGS2_EXEMPTJUPE 0x80000000
443
444#define DEFAULT_OPER_UMODES (UMODE_SERVNOTICE | UMODE_OPERWALL | \
445 UMODE_WALLOP | UMODE_LOCOPS)
446#define DEFAULT_OPER_SNOMASK SNO_GENERAL
447
1b54aa5c
MT
448#define CLICAP_MULTI_PREFIX 0x0001
449#define CLICAP_SASL 0x0002
450#define CLICAP_ACCOUNT_NOTIFY 0x0004
451#define CLICAP_EXTENDED_JOIN 0x0008
452#define CLICAP_AWAY_NOTIFY 0x0010
453#define CLICAP_TLS 0x0020
454#define CLICAP_USERHOST_IN_NAMES 0x0040
13de7083 455#define CLICAP_CAP_NOTIFY 0x0080
4a5330bb 456#define CLICAP_CHGHOST 0x0100
212380e3
AC
457
458/*
459 * flags macros.
460 */
461#define IsPerson(x) (IsClient(x) && (x)->user != NULL)
212380e3
AC
462#define HasServlink(x) ((x)->flags & FLAGS_SERVLINK)
463#define SetServlink(x) ((x)->flags |= FLAGS_SERVLINK)
464#define MyConnect(x) ((x)->flags & FLAGS_MYCONNECT)
465#define SetMyConnect(x) ((x)->flags |= FLAGS_MYCONNECT)
466#define ClearMyConnect(x) ((x)->flags &= ~FLAGS_MYCONNECT)
467
468#define MyClient(x) (MyConnect(x) && IsClient(x))
469#define SetMark(x) ((x)->flags |= FLAGS_MARK)
470#define ClearMark(x) ((x)->flags &= ~FLAGS_MARK)
471#define IsMarked(x) ((x)->flags & FLAGS_MARK)
472#define SetHidden(x) ((x)->flags |= FLAGS_HIDDEN)
473#define ClearHidden(x) ((x)->flags &= ~FLAGS_HIDDEN)
474#define IsHidden(x) ((x)->flags & FLAGS_HIDDEN)
475#define ClearEob(x) ((x)->flags &= ~FLAGS_EOB)
476#define SetEob(x) ((x)->flags |= FLAGS_EOB)
477#define HasSentEob(x) ((x)->flags & FLAGS_EOB)
478#define IsDead(x) ((x)->flags & FLAGS_DEAD)
479#define SetDead(x) ((x)->flags |= FLAGS_DEAD)
480#define IsClosing(x) ((x)->flags & FLAGS_CLOSING)
481#define SetClosing(x) ((x)->flags |= FLAGS_CLOSING)
482#define IsIOError(x) ((x)->flags & FLAGS_IOERROR)
483#define SetIOError(x) ((x)->flags |= FLAGS_IOERROR)
484#define IsAnyDead(x) (IsIOError(x) || IsDead(x) || IsClosing(x))
485#define IsTGChange(x) ((x)->flags & FLAGS_TGCHANGE)
486#define SetTGChange(x) ((x)->flags |= FLAGS_TGCHANGE)
487#define ClearTGChange(x) ((x)->flags &= ~FLAGS_TGCHANGE)
488#define IsDynSpoof(x) ((x)->flags & FLAGS_DYNSPOOF)
489#define SetDynSpoof(x) ((x)->flags |= FLAGS_DYNSPOOF)
490#define ClearDynSpoof(x) ((x)->flags &= ~FLAGS_DYNSPOOF)
ab894d74
KB
491#define IsTGExcessive(x) ((x)->flags & FLAGS_TGEXCESSIVE)
492#define SetTGExcessive(x) ((x)->flags |= FLAGS_TGEXCESSIVE)
493#define ClearTGExcessive(x) ((x)->flags &= ~FLAGS_TGEXCESSIVE)
212380e3 494
3318e109
AC
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)
c6d72037
VY
503#define ClearFlush(x) ((x)->localClient->localflags &= ~LFLAGS_FLUSH)
504
212380e3
AC
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
AC
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)
af7aaa84
AC
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
AC
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
AC
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
AC
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
AC
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)
a4721f5e
AC
552#define IsExtendChans(x) ((x)->flags2 & FLAGS2_EXTENDCHANS)
553#define SetExtendChans(x) ((x)->flags2 |= FLAGS2_EXTENDCHANS)
212380e3 554
212380e3
AC
555/* for local users: flood grace period is over
556 * for servers: mentioned in networknotice.c notice
557 */
095328a7
JT
558#define IsFloodDone(x) ((x)->flags & FLAGS_FLOODDONE)
559#define SetFloodDone(x) ((x)->flags |= FLAGS_FLOODDONE)
212380e3 560
3318e109
AC
561/* These also operate on the uplink from which it came */
562#define IsCork(x) (MyConnect(x) ? (x)->localClient->cork_count : (x)->from->localClient->cork_count)
563#define SetCork(x) (MyConnect(x) ? (x)->localClient->cork_count++ : (x)->from->localClient->cork_count++ )
c6d72037
VY
564#define ClearCork(x) (MyConnect(x) ? (x)->localClient->cork_count-- : (x)->from->localClient->cork_count--)
565
212380e3
AC
566/*
567 * definitions for get_client_name
568 */
569#define HIDE_IP 0
570#define SHOW_IP 1
571#define MASK_IP 2
572
573extern void check_banned_lines(void);
574extern void check_klines_event(void *unused);
575extern void check_klines(void);
212380e3
AC
576extern void check_dlines(void);
577extern void check_xlines(void);
330692a1 578extern void resv_nick_fnc(const char *mask, const char *reason, int temp_time);
212380e3
AC
579
580extern const char *get_client_name(struct Client *client, int show_ip);
212380e3
AC
581extern const char *log_client_name(struct Client *, int);
582extern int is_remote_connect(struct Client *);
583extern void init_client(void);
8f103562 584extern struct Client *make_client(struct Client *from);
212380e3
AC
585extern void free_pre_client(struct Client *client);
586extern void free_client(struct Client *client);
587
588extern int exit_client(struct Client *, struct Client *, struct Client *, const char *);
589
590extern void error_exit_client(struct Client *, int);
591
592
593
594extern void count_local_client_memory(size_t * count, size_t * memory);
595extern void count_remote_client_memory(size_t * count, size_t * memory);
596
2d28539c
JT
597extern int clean_nick(const char *, int loc_client);
598
8f103562
JT
599extern struct Client *find_chasing(struct Client *, const char *, int *);
600extern struct Client *find_person(const char *);
601extern struct Client *find_named_person(const char *);
602extern struct Client *next_client(struct Client *, const char *);
212380e3 603
0e7cb7e6 604#define accept_message(s, t) ((s) == (t) || (rb_dlinkFind((s), &((t)->localClient->allow_list))))
212380e3
AC
605extern void del_all_accepts(struct Client *client_p);
606
cef7a7bc 607extern void dead_link(struct Client *client_p, int sendqex);
212380e3 608extern int show_ip(struct Client *source_p, struct Client *target_p);
2635cc80 609extern int show_ip_conf(struct ConfItem *aconf, struct Client *source_p);
364e59f8 610extern int show_ip_whowas(struct Whowas *whowas, struct Client *source_p);
212380e3
AC
611
612extern void initUser(void);
613extern void free_user(struct User *, struct Client *);
8f103562
JT
614extern struct User *make_user(struct Client *);
615extern struct Server *make_server(struct Client *);
212380e3
AC
616extern void close_connection(struct Client *);
617extern void init_uid(void);
618extern char *generate_uid(void);
619
3318e109 620void allocate_away(struct Client *);
300a5433
VY
621void free_away(struct Client *);
622
212380e3 623#endif /* INCLUDED_client_h */