]> jfr.im git - irc/rqf/shadowircd.git/blame - modules/m_whois.c
Pretty symlink logic for help files
[irc/rqf/shadowircd.git] / modules / m_whois.c
CommitLineData
212380e3 1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_whois.c: Shows who a user is.
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-2005 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 *
f7eac53d 24 * $Id: m_whois.c 3536 2007-07-14 21:50:21Z jilles $
212380e3 25 */
26
27#include "stdinc.h"
212380e3 28#include "common.h"
29#include "client.h"
30#include "hash.h"
31#include "channel.h"
32#include "hash.h"
33#include "ircd.h"
34#include "numeric.h"
35#include "s_conf.h"
36#include "s_serv.h"
37#include "send.h"
13ae2f4b 38#include "match.h"
212380e3 39#include "s_conf.h"
d3455e2c 40#include "logger.h"
212380e3 41#include "msg.h"
42#include "parse.h"
43#include "modules.h"
44#include "hook.h"
45#include "s_newconf.h"
46
47static void do_whois(struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
48static void single_whois(struct Client *source_p, struct Client *target_p, int operspy);
49
50static int m_whois(struct Client *, struct Client *, int, const char **);
51static int ms_whois(struct Client *, struct Client *, int, const char **);
52
53struct Message whois_msgtab = {
54 "WHOIS", 0, 0, 0, MFLG_SLOW,
55 {mg_unreg, {m_whois, 2}, {ms_whois, 2}, mg_ignore, mg_ignore, {m_whois, 2}}
56};
57
58int doing_whois_hook;
59int doing_whois_global_hook;
60
61mapi_clist_av1 whois_clist[] = { &whois_msgtab, NULL };
62mapi_hlist_av1 whois_hlist[] = {
63 { "doing_whois", &doing_whois_hook },
64 { "doing_whois_global", &doing_whois_global_hook },
65 { NULL, NULL }
66};
67
f7eac53d 68DECLARE_MODULE_AV1(whois, NULL, NULL, whois_clist, whois_hlist, NULL, "$Revision: 3536 $");
212380e3 69
70/*
71 * m_whois
72 * parv[0] = sender prefix
73 * parv[1] = nickname masklist
74 */
75static int
76m_whois(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
77{
78 static time_t last_used = 0;
79
80 if(parc > 2)
81 {
82 if(EmptyString(parv[2]))
83 {
84 sendto_one(source_p, form_str(ERR_NONICKNAMEGIVEN),
85 me.name, source_p->name);
86 return 0;
87 }
88
89 if(!IsOper(source_p))
90 {
91 /* seeing as this is going across servers, we should limit it */
9f6bbe3c 92 if((last_used + ConfigFileEntry.pace_wait_simple) > rb_current_time())
212380e3 93 {
94 sendto_one(source_p, form_str(RPL_LOAD2HI),
95 me.name, source_p->name, "WHOIS");
96 sendto_one_numeric(source_p, RPL_ENDOFWHOIS,
f7eac53d 97 form_str(RPL_ENDOFWHOIS), parv[2]);
212380e3 98 return 0;
99 }
100 else
9f6bbe3c 101 last_used = rb_current_time();
212380e3 102 }
103
104 if(hunt_server(client_p, source_p, ":%s WHOIS %s :%s", 1, parc, parv) !=
105 HUNTED_ISME)
106 return 0;
107
108 parv[1] = parv[2];
109
110 }
111 do_whois(client_p, source_p, parc, parv);
112
113 return 0;
114}
115
116/*
117 * ms_whois
118 * parv[0] = sender prefix
119 * parv[1] = server to reply
120 * parv[2] = nickname to whois
121 */
122static int
123ms_whois(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
124{
125 struct Client *target_p;
126
127 /* note: early versions of ratbox allowed users to issue a remote
128 * whois with a blank parv[2], so we cannot treat it as a protocol
129 * violation. --anfl
130 */
131 if(parc < 3 || EmptyString(parv[2]))
132 {
133 sendto_one(source_p, form_str(ERR_NONICKNAMEGIVEN),
134 me.name, source_p->name);
135 return 0;
136 }
137
138 /* check if parv[1] exists */
139 if((target_p = find_client(parv[1])) == NULL)
140 {
141 sendto_one_numeric(source_p, ERR_NOSUCHSERVER,
142 form_str(ERR_NOSUCHSERVER),
143 IsDigit(parv[1][0]) ? "*" : parv[1]);
144 return 0;
145 }
146
147 /* if parv[1] isnt my client, or me, someone else is supposed
148 * to be handling the request.. so send it to them
149 */
150 if(!MyClient(target_p) && !IsMe(target_p))
151 {
152 sendto_one(target_p, ":%s WHOIS %s :%s",
153 get_id(source_p, target_p),
154 get_id(target_p, target_p), parv[2]);
155 return 0;
156 }
157
158 /* ok, the target is either us, or a client on our server, so perform the whois
159 * but first, parv[1] == server to perform the whois on, parv[2] == person
160 * to whois, so make parv[1] = parv[2] so do_whois is ok -- fl_
161 */
162 parv[1] = parv[2];
163 do_whois(client_p, source_p, parc, parv);
164
165 return 0;
166}
167
168/* do_whois
169 *
170 * inputs - pointer to
171 * output -
172 * side effects -
173 */
174static void
175do_whois(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
176{
177 struct Client *target_p;
178 char *nick;
179 char *p = NULL;
180 int operspy = 0;
181
182 nick = LOCAL_COPY(parv[1]);
183 if((p = strchr(nick, ',')))
184 *p = '\0';
185
186 if(IsOperSpy(source_p) && *nick == '!')
187 {
188 operspy = 1;
189 nick++;
190 }
191
42fa7846
WP
192 if(MyClient(source_p))
193 target_p = find_named_person(nick);
194 else
8db00894 195 target_p = find_person(nick);
212380e3 196
197 if(target_p != NULL)
198 {
199 if(operspy)
200 {
201 char buffer[BUFSIZE];
202
203 snprintf(buffer, sizeof(buffer), "%s!%s@%s %s",
204 target_p->name, target_p->username,
c88cdb00 205 target_p->host, target_p->servptr->name);
212380e3 206 report_operspy(source_p, "WHOIS", buffer);
207 }
208
209 single_whois(source_p, target_p, operspy);
210 }
211 else
212 sendto_one_numeric(source_p, ERR_NOSUCHNICK,
213 form_str(ERR_NOSUCHNICK),
8a1e143f 214 nick);
212380e3 215
216 sendto_one_numeric(source_p, RPL_ENDOFWHOIS,
217 form_str(RPL_ENDOFWHOIS), parv[1]);
218 return;
219}
220
221/*
222 * single_whois()
223 *
224 * Inputs - source_p client to report to
225 * - target_p client to report on
226 * Output - if found return 1
227 * Side Effects - do a single whois on given client
228 * writing results to source_p
229 */
230static void
231single_whois(struct Client *source_p, struct Client *target_p, int operspy)
232{
233 char buf[BUFSIZE];
08d11e34 234 rb_dlink_node *ptr;
212380e3 235 struct membership *msptr;
236 struct Channel *chptr;
237 int cur_len = 0;
238 int mlen;
239 char *t;
240 int tlen;
241 hook_data_client hdata;
242 char *name;
243 char quest[] = "?";
244 int visible;
245 int extra_space = 0;
246
247 if(target_p->name[0] == '\0')
248 name = quest;
249 else
250 name = target_p->name;
251
252 if(target_p->user == NULL)
253 {
254 s_assert(0);
255 return;
256 }
257
212380e3 258 sendto_one_numeric(source_p, RPL_WHOISUSER, form_str(RPL_WHOISUSER),
259 target_p->name, target_p->username,
260 target_p->host, target_p->info);
261
581fa5c4 262 cur_len = mlen = rb_sprintf(buf, form_str(RPL_WHOISCHANNELS),
212380e3 263 get_id(&me, source_p), get_id(source_p, source_p),
264 target_p->name);
265
266 /* Make sure it won't overflow when sending it to the client
267 * in full names; note that serverhiding may require more space
268 * for a different server name (not done here) -- jilles
269 */
270 if (!MyConnect(source_p))
271 {
272 extra_space = strlen(source_p->name) - 9;
273 if (extra_space < 0)
274 extra_space = 0;
275 extra_space += strlen(me.name) - 2; /* make sure >= 0 */
276 cur_len += extra_space;
277 }
278
279 t = buf + mlen;
280
04513cff 281 if (!IsService(target_p))
212380e3 282 {
08d11e34 283 RB_DLINK_FOREACH(ptr, target_p->user->channel.head)
04513cff 284 {
285 msptr = ptr->data;
286 chptr = msptr->chptr;
212380e3 287
04513cff 288 visible = ShowChannel(source_p, chptr);
212380e3 289
04513cff 290 if(visible || operspy)
212380e3 291 {
04513cff 292 if((cur_len + strlen(chptr->chname) + 3) > (BUFSIZE - 5))
293 {
294 sendto_one(source_p, "%s", buf);
295 cur_len = mlen + extra_space;
296 t = buf + mlen;
297 }
298
581fa5c4 299 tlen = rb_sprintf(t, "%s%s%s ",
04513cff 300 visible ? "" : "!",
301 find_channel_status(msptr, 1),
302 chptr->chname);
303 t += tlen;
304 cur_len += tlen;
212380e3 305 }
212380e3 306 }
307 }
308
309 if(cur_len > mlen + extra_space)
310 sendto_one(source_p, "%s", buf);
311
312 sendto_one_numeric(source_p, RPL_WHOISSERVER, form_str(RPL_WHOISSERVER),
c88cdb00 313 target_p->name, target_p->servptr->name,
1f8b58e7 314 target_p->servptr->info);
212380e3 315
316 if(target_p->user->away)
317 sendto_one_numeric(source_p, RPL_AWAY, form_str(RPL_AWAY),
318 target_p->name, target_p->user->away);
319
320 if(IsOper(target_p))
321 {
322 sendto_one_numeric(source_p, RPL_WHOISOPERATOR, form_str(RPL_WHOISOPERATOR),
323 target_p->name,
324 IsService(target_p) ? ConfigFileEntry.servicestring :
325 (IsAdmin(target_p) ? GlobalSetOptions.adminstring :
326 GlobalSetOptions.operstring));
327 }
328
5da17c50
WP
329 if(IsSSLClient(target_p))
330 sendto_one_numeric(source_p, RPL_WHOISSECURE, form_str(RPL_WHOISSECURE),
331 target_p->name);
332
212380e3 333 if(MyClient(target_p))
334 {
335 if (IsDynSpoof(target_p) && (IsOper(source_p) || source_p == target_p))
336 {
337 /* trick here: show a nonoper their own IP if
338 * dynamic spoofed but not if auth{} spoofed
339 * -- jilles */
340 ClearDynSpoof(target_p);
341 sendto_one_numeric(source_p, RPL_WHOISHOST,
342 form_str(RPL_WHOISHOST),
343 target_p->name, target_p->orighost,
344 show_ip(source_p, target_p) ? target_p->sockhost : "255.255.255.255");
345 SetDynSpoof(target_p);
346 }
347 else if(ConfigFileEntry.use_whois_actually && show_ip(source_p, target_p))
348 sendto_one_numeric(source_p, RPL_WHOISACTUALLY,
349 form_str(RPL_WHOISACTUALLY),
350 target_p->name, target_p->sockhost);
351
352 sendto_one_numeric(source_p, RPL_WHOISIDLE, form_str(RPL_WHOISIDLE),
353 target_p->name,
9f6bbe3c 354 rb_current_time() - target_p->localClient->last,
212380e3 355 target_p->localClient->firsttime);
356 }
357 else
358 {
359 if (IsDynSpoof(target_p) && (IsOper(source_p) || source_p == target_p))
360 {
361 ClearDynSpoof(target_p);
362 sendto_one_numeric(source_p, RPL_WHOISHOST,
363 form_str(RPL_WHOISHOST),
364 target_p->name, target_p->orighost,
365 show_ip(source_p, target_p) && !EmptyString(target_p->sockhost) && strcmp(target_p->sockhost, "0")? target_p->sockhost : "255.255.255.255");
366 SetDynSpoof(target_p);
367 }
368 else if(ConfigFileEntry.use_whois_actually && show_ip(source_p, target_p) &&
369 !EmptyString(target_p->sockhost) && strcmp(target_p->sockhost, "0"))
370 {
371 sendto_one_numeric(source_p, RPL_WHOISACTUALLY,
372 form_str(RPL_WHOISACTUALLY),
373 target_p->name, target_p->sockhost);
374
375 }
212380e3 376 }
377
378 hdata.client = source_p;
379 hdata.target = target_p;
380
381 /* doing_whois_hook must only be called for local clients,
382 * doing_whois_global_hook must only be called for local targets
383 */
384 /* it is important that these are called *before* RPL_ENDOFWHOIS is
385 * sent, services compatibility code depends on it. --anfl
386 */
387 if(MyClient(source_p))
388 call_hook(doing_whois_hook, &hdata);
389 else
390 call_hook(doing_whois_global_hook, &hdata);
391
392 return;
393}
394