]> jfr.im git - irc/rqf/shadowircd.git/blob - modules/m_links.c
e4a0f881142b8bedd2f8b59992bcce4ec476cbfe
[irc/rqf/shadowircd.git] / modules / m_links.c
1 /*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_links.c: Shows what servers are currently connected.
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_links.c 254 2005-09-21 23:35:12Z nenolod $
25 */
26
27 #include "stdinc.h"
28 #include "client.h"
29 #include "match.h"
30 #include "ircd.h"
31 #include "numeric.h"
32 #include "s_serv.h"
33 #include "send.h"
34 #include "s_conf.h"
35 #include "msg.h"
36 #include "parse.h"
37 #include "modules.h"
38 #include "hook.h"
39 #include "scache.h"
40
41 static int m_links(struct Client *, struct Client *, int, const char **);
42 static int mo_links(struct Client *, struct Client *, int, const char **);
43 static char * clean_string(char *dest, const unsigned char *src, size_t len);
44
45 struct Message links_msgtab = {
46 "LINKS", 0, 0, 0, MFLG_SLOW,
47 {mg_unreg, {m_links, 0}, {mo_links, 0}, mg_ignore, mg_ignore, {mo_links, 0}}
48 };
49
50 int doing_links_hook;
51
52 mapi_clist_av1 links_clist[] = { &links_msgtab, NULL };
53 mapi_hlist_av1 links_hlist[] = {
54 { "doing_links", &doing_links_hook },
55 { NULL, NULL }
56 };
57
58 DECLARE_MODULE_AV1(links, NULL, NULL, links_clist, links_hlist, NULL, "$Revision: 254 $");
59
60 /*
61 * m_links - LINKS message handler
62 * parv[0] = sender prefix
63 * parv[1] = servername mask
64 * or
65 * parv[0] = sender prefix
66 * parv[1] = server to query
67 * parv[2] = servername mask
68 */
69 static int
70 m_links(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
71 {
72 if(ConfigServerHide.flatten_links && !IsExemptShide(source_p))
73 scache_send_flattened_links(source_p);
74 else
75 mo_links(client_p, source_p, parc, parv);
76
77 return 0;
78 }
79
80 static int
81 mo_links(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
82 {
83 const char *mask = "";
84 struct Client *target_p;
85 char clean_mask[2 * HOSTLEN + 4];
86 hook_data hd;
87
88 rb_dlink_node *ptr;
89
90 if(parc > 2)
91 {
92 if(hunt_server(client_p, source_p, ":%s LINKS %s :%s", 1, parc, parv)
93 != HUNTED_ISME)
94 return 0;
95
96 mask = parv[2];
97 }
98 else if(parc == 2)
99 mask = parv[1];
100
101 if(*mask) /* only necessary if there is a mask */
102 mask = collapse(clean_string
103 (clean_mask, (const unsigned char *) mask, 2 * HOSTLEN));
104
105 hd.client = source_p;
106 hd.arg1 = mask;
107 hd.arg2 = NULL;
108
109 call_hook(doing_links_hook, &hd);
110
111 RB_DLINK_FOREACH(ptr, global_serv_list.head)
112 {
113 target_p = ptr->data;
114
115 if(*mask && !match(mask, target_p->name))
116 continue;
117
118 /* We just send the reply, as if theyre here theres either no SHIDE,
119 * or theyre an oper..
120 */
121 sendto_one_numeric(source_p, RPL_LINKS, form_str(RPL_LINKS),
122 target_p->name, target_p->servptr->name,
123 target_p->hopcount,
124 target_p->info[0] ? target_p->info : "(Unknown Location)");
125 }
126
127 sendto_one_numeric(source_p, RPL_ENDOFLINKS, form_str(RPL_ENDOFLINKS),
128 EmptyString(mask) ? "*" : mask);
129
130 return 0;
131 }
132
133 static char *
134 clean_string(char *dest, const unsigned char *src, size_t len)
135 {
136 char *d = dest;
137 s_assert(0 != dest);
138 s_assert(0 != src);
139
140 if(dest == NULL || src == NULL)
141 return NULL;
142
143 len -= 3; /* allow for worst case, '^A\0' */
144
145 while (*src && (len > 0))
146 {
147 if(*src & 0x80) /* if high bit is set */
148 {
149 *d++ = '.';
150 --len;
151 }
152 else if(!IsPrint(*src)) /* if NOT printable */
153 {
154 *d++ = '^';
155 --len;
156 *d++ = 0x40 + *src; /* turn it into a printable */
157 }
158 else
159 *d++ = *src;
160 ++src;
161 --len;
162 }
163 *d = '\0';
164 return dest;
165 }