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