]> jfr.im git - irc/rqf/shadowircd.git/blob - modules/m_trace.c
libcharybdis includes gone.
[irc/rqf/shadowircd.git] / modules / m_trace.c
1 /*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_trace.c: Traces a path to a client/server.
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 *
24 * $Id: m_trace.c 3183 2007-02-01 01:07:42Z jilles $
25 */
26
27 #include "stdinc.h"
28 #include "class.h"
29 #include "hook.h"
30 #include "client.h"
31 #include "hash.h"
32 #include "common.h"
33 #include "hash.h"
34 #include "irc_string.h"
35 #include "ircd.h"
36 #include "numeric.h"
37 #include "s_serv.h"
38 #include "s_conf.h"
39 #include "s_newconf.h"
40 #include "send.h"
41 #include "msg.h"
42 #include "parse.h"
43 #include "modules.h"
44
45 static int m_trace(struct Client *, struct Client *, int, const char **);
46
47 static void trace_spy(struct Client *, struct Client *);
48
49 struct Message trace_msgtab = {
50 "TRACE", 0, 0, 0, MFLG_SLOW,
51 {mg_unreg, {m_trace, 0}, {m_trace, 0}, mg_ignore, mg_ignore, {m_trace, 0}}
52 };
53
54 int doing_trace_hook;
55
56 mapi_clist_av1 trace_clist[] = { &trace_msgtab, NULL };
57 mapi_hlist_av1 trace_hlist[] = {
58 { "doing_trace", &doing_trace_hook },
59 { NULL, NULL }
60 };
61 DECLARE_MODULE_AV1(trace, NULL, NULL, trace_clist, trace_hlist, NULL, "$Revision: 3183 $");
62
63 static void count_downlinks(struct Client *server_p, int *pservcount, int *pusercount);
64 static int report_this_status(struct Client *source_p, struct Client *target_p, int dow);
65
66 /*
67 * m_trace
68 * parv[0] = sender prefix
69 * parv[1] = servername
70 */
71 static int
72 m_trace(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
73 {
74 struct Client *target_p = NULL;
75 struct Class *cltmp;
76 const char *tname;
77 int doall = 0;
78 int cnt = 0, wilds, dow;
79 rb_dlink_node *ptr;
80
81 if(parc > 1)
82 {
83 tname = parv[1];
84
85 if(parc > 2)
86 {
87 if(hunt_server(client_p, source_p, ":%s TRACE %s :%s", 2, parc, parv) !=
88 HUNTED_ISME)
89 return 0;
90 }
91 }
92 else
93 tname = me.name;
94
95 /* if we have 3 parameters, then the command is directed at us. So
96 * we shouldnt be forwarding it anywhere.
97 */
98 if(parc < 3)
99 {
100 switch (hunt_server(client_p, source_p, ":%s TRACE :%s", 1, parc, parv))
101 {
102 case HUNTED_PASS: /* note: gets here only if parv[1] exists */
103 {
104 struct Client *ac2ptr;
105
106 if(MyClient(source_p))
107 ac2ptr = find_named_client(tname);
108 else
109 ac2ptr = find_client(tname);
110
111 if(ac2ptr == NULL)
112 {
113 RB_DLINK_FOREACH(ptr, global_client_list.head)
114 {
115 ac2ptr = ptr->data;
116
117 if(match(tname, ac2ptr->name))
118 break;
119 else
120 ac2ptr = NULL;
121 }
122 }
123
124 /* giving this out with flattened links defeats the
125 * object --fl
126 */
127 if(IsOper(source_p) || IsExemptShide(source_p) ||
128 !ConfigServerHide.flatten_links)
129 sendto_one_numeric(source_p, RPL_TRACELINK,
130 form_str(RPL_TRACELINK),
131 ircd_version,
132 ac2ptr ? ac2ptr->name : tname,
133 ac2ptr ? ac2ptr->from->name : "EEK!");
134
135 return 0;
136 }
137
138 case HUNTED_ISME:
139 break;
140
141 default:
142 return 0;
143 }
144 }
145
146 if(match(tname, me.name))
147 {
148 doall = 1;
149 }
150 /* if theyre tracing our SID, we need to move tname to our name so
151 * we dont give the sid in ENDOFTRACE
152 */
153 else if(!MyClient(source_p) && !strcmp(tname, me.id))
154 {
155 doall = 1;
156 tname = me.name;
157 }
158
159 wilds = strchr(tname, '*') || strchr(tname, '?');
160 dow = wilds || doall;
161
162 /* specific trace */
163 if(dow == 0)
164 {
165 if(MyClient(source_p) || parc > 2)
166 target_p = find_named_person(tname);
167 else
168 target_p = find_person(tname);
169
170 /* tname could be pointing to an ID at this point, so reset
171 * it to target_p->name if we have a target --fl
172 */
173 if(target_p != NULL)
174 {
175 report_this_status(source_p, target_p, 0);
176 tname = target_p->name;
177 }
178
179 trace_spy(source_p, target_p);
180
181 sendto_one_numeric(source_p, RPL_ENDOFTRACE,
182 form_str(RPL_ENDOFTRACE), tname);
183 return 0;
184 }
185
186 trace_spy(source_p, NULL);
187
188 /* give non-opers a limited trace output of themselves (if local),
189 * opers and servers (if no shide) --fl
190 */
191 if(!IsOper(source_p))
192 {
193 if(MyClient(source_p))
194 {
195 if(doall || (wilds && match(tname, source_p->name)))
196 report_this_status(source_p, source_p, 0);
197 }
198
199 RB_DLINK_FOREACH(ptr, local_oper_list.head)
200 {
201 target_p = ptr->data;
202
203 if(!doall && wilds && (match(tname, target_p->name) == 0))
204 continue;
205
206 report_this_status(source_p, target_p, 0);
207 }
208
209 if (IsExemptShide(source_p) || !ConfigServerHide.flatten_links)
210 {
211 RB_DLINK_FOREACH(ptr, serv_list.head)
212 {
213 target_p = ptr->data;
214
215 if(!doall && wilds && !match(tname, target_p->name))
216 continue;
217
218 report_this_status(source_p, target_p, 0);
219 }
220 }
221
222 sendto_one_numeric(source_p, RPL_ENDOFTRACE,
223 form_str(RPL_ENDOFTRACE), tname);
224 return 0;
225 }
226
227 /* source_p is opered */
228
229 /* report all direct connections */
230 RB_DLINK_FOREACH(ptr, lclient_list.head)
231 {
232 target_p = ptr->data;
233
234 /* dont show invisible users to remote opers */
235 if(IsInvisible(target_p) && dow && !MyConnect(source_p) && !IsOper(target_p))
236 continue;
237
238 if(!doall && wilds && !match(tname, target_p->name))
239 continue;
240
241 cnt = report_this_status(source_p, target_p, dow);
242 }
243
244 RB_DLINK_FOREACH(ptr, serv_list.head)
245 {
246 target_p = ptr->data;
247
248 if(!doall && wilds && !match(tname, target_p->name))
249 continue;
250
251 cnt = report_this_status(source_p, target_p, dow);
252 }
253
254 if(MyConnect(source_p))
255 {
256 RB_DLINK_FOREACH(ptr, unknown_list.head)
257 {
258 target_p = ptr->data;
259
260 if(!doall && wilds && !match(tname, target_p->name))
261 continue;
262
263 cnt = report_this_status(source_p, target_p, dow);
264 }
265 }
266
267 if(!cnt)
268 {
269 sendto_one_numeric(source_p, ERR_NOSUCHSERVER, form_str(ERR_NOSUCHSERVER),
270 tname);
271
272 /* let the user have some idea that its at the end of the
273 * trace
274 */
275 sendto_one_numeric(source_p, RPL_ENDOFTRACE,
276 form_str(RPL_ENDOFTRACE), tname);
277 return 0;
278 }
279
280 if(doall)
281 {
282 RB_DLINK_FOREACH(ptr, class_list.head)
283 {
284 cltmp = ptr->data;
285
286 if(CurrUsers(cltmp) > 0)
287 sendto_one_numeric(source_p, RPL_TRACECLASS,
288 form_str(RPL_TRACECLASS),
289 ClassName(cltmp), CurrUsers(cltmp));
290 }
291 }
292
293 sendto_one_numeric(source_p, RPL_ENDOFTRACE, form_str(RPL_ENDOFTRACE), tname);
294
295 return 0;
296 }
297
298 /*
299 * count_downlinks
300 *
301 * inputs - pointer to server to count
302 * - pointers to server and user count
303 * output - NONE
304 * side effects - server and user counts are added to given values
305 */
306 static void
307 count_downlinks(struct Client *server_p, int *pservcount, int *pusercount)
308 {
309 rb_dlink_node *ptr;
310
311 (*pservcount)++;
312 *pusercount += rb_dlink_list_length(&server_p->serv->users);
313 RB_DLINK_FOREACH(ptr, server_p->serv->servers.head)
314 {
315 count_downlinks(ptr->data, pservcount, pusercount);
316 }
317 }
318
319 /*
320 * report_this_status
321 *
322 * inputs - pointer to client to report to
323 * - pointer to client to report about
324 * output - counter of number of hits
325 * side effects - NONE
326 */
327 static int
328 report_this_status(struct Client *source_p, struct Client *target_p,
329 int dow)
330 {
331 const char *name;
332 const char *class_name;
333 char ip[HOSTIPLEN];
334 int cnt = 0;
335
336 /* sanity check - should never happen */
337 if(!MyConnect(target_p))
338 return 0;
339
340 inetntop_sock((struct sockaddr *)&target_p->localClient->ip, ip, sizeof(ip));
341 class_name = get_client_class(target_p);
342
343 if(IsAnyServer(target_p))
344 name = get_server_name(target_p, HIDE_IP);
345 else
346 name = get_client_name(target_p, HIDE_IP);
347
348 switch (target_p->status)
349 {
350 case STAT_CONNECTING:
351 sendto_one_numeric(source_p, RPL_TRACECONNECTING,
352 form_str(RPL_TRACECONNECTING),
353 class_name, name);
354 cnt++;
355 break;
356
357 case STAT_HANDSHAKE:
358 sendto_one_numeric(source_p, RPL_TRACEHANDSHAKE,
359 form_str(RPL_TRACEHANDSHAKE),
360 class_name, name);
361 cnt++;
362 break;
363
364 case STAT_ME:
365 break;
366
367 case STAT_UNKNOWN:
368 /* added time -Taner */
369 sendto_one_numeric(source_p, RPL_TRACEUNKNOWN,
370 form_str(RPL_TRACEUNKNOWN),
371 class_name, name, ip,
372 CurrentTime - target_p->localClient->firsttime);
373 cnt++;
374 break;
375
376 case STAT_CLIENT:
377 /* Only opers see users if there is a wildcard
378 * but anyone can see all the opers.
379 */
380 if((IsOper(source_p) &&
381 (MyClient(source_p) || !(dow && IsInvisible(target_p))))
382 || !dow || IsOper(target_p) || (source_p == target_p))
383 {
384 if(IsOper(target_p))
385 sendto_one_numeric(source_p, RPL_TRACEOPERATOR,
386 form_str(RPL_TRACEOPERATOR),
387 class_name, name,
388 show_ip(source_p, target_p) ? ip : "255.255.255.255",
389 CurrentTime - target_p->localClient->lasttime,
390 CurrentTime - target_p->localClient->last);
391
392 else
393 sendto_one_numeric(source_p, RPL_TRACEUSER,
394 form_str(RPL_TRACEUSER),
395 class_name, name,
396 show_ip(source_p, target_p) ? ip : "255.255.255.255",
397 CurrentTime - target_p->localClient->lasttime,
398 CurrentTime - target_p->localClient->last);
399 cnt++;
400 }
401 break;
402
403 case STAT_SERVER:
404 {
405 int usercount = 0;
406 int servcount = 0;
407
408 count_downlinks(target_p, &servcount, &usercount);
409
410 sendto_one_numeric(source_p, RPL_TRACESERVER, form_str(RPL_TRACESERVER),
411 class_name, servcount, usercount, name,
412 *(target_p->serv->by) ? target_p->serv->by : "*", "*",
413 me.name, CurrentTime - target_p->localClient->lasttime);
414 cnt++;
415
416 }
417 break;
418
419 default: /* ...we actually shouldn't come here... --msa */
420 sendto_one_numeric(source_p, RPL_TRACENEWTYPE,
421 form_str(RPL_TRACENEWTYPE),
422 me.name, source_p->name, name);
423 cnt++;
424 break;
425 }
426
427 return (cnt);
428 }
429
430 /* trace_spy()
431 *
432 * input - pointer to client
433 * output - none
434 * side effects - hook event doing_trace is called
435 */
436 static void
437 trace_spy(struct Client *source_p, struct Client *target_p)
438 {
439 hook_data_client hdata;
440
441 hdata.client = source_p;
442 hdata.target = target_p;
443
444 call_hook(doing_trace_hook, &hdata);
445 }