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