2 * ircd-ratbox: A slightly useful ircd.
3 * m_trace.c: Traces a path to a client/server.
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
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.
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.
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
24 * $Id: m_trace.c 147 2006-11-13 12:35:45Z spb $
34 #include "irc_string.h"
40 #include "s_newconf.h"
46 static int m_trace(struct Client
*, struct Client
*, int, const char **);
48 struct Message trace_msgtab
= {
49 "TRACE", 0, 0, 0, MFLG_SLOW
,
50 {mg_unreg
, {m_trace
, 0}, {m_trace
, 0}, mg_ignore
, mg_ignore
, {m_trace
, 0}}
55 mapi_clist_av1 trace_clist
[] = { &trace_msgtab
, NULL
};
56 mapi_hlist_av1 trace_hlist
[] = {
57 { "doing_trace", &doing_trace_hook
},
60 DECLARE_MODULE_AV1(trace
, NULL
, NULL
, trace_clist
, trace_hlist
, NULL
, "$Revision: 147 $");
62 static void count_downlinks(struct Client
*server_p
, int *pservcount
, int *pusercount
);
63 static int report_this_status(struct Client
*source_p
, struct Client
*target_p
, int dow
);
67 * parv[0] = sender prefix
68 * parv[1] = servername
71 m_trace(struct Client
*client_p
, struct Client
*source_p
, int parc
, const char *parv
[])
73 struct Client
*target_p
= NULL
;
77 int cnt
= 0, wilds
, dow
;
86 if(hunt_server(client_p
, source_p
, ":%s TRACE %s :%s", 2, parc
, parv
) !=
94 /* if we have 3 parameters, then the command is directed at us. So
95 * we shouldnt be forwarding it anywhere.
99 switch (hunt_server(client_p
, source_p
, ":%s TRACE :%s", 1, parc
, parv
))
101 case HUNTED_PASS
: /* note: gets here only if parv[1] exists */
103 struct Client
*ac2ptr
;
105 if(MyClient(source_p
))
106 ac2ptr
= find_named_client(tname
);
108 ac2ptr
= find_client(tname
);
112 DLINK_FOREACH(ptr
, global_client_list
.head
)
116 if(match(tname
, ac2ptr
->name
) || match(ac2ptr
->name
, tname
))
123 /* giving this out with flattened links defeats the
126 if(IsOperRouting(source_p
) || IsExemptShide(source_p
) ||
127 !ConfigServerHide
.flatten_links
)
128 sendto_one_numeric(source_p
, RPL_TRACELINK
,
129 form_str(RPL_TRACELINK
),
131 ac2ptr
? ac2ptr
->name
: tname
,
132 ac2ptr
? ac2ptr
->from
->name
: "EEK!");
145 if(match(tname
, me
.name
))
149 /* if theyre tracing our SID, we need to move tname to our name so
150 * we dont give the sid in ENDOFTRACE
152 else if(!MyClient(source_p
) && !strcmp(tname
, me
.id
))
158 wilds
= strchr(tname
, '*') || strchr(tname
, '?');
159 dow
= wilds
|| doall
;
164 if(MyClient(source_p
) || parc
> 2)
165 target_p
= find_named_person(tname
);
167 target_p
= find_person(tname
);
169 /* tname could be pointing to an ID at this point, so reset
170 * it to target_p->name if we have a target --fl
174 report_this_status(source_p
, target_p
, 0);
175 tname
= target_p
->name
;
178 sendto_one_numeric(source_p
, RPL_ENDOFTRACE
,
179 form_str(RPL_ENDOFTRACE
), tname
);
183 /* give non-opers a limited trace output of themselves (if local),
184 * opers and servers (if no shide) --fl
186 if(!IsOperRouting(source_p
))
188 if(MyClient(source_p
))
190 if(doall
|| (wilds
&& match(tname
, source_p
->name
)))
191 report_this_status(source_p
, source_p
, 0);
194 DLINK_FOREACH(ptr
, local_oper_list
.head
)
196 target_p
= ptr
->data
;
198 if(!doall
&& wilds
&& (match(tname
, target_p
->name
) == 0))
201 report_this_status(source_p
, target_p
, 0);
204 if (IsExemptShide(source_p
) || !ConfigServerHide
.flatten_links
)
206 DLINK_FOREACH(ptr
, serv_list
.head
)
208 target_p
= ptr
->data
;
210 if(!doall
&& wilds
&& !match(tname
, target_p
->name
))
213 report_this_status(source_p
, target_p
, 0);
217 sendto_one_numeric(source_p
, RPL_ENDOFTRACE
,
218 form_str(RPL_ENDOFTRACE
), tname
);
222 /* source_p is opered */
224 /* report all direct connections */
225 DLINK_FOREACH(ptr
, lclient_list
.head
)
227 target_p
= ptr
->data
;
229 /* dont show invisible users to remote opers */
230 if(IsInvisible(target_p
) && dow
&& !MyConnect(source_p
) && !IsOper(target_p
))
233 if(!doall
&& wilds
&& !match(tname
, target_p
->name
))
236 cnt
= report_this_status(source_p
, target_p
, dow
);
239 DLINK_FOREACH(ptr
, serv_list
.head
)
241 target_p
= ptr
->data
;
243 if(!doall
&& wilds
&& !match(tname
, target_p
->name
))
246 cnt
= report_this_status(source_p
, target_p
, dow
);
249 if(MyConnect(source_p
))
251 DLINK_FOREACH(ptr
, unknown_list
.head
)
253 target_p
= ptr
->data
;
255 if(!doall
&& wilds
&& !match(tname
, target_p
->name
))
258 cnt
= report_this_status(source_p
, target_p
, dow
);
264 sendto_one_numeric(source_p
, ERR_NOSUCHSERVER
, form_str(ERR_NOSUCHSERVER
),
267 /* let the user have some idea that its at the end of the
270 sendto_one_numeric(source_p
, RPL_ENDOFTRACE
,
271 form_str(RPL_ENDOFTRACE
), tname
);
277 DLINK_FOREACH(ptr
, class_list
.head
)
281 if(CurrUsers(cltmp
) > 0)
282 sendto_one_numeric(source_p
, RPL_TRACECLASS
,
283 form_str(RPL_TRACECLASS
),
284 ClassName(cltmp
), CurrUsers(cltmp
));
288 sendto_one_numeric(source_p
, RPL_ENDOFTRACE
, form_str(RPL_ENDOFTRACE
), tname
);
296 * inputs - pointer to server to count
297 * - pointers to server and user count
299 * side effects - server and user counts are added to given values
302 count_downlinks(struct Client
*server_p
, int *pservcount
, int *pusercount
)
307 *pusercount
+= dlink_list_length(&server_p
->serv
->users
);
308 DLINK_FOREACH(ptr
, server_p
->serv
->servers
.head
)
310 count_downlinks(ptr
->data
, pservcount
, pusercount
);
317 * inputs - pointer to client to report to
318 * - pointer to client to report about
319 * output - counter of number of hits
320 * side effects - NONE
323 report_this_status(struct Client
*source_p
, struct Client
*target_p
,
327 const char *class_name
;
331 /* sanity check - should never happen */
332 if(!MyConnect(target_p
))
335 inetntop_sock((struct sockaddr
*)&target_p
->localClient
->ip
, ip
, sizeof(ip
));
336 class_name
= get_client_class(target_p
);
338 if(IsAnyServer(target_p
))
339 name
= get_server_name(target_p
, HIDE_IP
);
341 name
= get_client_name(target_p
, HIDE_IP
);
343 switch (target_p
->status
)
345 case STAT_CONNECTING
:
346 sendto_one_numeric(source_p
, RPL_TRACECONNECTING
,
347 form_str(RPL_TRACECONNECTING
),
353 sendto_one_numeric(source_p
, RPL_TRACEHANDSHAKE
,
354 form_str(RPL_TRACEHANDSHAKE
),
363 /* added time -Taner */
364 sendto_one_numeric(source_p
, RPL_TRACEUNKNOWN
,
365 form_str(RPL_TRACEUNKNOWN
),
366 class_name
, name
, ip
,
367 CurrentTime
- target_p
->localClient
->firsttime
);
372 /* Only opers see users if there is a wildcard
373 * but anyone can see all the opers.
375 if((IsOper(source_p
) &&
376 (MyClient(source_p
) || !(dow
&& IsInvisible(target_p
))))
377 || !dow
|| IsOper(target_p
) || (source_p
== target_p
))
380 sendto_one_numeric(source_p
, RPL_TRACEOPERATOR
,
381 form_str(RPL_TRACEOPERATOR
),
383 show_ip(source_p
, target_p
) ? ip
: "255.255.255.255",
384 CurrentTime
- target_p
->localClient
->lasttime
,
385 CurrentTime
- target_p
->localClient
->last
);
388 sendto_one_numeric(source_p
, RPL_TRACEUSER
,
389 form_str(RPL_TRACEUSER
),
391 show_ip(source_p
, target_p
) ? ip
: "255.255.255.255",
392 CurrentTime
- target_p
->localClient
->lasttime
,
393 CurrentTime
- target_p
->localClient
->last
);
403 count_downlinks(target_p
, &servcount
, &usercount
);
405 sendto_one_numeric(source_p
, RPL_TRACESERVER
, form_str(RPL_TRACESERVER
),
406 class_name
, servcount
, usercount
, name
,
407 *(target_p
->serv
->by
) ? target_p
->serv
->by
: "*", "*",
408 me
.name
, CurrentTime
- target_p
->localClient
->lasttime
);
414 default: /* ...we actually shouldn't come here... --msa */
415 sendto_one_numeric(source_p
, RPL_TRACENEWTYPE
,
416 form_str(RPL_TRACENEWTYPE
),
417 me
.name
, source_p
->name
, name
);