]> jfr.im git - solanum.git/blob - modules/m_etrace.c
Merge branch 'master' into authd-framework-2
[solanum.git] / modules / m_etrace.c
1 /*
2 * ircd-ratbox: an advanced Internet Relay Chat Daemon(ircd).
3 * m_etrace.c: Gives local opers a trace output with added info.
4 *
5 * Copyright (C) 2002-2003 Lee Hardy <lee@leeh.co.uk>
6 * Copyright (C) 2002-2005 ircd-ratbox development team
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
10 * met:
11 *
12 * 1.Redistributions of source code must retain the above copyright notice,
13 * this list of conditions and the following disclaimer.
14 * 2.Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3.The name of the author may not be used to endorse or promote products
18 * derived from this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
24 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
29 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
31 */
32
33 #include "stdinc.h"
34 #include "class.h"
35 #include "hook.h"
36 #include "client.h"
37 #include "hash.h"
38 #include "common.h"
39 #include "hash.h"
40 #include "match.h"
41 #include "ircd.h"
42 #include "numeric.h"
43 #include "s_serv.h"
44 #include "s_conf.h"
45 #include "s_newconf.h"
46 #include "send.h"
47 #include "msg.h"
48 #include "parse.h"
49 #include "modules.h"
50 #include "logger.h"
51 #include "supported.h"
52
53 static const char etrace_desc[] =
54 "Provides enhanced tracing facilities to opers (ETRACE, CHANTRACE, and MASKTRACE)";
55
56 static void mo_etrace(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
57 static void me_etrace(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
58 static void m_chantrace(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
59 static void mo_masktrace(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
60
61 struct Message etrace_msgtab = {
62 "ETRACE", 0, 0, 0, 0,
63 {mg_ignore, mg_not_oper, mg_ignore, mg_ignore, {me_etrace, 0}, {mo_etrace, 0}}
64 };
65 struct Message chantrace_msgtab = {
66 "CHANTRACE", 0, 0, 0, 0,
67 {mg_ignore, {m_chantrace, 2}, mg_ignore, mg_ignore, mg_ignore, {m_chantrace, 2}}
68 };
69 struct Message masktrace_msgtab = {
70 "MASKTRACE", 0, 0, 0, 0,
71 {mg_ignore, mg_not_oper, mg_ignore, mg_ignore, mg_ignore, {mo_masktrace, 2}}
72 };
73
74 static int
75 _modinit(void)
76 {
77 add_isupport("ETRACE", isupport_string, "");
78
79 return 0;
80 }
81
82 static void
83 _moddeinit(void)
84 {
85 delete_isupport("ETRACE");
86 }
87
88 mapi_clist_av1 etrace_clist[] = { &etrace_msgtab, &chantrace_msgtab, &masktrace_msgtab, NULL };
89
90 DECLARE_MODULE_AV2(etrace, _modinit, _moddeinit, etrace_clist, NULL, NULL, NULL, NULL, etrace_desc);
91
92 static void do_etrace(struct Client *source_p, int ipv4, int ipv6);
93 static void do_etrace_full(struct Client *source_p);
94 static void do_single_etrace(struct Client *source_p, struct Client *target_p);
95
96 static const char *empty_sockhost = "255.255.255.255";
97 static const char *spoofed_sockhost = "0";
98
99 /*
100 * m_etrace
101 * parv[1] = options [or target]
102 * parv[2] = [target]
103 */
104 static void
105 mo_etrace(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
106 {
107 if(parc > 1 && !EmptyString(parv[1]))
108 {
109 if(!irccmp(parv[1], "-full"))
110 do_etrace_full(source_p);
111 #ifdef RB_IPV6
112 else if(!irccmp(parv[1], "-v6"))
113 do_etrace(source_p, 0, 1);
114 else if(!irccmp(parv[1], "-v4"))
115 do_etrace(source_p, 1, 0);
116 #endif
117 else
118 {
119 struct Client *target_p = find_named_person(parv[1]);
120
121 if(target_p)
122 {
123 if(!MyClient(target_p))
124 sendto_one(target_p, ":%s ENCAP %s ETRACE %s",
125 get_id(source_p, target_p),
126 target_p->servptr->name,
127 get_id(target_p, target_p));
128 else
129 do_single_etrace(source_p, target_p);
130 }
131 else
132 sendto_one_numeric(source_p, ERR_NOSUCHNICK,
133 form_str(ERR_NOSUCHNICK), parv[1]);
134 }
135 }
136 else
137 do_etrace(source_p, 1, 1);
138 }
139
140 static void
141 me_etrace(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
142 {
143 struct Client *target_p;
144
145 if(!IsOper(source_p) || parc < 2 || EmptyString(parv[1]))
146 return;
147
148 /* we cant etrace remote clients.. we shouldnt even get sent them */
149 if((target_p = find_person(parv[1])) && MyClient(target_p))
150 do_single_etrace(source_p, target_p);
151
152 sendto_one_numeric(source_p, RPL_ENDOFTRACE, form_str(RPL_ENDOFTRACE),
153 target_p ? target_p->name : parv[1]);
154 }
155
156 static void
157 do_etrace(struct Client *source_p, int ipv4, int ipv6)
158 {
159 struct Client *target_p;
160 rb_dlink_node *ptr;
161
162 /* report all direct connections */
163 RB_DLINK_FOREACH(ptr, lclient_list.head)
164 {
165 target_p = ptr->data;
166
167 #ifdef RB_IPV6
168 if((!ipv4 && GET_SS_FAMILY(&target_p->localClient->ip) == AF_INET) ||
169 (!ipv6 && GET_SS_FAMILY(&target_p->localClient->ip) == AF_INET6))
170 continue;
171 #endif
172
173 sendto_one(source_p, form_str(RPL_ETRACE),
174 me.name, source_p->name,
175 IsOper(target_p) ? "Oper" : "User",
176 get_client_class(target_p),
177 target_p->name, target_p->username, target_p->host,
178 show_ip(source_p, target_p) ? target_p->sockhost : "255.255.255.255",
179 target_p->info);
180 }
181
182 sendto_one_numeric(source_p, RPL_ENDOFTRACE, form_str(RPL_ENDOFTRACE), me.name);
183 }
184
185 static void
186 do_etrace_full(struct Client *source_p)
187 {
188 rb_dlink_node *ptr;
189
190 RB_DLINK_FOREACH(ptr, lclient_list.head)
191 {
192 do_single_etrace(source_p, ptr->data);
193 }
194
195 sendto_one_numeric(source_p, RPL_ENDOFTRACE, form_str(RPL_ENDOFTRACE), me.name);
196 }
197
198 /*
199 * do_single_etrace - searches local clients and displays those matching
200 * a pattern
201 * input - source client, target client
202 * output - etrace results
203 * side effects - etrace results are displayed
204 */
205 static void
206 do_single_etrace(struct Client *source_p, struct Client *target_p)
207 {
208 /* note, we hide fullcaps for spoofed users, as mirc can often
209 * advertise its internal ip address in the field --fl
210 */
211 if(!show_ip(source_p, target_p))
212 sendto_one(source_p, form_str(RPL_ETRACEFULL),
213 me.name, source_p->name,
214 IsOper(target_p) ? "Oper" : "User",
215 get_client_class(target_p),
216 target_p->name, target_p->username, target_p->host,
217 "255.255.255.255", "<hidden> <hidden>", target_p->info);
218 else
219 sendto_one(source_p, form_str(RPL_ETRACEFULL),
220 me.name, source_p->name,
221 IsOper(target_p) ? "Oper" : "User",
222 get_client_class(target_p),
223 target_p->name, target_p->username,
224 target_p->host, target_p->sockhost,
225 target_p->localClient->fullcaps, target_p->info);
226 }
227
228 static void
229 m_chantrace(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
230 {
231 struct Client *target_p;
232 struct Channel *chptr;
233 struct membership *msptr;
234 const char *sockhost;
235 const char *name;
236 rb_dlink_node *ptr;
237 int operspy = 0;
238
239 name = parv[1];
240
241 if(IsOperSpy(source_p) && parv[1][0] == '!')
242 {
243 name++;
244 operspy = 1;
245
246 if(EmptyString(name))
247 {
248 sendto_one(source_p, form_str(ERR_NEEDMOREPARAMS),
249 me.name, source_p->name, "CHANTRACE");
250 return;
251 }
252 }
253
254 if((chptr = find_channel(name)) == NULL)
255 {
256 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL, form_str(ERR_NOSUCHCHANNEL),
257 name);
258 return;
259 }
260
261 /* dont report operspys for nonexistant channels. */
262 if(operspy)
263 report_operspy(source_p, "CHANTRACE", chptr->chname);
264
265 if(!operspy && !IsMember(client_p, chptr))
266 {
267 sendto_one_numeric(source_p, ERR_NOTONCHANNEL, form_str(ERR_NOTONCHANNEL),
268 chptr->chname);
269 return;
270 }
271
272 RB_DLINK_FOREACH(ptr, chptr->members.head)
273 {
274 msptr = ptr->data;
275 target_p = msptr->client_p;
276
277 if(EmptyString(target_p->sockhost))
278 sockhost = empty_sockhost;
279 else if(!show_ip(source_p, target_p))
280 sockhost = spoofed_sockhost;
281 else
282 sockhost = target_p->sockhost;
283
284 sendto_one(source_p, form_str(RPL_ETRACE),
285 me.name, source_p->name,
286 IsOper(target_p) ? "Oper" : "User",
287 /* class field -- pretend its server.. */
288 target_p->servptr->name,
289 target_p->name, target_p->username, target_p->host,
290 sockhost, target_p->info);
291 }
292
293 sendto_one_numeric(source_p, RPL_ENDOFTRACE, form_str(RPL_ENDOFTRACE), me.name);
294 }
295
296 static void
297 match_masktrace(struct Client *source_p, rb_dlink_list *list,
298 const char *username, const char *hostname, const char *name,
299 const char *gecos)
300 {
301 struct Client *target_p;
302 rb_dlink_node *ptr;
303 const char *sockhost;
304
305 RB_DLINK_FOREACH(ptr, list->head)
306 {
307 target_p = ptr->data;
308 if(!IsPerson(target_p))
309 continue;
310
311 if(EmptyString(target_p->sockhost))
312 sockhost = empty_sockhost;
313 else if(!show_ip(source_p, target_p))
314 sockhost = spoofed_sockhost;
315 else
316 sockhost = target_p->sockhost;
317
318 if(match(username, target_p->username) &&
319 (match(hostname, target_p->host) ||
320 match(hostname, target_p->orighost) ||
321 match(hostname, sockhost) || match_ips(hostname, sockhost)))
322 {
323 if(name != NULL && !match(name, target_p->name))
324 continue;
325
326 if(gecos != NULL && !match_esc(gecos, target_p->info))
327 continue;
328
329 sendto_one(source_p, form_str(RPL_ETRACE),
330 me.name, source_p->name,
331 IsOper(target_p) ? "Oper" : "User",
332 /* class field -- pretend its server.. */
333 target_p->servptr->name,
334 target_p->name, target_p->username, target_p->host,
335 sockhost, target_p->info);
336 }
337 }
338 }
339
340 static void
341 mo_masktrace(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc,
342 const char *parv[])
343 {
344 char *name, *username, *hostname, *gecos;
345 const char *mask;
346 int operspy = 0;
347
348 mask = parv[1];
349 name = LOCAL_COPY(parv[1]);
350 collapse(name);
351
352 if(IsOperSpy(source_p) && parv[1][0] == '!')
353 {
354 name++;
355 mask++;
356 operspy = 1;
357 }
358
359 if(parc > 2 && !EmptyString(parv[2]))
360 {
361 gecos = LOCAL_COPY(parv[2]);
362 collapse_esc(gecos);
363 } else
364 gecos = NULL;
365
366
367 if((hostname = strchr(name, '@')) == NULL)
368 {
369 sendto_one_notice(source_p, ":Invalid parameters");
370 return;
371 }
372
373 *hostname++ = '\0';
374
375 if((username = strchr(name, '!')) == NULL)
376 {
377 username = name;
378 name = NULL;
379 } else
380 *username++ = '\0';
381
382 if(EmptyString(username) || EmptyString(hostname))
383 {
384 sendto_one_notice(source_p, ":Invalid parameters");
385 return;
386 }
387
388 if(operspy) {
389 if (!ConfigFileEntry.operspy_dont_care_user_info)
390 {
391 char buf[512];
392 rb_strlcpy(buf, mask, sizeof(buf));
393 if(!EmptyString(gecos)) {
394 rb_strlcat(buf, " ", sizeof(buf));
395 rb_strlcat(buf, gecos, sizeof(buf));
396 }
397
398 report_operspy(source_p, "MASKTRACE", buf);
399 }
400 match_masktrace(source_p, &global_client_list, username, hostname, name, gecos);
401 } else
402 match_masktrace(source_p, &lclient_list, username, hostname, name, gecos);
403
404 sendto_one_numeric(source_p, RPL_ENDOFTRACE, form_str(RPL_ENDOFTRACE), me.name);
405 }