1 |
adx |
30 |
/* |
2 |
michael |
2865 |
* ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd) |
3 |
adx |
30 |
* |
4 |
michael |
8752 |
* Copyright (c) 1997-2019 ircd-hybrid development team |
5 |
adx |
30 |
* |
6 |
|
|
* This program is free software; you can redistribute it and/or modify |
7 |
|
|
* it under the terms of the GNU General Public License as published by |
8 |
|
|
* the Free Software Foundation; either version 2 of the License, or |
9 |
|
|
* (at your option) any later version. |
10 |
|
|
* |
11 |
|
|
* This program is distributed in the hope that it will be useful, |
12 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
|
|
* GNU General Public License for more details. |
15 |
|
|
* |
16 |
|
|
* You should have received a copy of the GNU General Public License |
17 |
|
|
* along with this program; if not, write to the Free Software |
18 |
michael |
4565 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 |
19 |
adx |
30 |
* USA |
20 |
|
|
*/ |
21 |
|
|
|
22 |
michael |
1220 |
/*! \file client.h |
23 |
|
|
* \brief Header including structures, macros and prototypes for client handling |
24 |
|
|
* \version $Id$ |
25 |
|
|
*/ |
26 |
|
|
|
27 |
|
|
|
28 |
adx |
30 |
#ifndef INCLUDED_client_h |
29 |
|
|
#define INCLUDED_client_h |
30 |
|
|
|
31 |
michael |
1011 |
#include "list.h" |
32 |
adx |
30 |
#include "fdlist.h" |
33 |
|
|
#include "ircd_defs.h" |
34 |
|
|
#include "dbuf.h" |
35 |
|
|
#include "channel.h" |
36 |
michael |
3324 |
#include "auth.h" |
37 |
adx |
30 |
|
38 |
michael |
2811 |
|
39 |
adx |
30 |
/* |
40 |
|
|
* status macros. |
41 |
|
|
*/ |
42 |
michael |
6315 |
enum |
43 |
|
|
{ |
44 |
michael |
8437 |
STAT_CONNECTING = 1, |
45 |
michael |
8431 |
STAT_HANDSHAKE, |
46 |
|
|
STAT_ME, |
47 |
|
|
STAT_UNKNOWN, |
48 |
|
|
STAT_SERVER, |
49 |
|
|
STAT_CLIENT |
50 |
michael |
6315 |
}; |
51 |
adx |
30 |
|
52 |
michael |
6315 |
enum |
53 |
|
|
{ |
54 |
michael |
8431 |
REG_NEED_USER = 1 << 0, /**< User must send USER command */ |
55 |
|
|
REG_NEED_NICK = 1 << 1, /**< User must send NICK command */ |
56 |
|
|
REG_NEED_CAP = 1 << 2, /**< In middle of CAP negotiations */ |
57 |
michael |
6315 |
REG_INIT = REG_NEED_USER | REG_NEED_NICK |
58 |
|
|
}; |
59 |
michael |
503 |
|
60 |
michael |
5562 |
#define ID_or_name(x,client_p) ((IsServer(client_p->from) && (x)->id[0]) ? (x)->id : (x)->name) |
61 |
adx |
30 |
|
62 |
|
|
#define IsConnecting(x) ((x)->status == STAT_CONNECTING) |
63 |
|
|
#define IsHandshake(x) ((x)->status == STAT_HANDSHAKE) |
64 |
|
|
#define IsMe(x) ((x)->status == STAT_ME) |
65 |
|
|
#define IsUnknown(x) ((x)->status == STAT_UNKNOWN) |
66 |
|
|
#define IsServer(x) ((x)->status == STAT_SERVER) |
67 |
|
|
#define IsClient(x) ((x)->status == STAT_CLIENT) |
68 |
|
|
|
69 |
|
|
#define SetConnecting(x) {(x)->status = STAT_CONNECTING; \ |
70 |
michael |
2865 |
(x)->handler = UNREGISTERED_HANDLER; } |
71 |
adx |
30 |
|
72 |
|
|
#define SetHandshake(x) {(x)->status = STAT_HANDSHAKE; \ |
73 |
michael |
2865 |
(x)->handler = UNREGISTERED_HANDLER; } |
74 |
adx |
30 |
|
75 |
|
|
#define SetMe(x) {(x)->status = STAT_ME; \ |
76 |
michael |
2865 |
(x)->handler = UNREGISTERED_HANDLER; } |
77 |
adx |
30 |
|
78 |
|
|
#define SetUnknown(x) {(x)->status = STAT_UNKNOWN; \ |
79 |
michael |
2865 |
(x)->handler = UNREGISTERED_HANDLER; } |
80 |
adx |
30 |
|
81 |
|
|
#define SetServer(x) {(x)->status = STAT_SERVER; \ |
82 |
michael |
2865 |
(x)->handler = SERVER_HANDLER; } |
83 |
adx |
30 |
|
84 |
|
|
#define SetClient(x) {(x)->status = STAT_CLIENT; \ |
85 |
michael |
6617 |
(x)->handler = CLIENT_HANDLER; } |
86 |
adx |
30 |
|
87 |
michael |
4588 |
#define MyConnect(x) ((x)->connection != NULL) |
88 |
michael |
1219 |
#define MyClient(x) (MyConnect(x) && IsClient(x)) |
89 |
adx |
30 |
|
90 |
|
|
/* |
91 |
|
|
* ts stuff |
92 |
|
|
*/ |
93 |
michael |
6315 |
enum |
94 |
|
|
{ |
95 |
|
|
TS_CURRENT = 6, /**< Current TS protocol version */ |
96 |
|
|
TS_MIN = 6 /**< Minimum supported TS protocol version */ |
97 |
|
|
}; |
98 |
adx |
30 |
|
99 |
michael |
6315 |
enum |
100 |
|
|
{ |
101 |
michael |
8431 |
CAP_MULTI_PREFIX = 1 << 0, /**< ircv3.1 multi-prefix client capability */ |
102 |
|
|
CAP_AWAY_NOTIFY = 1 << 1, /**< ircv3.1 away-notify client capability */ |
103 |
|
|
CAP_UHNAMES = 1 << 2, /**< ircv3.2 userhost-in-names client capability */ |
104 |
|
|
CAP_EXTENDED_JOIN = 1 << 3, /**< ircv3.1 extended-join client capability */ |
105 |
|
|
CAP_ACCOUNT_NOTIFY = 1 << 4, /**< ircv3.1 account-notify client capability */ |
106 |
|
|
CAP_INVITE_NOTIFY = 1 << 5, /**< ircv3.2 invite-notify client capability */ |
107 |
|
|
CAP_CHGHOST = 1 << 6 /**< ircv3.2 chghost client capability */ |
108 |
michael |
6315 |
}; |
109 |
adx |
30 |
|
110 |
michael |
4588 |
#define HasCap(x, y) ((x)->connection->cap_active & (y)) |
111 |
michael |
1146 |
|
112 |
michael |
2910 |
|
113 |
adx |
30 |
/* housekeeping flags */ |
114 |
michael |
6315 |
enum |
115 |
|
|
{ |
116 |
michael |
8431 |
FLAGS_PINGSENT = 1 << 0, /**< Unreplied ping sent */ |
117 |
|
|
FLAGS_DEADSOCKET = 1 << 1, /**< Local socket is dead--Exiting soon */ |
118 |
|
|
FLAGS_KILLED = 1 << 2, /**< Prevents "QUIT" from being sent for this */ |
119 |
|
|
FLAGS_CLOSING = 1 << 3, /**< Set when closing to suppress errors */ |
120 |
|
|
FLAGS_GOTID = 1 << 4, /**< Successful ident lookup achieved */ |
121 |
|
|
FLAGS_SENDQEX = 1 << 5, /**< Sendq exceeded */ |
122 |
|
|
FLAGS_IPHASH = 1 << 6, /**< Iphashed this client */ |
123 |
|
|
FLAGS_MARK = 1 << 7, /**< Marked client */ |
124 |
|
|
FLAGS_CANFLOOD = 1 << 8, /**< Client has the ability to flood */ |
125 |
|
|
FLAGS_EXEMPTKLINE = 1 << 9, /**< Client is exempt from k-lines */ |
126 |
|
|
FLAGS_NOLIMIT = 1 << 10, /**< Client is exempt from limits */ |
127 |
|
|
FLAGS_PING_COOKIE = 1 << 11, /**< PING Cookie */ |
128 |
|
|
FLAGS_FLOODDONE = 1 << 12, /**< Flood grace period has been ended. */ |
129 |
|
|
FLAGS_EOB = 1 << 13, /**< Server has sent us an EOB */ |
130 |
|
|
FLAGS_HIDDEN = 1 << 14, /**< A hidden server. Not shown in /links */ |
131 |
|
|
FLAGS_BLOCKED = 1 << 15, /**< Must wait for COMM_SELECT_WRITE */ |
132 |
michael |
8496 |
FLAGS_EXEMPTRESV = 1 << 16, /**< Client is exempt from RESV */ |
133 |
|
|
FLAGS_GOTUSER = 1 << 17, /**< If we received a USER command */ |
134 |
|
|
FLAGS_FINISHED_AUTH = 1 << 18, /**< Client has been released from auth */ |
135 |
|
|
FLAGS_FLOOD_NOTICED = 1 << 19, /**< Notice to opers about this flooder has been sent */ |
136 |
|
|
FLAGS_SERVICE = 1 << 20, /**< Client/server is a network service */ |
137 |
|
|
FLAGS_SSL = 1 << 21, /**< User is connected via TLS/SSL */ |
138 |
|
|
FLAGS_SQUIT = 1 << 22, |
139 |
|
|
FLAGS_EXEMPTXLINE = 1 << 23 /**< Client is exempt from x-lines */ |
140 |
michael |
6315 |
}; |
141 |
adx |
30 |
|
142 |
michael |
1219 |
#define HasFlag(x, y) ((x)->flags & (y)) |
143 |
|
|
#define AddFlag(x, y) ((x)->flags |= (y)) |
144 |
|
|
#define DelFlag(x, y) ((x)->flags &= ~(y)) |
145 |
adx |
30 |
|
146 |
michael |
1219 |
|
147 |
adx |
30 |
/* umodes, settable flags */ |
148 |
michael |
6315 |
enum |
149 |
|
|
{ |
150 |
michael |
8431 |
UMODE_SERVNOTICE = 1 << 0, /**< Server notices such as kill */ |
151 |
|
|
UMODE_CCONN = 1 << 1, /**< Can see client connection notices */ |
152 |
|
|
UMODE_REJ = 1 << 2, /**< Bot Rejections */ |
153 |
|
|
UMODE_SKILL = 1 << 3, /**< Server Killed */ |
154 |
|
|
UMODE_FULL = 1 << 4, /**< Full messages */ |
155 |
|
|
UMODE_SPY = 1 << 5, /**< See STATS / LINKS */ |
156 |
|
|
UMODE_DEBUG = 1 << 6, /**< 'debugging' info */ |
157 |
|
|
UMODE_NCHANGE = 1 << 7, /**< Nick change notice */ |
158 |
|
|
UMODE_WALLOP = 1 << 8, /**< Send wallops to them */ |
159 |
|
|
UMODE_INVISIBLE = 1 << 9, /**< Makes user invisible */ |
160 |
|
|
UMODE_BOTS = 1 << 10, /**< Shows bots */ |
161 |
|
|
UMODE_EXTERNAL = 1 << 11, /**< Show servers introduced and splitting */ |
162 |
|
|
UMODE_CALLERID = 1 << 12, /**< Block unless caller id's */ |
163 |
|
|
UMODE_SOFTCALLERID = 1 << 13, /**< Block unless on common channel */ |
164 |
|
|
UMODE_UNAUTH = 1 << 14, /**< Show unauth connects here */ |
165 |
|
|
UMODE_LOCOPS = 1 << 15, /**< Can see LOCOPS messages */ |
166 |
|
|
UMODE_DEAF = 1 << 16, /**< Don't receive channel messages */ |
167 |
|
|
UMODE_REGISTERED = 1 << 17, /**< User has identified for that nick. */ |
168 |
|
|
UMODE_REGONLY = 1 << 18, /**< Only registered nicks may PM */ |
169 |
|
|
UMODE_HIDDEN = 1 << 19, /**< IRC operator status is hidden */ |
170 |
|
|
UMODE_OPER = 1 << 20, /**< IRC operator */ |
171 |
|
|
UMODE_ADMIN = 1 << 21, /**< Admin on server */ |
172 |
|
|
UMODE_FARCONNECT = 1 << 22, /**< Can see remote client connects/exits */ |
173 |
|
|
UMODE_SSL = 1 << 23, /**< User is connected via TLS/SSL */ |
174 |
|
|
UMODE_WEBIRC = 1 << 24, /**< User connected via a webirc gateway */ |
175 |
|
|
UMODE_HIDEIDLE = 1 << 25, /**< Hides idle and signon time in WHOIS */ |
176 |
michael |
8963 |
UMODE_HIDECHANS = 1 << 26, /**< Hides channel list in WHOIS */ |
177 |
|
|
UMODE_EXPIRATION = 1 << 27 /**< Receives *LINE expiration notices */ |
178 |
michael |
6315 |
}; |
179 |
db |
849 |
|
180 |
michael |
1158 |
#define HasUMode(x, y) ((x)->umodes & (y)) |
181 |
|
|
#define AddUMode(x, y) ((x)->umodes |= (y)) |
182 |
|
|
#define DelUMode(x, y) ((x)->umodes &= ~(y)) |
183 |
|
|
|
184 |
adx |
30 |
|
185 |
michael |
6691 |
/** irc-operator privilege flags */ |
186 |
michael |
6315 |
enum |
187 |
|
|
{ |
188 |
michael |
8431 |
OPER_FLAG_ADMIN = 1 << 0, /**< Oper can set user mode +a */ |
189 |
|
|
OPER_FLAG_CLOSE = 1 << 1, /**< Oper can use CLOSE command */ |
190 |
|
|
OPER_FLAG_CONNECT = 1 << 2, /**< Oper can do local CONNECT */ |
191 |
|
|
OPER_FLAG_CONNECT_REMOTE = 1 << 3, /**< Oper can do remote CONNECT */ |
192 |
|
|
OPER_FLAG_DIE = 1 << 4, /**< Oper can use DIE command */ |
193 |
|
|
OPER_FLAG_DLINE = 1 << 5, /**< Oper can use DLINE command */ |
194 |
|
|
OPER_FLAG_GLOBOPS = 1 << 6, /**< Oper can use GLOBOPS command */ |
195 |
|
|
OPER_FLAG_JOIN_RESV = 1 << 7, /**< Oper can use JOIN on resv {} channels */ |
196 |
|
|
OPER_FLAG_KILL = 1 << 8, /**< Oper can KILL local users */ |
197 |
|
|
OPER_FLAG_KILL_REMOTE = 1 << 9, /**< Oper can KILL remote users */ |
198 |
|
|
OPER_FLAG_KLINE = 1 << 10, /**< Oper can use KLINE command */ |
199 |
|
|
OPER_FLAG_LOCOPS = 1 << 11, /**< Oper can use LOCOPS command */ |
200 |
|
|
OPER_FLAG_MODULE = 1 << 12, /**< Oper can use MODULE command */ |
201 |
|
|
OPER_FLAG_NICK_RESV = 1 << 13, /**< Oper can use NICK on resv {} nicks */ |
202 |
|
|
OPER_FLAG_OPME = 1 << 14, /**< Oper can use OPME command */ |
203 |
|
|
OPER_FLAG_REHASH = 1 << 15, /**< Oper can use REHASH command */ |
204 |
|
|
OPER_FLAG_REHASH_REMOTE = 1 << 16, /**< Oper can do remote REHASH command */ |
205 |
|
|
OPER_FLAG_REMOTEBAN = 1 << 17, /**< Oper can set remote bans */ |
206 |
|
|
OPER_FLAG_RESTART = 1 << 18, /**< Oper can use RESTART command */ |
207 |
|
|
OPER_FLAG_RESV = 1 << 19, /**< Oper can use RESV command */ |
208 |
|
|
OPER_FLAG_SET = 1 << 20, /**< Oper can use SET command */ |
209 |
|
|
OPER_FLAG_SQUIT = 1 << 21, /**< Oper can do local SQUIT */ |
210 |
|
|
OPER_FLAG_SQUIT_REMOTE = 1 << 22, /**< Oper can do remote SQUIT */ |
211 |
|
|
OPER_FLAG_UNDLINE = 1 << 23, /**< Oper can use UNDLINE command */ |
212 |
|
|
OPER_FLAG_UNKLINE = 1 << 24, /**< Oper can use UNKLINE command */ |
213 |
|
|
OPER_FLAG_UNRESV = 1 << 25, /**< Oper can use UNRESV command */ |
214 |
|
|
OPER_FLAG_UNXLINE = 1 << 26, /**< Oper can use UNXLINE command */ |
215 |
|
|
OPER_FLAG_WALLOPS = 1 << 27, /**< Oper can use WALLOPS command */ |
216 |
|
|
OPER_FLAG_XLINE = 1 << 28 /**< Oper can use XLINE command */ |
217 |
michael |
6315 |
}; |
218 |
adx |
30 |
|
219 |
michael |
6620 |
#define HasOFlag(x, y) ((x)->connection->operflags & (y)) |
220 |
michael |
4588 |
#define AddOFlag(x, y) ((x)->connection->operflags |= (y)) |
221 |
|
|
#define DelOFlag(x, y) ((x)->connection->operflags &= ~(y)) |
222 |
|
|
#define ClrOFlag(x) ((x)->connection->operflags = 0) |
223 |
adx |
30 |
|
224 |
|
|
|
225 |
michael |
1219 |
|
226 |
adx |
30 |
/* flags macros. */ |
227 |
|
|
#define IsDead(x) ((x)->flags & FLAGS_DEADSOCKET) |
228 |
|
|
#define SetDead(x) ((x)->flags |= FLAGS_DEADSOCKET) |
229 |
michael |
2865 |
#define IsDefunct(x) ((x)->flags & (FLAGS_DEADSOCKET|FLAGS_CLOSING|FLAGS_KILLED)) |
230 |
adx |
30 |
|
231 |
|
|
/* oper flags */ |
232 |
|
|
#define SetOper(x) {(x)->umodes |= UMODE_OPER; \ |
233 |
michael |
6616 |
if (MyClient((x))) (x)->handler = OPER_HANDLER;} |
234 |
adx |
30 |
|
235 |
|
|
#define ClearOper(x) {(x)->umodes &= ~(UMODE_OPER|UMODE_ADMIN); \ |
236 |
michael |
6616 |
if (MyClient((x))) \ |
237 |
michael |
2865 |
(x)->handler = CLIENT_HANDLER; } |
238 |
adx |
30 |
|
239 |
|
|
#define IsFloodDone(x) ((x)->flags & FLAGS_FLOODDONE) |
240 |
|
|
#define IsHidden(x) ((x)->flags & FLAGS_HIDDEN) |
241 |
|
|
|
242 |
|
|
|
243 |
michael |
7304 |
/*! \brief server ban types */ |
244 |
|
|
enum |
245 |
|
|
{ |
246 |
|
|
CLIENT_BAN_KLINE, |
247 |
|
|
CLIENT_BAN_DLINE, |
248 |
|
|
CLIENT_BAN_XLINE |
249 |
|
|
}; |
250 |
|
|
|
251 |
michael |
1798 |
/*! \brief addr_mask_type enumeration */ |
252 |
|
|
enum addr_mask_type |
253 |
|
|
{ |
254 |
michael |
8437 |
HIDE_IP, /**< IP is hidden. Resolved hostname is shown instead */ |
255 |
|
|
SHOW_IP, /**< IP is shown. No parts of it are hidden or masked */ |
256 |
|
|
MASK_IP /**< IP is masked. 255.255.255.255 is shown instead */ |
257 |
michael |
1798 |
}; |
258 |
|
|
|
259 |
|
|
/*! \brief Server structure */ |
260 |
|
|
struct Server |
261 |
|
|
{ |
262 |
michael |
8437 |
dlink_list server_list; /**< Servers on this server */ |
263 |
|
|
dlink_list client_list; /**< Clients on this server */ |
264 |
michael |
8613 |
char by[NICKLEN + 1]; /**< Who activated this connection */ |
265 |
michael |
1798 |
}; |
266 |
|
|
|
267 |
|
|
/*! \brief ListTask structure */ |
268 |
|
|
struct ListTask |
269 |
|
|
{ |
270 |
michael |
6385 |
dlink_node node; /**< Embedded list node used to link into listing_client_list */ |
271 |
michael |
8437 |
dlink_list show_mask; /**< Channels to show */ |
272 |
|
|
dlink_list hide_mask; /**< Channels to hide */ |
273 |
michael |
1798 |
|
274 |
michael |
8437 |
unsigned int hash_index; /**< The hash bucket we are currently in */ |
275 |
michael |
1798 |
unsigned int users_min; |
276 |
|
|
unsigned int users_max; |
277 |
michael |
8917 |
unsigned int created_min; /**< Real time */ |
278 |
|
|
unsigned int created_max; /**< Real time */ |
279 |
|
|
unsigned int topicts_min; /**< Real time */ |
280 |
|
|
unsigned int topicts_max; /**< Real time */ |
281 |
michael |
4489 |
char topic[TOPICLEN + 1]; |
282 |
michael |
1798 |
}; |
283 |
|
|
|
284 |
michael |
4576 |
/*! \brief Connection structure |
285 |
michael |
1798 |
* |
286 |
|
|
* Allocated only for local clients, that are directly connected |
287 |
|
|
* to \b this server with a socket. |
288 |
|
|
*/ |
289 |
michael |
4576 |
struct Connection |
290 |
michael |
1798 |
{ |
291 |
michael |
8613 |
dlink_node lclient_node; |
292 |
michael |
1798 |
|
293 |
|
|
unsigned int registration; |
294 |
michael |
3518 |
unsigned int cap_client; /**< Client capabilities (from us) */ |
295 |
|
|
unsigned int cap_active; /**< Active capabilities (to us) */ |
296 |
michael |
8613 |
unsigned int caps; /**< Capabilities bit-field */ |
297 |
michael |
1798 |
|
298 |
|
|
unsigned int operflags; /**< IRC Operator privilege flags */ |
299 |
|
|
unsigned int random_ping; /**< Holding a 32bit value used for PING cookies */ |
300 |
|
|
|
301 |
michael |
8613 |
uintmax_t serial; /**< Used to enforce 1 send per nick */ |
302 |
michael |
8919 |
uintmax_t last_data; /**< Last time data read from socket; monotonic time */ |
303 |
|
|
uintmax_t last_ping; /**< Last time data read from socket; currently this is a copy of last_data |
304 |
|
|
which can be modified by check_pings_list; monotonic time */ |
305 |
|
|
uintmax_t created_real; /**< Time client was created; real time */ |
306 |
|
|
uintmax_t created_monotonic; /**< Time client was created; monotonic time */ |
307 |
michael |
8917 |
uintmax_t last_caller_id_time; /**< Monotonic time */ |
308 |
|
|
uintmax_t first_received_message_time; /**< Monotonic time */ |
309 |
|
|
uintmax_t last_privmsg; /**< Last time we got a PRIVMSG; monotonic time */ |
310 |
|
|
uintmax_t last_join_time; /**< When this client last joined a channel; monotonic time */ |
311 |
|
|
uintmax_t last_leave_time; /**< When this client last left a channel; monotonic time */ |
312 |
michael |
1798 |
|
313 |
michael |
8796 |
unsigned int join_leave_count; /**< Count of JOIN/LEAVE in less than MIN_JOIN_LEAVE_TIME seconds */ |
314 |
michael |
8797 |
unsigned int oper_warn_count_down; /**< Warn opers of this possible spambot every time this gets to 0 */ |
315 |
michael |
7862 |
unsigned int received_number_of_privmsgs; |
316 |
michael |
1798 |
|
317 |
|
|
struct ListTask *list_task; |
318 |
|
|
|
319 |
|
|
struct dbuf_queue buf_sendq; |
320 |
|
|
struct dbuf_queue buf_recvq; |
321 |
|
|
|
322 |
michael |
3335 |
struct |
323 |
|
|
{ |
324 |
michael |
8613 |
unsigned int messages; /**< Statistics: protocol messages sent/received */ |
325 |
|
|
uintmax_t bytes; /**< Statistics: total bytes sent/received */ |
326 |
michael |
1798 |
} recv, send; |
327 |
|
|
|
328 |
michael |
3860 |
struct |
329 |
|
|
{ |
330 |
michael |
4313 |
unsigned int count; /**< How many AWAY/INVITE/KNOCK/NICK requests client has sent */ |
331 |
michael |
8917 |
uintmax_t last_attempt; /**< Last time the AWAY/INVITE/KNOCK/NICK request was issued; monotonic time */ |
332 |
michael |
4313 |
} away, invite, knock, nick; |
333 |
michael |
3860 |
|
334 |
michael |
8339 |
struct AuthRequest *auth; |
335 |
michael |
8613 |
struct Listener *listener; /**< Listener accepted from */ |
336 |
|
|
dlink_list acceptlist; /**< Clients I'll allow to talk to me */ |
337 |
|
|
dlink_list watches; /**< Chain of Watch pointer blocks */ |
338 |
|
|
dlink_list confs; /**< Configuration record associated */ |
339 |
|
|
dlink_list invited; /**< Chain of invite pointer blocks */ |
340 |
michael |
1798 |
|
341 |
michael |
8613 |
fde_t *fd; /**< Pointer to fdlist.c:fd_table[] */ |
342 |
michael |
4439 |
|
343 |
michael |
1798 |
/* Anti-flood stuff. We track how many messages were parsed and how |
344 |
|
|
* many we were allowed in the current second, and apply a simple |
345 |
|
|
* decay to avoid flooding. |
346 |
|
|
* -- adrian |
347 |
|
|
*/ |
348 |
michael |
8613 |
int sent_parsed; /**< How many messages we've parsed in this second */ |
349 |
michael |
1798 |
|
350 |
michael |
4439 |
char *password; /**< Password supplied by the client/server */ |
351 |
michael |
1798 |
}; |
352 |
|
|
|
353 |
|
|
/*! \brief Client structure */ |
354 |
|
|
struct Client |
355 |
|
|
{ |
356 |
|
|
dlink_node node; |
357 |
michael |
8613 |
dlink_node lnode; /**< Used for Server->servers/users */ |
358 |
michael |
1798 |
|
359 |
michael |
6621 |
struct Connection *connection; /**< Connection structure associated with this client */ |
360 |
michael |
8613 |
struct Client *hnext; /**< For client hash table lookups by name */ |
361 |
|
|
struct Client *idhnext; /**< For SID hash table lookups by sid */ |
362 |
|
|
struct Server *serv; /**< ...defined, if this is a server */ |
363 |
|
|
struct Client *servptr; /**< Points to server this Client is on */ |
364 |
|
|
struct Client *from; /**< == self, if Local Client, *NEVER* NULL! */ |
365 |
michael |
1798 |
|
366 |
michael |
8917 |
uintmax_t tsinfo; /**< Timestamp on this nick; real time */ |
367 |
michael |
1798 |
|
368 |
michael |
8613 |
unsigned int flags; /**< Client flags */ |
369 |
|
|
unsigned int umodes; /**< User modes this client has set */ |
370 |
|
|
unsigned int hopcount; /**< Number of servers to this 0 = local */ |
371 |
|
|
unsigned int status; /**< Client type */ |
372 |
|
|
unsigned int handler; /**< Handler index */ |
373 |
michael |
1798 |
|
374 |
michael |
8613 |
dlink_list whowas_list; |
375 |
|
|
dlink_list channel; /**< Chain of channel pointer blocks */ |
376 |
|
|
dlink_list svstags; /**< List of ServicesTag items */ |
377 |
michael |
1798 |
|
378 |
michael |
8496 |
struct irc_ssaddr ip; /**< Real IP address */ |
379 |
|
|
|
380 |
michael |
8613 |
char *certfp; /**< SSL certificate fingerprint */ |
381 |
michael |
3335 |
|
382 |
michael |
8613 |
char away[AWAYLEN + 1]; /**< Client's AWAY message. Can be set/unset via AWAY command */ |
383 |
|
|
char name[HOSTLEN + 1]; /**< Unique name for a client nick or host */ |
384 |
|
|
char id[IDLEN + 1]; /**< Client ID, unique ID per client */ |
385 |
|
|
char account[ACCOUNTLEN + 1]; /**< Services account */ |
386 |
|
|
|
387 |
michael |
2865 |
/* |
388 |
michael |
2345 |
* client->username is the username from ident or the USER message, |
389 |
|
|
* If the client is idented the USER message is ignored, otherwise |
390 |
|
|
* the username part of the USER message is put here prefixed with a |
391 |
michael |
1798 |
* tilde depending on the auth{} block. Once a client has registered, |
392 |
|
|
* this field should be considered read-only. |
393 |
|
|
*/ |
394 |
michael |
8613 |
char username[USERLEN + 1]; /**< client's username */ |
395 |
michael |
3335 |
|
396 |
michael |
1798 |
/* |
397 |
michael |
8211 |
* client->host contains the resolved name or ip address as a string |
398 |
|
|
* for the user, it may be fiddled with for oper spoofing etc. |
399 |
|
|
* once it's changed the *real* address goes away. |
400 |
michael |
1798 |
*/ |
401 |
michael |
8613 |
char host[HOSTLEN + 1]; /**< Client's hostname. Can be faked/spoofed */ |
402 |
michael |
1798 |
|
403 |
|
|
/* |
404 |
michael |
8214 |
* client->realhost contains the resolved name or ip address as a string |
405 |
|
|
* for the user. Once a client has registered, this field should be |
406 |
|
|
* considered read-only. |
407 |
|
|
*/ |
408 |
michael |
8613 |
char realhost[HOSTLEN + 1]; /**< Client's real hostname */ |
409 |
michael |
8214 |
|
410 |
|
|
|
411 |
|
|
/* |
412 |
michael |
2345 |
* client->info for unix clients will normally contain the info from the |
413 |
michael |
1798 |
* gcos field in /etc/passwd but anything can go here. |
414 |
|
|
*/ |
415 |
michael |
8613 |
char info[REALLEN + 1]; /**< Free form additional client info */ |
416 |
michael |
1798 |
|
417 |
|
|
/* |
418 |
|
|
* client->sockhost contains the ip address gotten from the socket as a |
419 |
|
|
* string, this field should be considered read-only once the connection |
420 |
|
|
* has been made. (set in s_bsd.c only) |
421 |
|
|
*/ |
422 |
michael |
8613 |
char sockhost[HOSTIPLEN + 1]; /**< This is the host name from the socket ip address as string */ |
423 |
michael |
1798 |
}; |
424 |
|
|
|
425 |
|
|
|
426 |
adx |
30 |
extern struct Client me; |
427 |
|
|
extern dlink_list listing_client_list; |
428 |
|
|
extern dlink_list global_client_list; |
429 |
michael |
4209 |
extern dlink_list global_server_list; /* global servers on the network */ |
430 |
michael |
4213 |
extern dlink_list local_client_list; /* local clients only ON this server */ |
431 |
|
|
extern dlink_list local_server_list; /* local servers to this server ONLY */ |
432 |
michael |
1666 |
extern dlink_list unknown_list; /* unknown clients ON this server only */ |
433 |
|
|
extern dlink_list oper_list; /* our opers, duplicated in local_client_list */ |
434 |
adx |
30 |
|
435 |
michael |
8656 |
extern bool accept_message(struct Client *, struct Client *); |
436 |
michael |
5544 |
extern unsigned int client_get_idle_time(const struct Client *, const struct Client *); |
437 |
michael |
887 |
extern struct split_nuh_item *find_accept(const char *, const char *, |
438 |
michael |
2363 |
const char *, struct Client *, |
439 |
|
|
int (*)(const char *, const char *)); |
440 |
michael |
887 |
extern void del_accept(struct split_nuh_item *, struct Client *); |
441 |
|
|
extern void del_all_accepts(struct Client *); |
442 |
michael |
3171 |
extern void exit_client(struct Client *, const char *); |
443 |
michael |
7304 |
extern void conf_try_ban(struct Client *, int, const char *); |
444 |
adx |
30 |
extern void check_conf_klines(void); |
445 |
michael |
1798 |
extern void client_init(void); |
446 |
adx |
30 |
extern void dead_link_on_write(struct Client *, int); |
447 |
|
|
extern void dead_link_on_read(struct Client *, int); |
448 |
|
|
extern void exit_aborted_clients(void); |
449 |
|
|
extern void free_exited_clients(void); |
450 |
michael |
7957 |
extern struct Client *client_make(struct Client *); |
451 |
michael |
3192 |
extern struct Client *find_chasing(struct Client *, const char *); |
452 |
michael |
7345 |
extern struct Client *find_person(const struct Client *, const char *); |
453 |
michael |
7997 |
extern const char *client_get_name(const struct Client *, enum addr_mask_type); |
454 |
michael |
8437 |
#endif /* INCLUDED_client_h */ |